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 = 44912
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);
([6974532.69337237, 7071880.92738844, 7168485.214031319, 7247535.211055751, 7505640.315763228, 7508486.594126014, 7509674.90111621, 7509692.9573428985, 7511290.506190043, 7513904.590453993, 7520832.460414314, 7521217.673409682, 7521617.884478072, 7521944.857668944, 7522736.591134178, 7523431.996563772, 7523568.039232805, 7527722.940583884, 7535995.3125, 7536148.234790263, 7536479.929107577, 7536511.023871133, 7536576.456270248, 7539406.78199088, 7542639.0625, 7542674.551209452, 7547609.859415538, 7560596.875, 7561487.5, 7562070.146720766, 7565666.93610939, 7571444.550732341, 7572813.294701765, 7576472.896835287, 7576602.979394246, 7591715.012159036, 7623218.49262373, 7624750.294194555, 7640839.0625, 7645454.081745191, 7646800.86397643, 7670650.4511474855, 7679726.256208613, 7686678.5158827165, 7687763.900865128, 7693498.189826099, 7693609.375, 7697459.396356502, 7698614.887448611, 7700023.4375, 7700176.5625, 7700746.02852974, 7700919.593436108, 7703392.788877188, 7706020.3749418305, 7706269.8931485815, 7706833.800601515, 7711153.529849507, 7712638.4081193395, 7715057.022435567, 7715117.1875, 7717520.642719472, 7718119.720900448, 7725792.1875, 7727078.791038933, 7727518.397997035, 7728549.748904798, 7728567.801312507, 7729372.262605019, 7730007.469092869, 7730012.5, 7730612.638043421, 7730688.70976425, 7731579.902833046, 7732051.5625, 7732560.9375, 7732996.875, 7733272.45616708, 7733657.27563404, 7733885.9375, 7735516.832050186, 7735546.767526867, 7738933.853742769, 7739295.145824595, 7742199.950587377, 7743342.562952256, 7746248.78076571, 7746850.207284126, 7747745.3125, 7747763.716615705, 7750099.970798599, 7752069.320161002, 7756027.94251293, 7756250.904169319, 7756532.728760986, 7758607.916485981, 7758650.142598637, 7759459.588479616, 7759751.6393258525, 7759755.891469421, 7762889.0625, 7763249.267007496, 7763456.974260583, 7763851.342203961, 7763880.535546403, 7764125.2759617865, 7764935.693971489, 7764985.9375, 7765016.121126705, 7765318.75, 7765808.904177334, 7766257.395555612, 7766455.550544118, 7766668.298539405, 7767392.40105072, 7767459.561468417, 7767615.437548279, 7767890.061371177, 7768296.384403247, 7768919.453161201, 7769199.615852888, 7769410.76064805, 7769565.625, 7769850.541054639, 7770877.963882384, 7772410.9375, 7773797.659641131, 7776039.367307405, 7780090.458554763, 7783876.311751421, 7786042.389418034, 7786305.257773814, 7789652.199832828, 7789922.539221553, 7790998.606518782, 7793816.997694236, 7798159.132405009, 7799874.517140901, 7803825.119448795, 7806045.855404668, 7809791.546095803, 7810690.191409491, 7813054.6875, 7814895.3125, 7817522.218319616, 7819311.663179343, 7819791.106592544, 7820048.232677775, 7820249.732949285, 7820394.854985387, 7820749.928911662, 7822568.128208826, 7824512.61333459, 7826118.187360812, 7827237.558704108, 7828013.645472088, 7832343.111323792, 7832408.178335015, 7833260.765750201, 7834236.69559963, 7834827.710800415, 7837566.565939829, 7837642.011398686, 7837930.643635239, 7838534.375, 7839243.572923268, 7843112.049261297, 7843114.0625, 7843492.6167170815, 7844441.800028157, 7844946.875, 7845118.051705222, 7846266.9142447645, 7846781.25, 7846874.735414748, 7847214.178111148, 7852143.75, 7853446.985503823, 7857874.522707959, 7857975.715514227, 7860121.607934544, 7860658.937850517, 7861864.709479153, 7863811.40258455, 7864008.545921655, 7864524.44470385, 7865923.57425891, 7866506.989355684, 7867209.271877407, 7868132.474559275, 7872388.052024657, 7874291.428377545, 7878784.156507125, 7879046.875, 7879519.656487459, 7880775.174890311, 7882040.251025384, 7883322.152805987, 7883712.324128805, 7884360.665883093, 7884674.872309201, 7884704.422385206, 7884935.965225023, 7884951.5625, 7885221.875, 7885232.717677537, 7885445.225579866, 7885938.74600979, 7886246.768512228, 7886265.199318469, 7887018.75, 7887046.383126284, 7887926.4588077115, 7887928.738127281, 7888096.875, 7888550.0, 7888589.446315823, 7888614.911659263, 7889049.792817726, 7889055.061889326, 7889357.283960869, 7889371.577598219, 7889810.47730452, 7889834.214019316, 7889897.149608436, 7890148.25021684, 7890379.5529282205, 7890380.075949749, 7890814.765614458, 7890873.873338675, 7890933.2519181445, 7891059.681391009, 7891371.875, 7891614.0625, 7892456.164447815, 7892578.092307129, 7892627.57957559, 7893194.850149967, 7893699.73685931, 7893815.625, 7894059.374325715, 7894449.195208259, 7895826.025005543, 7896372.385572671, 7896824.313270115, 7896882.8125, 7897621.422305818, 7898232.8125, 7900492.1875, 7900677.884390913, 7901370.3125, 7903234.375, 7903957.193795321, 7908849.521250127, 7908869.4393461915, 7910555.620944721, 7912783.846615378, 7912807.8125, 7913929.176073315, 7920615.31982352, 7921428.084879797, 7922044.910038238, 7923747.105557662, 7924157.363922005, 7925021.875, 7926072.736063032, 7930075.537616948, 7935386.403030842, 7943251.244165184, 7946242.127494873, 7947328.118434422, 7947424.471746795, 7948583.428041738, 7949362.15346419, 7950047.951971886, 7950410.9375, 7951535.399764718, 7952516.727463883, 7953900.951685926, 7953981.843127096, 7954004.191479709, 7954893.798472533, 7955179.810245695, 7956081.137126199, 7956776.5625, 7956781.331964377, 7957394.549658225, 7959285.849802378, 7965308.449669327, 7965360.872915851, 7968032.579840389, 7970145.519036786, 7972229.867497343, 7973710.9375, 7977148.4375, 7978121.341789695, 7981705.547287471, 7983480.716915705, 7983957.882509899, 7983984.452242405, 7984420.632997603, 7984452.854472185, 7984489.940424054, 7984508.6066076895, 7985250.795807048, 7985329.6875, 7985452.112275822, 7986082.272810599, 7986207.501801527, 7986222.022884111, 7986504.6875, 7986718.75, 7986762.180902742, 7987752.56595857, 7987879.042579213, 7988263.773359315, 7988808.1624949435, 7988906.976236418, 7988910.009982994, 7989092.759438591, 7989124.449710925, 7989671.352871259, 7990082.573174284, 7990284.375, 7992427.689137047, 7993396.875, 7993524.7056525415, 7994567.1875, 7996791.394235089, 8002341.22893106, 8008888.706174239, 8015499.39985392, 8022709.306819818, 8027439.330037742, 8030805.18366673, 8034193.33023377, 8036245.575098394, 8040448.877313626, 8041168.75, 8051543.586597698, 8053092.800489686, 8069217.1875, 8070491.43459967, 8070780.06230259, 8071221.306265323, 8071436.19591697, 8072224.597858433, 8072236.04466406, 8078301.5625, 8085142.1875, 8086095.883092697, 8086843.900826846, 8095682.8125, 8097599.335297899, 8098449.921927094, 8100621.875, 8113432.669089745, 8132268.75, 8133417.541209648, 8133514.224606887, 8134643.42341005, 8134664.06551639, 8137130.708625445, 8137862.5, 8137878.944917141, 8141108.806941345, 8141263.363422681, 8147632.047239888, 8148051.5625, 8156257.969258974, 8157063.961581178, 8158028.125, 8164251.5625, 8172330.164418851, 8172988.858313934, 8173231.074621968, 8174684.181054305, 8174693.66331909, 8175437.5, 8176765.625, 8180917.08942323, 8181070.3125, 8181985.478377932, 8188133.113517633, 8191225.0, 8194910.696156347, 8195230.285247176, 8195941.14705925, 8196006.493508691, 8196091.316648359, 8197783.908036633, 8198006.373390383, 8198193.029138742, 8198549.405052618, 8199091.830355826, 8199127.219024796, 8200631.25, 8201810.0275806505, 8204530.573994766, 8206532.771050896, 8207615.495733922, 8208060.9375, 8209028.425943467, 8210918.75, 8213790.812071142, 8214154.627367315, 8214773.4375, 8214860.477904891, 8224606.690917827, 8226349.106899924, 8240745.3125, 8241163.989262091, 8244292.691775319, 8245121.341707934, 8246932.249129858, 8253646.462389896, 8256295.3125, 8256992.665560138, 8257657.457111735, 8258025.99521711, 8259339.627188285, 8259421.269096273, 8259637.5, 8259793.75, 8259996.342079893, 8268168.644974795, 8273247.98781604, 8273698.449441446, 8279913.581935577, 8281814.873063841, 8285563.041816336, 8285992.219815592, 8295157.8125, 8307004.6875, 8307778.16462117, 8312820.053825594, 8315068.75, 8318909.375, 8319346.7022849275, 8320959.51955246, 8322958.276357151, 8323635.9375, 8326462.5, 8327119.698875081, 8328856.886689487, 8328865.872508739, 8329042.1875, 8329183.310393668, 8330868.75, 8332154.318515076, 8332431.851835073, 8333005.939833883, 8344917.139539952, 8345017.848168694, 8345028.984470393, 8345101.200478874, 8345154.6875, 8347790.595079736, 8348184.375, 8348481.847138101, 8348798.323300145, 8349975.0, 8351108.5390348025, 8352745.3125, 8353366.681487166, 8354055.86912401, 8354090.179756605, 8355298.086593712, 8357524.867135812, 8358096.821509521, 8359747.096733614, 8360049.133001388, 8360107.8125, 8362599.410322767, 8364214.944113611, 8365468.104667674, 8366826.670115858, 8372797.757134456, 8377465.623356395, 8381116.138994239, 8381486.422135567, 8381949.494008318, 8382114.378052876, 8382203.103726287, 8382632.243394241, 8383035.545175293, 8383657.8125, 8384369.861543479, 8384456.587974451, 8385195.3125, 8385450.49152843, 8387746.19936776, 8396322.604098218, 8398262.5, 8404115.625, 8411498.82663238, 8411562.2865355, 8411630.156309186, 8418086.418845294, 8425528.272812566, 8426549.587384993, 8426649.930417964, 8426651.5625, 8428378.911076684, 8442964.712998714, 8445427.346831286, 8449172.23503607, 8472957.807191337, 8474709.307133455, 8479746.875, 8480181.532991873, 8481876.5625, 8483203.46020092, 8486679.291630851, 8499178.125, 8500237.037629437, 8500923.13087573, 8503458.057828847, 8504450.617789015, 8510995.31182585, 8519287.398007125, 8519975.99127559, 8526613.51602813, 8541220.014202094, 8544398.141922724, 8544431.661172206, 8544669.305295764, 8544859.73315177, 8549177.818793707, 8566363.702775918, 8567174.671096686, 8573540.05993782, 8573764.421635494, 8573868.148514887, 8577046.989783531, 8624406.002554867, 8626187.084078304, 8626450.962340042, 8627381.25, 8630031.25, 8633386.281078508, 8635075.0, 8635994.846360374, 8636854.737686766, 8640946.868170207, 8643645.434000703, 8666971.875, 8666979.83078491, 8667507.461310793, 8668561.293217251, 8674600.0, 8676744.199078204, 8745140.747039506, 8759292.266792601, 8760371.685792187, 8761600.0, 8767172.080843365, 8767765.688216133, 8800094.372590352, 8807743.146247046, 8847274.458694091, 8848089.271126544, 8848091.040892996, 8848830.044555187, 8898729.981453996, 8899968.29673324, 8909408.024122292, 8953784.171646878, 8992236.775898192, 8996951.647844832, 9090089.751721103, 9104393.702994226, 9161131.632120542, 9204985.359298036, 9207777.56404629, 9233695.3125, 9236164.0625, 9282996.875, 9318139.342076836, 9320942.1875, 9321984.810658012, 9336543.788558409, 9336851.5625, 9347667.416351655, 9347671.583738124, 9353560.959470592, 9359206.827378651, 9362620.623766795, 9365501.236606956, 9367457.8125, 9376531.25, 9377617.631623073, 9378806.051146887, 9381010.256184403, 9382635.540344317, 9385301.468655352, 9395782.443282519, 9397959.837255612, 9399159.623279925, 9403006.212950217, 9428318.75, 9433664.816657271, 9443781.144357217, 9447590.088657109, 9447731.665858032, 9461282.8125, 9461763.177764589, 9463056.629818615, 9471374.243419934, 9481480.405251129, 9496746.823307004, 9503038.510322211, 9504752.766392617, 9507084.227292638, 9513454.949834991, 9514302.058906794, 9522224.401176, 9522371.875, 9523708.349224323, 9524716.863332242, 9526888.839407412, 9546202.508930933, 9562309.188179925, 9563087.5, 9566379.6875, 9566450.507291362, 9566837.456013689, 9566845.730231676, 9573985.57624729, 9586693.386330161, 9597806.649041189, 9614478.834643384, 9614485.203848993, 9616798.71421907, 9616816.534915026, 9617073.4375, 9617750.516651504, 9620735.9375, 9622712.5, 9650073.095742736, 9677226.873636073, 9679865.625, 9681749.981182834, 9683851.5625, 9684545.700254628, 9691275.933747265, 9691327.522451386, 9695437.127847621, 9696242.960376302, 9696472.027171386, 9696795.704712471, 9697387.534303626, 9698362.5, 9700421.71820686, 9704104.6875, 9704108.098229589, 9706619.937844656, 9706781.003840826, 9708212.5, 9715301.723629229, 9725369.567822196, 9728095.3125, 9740413.133220958, 9745455.404159328, 9749749.368601777, 9753953.634432262, 9755356.25, 9755804.493279975, 9784682.8125, 9785901.84889804, 9786927.13485254, 9787561.778163185, 9787599.607890667, 9790172.117380595, 9798104.419968879, 9802535.536297029, 9803804.6875, 9811330.08402447, 9814625.0, 9821216.79249528, 9822701.63289776, 9827393.68124478, 9831751.538817715, 9832585.731464058, 9832640.555255944, 9833461.668614594, 9834343.264982369, 9835631.25, 9835631.290761584, 9835636.946483849, 9839710.9375, 9843626.5625, 9850996.160195237, 9851418.419509048, 9851657.8125, 9852063.23696596, 9854236.75928791, 9854254.6875, 9854340.017812025, 9854673.428850586, 9856229.929572864, 9860598.47720342, 9861524.466785507, 9863064.198526815, 9867081.812428031, 9867852.912196439, 9869064.0625, 9877882.8125, 9881052.353181079, 9881810.633973658, 9883144.727115631, 9883472.790309172, 9884164.951405767, 9886453.91332515, 9905844.290343827, 9913162.5, 9914558.843559522, 9914693.75, 9921849.868732976, 9922983.229420906, 9923415.939595591, 9931432.959373474, 9936193.563414194, 9953495.3125, 9959853.125, 9961582.548863841, 9963306.742892168, 9965208.849709604, 9967071.455442907, 9967303.955066612, 9978734.030708479, 9978775.949514281, 9978835.49898842, 9979157.8125, 9980033.639738088, 9989402.83193443, 10008969.992741602, 10022232.743212353, 10023338.859526517, 10041826.5625, 10054122.169130575, 10057807.342285154, 10058298.046771523, 10064129.330932867, 10064326.29166588, 10071270.70740524, 10089625.525058929, 10099723.978991916, 10100052.335302837, 10101594.888519743, 10103838.785092808, 10103853.125, 10111418.4044748, 10127112.695207879, 10128053.125, 10128889.99304602, 10130483.574287666, 10140443.75, 10145681.855029102, 10145719.056956379, 10147265.625, 10148084.375, 10148700.098291764, 10160453.125, 10161338.544998806, 10164789.410842156, 10173055.609876046, 10177815.29015418, 10180962.027372824, 10186048.4375, 10186890.497288294, 10187656.25, 10187873.086673582, 10188110.9375, 10204199.621722672, 10204228.125, 10204723.4375, 10215157.524840113, 10222595.3125, 10223133.527475473, 10233328.125, 10233782.8125, 10235378.125, 10240416.830753794, 10284532.402007965, 10286941.623832127, 10306453.49212985, 10312236.600269215, 10316203.909517305, 10339564.430526463, 10351424.046976399, 10381239.33491677, 10390142.1875, 10419204.513843821, 10419210.526130516, 10419437.87984003, 10450751.660972508, 10471269.558557436, 10487049.908031056, 10506867.935337894, 10513844.117959103, 10519930.203940718, 10522408.294639418, 10522427.293594375, 10525432.236229751, 10551470.3125, 10554737.5, 10589300.0, 10598669.653904874, 10609411.3328629, 10613519.48667803, 10619802.048836937, 10641332.675119668, 10684308.981685212, 10703730.651403194, 10735157.990600245, 10762406.954880364, 10763796.875, 10763806.226339675, 10811435.064740641, 10816931.44434252, 10830037.5, 10864964.092279859, 10878894.452563817, 10883937.700851236, 10898554.971504852, 10903777.709150009, 10944076.029896436, 10955061.63675778, 10974590.625, 10979353.26929745, 10986004.106708672, 11023191.014512843, 11023196.761493951, 11025033.585715333, 11039058.659987703, 11046062.309414782, 11060944.162688093, 11076667.1875, 11079042.1875, 11106282.476018542, 11106644.78801568, 11108125.025587887, 11113914.994729575, 11122323.4375, 11124715.641115729, 11148002.488414373, 11163793.75, 11170679.67251729, 11181312.5, 11238161.106840722, 11279101.5625, 11295028.315722834, 11298303.125, 11321042.615004485, 11323721.875, 11351673.870317273, 11426077.88667376, 11507654.530796602, 11714832.329722142, 11842606.572068023, 12291746.439253643, 12334015.531765195, 13078550.807643643, 13980589.0625, 14024629.512639223, 14285822.167834196, 14381934.20079878, 14382802.222671906, 14386058.185082866, 14389854.357094342, 14395917.398269538, 14397232.522111746, 14412448.394065112, 14413050.495006274, 14423558.370651884, 14436807.099987978, 14436860.9375, 14443112.10015251, 14449467.1875, 14455716.860430531, 14458211.30499485, 14466097.132826135, 14468181.25, 14474492.103513928, 14474615.625, 14477892.265480937, 14478103.08323015, 14480991.960050032, 14481078.125, 14483257.56010214, 14486082.205541432, 14487395.860005382, 14492160.796226813, 14492240.475660263, 14494945.594185751, 14495008.41794064, 14495052.114969736, 14495058.542967688, 14495450.796868086, 14495886.552350689, 14497246.875, 14497878.795454988, 14500045.3125, 14500497.620664729, 14500947.93872488, 14500979.29220268, 14501014.45391987, 14501070.3125, 14501187.15307695, 14501569.505802706, 14503512.011226345, 14507512.406887285, 14513695.20976066, 14517272.178527588, 14517966.885679932, 14518190.846450187, 14523139.0625, 14524990.656983834, 14526118.336690795, 14527208.030423407, 14530020.3125, 14530164.93286819, 14530206.318741001, 14531132.245553862, 14531803.125, 14533169.423923474, 14534086.91503919, 14534311.022531524, 14535277.404221753, 14535810.933015227, 14536884.202636134, 14537443.289376885, 14537848.622792026, 14538086.074500544, 14538180.991082808, 14538636.765629081, 14541480.705475522, 14542195.3125, 14542594.455632625, 14542837.16212587, 14544765.625, 14544842.47515967, 14545803.576834418, 14547242.00550072, 14548956.847030647, 14552573.580544544, 14553253.704747446, 14553591.230014624, 14554157.8125, 14555046.260362947, 14555097.73390808, 14558213.948498953, 14559604.808597181, 14560120.3125, 14560637.392420528, 14560906.185878552, 14561710.281859139, 14561819.565852877, 14563361.622112198, 14563421.847609341, 14563809.911046399, 14563961.394680386, 14564205.0254396, 14564315.625, 14564401.5625, 14565572.93710062, 14566373.4375, 14566524.666622518, 14568659.375, 14568768.75, 14569025.220017102, 14569230.68212805, 14570243.821584422, 14570250.58178676, 14571244.259813039, 14571296.5401665, 14571323.4375, 14571657.438466355, 14571919.502548106, 14572226.344996957, 14572324.497133955, 14572725.696661653, 14573348.873828266, 14574213.240100367, 14574224.565235632, 14574477.919677591, 14574517.236215059, 14574615.122449357, 14574638.25777586, 14574638.317634847, 14575602.608303845, 14575652.516429203, 14575653.763332963, 14575690.287681106, 14575713.890683724, 14575718.963228025, 14576314.976881564, 14576403.125, 14576871.821319291, ...], [26.37322230760587, 13.280419197139992, 49.32458928840813, 8.784417646272175, 15.464792737080106, 67.15077378908515, 14.577545734589386, 10.079890833771772, 27.557625717940525, 10.979331717692693, 7.480671959330259, 26.447995090826105, 8.693079729589861, 22.365198610889813, 61.1383834098296, 18.83056645281275, 5.662968352915564, 21.52391888124659, 52.54834696157369, 25.07848099658554, 15.949974249070046, 7.634778250922316, 6.470566732761206, 22.806049513350345, 104.62233455744237, 22.28393086388408, 17.177092066291923, 66.5118332210057, 101.27941621428829, 162.47299021982064, 10.756258746089319, 57.789369382874675, 18.187208397160163, 118.41821426157199, 5.199728127424223, 8.861916812420427, 91.33654286011958, 16.19542372989298, 34.39329127696213, 10.296726730598103, 8.803217835210782, 11.914584174900508, 49.75174080928261, 11.79908113050575, 14.359257358138194, 88.5736376336722, 80.90683751209734, 8.297903381786494, 19.410982443693094, 82.51754923871091, 31.563241867908328, 10.02035401873029, 12.763617708378954, 99.1460445813382, 6.0946167771297795, 34.085886171514844, 10.334719002548956, 20.196307833983198, 17.914301904202876, 38.484060753820174, 128.99015689389856, 16.369646038281772, 20.625550893885215, 58.6782168058737, 66.07841861788368, 5.9093261920623, 24.396201513191613, 7.292727106206498, 11.79289998956224, 76.82524140570877, 124.73955814391317, 74.05607329571592, 53.36281298080917, 5.8300867435590575, 44.881741402958795, 50.8122474790179, 38.526029539434155, 38.74290002837222, 72.18847076956482, 76.6079747477871, 11.030987003965697, 23.212821585704233, 101.71643888026315, 8.200360346554776, 31.35208399665429, 11.77007117687729, 82.67309059014089, 103.17386845851517, 49.21803101652961, 23.181809091662554, 15.672824898647589, 70.41768028914858, 31.63592659522373, 7.966637772421286, 5.040135589699556, 55.81766079872796, 124.96920849930446, 20.199547129373055, 16.724249131562786, 20.250747010234655, 40.01935327931479, 19.44617336788227, 5.869586043440185, 24.82519470244781, 19.59098760515739, 72.6622906499783, 57.71846734467462, 40.74409304042207, 7.258275321004143, 50.04608383730773, 13.406672580656474, 23.416289506203867, 34.455113338658435, 44.55799124141548, 15.823130106722829, 7.672101787664823, 25.303362806814153, 13.15509554073936, 8.04313035127779, 18.528008135716107, 37.42097744323896, 35.32805332644446, 38.56654437939023, 18.836259978004186, 32.9380808855216, 48.48576171006889, 19.106828957705982, 122.40368881938687, 5.454667587811338, 24.40092954817333, 9.508178563100817, 9.865125160650528, 56.76787773224578, 120.5086979113691, 11.402587055329022, 99.69031941104836, 70.9670198538536, 26.104310628754284, 15.41721451226164, 41.434666786365696, 68.822935689323, 11.236248369076467, 40.292489911141566, 84.87021059416175, 8.476876735060856, 18.683387619685742, 36.59266087836481, 45.93233661956403, 50.49759588226847, 5.51128041087979, 55.21312642563865, 70.89323714425842, 15.391830718728533, 112.92199909021069, 11.220721833578992, 51.09000999571607, 21.766035759505904, 11.189673671003032, 10.86945915718115, 18.913165131512297, 161.95425242201827, 20.36052266108695, 24.11881327071573, 29.758797570105077, 44.2024678360294, 25.459081459250157, 5.192088564367262, 53.36045430963395, 16.87588577416215, 10.557521946806908, 62.52579868369519, 6.949241358998913, 24.098488143697796, 46.51824622452895, 24.213908263541967, 30.99196946008063, 95.56466041376977, 37.99248188555137, 21.72265510124588, 59.71823687146965, 69.05056845276289, 31.636463400287546, 6.593530141712331, 15.604897498543997, 20.542345954817407, 8.013246332785457, 15.48971563883106, 18.779428856023152, 32.453397572299075, 7.485418423381098, 17.566334631887838, 12.66829572745187, 88.30492273557236, 92.79652889193831, 55.63655454181011, 9.48379440540844, 6.221077985184647, 16.1178246089338, 70.29399806270558, 78.41285043916426, 41.50362060160856, 24.206820034814164, 6.270707590185226, 34.834713561914405, 74.66541315590722, 181.40957228026127, 56.32370029754451, 23.542362913613342, 5.608180020114206, 22.2679489076077, 61.648783926300624, 8.947464559269825, 6.2541858862149695, 17.93899058736672, 189.3572023026967, 30.89780599759268, 44.335777108856185, 26.34703912308931, 10.818606784940826, 16.590372644176707, 7.422641853605352, 72.33816868228607, 21.899579004854562, 25.705298922157333, 6.819596970211568, 41.67013245539149, 26.12194700938948, 16.662344794982292, 69.21559358513129, 7.240935563446985, 54.929512020791066, 33.86259420365833, 36.77542338235505, 56.477159692476135, 26.940005335815712, 11.076987379830989, 13.203337416889045, 21.87708455130687, 61.980362876961514, 92.77031700902951, 15.712428239451455, 30.78561823473555, 21.127053088706777, 17.324937448594877, 26.689553501176036, 102.038989088348, 8.975869910400622, 85.70940369678753, 94.11934927502881, 72.58270418301927, 34.53372904310414, 81.406504623861, 28.110656446594824, 49.974192468927356, 67.01396368886608, 14.659680597851082, 59.4696515992093, 51.29144493825869, 33.43569069348747, 13.893290196162212, 11.065570109796578, 10.551963685333064, 34.345119195319086, 27.246646424292432, 81.18841233954929, 19.694335244682545, 9.831501425881603, 9.758709642438989, 75.70632271973543, 33.72508231982115, 28.395743518238543, 5.0594146035473795, 184.47535783187965, 68.44797449679803, 61.76243184409825, 43.86960203451952, 21.124752462301416, 13.436846732324813, 10.290641816754308, 28.53251152905152, 17.989641884650034, 117.0429106985583, 15.43095038688253, 26.476628234884277, 74.6670513973972, 5.946575403368935, 97.26069763778605, 47.37670069216304, 14.729011400324701, 6.081408685688808, 24.65080018760004, 15.791852072093926, 7.669663381803427, 83.13848210070529, 44.463140425518695, 21.168085663132935, 34.509538398818364, 24.93938287751547, 13.713222539285812, 6.499268209475695, 11.668560964303627, 14.001755367432446, 66.93462835095863, 5.429725274604914, 42.77398616548544, 89.00611856495786, 17.55300849863552, 21.106107856847345, 13.876228491281081, 63.21193615093198, 67.94890990254224, 51.32960489638845, 23.50982771944722, 56.91871665751325, 79.22973760996476, 13.943184909956473, 23.391301601158037, 18.687274679886873, 37.03689892773282, 14.780688887013522, 21.005691662760494, 21.275158376984834, 7.518911985243787, 35.726215469154724, 13.148414812818665, 62.85006636349854, 23.8232145855495, 55.92862811229103, 8.740060600172157, 21.015681394758175, 19.533130862594273, 52.3499420339856, 11.02278326282116, 28.417143428656775, 96.6344047760964, 13.551293336907467, 33.56377643559812, 100.42074785650884, 39.32524807607199, 25.667889813300093, 21.282589727922, 63.53639448763667, 75.91137206630864, 7.7446660139848875, 66.40393782631698, 36.451712236968675, 49.313816086429085, 5.948792667492426, 49.351145649035146, 43.83430827585631, 23.98921086276832, 15.549339903593252, 74.48349569165313, 42.83965623840089, 27.070255691693614, 131.97574773556715, 8.212168129748228, 33.89090153038425, 16.486032164979445, 8.374203772611923, 35.30381748738634, 22.839414578235484, 22.376549385373632, 43.46109361089478, 6.939034612191376, 8.893214150508578, 21.058006590536635, 19.769811942189108, 30.8537619802817, 88.0602083814278, 22.30590719730748, 47.45182065503326, 28.799693625473143, 8.555980162640504, 153.87264359715283, 46.333599128930196, 25.2070574173615, 7.098850789574005, 46.4706416163143, 35.04010737348856, 118.54940966746084, 57.96277509895747, 52.02838197189348, 6.305993929357662, 61.44590468385846, 84.78125208017946, 8.630170698839592, 61.81295485501196, 15.958670541103688, 176.75127420173445, 5.326171192630704, 15.433640330698934, 38.4164200105098, 6.973373314860393, 13.735097245714549, 12.336558499826136, 52.024549675345796, 127.31099382940602, 21.92735431906192, 35.5812704811281, 91.41237770899964, 41.564395777718225, 43.537458828709305, 37.54734093459995, 15.705932377312747, 27.388885924248335, 73.73301506787965, 13.43808467116164, 25.802492921537002, 26.78044837569645, 40.35385791794657, 13.525136209322152, 84.6747326618242, 8.023355583690941, 86.49270039711493, 22.411527847300505, 45.77362228329934, 17.141676909174166, 96.89795955987951, 28.283912399837188, 12.142201032404506, 20.497932745523478, 53.676767455414094, 85.59063271613522, 32.367593981489044, 29.287017694218207, 5.678724379200607, 9.341520792951583, 6.208333564522904, 7.3521758430943756, 7.811708749375623, 6.4921689425382825, 73.94906150084137, 59.13389116571595, 52.199854355330224, 8.154364379544944, 70.66145356735049, 41.73341052283006, 46.26642332093487, 10.912570750943331, 22.321327744473543, 83.66747200198327, 41.75306960017772, 31.051570903614298, 165.1665911883325, 15.977010613386165, 74.40619235868024, 66.26481697291455, 83.10870422078891, 73.39554019895644, 5.859894640269528, 13.877870696852845, 38.14043048519378, 12.345556876850909, 18.66531909659936, 13.720519878639507, 36.65149770858186, 154.04689884381793, 39.697589168111634, 7.834501376218446, 5.929521634299544, 39.0758414946504, 5.113029169650263, 29.930957221384936, 66.20572396573301, 22.7698577949762, 5.381721281025182, 7.481067169617508, 9.221530182529127, 11.045114550911746, 25.580766281817105, 16.697580849274097, 167.0371511185851, 20.642855120753417, 108.6715240205023, 20.156294754984035, 25.332451000463045, 7.956823070304691, 48.901472687617186, 32.11814992001429, 17.178321681713985, 18.77385552402091, 8.460807006366505, 9.313479596040729, 13.140684156613812, 28.233469247149177, 45.90158533906478, 21.99669543462269, 5.969388895599185, 63.09453921966204, 106.05149588563431, 19.903412158874826, 26.202728250276785, 50.17333978666642, 50.409303620894086, 16.665860556652703, 14.185856499665109, 124.06008221076542, 22.412257991446523, 104.2261767793705, 70.52527740277488, 50.30084265126912, 51.51460625467654, 33.09243603212626, 160.2755132889809, 12.623726242942324, 119.72048646731228, 14.921313817251244, 9.274669956738382, 53.21956836149461, 46.58938052808233, 32.95959532935031, 35.132642496053144, 10.560607242613269, 111.20849310204059, 21.876870484893622, 125.96455861009684, 18.716093467533838, 9.914788630249143, 9.330833206886739, 114.82335645813446, 78.82281961083633, 135.17464945873846, 23.772507927051745, 8.136220621408446, 65.19699846837196, 171.71896071036048, 103.8136436770814, 22.69918158244404, 20.91618991309133, 7.488458514102481, 48.962488542427955, 81.13518853297147, 43.449596201924564, 25.689011900273968, 10.76177435790644, 5.444193473623279, 13.059854184877105, 48.366012384050435, 114.80205004033554, 101.89373490666505, 34.56876294371834, 7.442916719650978, 67.46101712341178, 35.94380014477795, 15.425759371347084, 82.69828359180458, 15.517295800937696, 46.76821454217875, 5.477244302760312, 50.224535540867585, 19.366238776287602, 9.436771243770773, 99.870455582475, 21.712880941533566, 56.898584943942794, 15.788769066848383, 15.188061413353187, 30.738561476339857, 26.744379546422252, 49.27108677016611, 59.16909185268575, 7.235244099955937, 16.502791623893028, 32.93002471631952, 15.027212695476543, 130.10361714527303, 14.21921239079406, 7.937498564071599, 107.11311668703773, 111.46114959811953, 118.85449155362157, 5.174357496046359, 24.802154848340024, 13.162151684703838, 42.98018564652865, 56.28634553257169, 36.82111601286912, 36.17673290168483, 63.751857667625046, 43.906457907091124, 6.493152633472943, 48.92349389001881, 44.7413248909447, 13.936555032467034, 79.05461992019752, 17.718457976742535, 9.609236162695904, 7.489472441385478, 142.94369142325996, 47.38899776953899, 6.559040460005825, 54.400560727424704, 21.709505029780917, 31.648367011381975, 51.62946097825293, 33.633128499492805, 37.96848786407209, 11.539304246242121, 69.852967913658, 92.94925650134556, 92.32347041665072, 76.1316962948824, 6.987256753671049, 8.51945458248062, 82.36274499438323, 59.78382194773677, 7.746641850157564, 60.17423984080483, 18.6282948387546, 39.26176162800708, 58.84117622157809, 6.693964671092089, 64.38703119788477, 25.64310715636099, 5.739096180975698, 51.055719896579845, 51.26977419391593, 104.18682189931886, 25.37841704825307, 24.785486414753134, 5.375433221876938, 25.31277753978932, 94.11714650771998, 96.20777512214111, 5.1773468816015535, 14.77646339558301, 11.850101806132779, 36.66843552039718, 9.041732493985947, 11.882722155458517, 18.572390394854125, 18.966063976233762, 5.963871689963087, 51.58342124598134, 98.45705919208348, 186.7187943160344, 67.71648609089496, 47.2162233302777, 120.69689208678912, 16.903970539426577, 51.52997373527999, 67.48972625790111, 50.1285638736128, 26.67471925748533, 20.29817676901096, 5.888595192341573, 83.71763710002456, 19.020353965553703, 104.47544089072727, 6.3180568307842195, 24.691738914373722, 30.48556485637802, 14.375768154526954, 63.405917679965, 69.27300333389925, 50.048118185129255, 51.3942623746114, 28.972986812191227, 17.772593086978652, 12.702418106074411, 50.08480930068077, 18.06616891243328, 18.62074109688457, 6.0248115770086565, 5.4183129205825065, 66.22024700424775, 48.30956594974262, 46.94411445897997, 47.3070466788683, 58.29100976340351, 19.53298322387881, 66.00665988107929, 20.55852282559283, 14.011252097162707, 5.59222762516154, 56.656663497816936, 12.734185131859434, 66.03247329664231, 69.91763982628339, 11.239555249955053, 35.69042371929731, 19.570066511837684, 63.02846841235332, 5.067630230062979, 34.5160925012827, 84.20475930332167, 53.133889492685555, 19.243253481290644, 13.181829219337658, 54.782332775939594, 98.38858955169485, 12.773881019859678, 10.903889831710849, 101.55824537227107, 24.526442286106168, 69.15913317177585, 119.1232985676824, 5.504320018976716, 28.35493393879779, 11.528407073010875, 24.27006064956209, 6.20210183626295, 15.486630150393179, 15.957795763188262, 10.810611832807755, 49.585956120597025, 33.48523195492122, 14.529040938299612, 13.898400599186072, 34.60349709743468, 31.38595766756951, 59.343991766033156, 12.633032587415425, 62.70152391621269, 51.81134774092494, 64.74484480786657, 62.33920233492142, 10.928545056744547, 8.520084968233652, 11.657823601691007, 11.3653114255755, 25.316271487971168, 75.45345685168898, 77.42512621147193, 29.533832556827633, 7.257339764847798, 91.33805477776347, 36.15946842564125, 153.74738854494834, 6.696664378918514, 34.40803319710167, 8.067543246106375, 58.27766221824885, 19.428634851564695, 97.03286432085541, 23.50159439627206, 6.258483883378624, 41.91401698122554, 35.83097359641959, 28.560293891775963, 5.326063251150629, 9.021516832693411, 6.694349047193981, 24.130584403613057, 17.099898271690858, 99.0373475211475, 12.094594346208506, 5.873462950179021, 25.201287187846205, 74.5940847162729, 34.48478327632285, 6.696431486344012, 7.675400627575101, 83.05917656506787, 6.964681090879098, 46.10015479387323, 55.38582452343979, 17.888398658623906, 71.69604528071143, 80.56662353248177, 54.9053082809252, 34.53079261338789, 62.65358288271451, 72.85546831014136, 21.255793968491957, 20.20059358359227, 92.93997171214362, 69.30549168184697, 75.51433373481876, 24.318748673648052, 39.69296961009555, 99.57019239248598, 171.6500753813403, 110.51072017339453, 32.459439848271145, 78.68522941306287, 49.95252891934282, 57.20662689760182, 18.609106797166202, 76.76173732040607, 38.40442543565232, 67.16469637143099, 13.736288783931004, 10.541467590080769, 20.880651368794936, 19.977066916891964, 24.493074077363232, 16.262371625254076, 8.491281231164969, 12.235794133519427, 11.581994836458154, 53.86458892706882, 7.5416139819714605, 6.4244826857299895, 17.50759018181753, 15.330611389915608, 5.876331112462286, 263.4977202675119, 97.41947381664232, 78.80109570311349, 86.01059332138524, 17.164386009985016, 10.036896188550063, 20.76457136696193, 31.916567956444105, 81.47307571039906, 72.34349461625484, 64.66772833577214, 11.80754653912897, 10.043051970905577, 23.34329801016081, 14.442517711322102, 64.45643116303182, 5.669692137963309, 9.48667833825387, 22.648134674845164, 115.76362691333972, 28.06500337678416, 9.991715290150125, 105.81320769780943, 79.10111791223432, 15.056244306680107, 45.403465911433756, 24.06873334299152, 11.60267086880632, 12.2791178342151, 143.30978745603522, 28.111898016885892, 56.499408449858024, 5.540124977425752, 10.326933984371863, 11.796496550924237, 10.954806416926044, 27.090121850113864, 30.209459053422137, 35.652624482711985, 43.58853752114638, 30.98232073688613, 44.462139379767606, 55.15069742534621, 71.37603185502796, 16.262761896038665, 40.33183812417485, 37.979030644367974, 118.52517794336656, 12.966914269447019, 55.24944550039616, 16.75057503319776, 35.7135584979296, 15.628785841818155, 35.34303906779558, 35.40975152373791, 61.72513107411241, 73.4630730141229, 30.91798533631994, 48.38918202564904, 153.2480628825362, 68.27629925113548, 81.9025319131886, 41.157390005827395, 13.505535196656128, 59.43489045610086, 12.678344467525385, 54.00941579891396, 14.31443123746839, 9.591925333871009, 21.818370535275996, 66.02598223534886, 5.1741305841545255, 23.3699689683877, 15.810707252417208, 13.939284468688546, 8.263741016890386, 5.259213980603877, 23.057163878583335, 28.746818803663245, 30.218970696328597, 65.58765758506257, 53.490945307176176, 37.61599174471538, 9.662753958100387, 23.58813410522376, 29.861871585877143, 8.24265788727514, 82.9266354809921, 11.980873140217955, 11.063039527711627, 135.37437347926894, 45.42655296029683, 7.056647737389416, 5.436304611906, 61.92581751905594, 101.3517623046029, 25.88697499221719, 24.144635074605603, 23.579882775427897, 17.568975264604063, 31.633702231009497, 61.07847235947998, 100.27788051352081, 44.15201206841576, 31.200874207689846, 36.01402473832816, 7.897199822445143, 11.637660490164748, 10.56135809872826, 22.01033523031961, 75.11003933426822, 34.97404935628718, 5.428175667607307, 21.605824817601007, 16.998202342031377, 10.97082817171973, 16.24007376804315, 13.903690600471602, 25.703915715329725, 66.08188224868589, 8.303563641737341, 13.56991245935478, 22.88123298748072, 38.42160347803306, 49.39158418487591, 16.275295955971156, 21.169070427639987, 74.56718222340523, 12.37447573653504, 33.71662659013678, 8.332061170736324, 74.67014269173916, 55.94277310882511, 25.530583625056874, 23.41772511544133, 17.9166928318447, 6.508783877588855, 117.03885932794805, 5.371122705600369, 8.909835807357764, 31.686640806595946, 5.221779936194133, 13.793141780282124, 52.97813719274666, 16.164359131529952, 43.117284816410276, 6.244474690826448, 99.66992762300153, 39.35969030809173, 5.421109573151231, 5.219114839204194, 64.746866388889, 51.86226432895135, 12.801020757730168, 103.22067396489248, 76.69313117989735, 41.41329730376325, 40.93790431430769, 60.178962556412216, 34.28770083186588, 50.80498853286762, 150.36595234088875, 60.84044081091483, 7.809348622074493, 20.196289816548187, 27.644005700229407, 46.718449480844534, 58.30550538370303, 54.06802972019897, 112.50694288587243, 25.017065647928373, 52.145895201301975, 39.78376178096968, 17.412456620717247, 43.42487205694951, 8.324798642206286, 17.745264225720828, 18.605475292989063, 13.802366204498648, 54.59777887648295, 22.84898895126853, 98.25852490480591, 33.10798899177392, 5.896777465546826, 9.999226854543389, 7.7690605974963445, 7.894810408011503, 95.85470872250872, 25.04045671576393, 15.130497288192139, 6.995328809912236, 34.98230546289558, 5.148369734001787, 13.280550614552908, 45.08385838702054, 6.1570947969936345, 201.08979141501158, 75.15714731482457, 20.97329731510318, 12.937899733119773, 46.620250713055086, 76.15505378307208, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([6974532.69337237, 7071880.92738844, 7168485.214031319, 7247535.211055751, 7505640.315763228, 7508486.594126014, 7509674.90111621, 7509692.9573428985, 7511290.506190043, 7513904.590453993, 7520832.460414314, 7521217.673409682, 7521617.884478072, 7521944.857668944, 7522736.591134178, 7523431.996563772, 7523568.039232805, 7527722.940583884, 7535995.3125, 7536148.234790263, 7536479.929107577, 7536511.023871133, 7536576.456270248, 7539406.78199088, 7542639.0625, 7542674.551209452, 7547609.859415538, 7560596.875, 7561487.5, 7562070.146720766, 7565666.93610939, 7571444.550732341, 7572813.294701765, 7576472.896835287, 7576602.979394246, 7591715.012159036, 7623218.49262373, 7624750.294194555, 7640839.0625, 7645454.081745191, 7646800.86397643, 7670650.4511474855, 7679726.256208613, 7686678.5158827165, 7687763.900865128, 7693498.189826099, 7693609.375, 7697459.396356502, 7698614.887448611, 7700023.4375, 7700176.5625, 7700746.02852974, 7700919.593436108, 7703392.788877188, 7706020.3749418305, 7706269.8931485815, 7706833.800601515, 7711153.529849507, 7712638.4081193395, 7715057.022435567, 7715117.1875, 7717520.642719472, 7718119.720900448, 7725792.1875, 7727078.791038933, 7727518.397997035, 7728549.748904798, 7728567.801312507, 7729372.262605019, 7730007.469092869, 7730012.5, 7730612.638043421, 7730688.70976425, 7731579.902833046, 7732051.5625, 7732560.9375, 7732996.875, 7733272.45616708, 7733657.27563404, 7733885.9375, 7735516.832050186, 7735546.767526867, 7738933.853742769, 7739295.145824595, 7742199.950587377, 7743342.562952256, 7746248.78076571, 7746850.207284126, 7747745.3125, 7747763.716615705, 7750099.970798599, 7752069.320161002, 7756027.94251293, 7756250.904169319, 7756532.728760986, 7758607.916485981, 7758650.142598637, 7759459.588479616, 7759751.6393258525, 7759755.891469421, 7762889.0625, 7763249.267007496, 7763456.974260583, 7763851.342203961, 7763880.535546403, 7764125.2759617865, 7764935.693971489, 7764985.9375, 7765016.121126705, 7765318.75, 7765808.904177334, 7766257.395555612, 7766455.550544118, 7766668.298539405, 7767392.40105072, 7767459.561468417, 7767615.437548279, 7767890.061371177, 7768296.384403247, 7768919.453161201, 7769199.615852888, 7769410.76064805, 7769565.625, 7769850.541054639, 7770877.963882384, 7772410.9375, 7773797.659641131, 7776039.367307405, 7780090.458554763, 7783876.311751421, 7786042.389418034, 7786305.257773814, 7789652.199832828, 7789922.539221553, 7790998.606518782, 7793816.997694236, 7798159.132405009, 7799874.517140901, 7803825.119448795, 7806045.855404668, 7809791.546095803, 7810690.191409491, 7813054.6875, 7814895.3125, 7817522.218319616, 7819311.663179343, 7819791.106592544, 7820048.232677775, 7820249.732949285, 7820394.854985387, 7820749.928911662, 7822568.128208826, 7824512.61333459, 7826118.187360812, 7827237.558704108, 7828013.645472088, 7832343.111323792, 7832408.178335015, 7833260.765750201, 7834236.69559963, 7834827.710800415, 7837566.565939829, 7837642.011398686, 7837930.643635239, 7838534.375, 7839243.572923268, 7843112.049261297, 7843114.0625, 7843492.6167170815, 7844441.800028157, 7844946.875, 7845118.051705222, 7846266.9142447645, 7846781.25, 7846874.735414748, 7847214.178111148, 7852143.75, 7853446.985503823, 7857874.522707959, 7857975.715514227, 7860121.607934544, 7860658.937850517, 7861864.709479153, 7863811.40258455, 7864008.545921655, 7864524.44470385, 7865923.57425891, 7866506.989355684, 7867209.271877407, 7868132.474559275, 7872388.052024657, 7874291.428377545, 7878784.156507125, 7879046.875, 7879519.656487459, 7880775.174890311, 7882040.251025384, 7883322.152805987, 7883712.324128805, 7884360.665883093, 7884674.872309201, 7884704.422385206, 7884935.965225023, 7884951.5625, 7885221.875, 7885232.717677537, 7885445.225579866, 7885938.74600979, 7886246.768512228, 7886265.199318469, 7887018.75, 7887046.383126284, 7887926.4588077115, 7887928.738127281, 7888096.875, 7888550.0, 7888589.446315823, 7888614.911659263, 7889049.792817726, 7889055.061889326, 7889357.283960869, 7889371.577598219, 7889810.47730452, 7889834.214019316, 7889897.149608436, 7890148.25021684, 7890379.5529282205, 7890380.075949749, 7890814.765614458, 7890873.873338675, 7890933.2519181445, 7891059.681391009, 7891371.875, 7891614.0625, 7892456.164447815, 7892578.092307129, 7892627.57957559, 7893194.850149967, 7893699.73685931, 7893815.625, 7894059.374325715, 7894449.195208259, 7895826.025005543, 7896372.385572671, 7896824.313270115, 7896882.8125, 7897621.422305818, 7898232.8125, 7900492.1875, 7900677.884390913, 7901370.3125, 7903234.375, 7903957.193795321, 7908849.521250127, 7908869.4393461915, 7910555.620944721, 7912783.846615378, 7912807.8125, 7913929.176073315, 7920615.31982352, 7921428.084879797, 7922044.910038238, 7923747.105557662, 7924157.363922005, 7925021.875, 7926072.736063032, 7930075.537616948, 7935386.403030842, 7943251.244165184, 7946242.127494873, 7947328.118434422, 7947424.471746795, 7948583.428041738, 7949362.15346419, 7950047.951971886, 7950410.9375, 7951535.399764718, 7952516.727463883, 7953900.951685926, 7953981.843127096, 7954004.191479709, 7954893.798472533, 7955179.810245695, 7956081.137126199, 7956776.5625, 7956781.331964377, 7957394.549658225, 7959285.849802378, 7965308.449669327, 7965360.872915851, 7968032.579840389, 7970145.519036786, 7972229.867497343, 7973710.9375, 7977148.4375, 7978121.341789695, 7981705.547287471, 7983480.716915705, 7983957.882509899, 7983984.452242405, 7984420.632997603, 7984452.854472185, 7984489.940424054, 7984508.6066076895, 7985250.795807048, 7985329.6875, 7985452.112275822, 7986082.272810599, 7986207.501801527, 7986222.022884111, 7986504.6875, 7986718.75, 7986762.180902742, 7987752.56595857, 7987879.042579213, 7988263.773359315, 7988808.1624949435, 7988906.976236418, 7988910.009982994, 7989092.759438591, 7989124.449710925, 7989671.352871259, 7990082.573174284, 7990284.375, 7992427.689137047, 7993396.875, 7993524.7056525415, 7994567.1875, 7996791.394235089, 8002341.22893106, 8008888.706174239, 8015499.39985392, 8022709.306819818, 8027439.330037742, 8030805.18366673, 8034193.33023377, 8036245.575098394, 8040448.877313626, 8041168.75, 8051543.586597698, 8053092.800489686, 8069217.1875, 8070491.43459967, 8070780.06230259, 8071221.306265323, 8071436.19591697, 8072224.597858433, 8072236.04466406, 8078301.5625, 8085142.1875, 8086095.883092697, 8086843.900826846, 8095682.8125, 8097599.335297899, 8098449.921927094, 8100621.875, 8113432.669089745, 8132268.75, 8133417.541209648, 8133514.224606887, 8134643.42341005, 8134664.06551639, 8137130.708625445, 8137862.5, 8137878.944917141, 8141108.806941345, 8141263.363422681, 8147632.047239888, 8148051.5625, 8156257.969258974, 8157063.961581178, 8158028.125, 8164251.5625, 8172330.164418851, 8172988.858313934, 8173231.074621968, 8174684.181054305, 8174693.66331909, 8175437.5, 8176765.625, 8180917.08942323, 8181070.3125, 8181985.478377932, 8188133.113517633, 8191225.0, 8194910.696156347, 8195230.285247176, 8195941.14705925, 8196006.493508691, 8196091.316648359, 8197783.908036633, 8198006.373390383, 8198193.029138742, 8198549.405052618, 8199091.830355826, 8199127.219024796, 8200631.25, 8201810.0275806505, 8204530.573994766, 8206532.771050896, 8207615.495733922, 8208060.9375, 8209028.425943467, 8210918.75, 8213790.812071142, 8214154.627367315, 8214773.4375, 8214860.477904891, 8224606.690917827, 8226349.106899924, 8240745.3125, 8241163.989262091, 8244292.691775319, 8245121.341707934, 8246932.249129858, 8253646.462389896, 8256295.3125, 8256992.665560138, 8257657.457111735, 8258025.99521711, 8259339.627188285, 8259421.269096273, 8259637.5, 8259793.75, 8259996.342079893, 8268168.644974795, 8273247.98781604, 8273698.449441446, 8279913.581935577, 8281814.873063841, 8285563.041816336, 8285992.219815592, 8295157.8125, 8307004.6875, 8307778.16462117, 8312820.053825594, 8315068.75, 8318909.375, 8319346.7022849275, 8320959.51955246, 8322958.276357151, 8323635.9375, 8326462.5, 8327119.698875081, 8328856.886689487, 8328865.872508739, 8329042.1875, 8329183.310393668, 8330868.75, 8332154.318515076, 8332431.851835073, 8333005.939833883, 8344917.139539952, 8345017.848168694, 8345028.984470393, 8345101.200478874, 8345154.6875, 8347790.595079736, 8348184.375, 8348481.847138101, 8348798.323300145, 8349975.0, 8351108.5390348025, 8352745.3125, 8353366.681487166, 8354055.86912401, 8354090.179756605, 8355298.086593712, 8357524.867135812, 8358096.821509521, 8359747.096733614, 8360049.133001388, 8360107.8125, 8362599.410322767, 8364214.944113611, 8365468.104667674, 8366826.670115858, 8372797.757134456, 8377465.623356395, 8381116.138994239, 8381486.422135567, 8381949.494008318, 8382114.378052876, 8382203.103726287, 8382632.243394241, 8383035.545175293, 8383657.8125, 8384369.861543479, 8384456.587974451, 8385195.3125, 8385450.49152843, 8387746.19936776, 8396322.604098218, 8398262.5, 8404115.625, 8411498.82663238, 8411562.2865355, 8411630.156309186, 8418086.418845294, 8425528.272812566, 8426549.587384993, 8426649.930417964, 8426651.5625, 8428378.911076684, 8442964.712998714, 8445427.346831286, 8449172.23503607, 8472957.807191337, 8474709.307133455, 8479746.875, 8480181.532991873, 8481876.5625, 8483203.46020092, 8486679.291630851, 8499178.125, 8500237.037629437, 8500923.13087573, 8503458.057828847, 8504450.617789015, 8510995.31182585, 8519287.398007125, 8519975.99127559, 8526613.51602813, 8541220.014202094, 8544398.141922724, 8544431.661172206, 8544669.305295764, 8544859.73315177, 8549177.818793707, 8566363.702775918, 8567174.671096686, 8573540.05993782, 8573764.421635494, 8573868.148514887, 8577046.989783531, 8624406.002554867, 8626187.084078304, 8626450.962340042, 8627381.25, 8630031.25, 8633386.281078508, 8635075.0, 8635994.846360374, 8636854.737686766, 8640946.868170207, 8643645.434000703, 8666971.875, 8666979.83078491, 8667507.461310793, 8668561.293217251, 8674600.0, 8676744.199078204, 8745140.747039506, 8759292.266792601, 8760371.685792187, 8761600.0, 8767172.080843365, 8767765.688216133, 8800094.372590352, 8807743.146247046, 8847274.458694091, 8848089.271126544, 8848091.040892996, 8848830.044555187, 8898729.981453996, 8899968.29673324, 8909408.024122292, 8953784.171646878, 8992236.775898192, 8996951.647844832, 9090089.751721103, 9104393.702994226, 9161131.632120542, 9204985.359298036, 9207777.56404629, 9233695.3125, 9236164.0625, 9282996.875, 9318139.342076836, 9320942.1875, 9321984.810658012, 9336543.788558409, 9336851.5625, 9347667.416351655, 9347671.583738124, 9353560.959470592, 9359206.827378651, 9362620.623766795, 9365501.236606956, 9367457.8125, 9376531.25, 9377617.631623073, 9378806.051146887, 9381010.256184403, 9382635.540344317, 9385301.468655352, 9395782.443282519, 9397959.837255612, 9399159.623279925, 9403006.212950217, 9428318.75, 9433664.816657271, 9443781.144357217, 9447590.088657109, 9447731.665858032, 9461282.8125, 9461763.177764589, 9463056.629818615, 9471374.243419934, 9481480.405251129, 9496746.823307004, 9503038.510322211, 9504752.766392617, 9507084.227292638, 9513454.949834991, 9514302.058906794, 9522224.401176, 9522371.875, 9523708.349224323, 9524716.863332242, 9526888.839407412, 9546202.508930933, 9562309.188179925, 9563087.5, 9566379.6875, 9566450.507291362, 9566837.456013689, 9566845.730231676, 9573985.57624729, 9586693.386330161, 9597806.649041189, 9614478.834643384, 9614485.203848993, 9616798.71421907, 9616816.534915026, 9617073.4375, 9617750.516651504, 9620735.9375, 9622712.5, 9650073.095742736, 9677226.873636073, 9679865.625, 9681749.981182834, 9683851.5625, 9684545.700254628, 9691275.933747265, 9691327.522451386, 9695437.127847621, 9696242.960376302, 9696472.027171386, 9696795.704712471, 9697387.534303626, 9698362.5, 9700421.71820686, 9704104.6875, 9704108.098229589, 9706619.937844656, 9706781.003840826, 9708212.5, 9715301.723629229, 9725369.567822196, 9728095.3125, 9740413.133220958, 9745455.404159328, 9749749.368601777, 9753953.634432262, 9755356.25, 9755804.493279975, 9784682.8125, 9785901.84889804, 9786927.13485254, 9787561.778163185, 9787599.607890667, 9790172.117380595, 9798104.419968879, 9802535.536297029, 9803804.6875, 9811330.08402447, 9814625.0, 9821216.79249528, 9822701.63289776, 9827393.68124478, 9831751.538817715, 9832585.731464058, 9832640.555255944, 9833461.668614594, 9834343.264982369, 9835631.25, 9835631.290761584, 9835636.946483849, 9839710.9375, 9843626.5625, 9850996.160195237, 9851418.419509048, 9851657.8125, 9852063.23696596, 9854236.75928791, 9854254.6875, 9854340.017812025, 9854673.428850586, 9856229.929572864, 9860598.47720342, 9861524.466785507, 9863064.198526815, 9867081.812428031, 9867852.912196439, 9869064.0625, 9877882.8125, 9881052.353181079, 9881810.633973658, 9883144.727115631, 9883472.790309172, 9884164.951405767, 9886453.91332515, 9905844.290343827, 9913162.5, 9914558.843559522, 9914693.75, 9921849.868732976, 9922983.229420906, 9923415.939595591, 9931432.959373474, 9936193.563414194, 9953495.3125, 9959853.125, 9961582.548863841, 9963306.742892168, 9965208.849709604, 9967071.455442907, 9967303.955066612, 9978734.030708479, 9978775.949514281, 9978835.49898842, 9979157.8125, 9980033.639738088, 9989402.83193443, 10008969.992741602, 10022232.743212353, 10023338.859526517, 10041826.5625, 10054122.169130575, 10057807.342285154, 10058298.046771523, 10064129.330932867, 10064326.29166588, 10071270.70740524, 10089625.525058929, 10099723.978991916, 10100052.335302837, 10101594.888519743, 10103838.785092808, 10103853.125, 10111418.4044748, 10127112.695207879, 10128053.125, 10128889.99304602, 10130483.574287666, 10140443.75, 10145681.855029102, 10145719.056956379, 10147265.625, 10148084.375, 10148700.098291764, 10160453.125, 10161338.544998806, 10164789.410842156, 10173055.609876046, 10177815.29015418, 10180962.027372824, 10186048.4375, 10186890.497288294, 10187656.25, 10187873.086673582, 10188110.9375, 10204199.621722672, 10204228.125, 10204723.4375, 10215157.524840113, 10222595.3125, 10223133.527475473, 10233328.125, 10233782.8125, 10235378.125, 10240416.830753794, 10284532.402007965, 10286941.623832127, 10306453.49212985, 10312236.600269215, 10316203.909517305, 10339564.430526463, 10351424.046976399, 10381239.33491677, 10390142.1875, 10419204.513843821, 10419210.526130516, 10419437.87984003, 10450751.660972508, 10471269.558557436, 10487049.908031056, 10506867.935337894, 10513844.117959103, 10519930.203940718, 10522408.294639418, 10522427.293594375, 10525432.236229751, 10551470.3125, 10554737.5, 10589300.0, 10598669.653904874, 10609411.3328629, 10613519.48667803, 10619802.048836937, 10641332.675119668, 10684308.981685212, 10703730.651403194, 10735157.990600245, 10762406.954880364, 10763796.875, 10763806.226339675, 10811435.064740641, 10816931.44434252, 10830037.5, 10864964.092279859, 10878894.452563817, 10883937.700851236, 10898554.971504852, 10903777.709150009, 10944076.029896436, 10955061.63675778, 10974590.625, 10979353.26929745, 10986004.106708672, 11023191.014512843, 11023196.761493951, 11025033.585715333, 11039058.659987703, 11046062.309414782, 11060944.162688093, 11076667.1875, 11079042.1875, 11106282.476018542, 11106644.78801568, 11108125.025587887, 11113914.994729575, 11122323.4375, 11124715.641115729, 11148002.488414373, 11163793.75, 11170679.67251729, 11181312.5, 11238161.106840722, 11279101.5625, 11295028.315722834, 11298303.125, 11321042.615004485, 11323721.875, 11351673.870317273, 11426077.88667376, 11507654.530796602, 11714832.329722142, 11842606.572068023, 12291746.439253643, 12334015.531765195, 13078550.807643643, 13980589.0625, 14024629.512639223, 14285822.167834196, 14381934.20079878, 14382802.222671906, 14386058.185082866, 14389854.357094342, 14395917.398269538, 14397232.522111746, 14412448.394065112, 14413050.495006274, 14423558.370651884, 14436807.099987978, 14436860.9375, 14443112.10015251, 14449467.1875, 14455716.860430531, 14458211.30499485, 14466097.132826135, 14468181.25, 14474492.103513928, 14474615.625, 14477892.265480937, 14478103.08323015, 14480991.960050032, 14481078.125, 14483257.56010214, 14486082.205541432, 14487395.860005382, 14492160.796226813, 14492240.475660263, 14494945.594185751, 14495008.41794064, 14495052.114969736, 14495058.542967688, 14495450.796868086, 14495886.552350689, 14497246.875, 14497878.795454988, 14500045.3125, 14500497.620664729, 14500947.93872488, 14500979.29220268, 14501014.45391987, 14501070.3125, 14501187.15307695, 14501569.505802706, 14503512.011226345, 14507512.406887285, 14513695.20976066, 14517272.178527588, 14517966.885679932, 14518190.846450187, 14523139.0625, 14524990.656983834, 14526118.336690795, 14527208.030423407, 14530020.3125, 14530164.93286819, 14530206.318741001, 14531132.245553862, 14531803.125, 14533169.423923474, 14534086.91503919, 14534311.022531524, 14535277.404221753, 14535810.933015227, 14536884.202636134, 14537443.289376885, 14537848.622792026, 14538086.074500544, 14538180.991082808, 14538636.765629081, 14541480.705475522, 14542195.3125, 14542594.455632625, 14542837.16212587, 14544765.625, 14544842.47515967, 14545803.576834418, 14547242.00550072, 14548956.847030647, 14552573.580544544, 14553253.704747446, 14553591.230014624, 14554157.8125, 14555046.260362947, 14555097.73390808, 14558213.948498953, 14559604.808597181, 14560120.3125, 14560637.392420528, 14560906.185878552, 14561710.281859139, 14561819.565852877, 14563361.622112198, 14563421.847609341, 14563809.911046399, 14563961.394680386, 14564205.0254396, 14564315.625, 14564401.5625, 14565572.93710062, 14566373.4375, 14566524.666622518, 14568659.375, 14568768.75, 14569025.220017102, 14569230.68212805, 14570243.821584422, 14570250.58178676, 14571244.259813039, 14571296.5401665, 14571323.4375, 14571657.438466355, 14571919.502548106, 14572226.344996957, 14572324.497133955, 14572725.696661653, 14573348.873828266, 14574213.240100367, 14574224.565235632, 14574477.919677591, 14574517.236215059, 14574615.122449357, 14574638.25777586, 14574638.317634847, 14575602.608303845, 14575652.516429203, 14575653.763332963, 14575690.287681106, 14575713.890683724, 14575718.963228025, 14576314.976881564, 14576403.125, 14576871.821319291, ...], [26.37322230760587, 13.280419197139992, 49.32458928840813, 8.784417646272175, 15.464792737080106, 67.15077378908515, 14.577545734589386, 10.079890833771772, 27.557625717940525, 10.979331717692693, 7.480671959330259, 26.447995090826105, 8.693079729589861, 22.365198610889813, 61.1383834098296, 18.83056645281275, 5.662968352915564, 21.52391888124659, 52.54834696157369, 25.07848099658554, 15.949974249070046, 7.634778250922316, 6.470566732761206, 22.806049513350345, 104.62233455744237, 22.28393086388408, 17.177092066291923, 66.5118332210057, 101.27941621428829, 162.47299021982064, 10.756258746089319, 57.789369382874675, 18.187208397160163, 118.41821426157199, 5.199728127424223, 8.861916812420427, 91.33654286011958, 16.19542372989298, 34.39329127696213, 10.296726730598103, 8.803217835210782, 11.914584174900508, 49.75174080928261, 11.79908113050575, 14.359257358138194, 88.5736376336722, 80.90683751209734, 8.297903381786494, 19.410982443693094, 82.51754923871091, 31.563241867908328, 10.02035401873029, 12.763617708378954, 99.1460445813382, 6.0946167771297795, 34.085886171514844, 10.334719002548956, 20.196307833983198, 17.914301904202876, 38.484060753820174, 128.99015689389856, 16.369646038281772, 20.625550893885215, 58.6782168058737, 66.07841861788368, 5.9093261920623, 24.396201513191613, 7.292727106206498, 11.79289998956224, 76.82524140570877, 124.73955814391317, 74.05607329571592, 53.36281298080917, 5.8300867435590575, 44.881741402958795, 50.8122474790179, 38.526029539434155, 38.74290002837222, 72.18847076956482, 76.6079747477871, 11.030987003965697, 23.212821585704233, 101.71643888026315, 8.200360346554776, 31.35208399665429, 11.77007117687729, 82.67309059014089, 103.17386845851517, 49.21803101652961, 23.181809091662554, 15.672824898647589, 70.41768028914858, 31.63592659522373, 7.966637772421286, 5.040135589699556, 55.81766079872796, 124.96920849930446, 20.199547129373055, 16.724249131562786, 20.250747010234655, 40.01935327931479, 19.44617336788227, 5.869586043440185, 24.82519470244781, 19.59098760515739, 72.6622906499783, 57.71846734467462, 40.74409304042207, 7.258275321004143, 50.04608383730773, 13.406672580656474, 23.416289506203867, 34.455113338658435, 44.55799124141548, 15.823130106722829, 7.672101787664823, 25.303362806814153, 13.15509554073936, 8.04313035127779, 18.528008135716107, 37.42097744323896, 35.32805332644446, 38.56654437939023, 18.836259978004186, 32.9380808855216, 48.48576171006889, 19.106828957705982, 122.40368881938687, 5.454667587811338, 24.40092954817333, 9.508178563100817, 9.865125160650528, 56.76787773224578, 120.5086979113691, 11.402587055329022, 99.69031941104836, 70.9670198538536, 26.104310628754284, 15.41721451226164, 41.434666786365696, 68.822935689323, 11.236248369076467, 40.292489911141566, 84.87021059416175, 8.476876735060856, 18.683387619685742, 36.59266087836481, 45.93233661956403, 50.49759588226847, 5.51128041087979, 55.21312642563865, 70.89323714425842, 15.391830718728533, 112.92199909021069, 11.220721833578992, 51.09000999571607, 21.766035759505904, 11.189673671003032, 10.86945915718115, 18.913165131512297, 161.95425242201827, 20.36052266108695, 24.11881327071573, 29.758797570105077, 44.2024678360294, 25.459081459250157, 5.192088564367262, 53.36045430963395, 16.87588577416215, 10.557521946806908, 62.52579868369519, 6.949241358998913, 24.098488143697796, 46.51824622452895, 24.213908263541967, 30.99196946008063, 95.56466041376977, 37.99248188555137, 21.72265510124588, 59.71823687146965, 69.05056845276289, 31.636463400287546, 6.593530141712331, 15.604897498543997, 20.542345954817407, 8.013246332785457, 15.48971563883106, 18.779428856023152, 32.453397572299075, 7.485418423381098, 17.566334631887838, 12.66829572745187, 88.30492273557236, 92.79652889193831, 55.63655454181011, 9.48379440540844, 6.221077985184647, 16.1178246089338, 70.29399806270558, 78.41285043916426, 41.50362060160856, 24.206820034814164, 6.270707590185226, 34.834713561914405, 74.66541315590722, 181.40957228026127, 56.32370029754451, 23.542362913613342, 5.608180020114206, 22.2679489076077, 61.648783926300624, 8.947464559269825, 6.2541858862149695, 17.93899058736672, 189.3572023026967, 30.89780599759268, 44.335777108856185, 26.34703912308931, 10.818606784940826, 16.590372644176707, 7.422641853605352, 72.33816868228607, 21.899579004854562, 25.705298922157333, 6.819596970211568, 41.67013245539149, 26.12194700938948, 16.662344794982292, 69.21559358513129, 7.240935563446985, 54.929512020791066, 33.86259420365833, 36.77542338235505, 56.477159692476135, 26.940005335815712, 11.076987379830989, 13.203337416889045, 21.87708455130687, 61.980362876961514, 92.77031700902951, 15.712428239451455, 30.78561823473555, 21.127053088706777, 17.324937448594877, 26.689553501176036, 102.038989088348, 8.975869910400622, 85.70940369678753, 94.11934927502881, 72.58270418301927, 34.53372904310414, 81.406504623861, 28.110656446594824, 49.974192468927356, 67.01396368886608, 14.659680597851082, 59.4696515992093, 51.29144493825869, 33.43569069348747, 13.893290196162212, 11.065570109796578, 10.551963685333064, 34.345119195319086, 27.246646424292432, 81.18841233954929, 19.694335244682545, 9.831501425881603, 9.758709642438989, 75.70632271973543, 33.72508231982115, 28.395743518238543, 5.0594146035473795, 184.47535783187965, 68.44797449679803, 61.76243184409825, 43.86960203451952, 21.124752462301416, 13.436846732324813, 10.290641816754308, 28.53251152905152, 17.989641884650034, 117.0429106985583, 15.43095038688253, 26.476628234884277, 74.6670513973972, 5.946575403368935, 97.26069763778605, 47.37670069216304, 14.729011400324701, 6.081408685688808, 24.65080018760004, 15.791852072093926, 7.669663381803427, 83.13848210070529, 44.463140425518695, 21.168085663132935, 34.509538398818364, 24.93938287751547, 13.713222539285812, 6.499268209475695, 11.668560964303627, 14.001755367432446, 66.93462835095863, 5.429725274604914, 42.77398616548544, 89.00611856495786, 17.55300849863552, 21.106107856847345, 13.876228491281081, 63.21193615093198, 67.94890990254224, 51.32960489638845, 23.50982771944722, 56.91871665751325, 79.22973760996476, 13.943184909956473, 23.391301601158037, 18.687274679886873, 37.03689892773282, 14.780688887013522, 21.005691662760494, 21.275158376984834, 7.518911985243787, 35.726215469154724, 13.148414812818665, 62.85006636349854, 23.8232145855495, 55.92862811229103, 8.740060600172157, 21.015681394758175, 19.533130862594273, 52.3499420339856, 11.02278326282116, 28.417143428656775, 96.6344047760964, 13.551293336907467, 33.56377643559812, 100.42074785650884, 39.32524807607199, 25.667889813300093, 21.282589727922, 63.53639448763667, 75.91137206630864, 7.7446660139848875, 66.40393782631698, 36.451712236968675, 49.313816086429085, 5.948792667492426, 49.351145649035146, 43.83430827585631, 23.98921086276832, 15.549339903593252, 74.48349569165313, 42.83965623840089, 27.070255691693614, 131.97574773556715, 8.212168129748228, 33.89090153038425, 16.486032164979445, 8.374203772611923, 35.30381748738634, 22.839414578235484, 22.376549385373632, 43.46109361089478, 6.939034612191376, 8.893214150508578, 21.058006590536635, 19.769811942189108, 30.8537619802817, 88.0602083814278, 22.30590719730748, 47.45182065503326, 28.799693625473143, 8.555980162640504, 153.87264359715283, 46.333599128930196, 25.2070574173615, 7.098850789574005, 46.4706416163143, 35.04010737348856, 118.54940966746084, 57.96277509895747, 52.02838197189348, 6.305993929357662, 61.44590468385846, 84.78125208017946, 8.630170698839592, 61.81295485501196, 15.958670541103688, 176.75127420173445, 5.326171192630704, 15.433640330698934, 38.4164200105098, 6.973373314860393, 13.735097245714549, 12.336558499826136, 52.024549675345796, 127.31099382940602, 21.92735431906192, 35.5812704811281, 91.41237770899964, 41.564395777718225, 43.537458828709305, 37.54734093459995, 15.705932377312747, 27.388885924248335, 73.73301506787965, 13.43808467116164, 25.802492921537002, 26.78044837569645, 40.35385791794657, 13.525136209322152, 84.6747326618242, 8.023355583690941, 86.49270039711493, 22.411527847300505, 45.77362228329934, 17.141676909174166, 96.89795955987951, 28.283912399837188, 12.142201032404506, 20.497932745523478, 53.676767455414094, 85.59063271613522, 32.367593981489044, 29.287017694218207, 5.678724379200607, 9.341520792951583, 6.208333564522904, 7.3521758430943756, 7.811708749375623, 6.4921689425382825, 73.94906150084137, 59.13389116571595, 52.199854355330224, 8.154364379544944, 70.66145356735049, 41.73341052283006, 46.26642332093487, 10.912570750943331, 22.321327744473543, 83.66747200198327, 41.75306960017772, 31.051570903614298, 165.1665911883325, 15.977010613386165, 74.40619235868024, 66.26481697291455, 83.10870422078891, 73.39554019895644, 5.859894640269528, 13.877870696852845, 38.14043048519378, 12.345556876850909, 18.66531909659936, 13.720519878639507, 36.65149770858186, 154.04689884381793, 39.697589168111634, 7.834501376218446, 5.929521634299544, 39.0758414946504, 5.113029169650263, 29.930957221384936, 66.20572396573301, 22.7698577949762, 5.381721281025182, 7.481067169617508, 9.221530182529127, 11.045114550911746, 25.580766281817105, 16.697580849274097, 167.0371511185851, 20.642855120753417, 108.6715240205023, 20.156294754984035, 25.332451000463045, 7.956823070304691, 48.901472687617186, 32.11814992001429, 17.178321681713985, 18.77385552402091, 8.460807006366505, 9.313479596040729, 13.140684156613812, 28.233469247149177, 45.90158533906478, 21.99669543462269, 5.969388895599185, 63.09453921966204, 106.05149588563431, 19.903412158874826, 26.202728250276785, 50.17333978666642, 50.409303620894086, 16.665860556652703, 14.185856499665109, 124.06008221076542, 22.412257991446523, 104.2261767793705, 70.52527740277488, 50.30084265126912, 51.51460625467654, 33.09243603212626, 160.2755132889809, 12.623726242942324, 119.72048646731228, 14.921313817251244, 9.274669956738382, 53.21956836149461, 46.58938052808233, 32.95959532935031, 35.132642496053144, 10.560607242613269, 111.20849310204059, 21.876870484893622, 125.96455861009684, 18.716093467533838, 9.914788630249143, 9.330833206886739, 114.82335645813446, 78.82281961083633, 135.17464945873846, 23.772507927051745, 8.136220621408446, 65.19699846837196, 171.71896071036048, 103.8136436770814, 22.69918158244404, 20.91618991309133, 7.488458514102481, 48.962488542427955, 81.13518853297147, 43.449596201924564, 25.689011900273968, 10.76177435790644, 5.444193473623279, 13.059854184877105, 48.366012384050435, 114.80205004033554, 101.89373490666505, 34.56876294371834, 7.442916719650978, 67.46101712341178, 35.94380014477795, 15.425759371347084, 82.69828359180458, 15.517295800937696, 46.76821454217875, 5.477244302760312, 50.224535540867585, 19.366238776287602, 9.436771243770773, 99.870455582475, 21.712880941533566, 56.898584943942794, 15.788769066848383, 15.188061413353187, 30.738561476339857, 26.744379546422252, 49.27108677016611, 59.16909185268575, 7.235244099955937, 16.502791623893028, 32.93002471631952, 15.027212695476543, 130.10361714527303, 14.21921239079406, 7.937498564071599, 107.11311668703773, 111.46114959811953, 118.85449155362157, 5.174357496046359, 24.802154848340024, 13.162151684703838, 42.98018564652865, 56.28634553257169, 36.82111601286912, 36.17673290168483, 63.751857667625046, 43.906457907091124, 6.493152633472943, 48.92349389001881, 44.7413248909447, 13.936555032467034, 79.05461992019752, 17.718457976742535, 9.609236162695904, 7.489472441385478, 142.94369142325996, 47.38899776953899, 6.559040460005825, 54.400560727424704, 21.709505029780917, 31.648367011381975, 51.62946097825293, 33.633128499492805, 37.96848786407209, 11.539304246242121, 69.852967913658, 92.94925650134556, 92.32347041665072, 76.1316962948824, 6.987256753671049, 8.51945458248062, 82.36274499438323, 59.78382194773677, 7.746641850157564, 60.17423984080483, 18.6282948387546, 39.26176162800708, 58.84117622157809, 6.693964671092089, 64.38703119788477, 25.64310715636099, 5.739096180975698, 51.055719896579845, 51.26977419391593, 104.18682189931886, 25.37841704825307, 24.785486414753134, 5.375433221876938, 25.31277753978932, 94.11714650771998, 96.20777512214111, 5.1773468816015535, 14.77646339558301, 11.850101806132779, 36.66843552039718, 9.041732493985947, 11.882722155458517, 18.572390394854125, 18.966063976233762, 5.963871689963087, 51.58342124598134, 98.45705919208348, 186.7187943160344, 67.71648609089496, 47.2162233302777, 120.69689208678912, 16.903970539426577, 51.52997373527999, 67.48972625790111, 50.1285638736128, 26.67471925748533, 20.29817676901096, 5.888595192341573, 83.71763710002456, 19.020353965553703, 104.47544089072727, 6.3180568307842195, 24.691738914373722, 30.48556485637802, 14.375768154526954, 63.405917679965, 69.27300333389925, 50.048118185129255, 51.3942623746114, 28.972986812191227, 17.772593086978652, 12.702418106074411, 50.08480930068077, 18.06616891243328, 18.62074109688457, 6.0248115770086565, 5.4183129205825065, 66.22024700424775, 48.30956594974262, 46.94411445897997, 47.3070466788683, 58.29100976340351, 19.53298322387881, 66.00665988107929, 20.55852282559283, 14.011252097162707, 5.59222762516154, 56.656663497816936, 12.734185131859434, 66.03247329664231, 69.91763982628339, 11.239555249955053, 35.69042371929731, 19.570066511837684, 63.02846841235332, 5.067630230062979, 34.5160925012827, 84.20475930332167, 53.133889492685555, 19.243253481290644, 13.181829219337658, 54.782332775939594, 98.38858955169485, 12.773881019859678, 10.903889831710849, 101.55824537227107, 24.526442286106168, 69.15913317177585, 119.1232985676824, 5.504320018976716, 28.35493393879779, 11.528407073010875, 24.27006064956209, 6.20210183626295, 15.486630150393179, 15.957795763188262, 10.810611832807755, 49.585956120597025, 33.48523195492122, 14.529040938299612, 13.898400599186072, 34.60349709743468, 31.38595766756951, 59.343991766033156, 12.633032587415425, 62.70152391621269, 51.81134774092494, 64.74484480786657, 62.33920233492142, 10.928545056744547, 8.520084968233652, 11.657823601691007, 11.3653114255755, 25.316271487971168, 75.45345685168898, 77.42512621147193, 29.533832556827633, 7.257339764847798, 91.33805477776347, 36.15946842564125, 153.74738854494834, 6.696664378918514, 34.40803319710167, 8.067543246106375, 58.27766221824885, 19.428634851564695, 97.03286432085541, 23.50159439627206, 6.258483883378624, 41.91401698122554, 35.83097359641959, 28.560293891775963, 5.326063251150629, 9.021516832693411, 6.694349047193981, 24.130584403613057, 17.099898271690858, 99.0373475211475, 12.094594346208506, 5.873462950179021, 25.201287187846205, 74.5940847162729, 34.48478327632285, 6.696431486344012, 7.675400627575101, 83.05917656506787, 6.964681090879098, 46.10015479387323, 55.38582452343979, 17.888398658623906, 71.69604528071143, 80.56662353248177, 54.9053082809252, 34.53079261338789, 62.65358288271451, 72.85546831014136, 21.255793968491957, 20.20059358359227, 92.93997171214362, 69.30549168184697, 75.51433373481876, 24.318748673648052, 39.69296961009555, 99.57019239248598, 171.6500753813403, 110.51072017339453, 32.459439848271145, 78.68522941306287, 49.95252891934282, 57.20662689760182, 18.609106797166202, 76.76173732040607, 38.40442543565232, 67.16469637143099, 13.736288783931004, 10.541467590080769, 20.880651368794936, 19.977066916891964, 24.493074077363232, 16.262371625254076, 8.491281231164969, 12.235794133519427, 11.581994836458154, 53.86458892706882, 7.5416139819714605, 6.4244826857299895, 17.50759018181753, 15.330611389915608, 5.876331112462286, 263.4977202675119, 97.41947381664232, 78.80109570311349, 86.01059332138524, 17.164386009985016, 10.036896188550063, 20.76457136696193, 31.916567956444105, 81.47307571039906, 72.34349461625484, 64.66772833577214, 11.80754653912897, 10.043051970905577, 23.34329801016081, 14.442517711322102, 64.45643116303182, 5.669692137963309, 9.48667833825387, 22.648134674845164, 115.76362691333972, 28.06500337678416, 9.991715290150125, 105.81320769780943, 79.10111791223432, 15.056244306680107, 45.403465911433756, 24.06873334299152, 11.60267086880632, 12.2791178342151, 143.30978745603522, 28.111898016885892, 56.499408449858024, 5.540124977425752, 10.326933984371863, 11.796496550924237, 10.954806416926044, 27.090121850113864, 30.209459053422137, 35.652624482711985, 43.58853752114638, 30.98232073688613, 44.462139379767606, 55.15069742534621, 71.37603185502796, 16.262761896038665, 40.33183812417485, 37.979030644367974, 118.52517794336656, 12.966914269447019, 55.24944550039616, 16.75057503319776, 35.7135584979296, 15.628785841818155, 35.34303906779558, 35.40975152373791, 61.72513107411241, 73.4630730141229, 30.91798533631994, 48.38918202564904, 153.2480628825362, 68.27629925113548, 81.9025319131886, 41.157390005827395, 13.505535196656128, 59.43489045610086, 12.678344467525385, 54.00941579891396, 14.31443123746839, 9.591925333871009, 21.818370535275996, 66.02598223534886, 5.1741305841545255, 23.3699689683877, 15.810707252417208, 13.939284468688546, 8.263741016890386, 5.259213980603877, 23.057163878583335, 28.746818803663245, 30.218970696328597, 65.58765758506257, 53.490945307176176, 37.61599174471538, 9.662753958100387, 23.58813410522376, 29.861871585877143, 8.24265788727514, 82.9266354809921, 11.980873140217955, 11.063039527711627, 135.37437347926894, 45.42655296029683, 7.056647737389416, 5.436304611906, 61.92581751905594, 101.3517623046029, 25.88697499221719, 24.144635074605603, 23.579882775427897, 17.568975264604063, 31.633702231009497, 61.07847235947998, 100.27788051352081, 44.15201206841576, 31.200874207689846, 36.01402473832816, 7.897199822445143, 11.637660490164748, 10.56135809872826, 22.01033523031961, 75.11003933426822, 34.97404935628718, 5.428175667607307, 21.605824817601007, 16.998202342031377, 10.97082817171973, 16.24007376804315, 13.903690600471602, 25.703915715329725, 66.08188224868589, 8.303563641737341, 13.56991245935478, 22.88123298748072, 38.42160347803306, 49.39158418487591, 16.275295955971156, 21.169070427639987, 74.56718222340523, 12.37447573653504, 33.71662659013678, 8.332061170736324, 74.67014269173916, 55.94277310882511, 25.530583625056874, 23.41772511544133, 17.9166928318447, 6.508783877588855, 117.03885932794805, 5.371122705600369, 8.909835807357764, 31.686640806595946, 5.221779936194133, 13.793141780282124, 52.97813719274666, 16.164359131529952, 43.117284816410276, 6.244474690826448, 99.66992762300153, 39.35969030809173, 5.421109573151231, 5.219114839204194, 64.746866388889, 51.86226432895135, 12.801020757730168, 103.22067396489248, 76.69313117989735, 41.41329730376325, 40.93790431430769, 60.178962556412216, 34.28770083186588, 50.80498853286762, 150.36595234088875, 60.84044081091483, 7.809348622074493, 20.196289816548187, 27.644005700229407, 46.718449480844534, 58.30550538370303, 54.06802972019897, 112.50694288587243, 25.017065647928373, 52.145895201301975, 39.78376178096968, 17.412456620717247, 43.42487205694951, 8.324798642206286, 17.745264225720828, 18.605475292989063, 13.802366204498648, 54.59777887648295, 22.84898895126853, 98.25852490480591, 33.10798899177392, 5.896777465546826, 9.999226854543389, 7.7690605974963445, 7.894810408011503, 95.85470872250872, 25.04045671576393, 15.130497288192139, 6.995328809912236, 34.98230546289558, 5.148369734001787, 13.280550614552908, 45.08385838702054, 6.1570947969936345, 201.08979141501158, 75.15714731482457, 20.97329731510318, 12.937899733119773, 46.620250713055086, 76.15505378307208, ...])
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);
([6974532.69337237, 7071880.92738844, 7168485.214031319, 7247535.211055751, 7505640.315763228, 7508486.594126014, 7509674.90111621, 7509692.9573428985, 7511290.506190043, 7513904.590453993, 7520832.460414314, 7521217.673409682, 7521617.884478072, 7521944.857668944, 7522736.591134178, 7523431.996563772, 7523568.039232805, 7527722.940583884, 7535995.3125, 7536148.234790263, 7536479.929107577, 7536511.023871133, 7536576.456270248, 7539406.78199088, 7542639.0625, 7542674.551209452, 7547609.859415538, 7560596.875, 7561487.5, 7562070.146720766, 7565666.93610939, 7571444.550732341, 7572813.294701765, 7576472.896835287, 7576602.979394246, 7591715.012159036, 7623218.49262373, 7624750.294194555, 7640839.0625, 7645454.081745191, 7646800.86397643, 7670650.4511474855, 7679726.256208613, 7686678.5158827165, 7687763.900865128, 7693498.189826099, 7693609.375, 7697459.396356502, 7698614.887448611, 7700023.4375, 7700176.5625, 7700746.02852974, 7700919.593436108, 7703392.788877188, 7706020.3749418305, 7706269.8931485815, 7706833.800601515, 7711153.529849507, 7712638.4081193395, 7715057.022435567, 7715117.1875, 7717520.642719472, 7718119.720900448, 7725792.1875, 7727078.791038933, 7727518.397997035, 7728549.748904798, 7728567.801312507, 7729372.262605019, 7730007.469092869, 7730012.5, 7730612.638043421, 7730688.70976425, 7731579.902833046, 7732051.5625, 7732560.9375, 7732996.875, 7733272.45616708, 7733657.27563404, 7733885.9375, 7735516.832050186, 7735546.767526867, 7738933.853742769, 7739295.145824595, 7742199.950587377, 7743342.562952256, 7746248.78076571, 7746850.207284126, 7747745.3125, 7747763.716615705, 7750099.970798599, 7752069.320161002, 7756027.94251293, 7756250.904169319, 7756532.728760986, 7758607.916485981, 7758650.142598637, 7759459.588479616, 7759751.6393258525, 7759755.891469421, 7762889.0625, 7763249.267007496, 7763456.974260583, 7763851.342203961, 7763880.535546403, 7764125.2759617865, 7764935.693971489, 7764985.9375, 7765016.121126705, 7765318.75, 7765808.904177334, 7766257.395555612, 7766455.550544118, 7766668.298539405, 7767392.40105072, 7767459.561468417, 7767615.437548279, 7767890.061371177, 7768296.384403247, 7768919.453161201, 7769199.615852888, 7769410.76064805, 7769565.625, 7769850.541054639, 7770877.963882384, 7772410.9375, 7773797.659641131, 7776039.367307405, 7780090.458554763, 7783876.311751421, 7786042.389418034, 7786305.257773814, 7789652.199832828, 7789922.539221553, 7790998.606518782, 7793816.997694236, 7798159.132405009, 7799874.517140901, 7803825.119448795, 7806045.855404668, 7809791.546095803, 7810690.191409491, 7813054.6875, 7814895.3125, 7817522.218319616, 7819311.663179343, 7819791.106592544, 7820048.232677775, 7820249.732949285, 7820394.854985387, 7820749.928911662, 7822568.128208826, 7824512.61333459, 7826118.187360812, 7827237.558704108, 7828013.645472088, 7832343.111323792, 7832408.178335015, 7833260.765750201, 7834236.69559963, 7834827.710800415, 7837566.565939829, 7837642.011398686, 7837930.643635239, 7838534.375, 7839243.572923268, 7843112.049261297, 7843114.0625, 7843492.6167170815, 7844441.800028157, 7844946.875, 7845118.051705222, 7846266.9142447645, 7846781.25, 7846874.735414748, 7847214.178111148, 7852143.75, 7853446.985503823, 7857874.522707959, 7857975.715514227, 7860121.607934544, 7860658.937850517, 7861864.709479153, 7863811.40258455, 7864008.545921655, 7864524.44470385, 7865923.57425891, 7866506.989355684, 7867209.271877407, 7868132.474559275, 7872388.052024657, 7874291.428377545, 7878784.156507125, 7879046.875, 7879519.656487459, 7880775.174890311, 7882040.251025384, 7883322.152805987, 7883712.324128805, 7884360.665883093, 7884674.872309201, 7884704.422385206, 7884935.965225023, 7884951.5625, 7885221.875, 7885232.717677537, 7885445.225579866, 7885938.74600979, 7886246.768512228, 7886265.199318469, 7887018.75, 7887046.383126284, 7887926.4588077115, 7887928.738127281, 7888096.875, 7888550.0, 7888589.446315823, 7888614.911659263, 7889049.792817726, 7889055.061889326, 7889357.283960869, 7889371.577598219, 7889810.47730452, 7889834.214019316, 7889897.149608436, 7890148.25021684, 7890379.5529282205, 7890380.075949749, 7890814.765614458, 7890873.873338675, 7890933.2519181445, 7891059.681391009, 7891371.875, 7891614.0625, 7892456.164447815, 7892578.092307129, 7892627.57957559, 7893194.850149967, 7893699.73685931, 7893815.625, 7894059.374325715, 7894449.195208259, 7895826.025005543, 7896372.385572671, 7896824.313270115, 7896882.8125, 7897621.422305818, 7898232.8125, 7900492.1875, 7900677.884390913, 7901370.3125, 7903234.375, 7903957.193795321, 7908849.521250127, 7908869.4393461915, 7910555.620944721, 7912783.846615378, 7912807.8125, 7913929.176073315, 7920615.31982352, 7921428.084879797, 7922044.910038238, 7923747.105557662, 7924157.363922005, 7925021.875, 7926072.736063032, 7930075.537616948, 7935386.403030842, 7943251.244165184, 7946242.127494873, 7947328.118434422, 7947424.471746795, 7948583.428041738, 7949362.15346419, 7950047.951971886, 7950410.9375, 7951535.399764718, 7952516.727463883, 7953900.951685926, 7953981.843127096, 7954004.191479709, 7954893.798472533, 7955179.810245695, 7956081.137126199, 7956776.5625, 7956781.331964377, 7957394.549658225, 7959285.849802378, 7965308.449669327, 7965360.872915851, 7968032.579840389, 7970145.519036786, 7972229.867497343, 7973710.9375, 7977148.4375, 7978121.341789695, 7981705.547287471, 7983480.716915705, 7983957.882509899, 7983984.452242405, 7984420.632997603, 7984452.854472185, 7984489.940424054, 7984508.6066076895, 7985250.795807048, 7985329.6875, 7985452.112275822, 7986082.272810599, 7986207.501801527, 7986222.022884111, 7986504.6875, 7986718.75, 7986762.180902742, 7987752.56595857, 7987879.042579213, 7988263.773359315, 7988808.1624949435, 7988906.976236418, 7988910.009982994, 7989092.759438591, 7989124.449710925, 7989671.352871259, 7990082.573174284, 7990284.375, 7992427.689137047, 7993396.875, 7993524.7056525415, 7994567.1875, 7996791.394235089, 8002341.22893106, 8008888.706174239, 8015499.39985392, 8022709.306819818, 8027439.330037742, 8030805.18366673, 8034193.33023377, 8036245.575098394, 8040448.877313626, 8041168.75, 8051543.586597698, 8053092.800489686, 8069217.1875, 8070491.43459967, 8070780.06230259, 8071221.306265323, 8071436.19591697, 8072224.597858433, 8072236.04466406, 8078301.5625, 8085142.1875, 8086095.883092697, 8086843.900826846, 8095682.8125, 8097599.335297899, 8098449.921927094, 8100621.875, 8113432.669089745, 8132268.75, 8133417.541209648, 8133514.224606887, 8134643.42341005, 8134664.06551639, 8137130.708625445, 8137862.5, 8137878.944917141, 8141108.806941345, 8141263.363422681, 8147632.047239888, 8148051.5625, 8156257.969258974, 8157063.961581178, 8158028.125, 8164251.5625, 8172330.164418851, 8172988.858313934, 8173231.074621968, 8174684.181054305, 8174693.66331909, 8175437.5, 8176765.625, 8180917.08942323, 8181070.3125, 8181985.478377932, 8188133.113517633, 8191225.0, 8194910.696156347, 8195230.285247176, 8195941.14705925, 8196006.493508691, 8196091.316648359, 8197783.908036633, 8198006.373390383, 8198193.029138742, 8198549.405052618, 8199091.830355826, 8199127.219024796, 8200631.25, 8201810.0275806505, 8204530.573994766, 8206532.771050896, 8207615.495733922, 8208060.9375, 8209028.425943467, 8210918.75, 8213790.812071142, 8214154.627367315, 8214773.4375, 8214860.477904891, 8224606.690917827, 8226349.106899924, 8240745.3125, 8241163.989262091, 8244292.691775319, 8245121.341707934, 8246932.249129858, 8253646.462389896, 8256295.3125, 8256992.665560138, 8257657.457111735, 8258025.99521711, 8259339.627188285, 8259421.269096273, 8259637.5, 8259793.75, 8259996.342079893, 8268168.644974795, 8273247.98781604, 8273698.449441446, 8279913.581935577, 8281814.873063841, 8285563.041816336, 8285992.219815592, 8295157.8125, 8307004.6875, 8307778.16462117, 8312820.053825594, 8315068.75, 8318909.375, 8319346.7022849275, 8320959.51955246, 8322958.276357151, 8323635.9375, 8326462.5, 8327119.698875081, 8328856.886689487, 8328865.872508739, 8329042.1875, 8329183.310393668, 8330868.75, 8332154.318515076, 8332431.851835073, 8333005.939833883, 8344917.139539952, 8345017.848168694, 8345028.984470393, 8345101.200478874, 8345154.6875, 8347790.595079736, 8348184.375, 8348481.847138101, 8348798.323300145, 8349975.0, 8351108.5390348025, 8352745.3125, 8353366.681487166, 8354055.86912401, 8354090.179756605, 8355298.086593712, 8357524.867135812, 8358096.821509521, 8359747.096733614, 8360049.133001388, 8360107.8125, 8362599.410322767, 8364214.944113611, 8365468.104667674, 8366826.670115858, 8372797.757134456, 8377465.623356395, 8381116.138994239, 8381486.422135567, 8381949.494008318, 8382114.378052876, 8382203.103726287, 8382632.243394241, 8383035.545175293, 8383657.8125, 8384369.861543479, 8384456.587974451, 8385195.3125, 8385450.49152843, 8387746.19936776, 8396322.604098218, 8398262.5, 8404115.625, 8411498.82663238, 8411562.2865355, 8411630.156309186, 8418086.418845294, 8425528.272812566, 8426549.587384993, 8426649.930417964, 8426651.5625, 8428378.911076684, 8442964.712998714, 8445427.346831286, 8449172.23503607, 8472957.807191337, 8474709.307133455, 8479746.875, 8480181.532991873, 8481876.5625, 8483203.46020092, 8486679.291630851, 8499178.125, 8500237.037629437, 8500923.13087573, 8503458.057828847, 8504450.617789015, 8510995.31182585, 8519287.398007125, 8519975.99127559, 8526613.51602813, 8541220.014202094, 8544398.141922724, 8544431.661172206, 8544669.305295764, 8544859.73315177, 8549177.818793707, 8566363.702775918, 8567174.671096686, 8573540.05993782, 8573764.421635494, 8573868.148514887, 8577046.989783531, 8624406.002554867, 8626187.084078304, 8626450.962340042, 8627381.25, 8630031.25, 8633386.281078508, 8635075.0, 8635994.846360374, 8636854.737686766, 8640946.868170207, 8643645.434000703, 8666971.875, 8666979.83078491, 8667507.461310793, 8668561.293217251, 8674600.0, 8676744.199078204, 8745140.747039506, 8759292.266792601, 8760371.685792187, 8761600.0, 8767172.080843365, 8767765.688216133, 8800094.372590352, 8807743.146247046, 8847274.458694091, 8848089.271126544, 8848091.040892996, 8848830.044555187, 8898729.981453996, 8899968.29673324, 8909408.024122292, 8953784.171646878, 8992236.775898192, 8996951.647844832, 9090089.751721103, 9104393.702994226, 9161131.632120542, 9204985.359298036, 9207777.56404629, 9233695.3125, 9236164.0625, 9282996.875, 9318139.342076836, 9320942.1875, 9321984.810658012, 9336543.788558409, 9336851.5625, 9347667.416351655, 9347671.583738124, 9353560.959470592, 9359206.827378651, 9362620.623766795, 9365501.236606956, 9367457.8125, 9376531.25, 9377617.631623073, 9378806.051146887, 9381010.256184403, 9382635.540344317, 9385301.468655352, 9395782.443282519, 9397959.837255612, 9399159.623279925, 9403006.212950217, 9428318.75, 9433664.816657271, 9443781.144357217, 9447590.088657109, 9447731.665858032, 9461282.8125, 9461763.177764589, 9463056.629818615, 9471374.243419934, 9481480.405251129, 9496746.823307004, 9503038.510322211, 9504752.766392617, 9507084.227292638, 9513454.949834991, 9514302.058906794, 9522224.401176, 9522371.875, 9523708.349224323, 9524716.863332242, 9526888.839407412, 9546202.508930933, 9562309.188179925, 9563087.5, 9566379.6875, 9566450.507291362, 9566837.456013689, 9566845.730231676, 9573985.57624729, 9586693.386330161, 9597806.649041189, 9614478.834643384, 9614485.203848993, 9616798.71421907, 9616816.534915026, 9617073.4375, 9617750.516651504, 9620735.9375, 9622712.5, 9650073.095742736, 9677226.873636073, 9679865.625, 9681749.981182834, 9683851.5625, 9684545.700254628, 9691275.933747265, 9691327.522451386, 9695437.127847621, 9696242.960376302, 9696472.027171386, 9696795.704712471, 9697387.534303626, 9698362.5, 9700421.71820686, 9704104.6875, 9704108.098229589, 9706619.937844656, 9706781.003840826, 9708212.5, 9715301.723629229, 9725369.567822196, 9728095.3125, 9740413.133220958, 9745455.404159328, 9749749.368601777, 9753953.634432262, 9755356.25, 9755804.493279975, 9784682.8125, 9785901.84889804, 9786927.13485254, 9787561.778163185, 9787599.607890667, 9790172.117380595, 9798104.419968879, 9802535.536297029, 9803804.6875, 9811330.08402447, 9814625.0, 9821216.79249528, 9822701.63289776, 9827393.68124478, 9831751.538817715, 9832585.731464058, 9832640.555255944, 9833461.668614594, 9834343.264982369, 9835631.25, 9835631.290761584, 9835636.946483849, 9839710.9375, 9843626.5625, 9850996.160195237, 9851418.419509048, 9851657.8125, 9852063.23696596, 9854236.75928791, 9854254.6875, 9854340.017812025, 9854673.428850586, 9856229.929572864, 9860598.47720342, 9861524.466785507, 9863064.198526815, 9867081.812428031, 9867852.912196439, 9869064.0625, 9877882.8125, 9881052.353181079, 9881810.633973658, 9883144.727115631, 9883472.790309172, 9884164.951405767, 9886453.91332515, 9905844.290343827, 9913162.5, 9914558.843559522, 9914693.75, 9921849.868732976, 9922983.229420906, 9923415.939595591, 9931432.959373474, 9936193.563414194, 9953495.3125, 9959853.125, 9961582.548863841, 9963306.742892168, 9965208.849709604, 9967071.455442907, 9967303.955066612, 9978734.030708479, 9978775.949514281, 9978835.49898842, 9979157.8125, 9980033.639738088, 9989402.83193443, 10008969.992741602, 10022232.743212353, 10023338.859526517, 10041826.5625, 10054122.169130575, 10057807.342285154, 10058298.046771523, 10064129.330932867, 10064326.29166588, 10071270.70740524, 10089625.525058929, 10099723.978991916, 10100052.335302837, 10101594.888519743, 10103838.785092808, 10103853.125, 10111418.4044748, 10127112.695207879, 10128053.125, 10128889.99304602, 10130483.574287666, 10140443.75, 10145681.855029102, 10145719.056956379, 10147265.625, 10148084.375, 10148700.098291764, 10160453.125, 10161338.544998806, 10164789.410842156, 10173055.609876046, 10177815.29015418, 10180962.027372824, 10186048.4375, 10186890.497288294, 10187656.25, 10187873.086673582, 10188110.9375, 10204199.621722672, 10204228.125, 10204723.4375, 10215157.524840113, 10222595.3125, 10223133.527475473, 10233328.125, 10233782.8125, 10235378.125, 10240416.830753794, 10284532.402007965, 10286941.623832127, 10306453.49212985, 10312236.600269215, 10316203.909517305, 10339564.430526463, 10351424.046976399, 10381239.33491677, 10390142.1875, 10419204.513843821, 10419210.526130516, 10419437.87984003, 10450751.660972508, 10471269.558557436, 10487049.908031056, 10506867.935337894, 10513844.117959103, 10519930.203940718, 10522408.294639418, 10522427.293594375, 10525432.236229751, 10551470.3125, 10554737.5, 10589300.0, 10598669.653904874, 10609411.3328629, 10613519.48667803, 10619802.048836937, 10641332.675119668, 10684308.981685212, 10703730.651403194, 10735157.990600245, 10762406.954880364, 10763796.875, 10763806.226339675, 10811435.064740641, 10816931.44434252, 10830037.5, 10864964.092279859, 10878894.452563817, 10883937.700851236, 10898554.971504852, 10903777.709150009, 10944076.029896436, 10955061.63675778, 10974590.625, 10979353.26929745, 10986004.106708672, 11023191.014512843, 11023196.761493951, 11025033.585715333, 11039058.659987703, 11046062.309414782, 11060944.162688093, 11076667.1875, 11079042.1875, 11106282.476018542, 11106644.78801568, 11108125.025587887, 11113914.994729575, 11122323.4375, 11124715.641115729, 11148002.488414373, 11163793.75, 11170679.67251729, 11181312.5, 11238161.106840722, 11279101.5625, 11295028.315722834, 11298303.125, 11321042.615004485, 11323721.875, 11351673.870317273, 11426077.88667376, 11507654.530796602, 11714832.329722142, 11842606.572068023, 12291746.439253643, 12334015.531765195, 13078550.807643643, 13980589.0625, 14024629.512639223, 14285822.167834196, 14381934.20079878, 14382802.222671906, 14386058.185082866, 14389854.357094342, 14395917.398269538, 14397232.522111746, 14412448.394065112, 14413050.495006274, 14423558.370651884, 14436807.099987978, 14436860.9375, 14443112.10015251, 14449467.1875, 14455716.860430531, 14458211.30499485, 14466097.132826135, 14468181.25, 14474492.103513928, 14474615.625, 14477892.265480937, 14478103.08323015, 14480991.960050032, 14481078.125, 14483257.56010214, 14486082.205541432, 14487395.860005382, 14492160.796226813, 14492240.475660263, 14494945.594185751, 14495008.41794064, 14495052.114969736, 14495058.542967688, 14495450.796868086, 14495886.552350689, 14497246.875, 14497878.795454988, 14500045.3125, 14500497.620664729, 14500947.93872488, 14500979.29220268, 14501014.45391987, 14501070.3125, 14501187.15307695, 14501569.505802706, 14503512.011226345, 14507512.406887285, 14513695.20976066, 14517272.178527588, 14517966.885679932, 14518190.846450187, 14523139.0625, 14524990.656983834, 14526118.336690795, 14527208.030423407, 14530020.3125, 14530164.93286819, 14530206.318741001, 14531132.245553862, 14531803.125, 14533169.423923474, 14534086.91503919, 14534311.022531524, 14535277.404221753, 14535810.933015227, 14536884.202636134, 14537443.289376885, 14537848.622792026, 14538086.074500544, 14538180.991082808, 14538636.765629081, 14541480.705475522, 14542195.3125, 14542594.455632625, 14542837.16212587, 14544765.625, 14544842.47515967, 14545803.576834418, 14547242.00550072, 14548956.847030647, 14552573.580544544, 14553253.704747446, 14553591.230014624, 14554157.8125, 14555046.260362947, 14555097.73390808, 14558213.948498953, 14559604.808597181, 14560120.3125, 14560637.392420528, 14560906.185878552, 14561710.281859139, 14561819.565852877, 14563361.622112198, 14563421.847609341, 14563809.911046399, 14563961.394680386, 14564205.0254396, 14564315.625, 14564401.5625, 14565572.93710062, 14566373.4375, 14566524.666622518, 14568659.375, 14568768.75, 14569025.220017102, 14569230.68212805, 14570243.821584422, 14570250.58178676, 14571244.259813039, 14571296.5401665, 14571323.4375, 14571657.438466355, 14571919.502548106, 14572226.344996957, 14572324.497133955, 14572725.696661653, 14573348.873828266, 14574213.240100367, 14574224.565235632, 14574477.919677591, 14574517.236215059, 14574615.122449357, 14574638.25777586, 14574638.317634847, 14575602.608303845, 14575652.516429203, 14575653.763332963, 14575690.287681106, 14575713.890683724, 14575718.963228025, 14576314.976881564, 14576403.125, 14576871.821319291, ...], [26.37322230760587, 13.280419197139992, 49.32458928840813, 8.784417646272175, 15.464792737080106, 67.15077378908515, 14.577545734589386, 10.079890833771772, 27.557625717940525, 10.979331717692693, 7.480671959330259, 26.447995090826105, 8.693079729589861, 22.365198610889813, 61.1383834098296, 18.83056645281275, 5.662968352915564, 21.52391888124659, 52.54834696157369, 25.07848099658554, 15.949974249070046, 7.634778250922316, 6.470566732761206, 22.806049513350345, 104.62233455744237, 22.28393086388408, 17.177092066291923, 66.5118332210057, 101.27941621428829, 162.47299021982064, 10.756258746089319, 57.789369382874675, 18.187208397160163, 118.41821426157199, 5.199728127424223, 8.861916812420427, 91.33654286011958, 16.19542372989298, 34.39329127696213, 10.296726730598103, 8.803217835210782, 11.914584174900508, 49.75174080928261, 11.79908113050575, 14.359257358138194, 88.5736376336722, 80.90683751209734, 8.297903381786494, 19.410982443693094, 82.51754923871091, 31.563241867908328, 10.02035401873029, 12.763617708378954, 99.1460445813382, 6.0946167771297795, 34.085886171514844, 10.334719002548956, 20.196307833983198, 17.914301904202876, 38.484060753820174, 128.99015689389856, 16.369646038281772, 20.625550893885215, 58.6782168058737, 66.07841861788368, 5.9093261920623, 24.396201513191613, 7.292727106206498, 11.79289998956224, 76.82524140570877, 124.73955814391317, 74.05607329571592, 53.36281298080917, 5.8300867435590575, 44.881741402958795, 50.8122474790179, 38.526029539434155, 38.74290002837222, 72.18847076956482, 76.6079747477871, 11.030987003965697, 23.212821585704233, 101.71643888026315, 8.200360346554776, 31.35208399665429, 11.77007117687729, 82.67309059014089, 103.17386845851517, 49.21803101652961, 23.181809091662554, 15.672824898647589, 70.41768028914858, 31.63592659522373, 7.966637772421286, 5.040135589699556, 55.81766079872796, 124.96920849930446, 20.199547129373055, 16.724249131562786, 20.250747010234655, 40.01935327931479, 19.44617336788227, 5.869586043440185, 24.82519470244781, 19.59098760515739, 72.6622906499783, 57.71846734467462, 40.74409304042207, 7.258275321004143, 50.04608383730773, 13.406672580656474, 23.416289506203867, 34.455113338658435, 44.55799124141548, 15.823130106722829, 7.672101787664823, 25.303362806814153, 13.15509554073936, 8.04313035127779, 18.528008135716107, 37.42097744323896, 35.32805332644446, 38.56654437939023, 18.836259978004186, 32.9380808855216, 48.48576171006889, 19.106828957705982, 122.40368881938687, 5.454667587811338, 24.40092954817333, 9.508178563100817, 9.865125160650528, 56.76787773224578, 120.5086979113691, 11.402587055329022, 99.69031941104836, 70.9670198538536, 26.104310628754284, 15.41721451226164, 41.434666786365696, 68.822935689323, 11.236248369076467, 40.292489911141566, 84.87021059416175, 8.476876735060856, 18.683387619685742, 36.59266087836481, 45.93233661956403, 50.49759588226847, 5.51128041087979, 55.21312642563865, 70.89323714425842, 15.391830718728533, 112.92199909021069, 11.220721833578992, 51.09000999571607, 21.766035759505904, 11.189673671003032, 10.86945915718115, 18.913165131512297, 161.95425242201827, 20.36052266108695, 24.11881327071573, 29.758797570105077, 44.2024678360294, 25.459081459250157, 5.192088564367262, 53.36045430963395, 16.87588577416215, 10.557521946806908, 62.52579868369519, 6.949241358998913, 24.098488143697796, 46.51824622452895, 24.213908263541967, 30.99196946008063, 95.56466041376977, 37.99248188555137, 21.72265510124588, 59.71823687146965, 69.05056845276289, 31.636463400287546, 6.593530141712331, 15.604897498543997, 20.542345954817407, 8.013246332785457, 15.48971563883106, 18.779428856023152, 32.453397572299075, 7.485418423381098, 17.566334631887838, 12.66829572745187, 88.30492273557236, 92.79652889193831, 55.63655454181011, 9.48379440540844, 6.221077985184647, 16.1178246089338, 70.29399806270558, 78.41285043916426, 41.50362060160856, 24.206820034814164, 6.270707590185226, 34.834713561914405, 74.66541315590722, 181.40957228026127, 56.32370029754451, 23.542362913613342, 5.608180020114206, 22.2679489076077, 61.648783926300624, 8.947464559269825, 6.2541858862149695, 17.93899058736672, 189.3572023026967, 30.89780599759268, 44.335777108856185, 26.34703912308931, 10.818606784940826, 16.590372644176707, 7.422641853605352, 72.33816868228607, 21.899579004854562, 25.705298922157333, 6.819596970211568, 41.67013245539149, 26.12194700938948, 16.662344794982292, 69.21559358513129, 7.240935563446985, 54.929512020791066, 33.86259420365833, 36.77542338235505, 56.477159692476135, 26.940005335815712, 11.076987379830989, 13.203337416889045, 21.87708455130687, 61.980362876961514, 92.77031700902951, 15.712428239451455, 30.78561823473555, 21.127053088706777, 17.324937448594877, 26.689553501176036, 102.038989088348, 8.975869910400622, 85.70940369678753, 94.11934927502881, 72.58270418301927, 34.53372904310414, 81.406504623861, 28.110656446594824, 49.974192468927356, 67.01396368886608, 14.659680597851082, 59.4696515992093, 51.29144493825869, 33.43569069348747, 13.893290196162212, 11.065570109796578, 10.551963685333064, 34.345119195319086, 27.246646424292432, 81.18841233954929, 19.694335244682545, 9.831501425881603, 9.758709642438989, 75.70632271973543, 33.72508231982115, 28.395743518238543, 5.0594146035473795, 184.47535783187965, 68.44797449679803, 61.76243184409825, 43.86960203451952, 21.124752462301416, 13.436846732324813, 10.290641816754308, 28.53251152905152, 17.989641884650034, 117.0429106985583, 15.43095038688253, 26.476628234884277, 74.6670513973972, 5.946575403368935, 97.26069763778605, 47.37670069216304, 14.729011400324701, 6.081408685688808, 24.65080018760004, 15.791852072093926, 7.669663381803427, 83.13848210070529, 44.463140425518695, 21.168085663132935, 34.509538398818364, 24.93938287751547, 13.713222539285812, 6.499268209475695, 11.668560964303627, 14.001755367432446, 66.93462835095863, 5.429725274604914, 42.77398616548544, 89.00611856495786, 17.55300849863552, 21.106107856847345, 13.876228491281081, 63.21193615093198, 67.94890990254224, 51.32960489638845, 23.50982771944722, 56.91871665751325, 79.22973760996476, 13.943184909956473, 23.391301601158037, 18.687274679886873, 37.03689892773282, 14.780688887013522, 21.005691662760494, 21.275158376984834, 7.518911985243787, 35.726215469154724, 13.148414812818665, 62.85006636349854, 23.8232145855495, 55.92862811229103, 8.740060600172157, 21.015681394758175, 19.533130862594273, 52.3499420339856, 11.02278326282116, 28.417143428656775, 96.6344047760964, 13.551293336907467, 33.56377643559812, 100.42074785650884, 39.32524807607199, 25.667889813300093, 21.282589727922, 63.53639448763667, 75.91137206630864, 7.7446660139848875, 66.40393782631698, 36.451712236968675, 49.313816086429085, 5.948792667492426, 49.351145649035146, 43.83430827585631, 23.98921086276832, 15.549339903593252, 74.48349569165313, 42.83965623840089, 27.070255691693614, 131.97574773556715, 8.212168129748228, 33.89090153038425, 16.486032164979445, 8.374203772611923, 35.30381748738634, 22.839414578235484, 22.376549385373632, 43.46109361089478, 6.939034612191376, 8.893214150508578, 21.058006590536635, 19.769811942189108, 30.8537619802817, 88.0602083814278, 22.30590719730748, 47.45182065503326, 28.799693625473143, 8.555980162640504, 153.87264359715283, 46.333599128930196, 25.2070574173615, 7.098850789574005, 46.4706416163143, 35.04010737348856, 118.54940966746084, 57.96277509895747, 52.02838197189348, 6.305993929357662, 61.44590468385846, 84.78125208017946, 8.630170698839592, 61.81295485501196, 15.958670541103688, 176.75127420173445, 5.326171192630704, 15.433640330698934, 38.4164200105098, 6.973373314860393, 13.735097245714549, 12.336558499826136, 52.024549675345796, 127.31099382940602, 21.92735431906192, 35.5812704811281, 91.41237770899964, 41.564395777718225, 43.537458828709305, 37.54734093459995, 15.705932377312747, 27.388885924248335, 73.73301506787965, 13.43808467116164, 25.802492921537002, 26.78044837569645, 40.35385791794657, 13.525136209322152, 84.6747326618242, 8.023355583690941, 86.49270039711493, 22.411527847300505, 45.77362228329934, 17.141676909174166, 96.89795955987951, 28.283912399837188, 12.142201032404506, 20.497932745523478, 53.676767455414094, 85.59063271613522, 32.367593981489044, 29.287017694218207, 5.678724379200607, 9.341520792951583, 6.208333564522904, 7.3521758430943756, 7.811708749375623, 6.4921689425382825, 73.94906150084137, 59.13389116571595, 52.199854355330224, 8.154364379544944, 70.66145356735049, 41.73341052283006, 46.26642332093487, 10.912570750943331, 22.321327744473543, 83.66747200198327, 41.75306960017772, 31.051570903614298, 165.1665911883325, 15.977010613386165, 74.40619235868024, 66.26481697291455, 83.10870422078891, 73.39554019895644, 5.859894640269528, 13.877870696852845, 38.14043048519378, 12.345556876850909, 18.66531909659936, 13.720519878639507, 36.65149770858186, 154.04689884381793, 39.697589168111634, 7.834501376218446, 5.929521634299544, 39.0758414946504, 5.113029169650263, 29.930957221384936, 66.20572396573301, 22.7698577949762, 5.381721281025182, 7.481067169617508, 9.221530182529127, 11.045114550911746, 25.580766281817105, 16.697580849274097, 167.0371511185851, 20.642855120753417, 108.6715240205023, 20.156294754984035, 25.332451000463045, 7.956823070304691, 48.901472687617186, 32.11814992001429, 17.178321681713985, 18.77385552402091, 8.460807006366505, 9.313479596040729, 13.140684156613812, 28.233469247149177, 45.90158533906478, 21.99669543462269, 5.969388895599185, 63.09453921966204, 106.05149588563431, 19.903412158874826, 26.202728250276785, 50.17333978666642, 50.409303620894086, 16.665860556652703, 14.185856499665109, 124.06008221076542, 22.412257991446523, 104.2261767793705, 70.52527740277488, 50.30084265126912, 51.51460625467654, 33.09243603212626, 160.2755132889809, 12.623726242942324, 119.72048646731228, 14.921313817251244, 9.274669956738382, 53.21956836149461, 46.58938052808233, 32.95959532935031, 35.132642496053144, 10.560607242613269, 111.20849310204059, 21.876870484893622, 125.96455861009684, 18.716093467533838, 9.914788630249143, 9.330833206886739, 114.82335645813446, 78.82281961083633, 135.17464945873846, 23.772507927051745, 8.136220621408446, 65.19699846837196, 171.71896071036048, 103.8136436770814, 22.69918158244404, 20.91618991309133, 7.488458514102481, 48.962488542427955, 81.13518853297147, 43.449596201924564, 25.689011900273968, 10.76177435790644, 5.444193473623279, 13.059854184877105, 48.366012384050435, 114.80205004033554, 101.89373490666505, 34.56876294371834, 7.442916719650978, 67.46101712341178, 35.94380014477795, 15.425759371347084, 82.69828359180458, 15.517295800937696, 46.76821454217875, 5.477244302760312, 50.224535540867585, 19.366238776287602, 9.436771243770773, 99.870455582475, 21.712880941533566, 56.898584943942794, 15.788769066848383, 15.188061413353187, 30.738561476339857, 26.744379546422252, 49.27108677016611, 59.16909185268575, 7.235244099955937, 16.502791623893028, 32.93002471631952, 15.027212695476543, 130.10361714527303, 14.21921239079406, 7.937498564071599, 107.11311668703773, 111.46114959811953, 118.85449155362157, 5.174357496046359, 24.802154848340024, 13.162151684703838, 42.98018564652865, 56.28634553257169, 36.82111601286912, 36.17673290168483, 63.751857667625046, 43.906457907091124, 6.493152633472943, 48.92349389001881, 44.7413248909447, 13.936555032467034, 79.05461992019752, 17.718457976742535, 9.609236162695904, 7.489472441385478, 142.94369142325996, 47.38899776953899, 6.559040460005825, 54.400560727424704, 21.709505029780917, 31.648367011381975, 51.62946097825293, 33.633128499492805, 37.96848786407209, 11.539304246242121, 69.852967913658, 92.94925650134556, 92.32347041665072, 76.1316962948824, 6.987256753671049, 8.51945458248062, 82.36274499438323, 59.78382194773677, 7.746641850157564, 60.17423984080483, 18.6282948387546, 39.26176162800708, 58.84117622157809, 6.693964671092089, 64.38703119788477, 25.64310715636099, 5.739096180975698, 51.055719896579845, 51.26977419391593, 104.18682189931886, 25.37841704825307, 24.785486414753134, 5.375433221876938, 25.31277753978932, 94.11714650771998, 96.20777512214111, 5.1773468816015535, 14.77646339558301, 11.850101806132779, 36.66843552039718, 9.041732493985947, 11.882722155458517, 18.572390394854125, 18.966063976233762, 5.963871689963087, 51.58342124598134, 98.45705919208348, 186.7187943160344, 67.71648609089496, 47.2162233302777, 120.69689208678912, 16.903970539426577, 51.52997373527999, 67.48972625790111, 50.1285638736128, 26.67471925748533, 20.29817676901096, 5.888595192341573, 83.71763710002456, 19.020353965553703, 104.47544089072727, 6.3180568307842195, 24.691738914373722, 30.48556485637802, 14.375768154526954, 63.405917679965, 69.27300333389925, 50.048118185129255, 51.3942623746114, 28.972986812191227, 17.772593086978652, 12.702418106074411, 50.08480930068077, 18.06616891243328, 18.62074109688457, 6.0248115770086565, 5.4183129205825065, 66.22024700424775, 48.30956594974262, 46.94411445897997, 47.3070466788683, 58.29100976340351, 19.53298322387881, 66.00665988107929, 20.55852282559283, 14.011252097162707, 5.59222762516154, 56.656663497816936, 12.734185131859434, 66.03247329664231, 69.91763982628339, 11.239555249955053, 35.69042371929731, 19.570066511837684, 63.02846841235332, 5.067630230062979, 34.5160925012827, 84.20475930332167, 53.133889492685555, 19.243253481290644, 13.181829219337658, 54.782332775939594, 98.38858955169485, 12.773881019859678, 10.903889831710849, 101.55824537227107, 24.526442286106168, 69.15913317177585, 119.1232985676824, 5.504320018976716, 28.35493393879779, 11.528407073010875, 24.27006064956209, 6.20210183626295, 15.486630150393179, 15.957795763188262, 10.810611832807755, 49.585956120597025, 33.48523195492122, 14.529040938299612, 13.898400599186072, 34.60349709743468, 31.38595766756951, 59.343991766033156, 12.633032587415425, 62.70152391621269, 51.81134774092494, 64.74484480786657, 62.33920233492142, 10.928545056744547, 8.520084968233652, 11.657823601691007, 11.3653114255755, 25.316271487971168, 75.45345685168898, 77.42512621147193, 29.533832556827633, 7.257339764847798, 91.33805477776347, 36.15946842564125, 153.74738854494834, 6.696664378918514, 34.40803319710167, 8.067543246106375, 58.27766221824885, 19.428634851564695, 97.03286432085541, 23.50159439627206, 6.258483883378624, 41.91401698122554, 35.83097359641959, 28.560293891775963, 5.326063251150629, 9.021516832693411, 6.694349047193981, 24.130584403613057, 17.099898271690858, 99.0373475211475, 12.094594346208506, 5.873462950179021, 25.201287187846205, 74.5940847162729, 34.48478327632285, 6.696431486344012, 7.675400627575101, 83.05917656506787, 6.964681090879098, 46.10015479387323, 55.38582452343979, 17.888398658623906, 71.69604528071143, 80.56662353248177, 54.9053082809252, 34.53079261338789, 62.65358288271451, 72.85546831014136, 21.255793968491957, 20.20059358359227, 92.93997171214362, 69.30549168184697, 75.51433373481876, 24.318748673648052, 39.69296961009555, 99.57019239248598, 171.6500753813403, 110.51072017339453, 32.459439848271145, 78.68522941306287, 49.95252891934282, 57.20662689760182, 18.609106797166202, 76.76173732040607, 38.40442543565232, 67.16469637143099, 13.736288783931004, 10.541467590080769, 20.880651368794936, 19.977066916891964, 24.493074077363232, 16.262371625254076, 8.491281231164969, 12.235794133519427, 11.581994836458154, 53.86458892706882, 7.5416139819714605, 6.4244826857299895, 17.50759018181753, 15.330611389915608, 5.876331112462286, 263.4977202675119, 97.41947381664232, 78.80109570311349, 86.01059332138524, 17.164386009985016, 10.036896188550063, 20.76457136696193, 31.916567956444105, 81.47307571039906, 72.34349461625484, 64.66772833577214, 11.80754653912897, 10.043051970905577, 23.34329801016081, 14.442517711322102, 64.45643116303182, 5.669692137963309, 9.48667833825387, 22.648134674845164, 115.76362691333972, 28.06500337678416, 9.991715290150125, 105.81320769780943, 79.10111791223432, 15.056244306680107, 45.403465911433756, 24.06873334299152, 11.60267086880632, 12.2791178342151, 143.30978745603522, 28.111898016885892, 56.499408449858024, 5.540124977425752, 10.326933984371863, 11.796496550924237, 10.954806416926044, 27.090121850113864, 30.209459053422137, 35.652624482711985, 43.58853752114638, 30.98232073688613, 44.462139379767606, 55.15069742534621, 71.37603185502796, 16.262761896038665, 40.33183812417485, 37.979030644367974, 118.52517794336656, 12.966914269447019, 55.24944550039616, 16.75057503319776, 35.7135584979296, 15.628785841818155, 35.34303906779558, 35.40975152373791, 61.72513107411241, 73.4630730141229, 30.91798533631994, 48.38918202564904, 153.2480628825362, 68.27629925113548, 81.9025319131886, 41.157390005827395, 13.505535196656128, 59.43489045610086, 12.678344467525385, 54.00941579891396, 14.31443123746839, 9.591925333871009, 21.818370535275996, 66.02598223534886, 5.1741305841545255, 23.3699689683877, 15.810707252417208, 13.939284468688546, 8.263741016890386, 5.259213980603877, 23.057163878583335, 28.746818803663245, 30.218970696328597, 65.58765758506257, 53.490945307176176, 37.61599174471538, 9.662753958100387, 23.58813410522376, 29.861871585877143, 8.24265788727514, 82.9266354809921, 11.980873140217955, 11.063039527711627, 135.37437347926894, 45.42655296029683, 7.056647737389416, 5.436304611906, 61.92581751905594, 101.3517623046029, 25.88697499221719, 24.144635074605603, 23.579882775427897, 17.568975264604063, 31.633702231009497, 61.07847235947998, 100.27788051352081, 44.15201206841576, 31.200874207689846, 36.01402473832816, 7.897199822445143, 11.637660490164748, 10.56135809872826, 22.01033523031961, 75.11003933426822, 34.97404935628718, 5.428175667607307, 21.605824817601007, 16.998202342031377, 10.97082817171973, 16.24007376804315, 13.903690600471602, 25.703915715329725, 66.08188224868589, 8.303563641737341, 13.56991245935478, 22.88123298748072, 38.42160347803306, 49.39158418487591, 16.275295955971156, 21.169070427639987, 74.56718222340523, 12.37447573653504, 33.71662659013678, 8.332061170736324, 74.67014269173916, 55.94277310882511, 25.530583625056874, 23.41772511544133, 17.9166928318447, 6.508783877588855, 117.03885932794805, 5.371122705600369, 8.909835807357764, 31.686640806595946, 5.221779936194133, 13.793141780282124, 52.97813719274666, 16.164359131529952, 43.117284816410276, 6.244474690826448, 99.66992762300153, 39.35969030809173, 5.421109573151231, 5.219114839204194, 64.746866388889, 51.86226432895135, 12.801020757730168, 103.22067396489248, 76.69313117989735, 41.41329730376325, 40.93790431430769, 60.178962556412216, 34.28770083186588, 50.80498853286762, 150.36595234088875, 60.84044081091483, 7.809348622074493, 20.196289816548187, 27.644005700229407, 46.718449480844534, 58.30550538370303, 54.06802972019897, 112.50694288587243, 25.017065647928373, 52.145895201301975, 39.78376178096968, 17.412456620717247, 43.42487205694951, 8.324798642206286, 17.745264225720828, 18.605475292989063, 13.802366204498648, 54.59777887648295, 22.84898895126853, 98.25852490480591, 33.10798899177392, 5.896777465546826, 9.999226854543389, 7.7690605974963445, 7.894810408011503, 95.85470872250872, 25.04045671576393, 15.130497288192139, 6.995328809912236, 34.98230546289558, 5.148369734001787, 13.280550614552908, 45.08385838702054, 6.1570947969936345, 201.08979141501158, 75.15714731482457, 20.97329731510318, 12.937899733119773, 46.620250713055086, 76.15505378307208, ...])
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)