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 = 48265
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);
([6916938.575410915, 7178082.8125, 7403207.822966427, 7623584.375, 7676961.476723666, 7953058.921085432, 8208173.4375, 8244296.134466852, 8245692.029359838, 8253935.46337845, 8270327.487422473, 8273438.473057494, 8273954.775540075, 8274946.524030359, 8275835.426652449, 8277657.55124388, 8278802.465881587, 8282879.128709109, 8329939.0625, 8390717.614900514, 8391241.221271094, 8399656.2694868, 8403767.40826348, 8406620.3125, 8406668.857459025, 8411755.008294027, 8414415.144073248, 8414417.1875, 8424671.448114857, 8502079.034091922, 8521154.717286319, 8522165.625, 8522782.75281597, 8537704.072748555, 8544884.375, 8548659.375, 8551091.203229794, 8552558.067609033, 8556758.843841504, 8569550.840260291, 8571326.055417737, 8571417.400260525, 8572200.77920677, 8572821.360183014, 8576237.322489278, 8595686.782811813, 8596395.163302643, 8598625.0, 8599615.024627697, 8599977.164859558, 8608469.365581231, 8611598.4375, 8613834.273816427, 8616297.558778806, 8617286.939829865, 8618068.75, 8619583.498458445, 8638595.77606346, 8649512.62580354, 8649592.457904922, 8650856.312929409, 8651695.281879507, 8651869.66308671, 8653259.56333146, 8653409.888594797, 8656524.802223386, 8659208.475258542, 8676414.36350279, 8689899.859284285, 8690333.79913447, 8691173.4375, 8691410.147661554, 8691743.75, 8694651.76229762, 8695641.646877076, 8696335.9375, 8696467.85637492, 8696590.782822143, 8697563.493188389, 8697772.262669683, 8697835.423001593, 8698618.679944627, 8699578.125, 8700267.265633512, 8700370.79975687, 8700506.304060603, 8704812.5, 8706619.579276735, 8710417.1875, 8711881.388426932, 8713193.008797154, 8713932.8125, 8713977.325833414, 8715224.213310258, 8715484.877779623, 8715507.061291356, 8716131.630992526, 8716213.046400767, 8716460.044757977, 8716547.969074206, 8717512.259350475, 8717529.6875, 8717825.19330322, 8718138.659044316, 8718240.274720265, 8718264.670849582, 8718844.283784263, 8718970.182484148, 8718971.875, 8719035.804489067, 8719483.013213111, 8719653.125, 8719676.414374799, 8719750.422736626, 8720026.5625, 8720324.54769169, 8720328.125, 8720517.1875, 8720835.433846021, 8721309.260532271, 8721391.448324133, 8721661.094091982, 8721715.654644962, 8722259.41050893, 8722388.51624484, 8723242.1875, 8723987.430854615, 8725424.923861522, 8725951.558410125, 8728900.862785636, 8734731.25, 8736617.040798213, 8739739.0625, 8741491.596356103, 8744075.0, 8744458.28298815, 8744462.278793423, 8744829.071247771, 8752828.848032814, 8753153.321547177, 8753409.0200678, 8755776.5625, 8755778.552848408, 8756339.0625, 8757726.5625, 8757833.244026924, 8758568.75, 8758646.875, 8758729.982131522, 8758826.104222415, 8758853.237053795, 8758915.162714196, 8759095.3125, 8759446.89744289, 8759552.01039456, 8759590.051842058, 8759812.076356629, 8759856.25, 8760697.939309366, 8761353.24433409, 8761600.0, 8761734.037183583, 8762104.6875, 8762326.460326668, 8762518.75, 8762892.615109628, 8763771.7341051, 8763773.77277986, 8763775.41993531, 8763780.190702055, 8764517.923724748, 8764765.874153389, 8765420.3125, 8766108.815929545, 8766252.092973836, 8766314.464817476, 8767001.13097085, 8767042.1875, 8767280.206921445, 8767712.030747432, 8767744.55666679, 8768348.718161322, 8771457.11418408, 8771751.440180287, 8774096.350890068, 8774316.361645319, 8774318.309120802, 8774843.911273299, 8776053.254744025, 8780565.625, 8782132.8125, 8787348.793485565, 8788892.079121994, 8795093.349380216, 8815134.616716726, 8818853.80177923, 8822578.44276889, 8823038.82996684, 8823784.193485485, 8824065.98054499, 8831001.548568198, 8831531.041157784, 8831759.679033613, 8832460.9375, 8833438.801712627, 8834017.1875, 8834738.221192218, 8834751.821613714, 8836853.489831632, 8837599.578014674, 8839374.273694973, 8844663.330645155, 8846087.443193465, 8847657.8125, 8848328.371082164, 8853832.560487825, 8854289.002337981, 8858835.9375, 8859897.969159605, 8863494.578119934, 8863809.49725202, 8863925.846581444, 8864294.009960592, 8864830.269786678, 8866303.503174715, 8869470.378392374, 8870465.997616444, 8870504.565233983, 8872542.530356808, 8873032.8125, 8873092.036472425, 8873303.13968265, 8873337.082287854, 8874927.43892727, 8876428.084631752, 8876798.07186968, 8877305.142434208, 8877584.375, 8877749.934774136, 8877812.806304837, 8878053.125, 8883859.030545318, 8914443.35836859, 8914454.6875, 8921179.018238205, 8921314.225210892, 8921548.642946705, 8922773.60098223, 8924723.127217874, 8925431.021221945, 8927546.0264498, 8930254.6875, 8932418.75, 8934008.148670208, 8937753.521610219, 8937767.180957388, 8946015.13459207, 8958352.277077159, 8964698.355954867, 8967070.135240551, 8967804.6875, 8968592.35786471, 8968791.968822742, 8968979.6875, 8969511.398613561, 8969516.327283464, 8970633.801856276, 8971699.382842412, 8979624.619141672, 8986031.184464728, 8995521.875, 8998546.720696142, 9001812.046893975, 9007972.04466321, 9009897.11889311, 9016336.980824713, 9046221.875, 9046435.751442745, 9046471.432974385, 9052482.360414773, 9055203.125, 9055325.645610133, 9055405.98635447, 9056087.5, 9058492.1875, 9058716.043571701, 9059345.17027989, 9061103.505798679, 9061396.4223237, 9063145.29808267, 9063241.722253744, 9063847.276100958, 9083885.205118118, 9085173.4375, 9086832.8125, 9087845.3125, 9089887.86921696, 9090195.62412318, 9092700.0, 9092980.111471675, 9100126.5625, 9101927.648339413, 9108981.25, 9109977.985357335, 9110257.493215878, 9112248.52343232, 9121585.9375, 9122685.993435124, 9123625.95943682, 9124095.3125, 9131881.242159512, 9132470.450996982, 9134509.375, 9134876.943699535, 9145178.125, 9145837.5, 9150590.625, 9151472.808983132, 9151532.063757448, 9152574.02823397, 9154033.27612631, 9156550.605960712, 9156727.791415263, 9160498.4375, 9160508.013788728, 9160541.007053085, 9161281.25, 9161489.393922977, 9161593.543987254, 9162348.4375, 9165868.350402994, 9167471.948413882, 9171257.8125, 9172799.711574731, 9174501.5625, 9174917.342642933, 9175518.523344135, 9175630.457112908, 9176381.25, 9176966.877752254, 9176982.610237163, 9177955.22583255, 9182623.956504608, 9182635.9375, 9182703.125, 9194768.573732274, 9212982.8125, 9214537.5, 9216654.653083326, 9216914.860573916, 9218798.4375, 9218937.5, 9219426.5625, 9224099.648060769, 9224217.457330825, 9224517.1875, 9224577.283423837, 9224737.5, 9224743.343416851, 9225720.3125, 9225903.125, 9227162.5, 9227180.611400114, 9227689.180171464, 9228264.879034005, 9228295.3125, 9228298.763969293, 9228702.937755981, 9228777.713910554, 9230225.0, 9230232.121470166, 9231007.437144525, 9231148.182841696, 9232773.166457802, 9233059.8610041, 9234650.859727608, 9235208.61157206, 9235595.102218984, 9236485.219387196, 9237261.94825128, 9237285.863788849, 9237363.719884252, 9240763.329914862, 9249528.219045175, 9249894.326732956, 9252638.602899356, 9263341.615400627, 9265889.0625, 9267000.0, 9269310.808822095, 9269573.648636296, 9270719.932755083, 9272396.755777184, 9275378.754306072, 9276224.000808142, 9276498.339858843, 9276614.412901515, 9276617.83183045, 9277043.319570584, 9277193.75, 9278134.316741988, 9278804.6875, 9278969.93359643, 9279000.88239446, 9279225.323399767, 9281810.965222025, 9282400.0, 9283689.930913381, 9283815.625, 9284148.514165737, 9285484.7772502, 9286660.98607022, 9286674.378189309, 9288913.192554465, 9294962.27282101, 9295747.605083086, 9299462.290406888, 9312171.875, 9312289.0625, 9314304.750781063, 9329789.0625, 9329861.265932886, 9331924.439325523, 9333028.706738217, 9350096.27652209, 9352179.6875, 9353901.667579226, 9354488.808899662, 9355848.769617086, 9361110.954425354, 9364971.875, 9367365.625, 9368902.56133805, 9373287.631707072, 9376618.384262001, 9377080.501579678, 9378520.516867764, 9381505.947984463, 9382159.375, 9383079.6875, 9384158.039949693, 9384265.855985558, 9384472.907206604, 9385068.307597322, 9387198.224539058, 9387433.535394125, 9387456.857441777, 9388048.413843932, 9388696.825012274, 9389526.500569355, 9389561.647574306, 9391639.385405786, 9396223.491775436, 9396647.33372251, 9397301.5625, 9397960.252589125, 9397987.11609069, 9398029.683585152, 9398059.375, 9398831.648748936, 9399872.583748115, 9400075.928035954, 9400645.116762757, 9401079.6875, 9407039.330962053, 9407448.420449957, 9409508.051974704, 9409556.159161841, 9409688.51531065, 9410018.056373674, 9410423.4375, 9410584.001465693, 9410743.285175249, 9410894.285978056, 9411149.058290727, 9411328.50101995, 9411336.146283511, 9411896.78275333, 9412111.71446507, 9412853.125, 9413323.69904719, 9413579.6875, 9413606.799293337, 9413754.859835936, 9413885.806086442, 9413922.040796213, 9413922.824231377, 9413973.233016683, 9414266.958566306, 9414316.991674993, 9414459.375, 9414528.602081966, 9414642.09696285, 9414760.379933937, 9414769.557976233, 9414778.125, 9414971.073966132, 9415011.379442245, 9415035.9375, 9415137.5, 9415137.623123733, 9415725.0, 9415727.349791022, 9416097.33552758, 9416184.77908053, 9416187.5, 9416783.450250356, 9417012.98325071, 9417843.897095155, 9417968.75, 9417976.47235632, 9418906.585265372, 9426973.4375, 9439335.493404012, 9455768.470731273, 9457363.873418583, 9462157.8125, 9462237.063365143, 9465101.720368553, 9465124.677061666, 9465612.5, 9466209.23447672, 9466236.39416829, 9466571.228154937, 9466627.440142535, 9467129.417291412, 9467459.32303925, 9467767.1875, 9467975.514692804, 9468332.942700496, 9468493.831213057, 9468776.5625, 9469650.408661015, 9469939.859254867, 9470223.225228002, 9470234.402132459, 9471196.297488585, 9471830.85252222, 9472623.792731244, 9472639.00153272, 9473378.316005051, 9473521.343071781, 9474070.711523073, 9474156.335307617, 9474238.144732855, 9474619.7168031, 9474702.545203045, 9474850.97417285, 9475307.603517065, 9475399.633799203, 9475401.5625, 9476002.377959799, 9476332.028486416, 9477366.080858145, 9477845.873173764, 9478093.75, 9484642.990680486, 9489567.579921653, 9491603.125, 9491614.0625, 9493378.573171893, 9493853.125, 9493863.06707105, 9494413.837928062, 9494835.843667878, 9494955.24716595, 9495351.350737555, 9495460.379390335, 9496487.279062077, 9496924.847872676, 9498279.63314451, 9504235.743597336, 9505292.163966343, 9507377.99735827, 9508726.5625, 9510253.986910813, 9510826.5625, 9511108.785794975, 9518024.104076382, 9518139.63156524, 9522319.342870915, 9530141.27317293, 9534982.13382304, 9542369.182508577, 9542753.788630025, 9543243.75, 9543245.426735247, 9543626.5625, 9543934.375, 9544615.824479232, 9545336.763605952, 9545593.75, 9545701.55387974, 9545730.05613812, 9545782.159266353, 9545962.5, 9545976.57140223, 9546037.179357018, 9546828.125, 9547089.28270512, 9547092.567960236, 9547654.6875, 9547699.827080652, 9547734.825165031, 9547994.946055196, 9548328.558016375, 9548333.598430837, 9548710.698656956, 9549164.0625, 9549216.290042793, 9549347.80368803, 9549603.204923362, 9549618.75, 9549667.1875, 9549671.204293216, 9549681.873200957, 9549766.049281126, 9549767.1875, 9549933.66658022, 9549970.938409273, 9550144.898614258, 9550164.791470177, 9550265.625, 9550387.543684525, 9550449.061093766, 9550455.448420582, 9550464.0625, 9550525.0, 9550569.125293553, 9550644.006144326, 9550696.424700199, 9550750.7486498, 9550777.655170335, 9550925.082206536, 9550990.062048515, 9551019.871465223, 9551174.459351797, 9551185.850715868, 9551607.8125, 9551613.77601093, 9551648.4375, 9551660.9375, 9551751.5625, 9551835.9375, 9551917.77713314, 9551924.151613146, 9552118.807230428, 9552160.66507679, 9552379.6875, 9552610.515625978, 9553169.033841329, 9553273.4375, 9553822.249429386, 9554031.259732869, 9554114.0625, 9554301.167921538, 9554879.6875, 9555237.382400403, 9556593.75, 9564946.219721137, 9570371.805083774, 9571437.02346913, 9572461.938440684, 9573387.5, 9573734.375, 9574953.125, 9575296.761089314, 9575344.752985088, 9576098.952851525, 9576575.52626768, 9577272.644957831, 9577366.414159453, 9578017.1875, 9578116.066781662, 9578445.300506562, 9579555.956761891, 9579564.64905638, 9579634.375, 9579962.047102503, 9580028.020898875, 9580115.625, 9580237.5, 9580317.730161875, 9580391.095669886, 9580474.00904929, 9580522.40418681, 9580523.343231082, 9580524.624971874, 9580612.114306277, 9580625.0, 9581123.13970126, 9581124.605915952, 9581292.1875, 9581294.144672371, 9581540.192183623, 9581581.25, 9581807.8125, 9582146.875, 9582168.453507198, 9582168.651462458, 9582224.551620556, 9582491.145426936, 9582655.617003638, 9582703.656384712, 9583163.039440243, 9583215.461538963, 9589553.022532996, 9589838.363860028, 9591938.657342201, 9595295.163758595, 9597998.4375, 9598022.555942578, 9598606.25, 9599034.81387738, 9601317.138640964, 9601704.6875, 9601863.13914202, 9602268.091932924, 9602459.375, 9602467.1875, 9603847.945145417, 9605053.398718977, 9606950.557711124, 9607409.012784733, 9609054.680188753, 9618265.631352419, 9621096.925017085, 9621552.822219955, 9622662.955253197, 9622748.24452916, 9624261.878746198, 9625715.211447056, 9627501.5625, 9628273.148424495, 9628623.97792139, 9628829.6875, 9628843.75, 9628870.3125, 9629572.66527506, 9629650.547657674, 9634143.75, 9647501.5625, 9670520.05630554, 9670803.669908829, 9671574.10670539, 9673772.68852292, 9674377.542217398, 9675167.1875, 9675986.431894735, 9678156.078845719, 9679861.406318175, 9679891.68972173, 9680068.144265417, 9681179.037082437, 9681565.481712798, 9681753.603562279, 9683483.297504187, 9683565.462660037, 9692253.406708779, 9705333.631718796, 9726162.70830659, 9729018.570585415, 9741452.04701612, 9742843.131872306, 9790250.565375231, 9792735.9375, 9800040.309533406, 9804698.927090855, 9809567.010522442, 9809875.848897932, 9818877.86067244, 9823697.286696073, 9824640.625, 9824849.507847242, 9825029.096986547, 9825301.180747954, 9825464.400692394, 9825629.899954362, 9826187.552650902, 9826346.692662936, 9837843.75, 9838610.9375, 9845802.935599355, 9845832.926126039, 9848061.201776784, 9848134.910163749, 9848441.994677218, 9848693.53375431, 9853909.375, 9854235.9375, 9854292.027518662, 9855741.205804534, 9856387.693813642, 9856712.093898188, 9859382.8125, 9863973.936623475, 9874874.465771781, 9881282.277422108, 9888838.626363246, 9889056.25, 9889503.127893532, 9889637.94488572, 9889668.162106248, 9890076.5625, 9890087.5, 9890195.612123054, 9890239.486440457, 9890250.50888652, 9890609.092623845, 9891353.281267097, 9891654.6875, 9892162.838149656, 9892443.75, 9892599.00217665, 9892827.542191235, 9893301.422661157, 9894096.57649415, 9897717.008508418, 9920543.603360208, 9925342.19460612, 9925612.5, 9926067.13033608, 9949873.093996262, 9952230.433245156, 9952242.121707484, 9955133.909630707, 9955441.475859784, 9958084.138267772, 9972351.5625, 9973805.515273783, 9977173.483088465, 9978882.837359283, 9979087.957792189, 9979839.206909409, 9979911.360760553, 9980570.727975758, 9981026.5625, 9981154.6875, 9981458.356296403, 9981468.037965728, 9981776.5625, 9981789.3449783, 9981794.845387956, 9981939.70130824, 9982040.917340696, 9982091.651208531, 9982114.0625, 9982114.529328877, 9982635.170203205, 9982916.06081465, 9983131.378894726, 9983717.711145405, 9984939.630363613, 9987489.034210796, 9987682.533393688, 9988389.505788723, 9991381.555006012, 9993506.626216684, 9999651.091419699, 9999850.63848455, 10000003.125, 10000943.75, 10008569.837992793, 10010931.25, 10011465.625, 10011476.5625, 10012509.995011006, 10015784.70654703, 10017607.8125, 10018756.25, 10019682.96423636, 10020543.019264603, 10020724.49300419, 10020731.230611458, 10020851.5625, 10021026.527133096, 10021052.690155817, 10021187.5, 10021376.905783365, 10021514.072449934, 10021848.014177114, 10022117.975348175, 10022407.8125, 10022708.143328594, 10022743.509666078, 10022881.00769803, 10023273.494796725, 10024318.87138986, 10024397.500111826, 10024439.0625, 10026535.933866212, 10049066.269086262, 10052386.19269893, 10053659.375, 10055265.22031156, 10056016.294098785, 10069726.474351946, 10069861.898261355, 10070664.0625, 10073748.069033977, 10074206.24611453, 10076481.170744415, 10079043.41830733, 10082746.890453419, 10092334.968562547, 10094680.516264617, 10095002.250348918, 10096974.870332861, 10097140.61339333, 10098173.237876, 10098305.99389662, 10098315.051379478, 10098326.487567406, 10098331.25, 10098855.017035678, 10098856.275046384, 10098921.656537266, 10099100.0, 10099151.5625, 10099191.606816046, 10099257.8125, 10099277.354899416, 10099415.512057267, 10099600.508434787, 10099620.3125, 10099735.464126665, 10099735.87735283, 10099761.588739863, 10099802.018710982, 10099825.0, 10100019.65109423, 10100055.129405666, 10100150.0, 10100206.916472351, 10100231.502009045, 10100252.639238732, 10100419.284809045, 10100421.597948477, 10100564.221555611, 10100640.888576524, 10100687.05787846, 10100755.797113929, 10100872.632632345, 10100882.651470292, 10100885.9375, 10100925.525186043, 10101093.887332285, 10101288.976112396, 10101404.6875, 10101449.633906784, 10101490.789218325, 10101587.977759818, 10101597.928872423, 10101715.13693859, 10101725.041111479, 10101741.37615562, 10101748.635381589, 10101923.90887435, 10102083.354308628, 10102189.242154283, 10102935.9375, 10102964.741863232, 10103443.542507175, 10103751.731944174, 10104159.20981756, 10104567.1875, 10105462.207435299, 10106085.9375, 10106328.894701386, 10106953.265055442, 10107657.692480814, 10108031.584939707, 10108237.5, 10108673.4375, 10111145.282777166, 10114483.686266627, 10116110.639633203, 10116317.499093506, 10116922.95300073, 10119857.778670644, 10120392.24219726, 10122841.201568393, 10122926.05954843, 10123403.418565925, 10128004.62305461, 10128294.618920917, 10134081.25, 10134754.235596567, 10135445.3125, 10139422.05243665, 10140484.320700923, 10145106.25, 10145383.645601882, 10145972.164000878, 10148569.306938913, 10148588.447549848, 10149145.987977028, 10151723.4375, 10155290.625, 10177854.235109312, ...], [29.84544405728696, 61.56484707748509, 7.607027602722447, 61.65571402063401, 17.490835422701522, 59.68600815778538, 39.393197187713916, 33.49176764588783, 22.63939002388892, 125.68187495149036, 12.964411127659154, 8.878215638953685, 26.57309232824794, 47.71173991517626, 42.614795287239346, 24.258586738097925, 91.50275512913753, 20.92601451208553, 82.6164107430944, 16.86621313486863, 17.83410644726678, 35.377473517717085, 100.59477170227876, 92.15131786581716, 23.860581986451905, 16.323570502651112, 31.257411695372824, 79.41571091575014, 22.25484282485743, 20.088095036915362, 11.174586114693525, 67.87468084328852, 11.03568095057272, 6.646683501612558, 55.9159441472483, 35.94903841566611, 42.683846375017325, 57.35080585442848, 17.19199744809707, 6.943713028214674, 8.936531780530395, 5.102666868544338, 8.746623780747765, 8.930991479259694, 26.429110904370518, 10.16551917962253, 25.88921617754208, 61.50768489145287, 64.36990085094965, 17.871803534966315, 17.954395863046766, 68.9724061014681, 9.247287513726825, 6.001250455877852, 51.09903181832632, 108.36485030612164, 65.61965664174953, 17.0616213024908, 27.99106189034717, 16.083112782136528, 15.148132881945148, 67.65473195344225, 51.03746564561818, 5.542291212784934, 7.800195473362223, 25.150658787025964, 34.58419672332586, 16.227961768666926, 14.43098615958619, 20.768273893777177, 45.74496659993106, 24.940706218299184, 86.57569255690134, 91.87044145886682, 13.216149499279286, 43.55758250858193, 12.363436371260727, 18.60318009755358, 13.140143417934768, 76.55035335407645, 13.286512929096869, 14.681049076089725, 63.91512434487414, 6.096262277803922, 5.48307615490072, 25.10486405820752, 53.771279167374985, 19.444388126539632, 37.023096291868605, 8.361161953341027, 12.710668696282474, 34.1260559913589, 12.575139233461988, 8.744386061678314, 85.32343634401171, 19.30653371452479, 53.747069666313884, 15.279241100052591, 87.89055530697325, 68.15910814343883, 10.771296585917336, 36.5276028151562, 15.733299637747399, 6.6855469458788015, 23.12905396888262, 17.909097174343696, 5.741593013728209, 23.77486821217204, 33.854237147487304, 26.147081268686158, 15.766011034165418, 62.20087111740986, 7.5505277349598225, 16.841447643101564, 29.59354945944347, 63.138930232986084, 57.33042578482871, 45.12120419558579, 21.456727119661934, 143.7356044806725, 19.398482362893777, 11.381621365653853, 107.1322257133355, 173.39829324810447, 87.23535793455338, 34.68583079674579, 64.58173146077516, 27.104188101219865, 11.513060809110353, 130.78914030864888, 40.39780922565901, 17.071955836552775, 41.706405885140924, 21.136379862035657, 94.67913448056626, 17.099736557771102, 10.79869723712398, 6.968362158481196, 7.325435588101043, 11.449478504569042, 52.40940994440706, 60.415345399319804, 16.868596637365236, 54.58153819766146, 34.75497933148271, 29.02522743543154, 78.52564686607559, 41.76901998942708, 16.19750674529702, 21.919651236611667, 11.307490687263739, 29.422402221024385, 73.42033654035048, 25.129677411146073, 13.647456971276437, 13.130051988896719, 10.524354285283612, 78.25099016182384, 83.54201309131365, 9.434387248794822, 47.29588280366374, 83.6320591188276, 100.8487007846722, 37.87987076180462, 41.730704206741194, 109.85138119244684, 10.914396209556033, 29.855368048673675, 118.05293373974644, 27.02280381734575, 68.82988288303149, 92.23963118815476, 45.84025001568871, 51.50375722766795, 9.824201267857223, 39.455001117795454, 41.34112088423598, 86.61268181865981, 200.15152342707052, 49.088463642161486, 7.350975142570567, 11.59669307388167, 35.27065034424018, 51.03169202208623, 133.73585750131232, 7.893328375879586, 13.4909338835552, 9.471596161976752, 11.336747288636005, 43.673027252707364, 104.41714694561423, 16.497428337633398, 24.0434324374788, 7.019977888209978, 11.527782835258408, 13.304167656745225, 21.807175556773963, 16.647198071276947, 43.245312652131844, 5.840764420094639, 75.39976348147063, 6.7225169691613145, 71.14815105584569, 77.73664884890763, 40.08658516906142, 30.45176129167581, 12.479327676268456, 16.030548056509105, 11.75023462582164, 33.815647311407815, 8.78451099818881, 5.225113680282208, 8.256763805343475, 54.811923926198666, 15.97046318047533, 24.383704463477105, 43.06741328767082, 33.3395772340185, 10.46689087946135, 19.4354451211209, 9.436958603370027, 19.57944333952262, 83.13200707552758, 12.1787104013055, 9.67304204736455, 16.924341048710797, 5.730889911262943, 62.09220227212911, 5.72893139117371, 52.80897799919174, 14.395500409491246, 5.399035632851311, 5.327809101811009, 5.030168831578881, 40.58820118403301, 128.4317786509891, 133.03178804053073, 124.93027965769242, 81.03507147772464, 26.00038866858249, 74.5446874035946, 29.534786264872196, 22.646830575119733, 58.24138187913586, 69.69796916305741, 15.60020713935223, 9.511379158905202, 15.603524650297734, 10.675042156818357, 14.135765972643737, 29.765044836969473, 82.67592341138713, 157.01202845064245, 11.697227139245486, 11.809906794518673, 22.734851557947923, 25.298545855135597, 14.858375859839306, 25.28944569272288, 25.456319050476, 43.89553454360242, 7.6660402446328355, 41.08432088477173, 110.18068166926699, 11.934030492219774, 8.696495123385697, 69.52767796359993, 62.02115862079842, 10.580377859034128, 27.291996498151217, 39.76815918587735, 79.80535181626138, 21.974004906441692, 11.403677693597718, 11.531599295013937, 5.6744942334994315, 117.61808657037187, 25.324158709575613, 22.091600118972224, 21.98477336151364, 84.3746077793579, 28.766976324467528, 5.388489860220278, 74.58711470032036, 175.78639639260942, 7.761984445639958, 67.97138805203193, 5.174326040127252, 13.457550470325991, 37.137234169490576, 36.636913191254166, 11.818416818923327, 10.14807549449649, 92.42557713055642, 92.6529216627874, 35.678838654603936, 25.827541298260652, 5.475302630147629, 59.19251079071394, 16.84799627971881, 50.9554219078869, 13.390424958620155, 37.54242712484577, 29.881552294963583, 23.507499939365573, 8.332548618337492, 78.17249262822384, 8.316379918461916, 27.582262961501208, 37.248000938457544, 14.911709128973703, 20.90116198551331, 86.73728939190808, 6.5485553405300845, 61.86161578485151, 70.22330705057644, 44.76372570616971, 12.98733051122354, 19.3252868211715, 12.19635661190932, 17.06196621976197, 90.92521778122688, 23.33101780001302, 71.57498285197816, 9.507608183346953, 18.16413927718003, 53.999139015259125, 16.37555479305596, 10.820272643805122, 30.114550655048387, 22.556768363035598, 15.22891195702686, 59.89957879439903, 23.899727420334898, 30.69747084975719, 14.855274419079507, 24.735113766950477, 5.267208119334063, 57.44136030340731, 36.20648558053876, 25.084999069215954, 25.028423745292304, 7.802396549440639, 32.2688236083074, 41.45306310923989, 6.245182148941715, 114.74437792639132, 33.89355551377876, 39.19898004970379, 45.67731261660027, 50.97939730073497, 34.56148211411695, 44.25887137053765, 60.136888279157084, 16.080428751897305, 41.16558508877877, 7.324797156539865, 72.65087780942294, 8.082668078662103, 85.28423301034094, 30.76229109390391, 96.41040011839422, 7.975471471773629, 22.492673469778325, 17.713122153513435, 48.63453908249967, 11.679457189502303, 25.30645770876297, 13.576330622304322, 53.26355540730721, 19.77797723012061, 110.10979900019342, 14.052260094979223, 7.50806235241467, 106.6350532182081, 66.30475100500647, 7.348637915364231, 33.353305520262225, 88.91522719085107, 38.409004828327284, 27.146910169963814, 22.46975295067967, 14.083398644326245, 6.501935386332723, 100.77351354998112, 21.905799517953604, 6.030560108223266, 87.04821158246183, 216.30796204575086, 11.378704545208452, 25.416988128794216, 16.141548760808806, 33.478416241860295, 89.32007119722735, 12.139352177887147, 77.25073894194986, 16.46950542766077, 8.659475127070692, 5.090077746978644, 51.03939676711794, 27.42269752421624, 41.775638897785456, 10.58296170093725, 37.830151469389975, 39.98750151594237, 20.279959006184168, 54.41288397219536, 19.753315549600497, 29.169732679552585, 7.141751640164223, 35.078343723056946, 8.312430167538711, 7.9830221082378605, 15.446427639698872, 9.146424217789782, 10.035782697845356, 104.18377923871367, 40.545405438821376, 83.33407067368991, 48.553534960477826, 99.45798378026049, 5.476042061735853, 13.162888870039088, 9.877026780833745, 20.563933366172794, 64.20008888163026, 15.357741623245358, 14.055645842472698, 15.44422513772744, 119.72131789675501, 66.95224678098738, 37.96453631576948, 7.411345715767946, 15.46845883654178, 10.60042009256115, 8.769731148608457, 5.625451196718786, 99.87329897651671, 42.01109996008991, 84.50950497685722, 15.885618712012922, 21.262541572217124, 21.196138058351288, 31.180528386385426, 14.187512334056697, 18.663984942431576, 9.903897726578016, 111.22907188503336, 112.11499834281778, 6.259405457591729, 6.165190371811329, 24.207704022672537, 140.86915614796783, 60.73169515909231, 52.10118256402414, 19.827581891967014, 13.655648431735122, 28.447855900328683, 30.250091786562542, 11.81395728418975, 107.81754309650512, 51.56926290178464, 24.22584399477178, 45.72904807481122, 16.074034378639894, 8.2775815115738, 7.692210525513179, 32.25387493748293, 16.930591706704348, 21.588140822099447, 98.08874001146609, 5.515222276301112, 56.53316172380476, 12.083363366643173, 5.422748684254929, 9.670963127817558, 6.293942020479086, 26.824681364475524, 60.045786141895185, 48.52306666209257, 70.94524635278736, 36.42157723638779, 48.45944234496177, 7.16750259544767, 121.20843874461542, 7.664324641311415, 207.75143139045838, 9.16428574159549, 16.8985729677404, 71.69784144716589, 62.44635461034976, 33.948161101199645, 98.7010723173668, 13.17110350823422, 10.122840798725294, 38.87293930316235, 18.70576722618014, 5.735473766740035, 33.520416435483874, 58.87944585490569, 7.154197684675201, 45.08928743939222, 10.099463439711116, 45.7452241110219, 7.756231165635341, 132.95410303879552, 87.32760850590923, 165.7635661649098, 20.299404292230793, 65.3718751551472, 26.860781998921123, 33.83078473692027, 37.37365034461412, 54.31030138122313, 76.31797528995399, 20.8996288499579, 69.8104492264462, 5.192438698584307, 15.579424884545155, 5.790465850209612, 51.12531018698602, 59.897631752085346, 36.42257803720115, 21.995155684224645, 5.577247357868122, 14.002766135982055, 49.01294653719133, 36.830332906584694, 19.52940051791346, 22.619907576982218, 58.05581502938702, 83.12550587959996, 78.45466646070274, 37.81769135702335, 35.84957055780689, 21.772684362519684, 7.406914174111279, 20.997124666265332, 5.255197460057131, 74.57172713732076, 15.723192247899052, 5.775643292532437, 15.484514490819814, 90.40833243311738, 7.301914033853814, 47.34385401396528, 14.188037529937542, 26.346474634794216, 23.484039566136193, 22.940413324416753, 118.50135184316264, 8.77065062159209, 48.623366402950396, 17.019475982381564, 17.61783887601779, 43.36074796563705, 19.245185190911357, 11.801986823610848, 31.93015360928701, 43.17763188463468, 59.40143377369542, 45.448677131882086, 85.73056272462634, 70.75780558140505, 15.099895392162573, 17.611816843742083, 89.36625458633355, 51.366816950553286, 9.15132275754342, 74.73640991864805, 16.22593748926286, 84.89139923249137, 28.067420611780527, 63.944297648735336, 39.243086951771495, 30.877895260744403, 66.02458389439377, 51.8474904935716, 20.032890556358844, 12.151249603910209, 17.81314527460985, 84.02189004641124, 19.87844728844953, 11.878480890784337, 85.24649701486992, 40.08522538470495, 15.624804470312228, 30.54514885675505, 28.743705973890616, 7.677015287472597, 6.62488760754137, 51.46832254455041, 28.35550394220516, 5.0756617262975325, 30.732532417456756, 30.6754678370328, 60.99120575194304, 5.281284517897819, 58.97026508070847, 92.51704011651458, 7.7468947535839785, 74.48876828909823, 5.038641909427718, 5.848056786724189, 22.93755166439044, 28.370908764745735, 30.67708381809715, 26.50384733717918, 43.068451604038934, 31.570114256862148, 171.0690794065594, 26.7811096621331, 72.78382659839421, 66.4683061567279, 45.93368930807834, 26.722150497599443, 13.170444469055921, 104.68818981227844, 47.46034038817872, 8.647839118822365, 5.783978072568941, 55.76812424270003, 55.68740698516861, 11.196682019139756, 8.646380924841077, 12.569592645029173, 29.5227081235526, 51.27363706407759, 66.55555848584342, 11.553158572773125, 24.35186961915136, 24.235173295955192, 111.82860306090329, 11.258678941039767, 20.215300211711988, 88.62090079126467, 6.986231849107441, 72.42632066978587, 45.51289017979784, 23.92487302380808, 65.94054145760641, 47.62599668872591, 29.099269468335436, 114.83689009411057, 9.885252630426299, 18.603156043357743, 17.984893268838114, 64.62971977756747, 68.22335358656322, 116.37673293427466, 58.27993440915243, 93.50618704439191, 16.59057650192063, 14.97873677795872, 125.54218346006864, 74.88637731824446, 77.30672426529816, 53.95038266032185, 33.598959328761474, 10.237692500573953, 40.25438744773493, 21.730456240074076, 20.90023358196153, 77.00602001434298, 160.7286744342917, 86.23976162848021, 44.9965751432957, 20.91926432202417, 18.885810869265207, 9.819911701687955, 18.999058865873828, 54.82468081935808, 30.526484550047122, 84.24455162194212, 92.93788407819629, 23.83750144496677, 17.774390105833763, 112.27914718816271, 33.41631664448482, 5.287882441320688, 28.544159571666963, 66.10448039871326, 47.618452345845654, 6.3285537445156335, 36.11881687058874, 58.20454972191478, 14.59397515452521, 71.62195995454763, 22.714545737779765, 99.45488591437496, 74.51847041948567, 47.532102840287074, 61.43773795855336, 9.6890128597157, 32.17358395060518, 44.01120094587658, 41.2621640179523, 51.9940952535257, 95.39661570465555, 43.240702472132085, 222.77541799591827, 12.051862319814719, 67.7894308464021, 12.407831013722177, 97.39777997402213, 25.6669841086427, 162.25958755095687, 21.65473395501001, 84.31343518547047, 64.04577330390298, 90.76632233515048, 129.08809855071692, 46.94884164888587, 17.024751201726964, 49.18880442289097, 33.97600963520477, 12.299031476824112, 30.76100752899825, 109.49970829792954, 41.36855020683186, 20.957083900044164, 16.098630751873955, 8.605300584605649, 116.89457725600434, 28.38112451422134, 8.289939450329273, 115.11428360374484, 6.229687474183354, 17.016178950456894, 9.173396881561498, 37.73555428752627, 13.569208262064961, 48.09144314963367, 23.89129722264531, 17.497862948415825, 75.74289479723198, 38.83997887195669, 43.99905396731819, 6.618545629808599, 17.540481319208762, 39.91080663870594, 40.854471033296875, 45.153843181761246, 17.524259414605787, 12.364158061362103, 28.401546566329433, 85.3342756942055, 89.88046753688747, 9.787623363327404, 25.549013218097294, 24.452328601420366, 6.2062915365920865, 8.866854571757669, 6.022976063555275, 377.7012864651075, 48.355323519296945, 17.180382204539455, 25.68428465682723, 16.13621188341517, 8.773156899762666, 89.75348940437209, 22.054072004941332, 34.757537923233, 26.433017571132364, 23.76459988294968, 59.134703455240995, 86.50449668792565, 11.990150934797622, 108.30287192376346, 19.59770592588421, 24.21735946698707, 123.45426112583317, 60.352914140662755, 59.29384703802252, 139.18093236180636, 13.662002184810433, 11.700942178199107, 15.81822973392997, 15.7829951766304, 14.289269049558175, 37.7927004642232, 58.50521578394368, 62.03899691657301, 24.427135023677035, 11.567541285948533, 78.42845231809437, 5.198537053899502, 29.756452360791137, 49.68892491578617, 51.839268693202065, 18.547939257566874, 12.175622403977695, 15.735546923847268, 14.010312198474626, 64.05238148201992, 7.259142640348828, 20.56908537776342, 13.23099176524976, 127.97591641737523, 28.58323042223722, 21.86475630243385, 9.738216318913574, 13.091603512831876, 38.22793081065805, 40.14960138391204, 6.824835458711822, 14.586855380709915, 53.441148311622015, 73.50442097101306, 5.716775965082871, 74.94753787613848, 40.472502651068865, 71.44145062887019, 7.821091116688564, 20.704984814855123, 8.213987124307522, 10.691117890155772, 132.51093082137697, 34.113602761020054, 59.69475497340804, 54.66580610454311, 27.442476466418075, 17.215742595163064, 34.73187113861469, 8.252088908520077, 340.10922016964497, 59.732731725380546, 23.386196602042453, 69.37911917518744, 21.630275561483934, 15.118165762362539, 15.358048598059616, 17.030028247560836, 5.824743157070449, 11.860694993629322, 97.77753337433643, 48.71776208808662, 67.40799416771435, 98.08749164389539, 358.9717815006106, 44.0064255174662, 8.441827453419483, 8.965376287244752, 39.04244667658165, 16.18659455255523, 11.873520787761665, 65.69312551470702, 5.8493483973674065, 139.31605889940124, 9.729260852403977, 70.58288853968718, 22.550945696389284, 5.646251644452058, 14.83476947487083, 21.103894174342592, 7.771842384744193, 42.03313229432979, 26.781800709927985, 26.855013509342534, 107.12208015839065, 69.58859185011632, 31.688541372051358, 21.751230552010206, 40.264698716663716, 110.31355033568171, 91.3304964493162, 35.43490805806609, 16.37616416806909, 66.11106502820302, 37.325095395506295, 150.37321343587539, 81.77808336198586, 221.93834283175877, 155.17195272297317, 75.67534984018874, 27.843707451619498, 22.16865700456239, 65.61451256600066, 11.710311629861499, 14.979570016559231, 22.29368778631171, 31.966299108733093, 72.87760856850605, 5.632612356602803, 24.544035568485814, 71.19090338324246, 26.460838655081687, 7.647740414183204, 12.268998004963459, 59.28563612797137, 14.92767718718979, 7.301721336350794, 16.012432953982646, 108.46702070018063, 22.49966526026125, 18.299263780697995, 133.5001434856497, 23.912516244051687, 72.95599295149292, 10.596794545640842, 14.92672047990056, 61.40495474528679, 37.94038976478359, 11.15194770730799, 44.8509121395017, 19.440427734443364, 25.640597309696656, 107.35349411988005, 65.78446267664941, 22.444414823082738, 24.32813627106041, 5.890960853923981, 14.66339149520905, 79.293192084005, 11.68506485369707, 15.037841671231481, 24.851309664063592, 33.726931892030855, 41.60404986349332, 29.091393646831182, 91.81711872084361, 19.16441412260567, 26.475483174299125, 24.7976443618888, 61.54956217726056, 50.30579645380996, 19.72330129490063, 24.900433899490846, 69.44310767844524, 42.48707397640275, 28.291064490470788, 130.15557015045457, 35.82683240842089, 55.414621297498286, 17.24769225070288, 21.63632492236758, 82.1507202107574, 91.48898747469909, 9.469615009063588, 17.4437926249785, 57.02617776098141, 21.97632409965354, 23.423055727599177, 161.34792887083594, 53.42670780516952, 13.241209286367637, 109.98572381330749, 180.43301140183385, 95.87076789460431, 22.9416752852305, 5.468859396138814, 17.140008221678528, 261.55590473017514, 21.613026509815697, 11.192580525723114, 18.86333245557962, 187.16484773180116, 61.808920039647745, 26.28621878951586, 42.95475115943963, 64.11558062196752, 16.409302092714682, 147.99194037102325, 15.629232930231753, 18.779169217700066, 51.543175376605106, 7.04661190544812, 57.73810985870158, 17.13965911794358, 23.303784364869312, 56.70669129119527, 11.69496836917849, 83.49255542211685, 35.40767403397986, 33.84776943391715, 5.500562435665232, 12.897843472990466, 90.22516395200213, 8.045971785386188, 11.075237870921253, 9.37808502841373, 8.616978597515859, 21.46370720348556, 7.200820379496506, 59.906162804580376, 53.562955568647354, 45.97078158630055, 21.986692489915992, 112.47475154604231, 11.416860169060945, 70.44434296179799, 56.35147219207057, 60.97113446734141, 36.872346925991216, 34.96068311416626, 8.860453346931774, 42.153722536508, 100.14908768974092, 60.43317674723707, 75.94321366057582, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([6916938.575410915, 7178082.8125, 7403207.822966427, 7623584.375, 7676961.476723666, 7953058.921085432, 8208173.4375, 8244296.134466852, 8245692.029359838, 8253935.46337845, 8270327.487422473, 8273438.473057494, 8273954.775540075, 8274946.524030359, 8275835.426652449, 8277657.55124388, 8278802.465881587, 8282879.128709109, 8329939.0625, 8390717.614900514, 8391241.221271094, 8399656.2694868, 8403767.40826348, 8406620.3125, 8406668.857459025, 8411755.008294027, 8414415.144073248, 8414417.1875, 8424671.448114857, 8502079.034091922, 8521154.717286319, 8522165.625, 8522782.75281597, 8537704.072748555, 8544884.375, 8548659.375, 8551091.203229794, 8552558.067609033, 8556758.843841504, 8569550.840260291, 8571326.055417737, 8571417.400260525, 8572200.77920677, 8572821.360183014, 8576237.322489278, 8595686.782811813, 8596395.163302643, 8598625.0, 8599615.024627697, 8599977.164859558, 8608469.365581231, 8611598.4375, 8613834.273816427, 8616297.558778806, 8617286.939829865, 8618068.75, 8619583.498458445, 8638595.77606346, 8649512.62580354, 8649592.457904922, 8650856.312929409, 8651695.281879507, 8651869.66308671, 8653259.56333146, 8653409.888594797, 8656524.802223386, 8659208.475258542, 8676414.36350279, 8689899.859284285, 8690333.79913447, 8691173.4375, 8691410.147661554, 8691743.75, 8694651.76229762, 8695641.646877076, 8696335.9375, 8696467.85637492, 8696590.782822143, 8697563.493188389, 8697772.262669683, 8697835.423001593, 8698618.679944627, 8699578.125, 8700267.265633512, 8700370.79975687, 8700506.304060603, 8704812.5, 8706619.579276735, 8710417.1875, 8711881.388426932, 8713193.008797154, 8713932.8125, 8713977.325833414, 8715224.213310258, 8715484.877779623, 8715507.061291356, 8716131.630992526, 8716213.046400767, 8716460.044757977, 8716547.969074206, 8717512.259350475, 8717529.6875, 8717825.19330322, 8718138.659044316, 8718240.274720265, 8718264.670849582, 8718844.283784263, 8718970.182484148, 8718971.875, 8719035.804489067, 8719483.013213111, 8719653.125, 8719676.414374799, 8719750.422736626, 8720026.5625, 8720324.54769169, 8720328.125, 8720517.1875, 8720835.433846021, 8721309.260532271, 8721391.448324133, 8721661.094091982, 8721715.654644962, 8722259.41050893, 8722388.51624484, 8723242.1875, 8723987.430854615, 8725424.923861522, 8725951.558410125, 8728900.862785636, 8734731.25, 8736617.040798213, 8739739.0625, 8741491.596356103, 8744075.0, 8744458.28298815, 8744462.278793423, 8744829.071247771, 8752828.848032814, 8753153.321547177, 8753409.0200678, 8755776.5625, 8755778.552848408, 8756339.0625, 8757726.5625, 8757833.244026924, 8758568.75, 8758646.875, 8758729.982131522, 8758826.104222415, 8758853.237053795, 8758915.162714196, 8759095.3125, 8759446.89744289, 8759552.01039456, 8759590.051842058, 8759812.076356629, 8759856.25, 8760697.939309366, 8761353.24433409, 8761600.0, 8761734.037183583, 8762104.6875, 8762326.460326668, 8762518.75, 8762892.615109628, 8763771.7341051, 8763773.77277986, 8763775.41993531, 8763780.190702055, 8764517.923724748, 8764765.874153389, 8765420.3125, 8766108.815929545, 8766252.092973836, 8766314.464817476, 8767001.13097085, 8767042.1875, 8767280.206921445, 8767712.030747432, 8767744.55666679, 8768348.718161322, 8771457.11418408, 8771751.440180287, 8774096.350890068, 8774316.361645319, 8774318.309120802, 8774843.911273299, 8776053.254744025, 8780565.625, 8782132.8125, 8787348.793485565, 8788892.079121994, 8795093.349380216, 8815134.616716726, 8818853.80177923, 8822578.44276889, 8823038.82996684, 8823784.193485485, 8824065.98054499, 8831001.548568198, 8831531.041157784, 8831759.679033613, 8832460.9375, 8833438.801712627, 8834017.1875, 8834738.221192218, 8834751.821613714, 8836853.489831632, 8837599.578014674, 8839374.273694973, 8844663.330645155, 8846087.443193465, 8847657.8125, 8848328.371082164, 8853832.560487825, 8854289.002337981, 8858835.9375, 8859897.969159605, 8863494.578119934, 8863809.49725202, 8863925.846581444, 8864294.009960592, 8864830.269786678, 8866303.503174715, 8869470.378392374, 8870465.997616444, 8870504.565233983, 8872542.530356808, 8873032.8125, 8873092.036472425, 8873303.13968265, 8873337.082287854, 8874927.43892727, 8876428.084631752, 8876798.07186968, 8877305.142434208, 8877584.375, 8877749.934774136, 8877812.806304837, 8878053.125, 8883859.030545318, 8914443.35836859, 8914454.6875, 8921179.018238205, 8921314.225210892, 8921548.642946705, 8922773.60098223, 8924723.127217874, 8925431.021221945, 8927546.0264498, 8930254.6875, 8932418.75, 8934008.148670208, 8937753.521610219, 8937767.180957388, 8946015.13459207, 8958352.277077159, 8964698.355954867, 8967070.135240551, 8967804.6875, 8968592.35786471, 8968791.968822742, 8968979.6875, 8969511.398613561, 8969516.327283464, 8970633.801856276, 8971699.382842412, 8979624.619141672, 8986031.184464728, 8995521.875, 8998546.720696142, 9001812.046893975, 9007972.04466321, 9009897.11889311, 9016336.980824713, 9046221.875, 9046435.751442745, 9046471.432974385, 9052482.360414773, 9055203.125, 9055325.645610133, 9055405.98635447, 9056087.5, 9058492.1875, 9058716.043571701, 9059345.17027989, 9061103.505798679, 9061396.4223237, 9063145.29808267, 9063241.722253744, 9063847.276100958, 9083885.205118118, 9085173.4375, 9086832.8125, 9087845.3125, 9089887.86921696, 9090195.62412318, 9092700.0, 9092980.111471675, 9100126.5625, 9101927.648339413, 9108981.25, 9109977.985357335, 9110257.493215878, 9112248.52343232, 9121585.9375, 9122685.993435124, 9123625.95943682, 9124095.3125, 9131881.242159512, 9132470.450996982, 9134509.375, 9134876.943699535, 9145178.125, 9145837.5, 9150590.625, 9151472.808983132, 9151532.063757448, 9152574.02823397, 9154033.27612631, 9156550.605960712, 9156727.791415263, 9160498.4375, 9160508.013788728, 9160541.007053085, 9161281.25, 9161489.393922977, 9161593.543987254, 9162348.4375, 9165868.350402994, 9167471.948413882, 9171257.8125, 9172799.711574731, 9174501.5625, 9174917.342642933, 9175518.523344135, 9175630.457112908, 9176381.25, 9176966.877752254, 9176982.610237163, 9177955.22583255, 9182623.956504608, 9182635.9375, 9182703.125, 9194768.573732274, 9212982.8125, 9214537.5, 9216654.653083326, 9216914.860573916, 9218798.4375, 9218937.5, 9219426.5625, 9224099.648060769, 9224217.457330825, 9224517.1875, 9224577.283423837, 9224737.5, 9224743.343416851, 9225720.3125, 9225903.125, 9227162.5, 9227180.611400114, 9227689.180171464, 9228264.879034005, 9228295.3125, 9228298.763969293, 9228702.937755981, 9228777.713910554, 9230225.0, 9230232.121470166, 9231007.437144525, 9231148.182841696, 9232773.166457802, 9233059.8610041, 9234650.859727608, 9235208.61157206, 9235595.102218984, 9236485.219387196, 9237261.94825128, 9237285.863788849, 9237363.719884252, 9240763.329914862, 9249528.219045175, 9249894.326732956, 9252638.602899356, 9263341.615400627, 9265889.0625, 9267000.0, 9269310.808822095, 9269573.648636296, 9270719.932755083, 9272396.755777184, 9275378.754306072, 9276224.000808142, 9276498.339858843, 9276614.412901515, 9276617.83183045, 9277043.319570584, 9277193.75, 9278134.316741988, 9278804.6875, 9278969.93359643, 9279000.88239446, 9279225.323399767, 9281810.965222025, 9282400.0, 9283689.930913381, 9283815.625, 9284148.514165737, 9285484.7772502, 9286660.98607022, 9286674.378189309, 9288913.192554465, 9294962.27282101, 9295747.605083086, 9299462.290406888, 9312171.875, 9312289.0625, 9314304.750781063, 9329789.0625, 9329861.265932886, 9331924.439325523, 9333028.706738217, 9350096.27652209, 9352179.6875, 9353901.667579226, 9354488.808899662, 9355848.769617086, 9361110.954425354, 9364971.875, 9367365.625, 9368902.56133805, 9373287.631707072, 9376618.384262001, 9377080.501579678, 9378520.516867764, 9381505.947984463, 9382159.375, 9383079.6875, 9384158.039949693, 9384265.855985558, 9384472.907206604, 9385068.307597322, 9387198.224539058, 9387433.535394125, 9387456.857441777, 9388048.413843932, 9388696.825012274, 9389526.500569355, 9389561.647574306, 9391639.385405786, 9396223.491775436, 9396647.33372251, 9397301.5625, 9397960.252589125, 9397987.11609069, 9398029.683585152, 9398059.375, 9398831.648748936, 9399872.583748115, 9400075.928035954, 9400645.116762757, 9401079.6875, 9407039.330962053, 9407448.420449957, 9409508.051974704, 9409556.159161841, 9409688.51531065, 9410018.056373674, 9410423.4375, 9410584.001465693, 9410743.285175249, 9410894.285978056, 9411149.058290727, 9411328.50101995, 9411336.146283511, 9411896.78275333, 9412111.71446507, 9412853.125, 9413323.69904719, 9413579.6875, 9413606.799293337, 9413754.859835936, 9413885.806086442, 9413922.040796213, 9413922.824231377, 9413973.233016683, 9414266.958566306, 9414316.991674993, 9414459.375, 9414528.602081966, 9414642.09696285, 9414760.379933937, 9414769.557976233, 9414778.125, 9414971.073966132, 9415011.379442245, 9415035.9375, 9415137.5, 9415137.623123733, 9415725.0, 9415727.349791022, 9416097.33552758, 9416184.77908053, 9416187.5, 9416783.450250356, 9417012.98325071, 9417843.897095155, 9417968.75, 9417976.47235632, 9418906.585265372, 9426973.4375, 9439335.493404012, 9455768.470731273, 9457363.873418583, 9462157.8125, 9462237.063365143, 9465101.720368553, 9465124.677061666, 9465612.5, 9466209.23447672, 9466236.39416829, 9466571.228154937, 9466627.440142535, 9467129.417291412, 9467459.32303925, 9467767.1875, 9467975.514692804, 9468332.942700496, 9468493.831213057, 9468776.5625, 9469650.408661015, 9469939.859254867, 9470223.225228002, 9470234.402132459, 9471196.297488585, 9471830.85252222, 9472623.792731244, 9472639.00153272, 9473378.316005051, 9473521.343071781, 9474070.711523073, 9474156.335307617, 9474238.144732855, 9474619.7168031, 9474702.545203045, 9474850.97417285, 9475307.603517065, 9475399.633799203, 9475401.5625, 9476002.377959799, 9476332.028486416, 9477366.080858145, 9477845.873173764, 9478093.75, 9484642.990680486, 9489567.579921653, 9491603.125, 9491614.0625, 9493378.573171893, 9493853.125, 9493863.06707105, 9494413.837928062, 9494835.843667878, 9494955.24716595, 9495351.350737555, 9495460.379390335, 9496487.279062077, 9496924.847872676, 9498279.63314451, 9504235.743597336, 9505292.163966343, 9507377.99735827, 9508726.5625, 9510253.986910813, 9510826.5625, 9511108.785794975, 9518024.104076382, 9518139.63156524, 9522319.342870915, 9530141.27317293, 9534982.13382304, 9542369.182508577, 9542753.788630025, 9543243.75, 9543245.426735247, 9543626.5625, 9543934.375, 9544615.824479232, 9545336.763605952, 9545593.75, 9545701.55387974, 9545730.05613812, 9545782.159266353, 9545962.5, 9545976.57140223, 9546037.179357018, 9546828.125, 9547089.28270512, 9547092.567960236, 9547654.6875, 9547699.827080652, 9547734.825165031, 9547994.946055196, 9548328.558016375, 9548333.598430837, 9548710.698656956, 9549164.0625, 9549216.290042793, 9549347.80368803, 9549603.204923362, 9549618.75, 9549667.1875, 9549671.204293216, 9549681.873200957, 9549766.049281126, 9549767.1875, 9549933.66658022, 9549970.938409273, 9550144.898614258, 9550164.791470177, 9550265.625, 9550387.543684525, 9550449.061093766, 9550455.448420582, 9550464.0625, 9550525.0, 9550569.125293553, 9550644.006144326, 9550696.424700199, 9550750.7486498, 9550777.655170335, 9550925.082206536, 9550990.062048515, 9551019.871465223, 9551174.459351797, 9551185.850715868, 9551607.8125, 9551613.77601093, 9551648.4375, 9551660.9375, 9551751.5625, 9551835.9375, 9551917.77713314, 9551924.151613146, 9552118.807230428, 9552160.66507679, 9552379.6875, 9552610.515625978, 9553169.033841329, 9553273.4375, 9553822.249429386, 9554031.259732869, 9554114.0625, 9554301.167921538, 9554879.6875, 9555237.382400403, 9556593.75, 9564946.219721137, 9570371.805083774, 9571437.02346913, 9572461.938440684, 9573387.5, 9573734.375, 9574953.125, 9575296.761089314, 9575344.752985088, 9576098.952851525, 9576575.52626768, 9577272.644957831, 9577366.414159453, 9578017.1875, 9578116.066781662, 9578445.300506562, 9579555.956761891, 9579564.64905638, 9579634.375, 9579962.047102503, 9580028.020898875, 9580115.625, 9580237.5, 9580317.730161875, 9580391.095669886, 9580474.00904929, 9580522.40418681, 9580523.343231082, 9580524.624971874, 9580612.114306277, 9580625.0, 9581123.13970126, 9581124.605915952, 9581292.1875, 9581294.144672371, 9581540.192183623, 9581581.25, 9581807.8125, 9582146.875, 9582168.453507198, 9582168.651462458, 9582224.551620556, 9582491.145426936, 9582655.617003638, 9582703.656384712, 9583163.039440243, 9583215.461538963, 9589553.022532996, 9589838.363860028, 9591938.657342201, 9595295.163758595, 9597998.4375, 9598022.555942578, 9598606.25, 9599034.81387738, 9601317.138640964, 9601704.6875, 9601863.13914202, 9602268.091932924, 9602459.375, 9602467.1875, 9603847.945145417, 9605053.398718977, 9606950.557711124, 9607409.012784733, 9609054.680188753, 9618265.631352419, 9621096.925017085, 9621552.822219955, 9622662.955253197, 9622748.24452916, 9624261.878746198, 9625715.211447056, 9627501.5625, 9628273.148424495, 9628623.97792139, 9628829.6875, 9628843.75, 9628870.3125, 9629572.66527506, 9629650.547657674, 9634143.75, 9647501.5625, 9670520.05630554, 9670803.669908829, 9671574.10670539, 9673772.68852292, 9674377.542217398, 9675167.1875, 9675986.431894735, 9678156.078845719, 9679861.406318175, 9679891.68972173, 9680068.144265417, 9681179.037082437, 9681565.481712798, 9681753.603562279, 9683483.297504187, 9683565.462660037, 9692253.406708779, 9705333.631718796, 9726162.70830659, 9729018.570585415, 9741452.04701612, 9742843.131872306, 9790250.565375231, 9792735.9375, 9800040.309533406, 9804698.927090855, 9809567.010522442, 9809875.848897932, 9818877.86067244, 9823697.286696073, 9824640.625, 9824849.507847242, 9825029.096986547, 9825301.180747954, 9825464.400692394, 9825629.899954362, 9826187.552650902, 9826346.692662936, 9837843.75, 9838610.9375, 9845802.935599355, 9845832.926126039, 9848061.201776784, 9848134.910163749, 9848441.994677218, 9848693.53375431, 9853909.375, 9854235.9375, 9854292.027518662, 9855741.205804534, 9856387.693813642, 9856712.093898188, 9859382.8125, 9863973.936623475, 9874874.465771781, 9881282.277422108, 9888838.626363246, 9889056.25, 9889503.127893532, 9889637.94488572, 9889668.162106248, 9890076.5625, 9890087.5, 9890195.612123054, 9890239.486440457, 9890250.50888652, 9890609.092623845, 9891353.281267097, 9891654.6875, 9892162.838149656, 9892443.75, 9892599.00217665, 9892827.542191235, 9893301.422661157, 9894096.57649415, 9897717.008508418, 9920543.603360208, 9925342.19460612, 9925612.5, 9926067.13033608, 9949873.093996262, 9952230.433245156, 9952242.121707484, 9955133.909630707, 9955441.475859784, 9958084.138267772, 9972351.5625, 9973805.515273783, 9977173.483088465, 9978882.837359283, 9979087.957792189, 9979839.206909409, 9979911.360760553, 9980570.727975758, 9981026.5625, 9981154.6875, 9981458.356296403, 9981468.037965728, 9981776.5625, 9981789.3449783, 9981794.845387956, 9981939.70130824, 9982040.917340696, 9982091.651208531, 9982114.0625, 9982114.529328877, 9982635.170203205, 9982916.06081465, 9983131.378894726, 9983717.711145405, 9984939.630363613, 9987489.034210796, 9987682.533393688, 9988389.505788723, 9991381.555006012, 9993506.626216684, 9999651.091419699, 9999850.63848455, 10000003.125, 10000943.75, 10008569.837992793, 10010931.25, 10011465.625, 10011476.5625, 10012509.995011006, 10015784.70654703, 10017607.8125, 10018756.25, 10019682.96423636, 10020543.019264603, 10020724.49300419, 10020731.230611458, 10020851.5625, 10021026.527133096, 10021052.690155817, 10021187.5, 10021376.905783365, 10021514.072449934, 10021848.014177114, 10022117.975348175, 10022407.8125, 10022708.143328594, 10022743.509666078, 10022881.00769803, 10023273.494796725, 10024318.87138986, 10024397.500111826, 10024439.0625, 10026535.933866212, 10049066.269086262, 10052386.19269893, 10053659.375, 10055265.22031156, 10056016.294098785, 10069726.474351946, 10069861.898261355, 10070664.0625, 10073748.069033977, 10074206.24611453, 10076481.170744415, 10079043.41830733, 10082746.890453419, 10092334.968562547, 10094680.516264617, 10095002.250348918, 10096974.870332861, 10097140.61339333, 10098173.237876, 10098305.99389662, 10098315.051379478, 10098326.487567406, 10098331.25, 10098855.017035678, 10098856.275046384, 10098921.656537266, 10099100.0, 10099151.5625, 10099191.606816046, 10099257.8125, 10099277.354899416, 10099415.512057267, 10099600.508434787, 10099620.3125, 10099735.464126665, 10099735.87735283, 10099761.588739863, 10099802.018710982, 10099825.0, 10100019.65109423, 10100055.129405666, 10100150.0, 10100206.916472351, 10100231.502009045, 10100252.639238732, 10100419.284809045, 10100421.597948477, 10100564.221555611, 10100640.888576524, 10100687.05787846, 10100755.797113929, 10100872.632632345, 10100882.651470292, 10100885.9375, 10100925.525186043, 10101093.887332285, 10101288.976112396, 10101404.6875, 10101449.633906784, 10101490.789218325, 10101587.977759818, 10101597.928872423, 10101715.13693859, 10101725.041111479, 10101741.37615562, 10101748.635381589, 10101923.90887435, 10102083.354308628, 10102189.242154283, 10102935.9375, 10102964.741863232, 10103443.542507175, 10103751.731944174, 10104159.20981756, 10104567.1875, 10105462.207435299, 10106085.9375, 10106328.894701386, 10106953.265055442, 10107657.692480814, 10108031.584939707, 10108237.5, 10108673.4375, 10111145.282777166, 10114483.686266627, 10116110.639633203, 10116317.499093506, 10116922.95300073, 10119857.778670644, 10120392.24219726, 10122841.201568393, 10122926.05954843, 10123403.418565925, 10128004.62305461, 10128294.618920917, 10134081.25, 10134754.235596567, 10135445.3125, 10139422.05243665, 10140484.320700923, 10145106.25, 10145383.645601882, 10145972.164000878, 10148569.306938913, 10148588.447549848, 10149145.987977028, 10151723.4375, 10155290.625, 10177854.235109312, ...], [29.84544405728696, 61.56484707748509, 7.607027602722447, 61.65571402063401, 17.490835422701522, 59.68600815778538, 39.393197187713916, 33.49176764588783, 22.63939002388892, 125.68187495149036, 12.964411127659154, 8.878215638953685, 26.57309232824794, 47.71173991517626, 42.614795287239346, 24.258586738097925, 91.50275512913753, 20.92601451208553, 82.6164107430944, 16.86621313486863, 17.83410644726678, 35.377473517717085, 100.59477170227876, 92.15131786581716, 23.860581986451905, 16.323570502651112, 31.257411695372824, 79.41571091575014, 22.25484282485743, 20.088095036915362, 11.174586114693525, 67.87468084328852, 11.03568095057272, 6.646683501612558, 55.9159441472483, 35.94903841566611, 42.683846375017325, 57.35080585442848, 17.19199744809707, 6.943713028214674, 8.936531780530395, 5.102666868544338, 8.746623780747765, 8.930991479259694, 26.429110904370518, 10.16551917962253, 25.88921617754208, 61.50768489145287, 64.36990085094965, 17.871803534966315, 17.954395863046766, 68.9724061014681, 9.247287513726825, 6.001250455877852, 51.09903181832632, 108.36485030612164, 65.61965664174953, 17.0616213024908, 27.99106189034717, 16.083112782136528, 15.148132881945148, 67.65473195344225, 51.03746564561818, 5.542291212784934, 7.800195473362223, 25.150658787025964, 34.58419672332586, 16.227961768666926, 14.43098615958619, 20.768273893777177, 45.74496659993106, 24.940706218299184, 86.57569255690134, 91.87044145886682, 13.216149499279286, 43.55758250858193, 12.363436371260727, 18.60318009755358, 13.140143417934768, 76.55035335407645, 13.286512929096869, 14.681049076089725, 63.91512434487414, 6.096262277803922, 5.48307615490072, 25.10486405820752, 53.771279167374985, 19.444388126539632, 37.023096291868605, 8.361161953341027, 12.710668696282474, 34.1260559913589, 12.575139233461988, 8.744386061678314, 85.32343634401171, 19.30653371452479, 53.747069666313884, 15.279241100052591, 87.89055530697325, 68.15910814343883, 10.771296585917336, 36.5276028151562, 15.733299637747399, 6.6855469458788015, 23.12905396888262, 17.909097174343696, 5.741593013728209, 23.77486821217204, 33.854237147487304, 26.147081268686158, 15.766011034165418, 62.20087111740986, 7.5505277349598225, 16.841447643101564, 29.59354945944347, 63.138930232986084, 57.33042578482871, 45.12120419558579, 21.456727119661934, 143.7356044806725, 19.398482362893777, 11.381621365653853, 107.1322257133355, 173.39829324810447, 87.23535793455338, 34.68583079674579, 64.58173146077516, 27.104188101219865, 11.513060809110353, 130.78914030864888, 40.39780922565901, 17.071955836552775, 41.706405885140924, 21.136379862035657, 94.67913448056626, 17.099736557771102, 10.79869723712398, 6.968362158481196, 7.325435588101043, 11.449478504569042, 52.40940994440706, 60.415345399319804, 16.868596637365236, 54.58153819766146, 34.75497933148271, 29.02522743543154, 78.52564686607559, 41.76901998942708, 16.19750674529702, 21.919651236611667, 11.307490687263739, 29.422402221024385, 73.42033654035048, 25.129677411146073, 13.647456971276437, 13.130051988896719, 10.524354285283612, 78.25099016182384, 83.54201309131365, 9.434387248794822, 47.29588280366374, 83.6320591188276, 100.8487007846722, 37.87987076180462, 41.730704206741194, 109.85138119244684, 10.914396209556033, 29.855368048673675, 118.05293373974644, 27.02280381734575, 68.82988288303149, 92.23963118815476, 45.84025001568871, 51.50375722766795, 9.824201267857223, 39.455001117795454, 41.34112088423598, 86.61268181865981, 200.15152342707052, 49.088463642161486, 7.350975142570567, 11.59669307388167, 35.27065034424018, 51.03169202208623, 133.73585750131232, 7.893328375879586, 13.4909338835552, 9.471596161976752, 11.336747288636005, 43.673027252707364, 104.41714694561423, 16.497428337633398, 24.0434324374788, 7.019977888209978, 11.527782835258408, 13.304167656745225, 21.807175556773963, 16.647198071276947, 43.245312652131844, 5.840764420094639, 75.39976348147063, 6.7225169691613145, 71.14815105584569, 77.73664884890763, 40.08658516906142, 30.45176129167581, 12.479327676268456, 16.030548056509105, 11.75023462582164, 33.815647311407815, 8.78451099818881, 5.225113680282208, 8.256763805343475, 54.811923926198666, 15.97046318047533, 24.383704463477105, 43.06741328767082, 33.3395772340185, 10.46689087946135, 19.4354451211209, 9.436958603370027, 19.57944333952262, 83.13200707552758, 12.1787104013055, 9.67304204736455, 16.924341048710797, 5.730889911262943, 62.09220227212911, 5.72893139117371, 52.80897799919174, 14.395500409491246, 5.399035632851311, 5.327809101811009, 5.030168831578881, 40.58820118403301, 128.4317786509891, 133.03178804053073, 124.93027965769242, 81.03507147772464, 26.00038866858249, 74.5446874035946, 29.534786264872196, 22.646830575119733, 58.24138187913586, 69.69796916305741, 15.60020713935223, 9.511379158905202, 15.603524650297734, 10.675042156818357, 14.135765972643737, 29.765044836969473, 82.67592341138713, 157.01202845064245, 11.697227139245486, 11.809906794518673, 22.734851557947923, 25.298545855135597, 14.858375859839306, 25.28944569272288, 25.456319050476, 43.89553454360242, 7.6660402446328355, 41.08432088477173, 110.18068166926699, 11.934030492219774, 8.696495123385697, 69.52767796359993, 62.02115862079842, 10.580377859034128, 27.291996498151217, 39.76815918587735, 79.80535181626138, 21.974004906441692, 11.403677693597718, 11.531599295013937, 5.6744942334994315, 117.61808657037187, 25.324158709575613, 22.091600118972224, 21.98477336151364, 84.3746077793579, 28.766976324467528, 5.388489860220278, 74.58711470032036, 175.78639639260942, 7.761984445639958, 67.97138805203193, 5.174326040127252, 13.457550470325991, 37.137234169490576, 36.636913191254166, 11.818416818923327, 10.14807549449649, 92.42557713055642, 92.6529216627874, 35.678838654603936, 25.827541298260652, 5.475302630147629, 59.19251079071394, 16.84799627971881, 50.9554219078869, 13.390424958620155, 37.54242712484577, 29.881552294963583, 23.507499939365573, 8.332548618337492, 78.17249262822384, 8.316379918461916, 27.582262961501208, 37.248000938457544, 14.911709128973703, 20.90116198551331, 86.73728939190808, 6.5485553405300845, 61.86161578485151, 70.22330705057644, 44.76372570616971, 12.98733051122354, 19.3252868211715, 12.19635661190932, 17.06196621976197, 90.92521778122688, 23.33101780001302, 71.57498285197816, 9.507608183346953, 18.16413927718003, 53.999139015259125, 16.37555479305596, 10.820272643805122, 30.114550655048387, 22.556768363035598, 15.22891195702686, 59.89957879439903, 23.899727420334898, 30.69747084975719, 14.855274419079507, 24.735113766950477, 5.267208119334063, 57.44136030340731, 36.20648558053876, 25.084999069215954, 25.028423745292304, 7.802396549440639, 32.2688236083074, 41.45306310923989, 6.245182148941715, 114.74437792639132, 33.89355551377876, 39.19898004970379, 45.67731261660027, 50.97939730073497, 34.56148211411695, 44.25887137053765, 60.136888279157084, 16.080428751897305, 41.16558508877877, 7.324797156539865, 72.65087780942294, 8.082668078662103, 85.28423301034094, 30.76229109390391, 96.41040011839422, 7.975471471773629, 22.492673469778325, 17.713122153513435, 48.63453908249967, 11.679457189502303, 25.30645770876297, 13.576330622304322, 53.26355540730721, 19.77797723012061, 110.10979900019342, 14.052260094979223, 7.50806235241467, 106.6350532182081, 66.30475100500647, 7.348637915364231, 33.353305520262225, 88.91522719085107, 38.409004828327284, 27.146910169963814, 22.46975295067967, 14.083398644326245, 6.501935386332723, 100.77351354998112, 21.905799517953604, 6.030560108223266, 87.04821158246183, 216.30796204575086, 11.378704545208452, 25.416988128794216, 16.141548760808806, 33.478416241860295, 89.32007119722735, 12.139352177887147, 77.25073894194986, 16.46950542766077, 8.659475127070692, 5.090077746978644, 51.03939676711794, 27.42269752421624, 41.775638897785456, 10.58296170093725, 37.830151469389975, 39.98750151594237, 20.279959006184168, 54.41288397219536, 19.753315549600497, 29.169732679552585, 7.141751640164223, 35.078343723056946, 8.312430167538711, 7.9830221082378605, 15.446427639698872, 9.146424217789782, 10.035782697845356, 104.18377923871367, 40.545405438821376, 83.33407067368991, 48.553534960477826, 99.45798378026049, 5.476042061735853, 13.162888870039088, 9.877026780833745, 20.563933366172794, 64.20008888163026, 15.357741623245358, 14.055645842472698, 15.44422513772744, 119.72131789675501, 66.95224678098738, 37.96453631576948, 7.411345715767946, 15.46845883654178, 10.60042009256115, 8.769731148608457, 5.625451196718786, 99.87329897651671, 42.01109996008991, 84.50950497685722, 15.885618712012922, 21.262541572217124, 21.196138058351288, 31.180528386385426, 14.187512334056697, 18.663984942431576, 9.903897726578016, 111.22907188503336, 112.11499834281778, 6.259405457591729, 6.165190371811329, 24.207704022672537, 140.86915614796783, 60.73169515909231, 52.10118256402414, 19.827581891967014, 13.655648431735122, 28.447855900328683, 30.250091786562542, 11.81395728418975, 107.81754309650512, 51.56926290178464, 24.22584399477178, 45.72904807481122, 16.074034378639894, 8.2775815115738, 7.692210525513179, 32.25387493748293, 16.930591706704348, 21.588140822099447, 98.08874001146609, 5.515222276301112, 56.53316172380476, 12.083363366643173, 5.422748684254929, 9.670963127817558, 6.293942020479086, 26.824681364475524, 60.045786141895185, 48.52306666209257, 70.94524635278736, 36.42157723638779, 48.45944234496177, 7.16750259544767, 121.20843874461542, 7.664324641311415, 207.75143139045838, 9.16428574159549, 16.8985729677404, 71.69784144716589, 62.44635461034976, 33.948161101199645, 98.7010723173668, 13.17110350823422, 10.122840798725294, 38.87293930316235, 18.70576722618014, 5.735473766740035, 33.520416435483874, 58.87944585490569, 7.154197684675201, 45.08928743939222, 10.099463439711116, 45.7452241110219, 7.756231165635341, 132.95410303879552, 87.32760850590923, 165.7635661649098, 20.299404292230793, 65.3718751551472, 26.860781998921123, 33.83078473692027, 37.37365034461412, 54.31030138122313, 76.31797528995399, 20.8996288499579, 69.8104492264462, 5.192438698584307, 15.579424884545155, 5.790465850209612, 51.12531018698602, 59.897631752085346, 36.42257803720115, 21.995155684224645, 5.577247357868122, 14.002766135982055, 49.01294653719133, 36.830332906584694, 19.52940051791346, 22.619907576982218, 58.05581502938702, 83.12550587959996, 78.45466646070274, 37.81769135702335, 35.84957055780689, 21.772684362519684, 7.406914174111279, 20.997124666265332, 5.255197460057131, 74.57172713732076, 15.723192247899052, 5.775643292532437, 15.484514490819814, 90.40833243311738, 7.301914033853814, 47.34385401396528, 14.188037529937542, 26.346474634794216, 23.484039566136193, 22.940413324416753, 118.50135184316264, 8.77065062159209, 48.623366402950396, 17.019475982381564, 17.61783887601779, 43.36074796563705, 19.245185190911357, 11.801986823610848, 31.93015360928701, 43.17763188463468, 59.40143377369542, 45.448677131882086, 85.73056272462634, 70.75780558140505, 15.099895392162573, 17.611816843742083, 89.36625458633355, 51.366816950553286, 9.15132275754342, 74.73640991864805, 16.22593748926286, 84.89139923249137, 28.067420611780527, 63.944297648735336, 39.243086951771495, 30.877895260744403, 66.02458389439377, 51.8474904935716, 20.032890556358844, 12.151249603910209, 17.81314527460985, 84.02189004641124, 19.87844728844953, 11.878480890784337, 85.24649701486992, 40.08522538470495, 15.624804470312228, 30.54514885675505, 28.743705973890616, 7.677015287472597, 6.62488760754137, 51.46832254455041, 28.35550394220516, 5.0756617262975325, 30.732532417456756, 30.6754678370328, 60.99120575194304, 5.281284517897819, 58.97026508070847, 92.51704011651458, 7.7468947535839785, 74.48876828909823, 5.038641909427718, 5.848056786724189, 22.93755166439044, 28.370908764745735, 30.67708381809715, 26.50384733717918, 43.068451604038934, 31.570114256862148, 171.0690794065594, 26.7811096621331, 72.78382659839421, 66.4683061567279, 45.93368930807834, 26.722150497599443, 13.170444469055921, 104.68818981227844, 47.46034038817872, 8.647839118822365, 5.783978072568941, 55.76812424270003, 55.68740698516861, 11.196682019139756, 8.646380924841077, 12.569592645029173, 29.5227081235526, 51.27363706407759, 66.55555848584342, 11.553158572773125, 24.35186961915136, 24.235173295955192, 111.82860306090329, 11.258678941039767, 20.215300211711988, 88.62090079126467, 6.986231849107441, 72.42632066978587, 45.51289017979784, 23.92487302380808, 65.94054145760641, 47.62599668872591, 29.099269468335436, 114.83689009411057, 9.885252630426299, 18.603156043357743, 17.984893268838114, 64.62971977756747, 68.22335358656322, 116.37673293427466, 58.27993440915243, 93.50618704439191, 16.59057650192063, 14.97873677795872, 125.54218346006864, 74.88637731824446, 77.30672426529816, 53.95038266032185, 33.598959328761474, 10.237692500573953, 40.25438744773493, 21.730456240074076, 20.90023358196153, 77.00602001434298, 160.7286744342917, 86.23976162848021, 44.9965751432957, 20.91926432202417, 18.885810869265207, 9.819911701687955, 18.999058865873828, 54.82468081935808, 30.526484550047122, 84.24455162194212, 92.93788407819629, 23.83750144496677, 17.774390105833763, 112.27914718816271, 33.41631664448482, 5.287882441320688, 28.544159571666963, 66.10448039871326, 47.618452345845654, 6.3285537445156335, 36.11881687058874, 58.20454972191478, 14.59397515452521, 71.62195995454763, 22.714545737779765, 99.45488591437496, 74.51847041948567, 47.532102840287074, 61.43773795855336, 9.6890128597157, 32.17358395060518, 44.01120094587658, 41.2621640179523, 51.9940952535257, 95.39661570465555, 43.240702472132085, 222.77541799591827, 12.051862319814719, 67.7894308464021, 12.407831013722177, 97.39777997402213, 25.6669841086427, 162.25958755095687, 21.65473395501001, 84.31343518547047, 64.04577330390298, 90.76632233515048, 129.08809855071692, 46.94884164888587, 17.024751201726964, 49.18880442289097, 33.97600963520477, 12.299031476824112, 30.76100752899825, 109.49970829792954, 41.36855020683186, 20.957083900044164, 16.098630751873955, 8.605300584605649, 116.89457725600434, 28.38112451422134, 8.289939450329273, 115.11428360374484, 6.229687474183354, 17.016178950456894, 9.173396881561498, 37.73555428752627, 13.569208262064961, 48.09144314963367, 23.89129722264531, 17.497862948415825, 75.74289479723198, 38.83997887195669, 43.99905396731819, 6.618545629808599, 17.540481319208762, 39.91080663870594, 40.854471033296875, 45.153843181761246, 17.524259414605787, 12.364158061362103, 28.401546566329433, 85.3342756942055, 89.88046753688747, 9.787623363327404, 25.549013218097294, 24.452328601420366, 6.2062915365920865, 8.866854571757669, 6.022976063555275, 377.7012864651075, 48.355323519296945, 17.180382204539455, 25.68428465682723, 16.13621188341517, 8.773156899762666, 89.75348940437209, 22.054072004941332, 34.757537923233, 26.433017571132364, 23.76459988294968, 59.134703455240995, 86.50449668792565, 11.990150934797622, 108.30287192376346, 19.59770592588421, 24.21735946698707, 123.45426112583317, 60.352914140662755, 59.29384703802252, 139.18093236180636, 13.662002184810433, 11.700942178199107, 15.81822973392997, 15.7829951766304, 14.289269049558175, 37.7927004642232, 58.50521578394368, 62.03899691657301, 24.427135023677035, 11.567541285948533, 78.42845231809437, 5.198537053899502, 29.756452360791137, 49.68892491578617, 51.839268693202065, 18.547939257566874, 12.175622403977695, 15.735546923847268, 14.010312198474626, 64.05238148201992, 7.259142640348828, 20.56908537776342, 13.23099176524976, 127.97591641737523, 28.58323042223722, 21.86475630243385, 9.738216318913574, 13.091603512831876, 38.22793081065805, 40.14960138391204, 6.824835458711822, 14.586855380709915, 53.441148311622015, 73.50442097101306, 5.716775965082871, 74.94753787613848, 40.472502651068865, 71.44145062887019, 7.821091116688564, 20.704984814855123, 8.213987124307522, 10.691117890155772, 132.51093082137697, 34.113602761020054, 59.69475497340804, 54.66580610454311, 27.442476466418075, 17.215742595163064, 34.73187113861469, 8.252088908520077, 340.10922016964497, 59.732731725380546, 23.386196602042453, 69.37911917518744, 21.630275561483934, 15.118165762362539, 15.358048598059616, 17.030028247560836, 5.824743157070449, 11.860694993629322, 97.77753337433643, 48.71776208808662, 67.40799416771435, 98.08749164389539, 358.9717815006106, 44.0064255174662, 8.441827453419483, 8.965376287244752, 39.04244667658165, 16.18659455255523, 11.873520787761665, 65.69312551470702, 5.8493483973674065, 139.31605889940124, 9.729260852403977, 70.58288853968718, 22.550945696389284, 5.646251644452058, 14.83476947487083, 21.103894174342592, 7.771842384744193, 42.03313229432979, 26.781800709927985, 26.855013509342534, 107.12208015839065, 69.58859185011632, 31.688541372051358, 21.751230552010206, 40.264698716663716, 110.31355033568171, 91.3304964493162, 35.43490805806609, 16.37616416806909, 66.11106502820302, 37.325095395506295, 150.37321343587539, 81.77808336198586, 221.93834283175877, 155.17195272297317, 75.67534984018874, 27.843707451619498, 22.16865700456239, 65.61451256600066, 11.710311629861499, 14.979570016559231, 22.29368778631171, 31.966299108733093, 72.87760856850605, 5.632612356602803, 24.544035568485814, 71.19090338324246, 26.460838655081687, 7.647740414183204, 12.268998004963459, 59.28563612797137, 14.92767718718979, 7.301721336350794, 16.012432953982646, 108.46702070018063, 22.49966526026125, 18.299263780697995, 133.5001434856497, 23.912516244051687, 72.95599295149292, 10.596794545640842, 14.92672047990056, 61.40495474528679, 37.94038976478359, 11.15194770730799, 44.8509121395017, 19.440427734443364, 25.640597309696656, 107.35349411988005, 65.78446267664941, 22.444414823082738, 24.32813627106041, 5.890960853923981, 14.66339149520905, 79.293192084005, 11.68506485369707, 15.037841671231481, 24.851309664063592, 33.726931892030855, 41.60404986349332, 29.091393646831182, 91.81711872084361, 19.16441412260567, 26.475483174299125, 24.7976443618888, 61.54956217726056, 50.30579645380996, 19.72330129490063, 24.900433899490846, 69.44310767844524, 42.48707397640275, 28.291064490470788, 130.15557015045457, 35.82683240842089, 55.414621297498286, 17.24769225070288, 21.63632492236758, 82.1507202107574, 91.48898747469909, 9.469615009063588, 17.4437926249785, 57.02617776098141, 21.97632409965354, 23.423055727599177, 161.34792887083594, 53.42670780516952, 13.241209286367637, 109.98572381330749, 180.43301140183385, 95.87076789460431, 22.9416752852305, 5.468859396138814, 17.140008221678528, 261.55590473017514, 21.613026509815697, 11.192580525723114, 18.86333245557962, 187.16484773180116, 61.808920039647745, 26.28621878951586, 42.95475115943963, 64.11558062196752, 16.409302092714682, 147.99194037102325, 15.629232930231753, 18.779169217700066, 51.543175376605106, 7.04661190544812, 57.73810985870158, 17.13965911794358, 23.303784364869312, 56.70669129119527, 11.69496836917849, 83.49255542211685, 35.40767403397986, 33.84776943391715, 5.500562435665232, 12.897843472990466, 90.22516395200213, 8.045971785386188, 11.075237870921253, 9.37808502841373, 8.616978597515859, 21.46370720348556, 7.200820379496506, 59.906162804580376, 53.562955568647354, 45.97078158630055, 21.986692489915992, 112.47475154604231, 11.416860169060945, 70.44434296179799, 56.35147219207057, 60.97113446734141, 36.872346925991216, 34.96068311416626, 8.860453346931774, 42.153722536508, 100.14908768974092, 60.43317674723707, 75.94321366057582, ...])
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);
([6916938.575410915, 7178082.8125, 7403207.822966427, 7623584.375, 7676961.476723666, 7953058.921085432, 8208173.4375, 8244296.134466852, 8245692.029359838, 8253935.46337845, 8270327.487422473, 8273438.473057494, 8273954.775540075, 8274946.524030359, 8275835.426652449, 8277657.55124388, 8278802.465881587, 8282879.128709109, 8329939.0625, 8390717.614900514, 8391241.221271094, 8399656.2694868, 8403767.40826348, 8406620.3125, 8406668.857459025, 8411755.008294027, 8414415.144073248, 8414417.1875, 8424671.448114857, 8502079.034091922, 8521154.717286319, 8522165.625, 8522782.75281597, 8537704.072748555, 8544884.375, 8548659.375, 8551091.203229794, 8552558.067609033, 8556758.843841504, 8569550.840260291, 8571326.055417737, 8571417.400260525, 8572200.77920677, 8572821.360183014, 8576237.322489278, 8595686.782811813, 8596395.163302643, 8598625.0, 8599615.024627697, 8599977.164859558, 8608469.365581231, 8611598.4375, 8613834.273816427, 8616297.558778806, 8617286.939829865, 8618068.75, 8619583.498458445, 8638595.77606346, 8649512.62580354, 8649592.457904922, 8650856.312929409, 8651695.281879507, 8651869.66308671, 8653259.56333146, 8653409.888594797, 8656524.802223386, 8659208.475258542, 8676414.36350279, 8689899.859284285, 8690333.79913447, 8691173.4375, 8691410.147661554, 8691743.75, 8694651.76229762, 8695641.646877076, 8696335.9375, 8696467.85637492, 8696590.782822143, 8697563.493188389, 8697772.262669683, 8697835.423001593, 8698618.679944627, 8699578.125, 8700267.265633512, 8700370.79975687, 8700506.304060603, 8704812.5, 8706619.579276735, 8710417.1875, 8711881.388426932, 8713193.008797154, 8713932.8125, 8713977.325833414, 8715224.213310258, 8715484.877779623, 8715507.061291356, 8716131.630992526, 8716213.046400767, 8716460.044757977, 8716547.969074206, 8717512.259350475, 8717529.6875, 8717825.19330322, 8718138.659044316, 8718240.274720265, 8718264.670849582, 8718844.283784263, 8718970.182484148, 8718971.875, 8719035.804489067, 8719483.013213111, 8719653.125, 8719676.414374799, 8719750.422736626, 8720026.5625, 8720324.54769169, 8720328.125, 8720517.1875, 8720835.433846021, 8721309.260532271, 8721391.448324133, 8721661.094091982, 8721715.654644962, 8722259.41050893, 8722388.51624484, 8723242.1875, 8723987.430854615, 8725424.923861522, 8725951.558410125, 8728900.862785636, 8734731.25, 8736617.040798213, 8739739.0625, 8741491.596356103, 8744075.0, 8744458.28298815, 8744462.278793423, 8744829.071247771, 8752828.848032814, 8753153.321547177, 8753409.0200678, 8755776.5625, 8755778.552848408, 8756339.0625, 8757726.5625, 8757833.244026924, 8758568.75, 8758646.875, 8758729.982131522, 8758826.104222415, 8758853.237053795, 8758915.162714196, 8759095.3125, 8759446.89744289, 8759552.01039456, 8759590.051842058, 8759812.076356629, 8759856.25, 8760697.939309366, 8761353.24433409, 8761600.0, 8761734.037183583, 8762104.6875, 8762326.460326668, 8762518.75, 8762892.615109628, 8763771.7341051, 8763773.77277986, 8763775.41993531, 8763780.190702055, 8764517.923724748, 8764765.874153389, 8765420.3125, 8766108.815929545, 8766252.092973836, 8766314.464817476, 8767001.13097085, 8767042.1875, 8767280.206921445, 8767712.030747432, 8767744.55666679, 8768348.718161322, 8771457.11418408, 8771751.440180287, 8774096.350890068, 8774316.361645319, 8774318.309120802, 8774843.911273299, 8776053.254744025, 8780565.625, 8782132.8125, 8787348.793485565, 8788892.079121994, 8795093.349380216, 8815134.616716726, 8818853.80177923, 8822578.44276889, 8823038.82996684, 8823784.193485485, 8824065.98054499, 8831001.548568198, 8831531.041157784, 8831759.679033613, 8832460.9375, 8833438.801712627, 8834017.1875, 8834738.221192218, 8834751.821613714, 8836853.489831632, 8837599.578014674, 8839374.273694973, 8844663.330645155, 8846087.443193465, 8847657.8125, 8848328.371082164, 8853832.560487825, 8854289.002337981, 8858835.9375, 8859897.969159605, 8863494.578119934, 8863809.49725202, 8863925.846581444, 8864294.009960592, 8864830.269786678, 8866303.503174715, 8869470.378392374, 8870465.997616444, 8870504.565233983, 8872542.530356808, 8873032.8125, 8873092.036472425, 8873303.13968265, 8873337.082287854, 8874927.43892727, 8876428.084631752, 8876798.07186968, 8877305.142434208, 8877584.375, 8877749.934774136, 8877812.806304837, 8878053.125, 8883859.030545318, 8914443.35836859, 8914454.6875, 8921179.018238205, 8921314.225210892, 8921548.642946705, 8922773.60098223, 8924723.127217874, 8925431.021221945, 8927546.0264498, 8930254.6875, 8932418.75, 8934008.148670208, 8937753.521610219, 8937767.180957388, 8946015.13459207, 8958352.277077159, 8964698.355954867, 8967070.135240551, 8967804.6875, 8968592.35786471, 8968791.968822742, 8968979.6875, 8969511.398613561, 8969516.327283464, 8970633.801856276, 8971699.382842412, 8979624.619141672, 8986031.184464728, 8995521.875, 8998546.720696142, 9001812.046893975, 9007972.04466321, 9009897.11889311, 9016336.980824713, 9046221.875, 9046435.751442745, 9046471.432974385, 9052482.360414773, 9055203.125, 9055325.645610133, 9055405.98635447, 9056087.5, 9058492.1875, 9058716.043571701, 9059345.17027989, 9061103.505798679, 9061396.4223237, 9063145.29808267, 9063241.722253744, 9063847.276100958, 9083885.205118118, 9085173.4375, 9086832.8125, 9087845.3125, 9089887.86921696, 9090195.62412318, 9092700.0, 9092980.111471675, 9100126.5625, 9101927.648339413, 9108981.25, 9109977.985357335, 9110257.493215878, 9112248.52343232, 9121585.9375, 9122685.993435124, 9123625.95943682, 9124095.3125, 9131881.242159512, 9132470.450996982, 9134509.375, 9134876.943699535, 9145178.125, 9145837.5, 9150590.625, 9151472.808983132, 9151532.063757448, 9152574.02823397, 9154033.27612631, 9156550.605960712, 9156727.791415263, 9160498.4375, 9160508.013788728, 9160541.007053085, 9161281.25, 9161489.393922977, 9161593.543987254, 9162348.4375, 9165868.350402994, 9167471.948413882, 9171257.8125, 9172799.711574731, 9174501.5625, 9174917.342642933, 9175518.523344135, 9175630.457112908, 9176381.25, 9176966.877752254, 9176982.610237163, 9177955.22583255, 9182623.956504608, 9182635.9375, 9182703.125, 9194768.573732274, 9212982.8125, 9214537.5, 9216654.653083326, 9216914.860573916, 9218798.4375, 9218937.5, 9219426.5625, 9224099.648060769, 9224217.457330825, 9224517.1875, 9224577.283423837, 9224737.5, 9224743.343416851, 9225720.3125, 9225903.125, 9227162.5, 9227180.611400114, 9227689.180171464, 9228264.879034005, 9228295.3125, 9228298.763969293, 9228702.937755981, 9228777.713910554, 9230225.0, 9230232.121470166, 9231007.437144525, 9231148.182841696, 9232773.166457802, 9233059.8610041, 9234650.859727608, 9235208.61157206, 9235595.102218984, 9236485.219387196, 9237261.94825128, 9237285.863788849, 9237363.719884252, 9240763.329914862, 9249528.219045175, 9249894.326732956, 9252638.602899356, 9263341.615400627, 9265889.0625, 9267000.0, 9269310.808822095, 9269573.648636296, 9270719.932755083, 9272396.755777184, 9275378.754306072, 9276224.000808142, 9276498.339858843, 9276614.412901515, 9276617.83183045, 9277043.319570584, 9277193.75, 9278134.316741988, 9278804.6875, 9278969.93359643, 9279000.88239446, 9279225.323399767, 9281810.965222025, 9282400.0, 9283689.930913381, 9283815.625, 9284148.514165737, 9285484.7772502, 9286660.98607022, 9286674.378189309, 9288913.192554465, 9294962.27282101, 9295747.605083086, 9299462.290406888, 9312171.875, 9312289.0625, 9314304.750781063, 9329789.0625, 9329861.265932886, 9331924.439325523, 9333028.706738217, 9350096.27652209, 9352179.6875, 9353901.667579226, 9354488.808899662, 9355848.769617086, 9361110.954425354, 9364971.875, 9367365.625, 9368902.56133805, 9373287.631707072, 9376618.384262001, 9377080.501579678, 9378520.516867764, 9381505.947984463, 9382159.375, 9383079.6875, 9384158.039949693, 9384265.855985558, 9384472.907206604, 9385068.307597322, 9387198.224539058, 9387433.535394125, 9387456.857441777, 9388048.413843932, 9388696.825012274, 9389526.500569355, 9389561.647574306, 9391639.385405786, 9396223.491775436, 9396647.33372251, 9397301.5625, 9397960.252589125, 9397987.11609069, 9398029.683585152, 9398059.375, 9398831.648748936, 9399872.583748115, 9400075.928035954, 9400645.116762757, 9401079.6875, 9407039.330962053, 9407448.420449957, 9409508.051974704, 9409556.159161841, 9409688.51531065, 9410018.056373674, 9410423.4375, 9410584.001465693, 9410743.285175249, 9410894.285978056, 9411149.058290727, 9411328.50101995, 9411336.146283511, 9411896.78275333, 9412111.71446507, 9412853.125, 9413323.69904719, 9413579.6875, 9413606.799293337, 9413754.859835936, 9413885.806086442, 9413922.040796213, 9413922.824231377, 9413973.233016683, 9414266.958566306, 9414316.991674993, 9414459.375, 9414528.602081966, 9414642.09696285, 9414760.379933937, 9414769.557976233, 9414778.125, 9414971.073966132, 9415011.379442245, 9415035.9375, 9415137.5, 9415137.623123733, 9415725.0, 9415727.349791022, 9416097.33552758, 9416184.77908053, 9416187.5, 9416783.450250356, 9417012.98325071, 9417843.897095155, 9417968.75, 9417976.47235632, 9418906.585265372, 9426973.4375, 9439335.493404012, 9455768.470731273, 9457363.873418583, 9462157.8125, 9462237.063365143, 9465101.720368553, 9465124.677061666, 9465612.5, 9466209.23447672, 9466236.39416829, 9466571.228154937, 9466627.440142535, 9467129.417291412, 9467459.32303925, 9467767.1875, 9467975.514692804, 9468332.942700496, 9468493.831213057, 9468776.5625, 9469650.408661015, 9469939.859254867, 9470223.225228002, 9470234.402132459, 9471196.297488585, 9471830.85252222, 9472623.792731244, 9472639.00153272, 9473378.316005051, 9473521.343071781, 9474070.711523073, 9474156.335307617, 9474238.144732855, 9474619.7168031, 9474702.545203045, 9474850.97417285, 9475307.603517065, 9475399.633799203, 9475401.5625, 9476002.377959799, 9476332.028486416, 9477366.080858145, 9477845.873173764, 9478093.75, 9484642.990680486, 9489567.579921653, 9491603.125, 9491614.0625, 9493378.573171893, 9493853.125, 9493863.06707105, 9494413.837928062, 9494835.843667878, 9494955.24716595, 9495351.350737555, 9495460.379390335, 9496487.279062077, 9496924.847872676, 9498279.63314451, 9504235.743597336, 9505292.163966343, 9507377.99735827, 9508726.5625, 9510253.986910813, 9510826.5625, 9511108.785794975, 9518024.104076382, 9518139.63156524, 9522319.342870915, 9530141.27317293, 9534982.13382304, 9542369.182508577, 9542753.788630025, 9543243.75, 9543245.426735247, 9543626.5625, 9543934.375, 9544615.824479232, 9545336.763605952, 9545593.75, 9545701.55387974, 9545730.05613812, 9545782.159266353, 9545962.5, 9545976.57140223, 9546037.179357018, 9546828.125, 9547089.28270512, 9547092.567960236, 9547654.6875, 9547699.827080652, 9547734.825165031, 9547994.946055196, 9548328.558016375, 9548333.598430837, 9548710.698656956, 9549164.0625, 9549216.290042793, 9549347.80368803, 9549603.204923362, 9549618.75, 9549667.1875, 9549671.204293216, 9549681.873200957, 9549766.049281126, 9549767.1875, 9549933.66658022, 9549970.938409273, 9550144.898614258, 9550164.791470177, 9550265.625, 9550387.543684525, 9550449.061093766, 9550455.448420582, 9550464.0625, 9550525.0, 9550569.125293553, 9550644.006144326, 9550696.424700199, 9550750.7486498, 9550777.655170335, 9550925.082206536, 9550990.062048515, 9551019.871465223, 9551174.459351797, 9551185.850715868, 9551607.8125, 9551613.77601093, 9551648.4375, 9551660.9375, 9551751.5625, 9551835.9375, 9551917.77713314, 9551924.151613146, 9552118.807230428, 9552160.66507679, 9552379.6875, 9552610.515625978, 9553169.033841329, 9553273.4375, 9553822.249429386, 9554031.259732869, 9554114.0625, 9554301.167921538, 9554879.6875, 9555237.382400403, 9556593.75, 9564946.219721137, 9570371.805083774, 9571437.02346913, 9572461.938440684, 9573387.5, 9573734.375, 9574953.125, 9575296.761089314, 9575344.752985088, 9576098.952851525, 9576575.52626768, 9577272.644957831, 9577366.414159453, 9578017.1875, 9578116.066781662, 9578445.300506562, 9579555.956761891, 9579564.64905638, 9579634.375, 9579962.047102503, 9580028.020898875, 9580115.625, 9580237.5, 9580317.730161875, 9580391.095669886, 9580474.00904929, 9580522.40418681, 9580523.343231082, 9580524.624971874, 9580612.114306277, 9580625.0, 9581123.13970126, 9581124.605915952, 9581292.1875, 9581294.144672371, 9581540.192183623, 9581581.25, 9581807.8125, 9582146.875, 9582168.453507198, 9582168.651462458, 9582224.551620556, 9582491.145426936, 9582655.617003638, 9582703.656384712, 9583163.039440243, 9583215.461538963, 9589553.022532996, 9589838.363860028, 9591938.657342201, 9595295.163758595, 9597998.4375, 9598022.555942578, 9598606.25, 9599034.81387738, 9601317.138640964, 9601704.6875, 9601863.13914202, 9602268.091932924, 9602459.375, 9602467.1875, 9603847.945145417, 9605053.398718977, 9606950.557711124, 9607409.012784733, 9609054.680188753, 9618265.631352419, 9621096.925017085, 9621552.822219955, 9622662.955253197, 9622748.24452916, 9624261.878746198, 9625715.211447056, 9627501.5625, 9628273.148424495, 9628623.97792139, 9628829.6875, 9628843.75, 9628870.3125, 9629572.66527506, 9629650.547657674, 9634143.75, 9647501.5625, 9670520.05630554, 9670803.669908829, 9671574.10670539, 9673772.68852292, 9674377.542217398, 9675167.1875, 9675986.431894735, 9678156.078845719, 9679861.406318175, 9679891.68972173, 9680068.144265417, 9681179.037082437, 9681565.481712798, 9681753.603562279, 9683483.297504187, 9683565.462660037, 9692253.406708779, 9705333.631718796, 9726162.70830659, 9729018.570585415, 9741452.04701612, 9742843.131872306, 9790250.565375231, 9792735.9375, 9800040.309533406, 9804698.927090855, 9809567.010522442, 9809875.848897932, 9818877.86067244, 9823697.286696073, 9824640.625, 9824849.507847242, 9825029.096986547, 9825301.180747954, 9825464.400692394, 9825629.899954362, 9826187.552650902, 9826346.692662936, 9837843.75, 9838610.9375, 9845802.935599355, 9845832.926126039, 9848061.201776784, 9848134.910163749, 9848441.994677218, 9848693.53375431, 9853909.375, 9854235.9375, 9854292.027518662, 9855741.205804534, 9856387.693813642, 9856712.093898188, 9859382.8125, 9863973.936623475, 9874874.465771781, 9881282.277422108, 9888838.626363246, 9889056.25, 9889503.127893532, 9889637.94488572, 9889668.162106248, 9890076.5625, 9890087.5, 9890195.612123054, 9890239.486440457, 9890250.50888652, 9890609.092623845, 9891353.281267097, 9891654.6875, 9892162.838149656, 9892443.75, 9892599.00217665, 9892827.542191235, 9893301.422661157, 9894096.57649415, 9897717.008508418, 9920543.603360208, 9925342.19460612, 9925612.5, 9926067.13033608, 9949873.093996262, 9952230.433245156, 9952242.121707484, 9955133.909630707, 9955441.475859784, 9958084.138267772, 9972351.5625, 9973805.515273783, 9977173.483088465, 9978882.837359283, 9979087.957792189, 9979839.206909409, 9979911.360760553, 9980570.727975758, 9981026.5625, 9981154.6875, 9981458.356296403, 9981468.037965728, 9981776.5625, 9981789.3449783, 9981794.845387956, 9981939.70130824, 9982040.917340696, 9982091.651208531, 9982114.0625, 9982114.529328877, 9982635.170203205, 9982916.06081465, 9983131.378894726, 9983717.711145405, 9984939.630363613, 9987489.034210796, 9987682.533393688, 9988389.505788723, 9991381.555006012, 9993506.626216684, 9999651.091419699, 9999850.63848455, 10000003.125, 10000943.75, 10008569.837992793, 10010931.25, 10011465.625, 10011476.5625, 10012509.995011006, 10015784.70654703, 10017607.8125, 10018756.25, 10019682.96423636, 10020543.019264603, 10020724.49300419, 10020731.230611458, 10020851.5625, 10021026.527133096, 10021052.690155817, 10021187.5, 10021376.905783365, 10021514.072449934, 10021848.014177114, 10022117.975348175, 10022407.8125, 10022708.143328594, 10022743.509666078, 10022881.00769803, 10023273.494796725, 10024318.87138986, 10024397.500111826, 10024439.0625, 10026535.933866212, 10049066.269086262, 10052386.19269893, 10053659.375, 10055265.22031156, 10056016.294098785, 10069726.474351946, 10069861.898261355, 10070664.0625, 10073748.069033977, 10074206.24611453, 10076481.170744415, 10079043.41830733, 10082746.890453419, 10092334.968562547, 10094680.516264617, 10095002.250348918, 10096974.870332861, 10097140.61339333, 10098173.237876, 10098305.99389662, 10098315.051379478, 10098326.487567406, 10098331.25, 10098855.017035678, 10098856.275046384, 10098921.656537266, 10099100.0, 10099151.5625, 10099191.606816046, 10099257.8125, 10099277.354899416, 10099415.512057267, 10099600.508434787, 10099620.3125, 10099735.464126665, 10099735.87735283, 10099761.588739863, 10099802.018710982, 10099825.0, 10100019.65109423, 10100055.129405666, 10100150.0, 10100206.916472351, 10100231.502009045, 10100252.639238732, 10100419.284809045, 10100421.597948477, 10100564.221555611, 10100640.888576524, 10100687.05787846, 10100755.797113929, 10100872.632632345, 10100882.651470292, 10100885.9375, 10100925.525186043, 10101093.887332285, 10101288.976112396, 10101404.6875, 10101449.633906784, 10101490.789218325, 10101587.977759818, 10101597.928872423, 10101715.13693859, 10101725.041111479, 10101741.37615562, 10101748.635381589, 10101923.90887435, 10102083.354308628, 10102189.242154283, 10102935.9375, 10102964.741863232, 10103443.542507175, 10103751.731944174, 10104159.20981756, 10104567.1875, 10105462.207435299, 10106085.9375, 10106328.894701386, 10106953.265055442, 10107657.692480814, 10108031.584939707, 10108237.5, 10108673.4375, 10111145.282777166, 10114483.686266627, 10116110.639633203, 10116317.499093506, 10116922.95300073, 10119857.778670644, 10120392.24219726, 10122841.201568393, 10122926.05954843, 10123403.418565925, 10128004.62305461, 10128294.618920917, 10134081.25, 10134754.235596567, 10135445.3125, 10139422.05243665, 10140484.320700923, 10145106.25, 10145383.645601882, 10145972.164000878, 10148569.306938913, 10148588.447549848, 10149145.987977028, 10151723.4375, 10155290.625, 10177854.235109312, ...], [29.84544405728696, 61.56484707748509, 7.607027602722447, 61.65571402063401, 17.490835422701522, 59.68600815778538, 39.393197187713916, 33.49176764588783, 22.63939002388892, 125.68187495149036, 12.964411127659154, 8.878215638953685, 26.57309232824794, 47.71173991517626, 42.614795287239346, 24.258586738097925, 91.50275512913753, 20.92601451208553, 82.6164107430944, 16.86621313486863, 17.83410644726678, 35.377473517717085, 100.59477170227876, 92.15131786581716, 23.860581986451905, 16.323570502651112, 31.257411695372824, 79.41571091575014, 22.25484282485743, 20.088095036915362, 11.174586114693525, 67.87468084328852, 11.03568095057272, 6.646683501612558, 55.9159441472483, 35.94903841566611, 42.683846375017325, 57.35080585442848, 17.19199744809707, 6.943713028214674, 8.936531780530395, 5.102666868544338, 8.746623780747765, 8.930991479259694, 26.429110904370518, 10.16551917962253, 25.88921617754208, 61.50768489145287, 64.36990085094965, 17.871803534966315, 17.954395863046766, 68.9724061014681, 9.247287513726825, 6.001250455877852, 51.09903181832632, 108.36485030612164, 65.61965664174953, 17.0616213024908, 27.99106189034717, 16.083112782136528, 15.148132881945148, 67.65473195344225, 51.03746564561818, 5.542291212784934, 7.800195473362223, 25.150658787025964, 34.58419672332586, 16.227961768666926, 14.43098615958619, 20.768273893777177, 45.74496659993106, 24.940706218299184, 86.57569255690134, 91.87044145886682, 13.216149499279286, 43.55758250858193, 12.363436371260727, 18.60318009755358, 13.140143417934768, 76.55035335407645, 13.286512929096869, 14.681049076089725, 63.91512434487414, 6.096262277803922, 5.48307615490072, 25.10486405820752, 53.771279167374985, 19.444388126539632, 37.023096291868605, 8.361161953341027, 12.710668696282474, 34.1260559913589, 12.575139233461988, 8.744386061678314, 85.32343634401171, 19.30653371452479, 53.747069666313884, 15.279241100052591, 87.89055530697325, 68.15910814343883, 10.771296585917336, 36.5276028151562, 15.733299637747399, 6.6855469458788015, 23.12905396888262, 17.909097174343696, 5.741593013728209, 23.77486821217204, 33.854237147487304, 26.147081268686158, 15.766011034165418, 62.20087111740986, 7.5505277349598225, 16.841447643101564, 29.59354945944347, 63.138930232986084, 57.33042578482871, 45.12120419558579, 21.456727119661934, 143.7356044806725, 19.398482362893777, 11.381621365653853, 107.1322257133355, 173.39829324810447, 87.23535793455338, 34.68583079674579, 64.58173146077516, 27.104188101219865, 11.513060809110353, 130.78914030864888, 40.39780922565901, 17.071955836552775, 41.706405885140924, 21.136379862035657, 94.67913448056626, 17.099736557771102, 10.79869723712398, 6.968362158481196, 7.325435588101043, 11.449478504569042, 52.40940994440706, 60.415345399319804, 16.868596637365236, 54.58153819766146, 34.75497933148271, 29.02522743543154, 78.52564686607559, 41.76901998942708, 16.19750674529702, 21.919651236611667, 11.307490687263739, 29.422402221024385, 73.42033654035048, 25.129677411146073, 13.647456971276437, 13.130051988896719, 10.524354285283612, 78.25099016182384, 83.54201309131365, 9.434387248794822, 47.29588280366374, 83.6320591188276, 100.8487007846722, 37.87987076180462, 41.730704206741194, 109.85138119244684, 10.914396209556033, 29.855368048673675, 118.05293373974644, 27.02280381734575, 68.82988288303149, 92.23963118815476, 45.84025001568871, 51.50375722766795, 9.824201267857223, 39.455001117795454, 41.34112088423598, 86.61268181865981, 200.15152342707052, 49.088463642161486, 7.350975142570567, 11.59669307388167, 35.27065034424018, 51.03169202208623, 133.73585750131232, 7.893328375879586, 13.4909338835552, 9.471596161976752, 11.336747288636005, 43.673027252707364, 104.41714694561423, 16.497428337633398, 24.0434324374788, 7.019977888209978, 11.527782835258408, 13.304167656745225, 21.807175556773963, 16.647198071276947, 43.245312652131844, 5.840764420094639, 75.39976348147063, 6.7225169691613145, 71.14815105584569, 77.73664884890763, 40.08658516906142, 30.45176129167581, 12.479327676268456, 16.030548056509105, 11.75023462582164, 33.815647311407815, 8.78451099818881, 5.225113680282208, 8.256763805343475, 54.811923926198666, 15.97046318047533, 24.383704463477105, 43.06741328767082, 33.3395772340185, 10.46689087946135, 19.4354451211209, 9.436958603370027, 19.57944333952262, 83.13200707552758, 12.1787104013055, 9.67304204736455, 16.924341048710797, 5.730889911262943, 62.09220227212911, 5.72893139117371, 52.80897799919174, 14.395500409491246, 5.399035632851311, 5.327809101811009, 5.030168831578881, 40.58820118403301, 128.4317786509891, 133.03178804053073, 124.93027965769242, 81.03507147772464, 26.00038866858249, 74.5446874035946, 29.534786264872196, 22.646830575119733, 58.24138187913586, 69.69796916305741, 15.60020713935223, 9.511379158905202, 15.603524650297734, 10.675042156818357, 14.135765972643737, 29.765044836969473, 82.67592341138713, 157.01202845064245, 11.697227139245486, 11.809906794518673, 22.734851557947923, 25.298545855135597, 14.858375859839306, 25.28944569272288, 25.456319050476, 43.89553454360242, 7.6660402446328355, 41.08432088477173, 110.18068166926699, 11.934030492219774, 8.696495123385697, 69.52767796359993, 62.02115862079842, 10.580377859034128, 27.291996498151217, 39.76815918587735, 79.80535181626138, 21.974004906441692, 11.403677693597718, 11.531599295013937, 5.6744942334994315, 117.61808657037187, 25.324158709575613, 22.091600118972224, 21.98477336151364, 84.3746077793579, 28.766976324467528, 5.388489860220278, 74.58711470032036, 175.78639639260942, 7.761984445639958, 67.97138805203193, 5.174326040127252, 13.457550470325991, 37.137234169490576, 36.636913191254166, 11.818416818923327, 10.14807549449649, 92.42557713055642, 92.6529216627874, 35.678838654603936, 25.827541298260652, 5.475302630147629, 59.19251079071394, 16.84799627971881, 50.9554219078869, 13.390424958620155, 37.54242712484577, 29.881552294963583, 23.507499939365573, 8.332548618337492, 78.17249262822384, 8.316379918461916, 27.582262961501208, 37.248000938457544, 14.911709128973703, 20.90116198551331, 86.73728939190808, 6.5485553405300845, 61.86161578485151, 70.22330705057644, 44.76372570616971, 12.98733051122354, 19.3252868211715, 12.19635661190932, 17.06196621976197, 90.92521778122688, 23.33101780001302, 71.57498285197816, 9.507608183346953, 18.16413927718003, 53.999139015259125, 16.37555479305596, 10.820272643805122, 30.114550655048387, 22.556768363035598, 15.22891195702686, 59.89957879439903, 23.899727420334898, 30.69747084975719, 14.855274419079507, 24.735113766950477, 5.267208119334063, 57.44136030340731, 36.20648558053876, 25.084999069215954, 25.028423745292304, 7.802396549440639, 32.2688236083074, 41.45306310923989, 6.245182148941715, 114.74437792639132, 33.89355551377876, 39.19898004970379, 45.67731261660027, 50.97939730073497, 34.56148211411695, 44.25887137053765, 60.136888279157084, 16.080428751897305, 41.16558508877877, 7.324797156539865, 72.65087780942294, 8.082668078662103, 85.28423301034094, 30.76229109390391, 96.41040011839422, 7.975471471773629, 22.492673469778325, 17.713122153513435, 48.63453908249967, 11.679457189502303, 25.30645770876297, 13.576330622304322, 53.26355540730721, 19.77797723012061, 110.10979900019342, 14.052260094979223, 7.50806235241467, 106.6350532182081, 66.30475100500647, 7.348637915364231, 33.353305520262225, 88.91522719085107, 38.409004828327284, 27.146910169963814, 22.46975295067967, 14.083398644326245, 6.501935386332723, 100.77351354998112, 21.905799517953604, 6.030560108223266, 87.04821158246183, 216.30796204575086, 11.378704545208452, 25.416988128794216, 16.141548760808806, 33.478416241860295, 89.32007119722735, 12.139352177887147, 77.25073894194986, 16.46950542766077, 8.659475127070692, 5.090077746978644, 51.03939676711794, 27.42269752421624, 41.775638897785456, 10.58296170093725, 37.830151469389975, 39.98750151594237, 20.279959006184168, 54.41288397219536, 19.753315549600497, 29.169732679552585, 7.141751640164223, 35.078343723056946, 8.312430167538711, 7.9830221082378605, 15.446427639698872, 9.146424217789782, 10.035782697845356, 104.18377923871367, 40.545405438821376, 83.33407067368991, 48.553534960477826, 99.45798378026049, 5.476042061735853, 13.162888870039088, 9.877026780833745, 20.563933366172794, 64.20008888163026, 15.357741623245358, 14.055645842472698, 15.44422513772744, 119.72131789675501, 66.95224678098738, 37.96453631576948, 7.411345715767946, 15.46845883654178, 10.60042009256115, 8.769731148608457, 5.625451196718786, 99.87329897651671, 42.01109996008991, 84.50950497685722, 15.885618712012922, 21.262541572217124, 21.196138058351288, 31.180528386385426, 14.187512334056697, 18.663984942431576, 9.903897726578016, 111.22907188503336, 112.11499834281778, 6.259405457591729, 6.165190371811329, 24.207704022672537, 140.86915614796783, 60.73169515909231, 52.10118256402414, 19.827581891967014, 13.655648431735122, 28.447855900328683, 30.250091786562542, 11.81395728418975, 107.81754309650512, 51.56926290178464, 24.22584399477178, 45.72904807481122, 16.074034378639894, 8.2775815115738, 7.692210525513179, 32.25387493748293, 16.930591706704348, 21.588140822099447, 98.08874001146609, 5.515222276301112, 56.53316172380476, 12.083363366643173, 5.422748684254929, 9.670963127817558, 6.293942020479086, 26.824681364475524, 60.045786141895185, 48.52306666209257, 70.94524635278736, 36.42157723638779, 48.45944234496177, 7.16750259544767, 121.20843874461542, 7.664324641311415, 207.75143139045838, 9.16428574159549, 16.8985729677404, 71.69784144716589, 62.44635461034976, 33.948161101199645, 98.7010723173668, 13.17110350823422, 10.122840798725294, 38.87293930316235, 18.70576722618014, 5.735473766740035, 33.520416435483874, 58.87944585490569, 7.154197684675201, 45.08928743939222, 10.099463439711116, 45.7452241110219, 7.756231165635341, 132.95410303879552, 87.32760850590923, 165.7635661649098, 20.299404292230793, 65.3718751551472, 26.860781998921123, 33.83078473692027, 37.37365034461412, 54.31030138122313, 76.31797528995399, 20.8996288499579, 69.8104492264462, 5.192438698584307, 15.579424884545155, 5.790465850209612, 51.12531018698602, 59.897631752085346, 36.42257803720115, 21.995155684224645, 5.577247357868122, 14.002766135982055, 49.01294653719133, 36.830332906584694, 19.52940051791346, 22.619907576982218, 58.05581502938702, 83.12550587959996, 78.45466646070274, 37.81769135702335, 35.84957055780689, 21.772684362519684, 7.406914174111279, 20.997124666265332, 5.255197460057131, 74.57172713732076, 15.723192247899052, 5.775643292532437, 15.484514490819814, 90.40833243311738, 7.301914033853814, 47.34385401396528, 14.188037529937542, 26.346474634794216, 23.484039566136193, 22.940413324416753, 118.50135184316264, 8.77065062159209, 48.623366402950396, 17.019475982381564, 17.61783887601779, 43.36074796563705, 19.245185190911357, 11.801986823610848, 31.93015360928701, 43.17763188463468, 59.40143377369542, 45.448677131882086, 85.73056272462634, 70.75780558140505, 15.099895392162573, 17.611816843742083, 89.36625458633355, 51.366816950553286, 9.15132275754342, 74.73640991864805, 16.22593748926286, 84.89139923249137, 28.067420611780527, 63.944297648735336, 39.243086951771495, 30.877895260744403, 66.02458389439377, 51.8474904935716, 20.032890556358844, 12.151249603910209, 17.81314527460985, 84.02189004641124, 19.87844728844953, 11.878480890784337, 85.24649701486992, 40.08522538470495, 15.624804470312228, 30.54514885675505, 28.743705973890616, 7.677015287472597, 6.62488760754137, 51.46832254455041, 28.35550394220516, 5.0756617262975325, 30.732532417456756, 30.6754678370328, 60.99120575194304, 5.281284517897819, 58.97026508070847, 92.51704011651458, 7.7468947535839785, 74.48876828909823, 5.038641909427718, 5.848056786724189, 22.93755166439044, 28.370908764745735, 30.67708381809715, 26.50384733717918, 43.068451604038934, 31.570114256862148, 171.0690794065594, 26.7811096621331, 72.78382659839421, 66.4683061567279, 45.93368930807834, 26.722150497599443, 13.170444469055921, 104.68818981227844, 47.46034038817872, 8.647839118822365, 5.783978072568941, 55.76812424270003, 55.68740698516861, 11.196682019139756, 8.646380924841077, 12.569592645029173, 29.5227081235526, 51.27363706407759, 66.55555848584342, 11.553158572773125, 24.35186961915136, 24.235173295955192, 111.82860306090329, 11.258678941039767, 20.215300211711988, 88.62090079126467, 6.986231849107441, 72.42632066978587, 45.51289017979784, 23.92487302380808, 65.94054145760641, 47.62599668872591, 29.099269468335436, 114.83689009411057, 9.885252630426299, 18.603156043357743, 17.984893268838114, 64.62971977756747, 68.22335358656322, 116.37673293427466, 58.27993440915243, 93.50618704439191, 16.59057650192063, 14.97873677795872, 125.54218346006864, 74.88637731824446, 77.30672426529816, 53.95038266032185, 33.598959328761474, 10.237692500573953, 40.25438744773493, 21.730456240074076, 20.90023358196153, 77.00602001434298, 160.7286744342917, 86.23976162848021, 44.9965751432957, 20.91926432202417, 18.885810869265207, 9.819911701687955, 18.999058865873828, 54.82468081935808, 30.526484550047122, 84.24455162194212, 92.93788407819629, 23.83750144496677, 17.774390105833763, 112.27914718816271, 33.41631664448482, 5.287882441320688, 28.544159571666963, 66.10448039871326, 47.618452345845654, 6.3285537445156335, 36.11881687058874, 58.20454972191478, 14.59397515452521, 71.62195995454763, 22.714545737779765, 99.45488591437496, 74.51847041948567, 47.532102840287074, 61.43773795855336, 9.6890128597157, 32.17358395060518, 44.01120094587658, 41.2621640179523, 51.9940952535257, 95.39661570465555, 43.240702472132085, 222.77541799591827, 12.051862319814719, 67.7894308464021, 12.407831013722177, 97.39777997402213, 25.6669841086427, 162.25958755095687, 21.65473395501001, 84.31343518547047, 64.04577330390298, 90.76632233515048, 129.08809855071692, 46.94884164888587, 17.024751201726964, 49.18880442289097, 33.97600963520477, 12.299031476824112, 30.76100752899825, 109.49970829792954, 41.36855020683186, 20.957083900044164, 16.098630751873955, 8.605300584605649, 116.89457725600434, 28.38112451422134, 8.289939450329273, 115.11428360374484, 6.229687474183354, 17.016178950456894, 9.173396881561498, 37.73555428752627, 13.569208262064961, 48.09144314963367, 23.89129722264531, 17.497862948415825, 75.74289479723198, 38.83997887195669, 43.99905396731819, 6.618545629808599, 17.540481319208762, 39.91080663870594, 40.854471033296875, 45.153843181761246, 17.524259414605787, 12.364158061362103, 28.401546566329433, 85.3342756942055, 89.88046753688747, 9.787623363327404, 25.549013218097294, 24.452328601420366, 6.2062915365920865, 8.866854571757669, 6.022976063555275, 377.7012864651075, 48.355323519296945, 17.180382204539455, 25.68428465682723, 16.13621188341517, 8.773156899762666, 89.75348940437209, 22.054072004941332, 34.757537923233, 26.433017571132364, 23.76459988294968, 59.134703455240995, 86.50449668792565, 11.990150934797622, 108.30287192376346, 19.59770592588421, 24.21735946698707, 123.45426112583317, 60.352914140662755, 59.29384703802252, 139.18093236180636, 13.662002184810433, 11.700942178199107, 15.81822973392997, 15.7829951766304, 14.289269049558175, 37.7927004642232, 58.50521578394368, 62.03899691657301, 24.427135023677035, 11.567541285948533, 78.42845231809437, 5.198537053899502, 29.756452360791137, 49.68892491578617, 51.839268693202065, 18.547939257566874, 12.175622403977695, 15.735546923847268, 14.010312198474626, 64.05238148201992, 7.259142640348828, 20.56908537776342, 13.23099176524976, 127.97591641737523, 28.58323042223722, 21.86475630243385, 9.738216318913574, 13.091603512831876, 38.22793081065805, 40.14960138391204, 6.824835458711822, 14.586855380709915, 53.441148311622015, 73.50442097101306, 5.716775965082871, 74.94753787613848, 40.472502651068865, 71.44145062887019, 7.821091116688564, 20.704984814855123, 8.213987124307522, 10.691117890155772, 132.51093082137697, 34.113602761020054, 59.69475497340804, 54.66580610454311, 27.442476466418075, 17.215742595163064, 34.73187113861469, 8.252088908520077, 340.10922016964497, 59.732731725380546, 23.386196602042453, 69.37911917518744, 21.630275561483934, 15.118165762362539, 15.358048598059616, 17.030028247560836, 5.824743157070449, 11.860694993629322, 97.77753337433643, 48.71776208808662, 67.40799416771435, 98.08749164389539, 358.9717815006106, 44.0064255174662, 8.441827453419483, 8.965376287244752, 39.04244667658165, 16.18659455255523, 11.873520787761665, 65.69312551470702, 5.8493483973674065, 139.31605889940124, 9.729260852403977, 70.58288853968718, 22.550945696389284, 5.646251644452058, 14.83476947487083, 21.103894174342592, 7.771842384744193, 42.03313229432979, 26.781800709927985, 26.855013509342534, 107.12208015839065, 69.58859185011632, 31.688541372051358, 21.751230552010206, 40.264698716663716, 110.31355033568171, 91.3304964493162, 35.43490805806609, 16.37616416806909, 66.11106502820302, 37.325095395506295, 150.37321343587539, 81.77808336198586, 221.93834283175877, 155.17195272297317, 75.67534984018874, 27.843707451619498, 22.16865700456239, 65.61451256600066, 11.710311629861499, 14.979570016559231, 22.29368778631171, 31.966299108733093, 72.87760856850605, 5.632612356602803, 24.544035568485814, 71.19090338324246, 26.460838655081687, 7.647740414183204, 12.268998004963459, 59.28563612797137, 14.92767718718979, 7.301721336350794, 16.012432953982646, 108.46702070018063, 22.49966526026125, 18.299263780697995, 133.5001434856497, 23.912516244051687, 72.95599295149292, 10.596794545640842, 14.92672047990056, 61.40495474528679, 37.94038976478359, 11.15194770730799, 44.8509121395017, 19.440427734443364, 25.640597309696656, 107.35349411988005, 65.78446267664941, 22.444414823082738, 24.32813627106041, 5.890960853923981, 14.66339149520905, 79.293192084005, 11.68506485369707, 15.037841671231481, 24.851309664063592, 33.726931892030855, 41.60404986349332, 29.091393646831182, 91.81711872084361, 19.16441412260567, 26.475483174299125, 24.7976443618888, 61.54956217726056, 50.30579645380996, 19.72330129490063, 24.900433899490846, 69.44310767844524, 42.48707397640275, 28.291064490470788, 130.15557015045457, 35.82683240842089, 55.414621297498286, 17.24769225070288, 21.63632492236758, 82.1507202107574, 91.48898747469909, 9.469615009063588, 17.4437926249785, 57.02617776098141, 21.97632409965354, 23.423055727599177, 161.34792887083594, 53.42670780516952, 13.241209286367637, 109.98572381330749, 180.43301140183385, 95.87076789460431, 22.9416752852305, 5.468859396138814, 17.140008221678528, 261.55590473017514, 21.613026509815697, 11.192580525723114, 18.86333245557962, 187.16484773180116, 61.808920039647745, 26.28621878951586, 42.95475115943963, 64.11558062196752, 16.409302092714682, 147.99194037102325, 15.629232930231753, 18.779169217700066, 51.543175376605106, 7.04661190544812, 57.73810985870158, 17.13965911794358, 23.303784364869312, 56.70669129119527, 11.69496836917849, 83.49255542211685, 35.40767403397986, 33.84776943391715, 5.500562435665232, 12.897843472990466, 90.22516395200213, 8.045971785386188, 11.075237870921253, 9.37808502841373, 8.616978597515859, 21.46370720348556, 7.200820379496506, 59.906162804580376, 53.562955568647354, 45.97078158630055, 21.986692489915992, 112.47475154604231, 11.416860169060945, 70.44434296179799, 56.35147219207057, 60.97113446734141, 36.872346925991216, 34.96068311416626, 8.860453346931774, 42.153722536508, 100.14908768974092, 60.43317674723707, 75.94321366057582, ...])
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)