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 = 45345
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);
([4583795.412780969, 4592054.177801864, 4794162.075468487, 4876117.063203905, 4927111.787940799, 4935220.3125, 4937206.25, 4938011.668431743, 4939137.5, 4939484.842861144, 4939575.893773932, 4941185.9375, 4943298.9199281065, 4947920.9542282475, 4959157.589823028, 4959198.4375, 5049573.149219926, 5054175.688048228, 5059992.180483549, 5062226.075281077, 5069372.675625891, 5124675.0, 5125039.661677981, 5125048.4375, 5125731.25, 5126210.9375, 5126432.8125, 5126482.8125, 5126775.82544033, 5128501.128002172, 5128537.406367047, 5133848.4375, 5140031.45268967, 5154828.125, 5156327.373642093, 5159082.33783282, 5167406.921836038, 5168453.169216103, 5168535.9375, 5290371.875, 5310459.842460624, 5417700.0, 5426271.875, 5515676.842758416, 5530318.75, 5601325.968315255, 7318928.1298996555, 7328855.840376717, 7348077.6286775395, 7353590.551153006, 7353617.1875, 7354016.448939752, 7355746.539098143, 7361150.712591792, 7365980.759078933, 7414529.6875, 7488146.875, 7488432.8125, 7491405.630344564, 7493885.275192537, 7495887.195824544, 7502174.061008765, 7551523.8089159075, 7558372.449129875, 7660410.624487059, 7696267.614202324, 7725659.252068708, 7725794.836908541, 7725802.729596914, 7726083.619740546, 7726114.0625, 7726155.902908851, 7727031.371623823, 7728748.0144988205, 7729320.553889005, 7730499.690828188, 7731860.371570068, 7734727.3771834355, 7735109.189389334, 7735253.1632381575, 7738067.087097924, 7738261.978043272, 7738627.044235838, 7740808.828062508, 7741247.55056923, 7742432.8125, 7773719.665888801, 7780875.025285794, 7813134.375, 7844032.8125, 7845434.375, 7845885.9375, 7846050.947850239, 7846420.71632269, 7849087.5, 7858690.625, 7955148.0783950705, 7958780.591350868, 7989086.48287266, 7990618.821119964, 8028822.143693397, 8043294.828475692, 8052232.129086023, 8052995.399114288, 8053074.269202545, 8056776.262100211, 8076140.625, 8082523.33599154, 8084789.642204132, 8084791.435351359, 8087110.103954638, 8090058.345590271, 8125764.0625, 8131906.370370474, 8140061.295263952, 8159166.821762494, 8165015.625, 8201821.339052384, 8205013.935093849, 8205293.75, 8205562.008926714, 8206758.824052229, 8207273.005301761, 8210148.310650177, 8210254.6875, 8210289.2819058485, 8211205.131438613, 8216705.805208888, 8216785.519658071, 8217762.111307205, 8221121.368198088, 8222541.068391682, 8225323.160855359, 8225493.014641905, 8228151.485727594, 8229525.76593925, 8230059.023619514, 8230687.5, 8232095.575669011, 8232410.437337911, 8232444.942780876, 8232861.919677213, 8233084.375, 8233520.852587026, 8234738.162181875, 8235239.538252365, 8235291.212676083, 8235547.820083334, 8235693.397600153, 8235843.201901969, 8236187.795458465, 8236453.067453579, 8236969.979278078, 8237044.183616115, 8237098.969785965, 8237406.099351327, 8238111.409768165, 8238312.5, 8238625.078124941, 8238670.966524014, 8238718.801647832, 8239449.3339403765, 8239514.116535823, 8239884.861241839, 8240101.5625, 8242048.756619827, 8247991.965308596, 8249375.0, 8250267.1875, 8253017.1875, 8253056.163108495, 8253852.283568935, 8254103.519184589, 8254364.745563954, 8260662.374446355, 8263958.5344957365, 8265374.318627642, 8268018.75, 8270187.930871079, 8272745.3125, 8274973.112991414, 8276859.375, 8278157.468764108, 8278466.932812985, 8278467.973731994, 8278517.760537393, 8279453.918635809, 8279603.940897742, 8279879.6875, 8280019.515701959, 8280187.162575709, 8280255.750919505, 8280357.8125, 8280364.0625, 8280379.6875, 8280567.78254003, 8280667.009669944, 8280767.1875, 8281085.9375, 8281564.70652234, 8281662.288348325, 8281834.2905495, 8281967.1875, 8281992.1875, 8282062.404675488, 8282162.030964331, 8282256.263243888, 8282454.6875, 8282456.25, 8282516.179633748, 8282519.950888448, 8282880.098263662, 8283187.74334897, 8283245.96251499, 8283298.4375, 8283304.041878728, 8283351.6962311035, 8283615.4297533175, 8283636.562872766, 8283807.602194533, 8283836.977804194, 8283909.73724555, 8283984.498567424, 8284037.5, 8284060.095414849, 8284275.205821414, 8284338.573356404, 8284629.600653771, 8284705.078954849, 8284771.875, 8285247.1489488715, 8285434.375, 8285837.855069639, 8289442.1875, 8289874.787191231, 8291270.374483359, 8298585.475512417, 8301164.697840521, 8302507.882762434, 8305186.72634875, 8305828.125, 8308596.063193983, 8308649.6682242025, 8309345.614582719, 8310472.70597426, 8310632.29417886, 8310979.6875, 8311856.530937087, 8312045.3125, 8312238.567087803, 8312762.278158819, 8312801.844958374, 8313120.991399177, 8313133.658549555, 8313282.64810322, 8313470.3125, 8313529.913111199, 8313837.429833215, 8313943.75, 8314139.514571459, 8314268.75, 8314904.895594261, 8315268.237290493, 8316629.532071241, 8316774.733102976, 8316821.259217227, 8317306.149126031, 8317317.1875, 8317447.12501586, 8317457.664152084, 8317518.155935533, 8317567.1875, 8317871.875, 8318298.4375, 8318339.76427129, 8318573.4856285285, 8318586.021035444, 8318853.908386793, 8319487.116997365, 8319567.078702989, 8319750.937215341, 8319820.098917953, 8319862.171682008, 8319949.030048069, 8320007.8759954795, 8320707.231796843, 8321157.8125, 8321492.079189279, 8322754.6875, 8323371.875, 8324103.09800612, 8324117.244377391, 8324404.6875, 8325136.8200825285, 8325220.035945104, 8325516.158796892, 8325570.081660798, 8326515.625, 8332696.619168961, 8332813.976708564, 8333617.990958148, 8333889.874138396, 8333965.401522292, 8334007.8125, 8334034.5960800955, 8334193.75, 8334374.978771618, 8335209.375, 8335879.6875, 8335923.917330321, 8336199.774934938, 8336426.30916173, 8336446.718929781, 8336451.5625, 8336554.782864322, 8337028.913809351, 8337119.908041185, 8337293.191682202, 8337382.860957618, 8337539.0625, 8337831.314369321, 8337910.126294978, 8337934.375, 8337975.558816265, 8338018.501021702, 8338435.9375, 8338570.3125, 8338885.9375, 8338900.0, 8338939.909985777, 8339140.625, 8339202.371846222, 8339240.7596957125, 8339352.595511824, 8339568.0998200765, 8339868.75, 8340091.578196853, 8340110.308622958, 8340140.625, 8340181.25, 8340245.861932989, 8340255.516160152, 8340314.0625, 8340357.8125, 8340487.5, 8340502.567789228, 8340516.410108602, 8340518.170500324, 8340641.492301795, 8340678.06886825, 8340681.395274987, 8340735.708438292, 8340759.020477712, 8340785.3806238305, 8340795.0195772, 8340823.4375, 8340825.197583996, 8340864.0625, 8340871.875, 8340878.125, 8340879.323576583, 8340886.546059156, 8340898.7548642075, 8340903.125, 8340910.5525698, 8340926.539556289, 8340934.967906988, 8340949.300372889, 8341022.450597149, 8341033.08515978, 8341042.961785056, 8341057.543709788, 8341068.251068493, 8341084.004897615, 8341098.279132354, 8341116.246976979, 8341179.673809101, 8341181.343965049, 8341193.75, 8341194.602611506, 8341253.525450517, 8341270.504337947, 8341308.051130025, 8341328.081136223, 8341334.793417721, 8341342.927958351, 8341351.5625, 8341353.125, 8341375.3797657695, 8341376.934226463, 8341378.803159621, 8341381.170265703, 8341415.625, 8341420.985423751, 8341423.4375, 8341432.8125, 8341437.07307854, 8341465.921984706, 8341471.035136246, 8341476.5625, 8341509.375, 8341534.375, 8341545.002889684, 8341600.638764959, 8341658.646594349, 8341716.251762945, 8341827.238977977, 8341838.761178862, 8341928.414595618, 8341993.709375407, 8342007.255712955, 8342063.14498223, 8342070.342102707, 8342111.354464305, 8342116.685611752, 8342204.03245683, 8342210.9375, 8342284.375, 8342293.609939625, 8342308.265578353, 8342359.375, 8342429.514913228, 8342433.923342824, 8342434.653600781, 8342446.875, 8342470.3125, 8342643.75, 8342671.372284166, 8342730.130662715, 8342748.073819776, 8342756.978300289, 8342769.1355112335, 8342891.320554358, 8342910.563488292, 8342918.568317158, 8342952.729803111, 8342960.9375, 8342976.5625, 8342995.529169386, 8342999.424372152, 8343049.851991923, 8343051.530351313, 8343098.145845825, 8343101.26456693, 8343129.626304797, 8343204.165086229, 8343260.94426339, 8343293.098520497, 8343321.875, 8343329.890353834, 8343365.625, 8343375.265642192, 8343410.755181592, 8343448.4375, 8343479.510486114, 8343566.400287315, 8343593.862840103, 8343762.500004574, 8343785.9375, 8343805.848630151, 8343806.492758334, 8343889.0625, 8343897.294294128, 8343907.974752166, 8344017.056644826, 8344021.2479086695, 8344069.612509877, 8344096.875, 8344296.532367693, 8344300.892153945, 8344329.860290443, 8344374.9468674855, 8344421.09187471, 8344602.296382891, 8344690.625, 8344706.030685937, 8344888.605885592, 8344897.487428382, 8345007.612031622, 8345036.81838741, 8345078.917917449, 8345085.368662779, 8345089.102774019, 8345109.375, 8345270.3125, 8345272.964811033, 8345406.050031602, 8345418.75, 8345440.2603529915, 8345454.6875, 8345490.625, 8345498.57663455, 8345562.5, 8345636.245232795, 8345639.020974834, 8345651.5625, 8345735.915859339, 8345742.983690334, 8345751.309097651, 8345787.167859181, 8345830.821987584, 8345847.667284313, 8345909.375, 8345947.738745466, 8345962.725035276, 8345972.502838671, 8345992.1875, 8346080.477398611, 8346179.6875, 8346231.25, 8346295.3125, 8346300.292280346, 8346309.375, 8346379.192421758, 8346406.25, 8346414.087213616, 8346471.875, 8346489.009330473, 8346513.77246344, 8346558.722006024, 8346577.780905573, 8346602.817411628, 8346815.183531264, 8346823.991811997, 8346834.186878587, 8346864.193109876, 8346867.685615129, 8346960.718783696, 8347023.569871666, 8347031.788722248, 8347181.25, 8347191.053453445, 8347244.863410017, 8347267.906279343, 8347285.200220904, 8347290.874941082, 8347298.4375, 8347301.1100211935, 8347318.945098127, 8347328.780607068, 8347395.3125, 8347414.0625, 8347445.230901945, 8347535.494350466, 8347542.266405815, 8347550.684848755, 8347565.184279321, 8347584.817222476, 8347603.349608095, 8347644.829638808, 8347673.974689396, 8347677.141197905, 8347689.586304712, 8347704.840242985, 8347711.57110805, 8347737.02356595, 8347751.20279781, 8347765.625, 8347793.546815658, 8347828.568918406, 8347845.901035247, 8347884.750872892, 8347913.162149159, 8347920.3125, 8347954.6875, 8348003.157772769, 8348017.1875, 8348041.4377249, 8348058.862313978, 8348084.375, 8348084.613265931, 8348091.665943627, 8348184.065129082, 8348185.314299925, 8348215.852003833, 8348216.887827728, 8348221.875, 8348290.427108644, 8348340.2310285205, 8348418.36598833, 8348438.582297891, 8348465.625, 8348477.899264945, 8348485.9375, 8348528.483350947, 8348532.8125, 8348539.606168062, 8348543.658165319, 8348548.4375, 8348553.125, 8348564.0625, 8348570.3125, 8348587.616629513, 8348589.464727283, 8348700.922100082, 8348709.375, 8348742.712576909, 8348796.875, 8348835.562345124, 8348899.7395509565, 8348904.341131486, 8348904.6875, 8348979.755823211, 8349037.085327145, 8349039.852411873, 8349049.48826473, 8349092.150864066, 8349092.1875, 8349095.3125, 8349134.375, 8349188.862743183, 8349199.123132618, 8349204.6875, 8349207.90648323, 8349213.145548012, 8349240.53802051, 8349270.3125, 8349274.553918197, 8349349.160195222, 8349357.545386634, 8349376.365595798, 8349393.278883718, 8349423.897669901, 8349467.1875, 8349559.834035936, 8349573.4375, 8349579.6875, 8349588.945523518, 8349687.504193389, 8349693.585867271, 8349707.8125, 8349716.730994005, 8349730.883371884, 8349747.907325555, 8349748.614299313, 8349753.125, 8349822.733264085, 8349835.9375, 8350077.816733279, 8350132.067481701, 8350137.060883885, 8350329.6875, 8350385.648456462, 8350416.648925002, 8350562.5, 8350851.483480631, 8350885.9375, 8350986.135684354, 8350992.339633156, 8351438.520450155, 8351529.6875, 8351538.714805635, 8351626.5625, 8351700.867492262, 8352701.5625, 8353245.3125, 8353718.635681522, 8353788.8264896, 8353833.240520406, 8357068.75, 8357709.138278324, 8358471.235206997, 8358579.6875, 8360453.4872045, 8360472.627910932, 8360815.024413513, 8360836.841450811, 8361203.125, 8362721.875, 8363129.6239546295, 8365112.939149442, 8365743.75, 8365933.5519023435, 8366606.25, 8367228.371889435, 8373091.51579171, 8376801.5625, 8378938.246527413, 8383439.566617771, 8383840.780724157, 8388198.4375, 8388200.0, 8388544.806058432, 8389852.920128519, 8390893.86111281, 8391604.899264978, 8394156.396903386, 8394248.951068224, 8395059.375, 8396685.115917744, 8397037.5, 8399657.8125, 8401118.686278969, 8402678.199257469, 8402731.25, 8403373.086723525, 8403425.86488168, 8403870.3125, 8404075.0, 8404883.896358151, 8405629.482540768, 8405916.967153087, 8406235.746986719, 8406360.886626832, 8406638.568169214, 8406902.54736362, 8406996.202865193, 8407140.353630673, 8407376.5625, 8408643.365145596, 8408766.780349974, 8408790.221858352, 8409365.625, 8409516.616781812, 8409621.875, 8410977.33459916, 8411902.973267809, 8412068.452970924, 8412137.042878002, 8412705.767304098, 8413115.204258408, 8413843.360419113, 8413853.839973278, 8414890.711621089, 8415652.76152683, 8416268.24179203, 8416469.3140906, 8421545.957681237, 8429859.375, 8431295.761547089, 8438811.769544423, 8440520.842741385, 8440885.812411763, 8441651.624866059, 8442809.375, 8442977.286749078, 8443276.594926178, 8443467.1875, 8444010.131745525, 8444319.323438276, 8444868.75, 8444904.391455038, 8445274.899502961, 8445433.431151602, 8445631.201038856, 8445815.1138999, 8446986.343869641, 8447473.389245396, 8447661.399478218, 8448013.025816366, 8448422.891850593, 8449480.465274146, 8450651.135389041, 8451163.756939305, 8451862.5, 8452158.631785445, 8452190.764391256, 8452248.4375, 8452434.407151716, 8452445.514448702, 8452946.875, 8452988.402413145, 8453001.44217172, 8453881.25, 8456537.364661066, 8456754.6875, 8460912.483181743, 8460951.5625, 8461461.307440765, 8472866.530642878, 8472878.648760702, 8472940.345472595, 8476237.178068407, 8477156.590392686, 8478824.989332017, 8480972.966307338, 8480985.672961013, 8482515.625, 8483279.296184337, 8486026.5625, 8487804.222364385, 8491819.103585236, 8492925.897562547, 8494151.5625, 8495121.196384702, 8495440.625, 8495501.946372878, 8497054.343931912, 8498107.8125, 8498874.783629566, 8500597.16270872, 8500640.064445646, 8501254.371217826, 8502610.997279739, 8503106.452780506, 8503964.529081577, 8505483.483699376, 8507537.991597863, 8507687.5, 8507703.244491875, 8507789.258951433, 8508242.657946432, 8508300.060433313, 8508413.60714468, 8509167.536037808, 8509348.4375, 8510106.89105427, 8510387.24208583, 8511101.5625, 8511609.241883576, 8512709.380918518, 8513221.875, 8514070.3125, 8514723.629706858, 8514746.145977193, 8514756.180944959, 8514949.245289356, 8515377.468657278, 8515870.115804601, 8515941.115135498, 8516671.875, 8517785.369319417, 8519092.77322973, 8519581.25, 8520268.724250663, 8521052.101221494, 8521064.204980884, 8521068.520620162, 8522549.24118155, 8523230.933347395, 8524335.644288482, 8525971.875, 8526945.953040598, 8527004.305357274, 8527629.6875, 8527710.9375, 8527988.372343421, 8528357.8125, 8528608.762138795, 8529410.9375, 8529532.687602015, 8529718.026374657, 8530509.827298248, 8530542.063523436, 8533537.750541141, 8533646.030542523, 8534327.95875426, 8534629.340277446, 8535153.736586645, 8537181.415956715, 8537553.741933763, 8537601.20118133, 8538077.415092759, 8538212.3570723, 8538272.789562397, 8538465.22449888, 8538940.61228436, 8539587.5, 8539632.744867321, 8539983.373407762, 8540167.1875, 8540366.789198512, 8541434.950783234, 8541516.459533295, 8541559.22089876, 8541564.0625, 8541619.537993038, 8541693.08687275, 8541796.72028745, 8541923.4375, 8542081.25, 8542167.336233933, 8542337.5, 8542351.5625, 8542359.20619139, 8542498.4375, 8542507.924125964, 8543593.298272546, 8543621.875, 8543745.941619223, 8543825.82581481, 8544439.0625, 8545952.616359225, 8546220.82252964, 8546812.399257533, 8547290.408908881, 8547297.701219471, 8547938.796072073, 8548003.266009517, 8548015.943203833, 8549979.6875, 8550292.1875, 8550314.038584653, 8550446.875, 8550829.624369081, 8550988.936812166, 8551006.389455289, 8551285.9375, 8551382.8125, 8551392.1875, 8552023.554913804, 8552256.132499855, 8552835.9375, 8553246.426877964, 8553389.214175936, 8553476.0898319, 8553830.5229676, 8553935.9375, 8554013.486656224, 8554035.628782658, 8554122.350527942, 8554198.4375, 8554862.8835529, 8554867.136893246, 8555641.47487691, 8556504.009306842, 8556624.815150341, 8556916.961646318, 8557302.815108694, 8558085.548300521, 8558689.989459476, 8558804.6875, 8558805.544606809, 8560445.168848217, 8561425.277441433, 8561436.960822318, 8561784.375, 8562302.597059147, 8562925.995039163, 8563378.582057996, 8563429.6875, 8564145.3125, 8564521.875, 8564577.549793994, 8565621.185345467, 8565811.440131275, 8566970.326773284, 8568478.125, 8570634.2398771, 8570764.89108342, 8570778.99976356, 8570809.122340348, 8570892.338996574, 8571000.228420716, 8571194.92508035, 8571257.016490508, 8571294.33519412, 8571457.8125, 8571644.87715662, 8571869.552349117, 8571873.050661271, 8571896.827847185, 8572125.0, 8572136.35420757, 8572209.375, 8572210.9375, 8572225.0, 8572343.878277207, 8572470.3125, 8572526.5625, 8572552.746206231, 8572616.386841752, 8572817.595909914, 8572849.232112607, 8572872.326818649, 8572937.109120037, 8572940.625, 8572950.0, 8572993.749545634, 8573190.646728886, 8573353.125, 8573364.206070317, 8573388.310326226, 8573594.213252693, 8573634.375, 8573755.644717189, 8573778.433213813, 8573800.905910172, 8573840.312816013, 8573909.768129898, 8573984.875410004, 8574171.875, 8574236.733338127, 8574250.158943191, 8574425.0, 8574485.9375, 8574495.3125, 8574606.246898467, 8574720.023614086, 8574815.161556631, 8574884.079807354, 8575081.567173727, 8575088.411146745, 8575261.297165342, 8575667.236368759, 8575798.237316916, 8576037.024426892, 8576634.923637912, 8576707.8125, 8576892.18101212, ...], [60.358862691764216, 21.396898626916958, 13.537600513086925, 14.48800991295901, 21.147334080866962, 76.49737072661956, 111.49702351305544, 10.036717090842227, 37.96288443967342, 17.08524999788023, 10.221864339608661, 113.77746097235733, 11.975957349736037, 58.43200977714523, 10.796616879128033, 176.15221827424315, 54.51146902889846, 11.219781461477403, 14.914833267503965, 5.898069672277589, 10.114512130661373, 86.01752807974358, 24.858867307699423, 69.79985948074437, 51.949455049750476, 90.524025040552, 84.77069771530145, 64.6618843765547, 18.922420636304675, 10.510300762648171, 14.596243388537495, 87.5726856155303, 19.067345650620492, 61.06465443029862, 13.752602176459337, 21.74958651896951, 12.369907587353985, 27.739772134696782, 43.421005784451005, 53.82250837547634, 17.08304422839192, 63.745064595580715, 35.57066081078071, 11.595973393585949, 63.42194544541718, 96.49998572683806, 7.122740223647632, 65.3625461454505, 6.996821922782572, 53.30602265866862, 44.17549143617344, 27.028625893400132, 9.062660292217933, 6.361632500542996, 10.438264587566547, 37.184556598307715, 69.15041686681879, 45.651591542819396, 32.90294235673582, 12.902469180217494, 6.704262573197717, 12.265580860818243, 179.45820255183247, 44.77315540059006, 28.737518376617338, 16.862499469520188, 87.38386807214819, 8.050130675739368, 9.018041989364994, 12.677393938455397, 40.96809966875236, 87.6396047434265, 15.426272512233874, 22.297204169834487, 29.03913910159098, 29.121260112981908, 39.27208931225923, 19.33234052464843, 36.56524701621065, 6.092084695562768, 57.69846037637838, 8.925889190618609, 9.77490473887462, 21.037312687769905, 18.34214663572122, 45.95840231700487, 67.07255316343557, 23.3871002096188, 84.14346859925162, 113.83180791709226, 39.27957440428413, 34.450916679292234, 20.42088330974043, 6.846896537356722, 71.25419648764093, 55.73554996791439, 23.024018784577695, 20.04414811929492, 64.79912851356454, 15.219696100011776, 16.075114640443857, 20.02335294827045, 82.566700017112, 9.405730229852821, 10.149889677278635, 69.821290865508, 57.73848234173223, 26.667057844806436, 17.732586146673704, 19.299397971137942, 6.918319249417356, 17.454965665300794, 31.616359818231633, 25.18718129751595, 49.72668895012809, 22.945849112757397, 129.46031604841642, 29.44336068803502, 6.467302960472735, 80.7963536098727, 21.582613570585092, 20.999491163703105, 7.45405722305614, 14.479098795688639, 51.60177511969969, 101.19239040879833, 16.954827554293466, 18.54273174335586, 14.495588828731467, 5.592896640673967, 10.41829149747044, 74.21458467483747, 30.49543903413325, 7.357294331900545, 42.2305211442352, 18.969837490584098, 23.115888721161323, 33.39317485616964, 9.564302920642465, 5.586960519761839, 37.424223101492835, 16.475613622992796, 46.12511148370079, 12.091729686605635, 32.76264940443259, 51.54566519460939, 5.143263754562603, 8.858743149234193, 76.01003374316049, 67.85303438418173, 5.253490505565949, 7.106406173843886, 9.064689924410768, 5.846776264791165, 16.3052622318216, 19.903409405967636, 18.429334857480367, 74.80892214483788, 15.2478877391646, 25.415723759752492, 107.56002641318801, 32.77472913621149, 5.06988023728892, 8.561613226320612, 30.063343185717823, 18.402576275879404, 62.19627597154517, 55.72441511994775, 42.156118167673405, 30.495774977070088, 5.701250226718778, 129.75250273498685, 47.276298707416636, 55.634411824644246, 7.558449644113603, 18.65773767967858, 50.17772118865264, 76.54593912470855, 105.33740011008622, 44.01440684143649, 23.442646565326235, 56.92538835907431, 56.76481113188656, 66.03826737595952, 19.118600510666365, 17.692162806256654, 38.508865238004496, 19.341600560072308, 89.81863015727129, 59.41920179239989, 12.127915191492006, 83.87744904255122, 49.086222464513185, 53.04356967056066, 96.51248381435678, 12.2053824734147, 160.9208462274853, 47.8274454777247, 41.492318652459915, 5.997524281667413, 14.19182015563277, 10.998222009134908, 114.01618452608466, 112.75122250626883, 35.57605794367268, 10.466005449651032, 9.34262679153634, 63.995823504522484, 87.75519386071296, 77.25175500504399, 9.043277394766921, 97.35575527306307, 8.419597781742848, 18.174301676682425, 106.0332547130084, 90.61946983611733, 319.1191863848313, 28.179728643524882, 12.269554514216187, 30.037441090081693, 21.27450628494203, 58.7737425610105, 20.693363661432024, 35.19037383486018, 90.0304204828488, 5.470670518402117, 16.971599980288307, 14.6205115549868, 68.04826457287825, 71.0786188648817, 9.574306820354298, 45.69060987692619, 43.958452689102174, 45.04485646571913, 15.550933667373537, 209.97800100037693, 61.82266951442715, 18.079723004573825, 15.216254963033904, 24.906752219794598, 66.13134553147067, 7.333834533002446, 39.29039484015178, 5.253679364420783, 73.64272621442171, 116.54763844532678, 49.08894465139893, 5.171956476763835, 54.509531017447095, 21.538988428136467, 24.80323613895373, 11.599904743695893, 6.907059905862332, 19.575256229033936, 68.35576875529753, 106.59941873434016, 15.877314002198887, 31.066917389919716, 52.63867571822461, 71.79140165144206, 137.27850850822216, 16.05429242513917, 61.492588786053034, 10.893152341767918, 6.234056654331163, 20.410955586290775, 95.48268023666905, 60.97085507427152, 22.395919499485704, 41.163984898142466, 13.07560266177373, 84.0795519887942, 35.35378346321121, 54.288351852238975, 37.71235345073738, 6.773153244726556, 15.269762557838876, 7.913483200321657, 39.136791876105484, 6.0768578904931445, 5.668086226896684, 24.921159391393076, 23.39563478910991, 17.811158398386453, 15.18917634977004, 33.851262284439045, 125.671271049053, 38.76894515192509, 49.86602493620965, 48.748435459758355, 8.272353910419161, 15.162823500276202, 52.551381377449125, 20.521748075808887, 7.050603125410199, 126.99079435050777, 53.541767445612564, 94.78537094462767, 11.279216269102427, 54.5326940124656, 19.247277044029516, 126.81589614599393, 63.23546292046164, 36.64754110585153, 118.90668091549577, 47.87754737195951, 11.094686806729118, 132.58954146476705, 36.67014927038157, 8.55773769459331, 14.147864297345015, 29.363850915944404, 26.632025795489255, 90.6205414490749, 9.41336217562504, 6.618286951100051, 22.50223291478224, 41.1963418648332, 222.42491719422088, 76.88301787956854, 251.0820456363225, 12.54753955723744, 100.97773356357254, 9.853281632616516, 50.66829620409833, 77.59128136731127, 69.76002446970352, 46.56773916431755, 45.06361548916174, 30.62261011095142, 53.10847945056992, 7.92477581554611, 7.1573150035238315, 21.203898455132958, 28.04664365474738, 52.239057929041046, 10.292457747924567, 12.986417109199271, 132.0940495297266, 31.632346797201773, 93.9292536532583, 5.371141976071822, 88.45036146776513, 98.08924542135571, 48.41377216403879, 23.41460438353269, 7.344350196343257, 13.113463907762563, 8.805467541693769, 113.64902449754985, 11.19663269207179, 71.90813028380478, 89.18444021143621, 20.94389233104548, 5.124290852342578, 85.21619170149826, 203.43436716715428, 62.88991642876956, 33.641384463134166, 38.570652852281185, 131.2778904429917, 6.153756010456745, 16.18908933066693, 97.31950309550928, 86.85878590913974, 5.812284575900994, 12.200908851474027, 19.708815888670348, 5.561683798419915, 16.09366663667362, 43.434505024740844, 24.15776136551006, 71.79545813585743, 97.17676811703902, 59.485749006419915, 18.986490182153176, 25.248016439603127, 15.312178207410431, 224.14047494839292, 116.0038636864992, 27.012780865184602, 5.719076837130635, 15.93638011360783, 5.530955474246152, 39.41069593346752, 8.721229328724037, 75.62311360903647, 30.11835360495605, 168.6281857462792, 78.83742311416535, 18.08068281402006, 14.646066107224414, 54.43308456221287, 102.15271673825094, 86.00687113216624, 71.41337482512547, 7.013573933034443, 11.625970727901832, 18.662191132770282, 138.09979364319744, 75.92563991560642, 78.54316293125376, 46.15851730626282, 38.70445064221536, 80.88772966796654, 9.924268629812099, 18.348190463547063, 14.85140708842443, 14.886407102614022, 6.755423194671762, 53.088791181768954, 27.667453540942372, 5.708644596286244, 9.710745373501199, 21.474284615663265, 20.07435821617018, 31.18079729154019, 51.44655665548378, 26.034022429796366, 5.481555113456881, 138.10874349166858, 26.846816978716337, 56.700661333390016, 11.593013992169286, 56.42381857838265, 99.16756389186506, 43.453295154555164, 21.466051049017786, 16.95064212555633, 10.603157655723404, 19.99752028502562, 54.55330336502165, 7.875796711634871, 87.59001922242369, 5.800658489511586, 46.882959202393494, 61.71219840607284, 49.838278954541856, 36.22101136538345, 6.400489950800993, 22.072473726934838, 14.820373337494464, 23.857936636916506, 13.915763436190042, 47.43201145563054, 130.41754654052295, 56.996929952323846, 12.754534107862717, 63.63840611776892, 114.2857231587872, 46.8646318923035, 20.02465054798931, 41.02302107943869, 42.25480029801325, 25.46003175555526, 38.76981399808274, 6.5049265922339154, 5.461766735078357, 59.066310070560505, 22.536844299682944, 95.36456883023827, 50.42630214275658, 7.7622717696331724, 7.164766143063835, 63.01558319819309, 33.582544181936065, 25.751366891751694, 53.89136938427698, 175.17955717799893, 64.07883426098823, 139.88723727551877, 27.515649373913632, 12.612205612395401, 18.740842605109574, 73.78564568803094, 60.749530103426565, 15.840698967005952, 84.00766510948344, 139.15139923419216, 31.756713661686753, 73.53134244123385, 15.797887118509546, 110.22349080418854, 35.206855462780396, 93.11862717068999, 27.90707816677984, 14.23042860433108, 64.43665981292833, 103.58958493565544, 30.519547091264037, 97.83842767379238, 36.19771248617027, 83.33525723206108, 18.176949781784923, 14.785562346243083, 52.80250816724557, 14.859661946109341, 30.802698427430048, 20.643651345628832, 8.118412973860577, 13.527623989983804, 43.240740086476286, 46.80043605048767, 87.52749851678152, 15.87471494788681, 5.996012239862476, 149.52671632441687, 56.09106950409273, 186.50693512251672, 38.66986114080378, 42.203733516354056, 7.200462948989302, 38.58626085638744, 6.038085366718655, 74.61877948022794, 65.60678861279337, 34.03617896429094, 32.81481791312352, 20.710474249897285, 20.09157783137582, 23.203376475987707, 7.495651939921847, 64.81033609325748, 27.711595412989595, 61.22879266549159, 5.40349070818862, 195.05253849283142, 14.168620292281853, 15.471250642203223, 198.21775756832918, 69.86089688264532, 74.64659371139159, 40.397032840711496, 26.080400444482734, 11.727439149485026, 5.545335191866672, 54.44652706287326, 86.9580154263328, 25.488006000976213, 6.9018540511355875, 102.35263561064173, 53.61653034393219, 6.474375646724296, 21.560864794329966, 91.79214083522892, 53.67293803901983, 13.758482814473332, 75.48689348746652, 15.872787898391739, 19.984273903479107, 92.15938655873549, 6.15041969460889, 9.817403004590457, 58.50473475508956, 25.800915877057726, 10.456599444490935, 23.016952741157365, 71.85437267939646, 138.7662490825187, 16.954718516479005, 243.51564233175313, 16.597926995840847, 94.56355191204494, 51.2908025634772, 30.199883698411362, 11.179322074007287, 31.962563973774657, 7.352842088382919, 50.338001778492696, 42.8207416333539, 8.416727722558274, 8.926174996797357, 34.56661922589077, 20.34626497534575, 72.15179042163932, 61.19488198069687, 70.14372843771112, 25.148974262201325, 22.62028057610663, 161.64736511952674, 138.129595064258, 33.21395893937834, 24.74810709661813, 34.280725326777144, 11.738182320651722, 44.409432555357725, 17.51695026626188, 95.25894367682983, 38.330009195191494, 67.75470133524306, 53.338474641841294, 32.45103090975155, 11.315034668091709, 44.014687714874185, 10.255305413883553, 135.0018115798907, 12.061254633279525, 56.79059905520979, 22.83597548799261, 120.65146618639488, 13.767467181034183, 56.90237286271939, 11.236206532355713, 64.85710552118556, 72.97366277432582, 28.42288069903953, 11.070921296780245, 77.62647772530308, 73.70943026334997, 98.95669823286046, 6.724271340655539, 269.90164043985646, 72.35381552293146, 15.312252435422051, 98.11844119326923, 69.48545863319879, 50.98743159808216, 22.048370721596164, 18.662601330043508, 19.277747818144555, 53.67664089649439, 28.124870300660426, 28.55915244573166, 57.387771868330034, 76.203566427015, 135.82077223792166, 37.884885525131494, 24.49077184327721, 21.835623448993857, 25.65663188196733, 111.37711903351406, 21.93823308190226, 22.93540241086758, 5.5853718305980715, 15.6611108541519, 39.74422495312161, 56.28331551221251, 57.67565518513945, 34.084560131379305, 19.353696682833863, 5.782188497132375, 49.928748010104165, 23.891711500018125, 21.116735500716768, 195.34351454645235, 27.05369029386384, 65.93332844127733, 63.70917098828425, 15.554908811216999, 19.283564770339705, 47.89717434124591, 62.93009702038051, 57.619649643341226, 8.805596467249183, 86.94237336342653, 54.47278439998058, 36.10763670700313, 24.604045755732066, 11.869838703464264, 62.539044664471334, 50.074948149873755, 29.078011171482075, 28.632487890899363, 16.528677620259785, 16.954093700499243, 20.545137596591637, 10.233835302672777, 74.32918793901223, 63.58722336828795, 5.5300044116368685, 16.929037558122815, 32.43527497872308, 24.98952381004844, 64.21801414207232, 25.424673834259437, 57.4198640771273, 63.96544828280259, 19.39100862741654, 5.984543313650442, 15.570246087847217, 84.8722232275258, 43.8566063092223, 13.308438649967686, 64.69555004366657, 5.822247663301932, 111.01720017732733, 6.285938692598674, 6.1431852587828, 64.86352042511886, 18.79048020304258, 72.40042981936377, 81.2680418299355, 151.88054068118558, 79.93241689050011, 70.68652055759962, 56.72550630836762, 5.186005724932253, 69.72815837766012, 56.695745393837846, 21.7088382960887, 8.181085941808615, 84.40218836138247, 136.53833282928076, 54.28094804510524, 21.549840700673187, 80.63507798566779, 12.878100516757769, 10.728474081903695, 47.60594698329473, 8.09303152816351, 22.47218544722798, 33.97920205862292, 74.27785650300082, 20.815509821308297, 85.68176167855086, 5.183741964997971, 22.96886815460207, 54.81446959590909, 13.445033125927516, 13.373689049139665, 45.16044976948264, 8.090772371440144, 6.361963589603114, 6.09715360756591, 29.123954906702476, 13.303622412070869, 65.6213236572583, 9.943826873062307, 61.51029743482646, 11.910498467713326, 25.00256355014063, 17.80812940260323, 26.2755598188478, 6.776021669216513, 38.38281963281314, 64.77053466238377, 15.066560185394499, 49.992822917598744, 75.30184545732807, 9.868405193178344, 111.4334818958194, 19.61012078777196, 30.562353412356334, 17.97372008230116, 81.78625426750423, 13.295747932368549, 129.29627003657475, 41.30951568995522, 19.756093369231497, 43.99070102498079, 5.274524927719898, 8.74567964941097, 34.464380347694295, 293.6938797792817, 79.26117429667323, 19.367494994902138, 22.362183672560842, 32.388447535746856, 31.103133325380057, 35.36626026798241, 51.969266406157104, 20.032135447483604, 26.353480230585642, 47.06437180245424, 7.0863238901306, 64.05274053245213, 42.40848127695, 73.56299488092105, 5.634843317975859, 10.235830386823217, 5.559051976197641, 21.715878157022765, 15.604251020126409, 90.30505379620212, 101.8996621744281, 60.68617414946735, 39.34660668853305, 71.30071821073462, 5.383722185888713, 107.24154329992155, 7.443245120989325, 6.836211671812828, 111.9150035503368, 98.52009618944187, 110.13150800514198, 122.14051701143127, 39.08588625167481, 9.056863929752637, 86.25547192268229, 43.18677414902343, 137.26123478348512, 13.163206039898565, 205.88345552288865, 40.42300548020853, 15.7751712002543, 7.781184389026355, 168.58050217729112, 5.983391544044475, 49.071097545469584, 7.6470352651307625, 9.503228027441837, 9.763612029556478, 27.602295148862307, 126.04398552093642, 24.393478462063563, 87.73433213409845, 16.143349814821338, 62.30703666105704, 80.99202614510122, 7.0868935937304025, 78.87480237233278, 35.46029581137855, 57.36302249773891, 16.73458493520281, 19.02203468723959, 14.684678163668769, 102.9467154754832, 23.047358121297208, 5.922457209787638, 45.26217949447698, 63.219339730970894, 20.83889690300604, 9.881182551718494, 44.126897038417745, 14.844264951431402, 5.85494617256184, 15.513890463611355, 24.696773103610962, 12.66901100854847, 10.666379702586413, 30.29533090192774, 141.49719072734297, 6.592419016297208, 22.755282250638462, 58.45452138670575, 46.77485096459649, 28.792396488164897, 59.045257675808074, 20.436580021806023, 34.15390552986386, 10.937938309012383, 54.92216503539237, 85.39237370184784, 26.29370847438352, 11.543282264912605, 39.17883449442179, 31.58928801755464, 10.62513853852732, 19.8967224059241, 98.47075988379477, 23.33200185476028, 55.35605731076044, 128.12190927539896, 9.213404683419084, 6.390101783872558, 22.5466020421903, 28.275698829551676, 29.763478145173956, 27.254600924039927, 17.61923787768257, 29.2808954412979, 131.1019446724407, 12.165178736234123, 5.661943361200589, 25.8122918654617, 127.92645916321521, 19.131653209811954, 68.37315809688039, 40.94652499116697, 54.34348853815334, 153.3213031077418, 32.76629606680885, 38.31411866551738, 60.73307741499088, 6.4609506365282545, 30.614375790944145, 44.79569070304216, 6.676553569610889, 86.08496057685248, 12.27755322650463, 8.777561589007824, 125.11098667126598, 40.60556832299211, 17.584380914048985, 26.68001018383319, 5.798162533335903, 53.80198681686158, 24.18926476138255, 5.29546290569737, 28.638052325607365, 44.26495645082757, 34.328051153500795, 37.90475485603056, 82.99753944828892, 5.289141162916342, 26.26578353984925, 79.87006389358545, 65.30985942097757, 58.85079791538156, 72.0740130818348, 5.822719264298333, 318.32208945633954, 156.1941377141655, 14.079624562875665, 24.012123774806312, 6.415464022920248, 19.49242912827664, 87.18114550821205, 20.768472945084678, 23.640024708317895, 5.640904547138178, 46.00829934397079, 7.22606316338671, 30.066743710619328, 49.66074094236165, 5.03029739139347, 14.280841126361347, 80.73952139485452, 32.763202344958344, 105.4990823672961, 20.23978282409794, 73.0326751807705, 26.68322072781451, 5.286670483275179, 6.820189140275607, 77.09025865707464, 33.403922060941234, 21.21883105427428, 29.21606544257134, 101.33974034019073, 140.56774403165508, 94.74841534933557, 175.14035911835128, 20.77431104859184, 34.65925131803934, 9.795930757708, 87.45271236587968, 111.97340101772669, 26.113086139693735, 28.39402920914226, 19.804636287231176, 19.789339682019865, 11.373060646456251, 112.43071781498286, 7.4688776214064525, 7.906171252076857, 12.1847750368591, 54.53870588266122, 44.67458574905403, 19.238925330091813, 77.26396838380403, 59.553224258468006, 75.01056996977987, 9.710494077528876, 45.80166978691228, 41.9347974233497, 44.38122467349626, 14.065136128269138, 41.126581998359235, 51.21749195628007, 59.02405202288453, 7.337232763184332, 16.765980597497318, 19.180923739478214, 22.52877742891733, 26.05278720492927, 30.823547377295817, 43.52947267678921, 11.021576985518028, 11.161841155326796, 55.4251200863381, 17.798899896225898, 19.299207278914942, 17.05991609736761, 67.55785202193793, 23.8306688958387, 6.8266396128665745, 82.97452777687343, 108.36970073005548, 16.686489341651498, 98.3359983531704, 34.2109825207119, 75.98527314910395, 5.953367817001277, 46.91952186569286, 42.5144324163561, 48.695500239891025, 43.34925150146897, 23.893754498533408, 8.96804192099492, 98.70161730813854, 5.837827158975336, 10.242329240124388, 8.486395353733334, 6.773302212210593, 25.115386451008128, 21.740282166244032, 85.44472988200276, 78.77721179470353, 77.07190680341698, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([4583795.412780969, 4592054.177801864, 4794162.075468487, 4876117.063203905, 4927111.787940799, 4935220.3125, 4937206.25, 4938011.668431743, 4939137.5, 4939484.842861144, 4939575.893773932, 4941185.9375, 4943298.9199281065, 4947920.9542282475, 4959157.589823028, 4959198.4375, 5049573.149219926, 5054175.688048228, 5059992.180483549, 5062226.075281077, 5069372.675625891, 5124675.0, 5125039.661677981, 5125048.4375, 5125731.25, 5126210.9375, 5126432.8125, 5126482.8125, 5126775.82544033, 5128501.128002172, 5128537.406367047, 5133848.4375, 5140031.45268967, 5154828.125, 5156327.373642093, 5159082.33783282, 5167406.921836038, 5168453.169216103, 5168535.9375, 5290371.875, 5310459.842460624, 5417700.0, 5426271.875, 5515676.842758416, 5530318.75, 5601325.968315255, 7318928.1298996555, 7328855.840376717, 7348077.6286775395, 7353590.551153006, 7353617.1875, 7354016.448939752, 7355746.539098143, 7361150.712591792, 7365980.759078933, 7414529.6875, 7488146.875, 7488432.8125, 7491405.630344564, 7493885.275192537, 7495887.195824544, 7502174.061008765, 7551523.8089159075, 7558372.449129875, 7660410.624487059, 7696267.614202324, 7725659.252068708, 7725794.836908541, 7725802.729596914, 7726083.619740546, 7726114.0625, 7726155.902908851, 7727031.371623823, 7728748.0144988205, 7729320.553889005, 7730499.690828188, 7731860.371570068, 7734727.3771834355, 7735109.189389334, 7735253.1632381575, 7738067.087097924, 7738261.978043272, 7738627.044235838, 7740808.828062508, 7741247.55056923, 7742432.8125, 7773719.665888801, 7780875.025285794, 7813134.375, 7844032.8125, 7845434.375, 7845885.9375, 7846050.947850239, 7846420.71632269, 7849087.5, 7858690.625, 7955148.0783950705, 7958780.591350868, 7989086.48287266, 7990618.821119964, 8028822.143693397, 8043294.828475692, 8052232.129086023, 8052995.399114288, 8053074.269202545, 8056776.262100211, 8076140.625, 8082523.33599154, 8084789.642204132, 8084791.435351359, 8087110.103954638, 8090058.345590271, 8125764.0625, 8131906.370370474, 8140061.295263952, 8159166.821762494, 8165015.625, 8201821.339052384, 8205013.935093849, 8205293.75, 8205562.008926714, 8206758.824052229, 8207273.005301761, 8210148.310650177, 8210254.6875, 8210289.2819058485, 8211205.131438613, 8216705.805208888, 8216785.519658071, 8217762.111307205, 8221121.368198088, 8222541.068391682, 8225323.160855359, 8225493.014641905, 8228151.485727594, 8229525.76593925, 8230059.023619514, 8230687.5, 8232095.575669011, 8232410.437337911, 8232444.942780876, 8232861.919677213, 8233084.375, 8233520.852587026, 8234738.162181875, 8235239.538252365, 8235291.212676083, 8235547.820083334, 8235693.397600153, 8235843.201901969, 8236187.795458465, 8236453.067453579, 8236969.979278078, 8237044.183616115, 8237098.969785965, 8237406.099351327, 8238111.409768165, 8238312.5, 8238625.078124941, 8238670.966524014, 8238718.801647832, 8239449.3339403765, 8239514.116535823, 8239884.861241839, 8240101.5625, 8242048.756619827, 8247991.965308596, 8249375.0, 8250267.1875, 8253017.1875, 8253056.163108495, 8253852.283568935, 8254103.519184589, 8254364.745563954, 8260662.374446355, 8263958.5344957365, 8265374.318627642, 8268018.75, 8270187.930871079, 8272745.3125, 8274973.112991414, 8276859.375, 8278157.468764108, 8278466.932812985, 8278467.973731994, 8278517.760537393, 8279453.918635809, 8279603.940897742, 8279879.6875, 8280019.515701959, 8280187.162575709, 8280255.750919505, 8280357.8125, 8280364.0625, 8280379.6875, 8280567.78254003, 8280667.009669944, 8280767.1875, 8281085.9375, 8281564.70652234, 8281662.288348325, 8281834.2905495, 8281967.1875, 8281992.1875, 8282062.404675488, 8282162.030964331, 8282256.263243888, 8282454.6875, 8282456.25, 8282516.179633748, 8282519.950888448, 8282880.098263662, 8283187.74334897, 8283245.96251499, 8283298.4375, 8283304.041878728, 8283351.6962311035, 8283615.4297533175, 8283636.562872766, 8283807.602194533, 8283836.977804194, 8283909.73724555, 8283984.498567424, 8284037.5, 8284060.095414849, 8284275.205821414, 8284338.573356404, 8284629.600653771, 8284705.078954849, 8284771.875, 8285247.1489488715, 8285434.375, 8285837.855069639, 8289442.1875, 8289874.787191231, 8291270.374483359, 8298585.475512417, 8301164.697840521, 8302507.882762434, 8305186.72634875, 8305828.125, 8308596.063193983, 8308649.6682242025, 8309345.614582719, 8310472.70597426, 8310632.29417886, 8310979.6875, 8311856.530937087, 8312045.3125, 8312238.567087803, 8312762.278158819, 8312801.844958374, 8313120.991399177, 8313133.658549555, 8313282.64810322, 8313470.3125, 8313529.913111199, 8313837.429833215, 8313943.75, 8314139.514571459, 8314268.75, 8314904.895594261, 8315268.237290493, 8316629.532071241, 8316774.733102976, 8316821.259217227, 8317306.149126031, 8317317.1875, 8317447.12501586, 8317457.664152084, 8317518.155935533, 8317567.1875, 8317871.875, 8318298.4375, 8318339.76427129, 8318573.4856285285, 8318586.021035444, 8318853.908386793, 8319487.116997365, 8319567.078702989, 8319750.937215341, 8319820.098917953, 8319862.171682008, 8319949.030048069, 8320007.8759954795, 8320707.231796843, 8321157.8125, 8321492.079189279, 8322754.6875, 8323371.875, 8324103.09800612, 8324117.244377391, 8324404.6875, 8325136.8200825285, 8325220.035945104, 8325516.158796892, 8325570.081660798, 8326515.625, 8332696.619168961, 8332813.976708564, 8333617.990958148, 8333889.874138396, 8333965.401522292, 8334007.8125, 8334034.5960800955, 8334193.75, 8334374.978771618, 8335209.375, 8335879.6875, 8335923.917330321, 8336199.774934938, 8336426.30916173, 8336446.718929781, 8336451.5625, 8336554.782864322, 8337028.913809351, 8337119.908041185, 8337293.191682202, 8337382.860957618, 8337539.0625, 8337831.314369321, 8337910.126294978, 8337934.375, 8337975.558816265, 8338018.501021702, 8338435.9375, 8338570.3125, 8338885.9375, 8338900.0, 8338939.909985777, 8339140.625, 8339202.371846222, 8339240.7596957125, 8339352.595511824, 8339568.0998200765, 8339868.75, 8340091.578196853, 8340110.308622958, 8340140.625, 8340181.25, 8340245.861932989, 8340255.516160152, 8340314.0625, 8340357.8125, 8340487.5, 8340502.567789228, 8340516.410108602, 8340518.170500324, 8340641.492301795, 8340678.06886825, 8340681.395274987, 8340735.708438292, 8340759.020477712, 8340785.3806238305, 8340795.0195772, 8340823.4375, 8340825.197583996, 8340864.0625, 8340871.875, 8340878.125, 8340879.323576583, 8340886.546059156, 8340898.7548642075, 8340903.125, 8340910.5525698, 8340926.539556289, 8340934.967906988, 8340949.300372889, 8341022.450597149, 8341033.08515978, 8341042.961785056, 8341057.543709788, 8341068.251068493, 8341084.004897615, 8341098.279132354, 8341116.246976979, 8341179.673809101, 8341181.343965049, 8341193.75, 8341194.602611506, 8341253.525450517, 8341270.504337947, 8341308.051130025, 8341328.081136223, 8341334.793417721, 8341342.927958351, 8341351.5625, 8341353.125, 8341375.3797657695, 8341376.934226463, 8341378.803159621, 8341381.170265703, 8341415.625, 8341420.985423751, 8341423.4375, 8341432.8125, 8341437.07307854, 8341465.921984706, 8341471.035136246, 8341476.5625, 8341509.375, 8341534.375, 8341545.002889684, 8341600.638764959, 8341658.646594349, 8341716.251762945, 8341827.238977977, 8341838.761178862, 8341928.414595618, 8341993.709375407, 8342007.255712955, 8342063.14498223, 8342070.342102707, 8342111.354464305, 8342116.685611752, 8342204.03245683, 8342210.9375, 8342284.375, 8342293.609939625, 8342308.265578353, 8342359.375, 8342429.514913228, 8342433.923342824, 8342434.653600781, 8342446.875, 8342470.3125, 8342643.75, 8342671.372284166, 8342730.130662715, 8342748.073819776, 8342756.978300289, 8342769.1355112335, 8342891.320554358, 8342910.563488292, 8342918.568317158, 8342952.729803111, 8342960.9375, 8342976.5625, 8342995.529169386, 8342999.424372152, 8343049.851991923, 8343051.530351313, 8343098.145845825, 8343101.26456693, 8343129.626304797, 8343204.165086229, 8343260.94426339, 8343293.098520497, 8343321.875, 8343329.890353834, 8343365.625, 8343375.265642192, 8343410.755181592, 8343448.4375, 8343479.510486114, 8343566.400287315, 8343593.862840103, 8343762.500004574, 8343785.9375, 8343805.848630151, 8343806.492758334, 8343889.0625, 8343897.294294128, 8343907.974752166, 8344017.056644826, 8344021.2479086695, 8344069.612509877, 8344096.875, 8344296.532367693, 8344300.892153945, 8344329.860290443, 8344374.9468674855, 8344421.09187471, 8344602.296382891, 8344690.625, 8344706.030685937, 8344888.605885592, 8344897.487428382, 8345007.612031622, 8345036.81838741, 8345078.917917449, 8345085.368662779, 8345089.102774019, 8345109.375, 8345270.3125, 8345272.964811033, 8345406.050031602, 8345418.75, 8345440.2603529915, 8345454.6875, 8345490.625, 8345498.57663455, 8345562.5, 8345636.245232795, 8345639.020974834, 8345651.5625, 8345735.915859339, 8345742.983690334, 8345751.309097651, 8345787.167859181, 8345830.821987584, 8345847.667284313, 8345909.375, 8345947.738745466, 8345962.725035276, 8345972.502838671, 8345992.1875, 8346080.477398611, 8346179.6875, 8346231.25, 8346295.3125, 8346300.292280346, 8346309.375, 8346379.192421758, 8346406.25, 8346414.087213616, 8346471.875, 8346489.009330473, 8346513.77246344, 8346558.722006024, 8346577.780905573, 8346602.817411628, 8346815.183531264, 8346823.991811997, 8346834.186878587, 8346864.193109876, 8346867.685615129, 8346960.718783696, 8347023.569871666, 8347031.788722248, 8347181.25, 8347191.053453445, 8347244.863410017, 8347267.906279343, 8347285.200220904, 8347290.874941082, 8347298.4375, 8347301.1100211935, 8347318.945098127, 8347328.780607068, 8347395.3125, 8347414.0625, 8347445.230901945, 8347535.494350466, 8347542.266405815, 8347550.684848755, 8347565.184279321, 8347584.817222476, 8347603.349608095, 8347644.829638808, 8347673.974689396, 8347677.141197905, 8347689.586304712, 8347704.840242985, 8347711.57110805, 8347737.02356595, 8347751.20279781, 8347765.625, 8347793.546815658, 8347828.568918406, 8347845.901035247, 8347884.750872892, 8347913.162149159, 8347920.3125, 8347954.6875, 8348003.157772769, 8348017.1875, 8348041.4377249, 8348058.862313978, 8348084.375, 8348084.613265931, 8348091.665943627, 8348184.065129082, 8348185.314299925, 8348215.852003833, 8348216.887827728, 8348221.875, 8348290.427108644, 8348340.2310285205, 8348418.36598833, 8348438.582297891, 8348465.625, 8348477.899264945, 8348485.9375, 8348528.483350947, 8348532.8125, 8348539.606168062, 8348543.658165319, 8348548.4375, 8348553.125, 8348564.0625, 8348570.3125, 8348587.616629513, 8348589.464727283, 8348700.922100082, 8348709.375, 8348742.712576909, 8348796.875, 8348835.562345124, 8348899.7395509565, 8348904.341131486, 8348904.6875, 8348979.755823211, 8349037.085327145, 8349039.852411873, 8349049.48826473, 8349092.150864066, 8349092.1875, 8349095.3125, 8349134.375, 8349188.862743183, 8349199.123132618, 8349204.6875, 8349207.90648323, 8349213.145548012, 8349240.53802051, 8349270.3125, 8349274.553918197, 8349349.160195222, 8349357.545386634, 8349376.365595798, 8349393.278883718, 8349423.897669901, 8349467.1875, 8349559.834035936, 8349573.4375, 8349579.6875, 8349588.945523518, 8349687.504193389, 8349693.585867271, 8349707.8125, 8349716.730994005, 8349730.883371884, 8349747.907325555, 8349748.614299313, 8349753.125, 8349822.733264085, 8349835.9375, 8350077.816733279, 8350132.067481701, 8350137.060883885, 8350329.6875, 8350385.648456462, 8350416.648925002, 8350562.5, 8350851.483480631, 8350885.9375, 8350986.135684354, 8350992.339633156, 8351438.520450155, 8351529.6875, 8351538.714805635, 8351626.5625, 8351700.867492262, 8352701.5625, 8353245.3125, 8353718.635681522, 8353788.8264896, 8353833.240520406, 8357068.75, 8357709.138278324, 8358471.235206997, 8358579.6875, 8360453.4872045, 8360472.627910932, 8360815.024413513, 8360836.841450811, 8361203.125, 8362721.875, 8363129.6239546295, 8365112.939149442, 8365743.75, 8365933.5519023435, 8366606.25, 8367228.371889435, 8373091.51579171, 8376801.5625, 8378938.246527413, 8383439.566617771, 8383840.780724157, 8388198.4375, 8388200.0, 8388544.806058432, 8389852.920128519, 8390893.86111281, 8391604.899264978, 8394156.396903386, 8394248.951068224, 8395059.375, 8396685.115917744, 8397037.5, 8399657.8125, 8401118.686278969, 8402678.199257469, 8402731.25, 8403373.086723525, 8403425.86488168, 8403870.3125, 8404075.0, 8404883.896358151, 8405629.482540768, 8405916.967153087, 8406235.746986719, 8406360.886626832, 8406638.568169214, 8406902.54736362, 8406996.202865193, 8407140.353630673, 8407376.5625, 8408643.365145596, 8408766.780349974, 8408790.221858352, 8409365.625, 8409516.616781812, 8409621.875, 8410977.33459916, 8411902.973267809, 8412068.452970924, 8412137.042878002, 8412705.767304098, 8413115.204258408, 8413843.360419113, 8413853.839973278, 8414890.711621089, 8415652.76152683, 8416268.24179203, 8416469.3140906, 8421545.957681237, 8429859.375, 8431295.761547089, 8438811.769544423, 8440520.842741385, 8440885.812411763, 8441651.624866059, 8442809.375, 8442977.286749078, 8443276.594926178, 8443467.1875, 8444010.131745525, 8444319.323438276, 8444868.75, 8444904.391455038, 8445274.899502961, 8445433.431151602, 8445631.201038856, 8445815.1138999, 8446986.343869641, 8447473.389245396, 8447661.399478218, 8448013.025816366, 8448422.891850593, 8449480.465274146, 8450651.135389041, 8451163.756939305, 8451862.5, 8452158.631785445, 8452190.764391256, 8452248.4375, 8452434.407151716, 8452445.514448702, 8452946.875, 8452988.402413145, 8453001.44217172, 8453881.25, 8456537.364661066, 8456754.6875, 8460912.483181743, 8460951.5625, 8461461.307440765, 8472866.530642878, 8472878.648760702, 8472940.345472595, 8476237.178068407, 8477156.590392686, 8478824.989332017, 8480972.966307338, 8480985.672961013, 8482515.625, 8483279.296184337, 8486026.5625, 8487804.222364385, 8491819.103585236, 8492925.897562547, 8494151.5625, 8495121.196384702, 8495440.625, 8495501.946372878, 8497054.343931912, 8498107.8125, 8498874.783629566, 8500597.16270872, 8500640.064445646, 8501254.371217826, 8502610.997279739, 8503106.452780506, 8503964.529081577, 8505483.483699376, 8507537.991597863, 8507687.5, 8507703.244491875, 8507789.258951433, 8508242.657946432, 8508300.060433313, 8508413.60714468, 8509167.536037808, 8509348.4375, 8510106.89105427, 8510387.24208583, 8511101.5625, 8511609.241883576, 8512709.380918518, 8513221.875, 8514070.3125, 8514723.629706858, 8514746.145977193, 8514756.180944959, 8514949.245289356, 8515377.468657278, 8515870.115804601, 8515941.115135498, 8516671.875, 8517785.369319417, 8519092.77322973, 8519581.25, 8520268.724250663, 8521052.101221494, 8521064.204980884, 8521068.520620162, 8522549.24118155, 8523230.933347395, 8524335.644288482, 8525971.875, 8526945.953040598, 8527004.305357274, 8527629.6875, 8527710.9375, 8527988.372343421, 8528357.8125, 8528608.762138795, 8529410.9375, 8529532.687602015, 8529718.026374657, 8530509.827298248, 8530542.063523436, 8533537.750541141, 8533646.030542523, 8534327.95875426, 8534629.340277446, 8535153.736586645, 8537181.415956715, 8537553.741933763, 8537601.20118133, 8538077.415092759, 8538212.3570723, 8538272.789562397, 8538465.22449888, 8538940.61228436, 8539587.5, 8539632.744867321, 8539983.373407762, 8540167.1875, 8540366.789198512, 8541434.950783234, 8541516.459533295, 8541559.22089876, 8541564.0625, 8541619.537993038, 8541693.08687275, 8541796.72028745, 8541923.4375, 8542081.25, 8542167.336233933, 8542337.5, 8542351.5625, 8542359.20619139, 8542498.4375, 8542507.924125964, 8543593.298272546, 8543621.875, 8543745.941619223, 8543825.82581481, 8544439.0625, 8545952.616359225, 8546220.82252964, 8546812.399257533, 8547290.408908881, 8547297.701219471, 8547938.796072073, 8548003.266009517, 8548015.943203833, 8549979.6875, 8550292.1875, 8550314.038584653, 8550446.875, 8550829.624369081, 8550988.936812166, 8551006.389455289, 8551285.9375, 8551382.8125, 8551392.1875, 8552023.554913804, 8552256.132499855, 8552835.9375, 8553246.426877964, 8553389.214175936, 8553476.0898319, 8553830.5229676, 8553935.9375, 8554013.486656224, 8554035.628782658, 8554122.350527942, 8554198.4375, 8554862.8835529, 8554867.136893246, 8555641.47487691, 8556504.009306842, 8556624.815150341, 8556916.961646318, 8557302.815108694, 8558085.548300521, 8558689.989459476, 8558804.6875, 8558805.544606809, 8560445.168848217, 8561425.277441433, 8561436.960822318, 8561784.375, 8562302.597059147, 8562925.995039163, 8563378.582057996, 8563429.6875, 8564145.3125, 8564521.875, 8564577.549793994, 8565621.185345467, 8565811.440131275, 8566970.326773284, 8568478.125, 8570634.2398771, 8570764.89108342, 8570778.99976356, 8570809.122340348, 8570892.338996574, 8571000.228420716, 8571194.92508035, 8571257.016490508, 8571294.33519412, 8571457.8125, 8571644.87715662, 8571869.552349117, 8571873.050661271, 8571896.827847185, 8572125.0, 8572136.35420757, 8572209.375, 8572210.9375, 8572225.0, 8572343.878277207, 8572470.3125, 8572526.5625, 8572552.746206231, 8572616.386841752, 8572817.595909914, 8572849.232112607, 8572872.326818649, 8572937.109120037, 8572940.625, 8572950.0, 8572993.749545634, 8573190.646728886, 8573353.125, 8573364.206070317, 8573388.310326226, 8573594.213252693, 8573634.375, 8573755.644717189, 8573778.433213813, 8573800.905910172, 8573840.312816013, 8573909.768129898, 8573984.875410004, 8574171.875, 8574236.733338127, 8574250.158943191, 8574425.0, 8574485.9375, 8574495.3125, 8574606.246898467, 8574720.023614086, 8574815.161556631, 8574884.079807354, 8575081.567173727, 8575088.411146745, 8575261.297165342, 8575667.236368759, 8575798.237316916, 8576037.024426892, 8576634.923637912, 8576707.8125, 8576892.18101212, ...], [60.358862691764216, 21.396898626916958, 13.537600513086925, 14.48800991295901, 21.147334080866962, 76.49737072661956, 111.49702351305544, 10.036717090842227, 37.96288443967342, 17.08524999788023, 10.221864339608661, 113.77746097235733, 11.975957349736037, 58.43200977714523, 10.796616879128033, 176.15221827424315, 54.51146902889846, 11.219781461477403, 14.914833267503965, 5.898069672277589, 10.114512130661373, 86.01752807974358, 24.858867307699423, 69.79985948074437, 51.949455049750476, 90.524025040552, 84.77069771530145, 64.6618843765547, 18.922420636304675, 10.510300762648171, 14.596243388537495, 87.5726856155303, 19.067345650620492, 61.06465443029862, 13.752602176459337, 21.74958651896951, 12.369907587353985, 27.739772134696782, 43.421005784451005, 53.82250837547634, 17.08304422839192, 63.745064595580715, 35.57066081078071, 11.595973393585949, 63.42194544541718, 96.49998572683806, 7.122740223647632, 65.3625461454505, 6.996821922782572, 53.30602265866862, 44.17549143617344, 27.028625893400132, 9.062660292217933, 6.361632500542996, 10.438264587566547, 37.184556598307715, 69.15041686681879, 45.651591542819396, 32.90294235673582, 12.902469180217494, 6.704262573197717, 12.265580860818243, 179.45820255183247, 44.77315540059006, 28.737518376617338, 16.862499469520188, 87.38386807214819, 8.050130675739368, 9.018041989364994, 12.677393938455397, 40.96809966875236, 87.6396047434265, 15.426272512233874, 22.297204169834487, 29.03913910159098, 29.121260112981908, 39.27208931225923, 19.33234052464843, 36.56524701621065, 6.092084695562768, 57.69846037637838, 8.925889190618609, 9.77490473887462, 21.037312687769905, 18.34214663572122, 45.95840231700487, 67.07255316343557, 23.3871002096188, 84.14346859925162, 113.83180791709226, 39.27957440428413, 34.450916679292234, 20.42088330974043, 6.846896537356722, 71.25419648764093, 55.73554996791439, 23.024018784577695, 20.04414811929492, 64.79912851356454, 15.219696100011776, 16.075114640443857, 20.02335294827045, 82.566700017112, 9.405730229852821, 10.149889677278635, 69.821290865508, 57.73848234173223, 26.667057844806436, 17.732586146673704, 19.299397971137942, 6.918319249417356, 17.454965665300794, 31.616359818231633, 25.18718129751595, 49.72668895012809, 22.945849112757397, 129.46031604841642, 29.44336068803502, 6.467302960472735, 80.7963536098727, 21.582613570585092, 20.999491163703105, 7.45405722305614, 14.479098795688639, 51.60177511969969, 101.19239040879833, 16.954827554293466, 18.54273174335586, 14.495588828731467, 5.592896640673967, 10.41829149747044, 74.21458467483747, 30.49543903413325, 7.357294331900545, 42.2305211442352, 18.969837490584098, 23.115888721161323, 33.39317485616964, 9.564302920642465, 5.586960519761839, 37.424223101492835, 16.475613622992796, 46.12511148370079, 12.091729686605635, 32.76264940443259, 51.54566519460939, 5.143263754562603, 8.858743149234193, 76.01003374316049, 67.85303438418173, 5.253490505565949, 7.106406173843886, 9.064689924410768, 5.846776264791165, 16.3052622318216, 19.903409405967636, 18.429334857480367, 74.80892214483788, 15.2478877391646, 25.415723759752492, 107.56002641318801, 32.77472913621149, 5.06988023728892, 8.561613226320612, 30.063343185717823, 18.402576275879404, 62.19627597154517, 55.72441511994775, 42.156118167673405, 30.495774977070088, 5.701250226718778, 129.75250273498685, 47.276298707416636, 55.634411824644246, 7.558449644113603, 18.65773767967858, 50.17772118865264, 76.54593912470855, 105.33740011008622, 44.01440684143649, 23.442646565326235, 56.92538835907431, 56.76481113188656, 66.03826737595952, 19.118600510666365, 17.692162806256654, 38.508865238004496, 19.341600560072308, 89.81863015727129, 59.41920179239989, 12.127915191492006, 83.87744904255122, 49.086222464513185, 53.04356967056066, 96.51248381435678, 12.2053824734147, 160.9208462274853, 47.8274454777247, 41.492318652459915, 5.997524281667413, 14.19182015563277, 10.998222009134908, 114.01618452608466, 112.75122250626883, 35.57605794367268, 10.466005449651032, 9.34262679153634, 63.995823504522484, 87.75519386071296, 77.25175500504399, 9.043277394766921, 97.35575527306307, 8.419597781742848, 18.174301676682425, 106.0332547130084, 90.61946983611733, 319.1191863848313, 28.179728643524882, 12.269554514216187, 30.037441090081693, 21.27450628494203, 58.7737425610105, 20.693363661432024, 35.19037383486018, 90.0304204828488, 5.470670518402117, 16.971599980288307, 14.6205115549868, 68.04826457287825, 71.0786188648817, 9.574306820354298, 45.69060987692619, 43.958452689102174, 45.04485646571913, 15.550933667373537, 209.97800100037693, 61.82266951442715, 18.079723004573825, 15.216254963033904, 24.906752219794598, 66.13134553147067, 7.333834533002446, 39.29039484015178, 5.253679364420783, 73.64272621442171, 116.54763844532678, 49.08894465139893, 5.171956476763835, 54.509531017447095, 21.538988428136467, 24.80323613895373, 11.599904743695893, 6.907059905862332, 19.575256229033936, 68.35576875529753, 106.59941873434016, 15.877314002198887, 31.066917389919716, 52.63867571822461, 71.79140165144206, 137.27850850822216, 16.05429242513917, 61.492588786053034, 10.893152341767918, 6.234056654331163, 20.410955586290775, 95.48268023666905, 60.97085507427152, 22.395919499485704, 41.163984898142466, 13.07560266177373, 84.0795519887942, 35.35378346321121, 54.288351852238975, 37.71235345073738, 6.773153244726556, 15.269762557838876, 7.913483200321657, 39.136791876105484, 6.0768578904931445, 5.668086226896684, 24.921159391393076, 23.39563478910991, 17.811158398386453, 15.18917634977004, 33.851262284439045, 125.671271049053, 38.76894515192509, 49.86602493620965, 48.748435459758355, 8.272353910419161, 15.162823500276202, 52.551381377449125, 20.521748075808887, 7.050603125410199, 126.99079435050777, 53.541767445612564, 94.78537094462767, 11.279216269102427, 54.5326940124656, 19.247277044029516, 126.81589614599393, 63.23546292046164, 36.64754110585153, 118.90668091549577, 47.87754737195951, 11.094686806729118, 132.58954146476705, 36.67014927038157, 8.55773769459331, 14.147864297345015, 29.363850915944404, 26.632025795489255, 90.6205414490749, 9.41336217562504, 6.618286951100051, 22.50223291478224, 41.1963418648332, 222.42491719422088, 76.88301787956854, 251.0820456363225, 12.54753955723744, 100.97773356357254, 9.853281632616516, 50.66829620409833, 77.59128136731127, 69.76002446970352, 46.56773916431755, 45.06361548916174, 30.62261011095142, 53.10847945056992, 7.92477581554611, 7.1573150035238315, 21.203898455132958, 28.04664365474738, 52.239057929041046, 10.292457747924567, 12.986417109199271, 132.0940495297266, 31.632346797201773, 93.9292536532583, 5.371141976071822, 88.45036146776513, 98.08924542135571, 48.41377216403879, 23.41460438353269, 7.344350196343257, 13.113463907762563, 8.805467541693769, 113.64902449754985, 11.19663269207179, 71.90813028380478, 89.18444021143621, 20.94389233104548, 5.124290852342578, 85.21619170149826, 203.43436716715428, 62.88991642876956, 33.641384463134166, 38.570652852281185, 131.2778904429917, 6.153756010456745, 16.18908933066693, 97.31950309550928, 86.85878590913974, 5.812284575900994, 12.200908851474027, 19.708815888670348, 5.561683798419915, 16.09366663667362, 43.434505024740844, 24.15776136551006, 71.79545813585743, 97.17676811703902, 59.485749006419915, 18.986490182153176, 25.248016439603127, 15.312178207410431, 224.14047494839292, 116.0038636864992, 27.012780865184602, 5.719076837130635, 15.93638011360783, 5.530955474246152, 39.41069593346752, 8.721229328724037, 75.62311360903647, 30.11835360495605, 168.6281857462792, 78.83742311416535, 18.08068281402006, 14.646066107224414, 54.43308456221287, 102.15271673825094, 86.00687113216624, 71.41337482512547, 7.013573933034443, 11.625970727901832, 18.662191132770282, 138.09979364319744, 75.92563991560642, 78.54316293125376, 46.15851730626282, 38.70445064221536, 80.88772966796654, 9.924268629812099, 18.348190463547063, 14.85140708842443, 14.886407102614022, 6.755423194671762, 53.088791181768954, 27.667453540942372, 5.708644596286244, 9.710745373501199, 21.474284615663265, 20.07435821617018, 31.18079729154019, 51.44655665548378, 26.034022429796366, 5.481555113456881, 138.10874349166858, 26.846816978716337, 56.700661333390016, 11.593013992169286, 56.42381857838265, 99.16756389186506, 43.453295154555164, 21.466051049017786, 16.95064212555633, 10.603157655723404, 19.99752028502562, 54.55330336502165, 7.875796711634871, 87.59001922242369, 5.800658489511586, 46.882959202393494, 61.71219840607284, 49.838278954541856, 36.22101136538345, 6.400489950800993, 22.072473726934838, 14.820373337494464, 23.857936636916506, 13.915763436190042, 47.43201145563054, 130.41754654052295, 56.996929952323846, 12.754534107862717, 63.63840611776892, 114.2857231587872, 46.8646318923035, 20.02465054798931, 41.02302107943869, 42.25480029801325, 25.46003175555526, 38.76981399808274, 6.5049265922339154, 5.461766735078357, 59.066310070560505, 22.536844299682944, 95.36456883023827, 50.42630214275658, 7.7622717696331724, 7.164766143063835, 63.01558319819309, 33.582544181936065, 25.751366891751694, 53.89136938427698, 175.17955717799893, 64.07883426098823, 139.88723727551877, 27.515649373913632, 12.612205612395401, 18.740842605109574, 73.78564568803094, 60.749530103426565, 15.840698967005952, 84.00766510948344, 139.15139923419216, 31.756713661686753, 73.53134244123385, 15.797887118509546, 110.22349080418854, 35.206855462780396, 93.11862717068999, 27.90707816677984, 14.23042860433108, 64.43665981292833, 103.58958493565544, 30.519547091264037, 97.83842767379238, 36.19771248617027, 83.33525723206108, 18.176949781784923, 14.785562346243083, 52.80250816724557, 14.859661946109341, 30.802698427430048, 20.643651345628832, 8.118412973860577, 13.527623989983804, 43.240740086476286, 46.80043605048767, 87.52749851678152, 15.87471494788681, 5.996012239862476, 149.52671632441687, 56.09106950409273, 186.50693512251672, 38.66986114080378, 42.203733516354056, 7.200462948989302, 38.58626085638744, 6.038085366718655, 74.61877948022794, 65.60678861279337, 34.03617896429094, 32.81481791312352, 20.710474249897285, 20.09157783137582, 23.203376475987707, 7.495651939921847, 64.81033609325748, 27.711595412989595, 61.22879266549159, 5.40349070818862, 195.05253849283142, 14.168620292281853, 15.471250642203223, 198.21775756832918, 69.86089688264532, 74.64659371139159, 40.397032840711496, 26.080400444482734, 11.727439149485026, 5.545335191866672, 54.44652706287326, 86.9580154263328, 25.488006000976213, 6.9018540511355875, 102.35263561064173, 53.61653034393219, 6.474375646724296, 21.560864794329966, 91.79214083522892, 53.67293803901983, 13.758482814473332, 75.48689348746652, 15.872787898391739, 19.984273903479107, 92.15938655873549, 6.15041969460889, 9.817403004590457, 58.50473475508956, 25.800915877057726, 10.456599444490935, 23.016952741157365, 71.85437267939646, 138.7662490825187, 16.954718516479005, 243.51564233175313, 16.597926995840847, 94.56355191204494, 51.2908025634772, 30.199883698411362, 11.179322074007287, 31.962563973774657, 7.352842088382919, 50.338001778492696, 42.8207416333539, 8.416727722558274, 8.926174996797357, 34.56661922589077, 20.34626497534575, 72.15179042163932, 61.19488198069687, 70.14372843771112, 25.148974262201325, 22.62028057610663, 161.64736511952674, 138.129595064258, 33.21395893937834, 24.74810709661813, 34.280725326777144, 11.738182320651722, 44.409432555357725, 17.51695026626188, 95.25894367682983, 38.330009195191494, 67.75470133524306, 53.338474641841294, 32.45103090975155, 11.315034668091709, 44.014687714874185, 10.255305413883553, 135.0018115798907, 12.061254633279525, 56.79059905520979, 22.83597548799261, 120.65146618639488, 13.767467181034183, 56.90237286271939, 11.236206532355713, 64.85710552118556, 72.97366277432582, 28.42288069903953, 11.070921296780245, 77.62647772530308, 73.70943026334997, 98.95669823286046, 6.724271340655539, 269.90164043985646, 72.35381552293146, 15.312252435422051, 98.11844119326923, 69.48545863319879, 50.98743159808216, 22.048370721596164, 18.662601330043508, 19.277747818144555, 53.67664089649439, 28.124870300660426, 28.55915244573166, 57.387771868330034, 76.203566427015, 135.82077223792166, 37.884885525131494, 24.49077184327721, 21.835623448993857, 25.65663188196733, 111.37711903351406, 21.93823308190226, 22.93540241086758, 5.5853718305980715, 15.6611108541519, 39.74422495312161, 56.28331551221251, 57.67565518513945, 34.084560131379305, 19.353696682833863, 5.782188497132375, 49.928748010104165, 23.891711500018125, 21.116735500716768, 195.34351454645235, 27.05369029386384, 65.93332844127733, 63.70917098828425, 15.554908811216999, 19.283564770339705, 47.89717434124591, 62.93009702038051, 57.619649643341226, 8.805596467249183, 86.94237336342653, 54.47278439998058, 36.10763670700313, 24.604045755732066, 11.869838703464264, 62.539044664471334, 50.074948149873755, 29.078011171482075, 28.632487890899363, 16.528677620259785, 16.954093700499243, 20.545137596591637, 10.233835302672777, 74.32918793901223, 63.58722336828795, 5.5300044116368685, 16.929037558122815, 32.43527497872308, 24.98952381004844, 64.21801414207232, 25.424673834259437, 57.4198640771273, 63.96544828280259, 19.39100862741654, 5.984543313650442, 15.570246087847217, 84.8722232275258, 43.8566063092223, 13.308438649967686, 64.69555004366657, 5.822247663301932, 111.01720017732733, 6.285938692598674, 6.1431852587828, 64.86352042511886, 18.79048020304258, 72.40042981936377, 81.2680418299355, 151.88054068118558, 79.93241689050011, 70.68652055759962, 56.72550630836762, 5.186005724932253, 69.72815837766012, 56.695745393837846, 21.7088382960887, 8.181085941808615, 84.40218836138247, 136.53833282928076, 54.28094804510524, 21.549840700673187, 80.63507798566779, 12.878100516757769, 10.728474081903695, 47.60594698329473, 8.09303152816351, 22.47218544722798, 33.97920205862292, 74.27785650300082, 20.815509821308297, 85.68176167855086, 5.183741964997971, 22.96886815460207, 54.81446959590909, 13.445033125927516, 13.373689049139665, 45.16044976948264, 8.090772371440144, 6.361963589603114, 6.09715360756591, 29.123954906702476, 13.303622412070869, 65.6213236572583, 9.943826873062307, 61.51029743482646, 11.910498467713326, 25.00256355014063, 17.80812940260323, 26.2755598188478, 6.776021669216513, 38.38281963281314, 64.77053466238377, 15.066560185394499, 49.992822917598744, 75.30184545732807, 9.868405193178344, 111.4334818958194, 19.61012078777196, 30.562353412356334, 17.97372008230116, 81.78625426750423, 13.295747932368549, 129.29627003657475, 41.30951568995522, 19.756093369231497, 43.99070102498079, 5.274524927719898, 8.74567964941097, 34.464380347694295, 293.6938797792817, 79.26117429667323, 19.367494994902138, 22.362183672560842, 32.388447535746856, 31.103133325380057, 35.36626026798241, 51.969266406157104, 20.032135447483604, 26.353480230585642, 47.06437180245424, 7.0863238901306, 64.05274053245213, 42.40848127695, 73.56299488092105, 5.634843317975859, 10.235830386823217, 5.559051976197641, 21.715878157022765, 15.604251020126409, 90.30505379620212, 101.8996621744281, 60.68617414946735, 39.34660668853305, 71.30071821073462, 5.383722185888713, 107.24154329992155, 7.443245120989325, 6.836211671812828, 111.9150035503368, 98.52009618944187, 110.13150800514198, 122.14051701143127, 39.08588625167481, 9.056863929752637, 86.25547192268229, 43.18677414902343, 137.26123478348512, 13.163206039898565, 205.88345552288865, 40.42300548020853, 15.7751712002543, 7.781184389026355, 168.58050217729112, 5.983391544044475, 49.071097545469584, 7.6470352651307625, 9.503228027441837, 9.763612029556478, 27.602295148862307, 126.04398552093642, 24.393478462063563, 87.73433213409845, 16.143349814821338, 62.30703666105704, 80.99202614510122, 7.0868935937304025, 78.87480237233278, 35.46029581137855, 57.36302249773891, 16.73458493520281, 19.02203468723959, 14.684678163668769, 102.9467154754832, 23.047358121297208, 5.922457209787638, 45.26217949447698, 63.219339730970894, 20.83889690300604, 9.881182551718494, 44.126897038417745, 14.844264951431402, 5.85494617256184, 15.513890463611355, 24.696773103610962, 12.66901100854847, 10.666379702586413, 30.29533090192774, 141.49719072734297, 6.592419016297208, 22.755282250638462, 58.45452138670575, 46.77485096459649, 28.792396488164897, 59.045257675808074, 20.436580021806023, 34.15390552986386, 10.937938309012383, 54.92216503539237, 85.39237370184784, 26.29370847438352, 11.543282264912605, 39.17883449442179, 31.58928801755464, 10.62513853852732, 19.8967224059241, 98.47075988379477, 23.33200185476028, 55.35605731076044, 128.12190927539896, 9.213404683419084, 6.390101783872558, 22.5466020421903, 28.275698829551676, 29.763478145173956, 27.254600924039927, 17.61923787768257, 29.2808954412979, 131.1019446724407, 12.165178736234123, 5.661943361200589, 25.8122918654617, 127.92645916321521, 19.131653209811954, 68.37315809688039, 40.94652499116697, 54.34348853815334, 153.3213031077418, 32.76629606680885, 38.31411866551738, 60.73307741499088, 6.4609506365282545, 30.614375790944145, 44.79569070304216, 6.676553569610889, 86.08496057685248, 12.27755322650463, 8.777561589007824, 125.11098667126598, 40.60556832299211, 17.584380914048985, 26.68001018383319, 5.798162533335903, 53.80198681686158, 24.18926476138255, 5.29546290569737, 28.638052325607365, 44.26495645082757, 34.328051153500795, 37.90475485603056, 82.99753944828892, 5.289141162916342, 26.26578353984925, 79.87006389358545, 65.30985942097757, 58.85079791538156, 72.0740130818348, 5.822719264298333, 318.32208945633954, 156.1941377141655, 14.079624562875665, 24.012123774806312, 6.415464022920248, 19.49242912827664, 87.18114550821205, 20.768472945084678, 23.640024708317895, 5.640904547138178, 46.00829934397079, 7.22606316338671, 30.066743710619328, 49.66074094236165, 5.03029739139347, 14.280841126361347, 80.73952139485452, 32.763202344958344, 105.4990823672961, 20.23978282409794, 73.0326751807705, 26.68322072781451, 5.286670483275179, 6.820189140275607, 77.09025865707464, 33.403922060941234, 21.21883105427428, 29.21606544257134, 101.33974034019073, 140.56774403165508, 94.74841534933557, 175.14035911835128, 20.77431104859184, 34.65925131803934, 9.795930757708, 87.45271236587968, 111.97340101772669, 26.113086139693735, 28.39402920914226, 19.804636287231176, 19.789339682019865, 11.373060646456251, 112.43071781498286, 7.4688776214064525, 7.906171252076857, 12.1847750368591, 54.53870588266122, 44.67458574905403, 19.238925330091813, 77.26396838380403, 59.553224258468006, 75.01056996977987, 9.710494077528876, 45.80166978691228, 41.9347974233497, 44.38122467349626, 14.065136128269138, 41.126581998359235, 51.21749195628007, 59.02405202288453, 7.337232763184332, 16.765980597497318, 19.180923739478214, 22.52877742891733, 26.05278720492927, 30.823547377295817, 43.52947267678921, 11.021576985518028, 11.161841155326796, 55.4251200863381, 17.798899896225898, 19.299207278914942, 17.05991609736761, 67.55785202193793, 23.8306688958387, 6.8266396128665745, 82.97452777687343, 108.36970073005548, 16.686489341651498, 98.3359983531704, 34.2109825207119, 75.98527314910395, 5.953367817001277, 46.91952186569286, 42.5144324163561, 48.695500239891025, 43.34925150146897, 23.893754498533408, 8.96804192099492, 98.70161730813854, 5.837827158975336, 10.242329240124388, 8.486395353733334, 6.773302212210593, 25.115386451008128, 21.740282166244032, 85.44472988200276, 78.77721179470353, 77.07190680341698, ...])
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);
([4583795.412780969, 4592054.177801864, 4794162.075468487, 4876117.063203905, 4927111.787940799, 4935220.3125, 4937206.25, 4938011.668431743, 4939137.5, 4939484.842861144, 4939575.893773932, 4941185.9375, 4943298.9199281065, 4947920.9542282475, 4959157.589823028, 4959198.4375, 5049573.149219926, 5054175.688048228, 5059992.180483549, 5062226.075281077, 5069372.675625891, 5124675.0, 5125039.661677981, 5125048.4375, 5125731.25, 5126210.9375, 5126432.8125, 5126482.8125, 5126775.82544033, 5128501.128002172, 5128537.406367047, 5133848.4375, 5140031.45268967, 5154828.125, 5156327.373642093, 5159082.33783282, 5167406.921836038, 5168453.169216103, 5168535.9375, 5290371.875, 5310459.842460624, 5417700.0, 5426271.875, 5515676.842758416, 5530318.75, 5601325.968315255, 7318928.1298996555, 7328855.840376717, 7348077.6286775395, 7353590.551153006, 7353617.1875, 7354016.448939752, 7355746.539098143, 7361150.712591792, 7365980.759078933, 7414529.6875, 7488146.875, 7488432.8125, 7491405.630344564, 7493885.275192537, 7495887.195824544, 7502174.061008765, 7551523.8089159075, 7558372.449129875, 7660410.624487059, 7696267.614202324, 7725659.252068708, 7725794.836908541, 7725802.729596914, 7726083.619740546, 7726114.0625, 7726155.902908851, 7727031.371623823, 7728748.0144988205, 7729320.553889005, 7730499.690828188, 7731860.371570068, 7734727.3771834355, 7735109.189389334, 7735253.1632381575, 7738067.087097924, 7738261.978043272, 7738627.044235838, 7740808.828062508, 7741247.55056923, 7742432.8125, 7773719.665888801, 7780875.025285794, 7813134.375, 7844032.8125, 7845434.375, 7845885.9375, 7846050.947850239, 7846420.71632269, 7849087.5, 7858690.625, 7955148.0783950705, 7958780.591350868, 7989086.48287266, 7990618.821119964, 8028822.143693397, 8043294.828475692, 8052232.129086023, 8052995.399114288, 8053074.269202545, 8056776.262100211, 8076140.625, 8082523.33599154, 8084789.642204132, 8084791.435351359, 8087110.103954638, 8090058.345590271, 8125764.0625, 8131906.370370474, 8140061.295263952, 8159166.821762494, 8165015.625, 8201821.339052384, 8205013.935093849, 8205293.75, 8205562.008926714, 8206758.824052229, 8207273.005301761, 8210148.310650177, 8210254.6875, 8210289.2819058485, 8211205.131438613, 8216705.805208888, 8216785.519658071, 8217762.111307205, 8221121.368198088, 8222541.068391682, 8225323.160855359, 8225493.014641905, 8228151.485727594, 8229525.76593925, 8230059.023619514, 8230687.5, 8232095.575669011, 8232410.437337911, 8232444.942780876, 8232861.919677213, 8233084.375, 8233520.852587026, 8234738.162181875, 8235239.538252365, 8235291.212676083, 8235547.820083334, 8235693.397600153, 8235843.201901969, 8236187.795458465, 8236453.067453579, 8236969.979278078, 8237044.183616115, 8237098.969785965, 8237406.099351327, 8238111.409768165, 8238312.5, 8238625.078124941, 8238670.966524014, 8238718.801647832, 8239449.3339403765, 8239514.116535823, 8239884.861241839, 8240101.5625, 8242048.756619827, 8247991.965308596, 8249375.0, 8250267.1875, 8253017.1875, 8253056.163108495, 8253852.283568935, 8254103.519184589, 8254364.745563954, 8260662.374446355, 8263958.5344957365, 8265374.318627642, 8268018.75, 8270187.930871079, 8272745.3125, 8274973.112991414, 8276859.375, 8278157.468764108, 8278466.932812985, 8278467.973731994, 8278517.760537393, 8279453.918635809, 8279603.940897742, 8279879.6875, 8280019.515701959, 8280187.162575709, 8280255.750919505, 8280357.8125, 8280364.0625, 8280379.6875, 8280567.78254003, 8280667.009669944, 8280767.1875, 8281085.9375, 8281564.70652234, 8281662.288348325, 8281834.2905495, 8281967.1875, 8281992.1875, 8282062.404675488, 8282162.030964331, 8282256.263243888, 8282454.6875, 8282456.25, 8282516.179633748, 8282519.950888448, 8282880.098263662, 8283187.74334897, 8283245.96251499, 8283298.4375, 8283304.041878728, 8283351.6962311035, 8283615.4297533175, 8283636.562872766, 8283807.602194533, 8283836.977804194, 8283909.73724555, 8283984.498567424, 8284037.5, 8284060.095414849, 8284275.205821414, 8284338.573356404, 8284629.600653771, 8284705.078954849, 8284771.875, 8285247.1489488715, 8285434.375, 8285837.855069639, 8289442.1875, 8289874.787191231, 8291270.374483359, 8298585.475512417, 8301164.697840521, 8302507.882762434, 8305186.72634875, 8305828.125, 8308596.063193983, 8308649.6682242025, 8309345.614582719, 8310472.70597426, 8310632.29417886, 8310979.6875, 8311856.530937087, 8312045.3125, 8312238.567087803, 8312762.278158819, 8312801.844958374, 8313120.991399177, 8313133.658549555, 8313282.64810322, 8313470.3125, 8313529.913111199, 8313837.429833215, 8313943.75, 8314139.514571459, 8314268.75, 8314904.895594261, 8315268.237290493, 8316629.532071241, 8316774.733102976, 8316821.259217227, 8317306.149126031, 8317317.1875, 8317447.12501586, 8317457.664152084, 8317518.155935533, 8317567.1875, 8317871.875, 8318298.4375, 8318339.76427129, 8318573.4856285285, 8318586.021035444, 8318853.908386793, 8319487.116997365, 8319567.078702989, 8319750.937215341, 8319820.098917953, 8319862.171682008, 8319949.030048069, 8320007.8759954795, 8320707.231796843, 8321157.8125, 8321492.079189279, 8322754.6875, 8323371.875, 8324103.09800612, 8324117.244377391, 8324404.6875, 8325136.8200825285, 8325220.035945104, 8325516.158796892, 8325570.081660798, 8326515.625, 8332696.619168961, 8332813.976708564, 8333617.990958148, 8333889.874138396, 8333965.401522292, 8334007.8125, 8334034.5960800955, 8334193.75, 8334374.978771618, 8335209.375, 8335879.6875, 8335923.917330321, 8336199.774934938, 8336426.30916173, 8336446.718929781, 8336451.5625, 8336554.782864322, 8337028.913809351, 8337119.908041185, 8337293.191682202, 8337382.860957618, 8337539.0625, 8337831.314369321, 8337910.126294978, 8337934.375, 8337975.558816265, 8338018.501021702, 8338435.9375, 8338570.3125, 8338885.9375, 8338900.0, 8338939.909985777, 8339140.625, 8339202.371846222, 8339240.7596957125, 8339352.595511824, 8339568.0998200765, 8339868.75, 8340091.578196853, 8340110.308622958, 8340140.625, 8340181.25, 8340245.861932989, 8340255.516160152, 8340314.0625, 8340357.8125, 8340487.5, 8340502.567789228, 8340516.410108602, 8340518.170500324, 8340641.492301795, 8340678.06886825, 8340681.395274987, 8340735.708438292, 8340759.020477712, 8340785.3806238305, 8340795.0195772, 8340823.4375, 8340825.197583996, 8340864.0625, 8340871.875, 8340878.125, 8340879.323576583, 8340886.546059156, 8340898.7548642075, 8340903.125, 8340910.5525698, 8340926.539556289, 8340934.967906988, 8340949.300372889, 8341022.450597149, 8341033.08515978, 8341042.961785056, 8341057.543709788, 8341068.251068493, 8341084.004897615, 8341098.279132354, 8341116.246976979, 8341179.673809101, 8341181.343965049, 8341193.75, 8341194.602611506, 8341253.525450517, 8341270.504337947, 8341308.051130025, 8341328.081136223, 8341334.793417721, 8341342.927958351, 8341351.5625, 8341353.125, 8341375.3797657695, 8341376.934226463, 8341378.803159621, 8341381.170265703, 8341415.625, 8341420.985423751, 8341423.4375, 8341432.8125, 8341437.07307854, 8341465.921984706, 8341471.035136246, 8341476.5625, 8341509.375, 8341534.375, 8341545.002889684, 8341600.638764959, 8341658.646594349, 8341716.251762945, 8341827.238977977, 8341838.761178862, 8341928.414595618, 8341993.709375407, 8342007.255712955, 8342063.14498223, 8342070.342102707, 8342111.354464305, 8342116.685611752, 8342204.03245683, 8342210.9375, 8342284.375, 8342293.609939625, 8342308.265578353, 8342359.375, 8342429.514913228, 8342433.923342824, 8342434.653600781, 8342446.875, 8342470.3125, 8342643.75, 8342671.372284166, 8342730.130662715, 8342748.073819776, 8342756.978300289, 8342769.1355112335, 8342891.320554358, 8342910.563488292, 8342918.568317158, 8342952.729803111, 8342960.9375, 8342976.5625, 8342995.529169386, 8342999.424372152, 8343049.851991923, 8343051.530351313, 8343098.145845825, 8343101.26456693, 8343129.626304797, 8343204.165086229, 8343260.94426339, 8343293.098520497, 8343321.875, 8343329.890353834, 8343365.625, 8343375.265642192, 8343410.755181592, 8343448.4375, 8343479.510486114, 8343566.400287315, 8343593.862840103, 8343762.500004574, 8343785.9375, 8343805.848630151, 8343806.492758334, 8343889.0625, 8343897.294294128, 8343907.974752166, 8344017.056644826, 8344021.2479086695, 8344069.612509877, 8344096.875, 8344296.532367693, 8344300.892153945, 8344329.860290443, 8344374.9468674855, 8344421.09187471, 8344602.296382891, 8344690.625, 8344706.030685937, 8344888.605885592, 8344897.487428382, 8345007.612031622, 8345036.81838741, 8345078.917917449, 8345085.368662779, 8345089.102774019, 8345109.375, 8345270.3125, 8345272.964811033, 8345406.050031602, 8345418.75, 8345440.2603529915, 8345454.6875, 8345490.625, 8345498.57663455, 8345562.5, 8345636.245232795, 8345639.020974834, 8345651.5625, 8345735.915859339, 8345742.983690334, 8345751.309097651, 8345787.167859181, 8345830.821987584, 8345847.667284313, 8345909.375, 8345947.738745466, 8345962.725035276, 8345972.502838671, 8345992.1875, 8346080.477398611, 8346179.6875, 8346231.25, 8346295.3125, 8346300.292280346, 8346309.375, 8346379.192421758, 8346406.25, 8346414.087213616, 8346471.875, 8346489.009330473, 8346513.77246344, 8346558.722006024, 8346577.780905573, 8346602.817411628, 8346815.183531264, 8346823.991811997, 8346834.186878587, 8346864.193109876, 8346867.685615129, 8346960.718783696, 8347023.569871666, 8347031.788722248, 8347181.25, 8347191.053453445, 8347244.863410017, 8347267.906279343, 8347285.200220904, 8347290.874941082, 8347298.4375, 8347301.1100211935, 8347318.945098127, 8347328.780607068, 8347395.3125, 8347414.0625, 8347445.230901945, 8347535.494350466, 8347542.266405815, 8347550.684848755, 8347565.184279321, 8347584.817222476, 8347603.349608095, 8347644.829638808, 8347673.974689396, 8347677.141197905, 8347689.586304712, 8347704.840242985, 8347711.57110805, 8347737.02356595, 8347751.20279781, 8347765.625, 8347793.546815658, 8347828.568918406, 8347845.901035247, 8347884.750872892, 8347913.162149159, 8347920.3125, 8347954.6875, 8348003.157772769, 8348017.1875, 8348041.4377249, 8348058.862313978, 8348084.375, 8348084.613265931, 8348091.665943627, 8348184.065129082, 8348185.314299925, 8348215.852003833, 8348216.887827728, 8348221.875, 8348290.427108644, 8348340.2310285205, 8348418.36598833, 8348438.582297891, 8348465.625, 8348477.899264945, 8348485.9375, 8348528.483350947, 8348532.8125, 8348539.606168062, 8348543.658165319, 8348548.4375, 8348553.125, 8348564.0625, 8348570.3125, 8348587.616629513, 8348589.464727283, 8348700.922100082, 8348709.375, 8348742.712576909, 8348796.875, 8348835.562345124, 8348899.7395509565, 8348904.341131486, 8348904.6875, 8348979.755823211, 8349037.085327145, 8349039.852411873, 8349049.48826473, 8349092.150864066, 8349092.1875, 8349095.3125, 8349134.375, 8349188.862743183, 8349199.123132618, 8349204.6875, 8349207.90648323, 8349213.145548012, 8349240.53802051, 8349270.3125, 8349274.553918197, 8349349.160195222, 8349357.545386634, 8349376.365595798, 8349393.278883718, 8349423.897669901, 8349467.1875, 8349559.834035936, 8349573.4375, 8349579.6875, 8349588.945523518, 8349687.504193389, 8349693.585867271, 8349707.8125, 8349716.730994005, 8349730.883371884, 8349747.907325555, 8349748.614299313, 8349753.125, 8349822.733264085, 8349835.9375, 8350077.816733279, 8350132.067481701, 8350137.060883885, 8350329.6875, 8350385.648456462, 8350416.648925002, 8350562.5, 8350851.483480631, 8350885.9375, 8350986.135684354, 8350992.339633156, 8351438.520450155, 8351529.6875, 8351538.714805635, 8351626.5625, 8351700.867492262, 8352701.5625, 8353245.3125, 8353718.635681522, 8353788.8264896, 8353833.240520406, 8357068.75, 8357709.138278324, 8358471.235206997, 8358579.6875, 8360453.4872045, 8360472.627910932, 8360815.024413513, 8360836.841450811, 8361203.125, 8362721.875, 8363129.6239546295, 8365112.939149442, 8365743.75, 8365933.5519023435, 8366606.25, 8367228.371889435, 8373091.51579171, 8376801.5625, 8378938.246527413, 8383439.566617771, 8383840.780724157, 8388198.4375, 8388200.0, 8388544.806058432, 8389852.920128519, 8390893.86111281, 8391604.899264978, 8394156.396903386, 8394248.951068224, 8395059.375, 8396685.115917744, 8397037.5, 8399657.8125, 8401118.686278969, 8402678.199257469, 8402731.25, 8403373.086723525, 8403425.86488168, 8403870.3125, 8404075.0, 8404883.896358151, 8405629.482540768, 8405916.967153087, 8406235.746986719, 8406360.886626832, 8406638.568169214, 8406902.54736362, 8406996.202865193, 8407140.353630673, 8407376.5625, 8408643.365145596, 8408766.780349974, 8408790.221858352, 8409365.625, 8409516.616781812, 8409621.875, 8410977.33459916, 8411902.973267809, 8412068.452970924, 8412137.042878002, 8412705.767304098, 8413115.204258408, 8413843.360419113, 8413853.839973278, 8414890.711621089, 8415652.76152683, 8416268.24179203, 8416469.3140906, 8421545.957681237, 8429859.375, 8431295.761547089, 8438811.769544423, 8440520.842741385, 8440885.812411763, 8441651.624866059, 8442809.375, 8442977.286749078, 8443276.594926178, 8443467.1875, 8444010.131745525, 8444319.323438276, 8444868.75, 8444904.391455038, 8445274.899502961, 8445433.431151602, 8445631.201038856, 8445815.1138999, 8446986.343869641, 8447473.389245396, 8447661.399478218, 8448013.025816366, 8448422.891850593, 8449480.465274146, 8450651.135389041, 8451163.756939305, 8451862.5, 8452158.631785445, 8452190.764391256, 8452248.4375, 8452434.407151716, 8452445.514448702, 8452946.875, 8452988.402413145, 8453001.44217172, 8453881.25, 8456537.364661066, 8456754.6875, 8460912.483181743, 8460951.5625, 8461461.307440765, 8472866.530642878, 8472878.648760702, 8472940.345472595, 8476237.178068407, 8477156.590392686, 8478824.989332017, 8480972.966307338, 8480985.672961013, 8482515.625, 8483279.296184337, 8486026.5625, 8487804.222364385, 8491819.103585236, 8492925.897562547, 8494151.5625, 8495121.196384702, 8495440.625, 8495501.946372878, 8497054.343931912, 8498107.8125, 8498874.783629566, 8500597.16270872, 8500640.064445646, 8501254.371217826, 8502610.997279739, 8503106.452780506, 8503964.529081577, 8505483.483699376, 8507537.991597863, 8507687.5, 8507703.244491875, 8507789.258951433, 8508242.657946432, 8508300.060433313, 8508413.60714468, 8509167.536037808, 8509348.4375, 8510106.89105427, 8510387.24208583, 8511101.5625, 8511609.241883576, 8512709.380918518, 8513221.875, 8514070.3125, 8514723.629706858, 8514746.145977193, 8514756.180944959, 8514949.245289356, 8515377.468657278, 8515870.115804601, 8515941.115135498, 8516671.875, 8517785.369319417, 8519092.77322973, 8519581.25, 8520268.724250663, 8521052.101221494, 8521064.204980884, 8521068.520620162, 8522549.24118155, 8523230.933347395, 8524335.644288482, 8525971.875, 8526945.953040598, 8527004.305357274, 8527629.6875, 8527710.9375, 8527988.372343421, 8528357.8125, 8528608.762138795, 8529410.9375, 8529532.687602015, 8529718.026374657, 8530509.827298248, 8530542.063523436, 8533537.750541141, 8533646.030542523, 8534327.95875426, 8534629.340277446, 8535153.736586645, 8537181.415956715, 8537553.741933763, 8537601.20118133, 8538077.415092759, 8538212.3570723, 8538272.789562397, 8538465.22449888, 8538940.61228436, 8539587.5, 8539632.744867321, 8539983.373407762, 8540167.1875, 8540366.789198512, 8541434.950783234, 8541516.459533295, 8541559.22089876, 8541564.0625, 8541619.537993038, 8541693.08687275, 8541796.72028745, 8541923.4375, 8542081.25, 8542167.336233933, 8542337.5, 8542351.5625, 8542359.20619139, 8542498.4375, 8542507.924125964, 8543593.298272546, 8543621.875, 8543745.941619223, 8543825.82581481, 8544439.0625, 8545952.616359225, 8546220.82252964, 8546812.399257533, 8547290.408908881, 8547297.701219471, 8547938.796072073, 8548003.266009517, 8548015.943203833, 8549979.6875, 8550292.1875, 8550314.038584653, 8550446.875, 8550829.624369081, 8550988.936812166, 8551006.389455289, 8551285.9375, 8551382.8125, 8551392.1875, 8552023.554913804, 8552256.132499855, 8552835.9375, 8553246.426877964, 8553389.214175936, 8553476.0898319, 8553830.5229676, 8553935.9375, 8554013.486656224, 8554035.628782658, 8554122.350527942, 8554198.4375, 8554862.8835529, 8554867.136893246, 8555641.47487691, 8556504.009306842, 8556624.815150341, 8556916.961646318, 8557302.815108694, 8558085.548300521, 8558689.989459476, 8558804.6875, 8558805.544606809, 8560445.168848217, 8561425.277441433, 8561436.960822318, 8561784.375, 8562302.597059147, 8562925.995039163, 8563378.582057996, 8563429.6875, 8564145.3125, 8564521.875, 8564577.549793994, 8565621.185345467, 8565811.440131275, 8566970.326773284, 8568478.125, 8570634.2398771, 8570764.89108342, 8570778.99976356, 8570809.122340348, 8570892.338996574, 8571000.228420716, 8571194.92508035, 8571257.016490508, 8571294.33519412, 8571457.8125, 8571644.87715662, 8571869.552349117, 8571873.050661271, 8571896.827847185, 8572125.0, 8572136.35420757, 8572209.375, 8572210.9375, 8572225.0, 8572343.878277207, 8572470.3125, 8572526.5625, 8572552.746206231, 8572616.386841752, 8572817.595909914, 8572849.232112607, 8572872.326818649, 8572937.109120037, 8572940.625, 8572950.0, 8572993.749545634, 8573190.646728886, 8573353.125, 8573364.206070317, 8573388.310326226, 8573594.213252693, 8573634.375, 8573755.644717189, 8573778.433213813, 8573800.905910172, 8573840.312816013, 8573909.768129898, 8573984.875410004, 8574171.875, 8574236.733338127, 8574250.158943191, 8574425.0, 8574485.9375, 8574495.3125, 8574606.246898467, 8574720.023614086, 8574815.161556631, 8574884.079807354, 8575081.567173727, 8575088.411146745, 8575261.297165342, 8575667.236368759, 8575798.237316916, 8576037.024426892, 8576634.923637912, 8576707.8125, 8576892.18101212, ...], [60.358862691764216, 21.396898626916958, 13.537600513086925, 14.48800991295901, 21.147334080866962, 76.49737072661956, 111.49702351305544, 10.036717090842227, 37.96288443967342, 17.08524999788023, 10.221864339608661, 113.77746097235733, 11.975957349736037, 58.43200977714523, 10.796616879128033, 176.15221827424315, 54.51146902889846, 11.219781461477403, 14.914833267503965, 5.898069672277589, 10.114512130661373, 86.01752807974358, 24.858867307699423, 69.79985948074437, 51.949455049750476, 90.524025040552, 84.77069771530145, 64.6618843765547, 18.922420636304675, 10.510300762648171, 14.596243388537495, 87.5726856155303, 19.067345650620492, 61.06465443029862, 13.752602176459337, 21.74958651896951, 12.369907587353985, 27.739772134696782, 43.421005784451005, 53.82250837547634, 17.08304422839192, 63.745064595580715, 35.57066081078071, 11.595973393585949, 63.42194544541718, 96.49998572683806, 7.122740223647632, 65.3625461454505, 6.996821922782572, 53.30602265866862, 44.17549143617344, 27.028625893400132, 9.062660292217933, 6.361632500542996, 10.438264587566547, 37.184556598307715, 69.15041686681879, 45.651591542819396, 32.90294235673582, 12.902469180217494, 6.704262573197717, 12.265580860818243, 179.45820255183247, 44.77315540059006, 28.737518376617338, 16.862499469520188, 87.38386807214819, 8.050130675739368, 9.018041989364994, 12.677393938455397, 40.96809966875236, 87.6396047434265, 15.426272512233874, 22.297204169834487, 29.03913910159098, 29.121260112981908, 39.27208931225923, 19.33234052464843, 36.56524701621065, 6.092084695562768, 57.69846037637838, 8.925889190618609, 9.77490473887462, 21.037312687769905, 18.34214663572122, 45.95840231700487, 67.07255316343557, 23.3871002096188, 84.14346859925162, 113.83180791709226, 39.27957440428413, 34.450916679292234, 20.42088330974043, 6.846896537356722, 71.25419648764093, 55.73554996791439, 23.024018784577695, 20.04414811929492, 64.79912851356454, 15.219696100011776, 16.075114640443857, 20.02335294827045, 82.566700017112, 9.405730229852821, 10.149889677278635, 69.821290865508, 57.73848234173223, 26.667057844806436, 17.732586146673704, 19.299397971137942, 6.918319249417356, 17.454965665300794, 31.616359818231633, 25.18718129751595, 49.72668895012809, 22.945849112757397, 129.46031604841642, 29.44336068803502, 6.467302960472735, 80.7963536098727, 21.582613570585092, 20.999491163703105, 7.45405722305614, 14.479098795688639, 51.60177511969969, 101.19239040879833, 16.954827554293466, 18.54273174335586, 14.495588828731467, 5.592896640673967, 10.41829149747044, 74.21458467483747, 30.49543903413325, 7.357294331900545, 42.2305211442352, 18.969837490584098, 23.115888721161323, 33.39317485616964, 9.564302920642465, 5.586960519761839, 37.424223101492835, 16.475613622992796, 46.12511148370079, 12.091729686605635, 32.76264940443259, 51.54566519460939, 5.143263754562603, 8.858743149234193, 76.01003374316049, 67.85303438418173, 5.253490505565949, 7.106406173843886, 9.064689924410768, 5.846776264791165, 16.3052622318216, 19.903409405967636, 18.429334857480367, 74.80892214483788, 15.2478877391646, 25.415723759752492, 107.56002641318801, 32.77472913621149, 5.06988023728892, 8.561613226320612, 30.063343185717823, 18.402576275879404, 62.19627597154517, 55.72441511994775, 42.156118167673405, 30.495774977070088, 5.701250226718778, 129.75250273498685, 47.276298707416636, 55.634411824644246, 7.558449644113603, 18.65773767967858, 50.17772118865264, 76.54593912470855, 105.33740011008622, 44.01440684143649, 23.442646565326235, 56.92538835907431, 56.76481113188656, 66.03826737595952, 19.118600510666365, 17.692162806256654, 38.508865238004496, 19.341600560072308, 89.81863015727129, 59.41920179239989, 12.127915191492006, 83.87744904255122, 49.086222464513185, 53.04356967056066, 96.51248381435678, 12.2053824734147, 160.9208462274853, 47.8274454777247, 41.492318652459915, 5.997524281667413, 14.19182015563277, 10.998222009134908, 114.01618452608466, 112.75122250626883, 35.57605794367268, 10.466005449651032, 9.34262679153634, 63.995823504522484, 87.75519386071296, 77.25175500504399, 9.043277394766921, 97.35575527306307, 8.419597781742848, 18.174301676682425, 106.0332547130084, 90.61946983611733, 319.1191863848313, 28.179728643524882, 12.269554514216187, 30.037441090081693, 21.27450628494203, 58.7737425610105, 20.693363661432024, 35.19037383486018, 90.0304204828488, 5.470670518402117, 16.971599980288307, 14.6205115549868, 68.04826457287825, 71.0786188648817, 9.574306820354298, 45.69060987692619, 43.958452689102174, 45.04485646571913, 15.550933667373537, 209.97800100037693, 61.82266951442715, 18.079723004573825, 15.216254963033904, 24.906752219794598, 66.13134553147067, 7.333834533002446, 39.29039484015178, 5.253679364420783, 73.64272621442171, 116.54763844532678, 49.08894465139893, 5.171956476763835, 54.509531017447095, 21.538988428136467, 24.80323613895373, 11.599904743695893, 6.907059905862332, 19.575256229033936, 68.35576875529753, 106.59941873434016, 15.877314002198887, 31.066917389919716, 52.63867571822461, 71.79140165144206, 137.27850850822216, 16.05429242513917, 61.492588786053034, 10.893152341767918, 6.234056654331163, 20.410955586290775, 95.48268023666905, 60.97085507427152, 22.395919499485704, 41.163984898142466, 13.07560266177373, 84.0795519887942, 35.35378346321121, 54.288351852238975, 37.71235345073738, 6.773153244726556, 15.269762557838876, 7.913483200321657, 39.136791876105484, 6.0768578904931445, 5.668086226896684, 24.921159391393076, 23.39563478910991, 17.811158398386453, 15.18917634977004, 33.851262284439045, 125.671271049053, 38.76894515192509, 49.86602493620965, 48.748435459758355, 8.272353910419161, 15.162823500276202, 52.551381377449125, 20.521748075808887, 7.050603125410199, 126.99079435050777, 53.541767445612564, 94.78537094462767, 11.279216269102427, 54.5326940124656, 19.247277044029516, 126.81589614599393, 63.23546292046164, 36.64754110585153, 118.90668091549577, 47.87754737195951, 11.094686806729118, 132.58954146476705, 36.67014927038157, 8.55773769459331, 14.147864297345015, 29.363850915944404, 26.632025795489255, 90.6205414490749, 9.41336217562504, 6.618286951100051, 22.50223291478224, 41.1963418648332, 222.42491719422088, 76.88301787956854, 251.0820456363225, 12.54753955723744, 100.97773356357254, 9.853281632616516, 50.66829620409833, 77.59128136731127, 69.76002446970352, 46.56773916431755, 45.06361548916174, 30.62261011095142, 53.10847945056992, 7.92477581554611, 7.1573150035238315, 21.203898455132958, 28.04664365474738, 52.239057929041046, 10.292457747924567, 12.986417109199271, 132.0940495297266, 31.632346797201773, 93.9292536532583, 5.371141976071822, 88.45036146776513, 98.08924542135571, 48.41377216403879, 23.41460438353269, 7.344350196343257, 13.113463907762563, 8.805467541693769, 113.64902449754985, 11.19663269207179, 71.90813028380478, 89.18444021143621, 20.94389233104548, 5.124290852342578, 85.21619170149826, 203.43436716715428, 62.88991642876956, 33.641384463134166, 38.570652852281185, 131.2778904429917, 6.153756010456745, 16.18908933066693, 97.31950309550928, 86.85878590913974, 5.812284575900994, 12.200908851474027, 19.708815888670348, 5.561683798419915, 16.09366663667362, 43.434505024740844, 24.15776136551006, 71.79545813585743, 97.17676811703902, 59.485749006419915, 18.986490182153176, 25.248016439603127, 15.312178207410431, 224.14047494839292, 116.0038636864992, 27.012780865184602, 5.719076837130635, 15.93638011360783, 5.530955474246152, 39.41069593346752, 8.721229328724037, 75.62311360903647, 30.11835360495605, 168.6281857462792, 78.83742311416535, 18.08068281402006, 14.646066107224414, 54.43308456221287, 102.15271673825094, 86.00687113216624, 71.41337482512547, 7.013573933034443, 11.625970727901832, 18.662191132770282, 138.09979364319744, 75.92563991560642, 78.54316293125376, 46.15851730626282, 38.70445064221536, 80.88772966796654, 9.924268629812099, 18.348190463547063, 14.85140708842443, 14.886407102614022, 6.755423194671762, 53.088791181768954, 27.667453540942372, 5.708644596286244, 9.710745373501199, 21.474284615663265, 20.07435821617018, 31.18079729154019, 51.44655665548378, 26.034022429796366, 5.481555113456881, 138.10874349166858, 26.846816978716337, 56.700661333390016, 11.593013992169286, 56.42381857838265, 99.16756389186506, 43.453295154555164, 21.466051049017786, 16.95064212555633, 10.603157655723404, 19.99752028502562, 54.55330336502165, 7.875796711634871, 87.59001922242369, 5.800658489511586, 46.882959202393494, 61.71219840607284, 49.838278954541856, 36.22101136538345, 6.400489950800993, 22.072473726934838, 14.820373337494464, 23.857936636916506, 13.915763436190042, 47.43201145563054, 130.41754654052295, 56.996929952323846, 12.754534107862717, 63.63840611776892, 114.2857231587872, 46.8646318923035, 20.02465054798931, 41.02302107943869, 42.25480029801325, 25.46003175555526, 38.76981399808274, 6.5049265922339154, 5.461766735078357, 59.066310070560505, 22.536844299682944, 95.36456883023827, 50.42630214275658, 7.7622717696331724, 7.164766143063835, 63.01558319819309, 33.582544181936065, 25.751366891751694, 53.89136938427698, 175.17955717799893, 64.07883426098823, 139.88723727551877, 27.515649373913632, 12.612205612395401, 18.740842605109574, 73.78564568803094, 60.749530103426565, 15.840698967005952, 84.00766510948344, 139.15139923419216, 31.756713661686753, 73.53134244123385, 15.797887118509546, 110.22349080418854, 35.206855462780396, 93.11862717068999, 27.90707816677984, 14.23042860433108, 64.43665981292833, 103.58958493565544, 30.519547091264037, 97.83842767379238, 36.19771248617027, 83.33525723206108, 18.176949781784923, 14.785562346243083, 52.80250816724557, 14.859661946109341, 30.802698427430048, 20.643651345628832, 8.118412973860577, 13.527623989983804, 43.240740086476286, 46.80043605048767, 87.52749851678152, 15.87471494788681, 5.996012239862476, 149.52671632441687, 56.09106950409273, 186.50693512251672, 38.66986114080378, 42.203733516354056, 7.200462948989302, 38.58626085638744, 6.038085366718655, 74.61877948022794, 65.60678861279337, 34.03617896429094, 32.81481791312352, 20.710474249897285, 20.09157783137582, 23.203376475987707, 7.495651939921847, 64.81033609325748, 27.711595412989595, 61.22879266549159, 5.40349070818862, 195.05253849283142, 14.168620292281853, 15.471250642203223, 198.21775756832918, 69.86089688264532, 74.64659371139159, 40.397032840711496, 26.080400444482734, 11.727439149485026, 5.545335191866672, 54.44652706287326, 86.9580154263328, 25.488006000976213, 6.9018540511355875, 102.35263561064173, 53.61653034393219, 6.474375646724296, 21.560864794329966, 91.79214083522892, 53.67293803901983, 13.758482814473332, 75.48689348746652, 15.872787898391739, 19.984273903479107, 92.15938655873549, 6.15041969460889, 9.817403004590457, 58.50473475508956, 25.800915877057726, 10.456599444490935, 23.016952741157365, 71.85437267939646, 138.7662490825187, 16.954718516479005, 243.51564233175313, 16.597926995840847, 94.56355191204494, 51.2908025634772, 30.199883698411362, 11.179322074007287, 31.962563973774657, 7.352842088382919, 50.338001778492696, 42.8207416333539, 8.416727722558274, 8.926174996797357, 34.56661922589077, 20.34626497534575, 72.15179042163932, 61.19488198069687, 70.14372843771112, 25.148974262201325, 22.62028057610663, 161.64736511952674, 138.129595064258, 33.21395893937834, 24.74810709661813, 34.280725326777144, 11.738182320651722, 44.409432555357725, 17.51695026626188, 95.25894367682983, 38.330009195191494, 67.75470133524306, 53.338474641841294, 32.45103090975155, 11.315034668091709, 44.014687714874185, 10.255305413883553, 135.0018115798907, 12.061254633279525, 56.79059905520979, 22.83597548799261, 120.65146618639488, 13.767467181034183, 56.90237286271939, 11.236206532355713, 64.85710552118556, 72.97366277432582, 28.42288069903953, 11.070921296780245, 77.62647772530308, 73.70943026334997, 98.95669823286046, 6.724271340655539, 269.90164043985646, 72.35381552293146, 15.312252435422051, 98.11844119326923, 69.48545863319879, 50.98743159808216, 22.048370721596164, 18.662601330043508, 19.277747818144555, 53.67664089649439, 28.124870300660426, 28.55915244573166, 57.387771868330034, 76.203566427015, 135.82077223792166, 37.884885525131494, 24.49077184327721, 21.835623448993857, 25.65663188196733, 111.37711903351406, 21.93823308190226, 22.93540241086758, 5.5853718305980715, 15.6611108541519, 39.74422495312161, 56.28331551221251, 57.67565518513945, 34.084560131379305, 19.353696682833863, 5.782188497132375, 49.928748010104165, 23.891711500018125, 21.116735500716768, 195.34351454645235, 27.05369029386384, 65.93332844127733, 63.70917098828425, 15.554908811216999, 19.283564770339705, 47.89717434124591, 62.93009702038051, 57.619649643341226, 8.805596467249183, 86.94237336342653, 54.47278439998058, 36.10763670700313, 24.604045755732066, 11.869838703464264, 62.539044664471334, 50.074948149873755, 29.078011171482075, 28.632487890899363, 16.528677620259785, 16.954093700499243, 20.545137596591637, 10.233835302672777, 74.32918793901223, 63.58722336828795, 5.5300044116368685, 16.929037558122815, 32.43527497872308, 24.98952381004844, 64.21801414207232, 25.424673834259437, 57.4198640771273, 63.96544828280259, 19.39100862741654, 5.984543313650442, 15.570246087847217, 84.8722232275258, 43.8566063092223, 13.308438649967686, 64.69555004366657, 5.822247663301932, 111.01720017732733, 6.285938692598674, 6.1431852587828, 64.86352042511886, 18.79048020304258, 72.40042981936377, 81.2680418299355, 151.88054068118558, 79.93241689050011, 70.68652055759962, 56.72550630836762, 5.186005724932253, 69.72815837766012, 56.695745393837846, 21.7088382960887, 8.181085941808615, 84.40218836138247, 136.53833282928076, 54.28094804510524, 21.549840700673187, 80.63507798566779, 12.878100516757769, 10.728474081903695, 47.60594698329473, 8.09303152816351, 22.47218544722798, 33.97920205862292, 74.27785650300082, 20.815509821308297, 85.68176167855086, 5.183741964997971, 22.96886815460207, 54.81446959590909, 13.445033125927516, 13.373689049139665, 45.16044976948264, 8.090772371440144, 6.361963589603114, 6.09715360756591, 29.123954906702476, 13.303622412070869, 65.6213236572583, 9.943826873062307, 61.51029743482646, 11.910498467713326, 25.00256355014063, 17.80812940260323, 26.2755598188478, 6.776021669216513, 38.38281963281314, 64.77053466238377, 15.066560185394499, 49.992822917598744, 75.30184545732807, 9.868405193178344, 111.4334818958194, 19.61012078777196, 30.562353412356334, 17.97372008230116, 81.78625426750423, 13.295747932368549, 129.29627003657475, 41.30951568995522, 19.756093369231497, 43.99070102498079, 5.274524927719898, 8.74567964941097, 34.464380347694295, 293.6938797792817, 79.26117429667323, 19.367494994902138, 22.362183672560842, 32.388447535746856, 31.103133325380057, 35.36626026798241, 51.969266406157104, 20.032135447483604, 26.353480230585642, 47.06437180245424, 7.0863238901306, 64.05274053245213, 42.40848127695, 73.56299488092105, 5.634843317975859, 10.235830386823217, 5.559051976197641, 21.715878157022765, 15.604251020126409, 90.30505379620212, 101.8996621744281, 60.68617414946735, 39.34660668853305, 71.30071821073462, 5.383722185888713, 107.24154329992155, 7.443245120989325, 6.836211671812828, 111.9150035503368, 98.52009618944187, 110.13150800514198, 122.14051701143127, 39.08588625167481, 9.056863929752637, 86.25547192268229, 43.18677414902343, 137.26123478348512, 13.163206039898565, 205.88345552288865, 40.42300548020853, 15.7751712002543, 7.781184389026355, 168.58050217729112, 5.983391544044475, 49.071097545469584, 7.6470352651307625, 9.503228027441837, 9.763612029556478, 27.602295148862307, 126.04398552093642, 24.393478462063563, 87.73433213409845, 16.143349814821338, 62.30703666105704, 80.99202614510122, 7.0868935937304025, 78.87480237233278, 35.46029581137855, 57.36302249773891, 16.73458493520281, 19.02203468723959, 14.684678163668769, 102.9467154754832, 23.047358121297208, 5.922457209787638, 45.26217949447698, 63.219339730970894, 20.83889690300604, 9.881182551718494, 44.126897038417745, 14.844264951431402, 5.85494617256184, 15.513890463611355, 24.696773103610962, 12.66901100854847, 10.666379702586413, 30.29533090192774, 141.49719072734297, 6.592419016297208, 22.755282250638462, 58.45452138670575, 46.77485096459649, 28.792396488164897, 59.045257675808074, 20.436580021806023, 34.15390552986386, 10.937938309012383, 54.92216503539237, 85.39237370184784, 26.29370847438352, 11.543282264912605, 39.17883449442179, 31.58928801755464, 10.62513853852732, 19.8967224059241, 98.47075988379477, 23.33200185476028, 55.35605731076044, 128.12190927539896, 9.213404683419084, 6.390101783872558, 22.5466020421903, 28.275698829551676, 29.763478145173956, 27.254600924039927, 17.61923787768257, 29.2808954412979, 131.1019446724407, 12.165178736234123, 5.661943361200589, 25.8122918654617, 127.92645916321521, 19.131653209811954, 68.37315809688039, 40.94652499116697, 54.34348853815334, 153.3213031077418, 32.76629606680885, 38.31411866551738, 60.73307741499088, 6.4609506365282545, 30.614375790944145, 44.79569070304216, 6.676553569610889, 86.08496057685248, 12.27755322650463, 8.777561589007824, 125.11098667126598, 40.60556832299211, 17.584380914048985, 26.68001018383319, 5.798162533335903, 53.80198681686158, 24.18926476138255, 5.29546290569737, 28.638052325607365, 44.26495645082757, 34.328051153500795, 37.90475485603056, 82.99753944828892, 5.289141162916342, 26.26578353984925, 79.87006389358545, 65.30985942097757, 58.85079791538156, 72.0740130818348, 5.822719264298333, 318.32208945633954, 156.1941377141655, 14.079624562875665, 24.012123774806312, 6.415464022920248, 19.49242912827664, 87.18114550821205, 20.768472945084678, 23.640024708317895, 5.640904547138178, 46.00829934397079, 7.22606316338671, 30.066743710619328, 49.66074094236165, 5.03029739139347, 14.280841126361347, 80.73952139485452, 32.763202344958344, 105.4990823672961, 20.23978282409794, 73.0326751807705, 26.68322072781451, 5.286670483275179, 6.820189140275607, 77.09025865707464, 33.403922060941234, 21.21883105427428, 29.21606544257134, 101.33974034019073, 140.56774403165508, 94.74841534933557, 175.14035911835128, 20.77431104859184, 34.65925131803934, 9.795930757708, 87.45271236587968, 111.97340101772669, 26.113086139693735, 28.39402920914226, 19.804636287231176, 19.789339682019865, 11.373060646456251, 112.43071781498286, 7.4688776214064525, 7.906171252076857, 12.1847750368591, 54.53870588266122, 44.67458574905403, 19.238925330091813, 77.26396838380403, 59.553224258468006, 75.01056996977987, 9.710494077528876, 45.80166978691228, 41.9347974233497, 44.38122467349626, 14.065136128269138, 41.126581998359235, 51.21749195628007, 59.02405202288453, 7.337232763184332, 16.765980597497318, 19.180923739478214, 22.52877742891733, 26.05278720492927, 30.823547377295817, 43.52947267678921, 11.021576985518028, 11.161841155326796, 55.4251200863381, 17.798899896225898, 19.299207278914942, 17.05991609736761, 67.55785202193793, 23.8306688958387, 6.8266396128665745, 82.97452777687343, 108.36970073005548, 16.686489341651498, 98.3359983531704, 34.2109825207119, 75.98527314910395, 5.953367817001277, 46.91952186569286, 42.5144324163561, 48.695500239891025, 43.34925150146897, 23.893754498533408, 8.96804192099492, 98.70161730813854, 5.837827158975336, 10.242329240124388, 8.486395353733334, 6.773302212210593, 25.115386451008128, 21.740282166244032, 85.44472988200276, 78.77721179470353, 77.07190680341698, ...])
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)