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 = 48175
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);
([5267042.95343815, 5755980.928770148, 5844859.1872277325, 5977710.132979584, 6221837.264307179, 6229200.657285842, 7233095.188103509, 8866893.75, 9084440.910576856, 9090432.931750404, 9105029.219610976, 9107331.865104053, 9165829.6875, 9200875.650684005, 9229574.93314544, 9273949.369946083, 9292351.387335263, 9300594.376284499, 9333419.184943954, 9336070.07114127, 9336825.863891235, 9336883.233248211, 9338075.297410244, 9349785.9375, 9402143.6271707, 9406282.8125, 9418383.959342984, 9427071.416002808, 9441585.9375, 9451622.25340593, 9497326.5625, 9504964.414166173, 9505477.786292037, 9506107.8125, 9506246.875, 9506314.24549664, 9506389.0625, 9506710.9375, 9506807.395380588, 9506811.470421048, 9506947.402459892, 9506998.758666744, 9507237.138849145, 9507480.38774169, 9507481.398918912, 9507653.539970275, 9508091.719770463, 9509987.5, 9512205.18981263, 9512232.8125, 9513398.003716469, 9525918.499921128, 9526392.949051244, 9530535.9375, 9550435.596296458, 9597810.9375, 9604032.185094716, 9617210.28145155, 9617671.646600565, 9617721.875, 9618087.5, 9619388.85163868, 9622325.856605493, 9625698.746002998, 9625754.6875, 9632176.5625, 9634890.897385776, 9638702.817826506, 9648089.23829966, 9649225.674604492, 9661613.836486856, 9663345.401489083, 9669093.981939638, 9698050.312461928, 9736446.413646506, 9750305.90980649, 9768588.814029334, 9773051.095736185, 9784322.775181867, 9793111.372506687, 9795679.6875, 9795762.29087989, 9797585.9375, 9801336.453512821, 9805951.5625, 9806490.877634667, 9806575.596851982, 9806677.845950376, 9806942.95183772, 9808012.283867193, 9808999.297656346, 9810793.75, 9810967.1875, 9811840.625, 9814604.574072892, 9819586.436388932, 9824717.134539256, 9850622.032288024, 9875405.0996497, 9877964.0625, 9888223.533562431, 9910021.252392802, 9911848.640489848, 9911947.791122707, 9912023.55172266, 9913510.84017576, 9913517.111060709, 9913631.078915773, 9914676.552859351, 9919579.609651187, 9931603.612280507, 9942943.355352432, 9987282.8125, 9997618.513443945, 10010504.42682767, 10032292.1875, 10056216.976213235, 10071688.521160977, 10075760.144277046, 10087499.526573453, 10093207.384853069, 10094237.5, 10096645.130877709, 10096739.484705184, 10096760.153075669, 10097248.52627909, 10097394.281799834, 10097812.245248325, 10098681.19581034, 10101800.530158564, 10102553.125, 10105770.3125, 10106137.130119605, 10106774.435283622, 10122868.00183262, 10123823.09873805, 10124189.74744296, 10124866.98624893, 10125257.709168253, 10125721.875, 10125836.945165036, 10141631.625418726, 10142826.222302116, 10142862.102174075, 10143121.875, 10143375.0, 10143613.36047682, 10143857.8125, 10144045.250128457, 10146453.157054221, 10148580.603244979, 10149814.0625, 10152892.603123723, 10154581.997787116, 10155815.625, 10157330.158152156, 10158991.412794707, 10159007.794940695, 10160834.429015236, 10162306.25, 10173868.045972686, 10174967.111284643, 10176391.511083204, 10177015.625, 10179591.052759709, 10185197.590168396, 10187059.27121488, 10187242.1875, 10199805.517983686, 10199849.073346851, 10207114.999757772, 10209862.834896542, 10211702.301479464, 10218566.847538348, 10220103.881231911, 10220463.547500191, 10226068.421747565, 10229607.597018637, 10244425.326255942, 10250257.856008759, 10252705.925052032, 10255975.751634385, 10257381.25, 10265043.353528753, 10265774.212463, 10282034.375, 10282318.051821047, 10284556.54853528, 10284616.423201589, 10300849.012549445, 10302605.818212828, 10309718.733394645, 10309718.862840103, 10312892.1875, 10315864.87665583, 10319894.29517656, 10349722.119140012, 10351977.546098934, 10365315.534432115, 10396718.57247984, 10402956.223666083, 10411520.3125, 10412062.317443522, 10412939.22878158, 10413092.1875, 10415911.829476584, 10419450.865117794, 10419890.611119932, 10423534.936680157, 10428028.125, 10428319.510951055, 10428857.11828263, 10429428.814446473, 10429533.843056217, 10431048.196948232, 10431161.204217097, 10431440.427105147, 10432546.385751538, 10433192.958311604, 10444988.457277039, 10448246.875, 10451827.567142548, 10451851.5625, 10452373.4375, 10452742.1875, 10452972.45281546, 10453355.402081553, 10453402.315193392, 10453734.687889434, 10453997.53344163, 10454072.70227946, 10454121.875, 10454866.068718588, 10455396.286477135, 10455754.526967537, 10455766.488938231, 10456467.1875, 10456737.277652567, 10457360.9375, 10457382.8125, 10457813.278435783, 10458422.356715892, 10458535.881511804, 10458578.125, 10459438.719468944, 10459794.356008422, 10459813.157292483, 10460154.7243454, 10460516.837246826, 10461696.875, 10461900.755227903, 10464936.054087847, 10465028.912874104, 10466323.642341789, 10466910.562463198, 10467126.5625, 10472495.3125, 10473189.866177922, 10473554.790506462, 10474004.6875, 10475842.235988362, 10475916.398439365, 10475965.625, 10476003.125, 10476275.705109045, 10476462.296759019, 10476525.787210332, 10476807.475593694, 10476950.0, 10477022.187000193, 10477166.40852077, 10477325.158152755, 10477426.5625, 10477438.997586412, 10477514.020556517, 10477613.14227493, 10477767.1875, 10477830.704062184, 10477908.465003274, 10477952.85490078, 10477994.17039949, 10478116.680684209, 10478207.8125, 10478245.81317037, 10478257.271654952, 10478276.423055923, 10478281.522329232, 10478334.295535939, 10478369.902235411, 10478465.134211455, 10478721.875, 10478779.6875, 10478821.906731624, 10478901.500669383, 10478914.126051156, 10478917.1875, 10479150.0, 10479166.168196695, 10479479.058859989, 10479485.251426896, 10479530.89827449, 10479721.875, 10479831.537176492, 10480060.05145149, 10480354.61785947, 10480661.63028486, 10481303.601916755, 10484093.787306596, 10485507.684239779, 10487112.5, 10488749.250726067, 10489723.391867224, 10490529.168707345, 10491045.096786601, 10491305.042389916, 10491329.6875, 10491593.270818949, 10492492.071562393, 10492824.471014151, 10492919.142938232, 10493390.876528576, 10493494.422627859, 10493989.413817896, 10494098.213676598, 10494395.105438005, 10495736.568574747, 10496037.5, 10496059.901264144, 10496856.25, 10496955.672788564, 10498076.296093414, 10500374.799441237, 10502157.555203797, 10502250.0, 10503090.625, 10504852.920385068, 10509173.4375, 10510900.241146578, 10511610.638622828, 10512211.376489168, 10512263.488961017, 10512342.265982712, 10512714.0625, 10512760.62888886, 10513481.25, 10513483.284204593, 10513856.25, 10513923.07974564, 10513966.32139672, 10515021.238886382, 10515330.366636854, 10515818.75, 10516046.741696524, 10516182.8125, 10516214.726315344, 10517026.237662084, 10517984.857347384, 10518326.5625, 10518476.5625, 10519056.047959456, 10519369.711544313, 10520022.349759907, 10520199.403885553, 10521039.447534563, 10521279.62397005, 10521665.625, 10522766.843949076, 10523950.172895791, 10523999.14374694, 10525522.042535301, 10527435.572520271, 10528167.618377974, 10528548.802281434, 10530450.0, 10530942.1875, 10532515.992318707, 10534575.03722486, 10543609.375, 10544962.888533864, 10544993.514670175, 10545148.40177023, 10545206.794770358, 10545590.625, 10546530.516919812, 10546948.4375, 10546974.821927972, 10547512.5, 10547784.375, 10548381.243945304, 10548702.757478727, 10548857.192974973, 10549245.333359234, 10549402.49600952, 10549557.167595454, 10549846.717500929, 10550192.51099029, 10550870.443367185, 10551182.597896863, 10551662.5, 10552004.497482397, 10552233.2573011, 10552418.75, 10552921.319324575, 10553107.8125, 10553464.730520383, 10553748.4375, 10554064.01379918, 10554506.062311001, 10554702.73254174, 10554763.077001035, 10559659.46681565, 10564452.495533837, 10565106.450972956, 10565138.929061886, 10568889.033194177, 10569204.4311135, 10569909.438584018, 10570075.161757534, 10571273.4375, 10571445.3125, 10573729.880230824, 10574144.063040474, 10575257.8125, 10575323.968122108, 10576251.720598476, 10576514.969543051, 10577288.736865722, 10578350.358532825, 10579288.477059584, 10580451.5625, 10580550.0, 10580957.8125, 10580962.916017748, 10582007.728142925, 10583508.859583303, 10590898.944257226, 10591577.632125568, 10593481.776788859, 10594230.532632824, 10594422.538230086, 10598623.169827474, 10598920.260745041, 10598995.3125, 10600206.893571632, 10602046.563986039, 10602698.47090199, 10603238.685834592, 10603260.29770286, 10606241.695741039, 10616312.5, 10626464.0625, 10626501.5625, 10626871.839711426, 10627503.027022997, 10627646.663162837, 10628132.660105728, 10628821.875, 10629022.364055594, 10630142.1875, 10631090.514904035, 10632604.764138835, 10633017.1875, 10633759.762711462, 10634270.3125, 10637834.218269838, 10638029.6875, 10638097.954585534, 10638261.298638728, 10639195.291427769, 10639460.9375, 10657737.90749556, 10658121.38745488, 10660271.565959776, 10663092.002105039, 10663531.376606317, 10664512.671940466, 10666272.706825664, 10666276.120378936, 10666381.25, 10666712.5, 10668089.02718415, 10668615.296702273, 10668637.341056246, 10668652.24814985, 10668900.0, 10668946.421858158, 10669158.849878497, 10670103.360477863, 10670819.927017285, 10671338.777113363, 10672676.37021403, 10673570.265937125, 10675111.366162289, 10675235.363776455, 10683335.9375, 10684268.179139717, 10684285.597009672, 10684294.486398824, 10684370.3125, 10684493.579859314, 10684632.249581713, 10684707.8125, 10684754.6875, 10684840.426027672, 10685118.72374606, 10685348.897219202, 10685410.032071324, 10685518.881417302, 10685637.022156868, 10685639.820018921, 10685681.25, 10685688.868868496, 10685785.9375, 10685844.817904877, 10686212.5, 10686291.683896882, 10686363.998145428, 10686369.318891715, 10686429.6875, 10686446.875, 10686595.435536116, 10686604.978990275, 10686625.889663639, 10686656.25, 10686881.25, 10687061.826483639, 10687642.069403727, 10690677.392141799, 10690743.75, 10691298.4375, 10691365.619490387, 10691445.5848848, 10691546.875, 10691853.65129062, 10692007.55460907, 10692102.398115668, 10692110.351275422, 10693373.96604773, 10693380.835736914, 10693912.076116212, 10694058.610337686, 10694141.832455996, 10694457.472524114, 10695433.394864408, 10696019.717934325, 10697222.385159267, 10697664.238776706, 10697742.984349882, 10697866.14338905, 10698089.237045003, 10698457.431227963, 10698831.731237324, 10699030.034060258, 10699337.5, 10699471.875, 10699484.115127118, 10699551.5625, 10699570.3125, 10699594.7542846, 10699615.625, 10699635.9375, 10699668.612755898, 10699778.142770046, 10699793.75, 10699800.0, 10699805.977552036, 10699806.25, 10699814.0625, 10699833.396636289, 10699861.484574769, 10699898.062651081, 10699907.279087247, 10699931.25, 10699932.977346843, 10699935.329934515, 10699940.625, 10699945.048259435, 10699954.47421739, 10699955.938450033, 10700040.625, 10700068.133443937, 10700076.233919797, 10700092.85542561, 10700093.949159628, 10700131.25, 10700136.094510468, 10700139.488069024, 10700146.968395457, 10700185.9375, 10700211.154581714, 10700239.079780918, 10700243.75, 10700246.31867731, 10700282.258939356, 10700337.555055631, 10700340.226164915, 10700343.75, 10700349.343235059, 10700375.514448186, 10700379.422395747, 10700388.982949452, 10700398.593548052, 10700412.32595659, 10700424.06603408, 10700435.570601568, 10700437.396466587, 10700442.1875, 10700448.4375, 10700454.680756437, 10700496.276728269, 10700514.335347256, 10700517.142954698, 10700526.5625, 10700528.358591553, 10700533.782919465, 10700569.578246558, 10700579.64032422, 10700609.375, 10700629.460177686, 10700638.254217649, 10700642.1875, 10700642.58378876, 10700650.0, 10700651.11456161, 10700665.3017401, 10700670.3125, 10700674.080279702, 10700678.70496129, 10700693.275897749, 10700695.768375514, 10700714.0625, 10700726.530299993, 10700752.285692764, 10700753.088025713, 10700759.787246216, 10700768.318354864, 10700775.0, 10700803.323463354, 10700807.00384657, 10700808.056841763, 10700811.513970062, 10700846.875, 10700860.6593127, 10700864.070661293, 10700885.38109107, 10700901.5625, 10700929.6875, 10700937.896876013, 10700957.359948503, 10700960.9375, 10701010.763028286, 10701053.381881319, 10701066.65746338, 10701071.875, 10701087.199991828, 10701092.059844766, 10701096.875, 10701104.6875, 10701107.8125, 10701108.50026635, 10701122.830115123, 10701174.195652809, 10701176.001234083, 10701179.428360853, 10701228.125, 10701260.9375, 10701267.1875, 10701270.3125, 10701276.272736292, 10701286.234070025, 10701308.727652231, 10701347.475286823, 10701359.375, 10701368.663431676, 10701373.688530361, 10701385.385664487, 10701398.4375, 10701419.319034217, 10701428.857170194, 10701470.15329376, 10701476.846764188, 10701517.801353354, 10701523.83888568, 10701523.956710517, 10701525.94937926, 10701654.6875, 10701670.3125, 10701735.9375, 10701876.67107058, 10701903.598365784, 10701943.75, 10701968.878997713, 10702020.270620942, 10702058.872204406, 10702173.713882534, 10702210.578747315, 10702214.377483908, 10702226.5625, 10702335.719063807, 10702386.09965105, 10702402.711624982, 10702403.337666169, 10702454.850770116, 10702486.83284433, 10702655.637236968, 10702658.979420267, 10702892.1875, 10703126.92953801, 10703190.625, 10703269.381512247, 10703296.798791971, 10703498.4375, 10703525.279711483, 10703556.25, 10703994.406392286, 10704016.651981607, 10705275.0604427, 10706721.36780991, 10707148.4375, 10707786.276674306, 10708058.160930887, 10708650.172400186, 10709318.755971393, 10709823.298547246, 10709871.15584392, 10710015.414405571, 10710130.214448921, 10710498.98280172, 10710583.453943415, 10711244.075442512, 10711398.703014255, 10713482.8125, 10713750.06711464, 10713923.015299711, 10714239.944365824, 10714404.132125711, 10714710.9375, 10714813.809158614, 10714824.686311075, 10714836.03296889, 10715029.318697182, 10715116.705627996, 10715130.983914468, 10715181.25, 10715209.375, 10715278.366010893, 10715289.0625, 10715351.05006122, 10715460.893797515, 10715482.718553457, 10715507.711260216, 10715516.775766056, 10715533.158550097, 10715538.629057303, 10715542.485364893, 10715579.6829506, 10715625.8563743, 10715709.375, 10715785.320584515, 10715810.6832637, 10715852.625781683, 10715890.474714926, 10716097.678846631, 10716121.079077289, 10716132.126178788, 10716161.732346963, 10716175.456425538, 10716176.5625, 10716312.5, 10716324.458578443, 10716435.154680707, 10716495.188169487, 10716496.525893617, 10716498.4375, 10716553.642414704, 10716630.291102387, 10716717.1875, 10716857.871877886, 10716871.454207668, 10716893.951292394, 10716907.8125, 10716912.598195652, 10716914.73221168, 10716967.1875, 10716980.592745228, 10717031.421777466, 10717129.149950473, 10717170.082005804, 10717379.6875, 10717386.099583339, 10717426.113722773, 10717759.514241336, 10717770.245306836, 10717865.625, 10718010.474946676, 10718077.874468938, 10718142.464885198, 10718260.386967154, 10718454.346402086, 10718672.70923016, 10718875.893900068, 10719029.6875, 10719388.912962114, 10721159.252385378, 10722150.458115004, 10722263.896356862, 10722493.75, 10723213.604687205, 10723516.30971546, 10724139.03403514, 10724306.857201466, 10724356.097526737, 10724627.835453376, 10724859.375, 10724914.0625, 10725135.793040423, 10725157.853958042, 10725209.375, 10726668.75, 10726940.274985246, 10727027.526133321, 10727195.3125, 10727199.35144409, 10727246.875, 10727402.729592016, 10727435.7297701, 10727538.607289104, 10727879.142327694, 10728520.143646363, 10728792.1875, 10729898.060344636, 10730599.372378303, 10733560.828337988, 10734231.185901327, 10734266.459316684, 10734535.9375, 10734660.896077521, 10735432.361672396, 10735736.151575958, 10735928.125, 10735946.491818625, 10736282.8125, 10737651.708320428, 10738236.028409729, 10738662.297442151, 10739098.322191715, 10740168.260092543, 10740313.547065983, 10740334.576630918, 10740582.029413862, 10740750.535251513, 10740817.167112568, 10740911.323248794, 10741073.4375, 10741125.0, 10741198.4375, 10741342.802767903, 10741920.072765162, 10741951.827926578, 10742259.375, 10742334.375, 10742453.962009244, 10746225.0, 10747603.383890253, 10750227.029137459, 10751669.571563844, 10751782.8125, 10752335.957063837, 10752536.232588697, 10752655.230343273, 10752685.870224658, 10753510.371892173, 10753728.267070794, 10754001.290386824, 10754466.270961596, 10754643.75, 10754683.673991773, 10754724.02750776, 10755056.035004841, 10755953.832738213, 10755971.402228571, 10756151.43127632, 10757123.189923877, 10757457.129791046, 10757500.0, 10758224.370842136, 10758634.287881343, 10761579.6875, 10764074.584221853, 10764335.637784168, 10764395.073483469, 10764821.73088243, 10765328.097499598, 10766797.87371059, 10769259.264503874, 10769352.054221043, 10770997.01763446, 10772155.26660115, 10773309.375, 10775288.032670578, 10776136.008548329, 10778840.567219397, 10780203.383833053, 10780281.716449648, 10781765.309869077, 10781851.965523347, 10784159.375, 10787781.25, 10787881.997842593, 10787947.772337826, 10788078.245580291, 10788823.4375, 10789012.55106321, 10789154.89032481, 10789208.668732028, 10789312.596854093, 10789373.4375, 10789477.770419415, 10789503.810948657, 10789591.59431889, 10790187.5, 10790243.07108102, 10790340.866043314, 10790347.27216624, 10790980.143016016, 10791607.17157499, 10791820.3125, 10791929.6875, 10792759.375, 10793245.828311333, 10793403.166976998, 10794107.024007205, 10794562.219037294, 10794679.6875, 10795314.651178438, 10795367.1875, 10795682.53968048, 10795906.087672606, 10795930.977134574, 10797964.935022315, 10798636.603043023, 10798860.033809135, 10799266.605396042, 10799275.38805079, 10801802.76987547, 10807754.964521935, 10808211.14049458, 10808390.028551968, 10808391.289873367, 10810138.869602343, 10810722.61014942, 10811080.6470268, 10811343.75, 10811543.75, 10811805.418630151, 10813635.831428437, 10814387.5, 10814663.483913915, 10816792.1875, 10826470.24799454, 10826634.196486495, 10828125.181562593, 10828378.125, 10828907.509957807, 10829325.651141135, 10829712.5, 10829875.0, 10830113.952186268, 10831808.760640886, 10836567.1875, 10836997.071310125, 10837345.3125, 10840753.125, 10840842.1875, 10841339.0625, 10843253.125, 10844806.570025984, 10845171.559162542, 10845910.724760348, 10847134.386006683, 10847542.1875, 10849186.339934958, 10849831.972646868, 10849845.72358593, 10850800.247675972, 10852001.5625, 10852660.661969218, 10852979.333255902, 10853970.3125, 10854456.857609382, 10854502.147714492, 10854958.814084057, 10856839.687355082, 10857439.6821317, 10858500.435379654, 10860164.0625, 10862014.0625, 10862185.9375, 10862774.507608084, 10863255.209802266, ...], [30.796637343642857, 33.26312207465909, 25.298588265314727, 7.9024994184965855, 32.57045305022489, 94.7217820234381, 113.58011488963804, 40.95664035945936, 8.443598112361093, 17.05114789447526, 16.896722966278745, 42.87034423702456, 41.41022227626997, 6.900756430034902, 14.692670217483208, 60.33956342108331, 15.41360699251111, 15.117468163035463, 74.5096965081182, 56.092603680534054, 79.24755162822088, 16.830918793699368, 11.401197829885486, 102.74496530226892, 74.57162403063042, 52.91236645089826, 6.683267228867082, 5.780781457968032, 55.03985399951876, 26.385709078085686, 47.53792523997544, 52.78936233756846, 29.027804200710126, 68.11219040274253, 53.65224037190932, 9.491083684399358, 89.86306165918205, 102.50907459786274, 6.682994289323931, 26.257481561301397, 12.066076800369324, 52.523363779683834, 41.23792091202819, 57.797980892760265, 15.541216152206925, 12.379548343945922, 13.41530477609564, 35.83498083206732, 9.795608901916545, 39.95700448346315, 31.170746226668694, 77.54049128043702, 32.38628159997459, 60.60834105765186, 8.114024911459904, 85.9070206796375, 10.270774008261641, 21.20680487055059, 9.145467470346937, 71.00580358485256, 52.823448753413814, 68.22853741049497, 20.316587897034015, 7.718763771663237, 44.288291647353205, 51.886416202127194, 16.092383144996166, 23.659540663245945, 8.38178375533718, 12.375967202574248, 24.74418130452632, 15.076371905102253, 7.6893372144343095, 87.00784500015229, 59.40041529814386, 19.298820664225374, 19.957751095006287, 30.861788048916342, 78.48663990926092, 11.88329971729721, 34.646406438255404, 125.22521405099826, 48.981401235417614, 7.801178943029453, 57.029809160256576, 6.114771013870862, 5.859502764988771, 10.717856881489283, 5.083064256060769, 39.53126715476054, 6.948304921192926, 74.17848401097646, 62.12903680739005, 66.73656322683262, 26.467440282257023, 8.56927883925819, 27.51877744207825, 42.70096207596474, 8.5172566761155, 80.67542744185005, 39.2895977448232, 20.351416652482474, 65.5398195735265, 23.996220632070667, 5.13295086814317, 26.73799330065383, 11.01029293241117, 25.55008157646056, 35.895473806097506, 56.80646801464972, 96.72368732795047, 92.18321355013344, 62.66597551390256, 102.16821996406946, 5.333068042536894, 79.54685959232646, 73.05316061774172, 13.214236337719278, 28.593427492444803, 109.96976146916671, 22.24655762659642, 31.727159452230993, 5.923743298882929, 18.511601562803264, 48.92483404934393, 15.29104663224354, 16.624072461197123, 7.51362578847106, 19.991968329318443, 36.03586031611563, 54.1603678591163, 39.658272557887656, 6.4306313691781165, 83.48409082780827, 34.27232165217062, 67.41106355725182, 6.600104014166535, 9.166840322562857, 26.63628783822274, 81.3501799244111, 37.59519087129728, 16.59561338179315, 12.042469875108122, 37.94569813615866, 92.78068138595236, 67.75108074602436, 6.0180157677004, 33.535809353222625, 27.348635415366246, 9.358654697972433, 62.92077913525588, 30.487741292240294, 9.709433447547212, 108.1273474969019, 85.9953108467573, 95.83090879076144, 39.63103245520445, 79.48103566040197, 5.5357078270227635, 37.66156326878638, 12.799963665658975, 27.102837630482938, 19.89697159838416, 32.64869972363157, 7.765642303241591, 106.52905519525714, 14.560154033088695, 78.2468849468369, 33.149586303195, 23.861575876844967, 20.328545475302132, 7.729028016081827, 18.776769682066877, 80.15066053696866, 6.612552555770406, 13.285151968296693, 46.72999824698227, 8.175822103425109, 7.725660902199697, 51.471285444025135, 10.655135252173741, 27.643634098923634, 42.98122467524002, 20.593422131329415, 12.60197833493493, 98.28407425082884, 84.95802506400561, 12.637822672916915, 27.205446760165998, 17.70433702226694, 8.991171267534636, 7.597242830479801, 6.5049265922339154, 83.40296597338194, 19.32832068096352, 25.734210799192965, 20.14335420680361, 20.740544219771117, 26.853490626019294, 32.31409521210496, 28.014096643511053, 37.40167398586104, 25.37654864013255, 24.235990638788067, 66.24324272093621, 21.11836196711398, 5.663767118459743, 62.33721634519937, 5.486402222176956, 118.03268781734776, 27.254012861494566, 83.01287311149031, 18.435012198714922, 21.485709802882248, 29.861045600627477, 16.065892711924995, 9.169495741629937, 39.0320549407891, 5.315506077405504, 10.297367121539068, 44.794352192569846, 20.934725254385995, 45.31172277587511, 92.84806654753703, 50.171840764182114, 132.00105993122466, 18.60638780872738, 18.87433865960458, 16.28520070073471, 14.937134148361974, 74.63059951217286, 51.56159752024824, 9.737062395049604, 90.58515828057597, 20.312982326189783, 19.717352450600504, 30.092032911538272, 10.797083004836892, 99.75913011365361, 71.20250863830356, 10.089513346276343, 8.558876716242272, 55.06902693525947, 76.05891351016493, 38.99582231606949, 39.563107383697265, 31.843871873207267, 5.399884467553444, 31.006207974702527, 87.15052240515692, 12.55653593705549, 5.822657428150386, 5.0835092355943035, 37.830121871562255, 35.979657578778614, 51.84717877177699, 71.26408035089005, 20.99955025532821, 15.349215495868563, 66.48547141343582, 6.494719164190964, 24.13477674167539, 29.59326739504909, 89.54910949203514, 18.54131552919405, 25.070738064578542, 5.184109833155706, 13.796075936910837, 54.85908285912105, 7.7201202330269805, 12.621840155758349, 28.570234892890007, 41.977837697702775, 27.30310422563671, 14.784014687675384, 12.305768965675478, 110.11477437610904, 84.14808046497998, 18.190468192449877, 59.466471741275505, 13.317102719516658, 10.418274097629025, 44.59305256125184, 30.693115727823734, 5.673180577862838, 62.039518943521855, 11.581839095474965, 5.163515039934675, 13.578717871651051, 73.35534634582669, 50.04992298124709, 68.62166404336934, 9.35837895427295, 27.35834736536238, 9.385723638072578, 48.67774439372321, 113.35974004382246, 19.96219040595747, 20.299150117850356, 19.54365975279691, 5.035666107106341, 59.08432016457258, 11.608350448985593, 18.34801423018034, 27.2189160253684, 18.457536507707477, 11.96507193037218, 15.08563717887476, 11.371911766183889, 67.26382186361256, 12.691530465604975, 42.879643787384204, 20.854182156260936, 10.80648101958207, 25.56867914942533, 102.98874046693983, 27.487159128042727, 26.4258477849869, 29.503698825379615, 94.8345474808573, 9.553543215582224, 148.37269748230858, 16.474078967311094, 29.219964169654233, 44.31102757340327, 74.84221827476794, 90.1303285197007, 5.217040119670474, 29.658529683791773, 8.003232829208036, 14.014820642151408, 53.95048894340283, 24.297665060781554, 50.893744252276505, 71.91870602932019, 96.22613381926209, 61.579238537081146, 15.947867452822475, 23.76509483185929, 45.11551086064425, 6.197356965843156, 15.249331512900836, 56.573095146106326, 36.407542153500636, 75.2889616138325, 7.783245883396376, 63.40194246637999, 5.035566210704497, 47.14355781144851, 10.260398833043489, 73.73918139333095, 53.59656225479909, 26.142366049237523, 95.90251615774176, 5.490998302815505, 37.82463804853867, 136.47582218975208, 70.81472191293352, 79.70744783765147, 59.317172842799195, 28.296490187801226, 11.960820403251994, 20.585053032888666, 6.317102010134236, 27.327864538639886, 35.49171682652962, 23.209935293021548, 61.42462494505332, 12.445881431599854, 48.363368993216405, 30.391522552609587, 46.4084992193503, 29.61001650698178, 41.563640255596574, 57.286582703184415, 9.662584610325435, 119.50601961134676, 29.16160660297437, 103.32628670398176, 14.11449045935753, 52.01239618080009, 5.742328581311641, 84.94625050007997, 19.445494965381734, 29.64432790704521, 6.728469072324184, 54.026838137172575, 73.53116686540193, 9.326288828687618, 13.70413391803069, 41.10945090229813, 5.815525284656024, 20.296124239932524, 215.6640409923674, 25.759313322408065, 27.559433149904223, 16.75940541453819, 6.0660631189636804, 56.13482322162136, 14.2635512364276, 11.902252576754913, 38.71329603121577, 20.95512340626672, 54.6819111807346, 72.0590277648328, 63.92411686235303, 25.673649134180266, 10.846484977126686, 5.193537258849553, 9.872102730713108, 37.12195364351712, 83.7838486349045, 11.45707544143785, 5.606704431346865, 42.65599737529824, 10.749288271233322, 25.61404918363813, 97.24935984823215, 33.96807696045946, 96.37247692430459, 89.98382782279248, 18.130231720322833, 80.82562769165165, 52.365738029412825, 6.287381768456861, 5.6662752965634615, 10.654206739583659, 9.654151254020396, 20.68112398421614, 40.32601996219045, 34.730897680518865, 66.41701851479084, 16.805941659060306, 45.992606851838346, 18.43485102875358, 17.303160054870364, 23.64658018125519, 28.696832649423804, 6.380225314851915, 6.596339498939224, 5.520229059840725, 65.65774105140582, 79.58422052328706, 18.132613659181104, 77.862785534435, 6.271427711544804, 13.677018132334737, 12.958815014720193, 67.12126538602605, 77.00798890053699, 31.395421157830093, 40.86035962657215, 79.83581580564024, 42.79891781892721, 11.028457859085918, 25.83900566701532, 39.04099268071185, 17.20307253499698, 52.58027149202209, 14.537847657437855, 11.249649156372419, 124.32591626788025, 16.658544649625117, 30.02878649853816, 82.54436438688981, 39.254873360772265, 13.373084134374329, 11.74336202504409, 62.35959404920233, 83.58098371133303, 112.38707965119937, 73.43870379749013, 60.72147655966836, 95.41321869293287, 25.01640499497121, 15.640031978997271, 78.14397522240226, 10.500468873393137, 65.04700291894851, 50.210417779299846, 5.531369003183802, 10.650605935402416, 29.060840783423853, 18.409483297361756, 35.59639886353168, 7.007220121677036, 13.25776672526631, 10.387161251931447, 9.025422385039288, 13.95494082976739, 25.231586820901786, 27.63589125188733, 6.852213420800411, 152.88670784577698, 77.92485682914347, 20.504597308421687, 23.246954927612077, 8.718585760205372, 29.529308954497218, 105.45739256800718, 42.85803609038925, 52.99378274467341, 55.93714601725397, 21.37873448398082, 56.923837876568435, 17.04055963338626, 9.956525752367895, 11.339527321619338, 23.003433793512393, 73.62434500003415, 82.2058546899538, 10.42470244384435, 60.862124691752975, 16.475023331373965, 81.94566105447751, 148.8538328427571, 14.701765059495473, 12.150890474837087, 89.71688948446183, 94.84443664790332, 8.352730486021375, 6.533776754683438, 13.242396353804482, 60.27553812145462, 68.24591675267347, 7.959868123301925, 78.25019407144691, 60.494368902561455, 57.56772203987475, 88.6701705146458, 25.53493222305381, 16.09237857726248, 45.01380647839938, 17.415427429042246, 24.303953729109097, 16.358832369784746, 5.43715538172163, 26.747446829606822, 13.567157162602241, 22.287560226295692, 74.31037808717934, 137.77874508350723, 7.0348609227942696, 17.74878494416079, 5.504903819162409, 6.333879261131605, 15.658839880986333, 19.1976504185434, 17.369780160219307, 11.41195067347562, 84.62239276128592, 9.774405087897309, 9.642701975814, 41.535131714533335, 49.47204559628814, 10.744432888104306, 120.11492987124238, 57.075599699856504, 10.354517031701029, 45.57705969259507, 43.22832263803471, 55.987760079105456, 7.609677475150241, 42.378277173686406, 127.91310318672292, 25.745729882384072, 68.73444780396264, 41.10695819107791, 17.759595923199438, 9.84119711851937, 28.630079096255425, 20.267076487022962, 100.36380918089228, 15.609398617134365, 20.483236495954387, 105.78605098620376, 24.218524813171143, 82.06126714430155, 10.673316280320607, 78.45845080148499, 20.404186874372005, 23.392407373712995, 18.291516666967254, 23.234624607181424, 34.00985297948691, 9.467789352265282, 9.719181437451118, 15.309853264236326, 59.511892802941766, 5.102752869363065, 6.7669614802837135, 102.30094683523046, 41.41078776273198, 29.719315144980918, 23.697605184449092, 69.7413694173903, 33.315006889201754, 45.900426624672534, 71.99512505497354, 18.822224437807428, 27.044403965896908, 15.571631518263551, 9.188451302098025, 18.036292210134548, 116.06048263661683, 63.494968895861874, 50.33343754889774, 68.42856535142762, 21.252603407010277, 60.59677297073374, 16.09454496958551, 32.818972866330675, 89.65870547079096, 15.913449112802194, 13.080740671481895, 7.357636011756444, 27.62462072855098, 81.2148744351509, 32.150254568285845, 18.8852646036679, 57.67223934006918, 68.33547803898566, 135.53839504638566, 22.028654028049267, 9.072249906849398, 29.498281266938367, 48.67307216460371, 7.827392574504606, 105.56321020507096, 11.923797322251854, 107.74414700102193, 9.304323855199154, 18.666062842953888, 27.813644093301317, 9.7061309763636, 22.20319859276965, 146.3712062229269, 26.385703242400297, 5.49508027741684, 62.238797436115775, 12.166605607639411, 83.85280264806093, 89.88096334751252, 8.290897874066928, 49.71343675372907, 53.61219750958369, 29.134866452702628, 16.7058835370298, 32.75570998744204, 46.58781701599425, 5.6957434115264345, 9.558485456718264, 21.198611972539855, 63.48221402238512, 80.01734080990771, 26.233766602540165, 29.63139065093855, 42.772360435054814, 38.40216883345693, 89.54920512480113, 13.041261037353527, 40.63516420222625, 5.43818124821948, 11.195667260357443, 44.54391416529743, 54.98081587697627, 41.69172459817158, 72.61881298240881, 19.06680394533585, 16.206756375549478, 15.102744535348897, 22.018343677697057, 59.88972002203445, 6.746346067991378, 7.189041342731413, 6.403931022521124, 58.77575655140244, 12.151185394377187, 5.266109970482948, 10.887653316553221, 16.14828233656837, 17.943545057415285, 14.339282433616969, 39.15818899901222, 20.434300392814475, 49.642628823561985, 56.25860708997781, 92.07238464658771, 7.64298356010339, 5.0496122942215, 91.7526741965521, 67.15690616896929, 8.264554449518862, 94.57698526324174, 45.873966960413455, 42.981873759374174, 114.16395212700228, 107.87351192841139, 26.728415758622692, 39.30500518981897, 36.52376043066971, 22.816240849557815, 28.28939190895825, 85.5994294574453, 20.43744249276221, 62.497690152537444, 72.54780774707197, 9.662314762773422, 41.896999747686316, 18.05526158174181, 14.658783823367084, 29.131757367242475, 12.522150599333314, 199.1486073358156, 12.336271088629125, 8.022330223851947, 21.9348588143529, 13.306397115602833, 37.688056579326435, 16.413750348934187, 53.80225958046739, 15.642022993764513, 91.50738451640544, 23.687969761873806, 112.78692189747665, 19.602271762625648, 12.065042300592065, 92.33816027429722, 39.73476866713018, 16.34625006827462, 48.213894988111626, 40.66714560366475, 5.6177679045026725, 107.7063423557251, 34.556252608271606, 19.354239489640406, 49.65797815274942, 47.28220690421412, 23.577445409433714, 11.280283339164292, 22.90994274732552, 59.59514229873449, 24.19383926212069, 92.3639896061053, 55.720782963976546, 14.968247200666315, 63.68638891188709, 5.44019371112312, 45.74950766686921, 14.595124812450527, 26.67159924526596, 87.39174889493876, 16.44783500170652, 52.05654206465515, 16.212942921266812, 15.848600787398675, 5.663245230859119, 68.72651403414721, 61.219572836943435, 24.353457348302832, 22.34620940997543, 14.39804720256727, 24.86686871640724, 37.38376537285299, 7.372536720822204, 28.462431732075224, 11.924870567896939, 52.028134917611965, 41.32429353947986, 26.907895829419566, 6.9298305068462716, 27.811797517401324, 23.14310791310335, 87.53737526387182, 17.364173425373924, 8.633832224572954, 99.99823347429253, 5.710547424049018, 22.32138493316779, 7.67770117308021, 140.11250817576212, 32.13175360121781, 84.45226501303699, 76.00233069438279, 15.231474732666834, 11.407258263795221, 6.986969426785648, 6.238509781328689, 121.48096829800643, 15.597509485322401, 22.019760104696214, 7.158541414526746, 24.521670779121667, 45.47502167901974, 5.511044742105484, 24.403897686371664, 16.11584555772789, 21.00339643603537, 23.239594294700968, 12.741519033940783, 6.636983942882449, 118.25543420994453, 25.883856722061964, 14.49388589482321, 23.809835344115474, 77.59468555206985, 103.57513432407688, 105.44737139400448, 6.908363159927662, 47.62417048169573, 150.79609268165206, 42.65777436998599, 15.615985121078168, 55.98239633985584, 40.51402382926397, 25.964060167331713, 11.193132671732618, 52.49957840214439, 29.160342254112958, 45.524307296313715, 25.987495353918266, 47.21497557296999, 20.129000898680587, 64.4055034004349, 22.60402037625125, 64.58903220765256, 95.00328411478395, 13.396443402453464, 25.584155094300765, 30.048543654119555, 13.67556966226897, 17.341842842946043, 41.191895948208, 20.502250785849405, 48.20367299720157, 55.3740367720767, 6.755264972498724, 5.442743596998264, 7.682544960836561, 33.152626428716545, 34.83223990976631, 68.9800636054088, 9.457823183400391, 6.781792729386972, 130.82868299617616, 26.43625935742056, 86.65930000682036, 5.8957410957575, 23.068418280236955, 106.82492978189826, 47.8462847305992, 14.864367328692774, 8.501675523445684, 68.06062215908048, 42.867058310645106, 56.65549540906757, 17.952426915823573, 5.691668644211641, 32.354277408528326, 30.19842601696166, 60.7111316139035, 19.50443982328319, 54.000774411830164, 52.280037995654, 11.944852054976355, 8.774721876105984, 64.21248620854401, 140.15149599727283, 216.9105675570357, 7.271854750424396, 14.691140999864444, 42.47259473985179, 15.512154390091858, 38.545035128639434, 9.944658554734785, 47.48694323542988, 188.26371465234706, 90.6015728655368, 10.807500145010914, 12.449206426072926, 19.680895138664248, 120.34956846189485, 9.130484037239059, 10.20549544765063, 31.444417247902592, 100.52270697942211, 14.619535185665832, 37.1586196966231, 50.227404538951006, 6.230059792447047, 24.562283190479054, 25.969483066107827, 18.191534199582552, 20.879524058411697, 74.67833271951073, 83.62255853099558, 15.514540760483312, 78.15673518132343, 34.56093963566127, 27.03598917141251, 94.44619157078746, 13.717146093343104, 9.560289844229086, 9.759625307184272, 28.92328940629237, 5.106471875413861, 127.96838149348672, 52.99707668652315, 147.41823283989817, 23.560184498399778, 15.421924829942835, 40.917661305858005, 20.553190745438517, 15.775367669135937, 46.74697765390174, 7.147146544208226, 88.4235657609475, 8.107566483273597, 7.871723284408097, 29.09112662119842, 87.78975793110577, 43.99458586154833, 13.91724989544378, 9.691435407736767, 31.86217700173973, 20.193764206133125, 71.06256350165198, 51.12085118316752, 114.12958187517418, 29.567229861597966, 21.35918730058185, 15.554073442552948, 6.708681575727387, 70.11493787815024, 17.787389248431513, 35.328482919169446, 24.104256642849624, 31.066250143416937, 13.994360257577847, 17.585594708480926, 12.356167313186756, 5.998908223971971, 8.001004787535463, 56.962548651540004, 22.075405412825127, 114.56006872740747, 22.738215921490017, 8.873323450921449, 18.27140127963763, 63.47571035560942, 18.749753995342907, 101.52521108480367, 47.64952768120292, 52.51296819889374, 18.721512079877346, 31.131690392617386, 62.61519061457996, 37.29220458581668, 65.4127322411413, 129.9153068320815, 8.194379720476894, 49.25361411424812, 54.421921130862124, 18.948912089465153, 45.81301634379987, 73.34344109443802, 56.84820028664273, 72.56477661520726, 7.986383368455912, 106.66598188040052, 43.31173313538296, 71.40816346063392, 68.94741756084191, 92.64152289916416, 42.21490892815815, 43.566841489791635, 22.867523386657396, 40.66366791543731, 63.78328888534953, 14.182852734593503, 81.38668580036756, 9.696560670146207, 18.66226501189247, 166.74033267139293, 115.95003286893726, 44.17480540268439, 24.068416414659996, 8.10772866869417, 85.0568202595793, 17.904477598227423, 7.829563597362955, 13.162251387173901, 42.2150449977918, 90.59591641785033, 27.806164814494508, 51.58205581194842, 68.25718239341981, 69.44934952784257, 91.76257051411427, 17.392346861442743, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([5267042.95343815, 5755980.928770148, 5844859.1872277325, 5977710.132979584, 6221837.264307179, 6229200.657285842, 7233095.188103509, 8866893.75, 9084440.910576856, 9090432.931750404, 9105029.219610976, 9107331.865104053, 9165829.6875, 9200875.650684005, 9229574.93314544, 9273949.369946083, 9292351.387335263, 9300594.376284499, 9333419.184943954, 9336070.07114127, 9336825.863891235, 9336883.233248211, 9338075.297410244, 9349785.9375, 9402143.6271707, 9406282.8125, 9418383.959342984, 9427071.416002808, 9441585.9375, 9451622.25340593, 9497326.5625, 9504964.414166173, 9505477.786292037, 9506107.8125, 9506246.875, 9506314.24549664, 9506389.0625, 9506710.9375, 9506807.395380588, 9506811.470421048, 9506947.402459892, 9506998.758666744, 9507237.138849145, 9507480.38774169, 9507481.398918912, 9507653.539970275, 9508091.719770463, 9509987.5, 9512205.18981263, 9512232.8125, 9513398.003716469, 9525918.499921128, 9526392.949051244, 9530535.9375, 9550435.596296458, 9597810.9375, 9604032.185094716, 9617210.28145155, 9617671.646600565, 9617721.875, 9618087.5, 9619388.85163868, 9622325.856605493, 9625698.746002998, 9625754.6875, 9632176.5625, 9634890.897385776, 9638702.817826506, 9648089.23829966, 9649225.674604492, 9661613.836486856, 9663345.401489083, 9669093.981939638, 9698050.312461928, 9736446.413646506, 9750305.90980649, 9768588.814029334, 9773051.095736185, 9784322.775181867, 9793111.372506687, 9795679.6875, 9795762.29087989, 9797585.9375, 9801336.453512821, 9805951.5625, 9806490.877634667, 9806575.596851982, 9806677.845950376, 9806942.95183772, 9808012.283867193, 9808999.297656346, 9810793.75, 9810967.1875, 9811840.625, 9814604.574072892, 9819586.436388932, 9824717.134539256, 9850622.032288024, 9875405.0996497, 9877964.0625, 9888223.533562431, 9910021.252392802, 9911848.640489848, 9911947.791122707, 9912023.55172266, 9913510.84017576, 9913517.111060709, 9913631.078915773, 9914676.552859351, 9919579.609651187, 9931603.612280507, 9942943.355352432, 9987282.8125, 9997618.513443945, 10010504.42682767, 10032292.1875, 10056216.976213235, 10071688.521160977, 10075760.144277046, 10087499.526573453, 10093207.384853069, 10094237.5, 10096645.130877709, 10096739.484705184, 10096760.153075669, 10097248.52627909, 10097394.281799834, 10097812.245248325, 10098681.19581034, 10101800.530158564, 10102553.125, 10105770.3125, 10106137.130119605, 10106774.435283622, 10122868.00183262, 10123823.09873805, 10124189.74744296, 10124866.98624893, 10125257.709168253, 10125721.875, 10125836.945165036, 10141631.625418726, 10142826.222302116, 10142862.102174075, 10143121.875, 10143375.0, 10143613.36047682, 10143857.8125, 10144045.250128457, 10146453.157054221, 10148580.603244979, 10149814.0625, 10152892.603123723, 10154581.997787116, 10155815.625, 10157330.158152156, 10158991.412794707, 10159007.794940695, 10160834.429015236, 10162306.25, 10173868.045972686, 10174967.111284643, 10176391.511083204, 10177015.625, 10179591.052759709, 10185197.590168396, 10187059.27121488, 10187242.1875, 10199805.517983686, 10199849.073346851, 10207114.999757772, 10209862.834896542, 10211702.301479464, 10218566.847538348, 10220103.881231911, 10220463.547500191, 10226068.421747565, 10229607.597018637, 10244425.326255942, 10250257.856008759, 10252705.925052032, 10255975.751634385, 10257381.25, 10265043.353528753, 10265774.212463, 10282034.375, 10282318.051821047, 10284556.54853528, 10284616.423201589, 10300849.012549445, 10302605.818212828, 10309718.733394645, 10309718.862840103, 10312892.1875, 10315864.87665583, 10319894.29517656, 10349722.119140012, 10351977.546098934, 10365315.534432115, 10396718.57247984, 10402956.223666083, 10411520.3125, 10412062.317443522, 10412939.22878158, 10413092.1875, 10415911.829476584, 10419450.865117794, 10419890.611119932, 10423534.936680157, 10428028.125, 10428319.510951055, 10428857.11828263, 10429428.814446473, 10429533.843056217, 10431048.196948232, 10431161.204217097, 10431440.427105147, 10432546.385751538, 10433192.958311604, 10444988.457277039, 10448246.875, 10451827.567142548, 10451851.5625, 10452373.4375, 10452742.1875, 10452972.45281546, 10453355.402081553, 10453402.315193392, 10453734.687889434, 10453997.53344163, 10454072.70227946, 10454121.875, 10454866.068718588, 10455396.286477135, 10455754.526967537, 10455766.488938231, 10456467.1875, 10456737.277652567, 10457360.9375, 10457382.8125, 10457813.278435783, 10458422.356715892, 10458535.881511804, 10458578.125, 10459438.719468944, 10459794.356008422, 10459813.157292483, 10460154.7243454, 10460516.837246826, 10461696.875, 10461900.755227903, 10464936.054087847, 10465028.912874104, 10466323.642341789, 10466910.562463198, 10467126.5625, 10472495.3125, 10473189.866177922, 10473554.790506462, 10474004.6875, 10475842.235988362, 10475916.398439365, 10475965.625, 10476003.125, 10476275.705109045, 10476462.296759019, 10476525.787210332, 10476807.475593694, 10476950.0, 10477022.187000193, 10477166.40852077, 10477325.158152755, 10477426.5625, 10477438.997586412, 10477514.020556517, 10477613.14227493, 10477767.1875, 10477830.704062184, 10477908.465003274, 10477952.85490078, 10477994.17039949, 10478116.680684209, 10478207.8125, 10478245.81317037, 10478257.271654952, 10478276.423055923, 10478281.522329232, 10478334.295535939, 10478369.902235411, 10478465.134211455, 10478721.875, 10478779.6875, 10478821.906731624, 10478901.500669383, 10478914.126051156, 10478917.1875, 10479150.0, 10479166.168196695, 10479479.058859989, 10479485.251426896, 10479530.89827449, 10479721.875, 10479831.537176492, 10480060.05145149, 10480354.61785947, 10480661.63028486, 10481303.601916755, 10484093.787306596, 10485507.684239779, 10487112.5, 10488749.250726067, 10489723.391867224, 10490529.168707345, 10491045.096786601, 10491305.042389916, 10491329.6875, 10491593.270818949, 10492492.071562393, 10492824.471014151, 10492919.142938232, 10493390.876528576, 10493494.422627859, 10493989.413817896, 10494098.213676598, 10494395.105438005, 10495736.568574747, 10496037.5, 10496059.901264144, 10496856.25, 10496955.672788564, 10498076.296093414, 10500374.799441237, 10502157.555203797, 10502250.0, 10503090.625, 10504852.920385068, 10509173.4375, 10510900.241146578, 10511610.638622828, 10512211.376489168, 10512263.488961017, 10512342.265982712, 10512714.0625, 10512760.62888886, 10513481.25, 10513483.284204593, 10513856.25, 10513923.07974564, 10513966.32139672, 10515021.238886382, 10515330.366636854, 10515818.75, 10516046.741696524, 10516182.8125, 10516214.726315344, 10517026.237662084, 10517984.857347384, 10518326.5625, 10518476.5625, 10519056.047959456, 10519369.711544313, 10520022.349759907, 10520199.403885553, 10521039.447534563, 10521279.62397005, 10521665.625, 10522766.843949076, 10523950.172895791, 10523999.14374694, 10525522.042535301, 10527435.572520271, 10528167.618377974, 10528548.802281434, 10530450.0, 10530942.1875, 10532515.992318707, 10534575.03722486, 10543609.375, 10544962.888533864, 10544993.514670175, 10545148.40177023, 10545206.794770358, 10545590.625, 10546530.516919812, 10546948.4375, 10546974.821927972, 10547512.5, 10547784.375, 10548381.243945304, 10548702.757478727, 10548857.192974973, 10549245.333359234, 10549402.49600952, 10549557.167595454, 10549846.717500929, 10550192.51099029, 10550870.443367185, 10551182.597896863, 10551662.5, 10552004.497482397, 10552233.2573011, 10552418.75, 10552921.319324575, 10553107.8125, 10553464.730520383, 10553748.4375, 10554064.01379918, 10554506.062311001, 10554702.73254174, 10554763.077001035, 10559659.46681565, 10564452.495533837, 10565106.450972956, 10565138.929061886, 10568889.033194177, 10569204.4311135, 10569909.438584018, 10570075.161757534, 10571273.4375, 10571445.3125, 10573729.880230824, 10574144.063040474, 10575257.8125, 10575323.968122108, 10576251.720598476, 10576514.969543051, 10577288.736865722, 10578350.358532825, 10579288.477059584, 10580451.5625, 10580550.0, 10580957.8125, 10580962.916017748, 10582007.728142925, 10583508.859583303, 10590898.944257226, 10591577.632125568, 10593481.776788859, 10594230.532632824, 10594422.538230086, 10598623.169827474, 10598920.260745041, 10598995.3125, 10600206.893571632, 10602046.563986039, 10602698.47090199, 10603238.685834592, 10603260.29770286, 10606241.695741039, 10616312.5, 10626464.0625, 10626501.5625, 10626871.839711426, 10627503.027022997, 10627646.663162837, 10628132.660105728, 10628821.875, 10629022.364055594, 10630142.1875, 10631090.514904035, 10632604.764138835, 10633017.1875, 10633759.762711462, 10634270.3125, 10637834.218269838, 10638029.6875, 10638097.954585534, 10638261.298638728, 10639195.291427769, 10639460.9375, 10657737.90749556, 10658121.38745488, 10660271.565959776, 10663092.002105039, 10663531.376606317, 10664512.671940466, 10666272.706825664, 10666276.120378936, 10666381.25, 10666712.5, 10668089.02718415, 10668615.296702273, 10668637.341056246, 10668652.24814985, 10668900.0, 10668946.421858158, 10669158.849878497, 10670103.360477863, 10670819.927017285, 10671338.777113363, 10672676.37021403, 10673570.265937125, 10675111.366162289, 10675235.363776455, 10683335.9375, 10684268.179139717, 10684285.597009672, 10684294.486398824, 10684370.3125, 10684493.579859314, 10684632.249581713, 10684707.8125, 10684754.6875, 10684840.426027672, 10685118.72374606, 10685348.897219202, 10685410.032071324, 10685518.881417302, 10685637.022156868, 10685639.820018921, 10685681.25, 10685688.868868496, 10685785.9375, 10685844.817904877, 10686212.5, 10686291.683896882, 10686363.998145428, 10686369.318891715, 10686429.6875, 10686446.875, 10686595.435536116, 10686604.978990275, 10686625.889663639, 10686656.25, 10686881.25, 10687061.826483639, 10687642.069403727, 10690677.392141799, 10690743.75, 10691298.4375, 10691365.619490387, 10691445.5848848, 10691546.875, 10691853.65129062, 10692007.55460907, 10692102.398115668, 10692110.351275422, 10693373.96604773, 10693380.835736914, 10693912.076116212, 10694058.610337686, 10694141.832455996, 10694457.472524114, 10695433.394864408, 10696019.717934325, 10697222.385159267, 10697664.238776706, 10697742.984349882, 10697866.14338905, 10698089.237045003, 10698457.431227963, 10698831.731237324, 10699030.034060258, 10699337.5, 10699471.875, 10699484.115127118, 10699551.5625, 10699570.3125, 10699594.7542846, 10699615.625, 10699635.9375, 10699668.612755898, 10699778.142770046, 10699793.75, 10699800.0, 10699805.977552036, 10699806.25, 10699814.0625, 10699833.396636289, 10699861.484574769, 10699898.062651081, 10699907.279087247, 10699931.25, 10699932.977346843, 10699935.329934515, 10699940.625, 10699945.048259435, 10699954.47421739, 10699955.938450033, 10700040.625, 10700068.133443937, 10700076.233919797, 10700092.85542561, 10700093.949159628, 10700131.25, 10700136.094510468, 10700139.488069024, 10700146.968395457, 10700185.9375, 10700211.154581714, 10700239.079780918, 10700243.75, 10700246.31867731, 10700282.258939356, 10700337.555055631, 10700340.226164915, 10700343.75, 10700349.343235059, 10700375.514448186, 10700379.422395747, 10700388.982949452, 10700398.593548052, 10700412.32595659, 10700424.06603408, 10700435.570601568, 10700437.396466587, 10700442.1875, 10700448.4375, 10700454.680756437, 10700496.276728269, 10700514.335347256, 10700517.142954698, 10700526.5625, 10700528.358591553, 10700533.782919465, 10700569.578246558, 10700579.64032422, 10700609.375, 10700629.460177686, 10700638.254217649, 10700642.1875, 10700642.58378876, 10700650.0, 10700651.11456161, 10700665.3017401, 10700670.3125, 10700674.080279702, 10700678.70496129, 10700693.275897749, 10700695.768375514, 10700714.0625, 10700726.530299993, 10700752.285692764, 10700753.088025713, 10700759.787246216, 10700768.318354864, 10700775.0, 10700803.323463354, 10700807.00384657, 10700808.056841763, 10700811.513970062, 10700846.875, 10700860.6593127, 10700864.070661293, 10700885.38109107, 10700901.5625, 10700929.6875, 10700937.896876013, 10700957.359948503, 10700960.9375, 10701010.763028286, 10701053.381881319, 10701066.65746338, 10701071.875, 10701087.199991828, 10701092.059844766, 10701096.875, 10701104.6875, 10701107.8125, 10701108.50026635, 10701122.830115123, 10701174.195652809, 10701176.001234083, 10701179.428360853, 10701228.125, 10701260.9375, 10701267.1875, 10701270.3125, 10701276.272736292, 10701286.234070025, 10701308.727652231, 10701347.475286823, 10701359.375, 10701368.663431676, 10701373.688530361, 10701385.385664487, 10701398.4375, 10701419.319034217, 10701428.857170194, 10701470.15329376, 10701476.846764188, 10701517.801353354, 10701523.83888568, 10701523.956710517, 10701525.94937926, 10701654.6875, 10701670.3125, 10701735.9375, 10701876.67107058, 10701903.598365784, 10701943.75, 10701968.878997713, 10702020.270620942, 10702058.872204406, 10702173.713882534, 10702210.578747315, 10702214.377483908, 10702226.5625, 10702335.719063807, 10702386.09965105, 10702402.711624982, 10702403.337666169, 10702454.850770116, 10702486.83284433, 10702655.637236968, 10702658.979420267, 10702892.1875, 10703126.92953801, 10703190.625, 10703269.381512247, 10703296.798791971, 10703498.4375, 10703525.279711483, 10703556.25, 10703994.406392286, 10704016.651981607, 10705275.0604427, 10706721.36780991, 10707148.4375, 10707786.276674306, 10708058.160930887, 10708650.172400186, 10709318.755971393, 10709823.298547246, 10709871.15584392, 10710015.414405571, 10710130.214448921, 10710498.98280172, 10710583.453943415, 10711244.075442512, 10711398.703014255, 10713482.8125, 10713750.06711464, 10713923.015299711, 10714239.944365824, 10714404.132125711, 10714710.9375, 10714813.809158614, 10714824.686311075, 10714836.03296889, 10715029.318697182, 10715116.705627996, 10715130.983914468, 10715181.25, 10715209.375, 10715278.366010893, 10715289.0625, 10715351.05006122, 10715460.893797515, 10715482.718553457, 10715507.711260216, 10715516.775766056, 10715533.158550097, 10715538.629057303, 10715542.485364893, 10715579.6829506, 10715625.8563743, 10715709.375, 10715785.320584515, 10715810.6832637, 10715852.625781683, 10715890.474714926, 10716097.678846631, 10716121.079077289, 10716132.126178788, 10716161.732346963, 10716175.456425538, 10716176.5625, 10716312.5, 10716324.458578443, 10716435.154680707, 10716495.188169487, 10716496.525893617, 10716498.4375, 10716553.642414704, 10716630.291102387, 10716717.1875, 10716857.871877886, 10716871.454207668, 10716893.951292394, 10716907.8125, 10716912.598195652, 10716914.73221168, 10716967.1875, 10716980.592745228, 10717031.421777466, 10717129.149950473, 10717170.082005804, 10717379.6875, 10717386.099583339, 10717426.113722773, 10717759.514241336, 10717770.245306836, 10717865.625, 10718010.474946676, 10718077.874468938, 10718142.464885198, 10718260.386967154, 10718454.346402086, 10718672.70923016, 10718875.893900068, 10719029.6875, 10719388.912962114, 10721159.252385378, 10722150.458115004, 10722263.896356862, 10722493.75, 10723213.604687205, 10723516.30971546, 10724139.03403514, 10724306.857201466, 10724356.097526737, 10724627.835453376, 10724859.375, 10724914.0625, 10725135.793040423, 10725157.853958042, 10725209.375, 10726668.75, 10726940.274985246, 10727027.526133321, 10727195.3125, 10727199.35144409, 10727246.875, 10727402.729592016, 10727435.7297701, 10727538.607289104, 10727879.142327694, 10728520.143646363, 10728792.1875, 10729898.060344636, 10730599.372378303, 10733560.828337988, 10734231.185901327, 10734266.459316684, 10734535.9375, 10734660.896077521, 10735432.361672396, 10735736.151575958, 10735928.125, 10735946.491818625, 10736282.8125, 10737651.708320428, 10738236.028409729, 10738662.297442151, 10739098.322191715, 10740168.260092543, 10740313.547065983, 10740334.576630918, 10740582.029413862, 10740750.535251513, 10740817.167112568, 10740911.323248794, 10741073.4375, 10741125.0, 10741198.4375, 10741342.802767903, 10741920.072765162, 10741951.827926578, 10742259.375, 10742334.375, 10742453.962009244, 10746225.0, 10747603.383890253, 10750227.029137459, 10751669.571563844, 10751782.8125, 10752335.957063837, 10752536.232588697, 10752655.230343273, 10752685.870224658, 10753510.371892173, 10753728.267070794, 10754001.290386824, 10754466.270961596, 10754643.75, 10754683.673991773, 10754724.02750776, 10755056.035004841, 10755953.832738213, 10755971.402228571, 10756151.43127632, 10757123.189923877, 10757457.129791046, 10757500.0, 10758224.370842136, 10758634.287881343, 10761579.6875, 10764074.584221853, 10764335.637784168, 10764395.073483469, 10764821.73088243, 10765328.097499598, 10766797.87371059, 10769259.264503874, 10769352.054221043, 10770997.01763446, 10772155.26660115, 10773309.375, 10775288.032670578, 10776136.008548329, 10778840.567219397, 10780203.383833053, 10780281.716449648, 10781765.309869077, 10781851.965523347, 10784159.375, 10787781.25, 10787881.997842593, 10787947.772337826, 10788078.245580291, 10788823.4375, 10789012.55106321, 10789154.89032481, 10789208.668732028, 10789312.596854093, 10789373.4375, 10789477.770419415, 10789503.810948657, 10789591.59431889, 10790187.5, 10790243.07108102, 10790340.866043314, 10790347.27216624, 10790980.143016016, 10791607.17157499, 10791820.3125, 10791929.6875, 10792759.375, 10793245.828311333, 10793403.166976998, 10794107.024007205, 10794562.219037294, 10794679.6875, 10795314.651178438, 10795367.1875, 10795682.53968048, 10795906.087672606, 10795930.977134574, 10797964.935022315, 10798636.603043023, 10798860.033809135, 10799266.605396042, 10799275.38805079, 10801802.76987547, 10807754.964521935, 10808211.14049458, 10808390.028551968, 10808391.289873367, 10810138.869602343, 10810722.61014942, 10811080.6470268, 10811343.75, 10811543.75, 10811805.418630151, 10813635.831428437, 10814387.5, 10814663.483913915, 10816792.1875, 10826470.24799454, 10826634.196486495, 10828125.181562593, 10828378.125, 10828907.509957807, 10829325.651141135, 10829712.5, 10829875.0, 10830113.952186268, 10831808.760640886, 10836567.1875, 10836997.071310125, 10837345.3125, 10840753.125, 10840842.1875, 10841339.0625, 10843253.125, 10844806.570025984, 10845171.559162542, 10845910.724760348, 10847134.386006683, 10847542.1875, 10849186.339934958, 10849831.972646868, 10849845.72358593, 10850800.247675972, 10852001.5625, 10852660.661969218, 10852979.333255902, 10853970.3125, 10854456.857609382, 10854502.147714492, 10854958.814084057, 10856839.687355082, 10857439.6821317, 10858500.435379654, 10860164.0625, 10862014.0625, 10862185.9375, 10862774.507608084, 10863255.209802266, ...], [30.796637343642857, 33.26312207465909, 25.298588265314727, 7.9024994184965855, 32.57045305022489, 94.7217820234381, 113.58011488963804, 40.95664035945936, 8.443598112361093, 17.05114789447526, 16.896722966278745, 42.87034423702456, 41.41022227626997, 6.900756430034902, 14.692670217483208, 60.33956342108331, 15.41360699251111, 15.117468163035463, 74.5096965081182, 56.092603680534054, 79.24755162822088, 16.830918793699368, 11.401197829885486, 102.74496530226892, 74.57162403063042, 52.91236645089826, 6.683267228867082, 5.780781457968032, 55.03985399951876, 26.385709078085686, 47.53792523997544, 52.78936233756846, 29.027804200710126, 68.11219040274253, 53.65224037190932, 9.491083684399358, 89.86306165918205, 102.50907459786274, 6.682994289323931, 26.257481561301397, 12.066076800369324, 52.523363779683834, 41.23792091202819, 57.797980892760265, 15.541216152206925, 12.379548343945922, 13.41530477609564, 35.83498083206732, 9.795608901916545, 39.95700448346315, 31.170746226668694, 77.54049128043702, 32.38628159997459, 60.60834105765186, 8.114024911459904, 85.9070206796375, 10.270774008261641, 21.20680487055059, 9.145467470346937, 71.00580358485256, 52.823448753413814, 68.22853741049497, 20.316587897034015, 7.718763771663237, 44.288291647353205, 51.886416202127194, 16.092383144996166, 23.659540663245945, 8.38178375533718, 12.375967202574248, 24.74418130452632, 15.076371905102253, 7.6893372144343095, 87.00784500015229, 59.40041529814386, 19.298820664225374, 19.957751095006287, 30.861788048916342, 78.48663990926092, 11.88329971729721, 34.646406438255404, 125.22521405099826, 48.981401235417614, 7.801178943029453, 57.029809160256576, 6.114771013870862, 5.859502764988771, 10.717856881489283, 5.083064256060769, 39.53126715476054, 6.948304921192926, 74.17848401097646, 62.12903680739005, 66.73656322683262, 26.467440282257023, 8.56927883925819, 27.51877744207825, 42.70096207596474, 8.5172566761155, 80.67542744185005, 39.2895977448232, 20.351416652482474, 65.5398195735265, 23.996220632070667, 5.13295086814317, 26.73799330065383, 11.01029293241117, 25.55008157646056, 35.895473806097506, 56.80646801464972, 96.72368732795047, 92.18321355013344, 62.66597551390256, 102.16821996406946, 5.333068042536894, 79.54685959232646, 73.05316061774172, 13.214236337719278, 28.593427492444803, 109.96976146916671, 22.24655762659642, 31.727159452230993, 5.923743298882929, 18.511601562803264, 48.92483404934393, 15.29104663224354, 16.624072461197123, 7.51362578847106, 19.991968329318443, 36.03586031611563, 54.1603678591163, 39.658272557887656, 6.4306313691781165, 83.48409082780827, 34.27232165217062, 67.41106355725182, 6.600104014166535, 9.166840322562857, 26.63628783822274, 81.3501799244111, 37.59519087129728, 16.59561338179315, 12.042469875108122, 37.94569813615866, 92.78068138595236, 67.75108074602436, 6.0180157677004, 33.535809353222625, 27.348635415366246, 9.358654697972433, 62.92077913525588, 30.487741292240294, 9.709433447547212, 108.1273474969019, 85.9953108467573, 95.83090879076144, 39.63103245520445, 79.48103566040197, 5.5357078270227635, 37.66156326878638, 12.799963665658975, 27.102837630482938, 19.89697159838416, 32.64869972363157, 7.765642303241591, 106.52905519525714, 14.560154033088695, 78.2468849468369, 33.149586303195, 23.861575876844967, 20.328545475302132, 7.729028016081827, 18.776769682066877, 80.15066053696866, 6.612552555770406, 13.285151968296693, 46.72999824698227, 8.175822103425109, 7.725660902199697, 51.471285444025135, 10.655135252173741, 27.643634098923634, 42.98122467524002, 20.593422131329415, 12.60197833493493, 98.28407425082884, 84.95802506400561, 12.637822672916915, 27.205446760165998, 17.70433702226694, 8.991171267534636, 7.597242830479801, 6.5049265922339154, 83.40296597338194, 19.32832068096352, 25.734210799192965, 20.14335420680361, 20.740544219771117, 26.853490626019294, 32.31409521210496, 28.014096643511053, 37.40167398586104, 25.37654864013255, 24.235990638788067, 66.24324272093621, 21.11836196711398, 5.663767118459743, 62.33721634519937, 5.486402222176956, 118.03268781734776, 27.254012861494566, 83.01287311149031, 18.435012198714922, 21.485709802882248, 29.861045600627477, 16.065892711924995, 9.169495741629937, 39.0320549407891, 5.315506077405504, 10.297367121539068, 44.794352192569846, 20.934725254385995, 45.31172277587511, 92.84806654753703, 50.171840764182114, 132.00105993122466, 18.60638780872738, 18.87433865960458, 16.28520070073471, 14.937134148361974, 74.63059951217286, 51.56159752024824, 9.737062395049604, 90.58515828057597, 20.312982326189783, 19.717352450600504, 30.092032911538272, 10.797083004836892, 99.75913011365361, 71.20250863830356, 10.089513346276343, 8.558876716242272, 55.06902693525947, 76.05891351016493, 38.99582231606949, 39.563107383697265, 31.843871873207267, 5.399884467553444, 31.006207974702527, 87.15052240515692, 12.55653593705549, 5.822657428150386, 5.0835092355943035, 37.830121871562255, 35.979657578778614, 51.84717877177699, 71.26408035089005, 20.99955025532821, 15.349215495868563, 66.48547141343582, 6.494719164190964, 24.13477674167539, 29.59326739504909, 89.54910949203514, 18.54131552919405, 25.070738064578542, 5.184109833155706, 13.796075936910837, 54.85908285912105, 7.7201202330269805, 12.621840155758349, 28.570234892890007, 41.977837697702775, 27.30310422563671, 14.784014687675384, 12.305768965675478, 110.11477437610904, 84.14808046497998, 18.190468192449877, 59.466471741275505, 13.317102719516658, 10.418274097629025, 44.59305256125184, 30.693115727823734, 5.673180577862838, 62.039518943521855, 11.581839095474965, 5.163515039934675, 13.578717871651051, 73.35534634582669, 50.04992298124709, 68.62166404336934, 9.35837895427295, 27.35834736536238, 9.385723638072578, 48.67774439372321, 113.35974004382246, 19.96219040595747, 20.299150117850356, 19.54365975279691, 5.035666107106341, 59.08432016457258, 11.608350448985593, 18.34801423018034, 27.2189160253684, 18.457536507707477, 11.96507193037218, 15.08563717887476, 11.371911766183889, 67.26382186361256, 12.691530465604975, 42.879643787384204, 20.854182156260936, 10.80648101958207, 25.56867914942533, 102.98874046693983, 27.487159128042727, 26.4258477849869, 29.503698825379615, 94.8345474808573, 9.553543215582224, 148.37269748230858, 16.474078967311094, 29.219964169654233, 44.31102757340327, 74.84221827476794, 90.1303285197007, 5.217040119670474, 29.658529683791773, 8.003232829208036, 14.014820642151408, 53.95048894340283, 24.297665060781554, 50.893744252276505, 71.91870602932019, 96.22613381926209, 61.579238537081146, 15.947867452822475, 23.76509483185929, 45.11551086064425, 6.197356965843156, 15.249331512900836, 56.573095146106326, 36.407542153500636, 75.2889616138325, 7.783245883396376, 63.40194246637999, 5.035566210704497, 47.14355781144851, 10.260398833043489, 73.73918139333095, 53.59656225479909, 26.142366049237523, 95.90251615774176, 5.490998302815505, 37.82463804853867, 136.47582218975208, 70.81472191293352, 79.70744783765147, 59.317172842799195, 28.296490187801226, 11.960820403251994, 20.585053032888666, 6.317102010134236, 27.327864538639886, 35.49171682652962, 23.209935293021548, 61.42462494505332, 12.445881431599854, 48.363368993216405, 30.391522552609587, 46.4084992193503, 29.61001650698178, 41.563640255596574, 57.286582703184415, 9.662584610325435, 119.50601961134676, 29.16160660297437, 103.32628670398176, 14.11449045935753, 52.01239618080009, 5.742328581311641, 84.94625050007997, 19.445494965381734, 29.64432790704521, 6.728469072324184, 54.026838137172575, 73.53116686540193, 9.326288828687618, 13.70413391803069, 41.10945090229813, 5.815525284656024, 20.296124239932524, 215.6640409923674, 25.759313322408065, 27.559433149904223, 16.75940541453819, 6.0660631189636804, 56.13482322162136, 14.2635512364276, 11.902252576754913, 38.71329603121577, 20.95512340626672, 54.6819111807346, 72.0590277648328, 63.92411686235303, 25.673649134180266, 10.846484977126686, 5.193537258849553, 9.872102730713108, 37.12195364351712, 83.7838486349045, 11.45707544143785, 5.606704431346865, 42.65599737529824, 10.749288271233322, 25.61404918363813, 97.24935984823215, 33.96807696045946, 96.37247692430459, 89.98382782279248, 18.130231720322833, 80.82562769165165, 52.365738029412825, 6.287381768456861, 5.6662752965634615, 10.654206739583659, 9.654151254020396, 20.68112398421614, 40.32601996219045, 34.730897680518865, 66.41701851479084, 16.805941659060306, 45.992606851838346, 18.43485102875358, 17.303160054870364, 23.64658018125519, 28.696832649423804, 6.380225314851915, 6.596339498939224, 5.520229059840725, 65.65774105140582, 79.58422052328706, 18.132613659181104, 77.862785534435, 6.271427711544804, 13.677018132334737, 12.958815014720193, 67.12126538602605, 77.00798890053699, 31.395421157830093, 40.86035962657215, 79.83581580564024, 42.79891781892721, 11.028457859085918, 25.83900566701532, 39.04099268071185, 17.20307253499698, 52.58027149202209, 14.537847657437855, 11.249649156372419, 124.32591626788025, 16.658544649625117, 30.02878649853816, 82.54436438688981, 39.254873360772265, 13.373084134374329, 11.74336202504409, 62.35959404920233, 83.58098371133303, 112.38707965119937, 73.43870379749013, 60.72147655966836, 95.41321869293287, 25.01640499497121, 15.640031978997271, 78.14397522240226, 10.500468873393137, 65.04700291894851, 50.210417779299846, 5.531369003183802, 10.650605935402416, 29.060840783423853, 18.409483297361756, 35.59639886353168, 7.007220121677036, 13.25776672526631, 10.387161251931447, 9.025422385039288, 13.95494082976739, 25.231586820901786, 27.63589125188733, 6.852213420800411, 152.88670784577698, 77.92485682914347, 20.504597308421687, 23.246954927612077, 8.718585760205372, 29.529308954497218, 105.45739256800718, 42.85803609038925, 52.99378274467341, 55.93714601725397, 21.37873448398082, 56.923837876568435, 17.04055963338626, 9.956525752367895, 11.339527321619338, 23.003433793512393, 73.62434500003415, 82.2058546899538, 10.42470244384435, 60.862124691752975, 16.475023331373965, 81.94566105447751, 148.8538328427571, 14.701765059495473, 12.150890474837087, 89.71688948446183, 94.84443664790332, 8.352730486021375, 6.533776754683438, 13.242396353804482, 60.27553812145462, 68.24591675267347, 7.959868123301925, 78.25019407144691, 60.494368902561455, 57.56772203987475, 88.6701705146458, 25.53493222305381, 16.09237857726248, 45.01380647839938, 17.415427429042246, 24.303953729109097, 16.358832369784746, 5.43715538172163, 26.747446829606822, 13.567157162602241, 22.287560226295692, 74.31037808717934, 137.77874508350723, 7.0348609227942696, 17.74878494416079, 5.504903819162409, 6.333879261131605, 15.658839880986333, 19.1976504185434, 17.369780160219307, 11.41195067347562, 84.62239276128592, 9.774405087897309, 9.642701975814, 41.535131714533335, 49.47204559628814, 10.744432888104306, 120.11492987124238, 57.075599699856504, 10.354517031701029, 45.57705969259507, 43.22832263803471, 55.987760079105456, 7.609677475150241, 42.378277173686406, 127.91310318672292, 25.745729882384072, 68.73444780396264, 41.10695819107791, 17.759595923199438, 9.84119711851937, 28.630079096255425, 20.267076487022962, 100.36380918089228, 15.609398617134365, 20.483236495954387, 105.78605098620376, 24.218524813171143, 82.06126714430155, 10.673316280320607, 78.45845080148499, 20.404186874372005, 23.392407373712995, 18.291516666967254, 23.234624607181424, 34.00985297948691, 9.467789352265282, 9.719181437451118, 15.309853264236326, 59.511892802941766, 5.102752869363065, 6.7669614802837135, 102.30094683523046, 41.41078776273198, 29.719315144980918, 23.697605184449092, 69.7413694173903, 33.315006889201754, 45.900426624672534, 71.99512505497354, 18.822224437807428, 27.044403965896908, 15.571631518263551, 9.188451302098025, 18.036292210134548, 116.06048263661683, 63.494968895861874, 50.33343754889774, 68.42856535142762, 21.252603407010277, 60.59677297073374, 16.09454496958551, 32.818972866330675, 89.65870547079096, 15.913449112802194, 13.080740671481895, 7.357636011756444, 27.62462072855098, 81.2148744351509, 32.150254568285845, 18.8852646036679, 57.67223934006918, 68.33547803898566, 135.53839504638566, 22.028654028049267, 9.072249906849398, 29.498281266938367, 48.67307216460371, 7.827392574504606, 105.56321020507096, 11.923797322251854, 107.74414700102193, 9.304323855199154, 18.666062842953888, 27.813644093301317, 9.7061309763636, 22.20319859276965, 146.3712062229269, 26.385703242400297, 5.49508027741684, 62.238797436115775, 12.166605607639411, 83.85280264806093, 89.88096334751252, 8.290897874066928, 49.71343675372907, 53.61219750958369, 29.134866452702628, 16.7058835370298, 32.75570998744204, 46.58781701599425, 5.6957434115264345, 9.558485456718264, 21.198611972539855, 63.48221402238512, 80.01734080990771, 26.233766602540165, 29.63139065093855, 42.772360435054814, 38.40216883345693, 89.54920512480113, 13.041261037353527, 40.63516420222625, 5.43818124821948, 11.195667260357443, 44.54391416529743, 54.98081587697627, 41.69172459817158, 72.61881298240881, 19.06680394533585, 16.206756375549478, 15.102744535348897, 22.018343677697057, 59.88972002203445, 6.746346067991378, 7.189041342731413, 6.403931022521124, 58.77575655140244, 12.151185394377187, 5.266109970482948, 10.887653316553221, 16.14828233656837, 17.943545057415285, 14.339282433616969, 39.15818899901222, 20.434300392814475, 49.642628823561985, 56.25860708997781, 92.07238464658771, 7.64298356010339, 5.0496122942215, 91.7526741965521, 67.15690616896929, 8.264554449518862, 94.57698526324174, 45.873966960413455, 42.981873759374174, 114.16395212700228, 107.87351192841139, 26.728415758622692, 39.30500518981897, 36.52376043066971, 22.816240849557815, 28.28939190895825, 85.5994294574453, 20.43744249276221, 62.497690152537444, 72.54780774707197, 9.662314762773422, 41.896999747686316, 18.05526158174181, 14.658783823367084, 29.131757367242475, 12.522150599333314, 199.1486073358156, 12.336271088629125, 8.022330223851947, 21.9348588143529, 13.306397115602833, 37.688056579326435, 16.413750348934187, 53.80225958046739, 15.642022993764513, 91.50738451640544, 23.687969761873806, 112.78692189747665, 19.602271762625648, 12.065042300592065, 92.33816027429722, 39.73476866713018, 16.34625006827462, 48.213894988111626, 40.66714560366475, 5.6177679045026725, 107.7063423557251, 34.556252608271606, 19.354239489640406, 49.65797815274942, 47.28220690421412, 23.577445409433714, 11.280283339164292, 22.90994274732552, 59.59514229873449, 24.19383926212069, 92.3639896061053, 55.720782963976546, 14.968247200666315, 63.68638891188709, 5.44019371112312, 45.74950766686921, 14.595124812450527, 26.67159924526596, 87.39174889493876, 16.44783500170652, 52.05654206465515, 16.212942921266812, 15.848600787398675, 5.663245230859119, 68.72651403414721, 61.219572836943435, 24.353457348302832, 22.34620940997543, 14.39804720256727, 24.86686871640724, 37.38376537285299, 7.372536720822204, 28.462431732075224, 11.924870567896939, 52.028134917611965, 41.32429353947986, 26.907895829419566, 6.9298305068462716, 27.811797517401324, 23.14310791310335, 87.53737526387182, 17.364173425373924, 8.633832224572954, 99.99823347429253, 5.710547424049018, 22.32138493316779, 7.67770117308021, 140.11250817576212, 32.13175360121781, 84.45226501303699, 76.00233069438279, 15.231474732666834, 11.407258263795221, 6.986969426785648, 6.238509781328689, 121.48096829800643, 15.597509485322401, 22.019760104696214, 7.158541414526746, 24.521670779121667, 45.47502167901974, 5.511044742105484, 24.403897686371664, 16.11584555772789, 21.00339643603537, 23.239594294700968, 12.741519033940783, 6.636983942882449, 118.25543420994453, 25.883856722061964, 14.49388589482321, 23.809835344115474, 77.59468555206985, 103.57513432407688, 105.44737139400448, 6.908363159927662, 47.62417048169573, 150.79609268165206, 42.65777436998599, 15.615985121078168, 55.98239633985584, 40.51402382926397, 25.964060167331713, 11.193132671732618, 52.49957840214439, 29.160342254112958, 45.524307296313715, 25.987495353918266, 47.21497557296999, 20.129000898680587, 64.4055034004349, 22.60402037625125, 64.58903220765256, 95.00328411478395, 13.396443402453464, 25.584155094300765, 30.048543654119555, 13.67556966226897, 17.341842842946043, 41.191895948208, 20.502250785849405, 48.20367299720157, 55.3740367720767, 6.755264972498724, 5.442743596998264, 7.682544960836561, 33.152626428716545, 34.83223990976631, 68.9800636054088, 9.457823183400391, 6.781792729386972, 130.82868299617616, 26.43625935742056, 86.65930000682036, 5.8957410957575, 23.068418280236955, 106.82492978189826, 47.8462847305992, 14.864367328692774, 8.501675523445684, 68.06062215908048, 42.867058310645106, 56.65549540906757, 17.952426915823573, 5.691668644211641, 32.354277408528326, 30.19842601696166, 60.7111316139035, 19.50443982328319, 54.000774411830164, 52.280037995654, 11.944852054976355, 8.774721876105984, 64.21248620854401, 140.15149599727283, 216.9105675570357, 7.271854750424396, 14.691140999864444, 42.47259473985179, 15.512154390091858, 38.545035128639434, 9.944658554734785, 47.48694323542988, 188.26371465234706, 90.6015728655368, 10.807500145010914, 12.449206426072926, 19.680895138664248, 120.34956846189485, 9.130484037239059, 10.20549544765063, 31.444417247902592, 100.52270697942211, 14.619535185665832, 37.1586196966231, 50.227404538951006, 6.230059792447047, 24.562283190479054, 25.969483066107827, 18.191534199582552, 20.879524058411697, 74.67833271951073, 83.62255853099558, 15.514540760483312, 78.15673518132343, 34.56093963566127, 27.03598917141251, 94.44619157078746, 13.717146093343104, 9.560289844229086, 9.759625307184272, 28.92328940629237, 5.106471875413861, 127.96838149348672, 52.99707668652315, 147.41823283989817, 23.560184498399778, 15.421924829942835, 40.917661305858005, 20.553190745438517, 15.775367669135937, 46.74697765390174, 7.147146544208226, 88.4235657609475, 8.107566483273597, 7.871723284408097, 29.09112662119842, 87.78975793110577, 43.99458586154833, 13.91724989544378, 9.691435407736767, 31.86217700173973, 20.193764206133125, 71.06256350165198, 51.12085118316752, 114.12958187517418, 29.567229861597966, 21.35918730058185, 15.554073442552948, 6.708681575727387, 70.11493787815024, 17.787389248431513, 35.328482919169446, 24.104256642849624, 31.066250143416937, 13.994360257577847, 17.585594708480926, 12.356167313186756, 5.998908223971971, 8.001004787535463, 56.962548651540004, 22.075405412825127, 114.56006872740747, 22.738215921490017, 8.873323450921449, 18.27140127963763, 63.47571035560942, 18.749753995342907, 101.52521108480367, 47.64952768120292, 52.51296819889374, 18.721512079877346, 31.131690392617386, 62.61519061457996, 37.29220458581668, 65.4127322411413, 129.9153068320815, 8.194379720476894, 49.25361411424812, 54.421921130862124, 18.948912089465153, 45.81301634379987, 73.34344109443802, 56.84820028664273, 72.56477661520726, 7.986383368455912, 106.66598188040052, 43.31173313538296, 71.40816346063392, 68.94741756084191, 92.64152289916416, 42.21490892815815, 43.566841489791635, 22.867523386657396, 40.66366791543731, 63.78328888534953, 14.182852734593503, 81.38668580036756, 9.696560670146207, 18.66226501189247, 166.74033267139293, 115.95003286893726, 44.17480540268439, 24.068416414659996, 8.10772866869417, 85.0568202595793, 17.904477598227423, 7.829563597362955, 13.162251387173901, 42.2150449977918, 90.59591641785033, 27.806164814494508, 51.58205581194842, 68.25718239341981, 69.44934952784257, 91.76257051411427, 17.392346861442743, ...])
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);
([5267042.95343815, 5755980.928770148, 5844859.1872277325, 5977710.132979584, 6221837.264307179, 6229200.657285842, 7233095.188103509, 8866893.75, 9084440.910576856, 9090432.931750404, 9105029.219610976, 9107331.865104053, 9165829.6875, 9200875.650684005, 9229574.93314544, 9273949.369946083, 9292351.387335263, 9300594.376284499, 9333419.184943954, 9336070.07114127, 9336825.863891235, 9336883.233248211, 9338075.297410244, 9349785.9375, 9402143.6271707, 9406282.8125, 9418383.959342984, 9427071.416002808, 9441585.9375, 9451622.25340593, 9497326.5625, 9504964.414166173, 9505477.786292037, 9506107.8125, 9506246.875, 9506314.24549664, 9506389.0625, 9506710.9375, 9506807.395380588, 9506811.470421048, 9506947.402459892, 9506998.758666744, 9507237.138849145, 9507480.38774169, 9507481.398918912, 9507653.539970275, 9508091.719770463, 9509987.5, 9512205.18981263, 9512232.8125, 9513398.003716469, 9525918.499921128, 9526392.949051244, 9530535.9375, 9550435.596296458, 9597810.9375, 9604032.185094716, 9617210.28145155, 9617671.646600565, 9617721.875, 9618087.5, 9619388.85163868, 9622325.856605493, 9625698.746002998, 9625754.6875, 9632176.5625, 9634890.897385776, 9638702.817826506, 9648089.23829966, 9649225.674604492, 9661613.836486856, 9663345.401489083, 9669093.981939638, 9698050.312461928, 9736446.413646506, 9750305.90980649, 9768588.814029334, 9773051.095736185, 9784322.775181867, 9793111.372506687, 9795679.6875, 9795762.29087989, 9797585.9375, 9801336.453512821, 9805951.5625, 9806490.877634667, 9806575.596851982, 9806677.845950376, 9806942.95183772, 9808012.283867193, 9808999.297656346, 9810793.75, 9810967.1875, 9811840.625, 9814604.574072892, 9819586.436388932, 9824717.134539256, 9850622.032288024, 9875405.0996497, 9877964.0625, 9888223.533562431, 9910021.252392802, 9911848.640489848, 9911947.791122707, 9912023.55172266, 9913510.84017576, 9913517.111060709, 9913631.078915773, 9914676.552859351, 9919579.609651187, 9931603.612280507, 9942943.355352432, 9987282.8125, 9997618.513443945, 10010504.42682767, 10032292.1875, 10056216.976213235, 10071688.521160977, 10075760.144277046, 10087499.526573453, 10093207.384853069, 10094237.5, 10096645.130877709, 10096739.484705184, 10096760.153075669, 10097248.52627909, 10097394.281799834, 10097812.245248325, 10098681.19581034, 10101800.530158564, 10102553.125, 10105770.3125, 10106137.130119605, 10106774.435283622, 10122868.00183262, 10123823.09873805, 10124189.74744296, 10124866.98624893, 10125257.709168253, 10125721.875, 10125836.945165036, 10141631.625418726, 10142826.222302116, 10142862.102174075, 10143121.875, 10143375.0, 10143613.36047682, 10143857.8125, 10144045.250128457, 10146453.157054221, 10148580.603244979, 10149814.0625, 10152892.603123723, 10154581.997787116, 10155815.625, 10157330.158152156, 10158991.412794707, 10159007.794940695, 10160834.429015236, 10162306.25, 10173868.045972686, 10174967.111284643, 10176391.511083204, 10177015.625, 10179591.052759709, 10185197.590168396, 10187059.27121488, 10187242.1875, 10199805.517983686, 10199849.073346851, 10207114.999757772, 10209862.834896542, 10211702.301479464, 10218566.847538348, 10220103.881231911, 10220463.547500191, 10226068.421747565, 10229607.597018637, 10244425.326255942, 10250257.856008759, 10252705.925052032, 10255975.751634385, 10257381.25, 10265043.353528753, 10265774.212463, 10282034.375, 10282318.051821047, 10284556.54853528, 10284616.423201589, 10300849.012549445, 10302605.818212828, 10309718.733394645, 10309718.862840103, 10312892.1875, 10315864.87665583, 10319894.29517656, 10349722.119140012, 10351977.546098934, 10365315.534432115, 10396718.57247984, 10402956.223666083, 10411520.3125, 10412062.317443522, 10412939.22878158, 10413092.1875, 10415911.829476584, 10419450.865117794, 10419890.611119932, 10423534.936680157, 10428028.125, 10428319.510951055, 10428857.11828263, 10429428.814446473, 10429533.843056217, 10431048.196948232, 10431161.204217097, 10431440.427105147, 10432546.385751538, 10433192.958311604, 10444988.457277039, 10448246.875, 10451827.567142548, 10451851.5625, 10452373.4375, 10452742.1875, 10452972.45281546, 10453355.402081553, 10453402.315193392, 10453734.687889434, 10453997.53344163, 10454072.70227946, 10454121.875, 10454866.068718588, 10455396.286477135, 10455754.526967537, 10455766.488938231, 10456467.1875, 10456737.277652567, 10457360.9375, 10457382.8125, 10457813.278435783, 10458422.356715892, 10458535.881511804, 10458578.125, 10459438.719468944, 10459794.356008422, 10459813.157292483, 10460154.7243454, 10460516.837246826, 10461696.875, 10461900.755227903, 10464936.054087847, 10465028.912874104, 10466323.642341789, 10466910.562463198, 10467126.5625, 10472495.3125, 10473189.866177922, 10473554.790506462, 10474004.6875, 10475842.235988362, 10475916.398439365, 10475965.625, 10476003.125, 10476275.705109045, 10476462.296759019, 10476525.787210332, 10476807.475593694, 10476950.0, 10477022.187000193, 10477166.40852077, 10477325.158152755, 10477426.5625, 10477438.997586412, 10477514.020556517, 10477613.14227493, 10477767.1875, 10477830.704062184, 10477908.465003274, 10477952.85490078, 10477994.17039949, 10478116.680684209, 10478207.8125, 10478245.81317037, 10478257.271654952, 10478276.423055923, 10478281.522329232, 10478334.295535939, 10478369.902235411, 10478465.134211455, 10478721.875, 10478779.6875, 10478821.906731624, 10478901.500669383, 10478914.126051156, 10478917.1875, 10479150.0, 10479166.168196695, 10479479.058859989, 10479485.251426896, 10479530.89827449, 10479721.875, 10479831.537176492, 10480060.05145149, 10480354.61785947, 10480661.63028486, 10481303.601916755, 10484093.787306596, 10485507.684239779, 10487112.5, 10488749.250726067, 10489723.391867224, 10490529.168707345, 10491045.096786601, 10491305.042389916, 10491329.6875, 10491593.270818949, 10492492.071562393, 10492824.471014151, 10492919.142938232, 10493390.876528576, 10493494.422627859, 10493989.413817896, 10494098.213676598, 10494395.105438005, 10495736.568574747, 10496037.5, 10496059.901264144, 10496856.25, 10496955.672788564, 10498076.296093414, 10500374.799441237, 10502157.555203797, 10502250.0, 10503090.625, 10504852.920385068, 10509173.4375, 10510900.241146578, 10511610.638622828, 10512211.376489168, 10512263.488961017, 10512342.265982712, 10512714.0625, 10512760.62888886, 10513481.25, 10513483.284204593, 10513856.25, 10513923.07974564, 10513966.32139672, 10515021.238886382, 10515330.366636854, 10515818.75, 10516046.741696524, 10516182.8125, 10516214.726315344, 10517026.237662084, 10517984.857347384, 10518326.5625, 10518476.5625, 10519056.047959456, 10519369.711544313, 10520022.349759907, 10520199.403885553, 10521039.447534563, 10521279.62397005, 10521665.625, 10522766.843949076, 10523950.172895791, 10523999.14374694, 10525522.042535301, 10527435.572520271, 10528167.618377974, 10528548.802281434, 10530450.0, 10530942.1875, 10532515.992318707, 10534575.03722486, 10543609.375, 10544962.888533864, 10544993.514670175, 10545148.40177023, 10545206.794770358, 10545590.625, 10546530.516919812, 10546948.4375, 10546974.821927972, 10547512.5, 10547784.375, 10548381.243945304, 10548702.757478727, 10548857.192974973, 10549245.333359234, 10549402.49600952, 10549557.167595454, 10549846.717500929, 10550192.51099029, 10550870.443367185, 10551182.597896863, 10551662.5, 10552004.497482397, 10552233.2573011, 10552418.75, 10552921.319324575, 10553107.8125, 10553464.730520383, 10553748.4375, 10554064.01379918, 10554506.062311001, 10554702.73254174, 10554763.077001035, 10559659.46681565, 10564452.495533837, 10565106.450972956, 10565138.929061886, 10568889.033194177, 10569204.4311135, 10569909.438584018, 10570075.161757534, 10571273.4375, 10571445.3125, 10573729.880230824, 10574144.063040474, 10575257.8125, 10575323.968122108, 10576251.720598476, 10576514.969543051, 10577288.736865722, 10578350.358532825, 10579288.477059584, 10580451.5625, 10580550.0, 10580957.8125, 10580962.916017748, 10582007.728142925, 10583508.859583303, 10590898.944257226, 10591577.632125568, 10593481.776788859, 10594230.532632824, 10594422.538230086, 10598623.169827474, 10598920.260745041, 10598995.3125, 10600206.893571632, 10602046.563986039, 10602698.47090199, 10603238.685834592, 10603260.29770286, 10606241.695741039, 10616312.5, 10626464.0625, 10626501.5625, 10626871.839711426, 10627503.027022997, 10627646.663162837, 10628132.660105728, 10628821.875, 10629022.364055594, 10630142.1875, 10631090.514904035, 10632604.764138835, 10633017.1875, 10633759.762711462, 10634270.3125, 10637834.218269838, 10638029.6875, 10638097.954585534, 10638261.298638728, 10639195.291427769, 10639460.9375, 10657737.90749556, 10658121.38745488, 10660271.565959776, 10663092.002105039, 10663531.376606317, 10664512.671940466, 10666272.706825664, 10666276.120378936, 10666381.25, 10666712.5, 10668089.02718415, 10668615.296702273, 10668637.341056246, 10668652.24814985, 10668900.0, 10668946.421858158, 10669158.849878497, 10670103.360477863, 10670819.927017285, 10671338.777113363, 10672676.37021403, 10673570.265937125, 10675111.366162289, 10675235.363776455, 10683335.9375, 10684268.179139717, 10684285.597009672, 10684294.486398824, 10684370.3125, 10684493.579859314, 10684632.249581713, 10684707.8125, 10684754.6875, 10684840.426027672, 10685118.72374606, 10685348.897219202, 10685410.032071324, 10685518.881417302, 10685637.022156868, 10685639.820018921, 10685681.25, 10685688.868868496, 10685785.9375, 10685844.817904877, 10686212.5, 10686291.683896882, 10686363.998145428, 10686369.318891715, 10686429.6875, 10686446.875, 10686595.435536116, 10686604.978990275, 10686625.889663639, 10686656.25, 10686881.25, 10687061.826483639, 10687642.069403727, 10690677.392141799, 10690743.75, 10691298.4375, 10691365.619490387, 10691445.5848848, 10691546.875, 10691853.65129062, 10692007.55460907, 10692102.398115668, 10692110.351275422, 10693373.96604773, 10693380.835736914, 10693912.076116212, 10694058.610337686, 10694141.832455996, 10694457.472524114, 10695433.394864408, 10696019.717934325, 10697222.385159267, 10697664.238776706, 10697742.984349882, 10697866.14338905, 10698089.237045003, 10698457.431227963, 10698831.731237324, 10699030.034060258, 10699337.5, 10699471.875, 10699484.115127118, 10699551.5625, 10699570.3125, 10699594.7542846, 10699615.625, 10699635.9375, 10699668.612755898, 10699778.142770046, 10699793.75, 10699800.0, 10699805.977552036, 10699806.25, 10699814.0625, 10699833.396636289, 10699861.484574769, 10699898.062651081, 10699907.279087247, 10699931.25, 10699932.977346843, 10699935.329934515, 10699940.625, 10699945.048259435, 10699954.47421739, 10699955.938450033, 10700040.625, 10700068.133443937, 10700076.233919797, 10700092.85542561, 10700093.949159628, 10700131.25, 10700136.094510468, 10700139.488069024, 10700146.968395457, 10700185.9375, 10700211.154581714, 10700239.079780918, 10700243.75, 10700246.31867731, 10700282.258939356, 10700337.555055631, 10700340.226164915, 10700343.75, 10700349.343235059, 10700375.514448186, 10700379.422395747, 10700388.982949452, 10700398.593548052, 10700412.32595659, 10700424.06603408, 10700435.570601568, 10700437.396466587, 10700442.1875, 10700448.4375, 10700454.680756437, 10700496.276728269, 10700514.335347256, 10700517.142954698, 10700526.5625, 10700528.358591553, 10700533.782919465, 10700569.578246558, 10700579.64032422, 10700609.375, 10700629.460177686, 10700638.254217649, 10700642.1875, 10700642.58378876, 10700650.0, 10700651.11456161, 10700665.3017401, 10700670.3125, 10700674.080279702, 10700678.70496129, 10700693.275897749, 10700695.768375514, 10700714.0625, 10700726.530299993, 10700752.285692764, 10700753.088025713, 10700759.787246216, 10700768.318354864, 10700775.0, 10700803.323463354, 10700807.00384657, 10700808.056841763, 10700811.513970062, 10700846.875, 10700860.6593127, 10700864.070661293, 10700885.38109107, 10700901.5625, 10700929.6875, 10700937.896876013, 10700957.359948503, 10700960.9375, 10701010.763028286, 10701053.381881319, 10701066.65746338, 10701071.875, 10701087.199991828, 10701092.059844766, 10701096.875, 10701104.6875, 10701107.8125, 10701108.50026635, 10701122.830115123, 10701174.195652809, 10701176.001234083, 10701179.428360853, 10701228.125, 10701260.9375, 10701267.1875, 10701270.3125, 10701276.272736292, 10701286.234070025, 10701308.727652231, 10701347.475286823, 10701359.375, 10701368.663431676, 10701373.688530361, 10701385.385664487, 10701398.4375, 10701419.319034217, 10701428.857170194, 10701470.15329376, 10701476.846764188, 10701517.801353354, 10701523.83888568, 10701523.956710517, 10701525.94937926, 10701654.6875, 10701670.3125, 10701735.9375, 10701876.67107058, 10701903.598365784, 10701943.75, 10701968.878997713, 10702020.270620942, 10702058.872204406, 10702173.713882534, 10702210.578747315, 10702214.377483908, 10702226.5625, 10702335.719063807, 10702386.09965105, 10702402.711624982, 10702403.337666169, 10702454.850770116, 10702486.83284433, 10702655.637236968, 10702658.979420267, 10702892.1875, 10703126.92953801, 10703190.625, 10703269.381512247, 10703296.798791971, 10703498.4375, 10703525.279711483, 10703556.25, 10703994.406392286, 10704016.651981607, 10705275.0604427, 10706721.36780991, 10707148.4375, 10707786.276674306, 10708058.160930887, 10708650.172400186, 10709318.755971393, 10709823.298547246, 10709871.15584392, 10710015.414405571, 10710130.214448921, 10710498.98280172, 10710583.453943415, 10711244.075442512, 10711398.703014255, 10713482.8125, 10713750.06711464, 10713923.015299711, 10714239.944365824, 10714404.132125711, 10714710.9375, 10714813.809158614, 10714824.686311075, 10714836.03296889, 10715029.318697182, 10715116.705627996, 10715130.983914468, 10715181.25, 10715209.375, 10715278.366010893, 10715289.0625, 10715351.05006122, 10715460.893797515, 10715482.718553457, 10715507.711260216, 10715516.775766056, 10715533.158550097, 10715538.629057303, 10715542.485364893, 10715579.6829506, 10715625.8563743, 10715709.375, 10715785.320584515, 10715810.6832637, 10715852.625781683, 10715890.474714926, 10716097.678846631, 10716121.079077289, 10716132.126178788, 10716161.732346963, 10716175.456425538, 10716176.5625, 10716312.5, 10716324.458578443, 10716435.154680707, 10716495.188169487, 10716496.525893617, 10716498.4375, 10716553.642414704, 10716630.291102387, 10716717.1875, 10716857.871877886, 10716871.454207668, 10716893.951292394, 10716907.8125, 10716912.598195652, 10716914.73221168, 10716967.1875, 10716980.592745228, 10717031.421777466, 10717129.149950473, 10717170.082005804, 10717379.6875, 10717386.099583339, 10717426.113722773, 10717759.514241336, 10717770.245306836, 10717865.625, 10718010.474946676, 10718077.874468938, 10718142.464885198, 10718260.386967154, 10718454.346402086, 10718672.70923016, 10718875.893900068, 10719029.6875, 10719388.912962114, 10721159.252385378, 10722150.458115004, 10722263.896356862, 10722493.75, 10723213.604687205, 10723516.30971546, 10724139.03403514, 10724306.857201466, 10724356.097526737, 10724627.835453376, 10724859.375, 10724914.0625, 10725135.793040423, 10725157.853958042, 10725209.375, 10726668.75, 10726940.274985246, 10727027.526133321, 10727195.3125, 10727199.35144409, 10727246.875, 10727402.729592016, 10727435.7297701, 10727538.607289104, 10727879.142327694, 10728520.143646363, 10728792.1875, 10729898.060344636, 10730599.372378303, 10733560.828337988, 10734231.185901327, 10734266.459316684, 10734535.9375, 10734660.896077521, 10735432.361672396, 10735736.151575958, 10735928.125, 10735946.491818625, 10736282.8125, 10737651.708320428, 10738236.028409729, 10738662.297442151, 10739098.322191715, 10740168.260092543, 10740313.547065983, 10740334.576630918, 10740582.029413862, 10740750.535251513, 10740817.167112568, 10740911.323248794, 10741073.4375, 10741125.0, 10741198.4375, 10741342.802767903, 10741920.072765162, 10741951.827926578, 10742259.375, 10742334.375, 10742453.962009244, 10746225.0, 10747603.383890253, 10750227.029137459, 10751669.571563844, 10751782.8125, 10752335.957063837, 10752536.232588697, 10752655.230343273, 10752685.870224658, 10753510.371892173, 10753728.267070794, 10754001.290386824, 10754466.270961596, 10754643.75, 10754683.673991773, 10754724.02750776, 10755056.035004841, 10755953.832738213, 10755971.402228571, 10756151.43127632, 10757123.189923877, 10757457.129791046, 10757500.0, 10758224.370842136, 10758634.287881343, 10761579.6875, 10764074.584221853, 10764335.637784168, 10764395.073483469, 10764821.73088243, 10765328.097499598, 10766797.87371059, 10769259.264503874, 10769352.054221043, 10770997.01763446, 10772155.26660115, 10773309.375, 10775288.032670578, 10776136.008548329, 10778840.567219397, 10780203.383833053, 10780281.716449648, 10781765.309869077, 10781851.965523347, 10784159.375, 10787781.25, 10787881.997842593, 10787947.772337826, 10788078.245580291, 10788823.4375, 10789012.55106321, 10789154.89032481, 10789208.668732028, 10789312.596854093, 10789373.4375, 10789477.770419415, 10789503.810948657, 10789591.59431889, 10790187.5, 10790243.07108102, 10790340.866043314, 10790347.27216624, 10790980.143016016, 10791607.17157499, 10791820.3125, 10791929.6875, 10792759.375, 10793245.828311333, 10793403.166976998, 10794107.024007205, 10794562.219037294, 10794679.6875, 10795314.651178438, 10795367.1875, 10795682.53968048, 10795906.087672606, 10795930.977134574, 10797964.935022315, 10798636.603043023, 10798860.033809135, 10799266.605396042, 10799275.38805079, 10801802.76987547, 10807754.964521935, 10808211.14049458, 10808390.028551968, 10808391.289873367, 10810138.869602343, 10810722.61014942, 10811080.6470268, 10811343.75, 10811543.75, 10811805.418630151, 10813635.831428437, 10814387.5, 10814663.483913915, 10816792.1875, 10826470.24799454, 10826634.196486495, 10828125.181562593, 10828378.125, 10828907.509957807, 10829325.651141135, 10829712.5, 10829875.0, 10830113.952186268, 10831808.760640886, 10836567.1875, 10836997.071310125, 10837345.3125, 10840753.125, 10840842.1875, 10841339.0625, 10843253.125, 10844806.570025984, 10845171.559162542, 10845910.724760348, 10847134.386006683, 10847542.1875, 10849186.339934958, 10849831.972646868, 10849845.72358593, 10850800.247675972, 10852001.5625, 10852660.661969218, 10852979.333255902, 10853970.3125, 10854456.857609382, 10854502.147714492, 10854958.814084057, 10856839.687355082, 10857439.6821317, 10858500.435379654, 10860164.0625, 10862014.0625, 10862185.9375, 10862774.507608084, 10863255.209802266, ...], [30.796637343642857, 33.26312207465909, 25.298588265314727, 7.9024994184965855, 32.57045305022489, 94.7217820234381, 113.58011488963804, 40.95664035945936, 8.443598112361093, 17.05114789447526, 16.896722966278745, 42.87034423702456, 41.41022227626997, 6.900756430034902, 14.692670217483208, 60.33956342108331, 15.41360699251111, 15.117468163035463, 74.5096965081182, 56.092603680534054, 79.24755162822088, 16.830918793699368, 11.401197829885486, 102.74496530226892, 74.57162403063042, 52.91236645089826, 6.683267228867082, 5.780781457968032, 55.03985399951876, 26.385709078085686, 47.53792523997544, 52.78936233756846, 29.027804200710126, 68.11219040274253, 53.65224037190932, 9.491083684399358, 89.86306165918205, 102.50907459786274, 6.682994289323931, 26.257481561301397, 12.066076800369324, 52.523363779683834, 41.23792091202819, 57.797980892760265, 15.541216152206925, 12.379548343945922, 13.41530477609564, 35.83498083206732, 9.795608901916545, 39.95700448346315, 31.170746226668694, 77.54049128043702, 32.38628159997459, 60.60834105765186, 8.114024911459904, 85.9070206796375, 10.270774008261641, 21.20680487055059, 9.145467470346937, 71.00580358485256, 52.823448753413814, 68.22853741049497, 20.316587897034015, 7.718763771663237, 44.288291647353205, 51.886416202127194, 16.092383144996166, 23.659540663245945, 8.38178375533718, 12.375967202574248, 24.74418130452632, 15.076371905102253, 7.6893372144343095, 87.00784500015229, 59.40041529814386, 19.298820664225374, 19.957751095006287, 30.861788048916342, 78.48663990926092, 11.88329971729721, 34.646406438255404, 125.22521405099826, 48.981401235417614, 7.801178943029453, 57.029809160256576, 6.114771013870862, 5.859502764988771, 10.717856881489283, 5.083064256060769, 39.53126715476054, 6.948304921192926, 74.17848401097646, 62.12903680739005, 66.73656322683262, 26.467440282257023, 8.56927883925819, 27.51877744207825, 42.70096207596474, 8.5172566761155, 80.67542744185005, 39.2895977448232, 20.351416652482474, 65.5398195735265, 23.996220632070667, 5.13295086814317, 26.73799330065383, 11.01029293241117, 25.55008157646056, 35.895473806097506, 56.80646801464972, 96.72368732795047, 92.18321355013344, 62.66597551390256, 102.16821996406946, 5.333068042536894, 79.54685959232646, 73.05316061774172, 13.214236337719278, 28.593427492444803, 109.96976146916671, 22.24655762659642, 31.727159452230993, 5.923743298882929, 18.511601562803264, 48.92483404934393, 15.29104663224354, 16.624072461197123, 7.51362578847106, 19.991968329318443, 36.03586031611563, 54.1603678591163, 39.658272557887656, 6.4306313691781165, 83.48409082780827, 34.27232165217062, 67.41106355725182, 6.600104014166535, 9.166840322562857, 26.63628783822274, 81.3501799244111, 37.59519087129728, 16.59561338179315, 12.042469875108122, 37.94569813615866, 92.78068138595236, 67.75108074602436, 6.0180157677004, 33.535809353222625, 27.348635415366246, 9.358654697972433, 62.92077913525588, 30.487741292240294, 9.709433447547212, 108.1273474969019, 85.9953108467573, 95.83090879076144, 39.63103245520445, 79.48103566040197, 5.5357078270227635, 37.66156326878638, 12.799963665658975, 27.102837630482938, 19.89697159838416, 32.64869972363157, 7.765642303241591, 106.52905519525714, 14.560154033088695, 78.2468849468369, 33.149586303195, 23.861575876844967, 20.328545475302132, 7.729028016081827, 18.776769682066877, 80.15066053696866, 6.612552555770406, 13.285151968296693, 46.72999824698227, 8.175822103425109, 7.725660902199697, 51.471285444025135, 10.655135252173741, 27.643634098923634, 42.98122467524002, 20.593422131329415, 12.60197833493493, 98.28407425082884, 84.95802506400561, 12.637822672916915, 27.205446760165998, 17.70433702226694, 8.991171267534636, 7.597242830479801, 6.5049265922339154, 83.40296597338194, 19.32832068096352, 25.734210799192965, 20.14335420680361, 20.740544219771117, 26.853490626019294, 32.31409521210496, 28.014096643511053, 37.40167398586104, 25.37654864013255, 24.235990638788067, 66.24324272093621, 21.11836196711398, 5.663767118459743, 62.33721634519937, 5.486402222176956, 118.03268781734776, 27.254012861494566, 83.01287311149031, 18.435012198714922, 21.485709802882248, 29.861045600627477, 16.065892711924995, 9.169495741629937, 39.0320549407891, 5.315506077405504, 10.297367121539068, 44.794352192569846, 20.934725254385995, 45.31172277587511, 92.84806654753703, 50.171840764182114, 132.00105993122466, 18.60638780872738, 18.87433865960458, 16.28520070073471, 14.937134148361974, 74.63059951217286, 51.56159752024824, 9.737062395049604, 90.58515828057597, 20.312982326189783, 19.717352450600504, 30.092032911538272, 10.797083004836892, 99.75913011365361, 71.20250863830356, 10.089513346276343, 8.558876716242272, 55.06902693525947, 76.05891351016493, 38.99582231606949, 39.563107383697265, 31.843871873207267, 5.399884467553444, 31.006207974702527, 87.15052240515692, 12.55653593705549, 5.822657428150386, 5.0835092355943035, 37.830121871562255, 35.979657578778614, 51.84717877177699, 71.26408035089005, 20.99955025532821, 15.349215495868563, 66.48547141343582, 6.494719164190964, 24.13477674167539, 29.59326739504909, 89.54910949203514, 18.54131552919405, 25.070738064578542, 5.184109833155706, 13.796075936910837, 54.85908285912105, 7.7201202330269805, 12.621840155758349, 28.570234892890007, 41.977837697702775, 27.30310422563671, 14.784014687675384, 12.305768965675478, 110.11477437610904, 84.14808046497998, 18.190468192449877, 59.466471741275505, 13.317102719516658, 10.418274097629025, 44.59305256125184, 30.693115727823734, 5.673180577862838, 62.039518943521855, 11.581839095474965, 5.163515039934675, 13.578717871651051, 73.35534634582669, 50.04992298124709, 68.62166404336934, 9.35837895427295, 27.35834736536238, 9.385723638072578, 48.67774439372321, 113.35974004382246, 19.96219040595747, 20.299150117850356, 19.54365975279691, 5.035666107106341, 59.08432016457258, 11.608350448985593, 18.34801423018034, 27.2189160253684, 18.457536507707477, 11.96507193037218, 15.08563717887476, 11.371911766183889, 67.26382186361256, 12.691530465604975, 42.879643787384204, 20.854182156260936, 10.80648101958207, 25.56867914942533, 102.98874046693983, 27.487159128042727, 26.4258477849869, 29.503698825379615, 94.8345474808573, 9.553543215582224, 148.37269748230858, 16.474078967311094, 29.219964169654233, 44.31102757340327, 74.84221827476794, 90.1303285197007, 5.217040119670474, 29.658529683791773, 8.003232829208036, 14.014820642151408, 53.95048894340283, 24.297665060781554, 50.893744252276505, 71.91870602932019, 96.22613381926209, 61.579238537081146, 15.947867452822475, 23.76509483185929, 45.11551086064425, 6.197356965843156, 15.249331512900836, 56.573095146106326, 36.407542153500636, 75.2889616138325, 7.783245883396376, 63.40194246637999, 5.035566210704497, 47.14355781144851, 10.260398833043489, 73.73918139333095, 53.59656225479909, 26.142366049237523, 95.90251615774176, 5.490998302815505, 37.82463804853867, 136.47582218975208, 70.81472191293352, 79.70744783765147, 59.317172842799195, 28.296490187801226, 11.960820403251994, 20.585053032888666, 6.317102010134236, 27.327864538639886, 35.49171682652962, 23.209935293021548, 61.42462494505332, 12.445881431599854, 48.363368993216405, 30.391522552609587, 46.4084992193503, 29.61001650698178, 41.563640255596574, 57.286582703184415, 9.662584610325435, 119.50601961134676, 29.16160660297437, 103.32628670398176, 14.11449045935753, 52.01239618080009, 5.742328581311641, 84.94625050007997, 19.445494965381734, 29.64432790704521, 6.728469072324184, 54.026838137172575, 73.53116686540193, 9.326288828687618, 13.70413391803069, 41.10945090229813, 5.815525284656024, 20.296124239932524, 215.6640409923674, 25.759313322408065, 27.559433149904223, 16.75940541453819, 6.0660631189636804, 56.13482322162136, 14.2635512364276, 11.902252576754913, 38.71329603121577, 20.95512340626672, 54.6819111807346, 72.0590277648328, 63.92411686235303, 25.673649134180266, 10.846484977126686, 5.193537258849553, 9.872102730713108, 37.12195364351712, 83.7838486349045, 11.45707544143785, 5.606704431346865, 42.65599737529824, 10.749288271233322, 25.61404918363813, 97.24935984823215, 33.96807696045946, 96.37247692430459, 89.98382782279248, 18.130231720322833, 80.82562769165165, 52.365738029412825, 6.287381768456861, 5.6662752965634615, 10.654206739583659, 9.654151254020396, 20.68112398421614, 40.32601996219045, 34.730897680518865, 66.41701851479084, 16.805941659060306, 45.992606851838346, 18.43485102875358, 17.303160054870364, 23.64658018125519, 28.696832649423804, 6.380225314851915, 6.596339498939224, 5.520229059840725, 65.65774105140582, 79.58422052328706, 18.132613659181104, 77.862785534435, 6.271427711544804, 13.677018132334737, 12.958815014720193, 67.12126538602605, 77.00798890053699, 31.395421157830093, 40.86035962657215, 79.83581580564024, 42.79891781892721, 11.028457859085918, 25.83900566701532, 39.04099268071185, 17.20307253499698, 52.58027149202209, 14.537847657437855, 11.249649156372419, 124.32591626788025, 16.658544649625117, 30.02878649853816, 82.54436438688981, 39.254873360772265, 13.373084134374329, 11.74336202504409, 62.35959404920233, 83.58098371133303, 112.38707965119937, 73.43870379749013, 60.72147655966836, 95.41321869293287, 25.01640499497121, 15.640031978997271, 78.14397522240226, 10.500468873393137, 65.04700291894851, 50.210417779299846, 5.531369003183802, 10.650605935402416, 29.060840783423853, 18.409483297361756, 35.59639886353168, 7.007220121677036, 13.25776672526631, 10.387161251931447, 9.025422385039288, 13.95494082976739, 25.231586820901786, 27.63589125188733, 6.852213420800411, 152.88670784577698, 77.92485682914347, 20.504597308421687, 23.246954927612077, 8.718585760205372, 29.529308954497218, 105.45739256800718, 42.85803609038925, 52.99378274467341, 55.93714601725397, 21.37873448398082, 56.923837876568435, 17.04055963338626, 9.956525752367895, 11.339527321619338, 23.003433793512393, 73.62434500003415, 82.2058546899538, 10.42470244384435, 60.862124691752975, 16.475023331373965, 81.94566105447751, 148.8538328427571, 14.701765059495473, 12.150890474837087, 89.71688948446183, 94.84443664790332, 8.352730486021375, 6.533776754683438, 13.242396353804482, 60.27553812145462, 68.24591675267347, 7.959868123301925, 78.25019407144691, 60.494368902561455, 57.56772203987475, 88.6701705146458, 25.53493222305381, 16.09237857726248, 45.01380647839938, 17.415427429042246, 24.303953729109097, 16.358832369784746, 5.43715538172163, 26.747446829606822, 13.567157162602241, 22.287560226295692, 74.31037808717934, 137.77874508350723, 7.0348609227942696, 17.74878494416079, 5.504903819162409, 6.333879261131605, 15.658839880986333, 19.1976504185434, 17.369780160219307, 11.41195067347562, 84.62239276128592, 9.774405087897309, 9.642701975814, 41.535131714533335, 49.47204559628814, 10.744432888104306, 120.11492987124238, 57.075599699856504, 10.354517031701029, 45.57705969259507, 43.22832263803471, 55.987760079105456, 7.609677475150241, 42.378277173686406, 127.91310318672292, 25.745729882384072, 68.73444780396264, 41.10695819107791, 17.759595923199438, 9.84119711851937, 28.630079096255425, 20.267076487022962, 100.36380918089228, 15.609398617134365, 20.483236495954387, 105.78605098620376, 24.218524813171143, 82.06126714430155, 10.673316280320607, 78.45845080148499, 20.404186874372005, 23.392407373712995, 18.291516666967254, 23.234624607181424, 34.00985297948691, 9.467789352265282, 9.719181437451118, 15.309853264236326, 59.511892802941766, 5.102752869363065, 6.7669614802837135, 102.30094683523046, 41.41078776273198, 29.719315144980918, 23.697605184449092, 69.7413694173903, 33.315006889201754, 45.900426624672534, 71.99512505497354, 18.822224437807428, 27.044403965896908, 15.571631518263551, 9.188451302098025, 18.036292210134548, 116.06048263661683, 63.494968895861874, 50.33343754889774, 68.42856535142762, 21.252603407010277, 60.59677297073374, 16.09454496958551, 32.818972866330675, 89.65870547079096, 15.913449112802194, 13.080740671481895, 7.357636011756444, 27.62462072855098, 81.2148744351509, 32.150254568285845, 18.8852646036679, 57.67223934006918, 68.33547803898566, 135.53839504638566, 22.028654028049267, 9.072249906849398, 29.498281266938367, 48.67307216460371, 7.827392574504606, 105.56321020507096, 11.923797322251854, 107.74414700102193, 9.304323855199154, 18.666062842953888, 27.813644093301317, 9.7061309763636, 22.20319859276965, 146.3712062229269, 26.385703242400297, 5.49508027741684, 62.238797436115775, 12.166605607639411, 83.85280264806093, 89.88096334751252, 8.290897874066928, 49.71343675372907, 53.61219750958369, 29.134866452702628, 16.7058835370298, 32.75570998744204, 46.58781701599425, 5.6957434115264345, 9.558485456718264, 21.198611972539855, 63.48221402238512, 80.01734080990771, 26.233766602540165, 29.63139065093855, 42.772360435054814, 38.40216883345693, 89.54920512480113, 13.041261037353527, 40.63516420222625, 5.43818124821948, 11.195667260357443, 44.54391416529743, 54.98081587697627, 41.69172459817158, 72.61881298240881, 19.06680394533585, 16.206756375549478, 15.102744535348897, 22.018343677697057, 59.88972002203445, 6.746346067991378, 7.189041342731413, 6.403931022521124, 58.77575655140244, 12.151185394377187, 5.266109970482948, 10.887653316553221, 16.14828233656837, 17.943545057415285, 14.339282433616969, 39.15818899901222, 20.434300392814475, 49.642628823561985, 56.25860708997781, 92.07238464658771, 7.64298356010339, 5.0496122942215, 91.7526741965521, 67.15690616896929, 8.264554449518862, 94.57698526324174, 45.873966960413455, 42.981873759374174, 114.16395212700228, 107.87351192841139, 26.728415758622692, 39.30500518981897, 36.52376043066971, 22.816240849557815, 28.28939190895825, 85.5994294574453, 20.43744249276221, 62.497690152537444, 72.54780774707197, 9.662314762773422, 41.896999747686316, 18.05526158174181, 14.658783823367084, 29.131757367242475, 12.522150599333314, 199.1486073358156, 12.336271088629125, 8.022330223851947, 21.9348588143529, 13.306397115602833, 37.688056579326435, 16.413750348934187, 53.80225958046739, 15.642022993764513, 91.50738451640544, 23.687969761873806, 112.78692189747665, 19.602271762625648, 12.065042300592065, 92.33816027429722, 39.73476866713018, 16.34625006827462, 48.213894988111626, 40.66714560366475, 5.6177679045026725, 107.7063423557251, 34.556252608271606, 19.354239489640406, 49.65797815274942, 47.28220690421412, 23.577445409433714, 11.280283339164292, 22.90994274732552, 59.59514229873449, 24.19383926212069, 92.3639896061053, 55.720782963976546, 14.968247200666315, 63.68638891188709, 5.44019371112312, 45.74950766686921, 14.595124812450527, 26.67159924526596, 87.39174889493876, 16.44783500170652, 52.05654206465515, 16.212942921266812, 15.848600787398675, 5.663245230859119, 68.72651403414721, 61.219572836943435, 24.353457348302832, 22.34620940997543, 14.39804720256727, 24.86686871640724, 37.38376537285299, 7.372536720822204, 28.462431732075224, 11.924870567896939, 52.028134917611965, 41.32429353947986, 26.907895829419566, 6.9298305068462716, 27.811797517401324, 23.14310791310335, 87.53737526387182, 17.364173425373924, 8.633832224572954, 99.99823347429253, 5.710547424049018, 22.32138493316779, 7.67770117308021, 140.11250817576212, 32.13175360121781, 84.45226501303699, 76.00233069438279, 15.231474732666834, 11.407258263795221, 6.986969426785648, 6.238509781328689, 121.48096829800643, 15.597509485322401, 22.019760104696214, 7.158541414526746, 24.521670779121667, 45.47502167901974, 5.511044742105484, 24.403897686371664, 16.11584555772789, 21.00339643603537, 23.239594294700968, 12.741519033940783, 6.636983942882449, 118.25543420994453, 25.883856722061964, 14.49388589482321, 23.809835344115474, 77.59468555206985, 103.57513432407688, 105.44737139400448, 6.908363159927662, 47.62417048169573, 150.79609268165206, 42.65777436998599, 15.615985121078168, 55.98239633985584, 40.51402382926397, 25.964060167331713, 11.193132671732618, 52.49957840214439, 29.160342254112958, 45.524307296313715, 25.987495353918266, 47.21497557296999, 20.129000898680587, 64.4055034004349, 22.60402037625125, 64.58903220765256, 95.00328411478395, 13.396443402453464, 25.584155094300765, 30.048543654119555, 13.67556966226897, 17.341842842946043, 41.191895948208, 20.502250785849405, 48.20367299720157, 55.3740367720767, 6.755264972498724, 5.442743596998264, 7.682544960836561, 33.152626428716545, 34.83223990976631, 68.9800636054088, 9.457823183400391, 6.781792729386972, 130.82868299617616, 26.43625935742056, 86.65930000682036, 5.8957410957575, 23.068418280236955, 106.82492978189826, 47.8462847305992, 14.864367328692774, 8.501675523445684, 68.06062215908048, 42.867058310645106, 56.65549540906757, 17.952426915823573, 5.691668644211641, 32.354277408528326, 30.19842601696166, 60.7111316139035, 19.50443982328319, 54.000774411830164, 52.280037995654, 11.944852054976355, 8.774721876105984, 64.21248620854401, 140.15149599727283, 216.9105675570357, 7.271854750424396, 14.691140999864444, 42.47259473985179, 15.512154390091858, 38.545035128639434, 9.944658554734785, 47.48694323542988, 188.26371465234706, 90.6015728655368, 10.807500145010914, 12.449206426072926, 19.680895138664248, 120.34956846189485, 9.130484037239059, 10.20549544765063, 31.444417247902592, 100.52270697942211, 14.619535185665832, 37.1586196966231, 50.227404538951006, 6.230059792447047, 24.562283190479054, 25.969483066107827, 18.191534199582552, 20.879524058411697, 74.67833271951073, 83.62255853099558, 15.514540760483312, 78.15673518132343, 34.56093963566127, 27.03598917141251, 94.44619157078746, 13.717146093343104, 9.560289844229086, 9.759625307184272, 28.92328940629237, 5.106471875413861, 127.96838149348672, 52.99707668652315, 147.41823283989817, 23.560184498399778, 15.421924829942835, 40.917661305858005, 20.553190745438517, 15.775367669135937, 46.74697765390174, 7.147146544208226, 88.4235657609475, 8.107566483273597, 7.871723284408097, 29.09112662119842, 87.78975793110577, 43.99458586154833, 13.91724989544378, 9.691435407736767, 31.86217700173973, 20.193764206133125, 71.06256350165198, 51.12085118316752, 114.12958187517418, 29.567229861597966, 21.35918730058185, 15.554073442552948, 6.708681575727387, 70.11493787815024, 17.787389248431513, 35.328482919169446, 24.104256642849624, 31.066250143416937, 13.994360257577847, 17.585594708480926, 12.356167313186756, 5.998908223971971, 8.001004787535463, 56.962548651540004, 22.075405412825127, 114.56006872740747, 22.738215921490017, 8.873323450921449, 18.27140127963763, 63.47571035560942, 18.749753995342907, 101.52521108480367, 47.64952768120292, 52.51296819889374, 18.721512079877346, 31.131690392617386, 62.61519061457996, 37.29220458581668, 65.4127322411413, 129.9153068320815, 8.194379720476894, 49.25361411424812, 54.421921130862124, 18.948912089465153, 45.81301634379987, 73.34344109443802, 56.84820028664273, 72.56477661520726, 7.986383368455912, 106.66598188040052, 43.31173313538296, 71.40816346063392, 68.94741756084191, 92.64152289916416, 42.21490892815815, 43.566841489791635, 22.867523386657396, 40.66366791543731, 63.78328888534953, 14.182852734593503, 81.38668580036756, 9.696560670146207, 18.66226501189247, 166.74033267139293, 115.95003286893726, 44.17480540268439, 24.068416414659996, 8.10772866869417, 85.0568202595793, 17.904477598227423, 7.829563597362955, 13.162251387173901, 42.2150449977918, 90.59591641785033, 27.806164814494508, 51.58205581194842, 68.25718239341981, 69.44934952784257, 91.76257051411427, 17.392346861442743, ...])
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)