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 = 45879
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);
([2765743.7236339333, 3277224.4887149325, 3342859.5703118932, 3342863.8883506395, 3367774.015886113, 3408302.005520054, 3408775.811172901, 3472456.25, 3573642.4570349483, 3585336.341499848, 3585405.051434001, 3586319.377742415, 3586340.142806939, 3586389.0115167922, 3588820.3125, 3588952.8418845925, 3650654.6875, 3655976.5625, 3761615.924409975, 3779439.5738111143, 3802937.5, 3858488.587550443, 4020429.873192201, 5498106.991285873, 5506709.375, 6737366.708314181, 7149496.875, 7158895.610129762, 7182962.5, 7295305.676095689, 7305601.5625, 7307154.6875, 7308718.75, 7311151.680398839, 7311668.63841972, 7311930.7755616605, 7314023.4375, 7329307.8125, 7336400.858945932, 7344834.127778327, 7350328.125, 7352767.284449024, 7362099.762271273, 7362421.989009506, 7362906.25, 7366301.229333544, 7371475.0, 7375691.185757118, 7377057.8125, 7377208.688195086, 7377777.240881312, 7378234.265019668, 7378646.875, 7378694.782842773, 7380354.6875, 7380965.896713877, 7380986.125737208, 7381015.153174707, 7381040.186065448, 7381835.9375, 7382105.025869215, 7382109.375, 7382113.538496332, 7382651.479892339, 7382899.159470267, 7382962.5, 7383493.75, 7384978.762403924, 7405940.043016419, 7406462.5, 7407132.540438629, 7407301.475934678, 7407726.5625, 7407896.539880579, 7408346.519564677, 7408657.926162462, 7408881.25, 7409297.419250504, 7409732.497745152, 7410086.095443272, 7410836.2649523765, 7410932.908185568, 7411118.9612752, 7411267.1875, 7411590.561465977, 7411605.621858546, 7411618.152058162, 7414522.241953282, 7419360.6035614405, 7420550.0, 7423443.6371853715, 7423461.385531122, 7423572.653734017, 7423666.027334731, 7423763.853477161, 7424047.652438432, 7425114.020936231, 7425410.9375, 7425562.277996872, 7425731.308588089, 7426826.344602515, 7430403.242479942, 7434159.9077676, 7435110.087541953, 7437752.100953544, 7439575.255323386, 7462594.906672051, 7463274.435151657, 7466197.34288215, 7476800.0, 7477382.8125, 7478387.569853877, 7494578.125, 7502240.363331153, 7560099.294128103, 7589320.068092074, 7609399.5532633215, 7610487.378643554, 7627563.644068218, 7627963.419434513, 7627990.078083351, 7628360.790670047, 7642542.1875, 7643386.701005019, 7643481.530950474, 7643942.609406486, 7646955.664878946, 7656982.654066697, 7657232.8125, 7660307.0861897, 7660863.087881455, 7661700.010175104, 7661715.625, 7662481.785081211, 7662701.813586257, 7662916.640264418, 7667170.975381105, 7667962.5, 7668226.125175004, 7669044.191887749, 7672736.251300564, 7672918.574020576, 7673399.3432241585, 7673666.7647545505, 7674273.4375, 7674585.319279518, 7674606.25, 7674818.75, 7675349.332011225, 7675720.3125, 7675734.095074312, 7675894.53057242, 7675946.284016641, 7675984.15612466, 7676059.601331422, 7676614.167600081, 7676635.235366499, 7677143.1405298915, 7680923.922920298, 7684616.101944626, 7684645.3125, 7685287.5, 7685460.046836613, 7685512.892275124, 7685706.188476108, 7685842.200809522, 7686122.693773865, 7686593.96456656, 7687526.039318514, 7687557.145219689, 7687776.784591531, 7687910.403772909, 7688112.791434378, 7688257.052893663, 7688261.77292872, 7689560.128217246, 7696856.037718886, 7697132.442697366, 7697682.670405322, 7698331.25, 7698505.241054242, 7698902.861637815, 7699047.392448009, 7701810.9375, 7709357.024260027, 7710259.375, 7711913.794563671, 7714099.492177745, 7714168.75, 7715982.117144519, 7717170.145183522, 7717351.268292983, 7725816.917440271, 7726483.748022985, 7726706.17990788, 7729276.671332932, 7729292.1875, 7735687.5, 7736816.730444151, 7738960.9375, 7740763.829540844, 7740859.217546618, 7741534.619243417, 7751128.125, 7753387.004984439, 7754736.211373121, 7781327.753338343, 7781690.350559814, 7784790.625, 7794109.375, 7796281.197015744, 7802029.699053333, 7802693.390313873, 7804384.344426682, 7804538.373410931, 7804958.841745546, 7806132.627612024, 7808226.48571043, 7808890.658623211, 7810041.635780007, 7817816.125716507, 7817871.875, 7817981.25, 7817993.75, 7818035.2836585315, 7818071.38187821, 7818073.4375, 7818206.237262725, 7818514.139456218, 7818589.97177127, 7818615.216552803, 7818649.324633389, 7818671.154985487, 7818679.495905399, 7818692.0748096015, 7818760.064670137, 7818804.282950464, 7818817.224525433, 7818870.077431395, 7818875.78385811, 7819186.482938737, 7819297.170878085, 7819309.0894935625, 7819326.167179686, 7819358.772604607, 7819425.453994846, 7819529.6875, 7819540.369889745, 7819608.941727495, 7819609.375, 7819611.046573322, 7819625.0, 7819643.185876845, 7819652.352812594, 7819675.9282949, 7819698.4375, 7819735.06149552, 7819800.515849746, 7819815.753753243, 7819826.546136031, 7819826.5625, 7819839.0625, 7819888.0101863025, 7819889.907831628, 7819893.636738037, 7819926.842212888, 7819956.086062518, 7819974.452862644, 7820025.43445841, 7820034.375, 7820084.375, 7820155.879573013, 7820209.375, 7820215.625, 7820251.521962487, 7820284.636505555, 7820296.858563647, 7820299.6080425875, 7820310.8807244515, 7820375.0, 7820397.340400494, 7820410.9375, 7820421.163421383, 7820422.66284262, 7820476.5625, 7820484.342000959, 7820511.203281329, 7820535.087202323, 7820607.8125, 7820621.875, 7820640.625, 7820679.10099071, 7820712.538716646, 7820729.831664903, 7820731.918215469, 7820736.910215148, 7820748.4375, 7820781.25, 7820785.9375, 7820796.788530752, 7820802.769063888, 7820832.8125, 7820858.71360478, 7820872.546432339, 7820911.559970887, 7820916.516059878, 7820921.875, 7820954.136230797, 7820957.8125, 7820959.028096054, 7820985.46794448, 7820989.963937015, 7820998.4375, 7821007.706025947, 7821023.568886352, 7821027.0046168305, 7821033.971043603, 7821067.831465566, 7821068.147874991, 7821117.818185389, 7821125.912457258, 7821126.369917871, 7821145.983637435, 7821147.093256022, 7821165.545224473, 7821193.377177024, 7821225.859265826, 7821225.90372054, 7821228.641672223, 7821245.034531834, 7821254.970854585, 7821255.868130406, 7821257.36759188, 7821268.178312134, 7821293.75, 7821315.625, 7821319.058070767, 7821338.699950939, 7821356.268591426, 7821377.649311139, 7821387.286370431, 7821390.502226385, 7821407.967486109, 7821410.710663239, 7821431.25, 7821434.129143385, 7821438.516223216, 7821454.176859974, 7821457.186539043, 7821460.9375, 7821464.700735726, 7821467.738535214, 7821470.3125, 7821479.6875, 7821488.699183155, 7821495.3125, 7821500.344328841, 7821505.135040775, 7821543.655347067, 7821555.887199214, 7821566.206086112, 7821601.006242422, 7821602.913054993, 7821637.562684682, 7821638.4647528315, 7821660.251995427, 7821671.708692724, 7821687.947472658, 7821693.246722757, 7821698.4375, 7821703.0138248345, 7821721.875, 7821725.0, 7821732.413641091, 7821734.615652202, 7821750.276168928, 7821761.646896976, 7821777.904120238, 7821806.832266724, 7821829.6875, 7821889.455128599, 7821924.716680026, 7821971.108018383, 7821987.21928802, 7822033.753837902, 7822059.375, 7822068.019688352, 7822070.390114383, 7822112.855256278, 7822128.840844312, 7822183.834487705, 7822188.484533319, 7822191.911375807, 7822194.903888148, 7822238.718772983, 7822239.0625, 7822256.08301614, 7822258.064456233, 7822289.0625, 7822348.2899879785, 7822391.692124315, 7822437.375642164, 7822439.731111178, 7822471.875, 7822582.8125, 7822635.891494135, 7822857.8125, 7822882.8125, 7823139.497670326, 7823172.376652496, 7823356.25, 7823533.123777729, 7823842.1875, 7823918.75, 7824002.017032306, 7824048.436699469, 7824132.8125, 7824318.75, 7824517.045045396, 7824622.692380758, 7824906.018534233, 7824967.1875, 7825015.384952304, 7825315.625, 7825387.635148037, 7825450.102748348, 7825917.177211254, 7826084.805663416, 7828644.743586343, 7832340.213554984, 7835484.375, 7835619.601027773, 7835855.743969551, 7838085.722426627, 7838296.875, 7844042.1875, 7844344.750668642, 7845027.135750986, 7848083.0223753415, 7848668.417994731, 7848844.977627983, 7848867.732505023, 7849643.75, 7850171.285389237, 7850724.045136105, 7851190.625, 7851775.0, 7851984.366350864, 7859453.786193188, 7859763.345433397, 7860962.164606743, 7862099.879624481, 7863304.524377854, 7866473.977902249, 7866569.473853826, 7867728.5202224655, 7870065.515204132, 7870374.1559438, 7874420.3125, 7875480.093410079, 7875633.389848617, 7876290.130243935, 7876355.551297233, 7877022.768331794, 7877160.62656803, 7877226.392681089, 7878082.422958386, 7878090.254824949, 7878433.279473879, 7878435.9375, 7879112.5, 7879430.580470719, 7879668.75, 7880143.035461219, 7880277.31738419, 7880636.425517665, 7880695.431693901, 7880957.708153542, 7881239.0625, 7882832.589765829, 7890810.398812254, 7892171.327823847, 7896138.985560146, 7897723.4375, 7900303.445146449, 7906025.590379934, 7906292.438140842, 7907940.625, 7908564.151726891, 7909429.6875, 7911531.25, 7913606.25, 7918261.541174381, 7922076.951752079, 7929222.460093554, 7930581.924970713, 7931291.938973316, 7933428.20875245, 7933678.294155355, 7934315.730128321, 7935050.08950326, 7935114.0625, 7935151.260076136, 7935283.063621842, 7935284.293518566, 7935301.318553732, 7935416.460410949, 7935641.525086282, 7936244.966474936, 7936765.420333395, 7937645.258819946, 7937989.0625, 7938293.380426402, 7938342.434162102, 7938654.830072606, 7944795.271551154, 7946224.485424091, 7946414.053446402, 7946724.347196187, 7946855.627509256, 7947100.0, 7948254.542574239, 7948300.0, 7948382.4174818145, 7948387.368925949, 7948477.403088448, 7948681.092876387, 7948698.4375, 7948709.375, 7948832.8125, 7949369.650624991, 7949448.541331047, 7950144.397838126, 7950746.875, 7950987.5, 7951023.4375, 7951251.8301156135, 7951268.75, 7951420.948118192, 7951650.991231436, 7951757.770796181, 7951946.875, 7952136.723197036, 7952156.25, 7952185.9375, 7952194.804868259, 7952439.5753412945, 7952467.695795752, 7952492.178420083, 7952519.057759199, 7952788.600394401, 7953021.875, 7954530.37230394, 7956527.434320102, 7956533.798730999, 7958057.184886937, 7958192.119823998, 7958966.347187177, 7959030.078745818, 7963807.1292520175, 7965309.375, 7965328.247394073, 7966753.125, 7972393.75, 7973705.174809914, 7974429.6875, 7974481.25, 7974730.688794541, 7977160.026235321, 7977695.354827332, 7981227.311945468, 7984038.202551075, 7989185.9375, 7989657.158775659, 7989795.6332246205, 7992784.547548127, 7993325.70621879, 7994028.8120243065, 7994329.6875, 7994379.6875, 7994775.9997131685, 7995191.439030726, 7995229.6875, 7995232.427900204, 7995320.908234153, 7995333.872342864, 7995376.406673587, 7995456.122400792, 7995542.245846844, 7995652.562721655, 7995674.008016921, 7995762.763185874, 7995802.209766953, 7995831.034084746, 7995885.406070624, 7996192.1875, 7996267.1875, 7996525.986669275, 7996537.647309999, 7996540.043502226, 7996648.4375, 7996794.637534632, 7996918.75, 7997293.75, 7997608.703938221, 7997616.98407954, 7997647.418359412, 7997670.3125, 7997924.9482748965, 7998251.4542018715, 7998821.38156551, 8000116.025192854, 8000357.8125, 8000403.932760963, 8000919.450442941, 8002136.421077422, 8003320.781860257, 8003567.835755944, 8003573.612428682, 8003591.934110193, 8003782.980002488, 8003873.4375, 8003885.605296734, 8004025.728310304, 8004341.413152874, 8004744.785493279, 8004860.612556936, 8005841.602649339, 8006133.822898828, 8007165.446683741, 8007945.166237387, 8008572.746507055, 8009223.292674257, 8009482.9026834965, 8009953.835646109, 8010279.550279725, 8010325.445272019, 8010357.494530579, 8010359.375, 8010415.625, 8010556.25, 8010651.890332568, 8010654.6875, 8010742.1875, 8010811.404635427, 8010923.7063378645, 8011184.375, 8011188.00672422, 8011766.8697754955, 8011803.875204269, 8012632.629520526, 8012764.961006685, 8013042.1875, 8013328.310490315, 8013494.351461607, 8013573.34125265, 8013637.232308294, 8014442.350208924, 8014694.468666496, 8017212.5, 8017721.920358351, 8017939.0625, 8017966.152441545, 8018178.125, 8018667.1875, 8019741.67012431, 8019904.143238613, 8020420.3125, 8021784.9727147315, 8022446.628390413, 8022918.75, 8023931.841558376, 8026088.1317064725, 8027454.5301941, 8028446.818165237, 8029738.528314581, 8029934.21045065, 8030670.14080387, 8030844.582727826, 8030889.213510476, 8031692.1875, 8031768.444020267, 8031931.242521407, 8032925.784151367, 8033219.074605056, 8035166.468196236, 8035230.546095109, 8038009.375, 8038198.320736238, 8049571.875, 8049617.156188452, 8049716.096027096, 8050536.497700399, 8053483.564194924, 8053526.330286862, 8054204.8217012985, 8054611.7714034235, 8054948.780818195, 8054954.459185565, 8055307.22682503, 8055340.625, 8055399.278478477, 8055642.1875, 8055792.638792769, 8055980.649650379, 8056127.492660385, 8056179.296954918, 8056211.564808075, 8056226.890336044, 8056284.375, 8056303.984803668, 8056482.560871417, 8056590.625, 8056594.950580771, 8056789.6324676275, 8056973.4375, 8057117.707082611, 8057120.356069905, 8057241.588691314, 8057413.158112126, 8057421.9554467425, 8057656.406461538, 8058138.3073745305, 8058195.3125, 8058368.073494841, 8058503.193256019, 8058605.671760854, 8058838.291357102, 8059634.375, 8061224.2632240895, 8061882.691881946, 8062101.5625, 8062852.690527364, 8063293.75, 8063446.343079415, 8063907.8125, 8063992.1875, 8066673.4375, 8067829.389218408, 8068146.875, 8068301.5625, 8068464.286681055, 8068513.483469969, 8068718.75, 8068805.04522845, 8069184.233090476, 8069372.742671113, 8069754.475943563, 8071155.985557492, 8071334.375, 8071737.5, 8072037.5, 8072537.5, 8072663.944618082, 8073489.0625, 8073584.303372344, 8073630.933371474, 8073656.173236318, 8073801.5625, 8073880.885151116, 8073887.5, 8073943.870428273, 8073954.645444447, 8073954.6875, 8074027.460798202, 8074048.273996361, 8074051.382489578, 8074231.25, 8074273.186982483, 8074315.625, 8074396.875, 8074443.190630481, 8074455.7421730505, 8074481.695856313, 8074588.373876183, 8074705.660502543, 8074777.723572668, 8074795.805661864, 8074831.501559956, 8074835.718090622, 8074917.474758869, 8075101.5625, 8075128.125, 8075163.344904452, 8075203.958412749, 8075271.713241797, 8075295.73772538, 8075309.477825169, 8075321.165202488, 8075370.215221511, 8075507.483727214, 8075515.054845599, 8075522.878597012, 8075655.841433764, 8075715.44241184, 8075795.3125, 8075964.0625, 8076021.460742203, 8076082.464421898, 8076113.587587006, 8076164.0625, 8076253.125, 8076277.643139368, 8076468.087730668, 8076625.340314753, 8076646.717132354, 8076720.2938478105, 8076792.1875, 8076799.716347824, 8076807.8125, 8076873.6042378545, 8076937.865887737, 8076948.274261563, 8076948.4375, 8076988.953877156, 8077038.122485281, 8077061.08676472, 8077097.867855611, 8077188.963738244, 8077193.307120703, 8077292.68472596, 8077401.374113416, 8077503.856542795, 8077504.586687647, 8077509.375, 8077558.835943965, 8077586.989982279, 8077623.4375, 8077674.86626058, 8077751.859755644, 8077772.530712089, 8077833.754120566, 8077842.1875, 8077845.3125, 8077876.921020895, 8078062.936845381, 8078206.25, 8078237.316980268, 8078296.875, 8078379.235044363, 8078781.25, 8078792.185693707, 8078858.706875274, 8078910.9375, 8078912.580163202, 8079179.35406633, 8079190.625, 8079233.444460928, 8079303.085550172, 8079352.997101861, 8079388.8242881335, 8079518.75, 8079725.109062315, 8079879.464713496, 8080059.766587076, 8080093.632923997, 8080141.558995492, 8080156.25, 8080176.5625, 8080331.25, 8080362.395468961, 8080566.766577904, 8080589.928437842, 8080607.0745021785, 8080670.1134540355, 8080708.566827907, 8080714.34294898, 8080749.130234425, 8080770.954469059, 8081044.058395065, 8081076.3306275355, 8081298.478592894, 8081420.882023245, 8081422.755609116, 8081433.901311783, 8081607.637546215, 8081620.3125, 8081665.625, 8081723.787141897, 8081785.757771136, 8081891.685572866, 8081898.208745685, 8081903.125, 8081922.914744386, 8081940.25343182, 8082144.529555835, 8082159.615433787, 8082176.445784553, 8082248.984272428, 8082264.380803081, 8082272.279364491, 8082410.9375, 8082442.66977932, 8082628.551485801, 8082727.842764598, 8082745.26718979, 8082750.108505345, 8082831.25, 8082876.5625, 8082923.208119747, 8082997.494876893, 8083100.327649778, 8083107.36753875, 8083137.5, 8083232.930193117, 8083240.746588047, 8083281.195001798, 8083316.651966385, 8083435.9375, 8083479.6875, 8083492.1875, 8083596.41778371, 8083688.155651825, 8083782.620580368, 8083865.625, 8083875.44704871, 8083891.933298284, 8083899.184409677, 8083943.758056799, 8084026.5625, 8084034.375, 8084228.125, 8084235.9375, 8084245.3125, 8084333.548046323, 8084473.739842924, 8085136.540232493, 8085848.060810674, 8086296.361590813, 8086384.227170953, 8087489.827495513, 8087720.153246539, 8088235.2639060505, 8089422.386285848, 8091195.3125, 8091646.020307158, 8091672.880114634, 8091915.625, 8092546.431142761, 8092693.75, 8092816.999228629, 8093393.75, 8095831.478792001, 8095885.3028173065, 8095934.375, 8096037.208490864, 8096320.193714776, 8098097.954523519, 8098232.8125, 8098429.904270282, 8098430.252771582, 8098489.040260362, 8098954.562577518, 8098960.644369146, 8099153.125, 8099242.584801457, 8099309.641287728, 8099379.6875, 8099639.58017467, 8099741.92513901, 8099865.034857427, 8099971.403729917, 8099985.547420769, 8100178.285632882, 8100529.848019352, 8100578.5206357315, 8100715.625, 8100742.1875, 8102324.849478297, 8102402.950081729, 8106911.859021407, 8107568.406710157, 8108231.25, 8108345.582465319, 8108351.49757677, 8108390.865309111, 8108639.199876048, 8110068.75, 8111736.785151356, 8113066.073841434, 8113456.25, 8113456.810229204, 8113654.033820473, 8113861.031007772, 8113887.915493328, 8113984.511540132, 8114826.5625, 8114945.158587957, 8115098.4375, 8115132.8125, 8115178.125, 8115471.989028641, 8115888.247884183, 8115999.240270754, 8116005.432939082, 8116292.410102956, 8116629.597233362, 8116633.196407039, 8116646.7132107755, 8116659.844165307, ...], [11.086743523523774, 13.295244788275943, 5.348659149114542, 6.245443756265399, 17.724575028041013, 7.242990232679114, 5.660553750318633, 45.8870039463069, 44.77213729490398, 9.698084840361725, 11.748562934987408, 7.847239296546939, 47.103889761204826, 14.750681956793468, 46.13037575076379, 29.90999126796403, 31.36727539982754, 41.048236791153876, 35.89115985686644, 7.262675276412095, 56.02363104508072, 21.746685288518233, 22.975317506962988, 7.330972594065938, 52.52429822680168, 50.57287080674668, 61.86963806145948, 41.368763739006695, 57.7928428285231, 10.335321635318529, 70.48027674774873, 87.06992205166237, 54.072748874273856, 9.433123417300639, 5.805770153358551, 6.415204730715415, 60.582021813341214, 63.545744014108536, 6.948025102601805, 24.44916464181641, 48.63462947269666, 11.282702849107677, 9.13816647951623, 7.645000114096622, 29.099728774633288, 33.90069662102685, 45.85279098559949, 12.134091894018388, 36.499258363622886, 100.20523403817063, 20.177327206061893, 94.23695568031637, 71.78971692358635, 21.20226861922696, 55.06930011517329, 50.61208035414242, 12.635500362095387, 18.33870852590878, 5.902070730634655, 67.14841181698215, 24.434551454489167, 29.986990397797815, 10.396804116627173, 23.632141956097882, 43.505472909912214, 78.07386317441242, 108.14239752725783, 31.51531403856817, 13.106983797393687, 41.405823187433775, 18.108172434924185, 55.367102507246564, 51.766296782399266, 23.31227131687436, 13.740215776989372, 6.786412550727598, 39.36847455028504, 17.520380325017825, 6.438857215680149, 9.468621886982227, 28.055565557966847, 6.502196125683644, 15.81296391951313, 114.40662658282749, 27.32779154815151, 28.55570879109479, 20.56871882058428, 25.259863455937705, 7.4867639861946245, 63.824451983725645, 49.86543715846554, 9.741328586184759, 75.31054611096053, 71.32470368372024, 24.986839363052443, 8.745458465866705, 72.8671650094106, 51.457274886332556, 24.800937365049357, 6.094213126988656, 5.197905866835733, 11.31643856860776, 17.45308401666531, 73.51169496169908, 27.583486722548272, 23.908855653964928, 22.486934054393082, 35.01646613557636, 146.54505962817112, 63.95274898450071, 49.58919496994633, 11.238677003925307, 61.92853732221927, 6.712367111781823, 66.50653071700951, 74.20832125144076, 58.93287518838645, 76.65765192391804, 6.215741424708794, 28.844111245376997, 87.82456514057112, 14.409915345663324, 33.45549147830391, 46.53178579145939, 14.669765612815771, 79.51547910645883, 27.771920765354658, 14.370168941763978, 77.13958535640593, 33.97905221503401, 12.19038889720821, 7.1241289537510974, 44.319795555334395, 5.644348225947432, 11.544241914223257, 22.815707960802584, 28.441350644412072, 37.40912405033362, 22.141962334622626, 9.735253266833613, 11.656379635520135, 25.475686354127202, 17.161030340161197, 13.542727914418453, 62.30199812948032, 8.8581860896178, 56.05344887687183, 68.40741877965208, 16.453830254335237, 28.708294923129287, 97.51453087797877, 5.758304325665044, 6.398275167335081, 7.065080536581928, 5.721315357297423, 129.10032186898857, 19.688769560301694, 97.60432723362365, 13.185571648166206, 9.77010639016415, 71.63590849241191, 91.60648412105438, 5.750892529830267, 6.844432440812715, 55.91486876016817, 13.591828383735528, 13.862932325038813, 6.807112725564489, 34.90120593578567, 6.387340673507174, 26.39997792431778, 5.7755170196026615, 87.34071285616255, 19.272767659361513, 8.783997256475347, 18.878091820761142, 30.95320959217844, 33.698805584738245, 8.21283798209582, 91.88907106576868, 48.0729127972521, 56.982342254163505, 12.045857286276464, 63.29907083006448, 19.03047218868463, 58.05993148758679, 40.12565787651635, 5.777337566081374, 31.35771135422818, 19.743101679460718, 14.339951629522794, 96.55160838737025, 93.43906818620397, 7.391189958044037, 14.680915813258581, 9.42515476658274, 40.88409182938086, 60.13833782859148, 8.058814565207307, 70.60410007920571, 52.55023598182469, 9.201723883293875, 9.54683176401108, 52.96136766761568, 12.339898229152677, 16.099353522344725, 22.876579609635353, 63.95156947260556, 49.90814466490308, 54.718136825955725, 27.51834921957718, 8.292696385571249, 43.94073326163539, 14.8262448020388, 10.198056858891203, 25.39763109993526, 7.073683814466979, 27.092755781489995, 11.180671918417124, 20.992227886443505, 32.30765079675015, 101.22669327338791, 57.86367476113611, 60.49205540958875, 12.923573890653838, 21.56198956057257, 48.16922740335334, 36.9318844565107, 11.25016326100076, 38.35814854609147, 36.67876494624083, 14.402618498407136, 19.547258636250344, 8.187792624441084, 58.37240340424961, 5.866835332672405, 59.896074440333805, 15.084536306997066, 102.91560802736127, 89.21512203882006, 9.83951749291637, 9.594776138572115, 23.93765928522579, 21.688971978452713, 31.041608905543495, 17.00932629185256, 39.870855720726134, 24.341596914363766, 6.044172542725545, 75.43579707530917, 19.943180333647867, 82.10786761803173, 20.876429229463664, 31.326169350998487, 12.972927643758204, 69.46629102546513, 21.07762582174923, 11.039828320886334, 103.25300519325296, 6.760244020336756, 160.37547661394552, 57.8201247000944, 17.322728846004686, 19.569608256799658, 14.526693709500702, 41.007164013381114, 25.659640033540615, 58.8557416062552, 8.530513872819059, 36.97926014197528, 32.14199618191527, 9.036667864786297, 68.67197849101363, 100.66511614820125, 14.789218194553122, 9.562762606823364, 28.203653061904777, 22.64312717473795, 11.04010764830665, 46.34491888329107, 6.860118600824665, 41.16467341420234, 5.763141068787926, 8.752323569884423, 72.39039428775071, 27.8881348316517, 11.570208446500894, 12.459176080783644, 47.604129789109656, 36.402789693193924, 33.915060893548294, 58.020551601751116, 51.29539979030612, 118.67857869418383, 7.864227867351089, 41.10174913188353, 92.18422056768676, 54.82458862263779, 81.24842854434289, 26.924137474664267, 67.29137754791722, 42.436943882228384, 44.73010978383854, 14.533877462638117, 12.26337004972286, 10.218680029728345, 43.030672422957096, 60.50981262677084, 65.44178449763828, 23.16954463241637, 21.80227298528166, 6.388227367111208, 42.20484181489848, 64.15808195044198, 15.467112062162803, 80.5130826357899, 42.04975511217356, 7.854029280557935, 13.054789316800536, 5.649914738764567, 100.39882792365171, 10.839464579710217, 165.76734594710928, 15.844208893854972, 6.474658012960427, 35.63896944038197, 10.18163210472914, 83.28601102818294, 26.434669419766642, 13.978256805985653, 11.601507503557794, 6.0492684262467105, 13.479505405223344, 5.671315278836211, 31.906040172149154, 117.23291386157999, 22.389954453891992, 13.718944575592579, 27.279084697972422, 21.739094025957424, 6.721593578262276, 15.108576448972823, 6.794847891158609, 6.064823624754692, 47.394550170948094, 24.46789592219828, 102.78849923379636, 21.38761289814135, 30.783355890640866, 33.17588729746323, 79.22779936108552, 19.193464407247372, 68.60046568050446, 50.297414356379434, 13.716654532494362, 63.79512269074615, 186.6593982653032, 130.9142160481925, 38.024175686918866, 55.85392575930632, 7.827857209597703, 20.681269397471898, 6.454372437202969, 18.098803978762945, 23.995159687690954, 14.108767306238054, 18.653106249064194, 24.77568466121962, 21.460470168536208, 34.16575798357872, 32.660783234283834, 52.17808114733401, 49.85019128332561, 6.686406963880626, 28.416046364058843, 7.1959910301434515, 8.70108292082569, 24.89606957611891, 17.748189439305598, 44.69287347431593, 7.751698176281724, 5.793310264705533, 112.52534646033526, 24.000286240609835, 128.59091640305277, 43.2720363439793, 8.781826032540545, 16.450049535758637, 24.015285323228202, 52.541921455004825, 28.20501070319715, 20.74906986894233, 24.060589420615823, 8.081703414108091, 84.227034537273, 28.69936954432452, 6.461229807640785, 164.77578767013816, 59.98675843509649, 17.28578462516605, 21.539354602398024, 18.52450810098577, 18.465250296601962, 164.05117652130025, 71.88566958029237, 70.00385178061569, 65.7163583075558, 41.141227893841645, 11.88361559130869, 7.795346422785036, 42.33793003992594, 11.939777368947546, 76.57897063195298, 29.368972789529924, 11.921177636591459, 5.291062530399931, 85.8293223168933, 34.47798205294714, 14.42498465662366, 62.591350913406195, 14.127026995113377, 47.30936508612109, 49.689845379857985, 63.499134836007116, 6.790791135220728, 8.341670172058715, 14.902438020319789, 15.03754526278971, 5.032085275466776, 22.424437071067018, 72.41419459642783, 7.943057622692569, 6.037011219742929, 14.18056982605961, 55.22843349517947, 74.21026029559332, 8.010254555975381, 12.159922530059777, 19.24594288009279, 13.810962447537966, 47.217034863419045, 54.17830435990589, 39.738183164678425, 36.773143844506386, 40.03812837273335, 44.583522499709275, 90.91761086151563, 28.354939381730684, 18.247224553013137, 12.768427506116218, 5.280838411439491, 5.1625675652619645, 14.35419649926859, 62.70269031431076, 27.481453209948477, 16.377187180675755, 26.527878474055647, 20.126269619456743, 32.00380562832335, 9.699946542658637, 6.8845164448158505, 19.451541931578696, 26.19341492609218, 12.885442112676452, 52.10904953356463, 25.569396567975907, 22.670606249695425, 5.907803964461889, 17.289191592624828, 34.20706089354225, 34.49380921086732, 72.06226900879658, 51.77599507360697, 19.590315855734303, 12.555748924287064, 61.68460324676785, 6.505939666697676, 63.50790992113006, 64.70473224119972, 16.856639524930003, 63.57212091173417, 13.198672342970942, 27.090118629472293, 58.050455508248184, 6.308512028279684, 12.195615446376122, 28.1125493235336, 78.52801421823415, 6.781451730069456, 29.535720090695715, 100.93041505043229, 44.10448023473629, 17.879972005199292, 15.441532034588462, 26.553045387627492, 6.3564165048838035, 8.159384048472909, 5.820203329892717, 9.478649921729062, 17.633963103699926, 47.49128856832983, 76.16596437248445, 23.719829453640198, 15.993626383524578, 27.010711059551813, 10.766673559743692, 45.7116119088761, 66.09347393923608, 123.728997060729, 7.068670630139105, 27.492885130187894, 29.20905973335112, 5.384531059832229, 7.694955854719751, 39.49262534712075, 6.4806912423521235, 28.43017321628232, 11.113584873476096, 20.093177703576448, 6.191629280169867, 43.15032996548574, 36.590138905919986, 29.67355271902917, 13.623066236864439, 54.437979797466994, 7.361458740052689, 25.7651545680371, 38.32865370074752, 60.689934530103, 58.50934886045104, 20.017220419044865, 18.461500961528742, 68.85328511059436, 94.82005454573597, 31.490846046872388, 35.90599640315565, 11.573462808828564, 45.22771039809034, 5.489725764728845, 20.810446185940467, 7.1105319740376505, 59.82945938225366, 30.767400233493163, 41.4137280525245, 47.12665315524341, 6.410354742412997, 12.036589279968533, 25.774612632008104, 75.94435030895067, 5.475132795535052, 20.928568964111633, 59.83866553369977, 18.403807906652847, 5.116010450796611, 17.773121540899357, 26.54522762545924, 27.253829759108722, 18.659068473455925, 5.138952820248972, 21.37694182412537, 59.41460982601378, 68.64055541501733, 55.91249013919743, 101.33824913721733, 8.562259530849216, 73.48863172179546, 34.257682380247275, 8.010540877757933, 18.182225514299084, 70.60281688074743, 24.24205441791383, 11.319283341702537, 52.09883212322066, 20.08543616885495, 7.208392239513206, 7.167560235008536, 20.900083352639978, 12.403264665188315, 55.508908400484785, 35.6725883021063, 13.157315243368119, 6.93768401427477, 104.67067939951393, 7.023893484242543, 145.9337115251075, 73.92908225058356, 25.785360476606254, 8.220233998687904, 40.363697290222035, 65.1543983322663, 49.48529245155906, 103.3898438084461, 23.928661695519718, 24.887708552636788, 84.13479422568942, 64.80548587606586, 51.27854148528419, 28.887182697129905, 5.2956593514113095, 38.26939529322475, 41.372479679527224, 12.871107329527446, 62.51913340861174, 48.09653820094358, 12.880754535695198, 25.06812345352619, 6.338378696160256, 114.41957712719226, 7.107920759904578, 26.55290305343651, 73.39250188855804, 16.723106226063045, 29.121185266922964, 12.678621155627354, 10.003339224510603, 25.50094552229365, 11.950197488040207, 61.55055636404359, 34.37569753983041, 14.056319875303764, 5.249857653118129, 41.26162872189701, 13.92282787418622, 45.44190696820291, 8.752528616202149, 13.252684585994668, 7.489792551723507, 28.659846862373968, 8.014710747503916, 25.440355794872012, 31.46197680569246, 19.778275325138054, 72.29663769180411, 27.449669621111674, 18.579280657774085, 14.443071746934182, 96.10362784067081, 32.84614713441396, 113.44353389113809, 82.4849848722507, 122.2723674991071, 11.681949227258043, 60.472108876068276, 49.7830957696142, 6.5628999359765245, 22.26522441181521, 64.03399460501149, 17.30297198646964, 23.526945525156208, 5.871655642152568, 14.287112873819892, 19.999588226403404, 61.59398442053999, 30.515977258451414, 9.897622713576803, 45.80191536259732, 5.916427480603669, 15.600198681410191, 67.32893805433743, 29.896806001402098, 5.463716743567968, 38.21407608623051, 65.16724390618344, 51.4237009992934, 58.196604702050905, 28.102491616702803, 19.201520858060686, 73.39750513214473, 6.345789098624986, 8.16033384171054, 73.4588285682594, 8.626307341908115, 18.056500518930523, 7.080705691133327, 92.73712171799548, 6.034256110600542, 45.857154481155916, 61.68424177950746, 19.471130906014093, 15.550122399335176, 41.14518506789552, 120.81544449783757, 14.913080940917737, 17.176993583182973, 5.353169126127089, 19.552833718259418, 58.393940815658816, 65.14224929300617, 26.412194695253493, 41.179669932035125, 82.43722540750441, 45.25584168507266, 28.212866015535887, 18.867190486533648, 40.43794089788453, 11.344157627765254, 8.782974960108191, 37.888588061419696, 38.51134021506685, 18.5360871738402, 31.231592451091494, 19.535451217242517, 102.96726424074585, 24.954351723593078, 10.303241452324277, 31.171652384751606, 9.021653263239358, 18.02849842184464, 7.726276144955801, 79.37788898292467, 11.836518974698588, 93.50337740022779, 101.12926868584923, 13.720823989703218, 9.864807998882894, 52.66684272227127, 19.576252567240644, 14.887603070513087, 36.49450288126749, 18.227048105649946, 114.70854496337714, 5.716788521471713, 53.74688966540803, 79.96526099967112, 8.818156229336344, 15.20821201895359, 77.60841507239616, 6.011417559326388, 65.54054963084505, 15.351564933530423, 74.4389474335405, 47.52098792852107, 76.7077740473498, 129.4673452410191, 28.276236781640122, 85.73690965193047, 42.98645500290863, 110.3903332337499, 8.134897789543958, 53.63296275701389, 64.95097408931667, 7.18165592189835, 69.98156116748746, 48.53986967743944, 27.14626055833154, 62.716726521769495, 170.68995065507667, 39.108493268782, 9.117382687536145, 32.225668953981966, 74.64791100736278, 85.37980922432709, 33.420727928895474, 107.09206052869142, 29.35565419564585, 27.183708756595557, 142.88152396435012, 11.009803306893216, 83.85484340786695, 22.956284197560688, 122.92283034564265, 28.155286282568884, 27.719111337577136, 30.22251454650414, 5.0305257860806, 29.89311378835734, 25.414815525813406, 60.210893524313285, 30.587281251228063, 37.786495908942925, 118.7011871585257, 44.73261790998269, 8.03512453728495, 82.96102760146988, 19.797444182024698, 59.69225427858713, 7.464226368003321, 44.91272720517138, 41.933402865693694, 77.00343568174758, 6.53308455320976, 66.76868756978867, 40.666204245520525, 49.243697727088716, 12.739562455815083, 8.202849978789036, 116.49877249785159, 15.434517683796969, 12.785979110750384, 14.583254801111865, 23.39003764768012, 31.659945248571756, 13.167568529616968, 105.46222099604229, 11.414273061834628, 179.39484261431068, 33.28722063099202, 6.683528436531208, 23.155441531731977, 35.34760005589134, 37.367688618725396, 53.14262113631161, 21.67597890279498, 8.827867826340148, 11.704845284886385, 76.06290125164809, 73.50875881394883, 55.69665807966062, 30.32181961238482, 62.41198850478027, 11.398729478148493, 8.490030356896927, 144.87398615082913, 36.272103086390636, 43.98641650959966, 7.845044612841957, 15.542687688527694, 20.82539808323558, 26.71357218726071, 22.082484355077746, 5.642157137178767, 25.28944410618932, 12.50265353752723, 43.337541240077584, 43.71244494103669, 6.986610781664857, 20.05077309577568, 103.29399095536898, 6.074301044683988, 6.8243387357127565, 7.858962047361409, 54.42040429885585, 45.69486087452946, 28.68836375657186, 9.654139820745335, 11.886850473452727, 41.49783040941971, 25.36960092730339, 52.817631135339234, 21.980864361937986, 47.876863979050086, 20.229769552707054, 33.51330798763484, 46.89714497310358, 33.28164683160892, 23.332865111839684, 85.198243513292, 18.058124002547252, 11.066599020073738, 44.9663957804908, 62.91023028553929, 48.9033508484581, 6.504324695409879, 47.51307835970141, 22.056915070739322, 5.699347272547498, 12.98736185844792, 76.07984365920302, 51.429149100151264, 46.52544512229808, 26.616094638079097, 51.78818453964597, 51.21326304773815, 10.141654302163568, 14.433575813094722, 37.305411363811885, 58.51459928589531, 18.457195676184213, 111.38207352795803, 5.410396021695638, 77.9177427912325, 27.76979717929078, 5.990586579047939, 142.91683771814593, 7.002262291279264, 14.314117431536566, 34.70729507075813, 83.90561296450255, 16.46571688225264, 25.419055858243883, 17.795676951056855, 14.135843232308993, 51.54016654199983, 19.681099819240874, 83.53978674488485, 25.617325475664302, 11.525534996768885, 8.225805791110783, 6.877806003438922, 19.27398158532855, 16.744835659777483, 41.20523522271519, 17.16516625987753, 98.67062824823795, 32.91554493358683, 9.293382457549667, 24.926328244516135, 48.19485958147697, 136.59154367458834, 112.33485808535082, 5.489016578872367, 9.624718114390088, 67.4122801488725, 91.9743497454442, 15.409913699736206, 6.28268333892161, 83.3362871440157, 8.91621790563177, 39.82990006262952, 46.90437323618239, 36.59003749456521, 36.878215459027516, 18.210978710264456, 77.49398285445432, 44.243548165452864, 8.53803297724232, 7.51381394757675, 18.83302957986365, 8.290842495982199, 41.60715589690644, 54.00995481952001, 32.552318974902185, 62.38475130040809, 74.78149951597807, 18.752548896187264, 25.773485639806573, 44.54424266710289, 74.64731224059177, 141.9167142346243, 25.91077847865507, 22.043252382025006, 128.92007384141948, 12.874494126663262, 46.71687581756902, 136.5159802947679, 37.74312475793242, 5.438340920826756, 52.49678945004781, 10.498234060244936, 98.85453095488727, 25.29115844553106, 72.87461386677737, 15.891689631095247, 20.247138964842662, 56.39209864866736, 8.13821231160452, 23.937447648420253, 96.12104821462472, 37.47885662285955, 15.837544729359886, 47.42533724237442, 7.595213742441912, 26.278263942336068, 144.11912267904125, 149.30031862548807, 15.84612540100489, 30.395634511532357, 40.67687092396781, 5.643339810514225, 37.2690709957396, 5.582209507196452, 97.0627410188977, 22.253350821677742, 16.040053616102938, 14.395191976847473, 99.55998487299813, 72.32506484771724, 59.42235906593161, 14.397235421210304, 6.460016444692856, 29.915544412247105, 85.48350917743132, 75.5263291514892, 7.70388782448267, 126.49725055330563, 33.392036882955026, 11.349445307435664, 54.82406348083409, 12.773775149130516, 16.98133921796448, 73.08541566326062, 79.18186144435704, 16.09480419724849, 15.310311632532338, 16.80317883236455, 11.348052280084097, 41.483442547675445, 126.12510894205808, 41.987855889820544, 90.65793503624892, 115.00958529057709, 5.13294669598566, 28.81821986307697, 12.666868405218253, 16.683055622523334, 6.808776416891264, 89.62492752742658, 9.678580496902491, 25.692794020525703, 114.36874469395997, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([2765743.7236339333, 3277224.4887149325, 3342859.5703118932, 3342863.8883506395, 3367774.015886113, 3408302.005520054, 3408775.811172901, 3472456.25, 3573642.4570349483, 3585336.341499848, 3585405.051434001, 3586319.377742415, 3586340.142806939, 3586389.0115167922, 3588820.3125, 3588952.8418845925, 3650654.6875, 3655976.5625, 3761615.924409975, 3779439.5738111143, 3802937.5, 3858488.587550443, 4020429.873192201, 5498106.991285873, 5506709.375, 6737366.708314181, 7149496.875, 7158895.610129762, 7182962.5, 7295305.676095689, 7305601.5625, 7307154.6875, 7308718.75, 7311151.680398839, 7311668.63841972, 7311930.7755616605, 7314023.4375, 7329307.8125, 7336400.858945932, 7344834.127778327, 7350328.125, 7352767.284449024, 7362099.762271273, 7362421.989009506, 7362906.25, 7366301.229333544, 7371475.0, 7375691.185757118, 7377057.8125, 7377208.688195086, 7377777.240881312, 7378234.265019668, 7378646.875, 7378694.782842773, 7380354.6875, 7380965.896713877, 7380986.125737208, 7381015.153174707, 7381040.186065448, 7381835.9375, 7382105.025869215, 7382109.375, 7382113.538496332, 7382651.479892339, 7382899.159470267, 7382962.5, 7383493.75, 7384978.762403924, 7405940.043016419, 7406462.5, 7407132.540438629, 7407301.475934678, 7407726.5625, 7407896.539880579, 7408346.519564677, 7408657.926162462, 7408881.25, 7409297.419250504, 7409732.497745152, 7410086.095443272, 7410836.2649523765, 7410932.908185568, 7411118.9612752, 7411267.1875, 7411590.561465977, 7411605.621858546, 7411618.152058162, 7414522.241953282, 7419360.6035614405, 7420550.0, 7423443.6371853715, 7423461.385531122, 7423572.653734017, 7423666.027334731, 7423763.853477161, 7424047.652438432, 7425114.020936231, 7425410.9375, 7425562.277996872, 7425731.308588089, 7426826.344602515, 7430403.242479942, 7434159.9077676, 7435110.087541953, 7437752.100953544, 7439575.255323386, 7462594.906672051, 7463274.435151657, 7466197.34288215, 7476800.0, 7477382.8125, 7478387.569853877, 7494578.125, 7502240.363331153, 7560099.294128103, 7589320.068092074, 7609399.5532633215, 7610487.378643554, 7627563.644068218, 7627963.419434513, 7627990.078083351, 7628360.790670047, 7642542.1875, 7643386.701005019, 7643481.530950474, 7643942.609406486, 7646955.664878946, 7656982.654066697, 7657232.8125, 7660307.0861897, 7660863.087881455, 7661700.010175104, 7661715.625, 7662481.785081211, 7662701.813586257, 7662916.640264418, 7667170.975381105, 7667962.5, 7668226.125175004, 7669044.191887749, 7672736.251300564, 7672918.574020576, 7673399.3432241585, 7673666.7647545505, 7674273.4375, 7674585.319279518, 7674606.25, 7674818.75, 7675349.332011225, 7675720.3125, 7675734.095074312, 7675894.53057242, 7675946.284016641, 7675984.15612466, 7676059.601331422, 7676614.167600081, 7676635.235366499, 7677143.1405298915, 7680923.922920298, 7684616.101944626, 7684645.3125, 7685287.5, 7685460.046836613, 7685512.892275124, 7685706.188476108, 7685842.200809522, 7686122.693773865, 7686593.96456656, 7687526.039318514, 7687557.145219689, 7687776.784591531, 7687910.403772909, 7688112.791434378, 7688257.052893663, 7688261.77292872, 7689560.128217246, 7696856.037718886, 7697132.442697366, 7697682.670405322, 7698331.25, 7698505.241054242, 7698902.861637815, 7699047.392448009, 7701810.9375, 7709357.024260027, 7710259.375, 7711913.794563671, 7714099.492177745, 7714168.75, 7715982.117144519, 7717170.145183522, 7717351.268292983, 7725816.917440271, 7726483.748022985, 7726706.17990788, 7729276.671332932, 7729292.1875, 7735687.5, 7736816.730444151, 7738960.9375, 7740763.829540844, 7740859.217546618, 7741534.619243417, 7751128.125, 7753387.004984439, 7754736.211373121, 7781327.753338343, 7781690.350559814, 7784790.625, 7794109.375, 7796281.197015744, 7802029.699053333, 7802693.390313873, 7804384.344426682, 7804538.373410931, 7804958.841745546, 7806132.627612024, 7808226.48571043, 7808890.658623211, 7810041.635780007, 7817816.125716507, 7817871.875, 7817981.25, 7817993.75, 7818035.2836585315, 7818071.38187821, 7818073.4375, 7818206.237262725, 7818514.139456218, 7818589.97177127, 7818615.216552803, 7818649.324633389, 7818671.154985487, 7818679.495905399, 7818692.0748096015, 7818760.064670137, 7818804.282950464, 7818817.224525433, 7818870.077431395, 7818875.78385811, 7819186.482938737, 7819297.170878085, 7819309.0894935625, 7819326.167179686, 7819358.772604607, 7819425.453994846, 7819529.6875, 7819540.369889745, 7819608.941727495, 7819609.375, 7819611.046573322, 7819625.0, 7819643.185876845, 7819652.352812594, 7819675.9282949, 7819698.4375, 7819735.06149552, 7819800.515849746, 7819815.753753243, 7819826.546136031, 7819826.5625, 7819839.0625, 7819888.0101863025, 7819889.907831628, 7819893.636738037, 7819926.842212888, 7819956.086062518, 7819974.452862644, 7820025.43445841, 7820034.375, 7820084.375, 7820155.879573013, 7820209.375, 7820215.625, 7820251.521962487, 7820284.636505555, 7820296.858563647, 7820299.6080425875, 7820310.8807244515, 7820375.0, 7820397.340400494, 7820410.9375, 7820421.163421383, 7820422.66284262, 7820476.5625, 7820484.342000959, 7820511.203281329, 7820535.087202323, 7820607.8125, 7820621.875, 7820640.625, 7820679.10099071, 7820712.538716646, 7820729.831664903, 7820731.918215469, 7820736.910215148, 7820748.4375, 7820781.25, 7820785.9375, 7820796.788530752, 7820802.769063888, 7820832.8125, 7820858.71360478, 7820872.546432339, 7820911.559970887, 7820916.516059878, 7820921.875, 7820954.136230797, 7820957.8125, 7820959.028096054, 7820985.46794448, 7820989.963937015, 7820998.4375, 7821007.706025947, 7821023.568886352, 7821027.0046168305, 7821033.971043603, 7821067.831465566, 7821068.147874991, 7821117.818185389, 7821125.912457258, 7821126.369917871, 7821145.983637435, 7821147.093256022, 7821165.545224473, 7821193.377177024, 7821225.859265826, 7821225.90372054, 7821228.641672223, 7821245.034531834, 7821254.970854585, 7821255.868130406, 7821257.36759188, 7821268.178312134, 7821293.75, 7821315.625, 7821319.058070767, 7821338.699950939, 7821356.268591426, 7821377.649311139, 7821387.286370431, 7821390.502226385, 7821407.967486109, 7821410.710663239, 7821431.25, 7821434.129143385, 7821438.516223216, 7821454.176859974, 7821457.186539043, 7821460.9375, 7821464.700735726, 7821467.738535214, 7821470.3125, 7821479.6875, 7821488.699183155, 7821495.3125, 7821500.344328841, 7821505.135040775, 7821543.655347067, 7821555.887199214, 7821566.206086112, 7821601.006242422, 7821602.913054993, 7821637.562684682, 7821638.4647528315, 7821660.251995427, 7821671.708692724, 7821687.947472658, 7821693.246722757, 7821698.4375, 7821703.0138248345, 7821721.875, 7821725.0, 7821732.413641091, 7821734.615652202, 7821750.276168928, 7821761.646896976, 7821777.904120238, 7821806.832266724, 7821829.6875, 7821889.455128599, 7821924.716680026, 7821971.108018383, 7821987.21928802, 7822033.753837902, 7822059.375, 7822068.019688352, 7822070.390114383, 7822112.855256278, 7822128.840844312, 7822183.834487705, 7822188.484533319, 7822191.911375807, 7822194.903888148, 7822238.718772983, 7822239.0625, 7822256.08301614, 7822258.064456233, 7822289.0625, 7822348.2899879785, 7822391.692124315, 7822437.375642164, 7822439.731111178, 7822471.875, 7822582.8125, 7822635.891494135, 7822857.8125, 7822882.8125, 7823139.497670326, 7823172.376652496, 7823356.25, 7823533.123777729, 7823842.1875, 7823918.75, 7824002.017032306, 7824048.436699469, 7824132.8125, 7824318.75, 7824517.045045396, 7824622.692380758, 7824906.018534233, 7824967.1875, 7825015.384952304, 7825315.625, 7825387.635148037, 7825450.102748348, 7825917.177211254, 7826084.805663416, 7828644.743586343, 7832340.213554984, 7835484.375, 7835619.601027773, 7835855.743969551, 7838085.722426627, 7838296.875, 7844042.1875, 7844344.750668642, 7845027.135750986, 7848083.0223753415, 7848668.417994731, 7848844.977627983, 7848867.732505023, 7849643.75, 7850171.285389237, 7850724.045136105, 7851190.625, 7851775.0, 7851984.366350864, 7859453.786193188, 7859763.345433397, 7860962.164606743, 7862099.879624481, 7863304.524377854, 7866473.977902249, 7866569.473853826, 7867728.5202224655, 7870065.515204132, 7870374.1559438, 7874420.3125, 7875480.093410079, 7875633.389848617, 7876290.130243935, 7876355.551297233, 7877022.768331794, 7877160.62656803, 7877226.392681089, 7878082.422958386, 7878090.254824949, 7878433.279473879, 7878435.9375, 7879112.5, 7879430.580470719, 7879668.75, 7880143.035461219, 7880277.31738419, 7880636.425517665, 7880695.431693901, 7880957.708153542, 7881239.0625, 7882832.589765829, 7890810.398812254, 7892171.327823847, 7896138.985560146, 7897723.4375, 7900303.445146449, 7906025.590379934, 7906292.438140842, 7907940.625, 7908564.151726891, 7909429.6875, 7911531.25, 7913606.25, 7918261.541174381, 7922076.951752079, 7929222.460093554, 7930581.924970713, 7931291.938973316, 7933428.20875245, 7933678.294155355, 7934315.730128321, 7935050.08950326, 7935114.0625, 7935151.260076136, 7935283.063621842, 7935284.293518566, 7935301.318553732, 7935416.460410949, 7935641.525086282, 7936244.966474936, 7936765.420333395, 7937645.258819946, 7937989.0625, 7938293.380426402, 7938342.434162102, 7938654.830072606, 7944795.271551154, 7946224.485424091, 7946414.053446402, 7946724.347196187, 7946855.627509256, 7947100.0, 7948254.542574239, 7948300.0, 7948382.4174818145, 7948387.368925949, 7948477.403088448, 7948681.092876387, 7948698.4375, 7948709.375, 7948832.8125, 7949369.650624991, 7949448.541331047, 7950144.397838126, 7950746.875, 7950987.5, 7951023.4375, 7951251.8301156135, 7951268.75, 7951420.948118192, 7951650.991231436, 7951757.770796181, 7951946.875, 7952136.723197036, 7952156.25, 7952185.9375, 7952194.804868259, 7952439.5753412945, 7952467.695795752, 7952492.178420083, 7952519.057759199, 7952788.600394401, 7953021.875, 7954530.37230394, 7956527.434320102, 7956533.798730999, 7958057.184886937, 7958192.119823998, 7958966.347187177, 7959030.078745818, 7963807.1292520175, 7965309.375, 7965328.247394073, 7966753.125, 7972393.75, 7973705.174809914, 7974429.6875, 7974481.25, 7974730.688794541, 7977160.026235321, 7977695.354827332, 7981227.311945468, 7984038.202551075, 7989185.9375, 7989657.158775659, 7989795.6332246205, 7992784.547548127, 7993325.70621879, 7994028.8120243065, 7994329.6875, 7994379.6875, 7994775.9997131685, 7995191.439030726, 7995229.6875, 7995232.427900204, 7995320.908234153, 7995333.872342864, 7995376.406673587, 7995456.122400792, 7995542.245846844, 7995652.562721655, 7995674.008016921, 7995762.763185874, 7995802.209766953, 7995831.034084746, 7995885.406070624, 7996192.1875, 7996267.1875, 7996525.986669275, 7996537.647309999, 7996540.043502226, 7996648.4375, 7996794.637534632, 7996918.75, 7997293.75, 7997608.703938221, 7997616.98407954, 7997647.418359412, 7997670.3125, 7997924.9482748965, 7998251.4542018715, 7998821.38156551, 8000116.025192854, 8000357.8125, 8000403.932760963, 8000919.450442941, 8002136.421077422, 8003320.781860257, 8003567.835755944, 8003573.612428682, 8003591.934110193, 8003782.980002488, 8003873.4375, 8003885.605296734, 8004025.728310304, 8004341.413152874, 8004744.785493279, 8004860.612556936, 8005841.602649339, 8006133.822898828, 8007165.446683741, 8007945.166237387, 8008572.746507055, 8009223.292674257, 8009482.9026834965, 8009953.835646109, 8010279.550279725, 8010325.445272019, 8010357.494530579, 8010359.375, 8010415.625, 8010556.25, 8010651.890332568, 8010654.6875, 8010742.1875, 8010811.404635427, 8010923.7063378645, 8011184.375, 8011188.00672422, 8011766.8697754955, 8011803.875204269, 8012632.629520526, 8012764.961006685, 8013042.1875, 8013328.310490315, 8013494.351461607, 8013573.34125265, 8013637.232308294, 8014442.350208924, 8014694.468666496, 8017212.5, 8017721.920358351, 8017939.0625, 8017966.152441545, 8018178.125, 8018667.1875, 8019741.67012431, 8019904.143238613, 8020420.3125, 8021784.9727147315, 8022446.628390413, 8022918.75, 8023931.841558376, 8026088.1317064725, 8027454.5301941, 8028446.818165237, 8029738.528314581, 8029934.21045065, 8030670.14080387, 8030844.582727826, 8030889.213510476, 8031692.1875, 8031768.444020267, 8031931.242521407, 8032925.784151367, 8033219.074605056, 8035166.468196236, 8035230.546095109, 8038009.375, 8038198.320736238, 8049571.875, 8049617.156188452, 8049716.096027096, 8050536.497700399, 8053483.564194924, 8053526.330286862, 8054204.8217012985, 8054611.7714034235, 8054948.780818195, 8054954.459185565, 8055307.22682503, 8055340.625, 8055399.278478477, 8055642.1875, 8055792.638792769, 8055980.649650379, 8056127.492660385, 8056179.296954918, 8056211.564808075, 8056226.890336044, 8056284.375, 8056303.984803668, 8056482.560871417, 8056590.625, 8056594.950580771, 8056789.6324676275, 8056973.4375, 8057117.707082611, 8057120.356069905, 8057241.588691314, 8057413.158112126, 8057421.9554467425, 8057656.406461538, 8058138.3073745305, 8058195.3125, 8058368.073494841, 8058503.193256019, 8058605.671760854, 8058838.291357102, 8059634.375, 8061224.2632240895, 8061882.691881946, 8062101.5625, 8062852.690527364, 8063293.75, 8063446.343079415, 8063907.8125, 8063992.1875, 8066673.4375, 8067829.389218408, 8068146.875, 8068301.5625, 8068464.286681055, 8068513.483469969, 8068718.75, 8068805.04522845, 8069184.233090476, 8069372.742671113, 8069754.475943563, 8071155.985557492, 8071334.375, 8071737.5, 8072037.5, 8072537.5, 8072663.944618082, 8073489.0625, 8073584.303372344, 8073630.933371474, 8073656.173236318, 8073801.5625, 8073880.885151116, 8073887.5, 8073943.870428273, 8073954.645444447, 8073954.6875, 8074027.460798202, 8074048.273996361, 8074051.382489578, 8074231.25, 8074273.186982483, 8074315.625, 8074396.875, 8074443.190630481, 8074455.7421730505, 8074481.695856313, 8074588.373876183, 8074705.660502543, 8074777.723572668, 8074795.805661864, 8074831.501559956, 8074835.718090622, 8074917.474758869, 8075101.5625, 8075128.125, 8075163.344904452, 8075203.958412749, 8075271.713241797, 8075295.73772538, 8075309.477825169, 8075321.165202488, 8075370.215221511, 8075507.483727214, 8075515.054845599, 8075522.878597012, 8075655.841433764, 8075715.44241184, 8075795.3125, 8075964.0625, 8076021.460742203, 8076082.464421898, 8076113.587587006, 8076164.0625, 8076253.125, 8076277.643139368, 8076468.087730668, 8076625.340314753, 8076646.717132354, 8076720.2938478105, 8076792.1875, 8076799.716347824, 8076807.8125, 8076873.6042378545, 8076937.865887737, 8076948.274261563, 8076948.4375, 8076988.953877156, 8077038.122485281, 8077061.08676472, 8077097.867855611, 8077188.963738244, 8077193.307120703, 8077292.68472596, 8077401.374113416, 8077503.856542795, 8077504.586687647, 8077509.375, 8077558.835943965, 8077586.989982279, 8077623.4375, 8077674.86626058, 8077751.859755644, 8077772.530712089, 8077833.754120566, 8077842.1875, 8077845.3125, 8077876.921020895, 8078062.936845381, 8078206.25, 8078237.316980268, 8078296.875, 8078379.235044363, 8078781.25, 8078792.185693707, 8078858.706875274, 8078910.9375, 8078912.580163202, 8079179.35406633, 8079190.625, 8079233.444460928, 8079303.085550172, 8079352.997101861, 8079388.8242881335, 8079518.75, 8079725.109062315, 8079879.464713496, 8080059.766587076, 8080093.632923997, 8080141.558995492, 8080156.25, 8080176.5625, 8080331.25, 8080362.395468961, 8080566.766577904, 8080589.928437842, 8080607.0745021785, 8080670.1134540355, 8080708.566827907, 8080714.34294898, 8080749.130234425, 8080770.954469059, 8081044.058395065, 8081076.3306275355, 8081298.478592894, 8081420.882023245, 8081422.755609116, 8081433.901311783, 8081607.637546215, 8081620.3125, 8081665.625, 8081723.787141897, 8081785.757771136, 8081891.685572866, 8081898.208745685, 8081903.125, 8081922.914744386, 8081940.25343182, 8082144.529555835, 8082159.615433787, 8082176.445784553, 8082248.984272428, 8082264.380803081, 8082272.279364491, 8082410.9375, 8082442.66977932, 8082628.551485801, 8082727.842764598, 8082745.26718979, 8082750.108505345, 8082831.25, 8082876.5625, 8082923.208119747, 8082997.494876893, 8083100.327649778, 8083107.36753875, 8083137.5, 8083232.930193117, 8083240.746588047, 8083281.195001798, 8083316.651966385, 8083435.9375, 8083479.6875, 8083492.1875, 8083596.41778371, 8083688.155651825, 8083782.620580368, 8083865.625, 8083875.44704871, 8083891.933298284, 8083899.184409677, 8083943.758056799, 8084026.5625, 8084034.375, 8084228.125, 8084235.9375, 8084245.3125, 8084333.548046323, 8084473.739842924, 8085136.540232493, 8085848.060810674, 8086296.361590813, 8086384.227170953, 8087489.827495513, 8087720.153246539, 8088235.2639060505, 8089422.386285848, 8091195.3125, 8091646.020307158, 8091672.880114634, 8091915.625, 8092546.431142761, 8092693.75, 8092816.999228629, 8093393.75, 8095831.478792001, 8095885.3028173065, 8095934.375, 8096037.208490864, 8096320.193714776, 8098097.954523519, 8098232.8125, 8098429.904270282, 8098430.252771582, 8098489.040260362, 8098954.562577518, 8098960.644369146, 8099153.125, 8099242.584801457, 8099309.641287728, 8099379.6875, 8099639.58017467, 8099741.92513901, 8099865.034857427, 8099971.403729917, 8099985.547420769, 8100178.285632882, 8100529.848019352, 8100578.5206357315, 8100715.625, 8100742.1875, 8102324.849478297, 8102402.950081729, 8106911.859021407, 8107568.406710157, 8108231.25, 8108345.582465319, 8108351.49757677, 8108390.865309111, 8108639.199876048, 8110068.75, 8111736.785151356, 8113066.073841434, 8113456.25, 8113456.810229204, 8113654.033820473, 8113861.031007772, 8113887.915493328, 8113984.511540132, 8114826.5625, 8114945.158587957, 8115098.4375, 8115132.8125, 8115178.125, 8115471.989028641, 8115888.247884183, 8115999.240270754, 8116005.432939082, 8116292.410102956, 8116629.597233362, 8116633.196407039, 8116646.7132107755, 8116659.844165307, ...], [11.086743523523774, 13.295244788275943, 5.348659149114542, 6.245443756265399, 17.724575028041013, 7.242990232679114, 5.660553750318633, 45.8870039463069, 44.77213729490398, 9.698084840361725, 11.748562934987408, 7.847239296546939, 47.103889761204826, 14.750681956793468, 46.13037575076379, 29.90999126796403, 31.36727539982754, 41.048236791153876, 35.89115985686644, 7.262675276412095, 56.02363104508072, 21.746685288518233, 22.975317506962988, 7.330972594065938, 52.52429822680168, 50.57287080674668, 61.86963806145948, 41.368763739006695, 57.7928428285231, 10.335321635318529, 70.48027674774873, 87.06992205166237, 54.072748874273856, 9.433123417300639, 5.805770153358551, 6.415204730715415, 60.582021813341214, 63.545744014108536, 6.948025102601805, 24.44916464181641, 48.63462947269666, 11.282702849107677, 9.13816647951623, 7.645000114096622, 29.099728774633288, 33.90069662102685, 45.85279098559949, 12.134091894018388, 36.499258363622886, 100.20523403817063, 20.177327206061893, 94.23695568031637, 71.78971692358635, 21.20226861922696, 55.06930011517329, 50.61208035414242, 12.635500362095387, 18.33870852590878, 5.902070730634655, 67.14841181698215, 24.434551454489167, 29.986990397797815, 10.396804116627173, 23.632141956097882, 43.505472909912214, 78.07386317441242, 108.14239752725783, 31.51531403856817, 13.106983797393687, 41.405823187433775, 18.108172434924185, 55.367102507246564, 51.766296782399266, 23.31227131687436, 13.740215776989372, 6.786412550727598, 39.36847455028504, 17.520380325017825, 6.438857215680149, 9.468621886982227, 28.055565557966847, 6.502196125683644, 15.81296391951313, 114.40662658282749, 27.32779154815151, 28.55570879109479, 20.56871882058428, 25.259863455937705, 7.4867639861946245, 63.824451983725645, 49.86543715846554, 9.741328586184759, 75.31054611096053, 71.32470368372024, 24.986839363052443, 8.745458465866705, 72.8671650094106, 51.457274886332556, 24.800937365049357, 6.094213126988656, 5.197905866835733, 11.31643856860776, 17.45308401666531, 73.51169496169908, 27.583486722548272, 23.908855653964928, 22.486934054393082, 35.01646613557636, 146.54505962817112, 63.95274898450071, 49.58919496994633, 11.238677003925307, 61.92853732221927, 6.712367111781823, 66.50653071700951, 74.20832125144076, 58.93287518838645, 76.65765192391804, 6.215741424708794, 28.844111245376997, 87.82456514057112, 14.409915345663324, 33.45549147830391, 46.53178579145939, 14.669765612815771, 79.51547910645883, 27.771920765354658, 14.370168941763978, 77.13958535640593, 33.97905221503401, 12.19038889720821, 7.1241289537510974, 44.319795555334395, 5.644348225947432, 11.544241914223257, 22.815707960802584, 28.441350644412072, 37.40912405033362, 22.141962334622626, 9.735253266833613, 11.656379635520135, 25.475686354127202, 17.161030340161197, 13.542727914418453, 62.30199812948032, 8.8581860896178, 56.05344887687183, 68.40741877965208, 16.453830254335237, 28.708294923129287, 97.51453087797877, 5.758304325665044, 6.398275167335081, 7.065080536581928, 5.721315357297423, 129.10032186898857, 19.688769560301694, 97.60432723362365, 13.185571648166206, 9.77010639016415, 71.63590849241191, 91.60648412105438, 5.750892529830267, 6.844432440812715, 55.91486876016817, 13.591828383735528, 13.862932325038813, 6.807112725564489, 34.90120593578567, 6.387340673507174, 26.39997792431778, 5.7755170196026615, 87.34071285616255, 19.272767659361513, 8.783997256475347, 18.878091820761142, 30.95320959217844, 33.698805584738245, 8.21283798209582, 91.88907106576868, 48.0729127972521, 56.982342254163505, 12.045857286276464, 63.29907083006448, 19.03047218868463, 58.05993148758679, 40.12565787651635, 5.777337566081374, 31.35771135422818, 19.743101679460718, 14.339951629522794, 96.55160838737025, 93.43906818620397, 7.391189958044037, 14.680915813258581, 9.42515476658274, 40.88409182938086, 60.13833782859148, 8.058814565207307, 70.60410007920571, 52.55023598182469, 9.201723883293875, 9.54683176401108, 52.96136766761568, 12.339898229152677, 16.099353522344725, 22.876579609635353, 63.95156947260556, 49.90814466490308, 54.718136825955725, 27.51834921957718, 8.292696385571249, 43.94073326163539, 14.8262448020388, 10.198056858891203, 25.39763109993526, 7.073683814466979, 27.092755781489995, 11.180671918417124, 20.992227886443505, 32.30765079675015, 101.22669327338791, 57.86367476113611, 60.49205540958875, 12.923573890653838, 21.56198956057257, 48.16922740335334, 36.9318844565107, 11.25016326100076, 38.35814854609147, 36.67876494624083, 14.402618498407136, 19.547258636250344, 8.187792624441084, 58.37240340424961, 5.866835332672405, 59.896074440333805, 15.084536306997066, 102.91560802736127, 89.21512203882006, 9.83951749291637, 9.594776138572115, 23.93765928522579, 21.688971978452713, 31.041608905543495, 17.00932629185256, 39.870855720726134, 24.341596914363766, 6.044172542725545, 75.43579707530917, 19.943180333647867, 82.10786761803173, 20.876429229463664, 31.326169350998487, 12.972927643758204, 69.46629102546513, 21.07762582174923, 11.039828320886334, 103.25300519325296, 6.760244020336756, 160.37547661394552, 57.8201247000944, 17.322728846004686, 19.569608256799658, 14.526693709500702, 41.007164013381114, 25.659640033540615, 58.8557416062552, 8.530513872819059, 36.97926014197528, 32.14199618191527, 9.036667864786297, 68.67197849101363, 100.66511614820125, 14.789218194553122, 9.562762606823364, 28.203653061904777, 22.64312717473795, 11.04010764830665, 46.34491888329107, 6.860118600824665, 41.16467341420234, 5.763141068787926, 8.752323569884423, 72.39039428775071, 27.8881348316517, 11.570208446500894, 12.459176080783644, 47.604129789109656, 36.402789693193924, 33.915060893548294, 58.020551601751116, 51.29539979030612, 118.67857869418383, 7.864227867351089, 41.10174913188353, 92.18422056768676, 54.82458862263779, 81.24842854434289, 26.924137474664267, 67.29137754791722, 42.436943882228384, 44.73010978383854, 14.533877462638117, 12.26337004972286, 10.218680029728345, 43.030672422957096, 60.50981262677084, 65.44178449763828, 23.16954463241637, 21.80227298528166, 6.388227367111208, 42.20484181489848, 64.15808195044198, 15.467112062162803, 80.5130826357899, 42.04975511217356, 7.854029280557935, 13.054789316800536, 5.649914738764567, 100.39882792365171, 10.839464579710217, 165.76734594710928, 15.844208893854972, 6.474658012960427, 35.63896944038197, 10.18163210472914, 83.28601102818294, 26.434669419766642, 13.978256805985653, 11.601507503557794, 6.0492684262467105, 13.479505405223344, 5.671315278836211, 31.906040172149154, 117.23291386157999, 22.389954453891992, 13.718944575592579, 27.279084697972422, 21.739094025957424, 6.721593578262276, 15.108576448972823, 6.794847891158609, 6.064823624754692, 47.394550170948094, 24.46789592219828, 102.78849923379636, 21.38761289814135, 30.783355890640866, 33.17588729746323, 79.22779936108552, 19.193464407247372, 68.60046568050446, 50.297414356379434, 13.716654532494362, 63.79512269074615, 186.6593982653032, 130.9142160481925, 38.024175686918866, 55.85392575930632, 7.827857209597703, 20.681269397471898, 6.454372437202969, 18.098803978762945, 23.995159687690954, 14.108767306238054, 18.653106249064194, 24.77568466121962, 21.460470168536208, 34.16575798357872, 32.660783234283834, 52.17808114733401, 49.85019128332561, 6.686406963880626, 28.416046364058843, 7.1959910301434515, 8.70108292082569, 24.89606957611891, 17.748189439305598, 44.69287347431593, 7.751698176281724, 5.793310264705533, 112.52534646033526, 24.000286240609835, 128.59091640305277, 43.2720363439793, 8.781826032540545, 16.450049535758637, 24.015285323228202, 52.541921455004825, 28.20501070319715, 20.74906986894233, 24.060589420615823, 8.081703414108091, 84.227034537273, 28.69936954432452, 6.461229807640785, 164.77578767013816, 59.98675843509649, 17.28578462516605, 21.539354602398024, 18.52450810098577, 18.465250296601962, 164.05117652130025, 71.88566958029237, 70.00385178061569, 65.7163583075558, 41.141227893841645, 11.88361559130869, 7.795346422785036, 42.33793003992594, 11.939777368947546, 76.57897063195298, 29.368972789529924, 11.921177636591459, 5.291062530399931, 85.8293223168933, 34.47798205294714, 14.42498465662366, 62.591350913406195, 14.127026995113377, 47.30936508612109, 49.689845379857985, 63.499134836007116, 6.790791135220728, 8.341670172058715, 14.902438020319789, 15.03754526278971, 5.032085275466776, 22.424437071067018, 72.41419459642783, 7.943057622692569, 6.037011219742929, 14.18056982605961, 55.22843349517947, 74.21026029559332, 8.010254555975381, 12.159922530059777, 19.24594288009279, 13.810962447537966, 47.217034863419045, 54.17830435990589, 39.738183164678425, 36.773143844506386, 40.03812837273335, 44.583522499709275, 90.91761086151563, 28.354939381730684, 18.247224553013137, 12.768427506116218, 5.280838411439491, 5.1625675652619645, 14.35419649926859, 62.70269031431076, 27.481453209948477, 16.377187180675755, 26.527878474055647, 20.126269619456743, 32.00380562832335, 9.699946542658637, 6.8845164448158505, 19.451541931578696, 26.19341492609218, 12.885442112676452, 52.10904953356463, 25.569396567975907, 22.670606249695425, 5.907803964461889, 17.289191592624828, 34.20706089354225, 34.49380921086732, 72.06226900879658, 51.77599507360697, 19.590315855734303, 12.555748924287064, 61.68460324676785, 6.505939666697676, 63.50790992113006, 64.70473224119972, 16.856639524930003, 63.57212091173417, 13.198672342970942, 27.090118629472293, 58.050455508248184, 6.308512028279684, 12.195615446376122, 28.1125493235336, 78.52801421823415, 6.781451730069456, 29.535720090695715, 100.93041505043229, 44.10448023473629, 17.879972005199292, 15.441532034588462, 26.553045387627492, 6.3564165048838035, 8.159384048472909, 5.820203329892717, 9.478649921729062, 17.633963103699926, 47.49128856832983, 76.16596437248445, 23.719829453640198, 15.993626383524578, 27.010711059551813, 10.766673559743692, 45.7116119088761, 66.09347393923608, 123.728997060729, 7.068670630139105, 27.492885130187894, 29.20905973335112, 5.384531059832229, 7.694955854719751, 39.49262534712075, 6.4806912423521235, 28.43017321628232, 11.113584873476096, 20.093177703576448, 6.191629280169867, 43.15032996548574, 36.590138905919986, 29.67355271902917, 13.623066236864439, 54.437979797466994, 7.361458740052689, 25.7651545680371, 38.32865370074752, 60.689934530103, 58.50934886045104, 20.017220419044865, 18.461500961528742, 68.85328511059436, 94.82005454573597, 31.490846046872388, 35.90599640315565, 11.573462808828564, 45.22771039809034, 5.489725764728845, 20.810446185940467, 7.1105319740376505, 59.82945938225366, 30.767400233493163, 41.4137280525245, 47.12665315524341, 6.410354742412997, 12.036589279968533, 25.774612632008104, 75.94435030895067, 5.475132795535052, 20.928568964111633, 59.83866553369977, 18.403807906652847, 5.116010450796611, 17.773121540899357, 26.54522762545924, 27.253829759108722, 18.659068473455925, 5.138952820248972, 21.37694182412537, 59.41460982601378, 68.64055541501733, 55.91249013919743, 101.33824913721733, 8.562259530849216, 73.48863172179546, 34.257682380247275, 8.010540877757933, 18.182225514299084, 70.60281688074743, 24.24205441791383, 11.319283341702537, 52.09883212322066, 20.08543616885495, 7.208392239513206, 7.167560235008536, 20.900083352639978, 12.403264665188315, 55.508908400484785, 35.6725883021063, 13.157315243368119, 6.93768401427477, 104.67067939951393, 7.023893484242543, 145.9337115251075, 73.92908225058356, 25.785360476606254, 8.220233998687904, 40.363697290222035, 65.1543983322663, 49.48529245155906, 103.3898438084461, 23.928661695519718, 24.887708552636788, 84.13479422568942, 64.80548587606586, 51.27854148528419, 28.887182697129905, 5.2956593514113095, 38.26939529322475, 41.372479679527224, 12.871107329527446, 62.51913340861174, 48.09653820094358, 12.880754535695198, 25.06812345352619, 6.338378696160256, 114.41957712719226, 7.107920759904578, 26.55290305343651, 73.39250188855804, 16.723106226063045, 29.121185266922964, 12.678621155627354, 10.003339224510603, 25.50094552229365, 11.950197488040207, 61.55055636404359, 34.37569753983041, 14.056319875303764, 5.249857653118129, 41.26162872189701, 13.92282787418622, 45.44190696820291, 8.752528616202149, 13.252684585994668, 7.489792551723507, 28.659846862373968, 8.014710747503916, 25.440355794872012, 31.46197680569246, 19.778275325138054, 72.29663769180411, 27.449669621111674, 18.579280657774085, 14.443071746934182, 96.10362784067081, 32.84614713441396, 113.44353389113809, 82.4849848722507, 122.2723674991071, 11.681949227258043, 60.472108876068276, 49.7830957696142, 6.5628999359765245, 22.26522441181521, 64.03399460501149, 17.30297198646964, 23.526945525156208, 5.871655642152568, 14.287112873819892, 19.999588226403404, 61.59398442053999, 30.515977258451414, 9.897622713576803, 45.80191536259732, 5.916427480603669, 15.600198681410191, 67.32893805433743, 29.896806001402098, 5.463716743567968, 38.21407608623051, 65.16724390618344, 51.4237009992934, 58.196604702050905, 28.102491616702803, 19.201520858060686, 73.39750513214473, 6.345789098624986, 8.16033384171054, 73.4588285682594, 8.626307341908115, 18.056500518930523, 7.080705691133327, 92.73712171799548, 6.034256110600542, 45.857154481155916, 61.68424177950746, 19.471130906014093, 15.550122399335176, 41.14518506789552, 120.81544449783757, 14.913080940917737, 17.176993583182973, 5.353169126127089, 19.552833718259418, 58.393940815658816, 65.14224929300617, 26.412194695253493, 41.179669932035125, 82.43722540750441, 45.25584168507266, 28.212866015535887, 18.867190486533648, 40.43794089788453, 11.344157627765254, 8.782974960108191, 37.888588061419696, 38.51134021506685, 18.5360871738402, 31.231592451091494, 19.535451217242517, 102.96726424074585, 24.954351723593078, 10.303241452324277, 31.171652384751606, 9.021653263239358, 18.02849842184464, 7.726276144955801, 79.37788898292467, 11.836518974698588, 93.50337740022779, 101.12926868584923, 13.720823989703218, 9.864807998882894, 52.66684272227127, 19.576252567240644, 14.887603070513087, 36.49450288126749, 18.227048105649946, 114.70854496337714, 5.716788521471713, 53.74688966540803, 79.96526099967112, 8.818156229336344, 15.20821201895359, 77.60841507239616, 6.011417559326388, 65.54054963084505, 15.351564933530423, 74.4389474335405, 47.52098792852107, 76.7077740473498, 129.4673452410191, 28.276236781640122, 85.73690965193047, 42.98645500290863, 110.3903332337499, 8.134897789543958, 53.63296275701389, 64.95097408931667, 7.18165592189835, 69.98156116748746, 48.53986967743944, 27.14626055833154, 62.716726521769495, 170.68995065507667, 39.108493268782, 9.117382687536145, 32.225668953981966, 74.64791100736278, 85.37980922432709, 33.420727928895474, 107.09206052869142, 29.35565419564585, 27.183708756595557, 142.88152396435012, 11.009803306893216, 83.85484340786695, 22.956284197560688, 122.92283034564265, 28.155286282568884, 27.719111337577136, 30.22251454650414, 5.0305257860806, 29.89311378835734, 25.414815525813406, 60.210893524313285, 30.587281251228063, 37.786495908942925, 118.7011871585257, 44.73261790998269, 8.03512453728495, 82.96102760146988, 19.797444182024698, 59.69225427858713, 7.464226368003321, 44.91272720517138, 41.933402865693694, 77.00343568174758, 6.53308455320976, 66.76868756978867, 40.666204245520525, 49.243697727088716, 12.739562455815083, 8.202849978789036, 116.49877249785159, 15.434517683796969, 12.785979110750384, 14.583254801111865, 23.39003764768012, 31.659945248571756, 13.167568529616968, 105.46222099604229, 11.414273061834628, 179.39484261431068, 33.28722063099202, 6.683528436531208, 23.155441531731977, 35.34760005589134, 37.367688618725396, 53.14262113631161, 21.67597890279498, 8.827867826340148, 11.704845284886385, 76.06290125164809, 73.50875881394883, 55.69665807966062, 30.32181961238482, 62.41198850478027, 11.398729478148493, 8.490030356896927, 144.87398615082913, 36.272103086390636, 43.98641650959966, 7.845044612841957, 15.542687688527694, 20.82539808323558, 26.71357218726071, 22.082484355077746, 5.642157137178767, 25.28944410618932, 12.50265353752723, 43.337541240077584, 43.71244494103669, 6.986610781664857, 20.05077309577568, 103.29399095536898, 6.074301044683988, 6.8243387357127565, 7.858962047361409, 54.42040429885585, 45.69486087452946, 28.68836375657186, 9.654139820745335, 11.886850473452727, 41.49783040941971, 25.36960092730339, 52.817631135339234, 21.980864361937986, 47.876863979050086, 20.229769552707054, 33.51330798763484, 46.89714497310358, 33.28164683160892, 23.332865111839684, 85.198243513292, 18.058124002547252, 11.066599020073738, 44.9663957804908, 62.91023028553929, 48.9033508484581, 6.504324695409879, 47.51307835970141, 22.056915070739322, 5.699347272547498, 12.98736185844792, 76.07984365920302, 51.429149100151264, 46.52544512229808, 26.616094638079097, 51.78818453964597, 51.21326304773815, 10.141654302163568, 14.433575813094722, 37.305411363811885, 58.51459928589531, 18.457195676184213, 111.38207352795803, 5.410396021695638, 77.9177427912325, 27.76979717929078, 5.990586579047939, 142.91683771814593, 7.002262291279264, 14.314117431536566, 34.70729507075813, 83.90561296450255, 16.46571688225264, 25.419055858243883, 17.795676951056855, 14.135843232308993, 51.54016654199983, 19.681099819240874, 83.53978674488485, 25.617325475664302, 11.525534996768885, 8.225805791110783, 6.877806003438922, 19.27398158532855, 16.744835659777483, 41.20523522271519, 17.16516625987753, 98.67062824823795, 32.91554493358683, 9.293382457549667, 24.926328244516135, 48.19485958147697, 136.59154367458834, 112.33485808535082, 5.489016578872367, 9.624718114390088, 67.4122801488725, 91.9743497454442, 15.409913699736206, 6.28268333892161, 83.3362871440157, 8.91621790563177, 39.82990006262952, 46.90437323618239, 36.59003749456521, 36.878215459027516, 18.210978710264456, 77.49398285445432, 44.243548165452864, 8.53803297724232, 7.51381394757675, 18.83302957986365, 8.290842495982199, 41.60715589690644, 54.00995481952001, 32.552318974902185, 62.38475130040809, 74.78149951597807, 18.752548896187264, 25.773485639806573, 44.54424266710289, 74.64731224059177, 141.9167142346243, 25.91077847865507, 22.043252382025006, 128.92007384141948, 12.874494126663262, 46.71687581756902, 136.5159802947679, 37.74312475793242, 5.438340920826756, 52.49678945004781, 10.498234060244936, 98.85453095488727, 25.29115844553106, 72.87461386677737, 15.891689631095247, 20.247138964842662, 56.39209864866736, 8.13821231160452, 23.937447648420253, 96.12104821462472, 37.47885662285955, 15.837544729359886, 47.42533724237442, 7.595213742441912, 26.278263942336068, 144.11912267904125, 149.30031862548807, 15.84612540100489, 30.395634511532357, 40.67687092396781, 5.643339810514225, 37.2690709957396, 5.582209507196452, 97.0627410188977, 22.253350821677742, 16.040053616102938, 14.395191976847473, 99.55998487299813, 72.32506484771724, 59.42235906593161, 14.397235421210304, 6.460016444692856, 29.915544412247105, 85.48350917743132, 75.5263291514892, 7.70388782448267, 126.49725055330563, 33.392036882955026, 11.349445307435664, 54.82406348083409, 12.773775149130516, 16.98133921796448, 73.08541566326062, 79.18186144435704, 16.09480419724849, 15.310311632532338, 16.80317883236455, 11.348052280084097, 41.483442547675445, 126.12510894205808, 41.987855889820544, 90.65793503624892, 115.00958529057709, 5.13294669598566, 28.81821986307697, 12.666868405218253, 16.683055622523334, 6.808776416891264, 89.62492752742658, 9.678580496902491, 25.692794020525703, 114.36874469395997, ...])
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);
([2765743.7236339333, 3277224.4887149325, 3342859.5703118932, 3342863.8883506395, 3367774.015886113, 3408302.005520054, 3408775.811172901, 3472456.25, 3573642.4570349483, 3585336.341499848, 3585405.051434001, 3586319.377742415, 3586340.142806939, 3586389.0115167922, 3588820.3125, 3588952.8418845925, 3650654.6875, 3655976.5625, 3761615.924409975, 3779439.5738111143, 3802937.5, 3858488.587550443, 4020429.873192201, 5498106.991285873, 5506709.375, 6737366.708314181, 7149496.875, 7158895.610129762, 7182962.5, 7295305.676095689, 7305601.5625, 7307154.6875, 7308718.75, 7311151.680398839, 7311668.63841972, 7311930.7755616605, 7314023.4375, 7329307.8125, 7336400.858945932, 7344834.127778327, 7350328.125, 7352767.284449024, 7362099.762271273, 7362421.989009506, 7362906.25, 7366301.229333544, 7371475.0, 7375691.185757118, 7377057.8125, 7377208.688195086, 7377777.240881312, 7378234.265019668, 7378646.875, 7378694.782842773, 7380354.6875, 7380965.896713877, 7380986.125737208, 7381015.153174707, 7381040.186065448, 7381835.9375, 7382105.025869215, 7382109.375, 7382113.538496332, 7382651.479892339, 7382899.159470267, 7382962.5, 7383493.75, 7384978.762403924, 7405940.043016419, 7406462.5, 7407132.540438629, 7407301.475934678, 7407726.5625, 7407896.539880579, 7408346.519564677, 7408657.926162462, 7408881.25, 7409297.419250504, 7409732.497745152, 7410086.095443272, 7410836.2649523765, 7410932.908185568, 7411118.9612752, 7411267.1875, 7411590.561465977, 7411605.621858546, 7411618.152058162, 7414522.241953282, 7419360.6035614405, 7420550.0, 7423443.6371853715, 7423461.385531122, 7423572.653734017, 7423666.027334731, 7423763.853477161, 7424047.652438432, 7425114.020936231, 7425410.9375, 7425562.277996872, 7425731.308588089, 7426826.344602515, 7430403.242479942, 7434159.9077676, 7435110.087541953, 7437752.100953544, 7439575.255323386, 7462594.906672051, 7463274.435151657, 7466197.34288215, 7476800.0, 7477382.8125, 7478387.569853877, 7494578.125, 7502240.363331153, 7560099.294128103, 7589320.068092074, 7609399.5532633215, 7610487.378643554, 7627563.644068218, 7627963.419434513, 7627990.078083351, 7628360.790670047, 7642542.1875, 7643386.701005019, 7643481.530950474, 7643942.609406486, 7646955.664878946, 7656982.654066697, 7657232.8125, 7660307.0861897, 7660863.087881455, 7661700.010175104, 7661715.625, 7662481.785081211, 7662701.813586257, 7662916.640264418, 7667170.975381105, 7667962.5, 7668226.125175004, 7669044.191887749, 7672736.251300564, 7672918.574020576, 7673399.3432241585, 7673666.7647545505, 7674273.4375, 7674585.319279518, 7674606.25, 7674818.75, 7675349.332011225, 7675720.3125, 7675734.095074312, 7675894.53057242, 7675946.284016641, 7675984.15612466, 7676059.601331422, 7676614.167600081, 7676635.235366499, 7677143.1405298915, 7680923.922920298, 7684616.101944626, 7684645.3125, 7685287.5, 7685460.046836613, 7685512.892275124, 7685706.188476108, 7685842.200809522, 7686122.693773865, 7686593.96456656, 7687526.039318514, 7687557.145219689, 7687776.784591531, 7687910.403772909, 7688112.791434378, 7688257.052893663, 7688261.77292872, 7689560.128217246, 7696856.037718886, 7697132.442697366, 7697682.670405322, 7698331.25, 7698505.241054242, 7698902.861637815, 7699047.392448009, 7701810.9375, 7709357.024260027, 7710259.375, 7711913.794563671, 7714099.492177745, 7714168.75, 7715982.117144519, 7717170.145183522, 7717351.268292983, 7725816.917440271, 7726483.748022985, 7726706.17990788, 7729276.671332932, 7729292.1875, 7735687.5, 7736816.730444151, 7738960.9375, 7740763.829540844, 7740859.217546618, 7741534.619243417, 7751128.125, 7753387.004984439, 7754736.211373121, 7781327.753338343, 7781690.350559814, 7784790.625, 7794109.375, 7796281.197015744, 7802029.699053333, 7802693.390313873, 7804384.344426682, 7804538.373410931, 7804958.841745546, 7806132.627612024, 7808226.48571043, 7808890.658623211, 7810041.635780007, 7817816.125716507, 7817871.875, 7817981.25, 7817993.75, 7818035.2836585315, 7818071.38187821, 7818073.4375, 7818206.237262725, 7818514.139456218, 7818589.97177127, 7818615.216552803, 7818649.324633389, 7818671.154985487, 7818679.495905399, 7818692.0748096015, 7818760.064670137, 7818804.282950464, 7818817.224525433, 7818870.077431395, 7818875.78385811, 7819186.482938737, 7819297.170878085, 7819309.0894935625, 7819326.167179686, 7819358.772604607, 7819425.453994846, 7819529.6875, 7819540.369889745, 7819608.941727495, 7819609.375, 7819611.046573322, 7819625.0, 7819643.185876845, 7819652.352812594, 7819675.9282949, 7819698.4375, 7819735.06149552, 7819800.515849746, 7819815.753753243, 7819826.546136031, 7819826.5625, 7819839.0625, 7819888.0101863025, 7819889.907831628, 7819893.636738037, 7819926.842212888, 7819956.086062518, 7819974.452862644, 7820025.43445841, 7820034.375, 7820084.375, 7820155.879573013, 7820209.375, 7820215.625, 7820251.521962487, 7820284.636505555, 7820296.858563647, 7820299.6080425875, 7820310.8807244515, 7820375.0, 7820397.340400494, 7820410.9375, 7820421.163421383, 7820422.66284262, 7820476.5625, 7820484.342000959, 7820511.203281329, 7820535.087202323, 7820607.8125, 7820621.875, 7820640.625, 7820679.10099071, 7820712.538716646, 7820729.831664903, 7820731.918215469, 7820736.910215148, 7820748.4375, 7820781.25, 7820785.9375, 7820796.788530752, 7820802.769063888, 7820832.8125, 7820858.71360478, 7820872.546432339, 7820911.559970887, 7820916.516059878, 7820921.875, 7820954.136230797, 7820957.8125, 7820959.028096054, 7820985.46794448, 7820989.963937015, 7820998.4375, 7821007.706025947, 7821023.568886352, 7821027.0046168305, 7821033.971043603, 7821067.831465566, 7821068.147874991, 7821117.818185389, 7821125.912457258, 7821126.369917871, 7821145.983637435, 7821147.093256022, 7821165.545224473, 7821193.377177024, 7821225.859265826, 7821225.90372054, 7821228.641672223, 7821245.034531834, 7821254.970854585, 7821255.868130406, 7821257.36759188, 7821268.178312134, 7821293.75, 7821315.625, 7821319.058070767, 7821338.699950939, 7821356.268591426, 7821377.649311139, 7821387.286370431, 7821390.502226385, 7821407.967486109, 7821410.710663239, 7821431.25, 7821434.129143385, 7821438.516223216, 7821454.176859974, 7821457.186539043, 7821460.9375, 7821464.700735726, 7821467.738535214, 7821470.3125, 7821479.6875, 7821488.699183155, 7821495.3125, 7821500.344328841, 7821505.135040775, 7821543.655347067, 7821555.887199214, 7821566.206086112, 7821601.006242422, 7821602.913054993, 7821637.562684682, 7821638.4647528315, 7821660.251995427, 7821671.708692724, 7821687.947472658, 7821693.246722757, 7821698.4375, 7821703.0138248345, 7821721.875, 7821725.0, 7821732.413641091, 7821734.615652202, 7821750.276168928, 7821761.646896976, 7821777.904120238, 7821806.832266724, 7821829.6875, 7821889.455128599, 7821924.716680026, 7821971.108018383, 7821987.21928802, 7822033.753837902, 7822059.375, 7822068.019688352, 7822070.390114383, 7822112.855256278, 7822128.840844312, 7822183.834487705, 7822188.484533319, 7822191.911375807, 7822194.903888148, 7822238.718772983, 7822239.0625, 7822256.08301614, 7822258.064456233, 7822289.0625, 7822348.2899879785, 7822391.692124315, 7822437.375642164, 7822439.731111178, 7822471.875, 7822582.8125, 7822635.891494135, 7822857.8125, 7822882.8125, 7823139.497670326, 7823172.376652496, 7823356.25, 7823533.123777729, 7823842.1875, 7823918.75, 7824002.017032306, 7824048.436699469, 7824132.8125, 7824318.75, 7824517.045045396, 7824622.692380758, 7824906.018534233, 7824967.1875, 7825015.384952304, 7825315.625, 7825387.635148037, 7825450.102748348, 7825917.177211254, 7826084.805663416, 7828644.743586343, 7832340.213554984, 7835484.375, 7835619.601027773, 7835855.743969551, 7838085.722426627, 7838296.875, 7844042.1875, 7844344.750668642, 7845027.135750986, 7848083.0223753415, 7848668.417994731, 7848844.977627983, 7848867.732505023, 7849643.75, 7850171.285389237, 7850724.045136105, 7851190.625, 7851775.0, 7851984.366350864, 7859453.786193188, 7859763.345433397, 7860962.164606743, 7862099.879624481, 7863304.524377854, 7866473.977902249, 7866569.473853826, 7867728.5202224655, 7870065.515204132, 7870374.1559438, 7874420.3125, 7875480.093410079, 7875633.389848617, 7876290.130243935, 7876355.551297233, 7877022.768331794, 7877160.62656803, 7877226.392681089, 7878082.422958386, 7878090.254824949, 7878433.279473879, 7878435.9375, 7879112.5, 7879430.580470719, 7879668.75, 7880143.035461219, 7880277.31738419, 7880636.425517665, 7880695.431693901, 7880957.708153542, 7881239.0625, 7882832.589765829, 7890810.398812254, 7892171.327823847, 7896138.985560146, 7897723.4375, 7900303.445146449, 7906025.590379934, 7906292.438140842, 7907940.625, 7908564.151726891, 7909429.6875, 7911531.25, 7913606.25, 7918261.541174381, 7922076.951752079, 7929222.460093554, 7930581.924970713, 7931291.938973316, 7933428.20875245, 7933678.294155355, 7934315.730128321, 7935050.08950326, 7935114.0625, 7935151.260076136, 7935283.063621842, 7935284.293518566, 7935301.318553732, 7935416.460410949, 7935641.525086282, 7936244.966474936, 7936765.420333395, 7937645.258819946, 7937989.0625, 7938293.380426402, 7938342.434162102, 7938654.830072606, 7944795.271551154, 7946224.485424091, 7946414.053446402, 7946724.347196187, 7946855.627509256, 7947100.0, 7948254.542574239, 7948300.0, 7948382.4174818145, 7948387.368925949, 7948477.403088448, 7948681.092876387, 7948698.4375, 7948709.375, 7948832.8125, 7949369.650624991, 7949448.541331047, 7950144.397838126, 7950746.875, 7950987.5, 7951023.4375, 7951251.8301156135, 7951268.75, 7951420.948118192, 7951650.991231436, 7951757.770796181, 7951946.875, 7952136.723197036, 7952156.25, 7952185.9375, 7952194.804868259, 7952439.5753412945, 7952467.695795752, 7952492.178420083, 7952519.057759199, 7952788.600394401, 7953021.875, 7954530.37230394, 7956527.434320102, 7956533.798730999, 7958057.184886937, 7958192.119823998, 7958966.347187177, 7959030.078745818, 7963807.1292520175, 7965309.375, 7965328.247394073, 7966753.125, 7972393.75, 7973705.174809914, 7974429.6875, 7974481.25, 7974730.688794541, 7977160.026235321, 7977695.354827332, 7981227.311945468, 7984038.202551075, 7989185.9375, 7989657.158775659, 7989795.6332246205, 7992784.547548127, 7993325.70621879, 7994028.8120243065, 7994329.6875, 7994379.6875, 7994775.9997131685, 7995191.439030726, 7995229.6875, 7995232.427900204, 7995320.908234153, 7995333.872342864, 7995376.406673587, 7995456.122400792, 7995542.245846844, 7995652.562721655, 7995674.008016921, 7995762.763185874, 7995802.209766953, 7995831.034084746, 7995885.406070624, 7996192.1875, 7996267.1875, 7996525.986669275, 7996537.647309999, 7996540.043502226, 7996648.4375, 7996794.637534632, 7996918.75, 7997293.75, 7997608.703938221, 7997616.98407954, 7997647.418359412, 7997670.3125, 7997924.9482748965, 7998251.4542018715, 7998821.38156551, 8000116.025192854, 8000357.8125, 8000403.932760963, 8000919.450442941, 8002136.421077422, 8003320.781860257, 8003567.835755944, 8003573.612428682, 8003591.934110193, 8003782.980002488, 8003873.4375, 8003885.605296734, 8004025.728310304, 8004341.413152874, 8004744.785493279, 8004860.612556936, 8005841.602649339, 8006133.822898828, 8007165.446683741, 8007945.166237387, 8008572.746507055, 8009223.292674257, 8009482.9026834965, 8009953.835646109, 8010279.550279725, 8010325.445272019, 8010357.494530579, 8010359.375, 8010415.625, 8010556.25, 8010651.890332568, 8010654.6875, 8010742.1875, 8010811.404635427, 8010923.7063378645, 8011184.375, 8011188.00672422, 8011766.8697754955, 8011803.875204269, 8012632.629520526, 8012764.961006685, 8013042.1875, 8013328.310490315, 8013494.351461607, 8013573.34125265, 8013637.232308294, 8014442.350208924, 8014694.468666496, 8017212.5, 8017721.920358351, 8017939.0625, 8017966.152441545, 8018178.125, 8018667.1875, 8019741.67012431, 8019904.143238613, 8020420.3125, 8021784.9727147315, 8022446.628390413, 8022918.75, 8023931.841558376, 8026088.1317064725, 8027454.5301941, 8028446.818165237, 8029738.528314581, 8029934.21045065, 8030670.14080387, 8030844.582727826, 8030889.213510476, 8031692.1875, 8031768.444020267, 8031931.242521407, 8032925.784151367, 8033219.074605056, 8035166.468196236, 8035230.546095109, 8038009.375, 8038198.320736238, 8049571.875, 8049617.156188452, 8049716.096027096, 8050536.497700399, 8053483.564194924, 8053526.330286862, 8054204.8217012985, 8054611.7714034235, 8054948.780818195, 8054954.459185565, 8055307.22682503, 8055340.625, 8055399.278478477, 8055642.1875, 8055792.638792769, 8055980.649650379, 8056127.492660385, 8056179.296954918, 8056211.564808075, 8056226.890336044, 8056284.375, 8056303.984803668, 8056482.560871417, 8056590.625, 8056594.950580771, 8056789.6324676275, 8056973.4375, 8057117.707082611, 8057120.356069905, 8057241.588691314, 8057413.158112126, 8057421.9554467425, 8057656.406461538, 8058138.3073745305, 8058195.3125, 8058368.073494841, 8058503.193256019, 8058605.671760854, 8058838.291357102, 8059634.375, 8061224.2632240895, 8061882.691881946, 8062101.5625, 8062852.690527364, 8063293.75, 8063446.343079415, 8063907.8125, 8063992.1875, 8066673.4375, 8067829.389218408, 8068146.875, 8068301.5625, 8068464.286681055, 8068513.483469969, 8068718.75, 8068805.04522845, 8069184.233090476, 8069372.742671113, 8069754.475943563, 8071155.985557492, 8071334.375, 8071737.5, 8072037.5, 8072537.5, 8072663.944618082, 8073489.0625, 8073584.303372344, 8073630.933371474, 8073656.173236318, 8073801.5625, 8073880.885151116, 8073887.5, 8073943.870428273, 8073954.645444447, 8073954.6875, 8074027.460798202, 8074048.273996361, 8074051.382489578, 8074231.25, 8074273.186982483, 8074315.625, 8074396.875, 8074443.190630481, 8074455.7421730505, 8074481.695856313, 8074588.373876183, 8074705.660502543, 8074777.723572668, 8074795.805661864, 8074831.501559956, 8074835.718090622, 8074917.474758869, 8075101.5625, 8075128.125, 8075163.344904452, 8075203.958412749, 8075271.713241797, 8075295.73772538, 8075309.477825169, 8075321.165202488, 8075370.215221511, 8075507.483727214, 8075515.054845599, 8075522.878597012, 8075655.841433764, 8075715.44241184, 8075795.3125, 8075964.0625, 8076021.460742203, 8076082.464421898, 8076113.587587006, 8076164.0625, 8076253.125, 8076277.643139368, 8076468.087730668, 8076625.340314753, 8076646.717132354, 8076720.2938478105, 8076792.1875, 8076799.716347824, 8076807.8125, 8076873.6042378545, 8076937.865887737, 8076948.274261563, 8076948.4375, 8076988.953877156, 8077038.122485281, 8077061.08676472, 8077097.867855611, 8077188.963738244, 8077193.307120703, 8077292.68472596, 8077401.374113416, 8077503.856542795, 8077504.586687647, 8077509.375, 8077558.835943965, 8077586.989982279, 8077623.4375, 8077674.86626058, 8077751.859755644, 8077772.530712089, 8077833.754120566, 8077842.1875, 8077845.3125, 8077876.921020895, 8078062.936845381, 8078206.25, 8078237.316980268, 8078296.875, 8078379.235044363, 8078781.25, 8078792.185693707, 8078858.706875274, 8078910.9375, 8078912.580163202, 8079179.35406633, 8079190.625, 8079233.444460928, 8079303.085550172, 8079352.997101861, 8079388.8242881335, 8079518.75, 8079725.109062315, 8079879.464713496, 8080059.766587076, 8080093.632923997, 8080141.558995492, 8080156.25, 8080176.5625, 8080331.25, 8080362.395468961, 8080566.766577904, 8080589.928437842, 8080607.0745021785, 8080670.1134540355, 8080708.566827907, 8080714.34294898, 8080749.130234425, 8080770.954469059, 8081044.058395065, 8081076.3306275355, 8081298.478592894, 8081420.882023245, 8081422.755609116, 8081433.901311783, 8081607.637546215, 8081620.3125, 8081665.625, 8081723.787141897, 8081785.757771136, 8081891.685572866, 8081898.208745685, 8081903.125, 8081922.914744386, 8081940.25343182, 8082144.529555835, 8082159.615433787, 8082176.445784553, 8082248.984272428, 8082264.380803081, 8082272.279364491, 8082410.9375, 8082442.66977932, 8082628.551485801, 8082727.842764598, 8082745.26718979, 8082750.108505345, 8082831.25, 8082876.5625, 8082923.208119747, 8082997.494876893, 8083100.327649778, 8083107.36753875, 8083137.5, 8083232.930193117, 8083240.746588047, 8083281.195001798, 8083316.651966385, 8083435.9375, 8083479.6875, 8083492.1875, 8083596.41778371, 8083688.155651825, 8083782.620580368, 8083865.625, 8083875.44704871, 8083891.933298284, 8083899.184409677, 8083943.758056799, 8084026.5625, 8084034.375, 8084228.125, 8084235.9375, 8084245.3125, 8084333.548046323, 8084473.739842924, 8085136.540232493, 8085848.060810674, 8086296.361590813, 8086384.227170953, 8087489.827495513, 8087720.153246539, 8088235.2639060505, 8089422.386285848, 8091195.3125, 8091646.020307158, 8091672.880114634, 8091915.625, 8092546.431142761, 8092693.75, 8092816.999228629, 8093393.75, 8095831.478792001, 8095885.3028173065, 8095934.375, 8096037.208490864, 8096320.193714776, 8098097.954523519, 8098232.8125, 8098429.904270282, 8098430.252771582, 8098489.040260362, 8098954.562577518, 8098960.644369146, 8099153.125, 8099242.584801457, 8099309.641287728, 8099379.6875, 8099639.58017467, 8099741.92513901, 8099865.034857427, 8099971.403729917, 8099985.547420769, 8100178.285632882, 8100529.848019352, 8100578.5206357315, 8100715.625, 8100742.1875, 8102324.849478297, 8102402.950081729, 8106911.859021407, 8107568.406710157, 8108231.25, 8108345.582465319, 8108351.49757677, 8108390.865309111, 8108639.199876048, 8110068.75, 8111736.785151356, 8113066.073841434, 8113456.25, 8113456.810229204, 8113654.033820473, 8113861.031007772, 8113887.915493328, 8113984.511540132, 8114826.5625, 8114945.158587957, 8115098.4375, 8115132.8125, 8115178.125, 8115471.989028641, 8115888.247884183, 8115999.240270754, 8116005.432939082, 8116292.410102956, 8116629.597233362, 8116633.196407039, 8116646.7132107755, 8116659.844165307, ...], [11.086743523523774, 13.295244788275943, 5.348659149114542, 6.245443756265399, 17.724575028041013, 7.242990232679114, 5.660553750318633, 45.8870039463069, 44.77213729490398, 9.698084840361725, 11.748562934987408, 7.847239296546939, 47.103889761204826, 14.750681956793468, 46.13037575076379, 29.90999126796403, 31.36727539982754, 41.048236791153876, 35.89115985686644, 7.262675276412095, 56.02363104508072, 21.746685288518233, 22.975317506962988, 7.330972594065938, 52.52429822680168, 50.57287080674668, 61.86963806145948, 41.368763739006695, 57.7928428285231, 10.335321635318529, 70.48027674774873, 87.06992205166237, 54.072748874273856, 9.433123417300639, 5.805770153358551, 6.415204730715415, 60.582021813341214, 63.545744014108536, 6.948025102601805, 24.44916464181641, 48.63462947269666, 11.282702849107677, 9.13816647951623, 7.645000114096622, 29.099728774633288, 33.90069662102685, 45.85279098559949, 12.134091894018388, 36.499258363622886, 100.20523403817063, 20.177327206061893, 94.23695568031637, 71.78971692358635, 21.20226861922696, 55.06930011517329, 50.61208035414242, 12.635500362095387, 18.33870852590878, 5.902070730634655, 67.14841181698215, 24.434551454489167, 29.986990397797815, 10.396804116627173, 23.632141956097882, 43.505472909912214, 78.07386317441242, 108.14239752725783, 31.51531403856817, 13.106983797393687, 41.405823187433775, 18.108172434924185, 55.367102507246564, 51.766296782399266, 23.31227131687436, 13.740215776989372, 6.786412550727598, 39.36847455028504, 17.520380325017825, 6.438857215680149, 9.468621886982227, 28.055565557966847, 6.502196125683644, 15.81296391951313, 114.40662658282749, 27.32779154815151, 28.55570879109479, 20.56871882058428, 25.259863455937705, 7.4867639861946245, 63.824451983725645, 49.86543715846554, 9.741328586184759, 75.31054611096053, 71.32470368372024, 24.986839363052443, 8.745458465866705, 72.8671650094106, 51.457274886332556, 24.800937365049357, 6.094213126988656, 5.197905866835733, 11.31643856860776, 17.45308401666531, 73.51169496169908, 27.583486722548272, 23.908855653964928, 22.486934054393082, 35.01646613557636, 146.54505962817112, 63.95274898450071, 49.58919496994633, 11.238677003925307, 61.92853732221927, 6.712367111781823, 66.50653071700951, 74.20832125144076, 58.93287518838645, 76.65765192391804, 6.215741424708794, 28.844111245376997, 87.82456514057112, 14.409915345663324, 33.45549147830391, 46.53178579145939, 14.669765612815771, 79.51547910645883, 27.771920765354658, 14.370168941763978, 77.13958535640593, 33.97905221503401, 12.19038889720821, 7.1241289537510974, 44.319795555334395, 5.644348225947432, 11.544241914223257, 22.815707960802584, 28.441350644412072, 37.40912405033362, 22.141962334622626, 9.735253266833613, 11.656379635520135, 25.475686354127202, 17.161030340161197, 13.542727914418453, 62.30199812948032, 8.8581860896178, 56.05344887687183, 68.40741877965208, 16.453830254335237, 28.708294923129287, 97.51453087797877, 5.758304325665044, 6.398275167335081, 7.065080536581928, 5.721315357297423, 129.10032186898857, 19.688769560301694, 97.60432723362365, 13.185571648166206, 9.77010639016415, 71.63590849241191, 91.60648412105438, 5.750892529830267, 6.844432440812715, 55.91486876016817, 13.591828383735528, 13.862932325038813, 6.807112725564489, 34.90120593578567, 6.387340673507174, 26.39997792431778, 5.7755170196026615, 87.34071285616255, 19.272767659361513, 8.783997256475347, 18.878091820761142, 30.95320959217844, 33.698805584738245, 8.21283798209582, 91.88907106576868, 48.0729127972521, 56.982342254163505, 12.045857286276464, 63.29907083006448, 19.03047218868463, 58.05993148758679, 40.12565787651635, 5.777337566081374, 31.35771135422818, 19.743101679460718, 14.339951629522794, 96.55160838737025, 93.43906818620397, 7.391189958044037, 14.680915813258581, 9.42515476658274, 40.88409182938086, 60.13833782859148, 8.058814565207307, 70.60410007920571, 52.55023598182469, 9.201723883293875, 9.54683176401108, 52.96136766761568, 12.339898229152677, 16.099353522344725, 22.876579609635353, 63.95156947260556, 49.90814466490308, 54.718136825955725, 27.51834921957718, 8.292696385571249, 43.94073326163539, 14.8262448020388, 10.198056858891203, 25.39763109993526, 7.073683814466979, 27.092755781489995, 11.180671918417124, 20.992227886443505, 32.30765079675015, 101.22669327338791, 57.86367476113611, 60.49205540958875, 12.923573890653838, 21.56198956057257, 48.16922740335334, 36.9318844565107, 11.25016326100076, 38.35814854609147, 36.67876494624083, 14.402618498407136, 19.547258636250344, 8.187792624441084, 58.37240340424961, 5.866835332672405, 59.896074440333805, 15.084536306997066, 102.91560802736127, 89.21512203882006, 9.83951749291637, 9.594776138572115, 23.93765928522579, 21.688971978452713, 31.041608905543495, 17.00932629185256, 39.870855720726134, 24.341596914363766, 6.044172542725545, 75.43579707530917, 19.943180333647867, 82.10786761803173, 20.876429229463664, 31.326169350998487, 12.972927643758204, 69.46629102546513, 21.07762582174923, 11.039828320886334, 103.25300519325296, 6.760244020336756, 160.37547661394552, 57.8201247000944, 17.322728846004686, 19.569608256799658, 14.526693709500702, 41.007164013381114, 25.659640033540615, 58.8557416062552, 8.530513872819059, 36.97926014197528, 32.14199618191527, 9.036667864786297, 68.67197849101363, 100.66511614820125, 14.789218194553122, 9.562762606823364, 28.203653061904777, 22.64312717473795, 11.04010764830665, 46.34491888329107, 6.860118600824665, 41.16467341420234, 5.763141068787926, 8.752323569884423, 72.39039428775071, 27.8881348316517, 11.570208446500894, 12.459176080783644, 47.604129789109656, 36.402789693193924, 33.915060893548294, 58.020551601751116, 51.29539979030612, 118.67857869418383, 7.864227867351089, 41.10174913188353, 92.18422056768676, 54.82458862263779, 81.24842854434289, 26.924137474664267, 67.29137754791722, 42.436943882228384, 44.73010978383854, 14.533877462638117, 12.26337004972286, 10.218680029728345, 43.030672422957096, 60.50981262677084, 65.44178449763828, 23.16954463241637, 21.80227298528166, 6.388227367111208, 42.20484181489848, 64.15808195044198, 15.467112062162803, 80.5130826357899, 42.04975511217356, 7.854029280557935, 13.054789316800536, 5.649914738764567, 100.39882792365171, 10.839464579710217, 165.76734594710928, 15.844208893854972, 6.474658012960427, 35.63896944038197, 10.18163210472914, 83.28601102818294, 26.434669419766642, 13.978256805985653, 11.601507503557794, 6.0492684262467105, 13.479505405223344, 5.671315278836211, 31.906040172149154, 117.23291386157999, 22.389954453891992, 13.718944575592579, 27.279084697972422, 21.739094025957424, 6.721593578262276, 15.108576448972823, 6.794847891158609, 6.064823624754692, 47.394550170948094, 24.46789592219828, 102.78849923379636, 21.38761289814135, 30.783355890640866, 33.17588729746323, 79.22779936108552, 19.193464407247372, 68.60046568050446, 50.297414356379434, 13.716654532494362, 63.79512269074615, 186.6593982653032, 130.9142160481925, 38.024175686918866, 55.85392575930632, 7.827857209597703, 20.681269397471898, 6.454372437202969, 18.098803978762945, 23.995159687690954, 14.108767306238054, 18.653106249064194, 24.77568466121962, 21.460470168536208, 34.16575798357872, 32.660783234283834, 52.17808114733401, 49.85019128332561, 6.686406963880626, 28.416046364058843, 7.1959910301434515, 8.70108292082569, 24.89606957611891, 17.748189439305598, 44.69287347431593, 7.751698176281724, 5.793310264705533, 112.52534646033526, 24.000286240609835, 128.59091640305277, 43.2720363439793, 8.781826032540545, 16.450049535758637, 24.015285323228202, 52.541921455004825, 28.20501070319715, 20.74906986894233, 24.060589420615823, 8.081703414108091, 84.227034537273, 28.69936954432452, 6.461229807640785, 164.77578767013816, 59.98675843509649, 17.28578462516605, 21.539354602398024, 18.52450810098577, 18.465250296601962, 164.05117652130025, 71.88566958029237, 70.00385178061569, 65.7163583075558, 41.141227893841645, 11.88361559130869, 7.795346422785036, 42.33793003992594, 11.939777368947546, 76.57897063195298, 29.368972789529924, 11.921177636591459, 5.291062530399931, 85.8293223168933, 34.47798205294714, 14.42498465662366, 62.591350913406195, 14.127026995113377, 47.30936508612109, 49.689845379857985, 63.499134836007116, 6.790791135220728, 8.341670172058715, 14.902438020319789, 15.03754526278971, 5.032085275466776, 22.424437071067018, 72.41419459642783, 7.943057622692569, 6.037011219742929, 14.18056982605961, 55.22843349517947, 74.21026029559332, 8.010254555975381, 12.159922530059777, 19.24594288009279, 13.810962447537966, 47.217034863419045, 54.17830435990589, 39.738183164678425, 36.773143844506386, 40.03812837273335, 44.583522499709275, 90.91761086151563, 28.354939381730684, 18.247224553013137, 12.768427506116218, 5.280838411439491, 5.1625675652619645, 14.35419649926859, 62.70269031431076, 27.481453209948477, 16.377187180675755, 26.527878474055647, 20.126269619456743, 32.00380562832335, 9.699946542658637, 6.8845164448158505, 19.451541931578696, 26.19341492609218, 12.885442112676452, 52.10904953356463, 25.569396567975907, 22.670606249695425, 5.907803964461889, 17.289191592624828, 34.20706089354225, 34.49380921086732, 72.06226900879658, 51.77599507360697, 19.590315855734303, 12.555748924287064, 61.68460324676785, 6.505939666697676, 63.50790992113006, 64.70473224119972, 16.856639524930003, 63.57212091173417, 13.198672342970942, 27.090118629472293, 58.050455508248184, 6.308512028279684, 12.195615446376122, 28.1125493235336, 78.52801421823415, 6.781451730069456, 29.535720090695715, 100.93041505043229, 44.10448023473629, 17.879972005199292, 15.441532034588462, 26.553045387627492, 6.3564165048838035, 8.159384048472909, 5.820203329892717, 9.478649921729062, 17.633963103699926, 47.49128856832983, 76.16596437248445, 23.719829453640198, 15.993626383524578, 27.010711059551813, 10.766673559743692, 45.7116119088761, 66.09347393923608, 123.728997060729, 7.068670630139105, 27.492885130187894, 29.20905973335112, 5.384531059832229, 7.694955854719751, 39.49262534712075, 6.4806912423521235, 28.43017321628232, 11.113584873476096, 20.093177703576448, 6.191629280169867, 43.15032996548574, 36.590138905919986, 29.67355271902917, 13.623066236864439, 54.437979797466994, 7.361458740052689, 25.7651545680371, 38.32865370074752, 60.689934530103, 58.50934886045104, 20.017220419044865, 18.461500961528742, 68.85328511059436, 94.82005454573597, 31.490846046872388, 35.90599640315565, 11.573462808828564, 45.22771039809034, 5.489725764728845, 20.810446185940467, 7.1105319740376505, 59.82945938225366, 30.767400233493163, 41.4137280525245, 47.12665315524341, 6.410354742412997, 12.036589279968533, 25.774612632008104, 75.94435030895067, 5.475132795535052, 20.928568964111633, 59.83866553369977, 18.403807906652847, 5.116010450796611, 17.773121540899357, 26.54522762545924, 27.253829759108722, 18.659068473455925, 5.138952820248972, 21.37694182412537, 59.41460982601378, 68.64055541501733, 55.91249013919743, 101.33824913721733, 8.562259530849216, 73.48863172179546, 34.257682380247275, 8.010540877757933, 18.182225514299084, 70.60281688074743, 24.24205441791383, 11.319283341702537, 52.09883212322066, 20.08543616885495, 7.208392239513206, 7.167560235008536, 20.900083352639978, 12.403264665188315, 55.508908400484785, 35.6725883021063, 13.157315243368119, 6.93768401427477, 104.67067939951393, 7.023893484242543, 145.9337115251075, 73.92908225058356, 25.785360476606254, 8.220233998687904, 40.363697290222035, 65.1543983322663, 49.48529245155906, 103.3898438084461, 23.928661695519718, 24.887708552636788, 84.13479422568942, 64.80548587606586, 51.27854148528419, 28.887182697129905, 5.2956593514113095, 38.26939529322475, 41.372479679527224, 12.871107329527446, 62.51913340861174, 48.09653820094358, 12.880754535695198, 25.06812345352619, 6.338378696160256, 114.41957712719226, 7.107920759904578, 26.55290305343651, 73.39250188855804, 16.723106226063045, 29.121185266922964, 12.678621155627354, 10.003339224510603, 25.50094552229365, 11.950197488040207, 61.55055636404359, 34.37569753983041, 14.056319875303764, 5.249857653118129, 41.26162872189701, 13.92282787418622, 45.44190696820291, 8.752528616202149, 13.252684585994668, 7.489792551723507, 28.659846862373968, 8.014710747503916, 25.440355794872012, 31.46197680569246, 19.778275325138054, 72.29663769180411, 27.449669621111674, 18.579280657774085, 14.443071746934182, 96.10362784067081, 32.84614713441396, 113.44353389113809, 82.4849848722507, 122.2723674991071, 11.681949227258043, 60.472108876068276, 49.7830957696142, 6.5628999359765245, 22.26522441181521, 64.03399460501149, 17.30297198646964, 23.526945525156208, 5.871655642152568, 14.287112873819892, 19.999588226403404, 61.59398442053999, 30.515977258451414, 9.897622713576803, 45.80191536259732, 5.916427480603669, 15.600198681410191, 67.32893805433743, 29.896806001402098, 5.463716743567968, 38.21407608623051, 65.16724390618344, 51.4237009992934, 58.196604702050905, 28.102491616702803, 19.201520858060686, 73.39750513214473, 6.345789098624986, 8.16033384171054, 73.4588285682594, 8.626307341908115, 18.056500518930523, 7.080705691133327, 92.73712171799548, 6.034256110600542, 45.857154481155916, 61.68424177950746, 19.471130906014093, 15.550122399335176, 41.14518506789552, 120.81544449783757, 14.913080940917737, 17.176993583182973, 5.353169126127089, 19.552833718259418, 58.393940815658816, 65.14224929300617, 26.412194695253493, 41.179669932035125, 82.43722540750441, 45.25584168507266, 28.212866015535887, 18.867190486533648, 40.43794089788453, 11.344157627765254, 8.782974960108191, 37.888588061419696, 38.51134021506685, 18.5360871738402, 31.231592451091494, 19.535451217242517, 102.96726424074585, 24.954351723593078, 10.303241452324277, 31.171652384751606, 9.021653263239358, 18.02849842184464, 7.726276144955801, 79.37788898292467, 11.836518974698588, 93.50337740022779, 101.12926868584923, 13.720823989703218, 9.864807998882894, 52.66684272227127, 19.576252567240644, 14.887603070513087, 36.49450288126749, 18.227048105649946, 114.70854496337714, 5.716788521471713, 53.74688966540803, 79.96526099967112, 8.818156229336344, 15.20821201895359, 77.60841507239616, 6.011417559326388, 65.54054963084505, 15.351564933530423, 74.4389474335405, 47.52098792852107, 76.7077740473498, 129.4673452410191, 28.276236781640122, 85.73690965193047, 42.98645500290863, 110.3903332337499, 8.134897789543958, 53.63296275701389, 64.95097408931667, 7.18165592189835, 69.98156116748746, 48.53986967743944, 27.14626055833154, 62.716726521769495, 170.68995065507667, 39.108493268782, 9.117382687536145, 32.225668953981966, 74.64791100736278, 85.37980922432709, 33.420727928895474, 107.09206052869142, 29.35565419564585, 27.183708756595557, 142.88152396435012, 11.009803306893216, 83.85484340786695, 22.956284197560688, 122.92283034564265, 28.155286282568884, 27.719111337577136, 30.22251454650414, 5.0305257860806, 29.89311378835734, 25.414815525813406, 60.210893524313285, 30.587281251228063, 37.786495908942925, 118.7011871585257, 44.73261790998269, 8.03512453728495, 82.96102760146988, 19.797444182024698, 59.69225427858713, 7.464226368003321, 44.91272720517138, 41.933402865693694, 77.00343568174758, 6.53308455320976, 66.76868756978867, 40.666204245520525, 49.243697727088716, 12.739562455815083, 8.202849978789036, 116.49877249785159, 15.434517683796969, 12.785979110750384, 14.583254801111865, 23.39003764768012, 31.659945248571756, 13.167568529616968, 105.46222099604229, 11.414273061834628, 179.39484261431068, 33.28722063099202, 6.683528436531208, 23.155441531731977, 35.34760005589134, 37.367688618725396, 53.14262113631161, 21.67597890279498, 8.827867826340148, 11.704845284886385, 76.06290125164809, 73.50875881394883, 55.69665807966062, 30.32181961238482, 62.41198850478027, 11.398729478148493, 8.490030356896927, 144.87398615082913, 36.272103086390636, 43.98641650959966, 7.845044612841957, 15.542687688527694, 20.82539808323558, 26.71357218726071, 22.082484355077746, 5.642157137178767, 25.28944410618932, 12.50265353752723, 43.337541240077584, 43.71244494103669, 6.986610781664857, 20.05077309577568, 103.29399095536898, 6.074301044683988, 6.8243387357127565, 7.858962047361409, 54.42040429885585, 45.69486087452946, 28.68836375657186, 9.654139820745335, 11.886850473452727, 41.49783040941971, 25.36960092730339, 52.817631135339234, 21.980864361937986, 47.876863979050086, 20.229769552707054, 33.51330798763484, 46.89714497310358, 33.28164683160892, 23.332865111839684, 85.198243513292, 18.058124002547252, 11.066599020073738, 44.9663957804908, 62.91023028553929, 48.9033508484581, 6.504324695409879, 47.51307835970141, 22.056915070739322, 5.699347272547498, 12.98736185844792, 76.07984365920302, 51.429149100151264, 46.52544512229808, 26.616094638079097, 51.78818453964597, 51.21326304773815, 10.141654302163568, 14.433575813094722, 37.305411363811885, 58.51459928589531, 18.457195676184213, 111.38207352795803, 5.410396021695638, 77.9177427912325, 27.76979717929078, 5.990586579047939, 142.91683771814593, 7.002262291279264, 14.314117431536566, 34.70729507075813, 83.90561296450255, 16.46571688225264, 25.419055858243883, 17.795676951056855, 14.135843232308993, 51.54016654199983, 19.681099819240874, 83.53978674488485, 25.617325475664302, 11.525534996768885, 8.225805791110783, 6.877806003438922, 19.27398158532855, 16.744835659777483, 41.20523522271519, 17.16516625987753, 98.67062824823795, 32.91554493358683, 9.293382457549667, 24.926328244516135, 48.19485958147697, 136.59154367458834, 112.33485808535082, 5.489016578872367, 9.624718114390088, 67.4122801488725, 91.9743497454442, 15.409913699736206, 6.28268333892161, 83.3362871440157, 8.91621790563177, 39.82990006262952, 46.90437323618239, 36.59003749456521, 36.878215459027516, 18.210978710264456, 77.49398285445432, 44.243548165452864, 8.53803297724232, 7.51381394757675, 18.83302957986365, 8.290842495982199, 41.60715589690644, 54.00995481952001, 32.552318974902185, 62.38475130040809, 74.78149951597807, 18.752548896187264, 25.773485639806573, 44.54424266710289, 74.64731224059177, 141.9167142346243, 25.91077847865507, 22.043252382025006, 128.92007384141948, 12.874494126663262, 46.71687581756902, 136.5159802947679, 37.74312475793242, 5.438340920826756, 52.49678945004781, 10.498234060244936, 98.85453095488727, 25.29115844553106, 72.87461386677737, 15.891689631095247, 20.247138964842662, 56.39209864866736, 8.13821231160452, 23.937447648420253, 96.12104821462472, 37.47885662285955, 15.837544729359886, 47.42533724237442, 7.595213742441912, 26.278263942336068, 144.11912267904125, 149.30031862548807, 15.84612540100489, 30.395634511532357, 40.67687092396781, 5.643339810514225, 37.2690709957396, 5.582209507196452, 97.0627410188977, 22.253350821677742, 16.040053616102938, 14.395191976847473, 99.55998487299813, 72.32506484771724, 59.42235906593161, 14.397235421210304, 6.460016444692856, 29.915544412247105, 85.48350917743132, 75.5263291514892, 7.70388782448267, 126.49725055330563, 33.392036882955026, 11.349445307435664, 54.82406348083409, 12.773775149130516, 16.98133921796448, 73.08541566326062, 79.18186144435704, 16.09480419724849, 15.310311632532338, 16.80317883236455, 11.348052280084097, 41.483442547675445, 126.12510894205808, 41.987855889820544, 90.65793503624892, 115.00958529057709, 5.13294669598566, 28.81821986307697, 12.666868405218253, 16.683055622523334, 6.808776416891264, 89.62492752742658, 9.678580496902491, 25.692794020525703, 114.36874469395997, ...])
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)