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 = 46532
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);
([7165317.1875, 7387784.306245509, 7406898.603955833, 7429948.256621075, 7517235.9375, 7553323.411271967, 7553990.267770447, 7555896.5026141275, 7565766.866826244, 7568196.230069901, 7587131.25, 7588708.822790053, 7589250.0, 7626045.973637499, 7626122.053874397, 7627095.949281455, 7628426.5625, 7631044.649452287, 7643289.975156032, 7643306.25, 7646037.4389867, 7658278.125, 7664632.2067187745, 7728727.4520382965, 7735496.875, 7736559.375, 7742438.672098936, 7756208.261653651, 7757425.0, 7757550.744719788, 7759195.806940598, 7762621.875, 7779305.249187496, 7806499.427911873, 7811093.75, 7811577.922963499, 7870128.1884552045, 7871144.997996573, 7872171.411365277, 7886262.377340618, 7887966.844628187, 7912765.550360077, 7924218.019438297, 7925946.119464225, 7926210.913397174, 7988123.418061297, 8007215.657973374, 8131037.492359335, 8132007.126383424, 8132358.735329682, 8154633.122146829, 8175614.117480005, 8185240.595622063, 8236728.125, 8276043.75, 8278898.197590865, 8291200.819035424, 8295408.687394956, 8299873.349044886, 8302171.875, 8307044.258026976, 8307052.206783794, 8310090.4326624265, 8322764.0625, 8324937.8306203205, 8358139.0625, 8375417.1875, 8382887.528868472, 8383404.391651574, 8384310.587494408, 8388745.74045234, 8391294.533760268, 8392294.532756398, 8392939.233374031, 8393771.045810303, 8404696.1888469, 8414670.161973134, 8414678.27193106, 8414773.82576881, 8415552.961197961, 8417525.0, 8417812.5, 8419483.810823608, 8420776.202352475, 8421730.592749625, 8422232.8125, 8425227.63278898, 8436487.5, 8457383.081265345, 8460364.0625, 8463845.62132588, 8472901.5625, 8511021.875, 8511412.496969724, 8536542.1875, 8540249.211677553, 8543165.360245654, 8543270.565445047, 8543448.112098152, 8543654.6875, 8544325.0, 8544643.75, 8545070.3125, 8545398.896675253, 8546156.617667852, 8546667.186146839, 8546839.14313474, 8547024.405444626, 8547025.103505954, 8547165.602957558, 8547188.48528082, 8547390.625, 8551495.160809062, 8552045.3125, 8556527.524684122, 8561786.959641296, 8564625.933092365, 8566121.789775545, 8566592.441024367, 8566725.699487675, 8568018.426040709, 8568817.205472186, 8569591.47584133, 8569673.818432076, 8570152.49560399, 8570792.1875, 8571683.436796343, 8571761.999259446, 8572087.826072533, 8572224.576237917, 8572229.55128084, 8572238.314996194, 8572245.250737017, 8572292.1875, 8572456.147955878, 8572523.420518653, 8573665.625, 8573767.401939556, 8574262.788023585, 8574317.604260609, 8574775.984637737, 8574800.15739906, 8575022.917164994, 8575312.442136878, 8576042.374732947, 8576540.1892269, 8576577.857985644, 8577013.574918557, 8577177.331848018, 8577289.0625, 8578160.379117718, 8578743.75, 8586409.8182875, 8606720.3125, 8613868.609607585, 8614156.826270599, 8615557.8125, 8622426.031273324, 8622526.5625, 8631497.760869546, 8635652.501410587, 8640522.112665055, 8641636.78393911, 8641888.815349985, 8642269.088784432, 8642980.717156857, 8643578.082319545, 8643658.665337458, 8645913.728734715, 8647822.605999202, 8648768.68244993, 8649437.371391937, 8651451.301334465, 8652204.060546268, 8652478.68205336, 8652698.48280583, 8653226.5625, 8654493.574790198, 8654667.043171471, 8663490.625, 8688934.145643147, 8690240.44244042, 8691922.055427227, 8692035.9375, 8692082.950094419, 8692745.643282576, 8693235.872724354, 8694810.595490918, 8694920.221098881, 8694940.964636967, 8695916.10089371, 8696600.0, 8697265.625, 8697841.888663627, 8700924.760058343, 8705491.799750935, 8709036.774936946, 8722630.33605003, 8724129.6875, 8729617.1875, 8747676.5625, 8748598.294185152, 8748814.490344936, 8749206.25, 8750077.444615144, 8750382.623125756, 8750415.225048201, 8750928.57014224, 8751934.763515422, 8751951.61819417, 8752358.345135177, 8753741.218106639, 8753826.331232373, 8753850.933015201, 8754204.383027805, 8754459.233701969, 8754473.363357125, 8754487.566929398, 8754543.75, 8754613.618513066, 8754748.4375, 8755064.0625, 8755456.25, 8755790.625, 8755839.025036577, 8755879.6875, 8755984.764328664, 8756428.125, 8756775.0, 8756887.5, 8756969.953722754, 8757116.65925369, 8757124.988280587, 8757367.1875, 8757367.82113811, 8757470.332270594, 8757618.75, 8757655.312256312, 8757690.551773004, 8757735.9375, 8757912.092059994, 8758032.760135034, 8758038.964601887, 8758040.831321072, 8758056.789140645, 8758117.927417105, 8758163.297260318, 8758280.695556335, 8758535.9375, 8758619.987998998, 8758999.597227179, 8759006.314806322, 8759087.5, 8759210.967808185, 8759300.100243544, 8759360.925294949, 8759376.5625, 8759805.20540029, 8760016.248962458, 8760379.6875, 8760393.14257525, 8761321.025262065, 8761387.071160216, 8766221.005327055, 8767954.394865604, 8767965.625, 8768051.624480382, 8769023.660182819, 8769529.15195141, 8769579.6875, 8769831.130472926, 8769864.811311765, 8770109.211187044, 8770239.159801716, 8770353.125, 8770599.421884377, 8770628.125, 8770912.380413393, 8771376.522626098, 8771499.549699092, 8771600.0, 8771788.962439056, 8772905.901969794, 8773069.223851778, 8773119.242951663, 8773190.787877308, 8773668.119160688, 8774086.428033084, 8774457.429633595, 8774463.882054294, 8774820.3125, 8775678.18738506, 8775923.000923539, 8776026.5625, 8777237.271293456, 8778310.361721689, 8778339.43815833, 8778420.567678904, 8779087.80855921, 8782480.618417522, 8783102.364009757, 8787945.3125, 8787960.511058265, 8788027.936584491, 8789813.365809558, 8791498.351627823, 8791532.8125, 8791858.682232598, 8792733.482825784, 8793243.924395192, 8793609.855030509, 8793663.553004045, 8794187.5, 8795607.497286797, 8796838.549498199, 8797138.158736218, 8800279.6875, 8804608.473484736, 8808924.09128557, 8808960.600592503, 8809045.651376616, 8809690.625, 8810242.499868652, 8810507.460030803, 8811020.3125, 8815113.847867388, 8816247.172023702, 8816250.0, 8828386.137379285, 8834083.671276381, 8835933.468743859, 8835962.222592581, 8836971.559167245, 8837751.5625, 8839223.423369808, 8839313.082534105, 8839603.376069043, 8840355.800535116, 8840553.53604128, 8840815.63746859, 8840912.414192088, 8840923.4375, 8841163.380186604, 8841170.87423498, 8842520.304622306, 8842787.5, 8843501.57367793, 8844737.5, 8849656.097372076, 8849707.906663653, 8853499.684247022, 8853708.403174417, 8854724.784519171, 8855401.625347774, 8856232.8125, 8857776.5625, 8858249.900772382, 8859835.933113232, 8863425.317735761, 8865440.625, 8866065.958220478, 8866331.016006384, 8866693.330944635, 8867034.930026118, 8867210.9375, 8867529.584598055, 8869022.92710694, 8869742.976924432, 8870986.073373048, 8871339.0625, 8872292.820812183, 8873841.799652576, 8887810.825991606, 8890146.544785645, 8925610.522626517, 8926609.375, 8928792.85711861, 8943696.277218472, 8945111.858066546, 8945985.9375, 8947456.25, 8948398.949474998, 8948614.0625, 8949904.6875, 8950573.776036417, 8951531.792648368, 8951664.144752353, 8969087.212661225, 8987851.5625, 8989811.937948182, 8993518.702442303, 8993568.374533, 8996491.831680786, 8996511.500719672, 8997352.226734787, 9022104.11030309, 9022885.911865255, 9028496.765893595, 9041318.181954667, 9045313.164896224, 9057000.031719038, 9057232.707023395, 9062721.301625699, 9069914.430404298, 9069914.707429465, 9073210.062328786, 9073867.1875, 9073875.69052302, 9074123.205810819, 9076225.250374785, 9077335.9375, 9077510.9375, 9078457.153468605, 9079258.957482837, 9079520.3125, 9079638.911941547, 9079906.479315685, 9079948.587231126, 9080296.875, 9080342.1875, 9080466.021183185, 9080478.125, 9081832.407805393, 9082214.571675593, 9082389.319388276, 9082785.69998166, 9083494.339786408, 9083609.249763444, 9083653.189980246, 9083655.615204621, 9083681.79765984, 9083896.875, 9084303.125, 9084384.375, 9084603.211297948, 9084752.552671596, 9085561.374408599, 9085710.649908733, 9086127.970848309, 9086586.916215489, 9086801.5625, 9086952.745276535, 9087004.6875, 9087082.547096131, 9087120.46761158, 9087124.778425667, 9087676.5625, 9087721.8147772, 9088125.0, 9088170.3125, 9088308.580516431, 9088390.227409037, 9088698.4375, 9088820.3125, 9088996.875, 9091212.222592859, 9092353.79645726, 9092426.5625, 9093227.286928603, 9094057.170579895, 9094184.208331868, 9094616.886807961, 9094719.71765815, 9095368.74180337, 9097669.661080103, 9101554.75925318, 9101566.322683817, 9101999.934055042, 9102056.207235072, 9102168.828570547, 9102541.043554293, 9102760.9375, 9102804.6875, 9103196.875, 9103298.2223451, 9103904.484362297, 9104010.9375, 9104072.356387606, 9104075.0, 9104582.8125, 9104884.34614626, 9104938.607852858, 9105482.8125, 9105995.232649438, 9106032.774203116, 9106145.3125, 9106449.140539594, 9106515.501895627, 9106521.566283302, 9106637.795626383, 9106667.866301151, 9106689.275965687, 9107007.755211795, 9107134.566572536, 9107267.849395314, 9107678.125, 9107709.375, 9107721.395721152, 9107775.032785675, 9107915.625, 9107932.8125, 9108001.219244454, 9108020.626890901, 9108123.19644006, 9108196.80898282, 9108257.8125, 9108257.8125, 9108344.693921743, 9108473.81350822, 9108756.25, 9108842.854478378, 9108988.978181394, 9109251.207034186, 9109428.763661625, 9109438.217283048, 9109648.576674538, 9109857.218429143, 9110146.875, 9110736.078120979, 9111210.874683075, 9111498.4375, 9111540.625, 9111626.999142088, 9111667.1875, 9112217.725420801, 9112636.78590818, 9112884.210995883, 9113386.864209564, 9113915.724536467, 9114078.369906055, 9114080.35467754, 9114403.125, 9114517.915251601, 9117332.8125, 9117429.392947044, 9117454.6875, 9118152.863008177, 9118386.5557878, 9119118.75, 9120202.325688267, 9120577.619447917, 9121134.03326296, 9121167.64807452, 9121359.382462844, 9121371.67227189, 9121932.8125, 9121962.603699872, 9122277.654659176, 9122318.711877791, 9122353.125, 9122522.473774198, 9122585.656653207, 9122646.421318375, 9122982.8125, 9122993.75, 9123093.75, 9123309.241654618, 9123381.25, 9123567.164020382, 9123679.6875, 9123967.003764175, 9124173.147446902, 9124340.209781317, 9124360.699828366, 9124497.889684716, 9124667.971628623, 9124671.875, 9124874.803528897, 9125617.168784529, 9125631.25, 9125662.215858938, 9125672.751575744, 9125854.6875, 9126102.346224975, 9126138.571078684, 9126473.4375, 9126475.0, 9126599.791311929, 9126634.64377268, 9126828.125, 9126906.511258934, 9127228.125, 9127277.079205276, 9127399.763617713, 9127404.650584338, 9127553.676241105, 9127558.815905971, 9127563.369648127, 9127591.547042012, 9127715.53470397, 9127773.4375, 9127886.42552487, 9127996.579330973, 9128034.682214214, 9128331.793815507, 9128332.102652317, 9128350.0, 9128519.101560265, 9128523.4375, 9128555.889589151, 9128825.0, 9128917.1875, 9128928.125, 9129394.92819413, 9129471.56160445, 9129679.981539404, 9129685.642428722, 9129732.656764172, 9129772.04216612, 9129891.409848677, 9130172.596058939, 9130193.891068004, 9130225.095582131, 9130390.238164967, 9130669.774609216, 9130819.048749952, 9131077.790333757, 9131254.16926818, 9131267.694821546, 9131290.047897251, 9131379.081525344, 9131434.375, 9131562.5, 9131588.242384808, 9131665.620430754, 9132051.613586335, 9132127.552846232, 9132130.665646497, 9132197.897509271, 9132342.994606057, 9132346.875, 9132610.9375, 9132617.544025166, 9134959.049157532, 9134988.330532962, 9135877.883671423, 9136594.580650285, 9141502.654646378, 9149473.032079382, 9149485.655874774, 9151670.921702467, 9152156.226531666, 9154808.781582091, 9155469.65601104, 9155582.328046223, 9157114.0625, 9158393.10298119, 9158427.92226722, 9161651.5625, 9162946.393290464, 9164443.616604885, 9164713.949829854, 9165040.951536328, 9165745.303257804, 9165796.365914488, 9165804.282391671, 9165835.275350016, 9166605.606698874, 9166992.81486964, 9167032.175639486, 9167068.345252628, 9167078.10516773, 9167179.541286565, 9167198.953685084, 9167327.77946015, 9167367.035438266, 9167426.5625, 9167513.490074296, 9167534.485686554, 9167605.453611419, 9167653.903347274, 9167719.37683352, 9167727.433122924, 9167728.824499244, 9167738.426518267, 9167744.270759188, 9167902.907241583, 9167929.3457217, 9167944.918461107, 9167959.375, 9168044.237724263, 9168127.824132238, 9168209.375, 9168230.281769238, 9168338.513084661, 9168350.0, 9168423.23087088, 9168426.5625, 9168456.25, 9168461.240956755, 9168479.100380618, 9168567.1875, 9168616.483756451, 9168634.909552393, 9168727.889310736, 9168835.830435533, 9168855.92473909, 9168856.25, 9169066.518512417, 9169073.326542506, 9169107.024116514, 9169159.847348098, 9169224.700933699, 9169226.5625, 9169319.229384901, 9169353.125, 9169435.738915699, 9169437.031798886, 9169471.398711307, 9169572.10611315, 9169575.0, 9169613.638117889, 9169657.463585187, 9169678.125, 9169728.010336487, 9169796.875, 9170054.5589972, 9170057.690321669, 9170060.9375, 9170069.54648029, 9170076.5625, 9170114.0625, 9170191.368991882, 9170235.881947296, 9170243.75, 9170365.358874949, 9170470.489911748, 9170515.625, 9170550.80056576, 9170552.607841376, 9170569.265170451, 9170595.721831962, 9170640.39174747, 9170652.455054618, 9170668.573851792, 9170712.092568396, 9170826.5625, 9170835.094186064, 9170864.462870078, 9171015.15801271, 9171164.917071499, 9171197.783311795, 9171260.369058913, 9171497.556445828, 9171566.217090778, 9171917.588243956, 9171998.167864468, 9172086.454663854, 9172175.014699599, 9172185.313378528, 9172227.905445235, 9172352.18622662, 9173012.596255964, 9173095.217402551, 9173162.5, 9173243.75, 9173538.686314011, 9173626.841625592, 9173748.702809414, 9173857.8125, 9173873.4375, 9174242.1875, 9174340.43095488, 9174362.904530654, 9175887.5, 9177181.663528955, 9178853.595767304, 9179164.765307683, 9179399.386718765, 9179756.270701077, 9179792.257223018, 9180259.95689472, 9180794.848820925, 9181447.26412645, 9181892.1875, 9182852.65260334, 9183615.797957677, 9183771.445587233, 9183925.152704487, 9184102.669026112, 9184373.4375, 9184381.25, 9184451.519991975, 9185139.358170625, 9185285.9375, 9185474.267487017, 9185693.75, 9186169.249861391, 9186223.4375, 9186359.976539942, 9186961.128701352, 9186985.9375, 9187515.625, 9187547.956487702, 9187713.78363196, 9188208.868908204, 9188234.060086412, 9188324.558135765, 9188549.557025794, 9188973.66456681, 9190681.077405766, 9193459.205676258, 9193696.875, 9194555.730076075, 9195015.056282625, 9195702.790309096, 9195781.25, 9195831.154917337, 9195837.5, 9196171.580456272, 9196411.78902911, 9196437.383038891, 9196517.34674618, 9196595.3125, 9196812.5, 9196827.417421503, 9196829.687956564, 9197282.814947387, 9197359.944572486, 9197430.945349297, 9197574.914192768, 9197618.522385253, 9197657.8125, 9197706.299560128, 9197739.0625, 9197931.25, 9197975.642511524, 9198003.858135128, 9198015.61181154, 9198205.683909878, 9198239.002087018, 9198559.375, 9198774.508633358, 9198804.6875, 9198843.571121087, 9198898.4375, 9198922.011841565, 9199078.125, 9199099.681634912, 9199133.573156517, 9199408.167149419, 9199431.759696567, 9199465.625, 9199734.575653331, 9199804.098271456, 9200355.788794925, 9200485.750235766, 9200495.3125, 9200593.75, 9200594.76541926, 9200846.443053609, 9200970.0292756, 9201043.214539643, 9201350.0, 9201400.0, 9201407.096650437, 9201437.49383959, 9201439.148318095, 9201568.96412117, 9201902.772971755, 9202009.51602042, 9202033.725456117, 9202227.950754002, 9202326.5625, 9202420.097172882, 9202445.676776497, 9202542.321210839, 9202706.25, 9202724.11027815, 9202750.460393336, 9202867.1875, 9202927.296179162, 9202976.5625, 9202988.83672807, 9203201.5625, 9203204.6875, 9203271.894314304, 9203477.3206027, 9203604.6875, 9203658.940919029, 9203709.357299069, 9203776.5625, 9203860.9375, 9204026.056724621, 9204109.375, 9204159.262963517, 9204193.234905772, 9204215.625, 9204299.85913692, 9204350.901367022, 9204605.563131656, 9204637.05994648, 9204709.375, 9204757.928394776, 9204815.625, 9205067.982642977, 9205167.536600629, 9205175.102318265, 9205407.150870737, 9205407.76144915, 9205576.18293571, 9205632.111567767, 9205675.0, 9205724.1698705, 9205809.150521878, 9205956.029144756, 9205956.98363949, 9205965.464841835, 9205991.69686324, 9206068.75, 9206309.623164115, 9206410.23187887, 9206435.9375, 9206502.250117963, 9206502.73058083, 9206642.174546279, 9206669.374740738, 9206687.5, 9206736.697775392, 9206753.396542177, 9206905.645396305, 9206914.60301588, 9206984.98503868, 9207041.968100913, 9207062.469688237, 9207133.969556054, 9207162.853810389, 9207199.635542145, 9207303.838259647, 9207369.75409481, 9207398.4375, 9207505.86242017, 9207559.375, 9207645.292472143, 9207690.625, 9207722.72145114, 9207750.70201856, 9207765.574693862, 9207778.185615644, 9207787.92501723, 9207814.169736652, 9207825.0, 9207827.139597075, 9207845.002494989, 9207930.369227612, 9207962.5, 9207997.569496425, 9208020.3125, 9208024.755781654, 9208067.294434316, 9208071.573880399, 9208140.389384096, 9208170.3125, 9208175.739096195, 9208268.734934209, 9208306.25, 9208308.596683308, 9208465.912317762, 9208479.6875, 9208549.062818093, 9208560.9375, 9208620.872796552, 9208624.037795218, 9208642.620983033, 9208711.677277025, 9208750.471720284, 9208790.625, 9208842.909339055, 9209023.028268987, 9209061.154060034, 9209076.982138205, 9209380.71467782, 9209445.681925248, 9209759.223747369, 9210045.3125, 9210645.3125, 9214824.25042323, 9215098.4375, 9215531.466453562, 9217109.642519703, 9217757.350539293, 9218737.243234191, 9219647.185118487, 9219818.75, 9220376.5625, 9222846.483780561, 9223142.585436359, 9223360.187830377, 9223761.649335101, 9223785.9375, 9224053.727348214, 9224438.055800445, 9224513.533531735, 9224561.24392427, 9224806.25, 9224985.113486521, 9225013.97325449, 9225379.6875, 9225509.375, 9225729.6875, ...], [49.79256857428027, 64.73409917473398, 15.616332370192143, 14.294166595675424, 30.629095618133473, 31.119804428051445, 10.611754843196588, 74.20340374696939, 6.701131793588933, 28.07687536698537, 80.36138286231227, 90.10760023502331, 50.120625294817536, 18.246859345743164, 23.445869368545093, 20.02761109083616, 128.6897774935403, 12.900628754897658, 20.50925251385827, 67.07262731335628, 27.37303730896171, 47.0451431757959, 55.21827431391189, 8.820569625471022, 80.53722578654471, 42.11694751562569, 22.660820777927132, 6.856616551598293, 78.16760885612078, 5.113401079988206, 7.257787557294401, 36.61141913975244, 17.62390177079159, 39.75256898620667, 35.05078569029069, 31.046123137115192, 129.23952414960218, 62.377962502549984, 24.634087177986466, 26.315251076393466, 8.113218264555266, 55.844329561744146, 19.465004426757798, 94.38218229127587, 124.7712254570975, 7.116351171548827, 11.179640432292514, 58.02031925052998, 112.90315414505872, 93.80689977091058, 16.269531681754625, 15.155291804656942, 14.83070442516394, 52.11237951559573, 38.409277604490875, 25.058347438428363, 10.13541730130903, 52.31226139442818, 19.174284428201457, 33.4625026531353, 27.244823557465118, 18.13720893932047, 25.2308232915272, 107.32816356569019, 16.371613408732756, 104.73229633322703, 46.727781544765286, 11.173131896474306, 25.57925148374053, 23.13233567115635, 11.869707790650615, 44.06839064363642, 10.094363861855623, 11.40572782159923, 70.4650830206486, 34.88804728031671, 14.397217708611368, 5.952304126334338, 7.227398326206365, 16.257597196162315, 36.42829602339007, 56.21215695177928, 28.23026125945865, 23.01168756755475, 20.055852868724568, 75.64844292963501, 109.4365244702721, 30.001594147772654, 9.569491643551254, 117.06789671695353, 38.54516447738906, 71.9385992313793, 43.37593679474888, 14.92997199649049, 56.13622107238376, 19.029868725691216, 6.711776946913835, 250.99976846224988, 6.4372634368475286, 28.729851748497794, 50.147779560553914, 29.071882779816807, 336.587602366883, 44.73957769780214, 70.66390235057662, 46.662371039033715, 38.634820355356005, 20.599014885647843, 41.199611018798954, 5.397632038637963, 20.755896696347314, 78.7538599967237, 25.850032104908998, 59.97798756882448, 5.50463779132433, 12.926443168778599, 33.3956577536146, 57.554729782081985, 16.004701278406294, 68.50669491674726, 32.52587689926092, 15.010456326220085, 107.09885673171267, 26.081473036003693, 20.29262441214794, 77.91514894369294, 79.2230145325643, 21.485716000630553, 28.184610826267466, 18.443907915582994, 54.74888881774267, 53.71714588427806, 8.254183866070955, 55.11455007628463, 43.05025376191701, 14.87717711350422, 71.54105381317045, 15.82710599260706, 21.149947695471106, 35.656470324030295, 28.53722064091389, 96.55282468761511, 48.6058381989261, 27.42983242544204, 5.827965020013188, 22.158652060034797, 127.36032218014111, 10.442481487092648, 82.60833484675663, 97.50582576360198, 20.92982648564917, 57.409600254869744, 9.736636309144682, 96.50250137840416, 26.028726082721104, 132.87990164845158, 47.945632755579915, 14.407737965973267, 93.24126402180067, 19.895218567864237, 20.342883713830396, 49.64489987269028, 236.39847893033414, 6.449033869031301, 6.310971714996536, 71.97290615830526, 9.295573308744665, 19.62886479886848, 111.03966040970118, 18.720593809502585, 35.60386410263987, 10.932463322458306, 9.119922544404952, 28.24505373357151, 12.126467244374439, 9.370007883243925, 156.78078324787273, 129.94443398954857, 10.909364927566017, 118.01741522661979, 18.9344388515943, 14.288522094662104, 37.632087817662246, 77.32968931583369, 8.360704976490743, 24.02690878666683, 18.921426335541252, 78.27460028779997, 6.745395208607935, 47.85026079560942, 15.524122917479072, 44.38062920759352, 55.786765493331266, 33.456711521011755, 232.5224013328644, 22.691049390823824, 30.00997423756425, 12.319298256388414, 35.99374802109091, 44.65674324895071, 131.32031567377405, 14.42201829839562, 11.876171596450376, 71.97205995809554, 7.3743923928575486, 34.97035391015013, 22.552777549198222, 103.88192046998418, 37.67505894062866, 11.215890745604414, 63.4661236166858, 6.887988655125074, 5.037668061372038, 80.91496344646909, 31.905908661387762, 26.014293786297493, 41.9025328369318, 7.139157208595304, 29.353202745066607, 38.09780778584492, 114.50800191081015, 38.7793954259213, 37.06134217561938, 98.89058298456331, 5.164490002471309, 36.15573206804186, 148.01273978207587, 94.42026232011627, 80.35541458210253, 62.05119047494067, 23.027897805026893, 24.26015903084006, 14.897027862465778, 34.41730121370102, 30.43577347221765, 11.158750773360962, 93.10823913134327, 79.34596055983704, 18.471715101240527, 45.11411427870705, 68.96830027830764, 42.73659260848399, 29.62376854052674, 78.1272748776497, 17.49034858263665, 89.84954860600212, 19.200723073660466, 20.966660355388818, 55.13596264875205, 58.71216345178994, 67.09176187118345, 273.3653849771394, 98.44132758755784, 27.82804219853304, 183.3662862763901, 14.895192649930769, 63.82997951473739, 5.359987061725079, 6.894815077157481, 49.94260224706635, 13.04115864273002, 51.84222183906654, 22.233599583034028, 9.995062596627493, 6.70645758078271, 35.661811001128456, 5.944821386678023, 108.65015160014288, 21.145665303200158, 29.770970915237385, 26.366650402407906, 17.042475384888508, 5.286053868056055, 96.06699665805581, 46.24980917077786, 29.79371011303909, 64.36377797018265, 14.504484599028274, 8.265603299386806, 8.97761639246239, 30.854780142422175, 68.3531384435532, 23.156016411176857, 23.485760133665934, 5.738865824583381, 11.392209988295225, 18.569337473814862, 9.783737191364304, 114.63356614265447, 34.440781404396084, 76.47575321912308, 19.599076887584413, 6.679368884475957, 39.15229479429403, 5.919732810082137, 20.75479401399617, 16.596833862936982, 139.37069031147186, 75.43610740219233, 50.79097899051777, 18.371793476360594, 54.26317903689303, 22.259668855107225, 5.285302499571243, 7.369300788664951, 18.772006232804827, 98.59627954895997, 82.42867305150159, 18.30737552395632, 101.44747816498722, 17.152635788638303, 51.44724978388447, 37.00162576838358, 45.4148094412717, 6.40957223258978, 5.490768874447015, 61.30538091638425, 33.25510215072063, 12.330621423712598, 14.815262319593437, 9.635380102789783, 54.11846958132243, 16.282681392471364, 37.23773220349821, 53.23522412408769, 95.23124007842935, 87.3936095785049, 46.13944586828533, 15.762320685805923, 67.81158129113072, 7.305348737919806, 58.510942054339935, 71.69929587683886, 88.70559701794583, 14.887923879270616, 76.08242503455425, 6.52718214975289, 22.0124757404373, 141.13038639724738, 16.173213366436755, 78.60134831472182, 50.226129114413716, 12.853006616756007, 7.819880953185651, 40.038336900478456, 79.00130264073081, 108.25082217856162, 36.11385771785224, 33.33305441717708, 19.19896570729437, 6.055867855672924, 12.196231929888791, 78.83988042467823, 5.2469076840618465, 98.37013272800509, 31.93273509514086, 6.743856923324073, 9.327696667473976, 8.462065810743674, 41.9796921733481, 11.691814786421075, 126.63337683666344, 51.9166833022434, 176.2093783572692, 53.662228027507446, 6.254284403957342, 21.39004664811386, 30.960894149492717, 24.007552200478507, 195.31213670818033, 12.286524374015224, 53.968649459794726, 8.228477129197111, 9.066969762498434, 48.979953886784145, 34.00340755031587, 249.33175182023672, 75.68405936556199, 176.81717908996995, 29.85483114431906, 70.62019435160548, 30.307432301801796, 106.69904336702439, 73.50959649406423, 25.410591196031227, 67.24517356279647, 7.143242470033197, 73.76545708650235, 67.63321665610177, 27.014205933073832, 27.617603280062482, 22.83235609629374, 86.11479442738788, 35.57354507090437, 26.91306417579631, 6.977563035093926, 148.24005986528965, 6.7419180673505315, 10.342475756675919, 6.9039276750199, 15.063801669209003, 97.4136671600345, 44.40322452478412, 16.55745970667536, 24.312462006834057, 12.403936207845787, 109.39931775712094, 12.410987974516372, 24.664381149911346, 15.990186958348799, 61.444531316136036, 131.37790638527295, 19.353957008145308, 70.563025237564, 49.032864837845246, 210.52636410613002, 11.506113661908515, 14.830608931257196, 91.18426831640141, 61.19335714244921, 133.57293923806031, 52.57912816433577, 36.865921717278844, 9.802549446426076, 16.020243269692173, 110.41377506731857, 123.11113626579606, 61.9777045050709, 77.44619860071366, 10.261967062476918, 17.54049411012883, 46.57644268227247, 52.64252905430204, 73.45883293968332, 84.42268224170266, 18.914385880516445, 202.89978482816014, 85.17015684867059, 107.66951787400063, 113.14462304637014, 36.33704466177446, 5.593376738744337, 44.34585848168835, 10.736745106915672, 19.87832803550856, 38.74953664748444, 105.80708862641367, 7.581600389499408, 32.60222886643519, 54.26854527179569, 38.72737560187478, 45.915654852837676, 187.51864415008927, 52.232337956683836, 71.99967574226193, 93.22481929880476, 189.01574947443189, 147.13789564217132, 18.6746680873049, 74.21699429297266, 25.617646275419364, 68.91515417612955, 60.80186822362445, 46.76354538556652, 118.04888176183235, 80.07406478563922, 12.42684141639403, 9.276258577845555, 27.705974524709173, 12.740559259910857, 9.712302204881647, 45.24051453952917, 33.531317830705795, 65.93035282442885, 24.89859769303402, 11.542419828499307, 50.53700603807348, 8.558678363389713, 40.206061378943794, 60.807449606056764, 33.96028143496155, 70.80553701057171, 83.55069237159763, 258.93698501404907, 21.92093339586205, 83.6953170446418, 12.512689451100556, 6.075390323874363, 73.55828770455264, 5.253495292000964, 168.24015496567176, 11.478607277827905, 9.28342801406721, 11.440958761566986, 36.734328407249635, 89.06853889838601, 119.66348531815916, 47.07846300083106, 64.6761238711517, 102.68623274177641, 44.58867842003441, 24.531285678504155, 6.121414902694448, 81.86197306787051, 27.283393541367456, 79.03418338532197, 138.7109237239051, 68.05039708524345, 8.495956168877644, 43.64821344756621, 38.38887273952415, 23.546829192716025, 8.107139874457966, 28.933188526200254, 32.29626091404513, 33.79723880540148, 20.60335872039863, 78.38457865282356, 46.661239508845924, 52.71762939014984, 48.651987686505485, 186.90926115507082, 5.415432980608624, 49.47833683507015, 24.18741952540828, 49.549138608159495, 72.64642738569445, 11.568748965693327, 15.334971471254892, 15.965070834322058, 18.286581239743654, 38.98392758614529, 63.50171036067258, 37.17601235404191, 72.56643642509806, 190.38337651225638, 9.119281865684343, 7.84329426968903, 68.57914657777017, 10.072460911021373, 50.41970831400562, 13.781448679790547, 6.327196843614928, 9.337721412649774, 6.241920458103678, 45.95712258543128, 11.293759575668416, 93.12811284214236, 6.481131799978676, 93.22360411081938, 8.630812489982828, 26.190296802495013, 25.834458781344424, 44.07408459852746, 61.97301636315376, 33.64481403509838, 17.878435776688722, 92.03645102833747, 22.098010994694306, 33.71691353433668, 95.97703157439841, 29.171924596884892, 42.82790489462434, 24.580945834044204, 21.029019436974362, 6.010730513839783, 100.1027830935395, 14.242044625986717, 154.57790097106334, 99.82187980714909, 100.93835432332476, 40.62907667968366, 40.6552113846607, 19.10005838701258, 8.947790566404057, 83.41010394399379, 46.20380162849693, 24.991678537169594, 148.64690960712073, 78.88837742173045, 31.233835762345528, 77.81898334108422, 17.36009417438566, 24.598869976620247, 9.300382748233762, 6.147362813013028, 43.23481872580006, 179.352968191235, 94.38501594181068, 10.98944174921712, 28.851196167011587, 25.251245896666205, 10.695002618823622, 16.25780366816102, 32.994229325302314, 19.533470985439948, 58.90609377519597, 14.90845920734127, 35.2046057318592, 58.68134059508624, 54.879251138123394, 53.98674544953545, 112.19336122361378, 193.40606801397803, 23.58112696725782, 11.620670582091348, 73.33814402532516, 25.786772920597908, 16.801349806550416, 126.0785599174519, 26.051606548730405, 7.655069077128736, 9.413552445970074, 15.606788466477228, 21.12326727367053, 16.217175213528552, 13.80287414194651, 61.03472338207453, 9.800672701770985, 5.322527884885544, 106.57574461834139, 28.683628476815624, 84.63829471271964, 18.800874877696028, 33.79901612238621, 32.29165348128762, 21.724942266081378, 158.81605808014854, 203.94468781813313, 31.11821735885533, 45.809483086649514, 28.963466309356345, 16.50013340161417, 23.426158801415458, 10.148550385515113, 14.095091611711513, 19.455020544908596, 150.51450159548457, 32.86588361554746, 34.27289134140118, 17.91442392790111, 5.612747133695496, 13.07727646291256, 63.09512362730497, 27.88507995555765, 84.20344827121349, 20.142003660276263, 79.02567445073934, 61.44481822129797, 13.376420008747525, 120.4910341401945, 22.441572590692026, 7.210017749274551, 9.323600584442772, 35.35610923571564, 105.30261309044236, 69.26876767463928, 12.949995487532522, 21.258158465472718, 20.22847681758088, 27.83874545561593, 28.138273959324845, 10.906606254909228, 9.809656418335763, 8.111928923269673, 197.45072791523577, 81.03304030516193, 32.724255396347246, 19.913762715655405, 12.581534533722342, 42.56772336030033, 42.71395895402735, 89.76551841480365, 20.36995454672401, 183.1539590559784, 17.38343892502978, 23.23158889770669, 20.08911180289882, 19.235406309280737, 49.674789729873126, 37.86354392397903, 88.56406674600171, 97.11473413714157, 9.89009444878668, 119.33591846205152, 135.79560794288744, 25.021491352422885, 41.86023916726186, 122.75411510331396, 16.239733629569074, 8.879840282427164, 37.554643624324, 30.825127194724637, 17.46349878552136, 40.62154793708232, 53.39025247811344, 185.77348997980528, 35.668139592200504, 19.958173843766943, 14.540443448417363, 22.893890760948462, 63.441069789440704, 19.69514994235579, 54.92872384700016, 80.95291365303217, 73.29072985544242, 16.9356988787433, 64.34325111437767, 65.13606648034576, 26.698354665953822, 86.34404917543043, 22.28211979581295, 111.74344724003015, 48.16958525861443, 72.6085176818484, 113.83546314158774, 24.132591845065573, 26.323129262773865, 75.1303868341708, 6.37336082920586, 51.13211739953673, 55.05906015273486, 18.812278742459085, 150.6681107737994, 32.53648127084351, 127.90750925346549, 22.063635780377876, 125.30244780310268, 12.661685831915841, 221.170627045479, 30.0064012824651, 7.758313853382243, 14.121226032121772, 12.883517578039589, 108.2447895231608, 195.84611936171945, 80.49780027687663, 371.01279472078136, 16.724027814979824, 21.828864548839267, 19.642620211784717, 158.99783641277702, 20.836492994266404, 9.982738914970932, 156.03406985871973, 6.319192905254735, 38.66041313922077, 62.41871241733701, 21.30012464784749, 41.79023017399251, 7.525712906748462, 6.894762762841873, 24.20190858276473, 69.15894050423253, 139.91921205038358, 119.83553171228962, 110.10943741853403, 51.828686663948616, 11.569371655332866, 34.73007191460723, 79.10641832376734, 62.29660696141035, 39.940937305235586, 8.51274815352558, 43.561125089127415, 11.842069432289952, 17.101277876425748, 18.52559562372028, 26.587726186940387, 15.021003672085575, 92.00536038313714, 5.562004308559398, 7.44372166310509, 112.40637865519935, 175.83927156178862, 22.143904948562344, 9.48205960644767, 6.680702381895966, 5.249439372657862, 13.448262464751744, 147.67715744826376, 45.85104727040197, 27.710730362458385, 25.243877181013012, 51.4871665308162, 161.17843608904565, 66.72223644409267, 46.6062307805092, 39.91461423485822, 17.86671656679929, 125.43438194203873, 61.01807016528556, 53.37690425963808, 21.68462716927545, 32.19158107064908, 117.72383819659613, 5.912442241590225, 29.019700845577177, 22.081471486360105, 8.410418529297404, 7.541983758497634, 115.33275970697622, 61.99869766939942, 18.55954177689666, 5.437874773557044, 136.81122295056883, 98.0932618076877, 72.11114557652829, 81.88708277071827, 66.08927161073944, 7.3648555555277575, 14.513692322380894, 5.044237774872398, 32.04909589184472, 35.51535308816941, 119.07458038119545, 14.943249915270972, 11.131534382806539, 21.16474115128819, 22.094739674106123, 26.93559004881734, 111.14525392736024, 90.83898495435287, 97.15730578298555, 89.49215968602637, 42.29526414400475, 14.046347920190417, 30.395661679775863, 14.891478334516302, 35.177071879490725, 14.716136874455485, 43.033583889362994, 120.13714946479692, 70.14667318726407, 6.459411285328481, 103.3047646644943, 22.635960951819154, 29.197154227953188, 34.159596288184495, 57.05105244970116, 47.48779973597752, 178.37277069082026, 36.92441873365257, 79.47530414309493, 10.316690270473304, 21.88903122596802, 173.9574032520688, 61.7695819524132, 94.73528081441664, 21.035958729439667, 29.538314441199947, 10.712100477121458, 28.20177100476855, 65.04331807554706, 59.896559954871975, 56.41807888477321, 28.403694382998708, 15.279017717708157, 15.82568149286825, 61.14843846287121, 67.32012210604417, 10.244468839604448, 25.50197050064516, 131.33518595518927, 99.19438039574436, 167.99098653536038, 65.68985660501846, 39.747628563689915, 8.677568443861903, 17.044247987213172, 48.09496981358713, 12.507484664026588, 34.10935770158813, 36.20119833041962, 80.51701645514476, 57.65732008322788, 5.041869561438399, 12.563124380408324, 68.47290929774078, 26.787633426031064, 78.16309735462481, 53.413275394909824, 64.52680107019273, 21.4356805596428, 93.00610589360303, 16.24295609194988, 21.34383723329863, 54.701468413210186, 58.25552715969537, 18.85832577540217, 19.8116786161631, 5.232993783209106, 54.2803082961194, 9.431359760740994, 70.09481687235079, 89.10087572064268, 7.734577701217497, 15.346387574606567, 7.965165142213358, 17.176570827886156, 37.44225009301375, 19.6983708752018, 84.52076637873138, 182.12950701100488, 239.83972501847302, 5.797817616956939, 18.739131279366394, 25.718035058374944, 59.99219502649955, 77.68293393278307, 87.79714779999074, 30.974720043790107, 72.33001678640365, 5.492074703372331, 48.85326621276237, 40.457027363207644, 227.17084638701215, 40.70088346681467, 163.08961412006076, 131.75433505512746, 57.86285536414641, 17.4984176705474, 23.463893642080375, 34.98679120908491, 40.916033361597655, 23.22715512522717, 16.486536145938306, 13.71325334446684, 137.45676242884542, 27.610498092795247, 119.99304389265602, 13.644857578113863, 79.74799839193766, 14.865718161679451, 30.047420597048852, 32.860740702563994, 5.112528338772596, 56.56735838054847, 15.177693261488148, 11.913391135108844, 21.836752281555576, 43.36805428287096, 37.83835882724132, 23.623777288161, 8.683291842649822, 30.033341518547807, 92.35247025968016, 34.18690692043744, 74.55993401623405, 47.77470385964794, 23.736450819802535, 66.9375961121388, 98.59014750721852, 18.777594636891894, 29.907746919304017, 115.11196646676265, 54.29349224369576, 81.80047775901397, 45.6249450907699, 111.42104689303126, 108.45775051558874, 255.57106282732974, 101.18446872110498, 11.880359874007283, 7.330514112449429, 17.10654247481145, 40.044231784974066, 6.004833347999465, 47.909047527383485, 16.905849229958314, 52.34597932164022, 13.230336841835964, 56.959715218536104, 33.736610908119594, 68.20208154815872, 100.73187396483306, 35.55317013928392, 49.34378937953966, 5.135155310858975, 51.935828657272424, 15.280007557132702, 61.12248835906608, 116.07226334318597, 40.476769630588336, 60.14315661006926, 22.65151269860679, 8.508853862979889, 33.362834197240275, 40.52678810407104, 44.6513109238624, 17.871733108065836, 5.486138748919464, 6.034765962016658, 11.643009555429364, 79.58981148965978, 29.080383759785377, 14.611919028445103, 38.345045407654595, 144.36268400008416, 45.2775555222292, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([7165317.1875, 7387784.306245509, 7406898.603955833, 7429948.256621075, 7517235.9375, 7553323.411271967, 7553990.267770447, 7555896.5026141275, 7565766.866826244, 7568196.230069901, 7587131.25, 7588708.822790053, 7589250.0, 7626045.973637499, 7626122.053874397, 7627095.949281455, 7628426.5625, 7631044.649452287, 7643289.975156032, 7643306.25, 7646037.4389867, 7658278.125, 7664632.2067187745, 7728727.4520382965, 7735496.875, 7736559.375, 7742438.672098936, 7756208.261653651, 7757425.0, 7757550.744719788, 7759195.806940598, 7762621.875, 7779305.249187496, 7806499.427911873, 7811093.75, 7811577.922963499, 7870128.1884552045, 7871144.997996573, 7872171.411365277, 7886262.377340618, 7887966.844628187, 7912765.550360077, 7924218.019438297, 7925946.119464225, 7926210.913397174, 7988123.418061297, 8007215.657973374, 8131037.492359335, 8132007.126383424, 8132358.735329682, 8154633.122146829, 8175614.117480005, 8185240.595622063, 8236728.125, 8276043.75, 8278898.197590865, 8291200.819035424, 8295408.687394956, 8299873.349044886, 8302171.875, 8307044.258026976, 8307052.206783794, 8310090.4326624265, 8322764.0625, 8324937.8306203205, 8358139.0625, 8375417.1875, 8382887.528868472, 8383404.391651574, 8384310.587494408, 8388745.74045234, 8391294.533760268, 8392294.532756398, 8392939.233374031, 8393771.045810303, 8404696.1888469, 8414670.161973134, 8414678.27193106, 8414773.82576881, 8415552.961197961, 8417525.0, 8417812.5, 8419483.810823608, 8420776.202352475, 8421730.592749625, 8422232.8125, 8425227.63278898, 8436487.5, 8457383.081265345, 8460364.0625, 8463845.62132588, 8472901.5625, 8511021.875, 8511412.496969724, 8536542.1875, 8540249.211677553, 8543165.360245654, 8543270.565445047, 8543448.112098152, 8543654.6875, 8544325.0, 8544643.75, 8545070.3125, 8545398.896675253, 8546156.617667852, 8546667.186146839, 8546839.14313474, 8547024.405444626, 8547025.103505954, 8547165.602957558, 8547188.48528082, 8547390.625, 8551495.160809062, 8552045.3125, 8556527.524684122, 8561786.959641296, 8564625.933092365, 8566121.789775545, 8566592.441024367, 8566725.699487675, 8568018.426040709, 8568817.205472186, 8569591.47584133, 8569673.818432076, 8570152.49560399, 8570792.1875, 8571683.436796343, 8571761.999259446, 8572087.826072533, 8572224.576237917, 8572229.55128084, 8572238.314996194, 8572245.250737017, 8572292.1875, 8572456.147955878, 8572523.420518653, 8573665.625, 8573767.401939556, 8574262.788023585, 8574317.604260609, 8574775.984637737, 8574800.15739906, 8575022.917164994, 8575312.442136878, 8576042.374732947, 8576540.1892269, 8576577.857985644, 8577013.574918557, 8577177.331848018, 8577289.0625, 8578160.379117718, 8578743.75, 8586409.8182875, 8606720.3125, 8613868.609607585, 8614156.826270599, 8615557.8125, 8622426.031273324, 8622526.5625, 8631497.760869546, 8635652.501410587, 8640522.112665055, 8641636.78393911, 8641888.815349985, 8642269.088784432, 8642980.717156857, 8643578.082319545, 8643658.665337458, 8645913.728734715, 8647822.605999202, 8648768.68244993, 8649437.371391937, 8651451.301334465, 8652204.060546268, 8652478.68205336, 8652698.48280583, 8653226.5625, 8654493.574790198, 8654667.043171471, 8663490.625, 8688934.145643147, 8690240.44244042, 8691922.055427227, 8692035.9375, 8692082.950094419, 8692745.643282576, 8693235.872724354, 8694810.595490918, 8694920.221098881, 8694940.964636967, 8695916.10089371, 8696600.0, 8697265.625, 8697841.888663627, 8700924.760058343, 8705491.799750935, 8709036.774936946, 8722630.33605003, 8724129.6875, 8729617.1875, 8747676.5625, 8748598.294185152, 8748814.490344936, 8749206.25, 8750077.444615144, 8750382.623125756, 8750415.225048201, 8750928.57014224, 8751934.763515422, 8751951.61819417, 8752358.345135177, 8753741.218106639, 8753826.331232373, 8753850.933015201, 8754204.383027805, 8754459.233701969, 8754473.363357125, 8754487.566929398, 8754543.75, 8754613.618513066, 8754748.4375, 8755064.0625, 8755456.25, 8755790.625, 8755839.025036577, 8755879.6875, 8755984.764328664, 8756428.125, 8756775.0, 8756887.5, 8756969.953722754, 8757116.65925369, 8757124.988280587, 8757367.1875, 8757367.82113811, 8757470.332270594, 8757618.75, 8757655.312256312, 8757690.551773004, 8757735.9375, 8757912.092059994, 8758032.760135034, 8758038.964601887, 8758040.831321072, 8758056.789140645, 8758117.927417105, 8758163.297260318, 8758280.695556335, 8758535.9375, 8758619.987998998, 8758999.597227179, 8759006.314806322, 8759087.5, 8759210.967808185, 8759300.100243544, 8759360.925294949, 8759376.5625, 8759805.20540029, 8760016.248962458, 8760379.6875, 8760393.14257525, 8761321.025262065, 8761387.071160216, 8766221.005327055, 8767954.394865604, 8767965.625, 8768051.624480382, 8769023.660182819, 8769529.15195141, 8769579.6875, 8769831.130472926, 8769864.811311765, 8770109.211187044, 8770239.159801716, 8770353.125, 8770599.421884377, 8770628.125, 8770912.380413393, 8771376.522626098, 8771499.549699092, 8771600.0, 8771788.962439056, 8772905.901969794, 8773069.223851778, 8773119.242951663, 8773190.787877308, 8773668.119160688, 8774086.428033084, 8774457.429633595, 8774463.882054294, 8774820.3125, 8775678.18738506, 8775923.000923539, 8776026.5625, 8777237.271293456, 8778310.361721689, 8778339.43815833, 8778420.567678904, 8779087.80855921, 8782480.618417522, 8783102.364009757, 8787945.3125, 8787960.511058265, 8788027.936584491, 8789813.365809558, 8791498.351627823, 8791532.8125, 8791858.682232598, 8792733.482825784, 8793243.924395192, 8793609.855030509, 8793663.553004045, 8794187.5, 8795607.497286797, 8796838.549498199, 8797138.158736218, 8800279.6875, 8804608.473484736, 8808924.09128557, 8808960.600592503, 8809045.651376616, 8809690.625, 8810242.499868652, 8810507.460030803, 8811020.3125, 8815113.847867388, 8816247.172023702, 8816250.0, 8828386.137379285, 8834083.671276381, 8835933.468743859, 8835962.222592581, 8836971.559167245, 8837751.5625, 8839223.423369808, 8839313.082534105, 8839603.376069043, 8840355.800535116, 8840553.53604128, 8840815.63746859, 8840912.414192088, 8840923.4375, 8841163.380186604, 8841170.87423498, 8842520.304622306, 8842787.5, 8843501.57367793, 8844737.5, 8849656.097372076, 8849707.906663653, 8853499.684247022, 8853708.403174417, 8854724.784519171, 8855401.625347774, 8856232.8125, 8857776.5625, 8858249.900772382, 8859835.933113232, 8863425.317735761, 8865440.625, 8866065.958220478, 8866331.016006384, 8866693.330944635, 8867034.930026118, 8867210.9375, 8867529.584598055, 8869022.92710694, 8869742.976924432, 8870986.073373048, 8871339.0625, 8872292.820812183, 8873841.799652576, 8887810.825991606, 8890146.544785645, 8925610.522626517, 8926609.375, 8928792.85711861, 8943696.277218472, 8945111.858066546, 8945985.9375, 8947456.25, 8948398.949474998, 8948614.0625, 8949904.6875, 8950573.776036417, 8951531.792648368, 8951664.144752353, 8969087.212661225, 8987851.5625, 8989811.937948182, 8993518.702442303, 8993568.374533, 8996491.831680786, 8996511.500719672, 8997352.226734787, 9022104.11030309, 9022885.911865255, 9028496.765893595, 9041318.181954667, 9045313.164896224, 9057000.031719038, 9057232.707023395, 9062721.301625699, 9069914.430404298, 9069914.707429465, 9073210.062328786, 9073867.1875, 9073875.69052302, 9074123.205810819, 9076225.250374785, 9077335.9375, 9077510.9375, 9078457.153468605, 9079258.957482837, 9079520.3125, 9079638.911941547, 9079906.479315685, 9079948.587231126, 9080296.875, 9080342.1875, 9080466.021183185, 9080478.125, 9081832.407805393, 9082214.571675593, 9082389.319388276, 9082785.69998166, 9083494.339786408, 9083609.249763444, 9083653.189980246, 9083655.615204621, 9083681.79765984, 9083896.875, 9084303.125, 9084384.375, 9084603.211297948, 9084752.552671596, 9085561.374408599, 9085710.649908733, 9086127.970848309, 9086586.916215489, 9086801.5625, 9086952.745276535, 9087004.6875, 9087082.547096131, 9087120.46761158, 9087124.778425667, 9087676.5625, 9087721.8147772, 9088125.0, 9088170.3125, 9088308.580516431, 9088390.227409037, 9088698.4375, 9088820.3125, 9088996.875, 9091212.222592859, 9092353.79645726, 9092426.5625, 9093227.286928603, 9094057.170579895, 9094184.208331868, 9094616.886807961, 9094719.71765815, 9095368.74180337, 9097669.661080103, 9101554.75925318, 9101566.322683817, 9101999.934055042, 9102056.207235072, 9102168.828570547, 9102541.043554293, 9102760.9375, 9102804.6875, 9103196.875, 9103298.2223451, 9103904.484362297, 9104010.9375, 9104072.356387606, 9104075.0, 9104582.8125, 9104884.34614626, 9104938.607852858, 9105482.8125, 9105995.232649438, 9106032.774203116, 9106145.3125, 9106449.140539594, 9106515.501895627, 9106521.566283302, 9106637.795626383, 9106667.866301151, 9106689.275965687, 9107007.755211795, 9107134.566572536, 9107267.849395314, 9107678.125, 9107709.375, 9107721.395721152, 9107775.032785675, 9107915.625, 9107932.8125, 9108001.219244454, 9108020.626890901, 9108123.19644006, 9108196.80898282, 9108257.8125, 9108257.8125, 9108344.693921743, 9108473.81350822, 9108756.25, 9108842.854478378, 9108988.978181394, 9109251.207034186, 9109428.763661625, 9109438.217283048, 9109648.576674538, 9109857.218429143, 9110146.875, 9110736.078120979, 9111210.874683075, 9111498.4375, 9111540.625, 9111626.999142088, 9111667.1875, 9112217.725420801, 9112636.78590818, 9112884.210995883, 9113386.864209564, 9113915.724536467, 9114078.369906055, 9114080.35467754, 9114403.125, 9114517.915251601, 9117332.8125, 9117429.392947044, 9117454.6875, 9118152.863008177, 9118386.5557878, 9119118.75, 9120202.325688267, 9120577.619447917, 9121134.03326296, 9121167.64807452, 9121359.382462844, 9121371.67227189, 9121932.8125, 9121962.603699872, 9122277.654659176, 9122318.711877791, 9122353.125, 9122522.473774198, 9122585.656653207, 9122646.421318375, 9122982.8125, 9122993.75, 9123093.75, 9123309.241654618, 9123381.25, 9123567.164020382, 9123679.6875, 9123967.003764175, 9124173.147446902, 9124340.209781317, 9124360.699828366, 9124497.889684716, 9124667.971628623, 9124671.875, 9124874.803528897, 9125617.168784529, 9125631.25, 9125662.215858938, 9125672.751575744, 9125854.6875, 9126102.346224975, 9126138.571078684, 9126473.4375, 9126475.0, 9126599.791311929, 9126634.64377268, 9126828.125, 9126906.511258934, 9127228.125, 9127277.079205276, 9127399.763617713, 9127404.650584338, 9127553.676241105, 9127558.815905971, 9127563.369648127, 9127591.547042012, 9127715.53470397, 9127773.4375, 9127886.42552487, 9127996.579330973, 9128034.682214214, 9128331.793815507, 9128332.102652317, 9128350.0, 9128519.101560265, 9128523.4375, 9128555.889589151, 9128825.0, 9128917.1875, 9128928.125, 9129394.92819413, 9129471.56160445, 9129679.981539404, 9129685.642428722, 9129732.656764172, 9129772.04216612, 9129891.409848677, 9130172.596058939, 9130193.891068004, 9130225.095582131, 9130390.238164967, 9130669.774609216, 9130819.048749952, 9131077.790333757, 9131254.16926818, 9131267.694821546, 9131290.047897251, 9131379.081525344, 9131434.375, 9131562.5, 9131588.242384808, 9131665.620430754, 9132051.613586335, 9132127.552846232, 9132130.665646497, 9132197.897509271, 9132342.994606057, 9132346.875, 9132610.9375, 9132617.544025166, 9134959.049157532, 9134988.330532962, 9135877.883671423, 9136594.580650285, 9141502.654646378, 9149473.032079382, 9149485.655874774, 9151670.921702467, 9152156.226531666, 9154808.781582091, 9155469.65601104, 9155582.328046223, 9157114.0625, 9158393.10298119, 9158427.92226722, 9161651.5625, 9162946.393290464, 9164443.616604885, 9164713.949829854, 9165040.951536328, 9165745.303257804, 9165796.365914488, 9165804.282391671, 9165835.275350016, 9166605.606698874, 9166992.81486964, 9167032.175639486, 9167068.345252628, 9167078.10516773, 9167179.541286565, 9167198.953685084, 9167327.77946015, 9167367.035438266, 9167426.5625, 9167513.490074296, 9167534.485686554, 9167605.453611419, 9167653.903347274, 9167719.37683352, 9167727.433122924, 9167728.824499244, 9167738.426518267, 9167744.270759188, 9167902.907241583, 9167929.3457217, 9167944.918461107, 9167959.375, 9168044.237724263, 9168127.824132238, 9168209.375, 9168230.281769238, 9168338.513084661, 9168350.0, 9168423.23087088, 9168426.5625, 9168456.25, 9168461.240956755, 9168479.100380618, 9168567.1875, 9168616.483756451, 9168634.909552393, 9168727.889310736, 9168835.830435533, 9168855.92473909, 9168856.25, 9169066.518512417, 9169073.326542506, 9169107.024116514, 9169159.847348098, 9169224.700933699, 9169226.5625, 9169319.229384901, 9169353.125, 9169435.738915699, 9169437.031798886, 9169471.398711307, 9169572.10611315, 9169575.0, 9169613.638117889, 9169657.463585187, 9169678.125, 9169728.010336487, 9169796.875, 9170054.5589972, 9170057.690321669, 9170060.9375, 9170069.54648029, 9170076.5625, 9170114.0625, 9170191.368991882, 9170235.881947296, 9170243.75, 9170365.358874949, 9170470.489911748, 9170515.625, 9170550.80056576, 9170552.607841376, 9170569.265170451, 9170595.721831962, 9170640.39174747, 9170652.455054618, 9170668.573851792, 9170712.092568396, 9170826.5625, 9170835.094186064, 9170864.462870078, 9171015.15801271, 9171164.917071499, 9171197.783311795, 9171260.369058913, 9171497.556445828, 9171566.217090778, 9171917.588243956, 9171998.167864468, 9172086.454663854, 9172175.014699599, 9172185.313378528, 9172227.905445235, 9172352.18622662, 9173012.596255964, 9173095.217402551, 9173162.5, 9173243.75, 9173538.686314011, 9173626.841625592, 9173748.702809414, 9173857.8125, 9173873.4375, 9174242.1875, 9174340.43095488, 9174362.904530654, 9175887.5, 9177181.663528955, 9178853.595767304, 9179164.765307683, 9179399.386718765, 9179756.270701077, 9179792.257223018, 9180259.95689472, 9180794.848820925, 9181447.26412645, 9181892.1875, 9182852.65260334, 9183615.797957677, 9183771.445587233, 9183925.152704487, 9184102.669026112, 9184373.4375, 9184381.25, 9184451.519991975, 9185139.358170625, 9185285.9375, 9185474.267487017, 9185693.75, 9186169.249861391, 9186223.4375, 9186359.976539942, 9186961.128701352, 9186985.9375, 9187515.625, 9187547.956487702, 9187713.78363196, 9188208.868908204, 9188234.060086412, 9188324.558135765, 9188549.557025794, 9188973.66456681, 9190681.077405766, 9193459.205676258, 9193696.875, 9194555.730076075, 9195015.056282625, 9195702.790309096, 9195781.25, 9195831.154917337, 9195837.5, 9196171.580456272, 9196411.78902911, 9196437.383038891, 9196517.34674618, 9196595.3125, 9196812.5, 9196827.417421503, 9196829.687956564, 9197282.814947387, 9197359.944572486, 9197430.945349297, 9197574.914192768, 9197618.522385253, 9197657.8125, 9197706.299560128, 9197739.0625, 9197931.25, 9197975.642511524, 9198003.858135128, 9198015.61181154, 9198205.683909878, 9198239.002087018, 9198559.375, 9198774.508633358, 9198804.6875, 9198843.571121087, 9198898.4375, 9198922.011841565, 9199078.125, 9199099.681634912, 9199133.573156517, 9199408.167149419, 9199431.759696567, 9199465.625, 9199734.575653331, 9199804.098271456, 9200355.788794925, 9200485.750235766, 9200495.3125, 9200593.75, 9200594.76541926, 9200846.443053609, 9200970.0292756, 9201043.214539643, 9201350.0, 9201400.0, 9201407.096650437, 9201437.49383959, 9201439.148318095, 9201568.96412117, 9201902.772971755, 9202009.51602042, 9202033.725456117, 9202227.950754002, 9202326.5625, 9202420.097172882, 9202445.676776497, 9202542.321210839, 9202706.25, 9202724.11027815, 9202750.460393336, 9202867.1875, 9202927.296179162, 9202976.5625, 9202988.83672807, 9203201.5625, 9203204.6875, 9203271.894314304, 9203477.3206027, 9203604.6875, 9203658.940919029, 9203709.357299069, 9203776.5625, 9203860.9375, 9204026.056724621, 9204109.375, 9204159.262963517, 9204193.234905772, 9204215.625, 9204299.85913692, 9204350.901367022, 9204605.563131656, 9204637.05994648, 9204709.375, 9204757.928394776, 9204815.625, 9205067.982642977, 9205167.536600629, 9205175.102318265, 9205407.150870737, 9205407.76144915, 9205576.18293571, 9205632.111567767, 9205675.0, 9205724.1698705, 9205809.150521878, 9205956.029144756, 9205956.98363949, 9205965.464841835, 9205991.69686324, 9206068.75, 9206309.623164115, 9206410.23187887, 9206435.9375, 9206502.250117963, 9206502.73058083, 9206642.174546279, 9206669.374740738, 9206687.5, 9206736.697775392, 9206753.396542177, 9206905.645396305, 9206914.60301588, 9206984.98503868, 9207041.968100913, 9207062.469688237, 9207133.969556054, 9207162.853810389, 9207199.635542145, 9207303.838259647, 9207369.75409481, 9207398.4375, 9207505.86242017, 9207559.375, 9207645.292472143, 9207690.625, 9207722.72145114, 9207750.70201856, 9207765.574693862, 9207778.185615644, 9207787.92501723, 9207814.169736652, 9207825.0, 9207827.139597075, 9207845.002494989, 9207930.369227612, 9207962.5, 9207997.569496425, 9208020.3125, 9208024.755781654, 9208067.294434316, 9208071.573880399, 9208140.389384096, 9208170.3125, 9208175.739096195, 9208268.734934209, 9208306.25, 9208308.596683308, 9208465.912317762, 9208479.6875, 9208549.062818093, 9208560.9375, 9208620.872796552, 9208624.037795218, 9208642.620983033, 9208711.677277025, 9208750.471720284, 9208790.625, 9208842.909339055, 9209023.028268987, 9209061.154060034, 9209076.982138205, 9209380.71467782, 9209445.681925248, 9209759.223747369, 9210045.3125, 9210645.3125, 9214824.25042323, 9215098.4375, 9215531.466453562, 9217109.642519703, 9217757.350539293, 9218737.243234191, 9219647.185118487, 9219818.75, 9220376.5625, 9222846.483780561, 9223142.585436359, 9223360.187830377, 9223761.649335101, 9223785.9375, 9224053.727348214, 9224438.055800445, 9224513.533531735, 9224561.24392427, 9224806.25, 9224985.113486521, 9225013.97325449, 9225379.6875, 9225509.375, 9225729.6875, ...], [49.79256857428027, 64.73409917473398, 15.616332370192143, 14.294166595675424, 30.629095618133473, 31.119804428051445, 10.611754843196588, 74.20340374696939, 6.701131793588933, 28.07687536698537, 80.36138286231227, 90.10760023502331, 50.120625294817536, 18.246859345743164, 23.445869368545093, 20.02761109083616, 128.6897774935403, 12.900628754897658, 20.50925251385827, 67.07262731335628, 27.37303730896171, 47.0451431757959, 55.21827431391189, 8.820569625471022, 80.53722578654471, 42.11694751562569, 22.660820777927132, 6.856616551598293, 78.16760885612078, 5.113401079988206, 7.257787557294401, 36.61141913975244, 17.62390177079159, 39.75256898620667, 35.05078569029069, 31.046123137115192, 129.23952414960218, 62.377962502549984, 24.634087177986466, 26.315251076393466, 8.113218264555266, 55.844329561744146, 19.465004426757798, 94.38218229127587, 124.7712254570975, 7.116351171548827, 11.179640432292514, 58.02031925052998, 112.90315414505872, 93.80689977091058, 16.269531681754625, 15.155291804656942, 14.83070442516394, 52.11237951559573, 38.409277604490875, 25.058347438428363, 10.13541730130903, 52.31226139442818, 19.174284428201457, 33.4625026531353, 27.244823557465118, 18.13720893932047, 25.2308232915272, 107.32816356569019, 16.371613408732756, 104.73229633322703, 46.727781544765286, 11.173131896474306, 25.57925148374053, 23.13233567115635, 11.869707790650615, 44.06839064363642, 10.094363861855623, 11.40572782159923, 70.4650830206486, 34.88804728031671, 14.397217708611368, 5.952304126334338, 7.227398326206365, 16.257597196162315, 36.42829602339007, 56.21215695177928, 28.23026125945865, 23.01168756755475, 20.055852868724568, 75.64844292963501, 109.4365244702721, 30.001594147772654, 9.569491643551254, 117.06789671695353, 38.54516447738906, 71.9385992313793, 43.37593679474888, 14.92997199649049, 56.13622107238376, 19.029868725691216, 6.711776946913835, 250.99976846224988, 6.4372634368475286, 28.729851748497794, 50.147779560553914, 29.071882779816807, 336.587602366883, 44.73957769780214, 70.66390235057662, 46.662371039033715, 38.634820355356005, 20.599014885647843, 41.199611018798954, 5.397632038637963, 20.755896696347314, 78.7538599967237, 25.850032104908998, 59.97798756882448, 5.50463779132433, 12.926443168778599, 33.3956577536146, 57.554729782081985, 16.004701278406294, 68.50669491674726, 32.52587689926092, 15.010456326220085, 107.09885673171267, 26.081473036003693, 20.29262441214794, 77.91514894369294, 79.2230145325643, 21.485716000630553, 28.184610826267466, 18.443907915582994, 54.74888881774267, 53.71714588427806, 8.254183866070955, 55.11455007628463, 43.05025376191701, 14.87717711350422, 71.54105381317045, 15.82710599260706, 21.149947695471106, 35.656470324030295, 28.53722064091389, 96.55282468761511, 48.6058381989261, 27.42983242544204, 5.827965020013188, 22.158652060034797, 127.36032218014111, 10.442481487092648, 82.60833484675663, 97.50582576360198, 20.92982648564917, 57.409600254869744, 9.736636309144682, 96.50250137840416, 26.028726082721104, 132.87990164845158, 47.945632755579915, 14.407737965973267, 93.24126402180067, 19.895218567864237, 20.342883713830396, 49.64489987269028, 236.39847893033414, 6.449033869031301, 6.310971714996536, 71.97290615830526, 9.295573308744665, 19.62886479886848, 111.03966040970118, 18.720593809502585, 35.60386410263987, 10.932463322458306, 9.119922544404952, 28.24505373357151, 12.126467244374439, 9.370007883243925, 156.78078324787273, 129.94443398954857, 10.909364927566017, 118.01741522661979, 18.9344388515943, 14.288522094662104, 37.632087817662246, 77.32968931583369, 8.360704976490743, 24.02690878666683, 18.921426335541252, 78.27460028779997, 6.745395208607935, 47.85026079560942, 15.524122917479072, 44.38062920759352, 55.786765493331266, 33.456711521011755, 232.5224013328644, 22.691049390823824, 30.00997423756425, 12.319298256388414, 35.99374802109091, 44.65674324895071, 131.32031567377405, 14.42201829839562, 11.876171596450376, 71.97205995809554, 7.3743923928575486, 34.97035391015013, 22.552777549198222, 103.88192046998418, 37.67505894062866, 11.215890745604414, 63.4661236166858, 6.887988655125074, 5.037668061372038, 80.91496344646909, 31.905908661387762, 26.014293786297493, 41.9025328369318, 7.139157208595304, 29.353202745066607, 38.09780778584492, 114.50800191081015, 38.7793954259213, 37.06134217561938, 98.89058298456331, 5.164490002471309, 36.15573206804186, 148.01273978207587, 94.42026232011627, 80.35541458210253, 62.05119047494067, 23.027897805026893, 24.26015903084006, 14.897027862465778, 34.41730121370102, 30.43577347221765, 11.158750773360962, 93.10823913134327, 79.34596055983704, 18.471715101240527, 45.11411427870705, 68.96830027830764, 42.73659260848399, 29.62376854052674, 78.1272748776497, 17.49034858263665, 89.84954860600212, 19.200723073660466, 20.966660355388818, 55.13596264875205, 58.71216345178994, 67.09176187118345, 273.3653849771394, 98.44132758755784, 27.82804219853304, 183.3662862763901, 14.895192649930769, 63.82997951473739, 5.359987061725079, 6.894815077157481, 49.94260224706635, 13.04115864273002, 51.84222183906654, 22.233599583034028, 9.995062596627493, 6.70645758078271, 35.661811001128456, 5.944821386678023, 108.65015160014288, 21.145665303200158, 29.770970915237385, 26.366650402407906, 17.042475384888508, 5.286053868056055, 96.06699665805581, 46.24980917077786, 29.79371011303909, 64.36377797018265, 14.504484599028274, 8.265603299386806, 8.97761639246239, 30.854780142422175, 68.3531384435532, 23.156016411176857, 23.485760133665934, 5.738865824583381, 11.392209988295225, 18.569337473814862, 9.783737191364304, 114.63356614265447, 34.440781404396084, 76.47575321912308, 19.599076887584413, 6.679368884475957, 39.15229479429403, 5.919732810082137, 20.75479401399617, 16.596833862936982, 139.37069031147186, 75.43610740219233, 50.79097899051777, 18.371793476360594, 54.26317903689303, 22.259668855107225, 5.285302499571243, 7.369300788664951, 18.772006232804827, 98.59627954895997, 82.42867305150159, 18.30737552395632, 101.44747816498722, 17.152635788638303, 51.44724978388447, 37.00162576838358, 45.4148094412717, 6.40957223258978, 5.490768874447015, 61.30538091638425, 33.25510215072063, 12.330621423712598, 14.815262319593437, 9.635380102789783, 54.11846958132243, 16.282681392471364, 37.23773220349821, 53.23522412408769, 95.23124007842935, 87.3936095785049, 46.13944586828533, 15.762320685805923, 67.81158129113072, 7.305348737919806, 58.510942054339935, 71.69929587683886, 88.70559701794583, 14.887923879270616, 76.08242503455425, 6.52718214975289, 22.0124757404373, 141.13038639724738, 16.173213366436755, 78.60134831472182, 50.226129114413716, 12.853006616756007, 7.819880953185651, 40.038336900478456, 79.00130264073081, 108.25082217856162, 36.11385771785224, 33.33305441717708, 19.19896570729437, 6.055867855672924, 12.196231929888791, 78.83988042467823, 5.2469076840618465, 98.37013272800509, 31.93273509514086, 6.743856923324073, 9.327696667473976, 8.462065810743674, 41.9796921733481, 11.691814786421075, 126.63337683666344, 51.9166833022434, 176.2093783572692, 53.662228027507446, 6.254284403957342, 21.39004664811386, 30.960894149492717, 24.007552200478507, 195.31213670818033, 12.286524374015224, 53.968649459794726, 8.228477129197111, 9.066969762498434, 48.979953886784145, 34.00340755031587, 249.33175182023672, 75.68405936556199, 176.81717908996995, 29.85483114431906, 70.62019435160548, 30.307432301801796, 106.69904336702439, 73.50959649406423, 25.410591196031227, 67.24517356279647, 7.143242470033197, 73.76545708650235, 67.63321665610177, 27.014205933073832, 27.617603280062482, 22.83235609629374, 86.11479442738788, 35.57354507090437, 26.91306417579631, 6.977563035093926, 148.24005986528965, 6.7419180673505315, 10.342475756675919, 6.9039276750199, 15.063801669209003, 97.4136671600345, 44.40322452478412, 16.55745970667536, 24.312462006834057, 12.403936207845787, 109.39931775712094, 12.410987974516372, 24.664381149911346, 15.990186958348799, 61.444531316136036, 131.37790638527295, 19.353957008145308, 70.563025237564, 49.032864837845246, 210.52636410613002, 11.506113661908515, 14.830608931257196, 91.18426831640141, 61.19335714244921, 133.57293923806031, 52.57912816433577, 36.865921717278844, 9.802549446426076, 16.020243269692173, 110.41377506731857, 123.11113626579606, 61.9777045050709, 77.44619860071366, 10.261967062476918, 17.54049411012883, 46.57644268227247, 52.64252905430204, 73.45883293968332, 84.42268224170266, 18.914385880516445, 202.89978482816014, 85.17015684867059, 107.66951787400063, 113.14462304637014, 36.33704466177446, 5.593376738744337, 44.34585848168835, 10.736745106915672, 19.87832803550856, 38.74953664748444, 105.80708862641367, 7.581600389499408, 32.60222886643519, 54.26854527179569, 38.72737560187478, 45.915654852837676, 187.51864415008927, 52.232337956683836, 71.99967574226193, 93.22481929880476, 189.01574947443189, 147.13789564217132, 18.6746680873049, 74.21699429297266, 25.617646275419364, 68.91515417612955, 60.80186822362445, 46.76354538556652, 118.04888176183235, 80.07406478563922, 12.42684141639403, 9.276258577845555, 27.705974524709173, 12.740559259910857, 9.712302204881647, 45.24051453952917, 33.531317830705795, 65.93035282442885, 24.89859769303402, 11.542419828499307, 50.53700603807348, 8.558678363389713, 40.206061378943794, 60.807449606056764, 33.96028143496155, 70.80553701057171, 83.55069237159763, 258.93698501404907, 21.92093339586205, 83.6953170446418, 12.512689451100556, 6.075390323874363, 73.55828770455264, 5.253495292000964, 168.24015496567176, 11.478607277827905, 9.28342801406721, 11.440958761566986, 36.734328407249635, 89.06853889838601, 119.66348531815916, 47.07846300083106, 64.6761238711517, 102.68623274177641, 44.58867842003441, 24.531285678504155, 6.121414902694448, 81.86197306787051, 27.283393541367456, 79.03418338532197, 138.7109237239051, 68.05039708524345, 8.495956168877644, 43.64821344756621, 38.38887273952415, 23.546829192716025, 8.107139874457966, 28.933188526200254, 32.29626091404513, 33.79723880540148, 20.60335872039863, 78.38457865282356, 46.661239508845924, 52.71762939014984, 48.651987686505485, 186.90926115507082, 5.415432980608624, 49.47833683507015, 24.18741952540828, 49.549138608159495, 72.64642738569445, 11.568748965693327, 15.334971471254892, 15.965070834322058, 18.286581239743654, 38.98392758614529, 63.50171036067258, 37.17601235404191, 72.56643642509806, 190.38337651225638, 9.119281865684343, 7.84329426968903, 68.57914657777017, 10.072460911021373, 50.41970831400562, 13.781448679790547, 6.327196843614928, 9.337721412649774, 6.241920458103678, 45.95712258543128, 11.293759575668416, 93.12811284214236, 6.481131799978676, 93.22360411081938, 8.630812489982828, 26.190296802495013, 25.834458781344424, 44.07408459852746, 61.97301636315376, 33.64481403509838, 17.878435776688722, 92.03645102833747, 22.098010994694306, 33.71691353433668, 95.97703157439841, 29.171924596884892, 42.82790489462434, 24.580945834044204, 21.029019436974362, 6.010730513839783, 100.1027830935395, 14.242044625986717, 154.57790097106334, 99.82187980714909, 100.93835432332476, 40.62907667968366, 40.6552113846607, 19.10005838701258, 8.947790566404057, 83.41010394399379, 46.20380162849693, 24.991678537169594, 148.64690960712073, 78.88837742173045, 31.233835762345528, 77.81898334108422, 17.36009417438566, 24.598869976620247, 9.300382748233762, 6.147362813013028, 43.23481872580006, 179.352968191235, 94.38501594181068, 10.98944174921712, 28.851196167011587, 25.251245896666205, 10.695002618823622, 16.25780366816102, 32.994229325302314, 19.533470985439948, 58.90609377519597, 14.90845920734127, 35.2046057318592, 58.68134059508624, 54.879251138123394, 53.98674544953545, 112.19336122361378, 193.40606801397803, 23.58112696725782, 11.620670582091348, 73.33814402532516, 25.786772920597908, 16.801349806550416, 126.0785599174519, 26.051606548730405, 7.655069077128736, 9.413552445970074, 15.606788466477228, 21.12326727367053, 16.217175213528552, 13.80287414194651, 61.03472338207453, 9.800672701770985, 5.322527884885544, 106.57574461834139, 28.683628476815624, 84.63829471271964, 18.800874877696028, 33.79901612238621, 32.29165348128762, 21.724942266081378, 158.81605808014854, 203.94468781813313, 31.11821735885533, 45.809483086649514, 28.963466309356345, 16.50013340161417, 23.426158801415458, 10.148550385515113, 14.095091611711513, 19.455020544908596, 150.51450159548457, 32.86588361554746, 34.27289134140118, 17.91442392790111, 5.612747133695496, 13.07727646291256, 63.09512362730497, 27.88507995555765, 84.20344827121349, 20.142003660276263, 79.02567445073934, 61.44481822129797, 13.376420008747525, 120.4910341401945, 22.441572590692026, 7.210017749274551, 9.323600584442772, 35.35610923571564, 105.30261309044236, 69.26876767463928, 12.949995487532522, 21.258158465472718, 20.22847681758088, 27.83874545561593, 28.138273959324845, 10.906606254909228, 9.809656418335763, 8.111928923269673, 197.45072791523577, 81.03304030516193, 32.724255396347246, 19.913762715655405, 12.581534533722342, 42.56772336030033, 42.71395895402735, 89.76551841480365, 20.36995454672401, 183.1539590559784, 17.38343892502978, 23.23158889770669, 20.08911180289882, 19.235406309280737, 49.674789729873126, 37.86354392397903, 88.56406674600171, 97.11473413714157, 9.89009444878668, 119.33591846205152, 135.79560794288744, 25.021491352422885, 41.86023916726186, 122.75411510331396, 16.239733629569074, 8.879840282427164, 37.554643624324, 30.825127194724637, 17.46349878552136, 40.62154793708232, 53.39025247811344, 185.77348997980528, 35.668139592200504, 19.958173843766943, 14.540443448417363, 22.893890760948462, 63.441069789440704, 19.69514994235579, 54.92872384700016, 80.95291365303217, 73.29072985544242, 16.9356988787433, 64.34325111437767, 65.13606648034576, 26.698354665953822, 86.34404917543043, 22.28211979581295, 111.74344724003015, 48.16958525861443, 72.6085176818484, 113.83546314158774, 24.132591845065573, 26.323129262773865, 75.1303868341708, 6.37336082920586, 51.13211739953673, 55.05906015273486, 18.812278742459085, 150.6681107737994, 32.53648127084351, 127.90750925346549, 22.063635780377876, 125.30244780310268, 12.661685831915841, 221.170627045479, 30.0064012824651, 7.758313853382243, 14.121226032121772, 12.883517578039589, 108.2447895231608, 195.84611936171945, 80.49780027687663, 371.01279472078136, 16.724027814979824, 21.828864548839267, 19.642620211784717, 158.99783641277702, 20.836492994266404, 9.982738914970932, 156.03406985871973, 6.319192905254735, 38.66041313922077, 62.41871241733701, 21.30012464784749, 41.79023017399251, 7.525712906748462, 6.894762762841873, 24.20190858276473, 69.15894050423253, 139.91921205038358, 119.83553171228962, 110.10943741853403, 51.828686663948616, 11.569371655332866, 34.73007191460723, 79.10641832376734, 62.29660696141035, 39.940937305235586, 8.51274815352558, 43.561125089127415, 11.842069432289952, 17.101277876425748, 18.52559562372028, 26.587726186940387, 15.021003672085575, 92.00536038313714, 5.562004308559398, 7.44372166310509, 112.40637865519935, 175.83927156178862, 22.143904948562344, 9.48205960644767, 6.680702381895966, 5.249439372657862, 13.448262464751744, 147.67715744826376, 45.85104727040197, 27.710730362458385, 25.243877181013012, 51.4871665308162, 161.17843608904565, 66.72223644409267, 46.6062307805092, 39.91461423485822, 17.86671656679929, 125.43438194203873, 61.01807016528556, 53.37690425963808, 21.68462716927545, 32.19158107064908, 117.72383819659613, 5.912442241590225, 29.019700845577177, 22.081471486360105, 8.410418529297404, 7.541983758497634, 115.33275970697622, 61.99869766939942, 18.55954177689666, 5.437874773557044, 136.81122295056883, 98.0932618076877, 72.11114557652829, 81.88708277071827, 66.08927161073944, 7.3648555555277575, 14.513692322380894, 5.044237774872398, 32.04909589184472, 35.51535308816941, 119.07458038119545, 14.943249915270972, 11.131534382806539, 21.16474115128819, 22.094739674106123, 26.93559004881734, 111.14525392736024, 90.83898495435287, 97.15730578298555, 89.49215968602637, 42.29526414400475, 14.046347920190417, 30.395661679775863, 14.891478334516302, 35.177071879490725, 14.716136874455485, 43.033583889362994, 120.13714946479692, 70.14667318726407, 6.459411285328481, 103.3047646644943, 22.635960951819154, 29.197154227953188, 34.159596288184495, 57.05105244970116, 47.48779973597752, 178.37277069082026, 36.92441873365257, 79.47530414309493, 10.316690270473304, 21.88903122596802, 173.9574032520688, 61.7695819524132, 94.73528081441664, 21.035958729439667, 29.538314441199947, 10.712100477121458, 28.20177100476855, 65.04331807554706, 59.896559954871975, 56.41807888477321, 28.403694382998708, 15.279017717708157, 15.82568149286825, 61.14843846287121, 67.32012210604417, 10.244468839604448, 25.50197050064516, 131.33518595518927, 99.19438039574436, 167.99098653536038, 65.68985660501846, 39.747628563689915, 8.677568443861903, 17.044247987213172, 48.09496981358713, 12.507484664026588, 34.10935770158813, 36.20119833041962, 80.51701645514476, 57.65732008322788, 5.041869561438399, 12.563124380408324, 68.47290929774078, 26.787633426031064, 78.16309735462481, 53.413275394909824, 64.52680107019273, 21.4356805596428, 93.00610589360303, 16.24295609194988, 21.34383723329863, 54.701468413210186, 58.25552715969537, 18.85832577540217, 19.8116786161631, 5.232993783209106, 54.2803082961194, 9.431359760740994, 70.09481687235079, 89.10087572064268, 7.734577701217497, 15.346387574606567, 7.965165142213358, 17.176570827886156, 37.44225009301375, 19.6983708752018, 84.52076637873138, 182.12950701100488, 239.83972501847302, 5.797817616956939, 18.739131279366394, 25.718035058374944, 59.99219502649955, 77.68293393278307, 87.79714779999074, 30.974720043790107, 72.33001678640365, 5.492074703372331, 48.85326621276237, 40.457027363207644, 227.17084638701215, 40.70088346681467, 163.08961412006076, 131.75433505512746, 57.86285536414641, 17.4984176705474, 23.463893642080375, 34.98679120908491, 40.916033361597655, 23.22715512522717, 16.486536145938306, 13.71325334446684, 137.45676242884542, 27.610498092795247, 119.99304389265602, 13.644857578113863, 79.74799839193766, 14.865718161679451, 30.047420597048852, 32.860740702563994, 5.112528338772596, 56.56735838054847, 15.177693261488148, 11.913391135108844, 21.836752281555576, 43.36805428287096, 37.83835882724132, 23.623777288161, 8.683291842649822, 30.033341518547807, 92.35247025968016, 34.18690692043744, 74.55993401623405, 47.77470385964794, 23.736450819802535, 66.9375961121388, 98.59014750721852, 18.777594636891894, 29.907746919304017, 115.11196646676265, 54.29349224369576, 81.80047775901397, 45.6249450907699, 111.42104689303126, 108.45775051558874, 255.57106282732974, 101.18446872110498, 11.880359874007283, 7.330514112449429, 17.10654247481145, 40.044231784974066, 6.004833347999465, 47.909047527383485, 16.905849229958314, 52.34597932164022, 13.230336841835964, 56.959715218536104, 33.736610908119594, 68.20208154815872, 100.73187396483306, 35.55317013928392, 49.34378937953966, 5.135155310858975, 51.935828657272424, 15.280007557132702, 61.12248835906608, 116.07226334318597, 40.476769630588336, 60.14315661006926, 22.65151269860679, 8.508853862979889, 33.362834197240275, 40.52678810407104, 44.6513109238624, 17.871733108065836, 5.486138748919464, 6.034765962016658, 11.643009555429364, 79.58981148965978, 29.080383759785377, 14.611919028445103, 38.345045407654595, 144.36268400008416, 45.2775555222292, ...])
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);
([7165317.1875, 7387784.306245509, 7406898.603955833, 7429948.256621075, 7517235.9375, 7553323.411271967, 7553990.267770447, 7555896.5026141275, 7565766.866826244, 7568196.230069901, 7587131.25, 7588708.822790053, 7589250.0, 7626045.973637499, 7626122.053874397, 7627095.949281455, 7628426.5625, 7631044.649452287, 7643289.975156032, 7643306.25, 7646037.4389867, 7658278.125, 7664632.2067187745, 7728727.4520382965, 7735496.875, 7736559.375, 7742438.672098936, 7756208.261653651, 7757425.0, 7757550.744719788, 7759195.806940598, 7762621.875, 7779305.249187496, 7806499.427911873, 7811093.75, 7811577.922963499, 7870128.1884552045, 7871144.997996573, 7872171.411365277, 7886262.377340618, 7887966.844628187, 7912765.550360077, 7924218.019438297, 7925946.119464225, 7926210.913397174, 7988123.418061297, 8007215.657973374, 8131037.492359335, 8132007.126383424, 8132358.735329682, 8154633.122146829, 8175614.117480005, 8185240.595622063, 8236728.125, 8276043.75, 8278898.197590865, 8291200.819035424, 8295408.687394956, 8299873.349044886, 8302171.875, 8307044.258026976, 8307052.206783794, 8310090.4326624265, 8322764.0625, 8324937.8306203205, 8358139.0625, 8375417.1875, 8382887.528868472, 8383404.391651574, 8384310.587494408, 8388745.74045234, 8391294.533760268, 8392294.532756398, 8392939.233374031, 8393771.045810303, 8404696.1888469, 8414670.161973134, 8414678.27193106, 8414773.82576881, 8415552.961197961, 8417525.0, 8417812.5, 8419483.810823608, 8420776.202352475, 8421730.592749625, 8422232.8125, 8425227.63278898, 8436487.5, 8457383.081265345, 8460364.0625, 8463845.62132588, 8472901.5625, 8511021.875, 8511412.496969724, 8536542.1875, 8540249.211677553, 8543165.360245654, 8543270.565445047, 8543448.112098152, 8543654.6875, 8544325.0, 8544643.75, 8545070.3125, 8545398.896675253, 8546156.617667852, 8546667.186146839, 8546839.14313474, 8547024.405444626, 8547025.103505954, 8547165.602957558, 8547188.48528082, 8547390.625, 8551495.160809062, 8552045.3125, 8556527.524684122, 8561786.959641296, 8564625.933092365, 8566121.789775545, 8566592.441024367, 8566725.699487675, 8568018.426040709, 8568817.205472186, 8569591.47584133, 8569673.818432076, 8570152.49560399, 8570792.1875, 8571683.436796343, 8571761.999259446, 8572087.826072533, 8572224.576237917, 8572229.55128084, 8572238.314996194, 8572245.250737017, 8572292.1875, 8572456.147955878, 8572523.420518653, 8573665.625, 8573767.401939556, 8574262.788023585, 8574317.604260609, 8574775.984637737, 8574800.15739906, 8575022.917164994, 8575312.442136878, 8576042.374732947, 8576540.1892269, 8576577.857985644, 8577013.574918557, 8577177.331848018, 8577289.0625, 8578160.379117718, 8578743.75, 8586409.8182875, 8606720.3125, 8613868.609607585, 8614156.826270599, 8615557.8125, 8622426.031273324, 8622526.5625, 8631497.760869546, 8635652.501410587, 8640522.112665055, 8641636.78393911, 8641888.815349985, 8642269.088784432, 8642980.717156857, 8643578.082319545, 8643658.665337458, 8645913.728734715, 8647822.605999202, 8648768.68244993, 8649437.371391937, 8651451.301334465, 8652204.060546268, 8652478.68205336, 8652698.48280583, 8653226.5625, 8654493.574790198, 8654667.043171471, 8663490.625, 8688934.145643147, 8690240.44244042, 8691922.055427227, 8692035.9375, 8692082.950094419, 8692745.643282576, 8693235.872724354, 8694810.595490918, 8694920.221098881, 8694940.964636967, 8695916.10089371, 8696600.0, 8697265.625, 8697841.888663627, 8700924.760058343, 8705491.799750935, 8709036.774936946, 8722630.33605003, 8724129.6875, 8729617.1875, 8747676.5625, 8748598.294185152, 8748814.490344936, 8749206.25, 8750077.444615144, 8750382.623125756, 8750415.225048201, 8750928.57014224, 8751934.763515422, 8751951.61819417, 8752358.345135177, 8753741.218106639, 8753826.331232373, 8753850.933015201, 8754204.383027805, 8754459.233701969, 8754473.363357125, 8754487.566929398, 8754543.75, 8754613.618513066, 8754748.4375, 8755064.0625, 8755456.25, 8755790.625, 8755839.025036577, 8755879.6875, 8755984.764328664, 8756428.125, 8756775.0, 8756887.5, 8756969.953722754, 8757116.65925369, 8757124.988280587, 8757367.1875, 8757367.82113811, 8757470.332270594, 8757618.75, 8757655.312256312, 8757690.551773004, 8757735.9375, 8757912.092059994, 8758032.760135034, 8758038.964601887, 8758040.831321072, 8758056.789140645, 8758117.927417105, 8758163.297260318, 8758280.695556335, 8758535.9375, 8758619.987998998, 8758999.597227179, 8759006.314806322, 8759087.5, 8759210.967808185, 8759300.100243544, 8759360.925294949, 8759376.5625, 8759805.20540029, 8760016.248962458, 8760379.6875, 8760393.14257525, 8761321.025262065, 8761387.071160216, 8766221.005327055, 8767954.394865604, 8767965.625, 8768051.624480382, 8769023.660182819, 8769529.15195141, 8769579.6875, 8769831.130472926, 8769864.811311765, 8770109.211187044, 8770239.159801716, 8770353.125, 8770599.421884377, 8770628.125, 8770912.380413393, 8771376.522626098, 8771499.549699092, 8771600.0, 8771788.962439056, 8772905.901969794, 8773069.223851778, 8773119.242951663, 8773190.787877308, 8773668.119160688, 8774086.428033084, 8774457.429633595, 8774463.882054294, 8774820.3125, 8775678.18738506, 8775923.000923539, 8776026.5625, 8777237.271293456, 8778310.361721689, 8778339.43815833, 8778420.567678904, 8779087.80855921, 8782480.618417522, 8783102.364009757, 8787945.3125, 8787960.511058265, 8788027.936584491, 8789813.365809558, 8791498.351627823, 8791532.8125, 8791858.682232598, 8792733.482825784, 8793243.924395192, 8793609.855030509, 8793663.553004045, 8794187.5, 8795607.497286797, 8796838.549498199, 8797138.158736218, 8800279.6875, 8804608.473484736, 8808924.09128557, 8808960.600592503, 8809045.651376616, 8809690.625, 8810242.499868652, 8810507.460030803, 8811020.3125, 8815113.847867388, 8816247.172023702, 8816250.0, 8828386.137379285, 8834083.671276381, 8835933.468743859, 8835962.222592581, 8836971.559167245, 8837751.5625, 8839223.423369808, 8839313.082534105, 8839603.376069043, 8840355.800535116, 8840553.53604128, 8840815.63746859, 8840912.414192088, 8840923.4375, 8841163.380186604, 8841170.87423498, 8842520.304622306, 8842787.5, 8843501.57367793, 8844737.5, 8849656.097372076, 8849707.906663653, 8853499.684247022, 8853708.403174417, 8854724.784519171, 8855401.625347774, 8856232.8125, 8857776.5625, 8858249.900772382, 8859835.933113232, 8863425.317735761, 8865440.625, 8866065.958220478, 8866331.016006384, 8866693.330944635, 8867034.930026118, 8867210.9375, 8867529.584598055, 8869022.92710694, 8869742.976924432, 8870986.073373048, 8871339.0625, 8872292.820812183, 8873841.799652576, 8887810.825991606, 8890146.544785645, 8925610.522626517, 8926609.375, 8928792.85711861, 8943696.277218472, 8945111.858066546, 8945985.9375, 8947456.25, 8948398.949474998, 8948614.0625, 8949904.6875, 8950573.776036417, 8951531.792648368, 8951664.144752353, 8969087.212661225, 8987851.5625, 8989811.937948182, 8993518.702442303, 8993568.374533, 8996491.831680786, 8996511.500719672, 8997352.226734787, 9022104.11030309, 9022885.911865255, 9028496.765893595, 9041318.181954667, 9045313.164896224, 9057000.031719038, 9057232.707023395, 9062721.301625699, 9069914.430404298, 9069914.707429465, 9073210.062328786, 9073867.1875, 9073875.69052302, 9074123.205810819, 9076225.250374785, 9077335.9375, 9077510.9375, 9078457.153468605, 9079258.957482837, 9079520.3125, 9079638.911941547, 9079906.479315685, 9079948.587231126, 9080296.875, 9080342.1875, 9080466.021183185, 9080478.125, 9081832.407805393, 9082214.571675593, 9082389.319388276, 9082785.69998166, 9083494.339786408, 9083609.249763444, 9083653.189980246, 9083655.615204621, 9083681.79765984, 9083896.875, 9084303.125, 9084384.375, 9084603.211297948, 9084752.552671596, 9085561.374408599, 9085710.649908733, 9086127.970848309, 9086586.916215489, 9086801.5625, 9086952.745276535, 9087004.6875, 9087082.547096131, 9087120.46761158, 9087124.778425667, 9087676.5625, 9087721.8147772, 9088125.0, 9088170.3125, 9088308.580516431, 9088390.227409037, 9088698.4375, 9088820.3125, 9088996.875, 9091212.222592859, 9092353.79645726, 9092426.5625, 9093227.286928603, 9094057.170579895, 9094184.208331868, 9094616.886807961, 9094719.71765815, 9095368.74180337, 9097669.661080103, 9101554.75925318, 9101566.322683817, 9101999.934055042, 9102056.207235072, 9102168.828570547, 9102541.043554293, 9102760.9375, 9102804.6875, 9103196.875, 9103298.2223451, 9103904.484362297, 9104010.9375, 9104072.356387606, 9104075.0, 9104582.8125, 9104884.34614626, 9104938.607852858, 9105482.8125, 9105995.232649438, 9106032.774203116, 9106145.3125, 9106449.140539594, 9106515.501895627, 9106521.566283302, 9106637.795626383, 9106667.866301151, 9106689.275965687, 9107007.755211795, 9107134.566572536, 9107267.849395314, 9107678.125, 9107709.375, 9107721.395721152, 9107775.032785675, 9107915.625, 9107932.8125, 9108001.219244454, 9108020.626890901, 9108123.19644006, 9108196.80898282, 9108257.8125, 9108257.8125, 9108344.693921743, 9108473.81350822, 9108756.25, 9108842.854478378, 9108988.978181394, 9109251.207034186, 9109428.763661625, 9109438.217283048, 9109648.576674538, 9109857.218429143, 9110146.875, 9110736.078120979, 9111210.874683075, 9111498.4375, 9111540.625, 9111626.999142088, 9111667.1875, 9112217.725420801, 9112636.78590818, 9112884.210995883, 9113386.864209564, 9113915.724536467, 9114078.369906055, 9114080.35467754, 9114403.125, 9114517.915251601, 9117332.8125, 9117429.392947044, 9117454.6875, 9118152.863008177, 9118386.5557878, 9119118.75, 9120202.325688267, 9120577.619447917, 9121134.03326296, 9121167.64807452, 9121359.382462844, 9121371.67227189, 9121932.8125, 9121962.603699872, 9122277.654659176, 9122318.711877791, 9122353.125, 9122522.473774198, 9122585.656653207, 9122646.421318375, 9122982.8125, 9122993.75, 9123093.75, 9123309.241654618, 9123381.25, 9123567.164020382, 9123679.6875, 9123967.003764175, 9124173.147446902, 9124340.209781317, 9124360.699828366, 9124497.889684716, 9124667.971628623, 9124671.875, 9124874.803528897, 9125617.168784529, 9125631.25, 9125662.215858938, 9125672.751575744, 9125854.6875, 9126102.346224975, 9126138.571078684, 9126473.4375, 9126475.0, 9126599.791311929, 9126634.64377268, 9126828.125, 9126906.511258934, 9127228.125, 9127277.079205276, 9127399.763617713, 9127404.650584338, 9127553.676241105, 9127558.815905971, 9127563.369648127, 9127591.547042012, 9127715.53470397, 9127773.4375, 9127886.42552487, 9127996.579330973, 9128034.682214214, 9128331.793815507, 9128332.102652317, 9128350.0, 9128519.101560265, 9128523.4375, 9128555.889589151, 9128825.0, 9128917.1875, 9128928.125, 9129394.92819413, 9129471.56160445, 9129679.981539404, 9129685.642428722, 9129732.656764172, 9129772.04216612, 9129891.409848677, 9130172.596058939, 9130193.891068004, 9130225.095582131, 9130390.238164967, 9130669.774609216, 9130819.048749952, 9131077.790333757, 9131254.16926818, 9131267.694821546, 9131290.047897251, 9131379.081525344, 9131434.375, 9131562.5, 9131588.242384808, 9131665.620430754, 9132051.613586335, 9132127.552846232, 9132130.665646497, 9132197.897509271, 9132342.994606057, 9132346.875, 9132610.9375, 9132617.544025166, 9134959.049157532, 9134988.330532962, 9135877.883671423, 9136594.580650285, 9141502.654646378, 9149473.032079382, 9149485.655874774, 9151670.921702467, 9152156.226531666, 9154808.781582091, 9155469.65601104, 9155582.328046223, 9157114.0625, 9158393.10298119, 9158427.92226722, 9161651.5625, 9162946.393290464, 9164443.616604885, 9164713.949829854, 9165040.951536328, 9165745.303257804, 9165796.365914488, 9165804.282391671, 9165835.275350016, 9166605.606698874, 9166992.81486964, 9167032.175639486, 9167068.345252628, 9167078.10516773, 9167179.541286565, 9167198.953685084, 9167327.77946015, 9167367.035438266, 9167426.5625, 9167513.490074296, 9167534.485686554, 9167605.453611419, 9167653.903347274, 9167719.37683352, 9167727.433122924, 9167728.824499244, 9167738.426518267, 9167744.270759188, 9167902.907241583, 9167929.3457217, 9167944.918461107, 9167959.375, 9168044.237724263, 9168127.824132238, 9168209.375, 9168230.281769238, 9168338.513084661, 9168350.0, 9168423.23087088, 9168426.5625, 9168456.25, 9168461.240956755, 9168479.100380618, 9168567.1875, 9168616.483756451, 9168634.909552393, 9168727.889310736, 9168835.830435533, 9168855.92473909, 9168856.25, 9169066.518512417, 9169073.326542506, 9169107.024116514, 9169159.847348098, 9169224.700933699, 9169226.5625, 9169319.229384901, 9169353.125, 9169435.738915699, 9169437.031798886, 9169471.398711307, 9169572.10611315, 9169575.0, 9169613.638117889, 9169657.463585187, 9169678.125, 9169728.010336487, 9169796.875, 9170054.5589972, 9170057.690321669, 9170060.9375, 9170069.54648029, 9170076.5625, 9170114.0625, 9170191.368991882, 9170235.881947296, 9170243.75, 9170365.358874949, 9170470.489911748, 9170515.625, 9170550.80056576, 9170552.607841376, 9170569.265170451, 9170595.721831962, 9170640.39174747, 9170652.455054618, 9170668.573851792, 9170712.092568396, 9170826.5625, 9170835.094186064, 9170864.462870078, 9171015.15801271, 9171164.917071499, 9171197.783311795, 9171260.369058913, 9171497.556445828, 9171566.217090778, 9171917.588243956, 9171998.167864468, 9172086.454663854, 9172175.014699599, 9172185.313378528, 9172227.905445235, 9172352.18622662, 9173012.596255964, 9173095.217402551, 9173162.5, 9173243.75, 9173538.686314011, 9173626.841625592, 9173748.702809414, 9173857.8125, 9173873.4375, 9174242.1875, 9174340.43095488, 9174362.904530654, 9175887.5, 9177181.663528955, 9178853.595767304, 9179164.765307683, 9179399.386718765, 9179756.270701077, 9179792.257223018, 9180259.95689472, 9180794.848820925, 9181447.26412645, 9181892.1875, 9182852.65260334, 9183615.797957677, 9183771.445587233, 9183925.152704487, 9184102.669026112, 9184373.4375, 9184381.25, 9184451.519991975, 9185139.358170625, 9185285.9375, 9185474.267487017, 9185693.75, 9186169.249861391, 9186223.4375, 9186359.976539942, 9186961.128701352, 9186985.9375, 9187515.625, 9187547.956487702, 9187713.78363196, 9188208.868908204, 9188234.060086412, 9188324.558135765, 9188549.557025794, 9188973.66456681, 9190681.077405766, 9193459.205676258, 9193696.875, 9194555.730076075, 9195015.056282625, 9195702.790309096, 9195781.25, 9195831.154917337, 9195837.5, 9196171.580456272, 9196411.78902911, 9196437.383038891, 9196517.34674618, 9196595.3125, 9196812.5, 9196827.417421503, 9196829.687956564, 9197282.814947387, 9197359.944572486, 9197430.945349297, 9197574.914192768, 9197618.522385253, 9197657.8125, 9197706.299560128, 9197739.0625, 9197931.25, 9197975.642511524, 9198003.858135128, 9198015.61181154, 9198205.683909878, 9198239.002087018, 9198559.375, 9198774.508633358, 9198804.6875, 9198843.571121087, 9198898.4375, 9198922.011841565, 9199078.125, 9199099.681634912, 9199133.573156517, 9199408.167149419, 9199431.759696567, 9199465.625, 9199734.575653331, 9199804.098271456, 9200355.788794925, 9200485.750235766, 9200495.3125, 9200593.75, 9200594.76541926, 9200846.443053609, 9200970.0292756, 9201043.214539643, 9201350.0, 9201400.0, 9201407.096650437, 9201437.49383959, 9201439.148318095, 9201568.96412117, 9201902.772971755, 9202009.51602042, 9202033.725456117, 9202227.950754002, 9202326.5625, 9202420.097172882, 9202445.676776497, 9202542.321210839, 9202706.25, 9202724.11027815, 9202750.460393336, 9202867.1875, 9202927.296179162, 9202976.5625, 9202988.83672807, 9203201.5625, 9203204.6875, 9203271.894314304, 9203477.3206027, 9203604.6875, 9203658.940919029, 9203709.357299069, 9203776.5625, 9203860.9375, 9204026.056724621, 9204109.375, 9204159.262963517, 9204193.234905772, 9204215.625, 9204299.85913692, 9204350.901367022, 9204605.563131656, 9204637.05994648, 9204709.375, 9204757.928394776, 9204815.625, 9205067.982642977, 9205167.536600629, 9205175.102318265, 9205407.150870737, 9205407.76144915, 9205576.18293571, 9205632.111567767, 9205675.0, 9205724.1698705, 9205809.150521878, 9205956.029144756, 9205956.98363949, 9205965.464841835, 9205991.69686324, 9206068.75, 9206309.623164115, 9206410.23187887, 9206435.9375, 9206502.250117963, 9206502.73058083, 9206642.174546279, 9206669.374740738, 9206687.5, 9206736.697775392, 9206753.396542177, 9206905.645396305, 9206914.60301588, 9206984.98503868, 9207041.968100913, 9207062.469688237, 9207133.969556054, 9207162.853810389, 9207199.635542145, 9207303.838259647, 9207369.75409481, 9207398.4375, 9207505.86242017, 9207559.375, 9207645.292472143, 9207690.625, 9207722.72145114, 9207750.70201856, 9207765.574693862, 9207778.185615644, 9207787.92501723, 9207814.169736652, 9207825.0, 9207827.139597075, 9207845.002494989, 9207930.369227612, 9207962.5, 9207997.569496425, 9208020.3125, 9208024.755781654, 9208067.294434316, 9208071.573880399, 9208140.389384096, 9208170.3125, 9208175.739096195, 9208268.734934209, 9208306.25, 9208308.596683308, 9208465.912317762, 9208479.6875, 9208549.062818093, 9208560.9375, 9208620.872796552, 9208624.037795218, 9208642.620983033, 9208711.677277025, 9208750.471720284, 9208790.625, 9208842.909339055, 9209023.028268987, 9209061.154060034, 9209076.982138205, 9209380.71467782, 9209445.681925248, 9209759.223747369, 9210045.3125, 9210645.3125, 9214824.25042323, 9215098.4375, 9215531.466453562, 9217109.642519703, 9217757.350539293, 9218737.243234191, 9219647.185118487, 9219818.75, 9220376.5625, 9222846.483780561, 9223142.585436359, 9223360.187830377, 9223761.649335101, 9223785.9375, 9224053.727348214, 9224438.055800445, 9224513.533531735, 9224561.24392427, 9224806.25, 9224985.113486521, 9225013.97325449, 9225379.6875, 9225509.375, 9225729.6875, ...], [49.79256857428027, 64.73409917473398, 15.616332370192143, 14.294166595675424, 30.629095618133473, 31.119804428051445, 10.611754843196588, 74.20340374696939, 6.701131793588933, 28.07687536698537, 80.36138286231227, 90.10760023502331, 50.120625294817536, 18.246859345743164, 23.445869368545093, 20.02761109083616, 128.6897774935403, 12.900628754897658, 20.50925251385827, 67.07262731335628, 27.37303730896171, 47.0451431757959, 55.21827431391189, 8.820569625471022, 80.53722578654471, 42.11694751562569, 22.660820777927132, 6.856616551598293, 78.16760885612078, 5.113401079988206, 7.257787557294401, 36.61141913975244, 17.62390177079159, 39.75256898620667, 35.05078569029069, 31.046123137115192, 129.23952414960218, 62.377962502549984, 24.634087177986466, 26.315251076393466, 8.113218264555266, 55.844329561744146, 19.465004426757798, 94.38218229127587, 124.7712254570975, 7.116351171548827, 11.179640432292514, 58.02031925052998, 112.90315414505872, 93.80689977091058, 16.269531681754625, 15.155291804656942, 14.83070442516394, 52.11237951559573, 38.409277604490875, 25.058347438428363, 10.13541730130903, 52.31226139442818, 19.174284428201457, 33.4625026531353, 27.244823557465118, 18.13720893932047, 25.2308232915272, 107.32816356569019, 16.371613408732756, 104.73229633322703, 46.727781544765286, 11.173131896474306, 25.57925148374053, 23.13233567115635, 11.869707790650615, 44.06839064363642, 10.094363861855623, 11.40572782159923, 70.4650830206486, 34.88804728031671, 14.397217708611368, 5.952304126334338, 7.227398326206365, 16.257597196162315, 36.42829602339007, 56.21215695177928, 28.23026125945865, 23.01168756755475, 20.055852868724568, 75.64844292963501, 109.4365244702721, 30.001594147772654, 9.569491643551254, 117.06789671695353, 38.54516447738906, 71.9385992313793, 43.37593679474888, 14.92997199649049, 56.13622107238376, 19.029868725691216, 6.711776946913835, 250.99976846224988, 6.4372634368475286, 28.729851748497794, 50.147779560553914, 29.071882779816807, 336.587602366883, 44.73957769780214, 70.66390235057662, 46.662371039033715, 38.634820355356005, 20.599014885647843, 41.199611018798954, 5.397632038637963, 20.755896696347314, 78.7538599967237, 25.850032104908998, 59.97798756882448, 5.50463779132433, 12.926443168778599, 33.3956577536146, 57.554729782081985, 16.004701278406294, 68.50669491674726, 32.52587689926092, 15.010456326220085, 107.09885673171267, 26.081473036003693, 20.29262441214794, 77.91514894369294, 79.2230145325643, 21.485716000630553, 28.184610826267466, 18.443907915582994, 54.74888881774267, 53.71714588427806, 8.254183866070955, 55.11455007628463, 43.05025376191701, 14.87717711350422, 71.54105381317045, 15.82710599260706, 21.149947695471106, 35.656470324030295, 28.53722064091389, 96.55282468761511, 48.6058381989261, 27.42983242544204, 5.827965020013188, 22.158652060034797, 127.36032218014111, 10.442481487092648, 82.60833484675663, 97.50582576360198, 20.92982648564917, 57.409600254869744, 9.736636309144682, 96.50250137840416, 26.028726082721104, 132.87990164845158, 47.945632755579915, 14.407737965973267, 93.24126402180067, 19.895218567864237, 20.342883713830396, 49.64489987269028, 236.39847893033414, 6.449033869031301, 6.310971714996536, 71.97290615830526, 9.295573308744665, 19.62886479886848, 111.03966040970118, 18.720593809502585, 35.60386410263987, 10.932463322458306, 9.119922544404952, 28.24505373357151, 12.126467244374439, 9.370007883243925, 156.78078324787273, 129.94443398954857, 10.909364927566017, 118.01741522661979, 18.9344388515943, 14.288522094662104, 37.632087817662246, 77.32968931583369, 8.360704976490743, 24.02690878666683, 18.921426335541252, 78.27460028779997, 6.745395208607935, 47.85026079560942, 15.524122917479072, 44.38062920759352, 55.786765493331266, 33.456711521011755, 232.5224013328644, 22.691049390823824, 30.00997423756425, 12.319298256388414, 35.99374802109091, 44.65674324895071, 131.32031567377405, 14.42201829839562, 11.876171596450376, 71.97205995809554, 7.3743923928575486, 34.97035391015013, 22.552777549198222, 103.88192046998418, 37.67505894062866, 11.215890745604414, 63.4661236166858, 6.887988655125074, 5.037668061372038, 80.91496344646909, 31.905908661387762, 26.014293786297493, 41.9025328369318, 7.139157208595304, 29.353202745066607, 38.09780778584492, 114.50800191081015, 38.7793954259213, 37.06134217561938, 98.89058298456331, 5.164490002471309, 36.15573206804186, 148.01273978207587, 94.42026232011627, 80.35541458210253, 62.05119047494067, 23.027897805026893, 24.26015903084006, 14.897027862465778, 34.41730121370102, 30.43577347221765, 11.158750773360962, 93.10823913134327, 79.34596055983704, 18.471715101240527, 45.11411427870705, 68.96830027830764, 42.73659260848399, 29.62376854052674, 78.1272748776497, 17.49034858263665, 89.84954860600212, 19.200723073660466, 20.966660355388818, 55.13596264875205, 58.71216345178994, 67.09176187118345, 273.3653849771394, 98.44132758755784, 27.82804219853304, 183.3662862763901, 14.895192649930769, 63.82997951473739, 5.359987061725079, 6.894815077157481, 49.94260224706635, 13.04115864273002, 51.84222183906654, 22.233599583034028, 9.995062596627493, 6.70645758078271, 35.661811001128456, 5.944821386678023, 108.65015160014288, 21.145665303200158, 29.770970915237385, 26.366650402407906, 17.042475384888508, 5.286053868056055, 96.06699665805581, 46.24980917077786, 29.79371011303909, 64.36377797018265, 14.504484599028274, 8.265603299386806, 8.97761639246239, 30.854780142422175, 68.3531384435532, 23.156016411176857, 23.485760133665934, 5.738865824583381, 11.392209988295225, 18.569337473814862, 9.783737191364304, 114.63356614265447, 34.440781404396084, 76.47575321912308, 19.599076887584413, 6.679368884475957, 39.15229479429403, 5.919732810082137, 20.75479401399617, 16.596833862936982, 139.37069031147186, 75.43610740219233, 50.79097899051777, 18.371793476360594, 54.26317903689303, 22.259668855107225, 5.285302499571243, 7.369300788664951, 18.772006232804827, 98.59627954895997, 82.42867305150159, 18.30737552395632, 101.44747816498722, 17.152635788638303, 51.44724978388447, 37.00162576838358, 45.4148094412717, 6.40957223258978, 5.490768874447015, 61.30538091638425, 33.25510215072063, 12.330621423712598, 14.815262319593437, 9.635380102789783, 54.11846958132243, 16.282681392471364, 37.23773220349821, 53.23522412408769, 95.23124007842935, 87.3936095785049, 46.13944586828533, 15.762320685805923, 67.81158129113072, 7.305348737919806, 58.510942054339935, 71.69929587683886, 88.70559701794583, 14.887923879270616, 76.08242503455425, 6.52718214975289, 22.0124757404373, 141.13038639724738, 16.173213366436755, 78.60134831472182, 50.226129114413716, 12.853006616756007, 7.819880953185651, 40.038336900478456, 79.00130264073081, 108.25082217856162, 36.11385771785224, 33.33305441717708, 19.19896570729437, 6.055867855672924, 12.196231929888791, 78.83988042467823, 5.2469076840618465, 98.37013272800509, 31.93273509514086, 6.743856923324073, 9.327696667473976, 8.462065810743674, 41.9796921733481, 11.691814786421075, 126.63337683666344, 51.9166833022434, 176.2093783572692, 53.662228027507446, 6.254284403957342, 21.39004664811386, 30.960894149492717, 24.007552200478507, 195.31213670818033, 12.286524374015224, 53.968649459794726, 8.228477129197111, 9.066969762498434, 48.979953886784145, 34.00340755031587, 249.33175182023672, 75.68405936556199, 176.81717908996995, 29.85483114431906, 70.62019435160548, 30.307432301801796, 106.69904336702439, 73.50959649406423, 25.410591196031227, 67.24517356279647, 7.143242470033197, 73.76545708650235, 67.63321665610177, 27.014205933073832, 27.617603280062482, 22.83235609629374, 86.11479442738788, 35.57354507090437, 26.91306417579631, 6.977563035093926, 148.24005986528965, 6.7419180673505315, 10.342475756675919, 6.9039276750199, 15.063801669209003, 97.4136671600345, 44.40322452478412, 16.55745970667536, 24.312462006834057, 12.403936207845787, 109.39931775712094, 12.410987974516372, 24.664381149911346, 15.990186958348799, 61.444531316136036, 131.37790638527295, 19.353957008145308, 70.563025237564, 49.032864837845246, 210.52636410613002, 11.506113661908515, 14.830608931257196, 91.18426831640141, 61.19335714244921, 133.57293923806031, 52.57912816433577, 36.865921717278844, 9.802549446426076, 16.020243269692173, 110.41377506731857, 123.11113626579606, 61.9777045050709, 77.44619860071366, 10.261967062476918, 17.54049411012883, 46.57644268227247, 52.64252905430204, 73.45883293968332, 84.42268224170266, 18.914385880516445, 202.89978482816014, 85.17015684867059, 107.66951787400063, 113.14462304637014, 36.33704466177446, 5.593376738744337, 44.34585848168835, 10.736745106915672, 19.87832803550856, 38.74953664748444, 105.80708862641367, 7.581600389499408, 32.60222886643519, 54.26854527179569, 38.72737560187478, 45.915654852837676, 187.51864415008927, 52.232337956683836, 71.99967574226193, 93.22481929880476, 189.01574947443189, 147.13789564217132, 18.6746680873049, 74.21699429297266, 25.617646275419364, 68.91515417612955, 60.80186822362445, 46.76354538556652, 118.04888176183235, 80.07406478563922, 12.42684141639403, 9.276258577845555, 27.705974524709173, 12.740559259910857, 9.712302204881647, 45.24051453952917, 33.531317830705795, 65.93035282442885, 24.89859769303402, 11.542419828499307, 50.53700603807348, 8.558678363389713, 40.206061378943794, 60.807449606056764, 33.96028143496155, 70.80553701057171, 83.55069237159763, 258.93698501404907, 21.92093339586205, 83.6953170446418, 12.512689451100556, 6.075390323874363, 73.55828770455264, 5.253495292000964, 168.24015496567176, 11.478607277827905, 9.28342801406721, 11.440958761566986, 36.734328407249635, 89.06853889838601, 119.66348531815916, 47.07846300083106, 64.6761238711517, 102.68623274177641, 44.58867842003441, 24.531285678504155, 6.121414902694448, 81.86197306787051, 27.283393541367456, 79.03418338532197, 138.7109237239051, 68.05039708524345, 8.495956168877644, 43.64821344756621, 38.38887273952415, 23.546829192716025, 8.107139874457966, 28.933188526200254, 32.29626091404513, 33.79723880540148, 20.60335872039863, 78.38457865282356, 46.661239508845924, 52.71762939014984, 48.651987686505485, 186.90926115507082, 5.415432980608624, 49.47833683507015, 24.18741952540828, 49.549138608159495, 72.64642738569445, 11.568748965693327, 15.334971471254892, 15.965070834322058, 18.286581239743654, 38.98392758614529, 63.50171036067258, 37.17601235404191, 72.56643642509806, 190.38337651225638, 9.119281865684343, 7.84329426968903, 68.57914657777017, 10.072460911021373, 50.41970831400562, 13.781448679790547, 6.327196843614928, 9.337721412649774, 6.241920458103678, 45.95712258543128, 11.293759575668416, 93.12811284214236, 6.481131799978676, 93.22360411081938, 8.630812489982828, 26.190296802495013, 25.834458781344424, 44.07408459852746, 61.97301636315376, 33.64481403509838, 17.878435776688722, 92.03645102833747, 22.098010994694306, 33.71691353433668, 95.97703157439841, 29.171924596884892, 42.82790489462434, 24.580945834044204, 21.029019436974362, 6.010730513839783, 100.1027830935395, 14.242044625986717, 154.57790097106334, 99.82187980714909, 100.93835432332476, 40.62907667968366, 40.6552113846607, 19.10005838701258, 8.947790566404057, 83.41010394399379, 46.20380162849693, 24.991678537169594, 148.64690960712073, 78.88837742173045, 31.233835762345528, 77.81898334108422, 17.36009417438566, 24.598869976620247, 9.300382748233762, 6.147362813013028, 43.23481872580006, 179.352968191235, 94.38501594181068, 10.98944174921712, 28.851196167011587, 25.251245896666205, 10.695002618823622, 16.25780366816102, 32.994229325302314, 19.533470985439948, 58.90609377519597, 14.90845920734127, 35.2046057318592, 58.68134059508624, 54.879251138123394, 53.98674544953545, 112.19336122361378, 193.40606801397803, 23.58112696725782, 11.620670582091348, 73.33814402532516, 25.786772920597908, 16.801349806550416, 126.0785599174519, 26.051606548730405, 7.655069077128736, 9.413552445970074, 15.606788466477228, 21.12326727367053, 16.217175213528552, 13.80287414194651, 61.03472338207453, 9.800672701770985, 5.322527884885544, 106.57574461834139, 28.683628476815624, 84.63829471271964, 18.800874877696028, 33.79901612238621, 32.29165348128762, 21.724942266081378, 158.81605808014854, 203.94468781813313, 31.11821735885533, 45.809483086649514, 28.963466309356345, 16.50013340161417, 23.426158801415458, 10.148550385515113, 14.095091611711513, 19.455020544908596, 150.51450159548457, 32.86588361554746, 34.27289134140118, 17.91442392790111, 5.612747133695496, 13.07727646291256, 63.09512362730497, 27.88507995555765, 84.20344827121349, 20.142003660276263, 79.02567445073934, 61.44481822129797, 13.376420008747525, 120.4910341401945, 22.441572590692026, 7.210017749274551, 9.323600584442772, 35.35610923571564, 105.30261309044236, 69.26876767463928, 12.949995487532522, 21.258158465472718, 20.22847681758088, 27.83874545561593, 28.138273959324845, 10.906606254909228, 9.809656418335763, 8.111928923269673, 197.45072791523577, 81.03304030516193, 32.724255396347246, 19.913762715655405, 12.581534533722342, 42.56772336030033, 42.71395895402735, 89.76551841480365, 20.36995454672401, 183.1539590559784, 17.38343892502978, 23.23158889770669, 20.08911180289882, 19.235406309280737, 49.674789729873126, 37.86354392397903, 88.56406674600171, 97.11473413714157, 9.89009444878668, 119.33591846205152, 135.79560794288744, 25.021491352422885, 41.86023916726186, 122.75411510331396, 16.239733629569074, 8.879840282427164, 37.554643624324, 30.825127194724637, 17.46349878552136, 40.62154793708232, 53.39025247811344, 185.77348997980528, 35.668139592200504, 19.958173843766943, 14.540443448417363, 22.893890760948462, 63.441069789440704, 19.69514994235579, 54.92872384700016, 80.95291365303217, 73.29072985544242, 16.9356988787433, 64.34325111437767, 65.13606648034576, 26.698354665953822, 86.34404917543043, 22.28211979581295, 111.74344724003015, 48.16958525861443, 72.6085176818484, 113.83546314158774, 24.132591845065573, 26.323129262773865, 75.1303868341708, 6.37336082920586, 51.13211739953673, 55.05906015273486, 18.812278742459085, 150.6681107737994, 32.53648127084351, 127.90750925346549, 22.063635780377876, 125.30244780310268, 12.661685831915841, 221.170627045479, 30.0064012824651, 7.758313853382243, 14.121226032121772, 12.883517578039589, 108.2447895231608, 195.84611936171945, 80.49780027687663, 371.01279472078136, 16.724027814979824, 21.828864548839267, 19.642620211784717, 158.99783641277702, 20.836492994266404, 9.982738914970932, 156.03406985871973, 6.319192905254735, 38.66041313922077, 62.41871241733701, 21.30012464784749, 41.79023017399251, 7.525712906748462, 6.894762762841873, 24.20190858276473, 69.15894050423253, 139.91921205038358, 119.83553171228962, 110.10943741853403, 51.828686663948616, 11.569371655332866, 34.73007191460723, 79.10641832376734, 62.29660696141035, 39.940937305235586, 8.51274815352558, 43.561125089127415, 11.842069432289952, 17.101277876425748, 18.52559562372028, 26.587726186940387, 15.021003672085575, 92.00536038313714, 5.562004308559398, 7.44372166310509, 112.40637865519935, 175.83927156178862, 22.143904948562344, 9.48205960644767, 6.680702381895966, 5.249439372657862, 13.448262464751744, 147.67715744826376, 45.85104727040197, 27.710730362458385, 25.243877181013012, 51.4871665308162, 161.17843608904565, 66.72223644409267, 46.6062307805092, 39.91461423485822, 17.86671656679929, 125.43438194203873, 61.01807016528556, 53.37690425963808, 21.68462716927545, 32.19158107064908, 117.72383819659613, 5.912442241590225, 29.019700845577177, 22.081471486360105, 8.410418529297404, 7.541983758497634, 115.33275970697622, 61.99869766939942, 18.55954177689666, 5.437874773557044, 136.81122295056883, 98.0932618076877, 72.11114557652829, 81.88708277071827, 66.08927161073944, 7.3648555555277575, 14.513692322380894, 5.044237774872398, 32.04909589184472, 35.51535308816941, 119.07458038119545, 14.943249915270972, 11.131534382806539, 21.16474115128819, 22.094739674106123, 26.93559004881734, 111.14525392736024, 90.83898495435287, 97.15730578298555, 89.49215968602637, 42.29526414400475, 14.046347920190417, 30.395661679775863, 14.891478334516302, 35.177071879490725, 14.716136874455485, 43.033583889362994, 120.13714946479692, 70.14667318726407, 6.459411285328481, 103.3047646644943, 22.635960951819154, 29.197154227953188, 34.159596288184495, 57.05105244970116, 47.48779973597752, 178.37277069082026, 36.92441873365257, 79.47530414309493, 10.316690270473304, 21.88903122596802, 173.9574032520688, 61.7695819524132, 94.73528081441664, 21.035958729439667, 29.538314441199947, 10.712100477121458, 28.20177100476855, 65.04331807554706, 59.896559954871975, 56.41807888477321, 28.403694382998708, 15.279017717708157, 15.82568149286825, 61.14843846287121, 67.32012210604417, 10.244468839604448, 25.50197050064516, 131.33518595518927, 99.19438039574436, 167.99098653536038, 65.68985660501846, 39.747628563689915, 8.677568443861903, 17.044247987213172, 48.09496981358713, 12.507484664026588, 34.10935770158813, 36.20119833041962, 80.51701645514476, 57.65732008322788, 5.041869561438399, 12.563124380408324, 68.47290929774078, 26.787633426031064, 78.16309735462481, 53.413275394909824, 64.52680107019273, 21.4356805596428, 93.00610589360303, 16.24295609194988, 21.34383723329863, 54.701468413210186, 58.25552715969537, 18.85832577540217, 19.8116786161631, 5.232993783209106, 54.2803082961194, 9.431359760740994, 70.09481687235079, 89.10087572064268, 7.734577701217497, 15.346387574606567, 7.965165142213358, 17.176570827886156, 37.44225009301375, 19.6983708752018, 84.52076637873138, 182.12950701100488, 239.83972501847302, 5.797817616956939, 18.739131279366394, 25.718035058374944, 59.99219502649955, 77.68293393278307, 87.79714779999074, 30.974720043790107, 72.33001678640365, 5.492074703372331, 48.85326621276237, 40.457027363207644, 227.17084638701215, 40.70088346681467, 163.08961412006076, 131.75433505512746, 57.86285536414641, 17.4984176705474, 23.463893642080375, 34.98679120908491, 40.916033361597655, 23.22715512522717, 16.486536145938306, 13.71325334446684, 137.45676242884542, 27.610498092795247, 119.99304389265602, 13.644857578113863, 79.74799839193766, 14.865718161679451, 30.047420597048852, 32.860740702563994, 5.112528338772596, 56.56735838054847, 15.177693261488148, 11.913391135108844, 21.836752281555576, 43.36805428287096, 37.83835882724132, 23.623777288161, 8.683291842649822, 30.033341518547807, 92.35247025968016, 34.18690692043744, 74.55993401623405, 47.77470385964794, 23.736450819802535, 66.9375961121388, 98.59014750721852, 18.777594636891894, 29.907746919304017, 115.11196646676265, 54.29349224369576, 81.80047775901397, 45.6249450907699, 111.42104689303126, 108.45775051558874, 255.57106282732974, 101.18446872110498, 11.880359874007283, 7.330514112449429, 17.10654247481145, 40.044231784974066, 6.004833347999465, 47.909047527383485, 16.905849229958314, 52.34597932164022, 13.230336841835964, 56.959715218536104, 33.736610908119594, 68.20208154815872, 100.73187396483306, 35.55317013928392, 49.34378937953966, 5.135155310858975, 51.935828657272424, 15.280007557132702, 61.12248835906608, 116.07226334318597, 40.476769630588336, 60.14315661006926, 22.65151269860679, 8.508853862979889, 33.362834197240275, 40.52678810407104, 44.6513109238624, 17.871733108065836, 5.486138748919464, 6.034765962016658, 11.643009555429364, 79.58981148965978, 29.080383759785377, 14.611919028445103, 38.345045407654595, 144.36268400008416, 45.2775555222292, ...])
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)