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 = 45903
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);
([3737362.319224936, 3768320.1074678535, 3769588.3341696155, 3814057.8079347787, 3814093.412457006, 3895902.2930306927, 3959016.9341606796, 3959323.352602122, 3968879.6875, 3968883.9813560024, 3974279.6875, 3976390.8027257673, 4016912.5, 4025649.9097010694, 4027326.1736947657, 4028530.1731234053, 4043454.6875, 4055532.320275219, 4059305.310196502, 4066249.7386316694, 4066533.2769956687, 4066667.1875, 4067498.4375, 4067877.935129406, 4078168.75, 4080994.4151754566, 4094813.917510293, 4096337.5, 4162440.625, 4189171.1637144852, 4209292.1875, 4214700.614995896, 4216654.481831429, 4220477.850629937, 4221084.375, 4221731.486547901, 4223751.5625, 4223831.092863197, 4224218.75, 4224439.650932144, 4224499.129377584, 4224584.962216653, 4224585.9375, 4230729.183680063, 4231561.83022355, 4256412.5, 4256637.475970191, 4262820.3125, 4285549.736343914, 4291748.30227511, 4297728.125, 4299728.125, 4299831.25, 4300334.355298599, 4302410.197761499, 4304620.275662569, 4304819.6764604645, 4306664.514007771, 4307283.025446345, 4309142.1875, 4309318.045656781, 4309738.886785497, 4311573.4375, 4312214.716384253, 4313369.794370718, 4316767.1875, 4317888.995679791, 4332340.868270253, 4333391.473425327, 4336121.5886625275, 4338185.422665623, 4338354.6875, 4340329.6875, 4340891.249130071, 4340925.71975054, 4341122.2993991105, 4341159.950854262, 4341340.5129893115, 4341384.375, 4341388.690625954, 4341715.594581833, 4342167.045107303, 4342188.470355959, 4342251.179702336, 4342335.045263596, 4342407.724705873, 4342535.5640246235, 4342913.65266506, 4343276.469572635, 4343521.336282286, 4343807.085399669, 4343951.140705009, 4344131.25, 4344158.535556904, 4344167.101686896, 4344806.25, 4345234.265831328, 4345251.5625, 4417475.4219095595, 4424212.295026164, 4424799.316071791, 4425854.6875, 4430090.925896448, 4484521.875, 4486115.294408467, 4491496.218783592, 4492814.0625, 4513531.25, 4513563.270961994, 4513630.4749012, 4513761.242428409, 4513784.971362434, 4513794.656442916, 4513806.25, 4513875.946992463, 4513956.488465608, 4513972.54323184, 4514062.0998368915, 4514112.735693974, 4514121.83293827, 4514332.903391214, 4514409.131408522, 4514475.0, 4514533.986948295, 4514563.875523997, 4514859.577734093, 4514926.098411658, 4514944.968195784, 4515141.387791324, 4515193.75, 4515223.392726919, 4516422.848364509, 4516539.018769855, 4516663.542853213, 4516724.227569911, 4516786.455459887, 4516921.875, 4517087.5, 4517106.15044364, 4517730.993844636, 4517950.709172315, 4517973.4375, 4517994.444341849, 4518071.861642934, 4518124.057063128, 4518187.102290695, 4518570.3125, 4518761.0390957305, 4519021.700151816, 4521603.125, 4524614.046886593, 4537185.9375, 4544376.5625, 4546398.274189193, 4547579.8879493065, 4548135.514462273, 4548667.566713203, 4549124.33804004, 4549496.301850816, 4550089.319695119, 4550207.8125, 4550217.627767469, 4550229.984599526, 4550318.401206433, 4550500.0, 4550602.884577073, 4550834.068398725, 4551410.444473662, 4551675.0, 4553000.169737308, 4553049.246667197, 4556073.4375, 4557290.185308021, 4557323.127033407, 4557476.5625, 4564855.862184267, 4565679.6875, 4569900.184605448, 4569914.0625, 4569945.958726636, 4570457.127567061, 4571569.081226359, 4575065.625, 4583638.939009756, 4600465.556705809, 4601789.99339949, 4602338.023120754, 4602650.979412508, 4602676.33337214, 4602947.544430346, 4602985.742629668, 4603033.7528233295, 4603689.991249915, 4603710.430685568, 4603797.01128283, 4603803.844276355, 4603892.712547943, 4603900.978504765, 4603993.442772288, 4604126.139303954, 4604226.85028401, 4604243.738894629, 4604256.25, 4605394.60679821, 4606185.746727604, 4606589.0625, 4610005.102163344, 4615556.624012654, 4619337.893468209, 4637680.924263548, 4638525.6618564045, 4639895.035092752, 4654325.0, 4705182.415639631, 4705713.877572366, 4705825.373097682, 4706075.0, 4706193.02710491, 4706229.274486106, 4706380.891808403, 4706467.1875, 4706593.351664718, 4706655.827530153, 4707026.149511468, 4707445.3125, 4707582.8125, 4710669.812726596, 4712160.316789877, 4718364.0625, 4718467.530028348, 4718750.489471407, 4718794.391776776, 4719776.5625, 4734760.9375, 4735280.916021357, 4737997.487127138, 4738884.799648786, 4739260.587836633, 4740076.5625, 4755146.425184325, 4776239.0625, 4776922.508273684, 4779528.009332581, 4781672.917203334, 4782853.125, 4782975.114355887, 4782998.4375, 4783186.342172406, 4783436.031176419, 4831462.169953922, 4841770.081827209, 4856659.375, 4862285.242226166, 4990672.940267913, 4990692.531809707, 5788827.535058004, 5980906.25, 5980970.078898329, 5997621.875, 6141388.37814342, 6167018.493285142, 6168225.0, 6302136.676695142, 6363747.676377505, 6417917.1875, 6419898.061371036, 6425008.009712296, 6448073.4375, 6454338.461175444, 6457406.094655668, 6457487.5, 6457666.4990103645, 6457733.96073498, 6457870.786801084, 6458320.3125, 6458492.617065263, 6458626.5625, 6458788.105112579, 6458918.75, 6459519.004487086, 6459705.52510419, 6459866.471001826, 6460460.783465915, 6461912.5, 6462051.5625, 6465089.0625, 6468125.835150494, 6468506.500291788, 6468761.163957459, 6469151.6396099, 6469154.844587642, 6469418.75, 6469428.961339137, 6469720.3125, 6470059.375, 6470758.920818713, 6471292.642166799, 6471302.585751426, 6471457.174240131, 6471464.615992459, 6472022.004969448, 6472352.020822788, 6472832.337024097, 6473319.238018831, 6474060.9375, 6478243.384076999, 6480338.917611786, 6511751.876418328, 6567878.88769679, 6573906.25, 6585979.6875, 6586854.675632965, 6597218.75, 6597910.050186255, 6599434.467652052, 6600310.486406018, 6600453.839779067, 6600589.281530639, 6600876.446334945, 6602647.57023148, 6604292.960505408, 6607237.5, 6626426.5625, 6629271.875, 6630369.654555957, 6630911.916029292, 6631404.760133183, 6632210.0524688335, 6637070.222467461, 6638339.7535910215, 6638428.687978196, 6638514.243670019, 6638973.847645037, 6639315.401186668, 6639728.125, 6639746.242254172, 6639832.07415015, 6639833.14186783, 6640049.707509076, 6640240.519799437, 6640488.878373879, 6640642.495275627, 6640955.338290368, 6642351.358074942, 6643478.065740101, 6644798.510101917, 6749237.476666083, 6769173.4375, 6772244.922223882, 6776837.5, 6797680.887501251, 6816331.868985312, 6816914.6810111925, 6816936.119160354, 6816960.6398993125, 6817171.450580789, 6817420.998420899, 6817570.3125, 6817646.907358977, 6817834.367281517, 6817872.535176274, 6817874.27149279, 6817900.550518974, 6817932.665630371, 6817995.3125, 6818221.5556931365, 6818237.418832114, 6818314.0625, 6818369.405151062, 6818457.61454589, 6818525.743798454, 6818564.295736444, 6818731.871234186, 6818770.3125, 6818832.4304218795, 6818836.476070135, 6818908.839457276, 6819051.5625, 6819127.982134956, 6819170.729095498, 6819187.247154283, 6819259.375, 6819323.4375, 6819412.2392183645, 6819469.448452336, 6819490.625, 6819496.673561929, 6819643.75, 6819748.370900372, 6819841.981688042, 6819855.462759205, 6819973.876292916, 6819982.482450463, 6820009.128705528, 6820017.163573532, 6820038.823126645, 6820152.867511168, 6820200.169389682, 6820221.319771025, 6820222.977825282, 6820226.5625, 6820229.035014366, 6820239.026581291, 6820333.858306864, 6820372.774895743, 6820602.08972407, 6820749.872028024, 6820835.274174506, 6820881.395882019, 6820960.9375, 6821035.9375, 6821118.610553684, 6821539.2601732705, 6821550.0, 6821747.144280084, 6821748.403063941, 6822011.758695759, 6822471.875, 6822497.945248009, 6822639.483201371, 6823393.30040921, 6830723.344273861, 6836956.878166361, 6837956.25, 6838692.081673759, 6838808.98058741, 6839325.248826157, 6839380.6919901185, 6839451.603018789, 6839571.416590059, 6839614.313908902, 6839637.959259003, 6839727.541970392, 6839763.544633727, 6839861.25117745, 6839874.032821742, 6840040.625, 6840135.9375, 6840155.212823225, 6840168.431818524, 6840344.8441592865, 6840498.4375, 6840499.418389804, 6840694.597754564, 6840804.779509585, 6840931.76800163, 6841257.561104786, 6841487.5, 6841720.294246391, 6841812.5, 6841836.400467602, 6842233.935005521, 6842425.0, 6842726.9563096985, 6842877.893303744, 6842915.195451232, 6842967.969211223, 6842973.4375, 6843532.8125, 6843663.014269312, 6843674.354171295, 6843708.774561989, 6843789.9692649655, 6844047.775980476, 6844171.875, 6845829.733826617, 6846303.638399138, 6846460.260483539, 6847312.444084422, 6847376.121385612, 6847409.038608904, 6847924.565282939, 6848179.6875, 6848553.191448731, 6848773.683284669, 6848825.4241794925, 6848978.125, 6849198.0518080015, 6849277.382228666, 6849301.359043031, 6849750.818366873, 6849918.75, 6850417.1875, 6852192.943393484, 6852276.617889287, 6852710.608882779, 6853116.532221451, 6853162.845631523, 6853355.776209962, 6853554.349402727, 6854174.055105142, 6854443.818212633, 6854940.625, 6855492.080431976, 6857004.9273277065, 6857030.269373492, 6857158.483550508, 6857484.581660019, 6858093.75, 6858228.125, 6858943.75, 6859005.364589689, 6859334.960874724, 6859483.854754285, 6860240.533526956, 6860432.266412852, 6860514.0625, 6860762.5, 6860816.209449086, 6861223.658973471, 6861432.885242959, 6862309.8572471775, 6862328.125, 6865569.601676037, 6865592.1875, 6866305.958870572, 6866406.140654512, 6868959.375, 6880384.155951942, 6881563.100427071, 6888077.332762099, 6888085.8862315845, 6888175.0, 6889487.255683105, 6890009.375, 6890589.0625, 6890598.568152671, 6890904.6875, 6891071.283925338, 6891103.064143908, 6891461.767376998, 6892220.272583022, 6892826.061471263, 6895462.779238601, 6901826.5625, 6902967.07481792, 6903985.038256925, 6904291.910093171, 6904600.0, 6905495.028783584, 6905869.153116753, 6906278.125, 6906558.683127046, 6908360.445093473, 6908457.913467958, 6908689.0625, 6908922.4303421285, 6909153.06252647, 6909166.73967799, 6909218.520841981, 6909218.890965726, 6909223.283205352, 6909467.003545429, 6909676.5625, 6909702.385600109, 6910057.931037627, 6910298.4375, 6911031.605616209, 6915448.918857627, 6915704.520210105, 6916473.341438556, 6956008.37061866, 7027517.836118045, 7028809.516861729, 7095323.90473136, 7095404.12793109, 7096170.38606995, 7101736.795902223, 7108145.819355441, 7109880.41225162, 7110610.4934293805, 7111166.7179759955, 7111483.098130847, 7111521.59863014, 7112203.125, 7113347.9278455265, 7113981.104163062, 7115819.992714762, 7116110.9375, 7116877.803670421, 7119303.811117588, 7119579.6875, 7119850.389869056, 7120121.875, 7120498.151169164, 7121620.298484831, 7122345.315732389, 7126567.26131833, 7126572.240745777, 7127737.490183007, 7128227.669819273, 7128240.0702773435, 7128560.847980425, 7129163.165087988, 7131631.286603125, 7132798.4375, 7134774.5052294, 7136200.817399406, 7136348.4375, 7137170.3125, 7137957.8125, 7138052.445943077, 7138115.991218267, 7138140.250260029, 7138142.560201867, 7138411.39223587, 7138517.96275165, 7138580.880977766, 7138644.8623399725, 7138650.0, 7138760.014137255, 7139407.8125, 7140131.182495777, 7140193.75, 7140245.833901395, 7140377.219451736, 7140453.337493904, 7140569.06307911, 7140570.291289988, 7140609.42703036, 7140611.640657862, 7140624.911906536, 7140640.0689441, 7140692.3430467835, 7140844.229238897, 7140845.389536505, 7140862.160972042, 7141365.249815325, 7141470.690187835, 7141602.310014669, 7141912.831192333, 7142010.430987249, 7142180.903736471, 7143331.25, 7143872.833416918, 7144021.395111347, 7144032.8125, 7144129.6875, 7144187.375779165, 7144230.900875616, 7144245.3125, 7144250.0, 7144335.611535869, 7144393.75, 7144454.770828057, 7144513.342626722, 7144621.869347354, 7144657.8125, 7144740.625, 7144760.387112244, 7145289.668237824, 7145424.137652792, 7145622.284716233, 7145910.316374628, 7146136.141995178, 7146282.784422396, 7146813.429000187, 7147077.963777668, 7147127.611757128, 7147369.747728261, 7147562.625643013, 7147582.772111574, 7147634.375, 7147659.515874131, 7147693.75, 7147719.535074861, 7147757.937315562, 7147814.324659711, 7147971.73878358, 7148157.8125, 7148174.469576958, 7148224.784801172, 7148232.375611247, 7148379.283337929, 7148393.065863019, 7148421.344589013, 7148527.60426513, 7148571.245523533, 7148622.716668706, 7148822.686698208, 7148825.402364522, 7148937.74405096, 7149006.25, 7149129.153515988, 7149350.0, 7149401.339755167, 7149510.032210689, 7149520.680387509, 7149591.143613611, 7149672.499803976, 7150199.149770135, 7150277.877384219, 7150390.625, 7150431.717086377, 7150518.432688256, 7150821.506948146, 7151040.771632374, 7151063.422273904, 7151072.127584634, 7151359.5315538, 7151469.154054331, 7153271.19141157, 7153365.340602725, 7153520.206251271, 7154032.245455801, 7155338.613702701, 7156628.701093655, 7156762.4076328995, 7156868.75, 7158063.201675896, 7158479.529180463, 7158573.820861556, 7158978.125, 7161195.476287212, 7163290.599381861, 7179371.875, 7185299.67063035, 7185312.5, 7198646.875, 7212240.388531963, 7225602.829084809, 7231719.339808327, 7389370.269039751, 7390129.844600892, 7390335.904752728, 7391949.0598410545, 7391964.0625, 7393868.75, 7395962.881849087, 7396684.347030631, 7435848.717633129, 7445132.8125, 7458279.6875, 7472616.673924085, 7473073.4375, 7474506.25, 7479188.53012868, 7479300.498461246, 7479569.84941719, 7479711.658110764, 7482110.9375, 7482383.560692407, 7488338.816507471, 7489328.774454701, 7496967.743275125, 7523314.889906898, 7523346.083057506, 7525945.258852693, 7527087.450478724, 7529293.75, 7638584.375, 7643004.6875, 7644560.711534221, 7666098.018799307, 7731989.0625, 7732496.875, 7743087.27523431, 7747639.908013532, 7805731.530489401, 7808782.8125, 7829231.25, 7897318.75, 7901123.4375, 7901381.904035995, 7910591.691417707, 7915061.56538549, 7917030.627805933, 7929591.601813623, 7958656.095466235, 7960153.125, 7961051.91305325, 7973295.3125, 7973670.3125, 7979989.0625, 7980228.125, 8008801.06223124, 8033057.478126567, 8033082.1076048575, 8039658.47601432, 8078977.64165586, 8081972.286571233, 8082164.0625, 8082220.404628117, 8082802.114984809, 8083792.1875, 8083805.590364504, 8083845.914193257, 8084124.235227361, 8084254.6875, 8084368.75, 8084421.386017085, 8084422.16974669, 8084440.1969205635, 8084518.722186597, 8108684.756913564, 8159219.504024537, 8162323.427919713, 8164058.148905594, 8165782.929321364, 8172357.8125, 8191468.201626845, 8433723.714269945, 8592626.708891584, 8593169.825147979, 8595191.234979464, 8595219.212846322, 8595501.450946786, 8595513.121274497, 8596560.07179036, 8602834.375, 8609835.9375, 8610821.958438803, 8611942.1875, 8611950.198957477, 8612312.757847846, 8613127.36688536, 8615915.967338761, 8618448.4375, 8622282.315593082, 8695719.66025222, 8871588.009088093, 8914120.370650718, 8964030.809462208, 8964168.42370049, 8966726.5625, 9013529.491963798, 9025945.435160061, 9057940.814927675, 9069170.307729658, 9074816.235369394, 9075437.679099346, 9075465.465798149, 9076014.89440833, 9076109.626371022, 9076185.582805766, 9077652.59493236, 9077818.75, 9078262.04482925, 9079050.0, 9081964.649616536, 10006561.40254954, 10096426.183125818, 10097085.488953313, 10097689.98702127, 10109187.396107722, 10110894.194107998, 10131384.375, 10150305.575547818, 10242685.313556759, 10452760.813225659, 10557265.737209782, 11312441.142081566, 11312477.520760475, 11319989.922062906, 11327280.673118904, 11753395.55768462, 13146848.135730473, 13202156.25, 13217829.6875, 13331825.27720934, 13430139.0625, 13451205.47629836, 13503426.5625, 13507495.774065569, 13559311.559847921, 13592329.181480683, 13610603.047108565, 13611285.81731944, 13612113.53394567, 13630363.35179437, 13640066.36083879, 13642670.120946249, 13643513.33487636, 13643524.628956957, 13643853.822990427, 13646226.5625, 13654104.198468937, 13664530.757366804, 13668574.68462042, 13670594.804866383, 13672227.594460543, 13672270.625522591, 13717657.8125, 13726446.868711434, 13727409.375, 13757164.90213507, 13758525.602658868, 13766119.523647234, 13767674.747406755, 13769253.835197011, 13773898.229320519, 13778599.67808802, 13778742.069880467, 13778783.382706288, 13780073.474768404, 13780783.193477273, 13783734.994905947, 13786654.296365095, 13787888.451982828, 13789117.1875, 13807395.073160214, 13851136.701106694, 13880030.99888444, 13891998.539923197, 13893255.687242983, 13893881.25, 13894318.257408863, 13900835.93351479, 13904727.027257262, 13905010.9375, 13906529.6875, 13913444.421173085, 13914476.25662507, 13916714.72777746, 13916858.471325727, 13918198.048462825, 13918584.100100502, 13918591.519944748, 13918735.1029058, 13919009.27505991, 13919614.488650808, 13919674.897876555, 13921200.496164965, 13921592.1875, 13928610.628050076, 13931486.91967895, 13932230.817436198, 13932498.4375, 13933910.837801313, 13935727.81757867, 13936279.344284162, 13936284.375, 13936681.25, 13937761.544583142, 13938472.90957278, 13940405.75361692, 13941494.17666371, 13941873.009845475, 13942026.5625, 13944230.147237232, 13947910.9375, 13947988.168462181, 13948348.4375, 13948382.8125, 13948467.414070211, 13948569.696676604, 13948580.61842676, 13948610.5838816, 13948764.794665633, 13949067.41228413, 13949109.375, 13949124.17065526, 13949240.625, 13949686.930046054, 13949699.427582217, 13949703.304417217, 13949708.01690003, 13949924.29391224, 13949982.339467477, 13950060.9375, 13950200.0, 13950217.377605917, 13950350.881594848, 13950437.196064983, 13951205.311946299, 13951224.095105203, 13951545.274631817, 13951713.809896288, 13951803.125, 13952872.00723767, 13953370.3125, 13953556.605202286, 13953953.093087118, 13954152.911526047, 13954250.463161232, 13954587.5, 13954721.875, 13954735.9375, 13954785.9375, 13954897.555292854, 13956083.77157341, 13956102.415107416, 13956150.090901269, 13956160.9375, 13956414.0625, 13956909.282548077, 13956955.864749053, 13957183.444945015, 13957216.416681778, 13957814.762145495, 13958120.914509963, 13959154.6875, 13961411.373662496, 13962316.443213182, 13962385.9375, 13962426.60538071, 13962764.0625, 13964359.647852553, 13964564.383226965, 13966053.495322254, ...], [9.183086381281143, 14.213657909398803, 77.17486051483473, 28.435048926333316, 5.2807734301196145, 19.646368695041197, 24.365644883358346, 42.35172165128767, 72.56953612400335, 10.563530060957257, 98.66450669562545, 11.417351414059306, 74.99398777157496, 83.58115807177843, 10.569895441055282, 5.108135557138435, 100.2756107687476, 23.247390350542084, 12.26385053319802, 123.7268723860184, 9.757678378602849, 55.2536651177522, 44.46558508448569, 16.422877314915524, 61.71999541106577, 7.862946112544786, 31.969701415603055, 62.34320277943377, 48.788634369575846, 58.519092400521586, 88.21898791658353, 75.66328877272466, 37.86502890711992, 10.72432167845841, 69.75814035252333, 20.186936106503296, 38.05609513211028, 44.14582156254, 53.00443715698298, 7.830894711099887, 71.02177776199481, 14.638099882914922, 43.692506200296755, 13.31559628840592, 19.951652287197867, 42.125759504650254, 11.090353254770614, 31.23908981484898, 58.333327183080755, 19.61366340215322, 40.001832463741046, 63.986368196834576, 60.76829926662392, 28.140786867776466, 5.498224403677244, 49.980009915214765, 142.90827626950946, 6.857123386169211, 15.22794747131757, 98.28437492075795, 12.79919684732764, 12.90009484856422, 30.395625748876384, 18.19945679711233, 13.276666932962414, 32.88654488871809, 39.23239357292441, 6.813065260177078, 46.57962207111718, 23.9268445467479, 144.48443759706058, 41.9741262639778, 92.85335867218215, 7.295786284490513, 18.64214871959171, 16.850264288068598, 22.203601412198786, 10.957027006890558, 51.20098862228508, 29.45596670557482, 9.305814657490181, 18.749358667795846, 28.723340081903714, 29.952523079365434, 5.750785874689642, 89.5760385099171, 61.095319922535225, 82.96954630918873, 68.39039669687986, 69.44396726668705, 47.69369708014207, 7.457487873363341, 64.4752008212952, 21.838960271493406, 26.935488394857305, 42.443957242132434, 14.541119171770758, 86.18673487147562, 5.845871744444563, 51.376720194361404, 6.952569534508566, 54.54584185781688, 16.227452170100985, 35.7855163308442, 37.23277513673705, 118.00201453329504, 177.1650700227213, 51.80198439321573, 19.0063789333899, 34.273240148115285, 55.87980286940426, 95.33939453485505, 29.966443989151344, 144.45916513331397, 20.413366146600044, 20.46885556894332, 125.30211532314037, 6.42613990892368, 7.690768222197161, 27.718996878404123, 9.40945777669523, 65.51139855129793, 57.141744058533085, 14.072448047354452, 14.273719937049798, 57.71441501730947, 192.90478940885538, 35.3641995923311, 30.168436990023448, 30.200136036736072, 63.86744458147063, 20.64773838246144, 14.777409712261717, 134.55244912999598, 7.345872252393603, 9.811458836579137, 28.645060804262283, 40.34746751791797, 26.700095970030823, 14.047473162897811, 41.552301312019765, 83.76817440315129, 18.46806623213122, 62.446025801867435, 6.893839554651502, 22.57803126850663, 80.60775046253235, 15.343420117335429, 10.864980570001764, 173.39258692741836, 14.882330510259042, 62.173039111026114, 36.2302910406428, 25.669300837974035, 6.292860280935553, 194.6284814587179, 23.58231774081941, 23.503726529559742, 74.4824693932072, 7.190742494053349, 55.76916245576464, 16.93504876694769, 21.168680650054366, 10.623033636882122, 52.738322520857125, 24.54280392021314, 7.495985864124437, 104.68042325813809, 45.71700225849374, 23.862176020542805, 27.668678633982875, 40.40029394163488, 22.116566919251056, 7.042162869799862, 75.68310910676983, 20.231540782281428, 30.016502417062288, 108.17971217349594, 39.66495739299225, 59.910274638271225, 18.26319473996175, 100.74988968441599, 91.33544533450406, 26.301657356701902, 36.19719647908259, 20.27362580956928, 60.41853905127239, 20.702454337412192, 10.787505775572866, 131.94369748615597, 6.72521597776971, 28.76593091314051, 91.86336310793705, 5.088610092984302, 7.653283967586822, 6.004591617884241, 17.408227322644755, 89.12929376949117, 62.45889222102508, 27.30389395941394, 94.98518564908866, 124.49964577228315, 59.01898607814068, 12.23364972305719, 100.93078211310448, 71.4564155320781, 16.798808697551213, 24.572470569394277, 52.37448703528459, 13.830071904868126, 43.76084143226031, 129.64556251923833, 89.87107608355743, 88.35062629053917, 130.90862445684343, 17.495888641502848, 56.793517879523435, 32.8136568860555, 22.407058142444637, 48.46969866809826, 93.72886631874113, 19.285740737763454, 6.422843729097433, 15.785755196245834, 28.7071495159403, 41.94487274014629, 10.427114989906189, 30.80416417092001, 66.73207538094694, 9.63885737811965, 32.8185851985289, 6.89877290520835, 96.03473045178804, 60.393418625577496, 61.31439056174132, 7.840728442219034, 23.09142157315197, 23.136433970285605, 51.728399025583236, 30.17959972558741, 40.68306104259786, 15.909405272249522, 5.929395411170496, 8.927074512839656, 55.39415395794505, 5.466696322027195, 47.272838989412335, 11.825198620306566, 54.684306337588495, 23.374384723077664, 24.67862482305913, 58.54758891878302, 25.32161186813068, 21.520756153458972, 69.74396203712922, 67.55124218660072, 43.67476479847492, 24.63763359768699, 49.91789432970638, 50.58489157215253, 10.748830663499197, 49.821824484883415, 7.330337337776931, 64.67135515388128, 44.23777232792657, 7.472636777119789, 5.297218126453584, 99.72710521998768, 38.582613445440145, 79.59835919185198, 51.66361471559409, 28.71465022117878, 7.45997572514058, 17.12082155251124, 30.113992375712282, 16.17594079274816, 58.92861107073817, 79.86728871888354, 78.10477500913501, 43.54969708014264, 19.370733639460873, 57.57869291801978, 47.96849572787596, 47.94693984941698, 59.595566770351795, 35.14282006036397, 8.783810746480059, 21.18040347096369, 24.78942045297894, 5.946148969039103, 15.576080563108775, 47.37246914984944, 19.499216792948364, 41.08728696012994, 35.00067102918067, 30.096177918338324, 11.921439860949658, 46.31045572206832, 56.17219913439906, 6.5775034597219975, 12.074823928549248, 18.773417218004617, 8.959310620680725, 7.2559313333093165, 33.63600453573232, 22.943672318297153, 14.416597406340022, 5.410611981108858, 12.573675042752436, 55.73725386170398, 97.9233444672571, 65.7454584139052, 73.90328768500747, 132.99804898449116, 15.306820344711568, 68.77382041443033, 10.018984994628683, 71.73176332277903, 26.42208728920811, 17.878720987280516, 15.889926984862363, 54.38326204312283, 64.56717833799048, 37.79470667216876, 20.05004609439551, 6.9759626164529305, 9.393583152960892, 18.354786322026243, 13.775479535091584, 9.99317932978207, 28.41128628695199, 5.624146146308867, 16.775071975047595, 5.23892409927747, 29.39158006528951, 6.643433143856895, 8.776449137129601, 11.68475768040407, 19.134726870151674, 26.604837349457306, 122.1890801117788, 19.202790701661243, 9.949810392914978, 81.23544278964114, 6.751733177606594, 5.618073318690475, 15.7293663114507, 42.71823748609845, 33.7098966576608, 32.29123690328831, 13.719094679302417, 12.25595434941903, 17.972835175605425, 15.682278064555595, 8.135230771075305, 87.10399021457941, 18.41130279796084, 63.750846837817235, 8.303763743514889, 13.125941317928895, 6.902873619136327, 8.783034843026671, 27.1527153502765, 55.36176848413642, 51.66309327518748, 55.0763391814959, 11.003162818690672, 74.77319354589838, 37.52670900831518, 6.067752834478162, 41.660532809914685, 20.124806687337994, 8.644895989987916, 58.0394930143639, 10.578766594057143, 5.987721092261761, 21.145721480511185, 47.057797279460466, 56.92760100394463, 16.80898685490438, 24.37235795976277, 35.453519875733434, 68.40526113680745, 6.061393660871369, 8.694028263189562, 49.94692579553566, 55.56361722240484, 92.40685901872119, 85.18187321508594, 51.42739221587547, 12.602664207415417, 27.63587101470909, 52.934977271440445, 24.461883857983757, 9.31125360702121, 44.16852712702456, 28.108263007751916, 8.378231808964589, 105.35415102237715, 6.675079534796943, 57.14837155072841, 12.926963487051493, 45.91729882849589, 21.328178038369952, 20.011145872846516, 5.419019192229296, 19.420770320339372, 20.005142697279666, 16.36374587265061, 40.539586424296004, 31.521940721976637, 32.97707325355662, 5.8287526220101835, 126.05841095672696, 41.910558763381204, 44.812421301091035, 7.929954219308007, 61.594203570492596, 8.947192002886286, 49.892411049946716, 22.01114267209405, 10.985049290623987, 17.182175454696207, 28.746986532216336, 26.594327560569884, 25.729953416528687, 25.57787837665999, 7.413157937605903, 26.181413877282274, 21.918264558798896, 23.692752291932283, 67.27700005759573, 5.031853811282872, 18.27013155103287, 5.967196021128281, 9.891194831923633, 70.0138466750804, 29.611562626118406, 121.49701473544872, 34.41394821588749, 21.959310620126104, 31.21249311081036, 20.715875191159554, 5.575689710226905, 9.410433395901139, 9.811501242698572, 24.39211105283917, 149.40079909534535, 99.64638780891796, 71.60921142892748, 18.149638625575086, 82.98098338751336, 76.9020383022797, 112.23413397559496, 14.126278292412044, 49.74525208732355, 5.496349503256777, 52.71391627813162, 108.25877810487827, 17.346106620765347, 57.38213285752336, 36.54271014721388, 108.8949833304752, 12.90442903840929, 66.52032723591039, 24.30655458954164, 30.01295354837774, 26.03988746613927, 6.752394564635926, 32.04285246410369, 66.94247595331298, 22.170027050648457, 44.759229153713896, 18.660178613381362, 15.969098723609175, 6.555706464435208, 116.42400051229903, 13.650404432564947, 8.773497069361644, 9.165096614336779, 19.36046492058162, 57.04100659865826, 78.29405962099489, 44.9574977464426, 7.136088335414876, 56.01761332892609, 20.072382707712606, 16.445754552845873, 7.440416628946079, 52.523567387927514, 31.335181916387562, 8.322981739392132, 47.32544394554966, 69.96622083620655, 9.5427721904596, 6.582344787874375, 18.31217113115762, 8.398972084136606, 101.54815761475506, 30.912110104800202, 81.00743210749926, 12.381414612545424, 12.1861960639382, 8.029375711370017, 32.30795438016145, 21.045354479114067, 76.66768435018218, 68.04556792693757, 12.18322007755835, 26.99968615950842, 10.87989784626513, 11.975599505317643, 32.85784027435943, 12.783496261159872, 71.03636623764949, 16.385293139784487, 10.960988492929848, 74.80656412332615, 6.239914299559864, 48.64803129224771, 26.96757821176098, 84.03960866857173, 73.96646056308018, 24.489065819172996, 96.23626924287407, 62.92398643938826, 13.220414679566893, 52.771815774826756, 78.94288411096929, 27.375865014520176, 5.87804642487564, 42.34504146751978, 31.26571790712594, 67.93271844663899, 61.99620723298483, 10.95602981570958, 25.03030923458802, 38.76217808798078, 57.001999955278066, 10.711422744771088, 13.8166045402374, 68.3648982783054, 19.771167186075036, 21.569185110937386, 26.178110332063905, 50.28796857069148, 7.275509308300727, 27.34680520928261, 10.493136655244156, 10.787463239345342, 18.35451754998838, 7.081474480821036, 10.851853139067304, 72.79510154107236, 12.714955865244104, 61.80603577345346, 85.71959444119194, 16.495577408239267, 6.139628672672048, 25.60810749112968, 94.83064588347193, 17.60258189323014, 5.650964141408839, 8.363048453718518, 17.08178195527272, 7.412657853224577, 15.229539524423204, 7.946311517678716, 5.5581961112290355, 72.16436368980276, 13.48187871699093, 53.234825579725324, 16.154747881939016, 10.72155736396814, 195.764438426897, 7.42874988004032, 25.94224808383872, 23.50126030164037, 60.245550672040125, 26.91989293598313, 18.41262342558644, 68.85413118072762, 8.504099546055768, 277.5100412284023, 22.61290108167048, 28.250486111174883, 73.65060666684519, 7.630156510700164, 11.751937844316636, 14.904223198123656, 5.232581839825779, 7.414212902851125, 77.38606854413177, 5.491055803478603, 5.709091494526549, 46.4585158261136, 26.92063162010752, 10.133553379508427, 61.37629622891186, 120.86650205289212, 30.3942143937813, 6.95369994784725, 9.661526859234298, 22.840788912103655, 60.789204579360685, 9.74797468542065, 13.8145838060149, 8.100618807472982, 5.781406550390005, 64.97178911410865, 130.86189875966593, 72.23551631407263, 59.014168281341284, 113.68449430067058, 28.66610173149037, 12.337484654003214, 32.678736992139804, 16.286118536178165, 11.09471524273142, 7.135196355130856, 71.91128634442838, 19.841374377319717, 126.97976682646632, 8.3705823158387, 17.14823071595107, 15.24349772882113, 13.789646088703686, 22.835629889243908, 6.84132661378913, 69.31468117726777, 12.409276666522958, 68.97865835908851, 22.4481556956987, 33.022519748373064, 6.396389498198599, 7.0007697423720385, 56.893057293612046, 53.75335664961685, 23.733150092608447, 10.62259057527047, 102.72196937811367, 35.15678073871496, 5.5174668811314165, 44.85919086468877, 5.53713842881098, 5.056035571118856, 78.41466954754448, 42.59264876457645, 38.527592333975235, 44.59880422571423, 17.89281124239409, 30.56168270955734, 20.05814635979038, 20.364307158832496, 81.79255288436696, 9.307774282725276, 29.046744858131085, 8.203121489803673, 147.28318841373516, 70.78227337459458, 11.329943075939216, 11.065158522129309, 43.822825136195505, 33.584846096510674, 53.23205197163633, 92.1134022493266, 41.524262173721496, 48.527304519580554, 76.53157567914283, 59.51247383514085, 13.243489667113543, 14.180157827866454, 13.50228140739982, 7.46331990859856, 56.14449783190893, 13.243522077802675, 28.88159016082907, 26.617020438047927, 7.36179379573736, 7.352525526664377, 9.696492086710654, 30.839822085528795, 72.77788453329173, 21.160660441911034, 39.19029622716429, 6.719837388294191, 12.338046504054935, 9.66313151153607, 16.539092979544094, 31.919352219303235, 37.81736400743127, 10.76153560387105, 74.80800295004413, 17.080983838080748, 23.532098495659646, 59.939113088383564, 31.942378208929558, 55.8418271531354, 11.546881042562658, 38.94556239294198, 11.195461706855868, 51.04132376585331, 78.27758378382252, 5.930205847570665, 7.410262285793927, 7.448598986273836, 146.66392351084596, 43.19895510001143, 89.04043990578668, 12.435706625052253, 52.53046555386358, 50.10628166469803, 70.77850096042827, 90.47318801705653, 40.886325118580736, 51.8738820153842, 62.293600550134485, 45.729787602975954, 36.174166402428824, 156.7147710406242, 23.803060049024058, 5.858949188508756, 24.60170167912171, 11.382477522423526, 7.1128699203665455, 12.263093576611722, 57.34472797611786, 74.00999385141871, 7.225581085567609, 5.704980271513474, 51.18768954654844, 28.567803678367866, 81.54155211875046, 10.409811665730546, 67.06726169631176, 64.33167878070606, 76.61627114946799, 9.791721694056806, 35.017264601987215, 49.28283684110287, 89.44277416171383, 18.84217096476679, 24.466029343540455, 131.80516857544575, 12.1238392992704, 12.725214582970654, 12.591790654097542, 84.44808096771676, 27.581590613779067, 82.03270240762234, 57.13119320366504, 74.89275687891266, 24.74484986031315, 19.052432521107548, 51.288062310238054, 50.067607518130494, 60.09549141340622, 34.77845514583749, 51.27938024998907, 48.0572353504073, 34.1429265032179, 103.60602267312595, 76.21380803367988, 6.353525617444555, 48.656710079254616, 20.694911464797908, 85.41182679008749, 16.817209656848004, 39.514918900469056, 31.737629482932128, 16.47026247956771, 87.31109049554615, 45.35038513914103, 66.11086753524307, 28.926923215739276, 47.02740765297892, 13.803763491688978, 50.03963078128016, 58.16116048360013, 18.39367903770345, 23.01633342432678, 56.90328638389689, 27.82191598913738, 65.31168776543439, 120.41120130835611, 22.295989098074887, 6.152987816376674, 54.000416453889095, 53.52861002220382, 31.57509694252446, 118.2191972609213, 65.04530438114567, 10.980299103057867, 14.83654698792569, 54.892606131226046, 5.871960867459332, 23.633295943742723, 7.729616757734162, 47.533863956444605, 85.13485543977721, 59.79237658653557, 93.20179929685874, 15.53047319777053, 7.435994562239094, 17.919280345965177, 5.416467982013834, 7.092433244837979, 6.5891007186502915, 12.42485997397158, 57.982756610333375, 53.87680949914552, 11.260680637324375, 99.72150803100831, 11.453613821019148, 28.428178389794326, 77.10682961404372, 21.964526430438685, 98.66618777225378, 11.790635538536545, 20.09785756580739, 35.12712474940889, 41.04948179374108, 91.56773003887899, 23.420515968563173, 81.15113546239874, 7.534014152264884, 11.325002199385422, 164.88018534413536, 28.431012567350614, 12.237683036428134, 5.072167684153422, 31.450644873046368, 77.94694987938583, 7.696756931077842, 62.40419544477681, 21.198313083825248, 59.46857642333963, 21.95226416743048, 100.76340927690251, 21.73276274137989, 17.069781868999993, 22.787168083252087, 22.02220356029101, 106.44571928033142, 14.559774456960538, 7.243301758591996, 38.08017645559182, 6.386318797167132, 36.75484540003411, 65.35183328303586, 6.099846297759042, 8.58035460706921, 5.669352270990335, 10.181976116297236, 50.377056261175504, 42.58399521446817, 8.133193005755516, 59.00228160986754, 85.98719341078139, 88.64438426960585, 79.0421936795692, 6.372281182635593, 70.77431451070342, 64.58119724594943, 12.26310819892735, 13.309590718000983, 8.245812108574265, 68.21840266860507, 152.14511012013963, 22.11489881186194, 18.754609080278154, 85.31607870892292, 36.32835408847872, 9.036206660098124, 41.41968487031017, 55.71964764068937, 21.603223560055657, 23.13966319442613, 23.556256809350405, 8.035214175436574, 50.51429879539655, 41.081871026866715, 118.16522199966938, 40.40991529461174, 84.8876719411143, 83.7303912005455, 6.8900980572800625, 94.18889141294544, 24.37579335202196, 18.57619383115172, 14.203262830834415, 57.40565552331358, 100.79463965918146, 39.67030846733495, 7.616772875903235, 40.33124406908117, 24.605437616430873, 15.82220436909235, 79.51645021310176, 34.54036633944528, 57.48082143881457, 121.0276158871626, 34.04666722040631, 15.34681865927424, 6.031469343314607, 80.84336246781807, 32.71429865188982, 6.087684888107347, 82.25313919975802, 94.3382639788089, 85.82169518381383, 9.971661507605733, 46.41991901518887, 12.355588510308051, 58.861400860652466, 22.67635452168379, 24.076749762482596, 12.88943907086688, 48.76569951302215, 26.69359385428443, 7.238168359666823, 36.94978423421955, 7.793122816225809, 114.72790586125845, 7.4950223903189706, 8.884601284615018, 6.2140513663376575, 43.47523303516792, 150.31820678945485, 122.74423360178606, 29.975573353229652, 48.00322085134435, 90.82978384778052, 17.90119525500951, 10.391924302404789, 34.65293605692355, 16.86229414904183, 205.92419690504462, 46.92769952487448, 18.441198523494954, 50.951291603542096, 18.295058870655534, 43.027625453366376, 33.284600130586114, 7.182311554994006, 30.43433477453808, 20.273860551356712, 13.745664139051366, 18.728777440248027, 15.873581926992726, 30.618151437989162, 92.55696694261958, 48.517349431200365, 20.82254625449054, 33.116951794871945, 5.348107474349705, 23.609277850957653, 174.55651132508024, 13.40051543384193, 32.60938286169837, 40.25413119612015, 203.42265107866547, 70.17979066129514, 128.4846927014143, 113.17139329193921, 16.881549357703115, 9.299587436755456, 47.03445427298361, 48.954762296300764, 31.939867793119127, 35.30962043758531, 11.732340805967256, 103.01149083150884, 6.454140023828605, 8.547695021242843, 127.5755992360488, 31.550763214217383, 118.14762000398332, 86.13136770132711, 12.388446666527598, 31.12747531162584, 57.23278633911032, 15.299684169645245, 72.02723616022944, 47.84941910048735, 26.821164142468454, 148.0033994091305, 33.76176395273888, 43.62957865282516, 18.504052318990077, 9.898197515471523, 61.26692452036546, 46.359227843156006, 36.17355924757493, 41.235054251483355, 25.24702176774894, 46.329238934378964, 7.70499779146175, 9.618164962906437, 16.569710669612604, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([3737362.319224936, 3768320.1074678535, 3769588.3341696155, 3814057.8079347787, 3814093.412457006, 3895902.2930306927, 3959016.9341606796, 3959323.352602122, 3968879.6875, 3968883.9813560024, 3974279.6875, 3976390.8027257673, 4016912.5, 4025649.9097010694, 4027326.1736947657, 4028530.1731234053, 4043454.6875, 4055532.320275219, 4059305.310196502, 4066249.7386316694, 4066533.2769956687, 4066667.1875, 4067498.4375, 4067877.935129406, 4078168.75, 4080994.4151754566, 4094813.917510293, 4096337.5, 4162440.625, 4189171.1637144852, 4209292.1875, 4214700.614995896, 4216654.481831429, 4220477.850629937, 4221084.375, 4221731.486547901, 4223751.5625, 4223831.092863197, 4224218.75, 4224439.650932144, 4224499.129377584, 4224584.962216653, 4224585.9375, 4230729.183680063, 4231561.83022355, 4256412.5, 4256637.475970191, 4262820.3125, 4285549.736343914, 4291748.30227511, 4297728.125, 4299728.125, 4299831.25, 4300334.355298599, 4302410.197761499, 4304620.275662569, 4304819.6764604645, 4306664.514007771, 4307283.025446345, 4309142.1875, 4309318.045656781, 4309738.886785497, 4311573.4375, 4312214.716384253, 4313369.794370718, 4316767.1875, 4317888.995679791, 4332340.868270253, 4333391.473425327, 4336121.5886625275, 4338185.422665623, 4338354.6875, 4340329.6875, 4340891.249130071, 4340925.71975054, 4341122.2993991105, 4341159.950854262, 4341340.5129893115, 4341384.375, 4341388.690625954, 4341715.594581833, 4342167.045107303, 4342188.470355959, 4342251.179702336, 4342335.045263596, 4342407.724705873, 4342535.5640246235, 4342913.65266506, 4343276.469572635, 4343521.336282286, 4343807.085399669, 4343951.140705009, 4344131.25, 4344158.535556904, 4344167.101686896, 4344806.25, 4345234.265831328, 4345251.5625, 4417475.4219095595, 4424212.295026164, 4424799.316071791, 4425854.6875, 4430090.925896448, 4484521.875, 4486115.294408467, 4491496.218783592, 4492814.0625, 4513531.25, 4513563.270961994, 4513630.4749012, 4513761.242428409, 4513784.971362434, 4513794.656442916, 4513806.25, 4513875.946992463, 4513956.488465608, 4513972.54323184, 4514062.0998368915, 4514112.735693974, 4514121.83293827, 4514332.903391214, 4514409.131408522, 4514475.0, 4514533.986948295, 4514563.875523997, 4514859.577734093, 4514926.098411658, 4514944.968195784, 4515141.387791324, 4515193.75, 4515223.392726919, 4516422.848364509, 4516539.018769855, 4516663.542853213, 4516724.227569911, 4516786.455459887, 4516921.875, 4517087.5, 4517106.15044364, 4517730.993844636, 4517950.709172315, 4517973.4375, 4517994.444341849, 4518071.861642934, 4518124.057063128, 4518187.102290695, 4518570.3125, 4518761.0390957305, 4519021.700151816, 4521603.125, 4524614.046886593, 4537185.9375, 4544376.5625, 4546398.274189193, 4547579.8879493065, 4548135.514462273, 4548667.566713203, 4549124.33804004, 4549496.301850816, 4550089.319695119, 4550207.8125, 4550217.627767469, 4550229.984599526, 4550318.401206433, 4550500.0, 4550602.884577073, 4550834.068398725, 4551410.444473662, 4551675.0, 4553000.169737308, 4553049.246667197, 4556073.4375, 4557290.185308021, 4557323.127033407, 4557476.5625, 4564855.862184267, 4565679.6875, 4569900.184605448, 4569914.0625, 4569945.958726636, 4570457.127567061, 4571569.081226359, 4575065.625, 4583638.939009756, 4600465.556705809, 4601789.99339949, 4602338.023120754, 4602650.979412508, 4602676.33337214, 4602947.544430346, 4602985.742629668, 4603033.7528233295, 4603689.991249915, 4603710.430685568, 4603797.01128283, 4603803.844276355, 4603892.712547943, 4603900.978504765, 4603993.442772288, 4604126.139303954, 4604226.85028401, 4604243.738894629, 4604256.25, 4605394.60679821, 4606185.746727604, 4606589.0625, 4610005.102163344, 4615556.624012654, 4619337.893468209, 4637680.924263548, 4638525.6618564045, 4639895.035092752, 4654325.0, 4705182.415639631, 4705713.877572366, 4705825.373097682, 4706075.0, 4706193.02710491, 4706229.274486106, 4706380.891808403, 4706467.1875, 4706593.351664718, 4706655.827530153, 4707026.149511468, 4707445.3125, 4707582.8125, 4710669.812726596, 4712160.316789877, 4718364.0625, 4718467.530028348, 4718750.489471407, 4718794.391776776, 4719776.5625, 4734760.9375, 4735280.916021357, 4737997.487127138, 4738884.799648786, 4739260.587836633, 4740076.5625, 4755146.425184325, 4776239.0625, 4776922.508273684, 4779528.009332581, 4781672.917203334, 4782853.125, 4782975.114355887, 4782998.4375, 4783186.342172406, 4783436.031176419, 4831462.169953922, 4841770.081827209, 4856659.375, 4862285.242226166, 4990672.940267913, 4990692.531809707, 5788827.535058004, 5980906.25, 5980970.078898329, 5997621.875, 6141388.37814342, 6167018.493285142, 6168225.0, 6302136.676695142, 6363747.676377505, 6417917.1875, 6419898.061371036, 6425008.009712296, 6448073.4375, 6454338.461175444, 6457406.094655668, 6457487.5, 6457666.4990103645, 6457733.96073498, 6457870.786801084, 6458320.3125, 6458492.617065263, 6458626.5625, 6458788.105112579, 6458918.75, 6459519.004487086, 6459705.52510419, 6459866.471001826, 6460460.783465915, 6461912.5, 6462051.5625, 6465089.0625, 6468125.835150494, 6468506.500291788, 6468761.163957459, 6469151.6396099, 6469154.844587642, 6469418.75, 6469428.961339137, 6469720.3125, 6470059.375, 6470758.920818713, 6471292.642166799, 6471302.585751426, 6471457.174240131, 6471464.615992459, 6472022.004969448, 6472352.020822788, 6472832.337024097, 6473319.238018831, 6474060.9375, 6478243.384076999, 6480338.917611786, 6511751.876418328, 6567878.88769679, 6573906.25, 6585979.6875, 6586854.675632965, 6597218.75, 6597910.050186255, 6599434.467652052, 6600310.486406018, 6600453.839779067, 6600589.281530639, 6600876.446334945, 6602647.57023148, 6604292.960505408, 6607237.5, 6626426.5625, 6629271.875, 6630369.654555957, 6630911.916029292, 6631404.760133183, 6632210.0524688335, 6637070.222467461, 6638339.7535910215, 6638428.687978196, 6638514.243670019, 6638973.847645037, 6639315.401186668, 6639728.125, 6639746.242254172, 6639832.07415015, 6639833.14186783, 6640049.707509076, 6640240.519799437, 6640488.878373879, 6640642.495275627, 6640955.338290368, 6642351.358074942, 6643478.065740101, 6644798.510101917, 6749237.476666083, 6769173.4375, 6772244.922223882, 6776837.5, 6797680.887501251, 6816331.868985312, 6816914.6810111925, 6816936.119160354, 6816960.6398993125, 6817171.450580789, 6817420.998420899, 6817570.3125, 6817646.907358977, 6817834.367281517, 6817872.535176274, 6817874.27149279, 6817900.550518974, 6817932.665630371, 6817995.3125, 6818221.5556931365, 6818237.418832114, 6818314.0625, 6818369.405151062, 6818457.61454589, 6818525.743798454, 6818564.295736444, 6818731.871234186, 6818770.3125, 6818832.4304218795, 6818836.476070135, 6818908.839457276, 6819051.5625, 6819127.982134956, 6819170.729095498, 6819187.247154283, 6819259.375, 6819323.4375, 6819412.2392183645, 6819469.448452336, 6819490.625, 6819496.673561929, 6819643.75, 6819748.370900372, 6819841.981688042, 6819855.462759205, 6819973.876292916, 6819982.482450463, 6820009.128705528, 6820017.163573532, 6820038.823126645, 6820152.867511168, 6820200.169389682, 6820221.319771025, 6820222.977825282, 6820226.5625, 6820229.035014366, 6820239.026581291, 6820333.858306864, 6820372.774895743, 6820602.08972407, 6820749.872028024, 6820835.274174506, 6820881.395882019, 6820960.9375, 6821035.9375, 6821118.610553684, 6821539.2601732705, 6821550.0, 6821747.144280084, 6821748.403063941, 6822011.758695759, 6822471.875, 6822497.945248009, 6822639.483201371, 6823393.30040921, 6830723.344273861, 6836956.878166361, 6837956.25, 6838692.081673759, 6838808.98058741, 6839325.248826157, 6839380.6919901185, 6839451.603018789, 6839571.416590059, 6839614.313908902, 6839637.959259003, 6839727.541970392, 6839763.544633727, 6839861.25117745, 6839874.032821742, 6840040.625, 6840135.9375, 6840155.212823225, 6840168.431818524, 6840344.8441592865, 6840498.4375, 6840499.418389804, 6840694.597754564, 6840804.779509585, 6840931.76800163, 6841257.561104786, 6841487.5, 6841720.294246391, 6841812.5, 6841836.400467602, 6842233.935005521, 6842425.0, 6842726.9563096985, 6842877.893303744, 6842915.195451232, 6842967.969211223, 6842973.4375, 6843532.8125, 6843663.014269312, 6843674.354171295, 6843708.774561989, 6843789.9692649655, 6844047.775980476, 6844171.875, 6845829.733826617, 6846303.638399138, 6846460.260483539, 6847312.444084422, 6847376.121385612, 6847409.038608904, 6847924.565282939, 6848179.6875, 6848553.191448731, 6848773.683284669, 6848825.4241794925, 6848978.125, 6849198.0518080015, 6849277.382228666, 6849301.359043031, 6849750.818366873, 6849918.75, 6850417.1875, 6852192.943393484, 6852276.617889287, 6852710.608882779, 6853116.532221451, 6853162.845631523, 6853355.776209962, 6853554.349402727, 6854174.055105142, 6854443.818212633, 6854940.625, 6855492.080431976, 6857004.9273277065, 6857030.269373492, 6857158.483550508, 6857484.581660019, 6858093.75, 6858228.125, 6858943.75, 6859005.364589689, 6859334.960874724, 6859483.854754285, 6860240.533526956, 6860432.266412852, 6860514.0625, 6860762.5, 6860816.209449086, 6861223.658973471, 6861432.885242959, 6862309.8572471775, 6862328.125, 6865569.601676037, 6865592.1875, 6866305.958870572, 6866406.140654512, 6868959.375, 6880384.155951942, 6881563.100427071, 6888077.332762099, 6888085.8862315845, 6888175.0, 6889487.255683105, 6890009.375, 6890589.0625, 6890598.568152671, 6890904.6875, 6891071.283925338, 6891103.064143908, 6891461.767376998, 6892220.272583022, 6892826.061471263, 6895462.779238601, 6901826.5625, 6902967.07481792, 6903985.038256925, 6904291.910093171, 6904600.0, 6905495.028783584, 6905869.153116753, 6906278.125, 6906558.683127046, 6908360.445093473, 6908457.913467958, 6908689.0625, 6908922.4303421285, 6909153.06252647, 6909166.73967799, 6909218.520841981, 6909218.890965726, 6909223.283205352, 6909467.003545429, 6909676.5625, 6909702.385600109, 6910057.931037627, 6910298.4375, 6911031.605616209, 6915448.918857627, 6915704.520210105, 6916473.341438556, 6956008.37061866, 7027517.836118045, 7028809.516861729, 7095323.90473136, 7095404.12793109, 7096170.38606995, 7101736.795902223, 7108145.819355441, 7109880.41225162, 7110610.4934293805, 7111166.7179759955, 7111483.098130847, 7111521.59863014, 7112203.125, 7113347.9278455265, 7113981.104163062, 7115819.992714762, 7116110.9375, 7116877.803670421, 7119303.811117588, 7119579.6875, 7119850.389869056, 7120121.875, 7120498.151169164, 7121620.298484831, 7122345.315732389, 7126567.26131833, 7126572.240745777, 7127737.490183007, 7128227.669819273, 7128240.0702773435, 7128560.847980425, 7129163.165087988, 7131631.286603125, 7132798.4375, 7134774.5052294, 7136200.817399406, 7136348.4375, 7137170.3125, 7137957.8125, 7138052.445943077, 7138115.991218267, 7138140.250260029, 7138142.560201867, 7138411.39223587, 7138517.96275165, 7138580.880977766, 7138644.8623399725, 7138650.0, 7138760.014137255, 7139407.8125, 7140131.182495777, 7140193.75, 7140245.833901395, 7140377.219451736, 7140453.337493904, 7140569.06307911, 7140570.291289988, 7140609.42703036, 7140611.640657862, 7140624.911906536, 7140640.0689441, 7140692.3430467835, 7140844.229238897, 7140845.389536505, 7140862.160972042, 7141365.249815325, 7141470.690187835, 7141602.310014669, 7141912.831192333, 7142010.430987249, 7142180.903736471, 7143331.25, 7143872.833416918, 7144021.395111347, 7144032.8125, 7144129.6875, 7144187.375779165, 7144230.900875616, 7144245.3125, 7144250.0, 7144335.611535869, 7144393.75, 7144454.770828057, 7144513.342626722, 7144621.869347354, 7144657.8125, 7144740.625, 7144760.387112244, 7145289.668237824, 7145424.137652792, 7145622.284716233, 7145910.316374628, 7146136.141995178, 7146282.784422396, 7146813.429000187, 7147077.963777668, 7147127.611757128, 7147369.747728261, 7147562.625643013, 7147582.772111574, 7147634.375, 7147659.515874131, 7147693.75, 7147719.535074861, 7147757.937315562, 7147814.324659711, 7147971.73878358, 7148157.8125, 7148174.469576958, 7148224.784801172, 7148232.375611247, 7148379.283337929, 7148393.065863019, 7148421.344589013, 7148527.60426513, 7148571.245523533, 7148622.716668706, 7148822.686698208, 7148825.402364522, 7148937.74405096, 7149006.25, 7149129.153515988, 7149350.0, 7149401.339755167, 7149510.032210689, 7149520.680387509, 7149591.143613611, 7149672.499803976, 7150199.149770135, 7150277.877384219, 7150390.625, 7150431.717086377, 7150518.432688256, 7150821.506948146, 7151040.771632374, 7151063.422273904, 7151072.127584634, 7151359.5315538, 7151469.154054331, 7153271.19141157, 7153365.340602725, 7153520.206251271, 7154032.245455801, 7155338.613702701, 7156628.701093655, 7156762.4076328995, 7156868.75, 7158063.201675896, 7158479.529180463, 7158573.820861556, 7158978.125, 7161195.476287212, 7163290.599381861, 7179371.875, 7185299.67063035, 7185312.5, 7198646.875, 7212240.388531963, 7225602.829084809, 7231719.339808327, 7389370.269039751, 7390129.844600892, 7390335.904752728, 7391949.0598410545, 7391964.0625, 7393868.75, 7395962.881849087, 7396684.347030631, 7435848.717633129, 7445132.8125, 7458279.6875, 7472616.673924085, 7473073.4375, 7474506.25, 7479188.53012868, 7479300.498461246, 7479569.84941719, 7479711.658110764, 7482110.9375, 7482383.560692407, 7488338.816507471, 7489328.774454701, 7496967.743275125, 7523314.889906898, 7523346.083057506, 7525945.258852693, 7527087.450478724, 7529293.75, 7638584.375, 7643004.6875, 7644560.711534221, 7666098.018799307, 7731989.0625, 7732496.875, 7743087.27523431, 7747639.908013532, 7805731.530489401, 7808782.8125, 7829231.25, 7897318.75, 7901123.4375, 7901381.904035995, 7910591.691417707, 7915061.56538549, 7917030.627805933, 7929591.601813623, 7958656.095466235, 7960153.125, 7961051.91305325, 7973295.3125, 7973670.3125, 7979989.0625, 7980228.125, 8008801.06223124, 8033057.478126567, 8033082.1076048575, 8039658.47601432, 8078977.64165586, 8081972.286571233, 8082164.0625, 8082220.404628117, 8082802.114984809, 8083792.1875, 8083805.590364504, 8083845.914193257, 8084124.235227361, 8084254.6875, 8084368.75, 8084421.386017085, 8084422.16974669, 8084440.1969205635, 8084518.722186597, 8108684.756913564, 8159219.504024537, 8162323.427919713, 8164058.148905594, 8165782.929321364, 8172357.8125, 8191468.201626845, 8433723.714269945, 8592626.708891584, 8593169.825147979, 8595191.234979464, 8595219.212846322, 8595501.450946786, 8595513.121274497, 8596560.07179036, 8602834.375, 8609835.9375, 8610821.958438803, 8611942.1875, 8611950.198957477, 8612312.757847846, 8613127.36688536, 8615915.967338761, 8618448.4375, 8622282.315593082, 8695719.66025222, 8871588.009088093, 8914120.370650718, 8964030.809462208, 8964168.42370049, 8966726.5625, 9013529.491963798, 9025945.435160061, 9057940.814927675, 9069170.307729658, 9074816.235369394, 9075437.679099346, 9075465.465798149, 9076014.89440833, 9076109.626371022, 9076185.582805766, 9077652.59493236, 9077818.75, 9078262.04482925, 9079050.0, 9081964.649616536, 10006561.40254954, 10096426.183125818, 10097085.488953313, 10097689.98702127, 10109187.396107722, 10110894.194107998, 10131384.375, 10150305.575547818, 10242685.313556759, 10452760.813225659, 10557265.737209782, 11312441.142081566, 11312477.520760475, 11319989.922062906, 11327280.673118904, 11753395.55768462, 13146848.135730473, 13202156.25, 13217829.6875, 13331825.27720934, 13430139.0625, 13451205.47629836, 13503426.5625, 13507495.774065569, 13559311.559847921, 13592329.181480683, 13610603.047108565, 13611285.81731944, 13612113.53394567, 13630363.35179437, 13640066.36083879, 13642670.120946249, 13643513.33487636, 13643524.628956957, 13643853.822990427, 13646226.5625, 13654104.198468937, 13664530.757366804, 13668574.68462042, 13670594.804866383, 13672227.594460543, 13672270.625522591, 13717657.8125, 13726446.868711434, 13727409.375, 13757164.90213507, 13758525.602658868, 13766119.523647234, 13767674.747406755, 13769253.835197011, 13773898.229320519, 13778599.67808802, 13778742.069880467, 13778783.382706288, 13780073.474768404, 13780783.193477273, 13783734.994905947, 13786654.296365095, 13787888.451982828, 13789117.1875, 13807395.073160214, 13851136.701106694, 13880030.99888444, 13891998.539923197, 13893255.687242983, 13893881.25, 13894318.257408863, 13900835.93351479, 13904727.027257262, 13905010.9375, 13906529.6875, 13913444.421173085, 13914476.25662507, 13916714.72777746, 13916858.471325727, 13918198.048462825, 13918584.100100502, 13918591.519944748, 13918735.1029058, 13919009.27505991, 13919614.488650808, 13919674.897876555, 13921200.496164965, 13921592.1875, 13928610.628050076, 13931486.91967895, 13932230.817436198, 13932498.4375, 13933910.837801313, 13935727.81757867, 13936279.344284162, 13936284.375, 13936681.25, 13937761.544583142, 13938472.90957278, 13940405.75361692, 13941494.17666371, 13941873.009845475, 13942026.5625, 13944230.147237232, 13947910.9375, 13947988.168462181, 13948348.4375, 13948382.8125, 13948467.414070211, 13948569.696676604, 13948580.61842676, 13948610.5838816, 13948764.794665633, 13949067.41228413, 13949109.375, 13949124.17065526, 13949240.625, 13949686.930046054, 13949699.427582217, 13949703.304417217, 13949708.01690003, 13949924.29391224, 13949982.339467477, 13950060.9375, 13950200.0, 13950217.377605917, 13950350.881594848, 13950437.196064983, 13951205.311946299, 13951224.095105203, 13951545.274631817, 13951713.809896288, 13951803.125, 13952872.00723767, 13953370.3125, 13953556.605202286, 13953953.093087118, 13954152.911526047, 13954250.463161232, 13954587.5, 13954721.875, 13954735.9375, 13954785.9375, 13954897.555292854, 13956083.77157341, 13956102.415107416, 13956150.090901269, 13956160.9375, 13956414.0625, 13956909.282548077, 13956955.864749053, 13957183.444945015, 13957216.416681778, 13957814.762145495, 13958120.914509963, 13959154.6875, 13961411.373662496, 13962316.443213182, 13962385.9375, 13962426.60538071, 13962764.0625, 13964359.647852553, 13964564.383226965, 13966053.495322254, ...], [9.183086381281143, 14.213657909398803, 77.17486051483473, 28.435048926333316, 5.2807734301196145, 19.646368695041197, 24.365644883358346, 42.35172165128767, 72.56953612400335, 10.563530060957257, 98.66450669562545, 11.417351414059306, 74.99398777157496, 83.58115807177843, 10.569895441055282, 5.108135557138435, 100.2756107687476, 23.247390350542084, 12.26385053319802, 123.7268723860184, 9.757678378602849, 55.2536651177522, 44.46558508448569, 16.422877314915524, 61.71999541106577, 7.862946112544786, 31.969701415603055, 62.34320277943377, 48.788634369575846, 58.519092400521586, 88.21898791658353, 75.66328877272466, 37.86502890711992, 10.72432167845841, 69.75814035252333, 20.186936106503296, 38.05609513211028, 44.14582156254, 53.00443715698298, 7.830894711099887, 71.02177776199481, 14.638099882914922, 43.692506200296755, 13.31559628840592, 19.951652287197867, 42.125759504650254, 11.090353254770614, 31.23908981484898, 58.333327183080755, 19.61366340215322, 40.001832463741046, 63.986368196834576, 60.76829926662392, 28.140786867776466, 5.498224403677244, 49.980009915214765, 142.90827626950946, 6.857123386169211, 15.22794747131757, 98.28437492075795, 12.79919684732764, 12.90009484856422, 30.395625748876384, 18.19945679711233, 13.276666932962414, 32.88654488871809, 39.23239357292441, 6.813065260177078, 46.57962207111718, 23.9268445467479, 144.48443759706058, 41.9741262639778, 92.85335867218215, 7.295786284490513, 18.64214871959171, 16.850264288068598, 22.203601412198786, 10.957027006890558, 51.20098862228508, 29.45596670557482, 9.305814657490181, 18.749358667795846, 28.723340081903714, 29.952523079365434, 5.750785874689642, 89.5760385099171, 61.095319922535225, 82.96954630918873, 68.39039669687986, 69.44396726668705, 47.69369708014207, 7.457487873363341, 64.4752008212952, 21.838960271493406, 26.935488394857305, 42.443957242132434, 14.541119171770758, 86.18673487147562, 5.845871744444563, 51.376720194361404, 6.952569534508566, 54.54584185781688, 16.227452170100985, 35.7855163308442, 37.23277513673705, 118.00201453329504, 177.1650700227213, 51.80198439321573, 19.0063789333899, 34.273240148115285, 55.87980286940426, 95.33939453485505, 29.966443989151344, 144.45916513331397, 20.413366146600044, 20.46885556894332, 125.30211532314037, 6.42613990892368, 7.690768222197161, 27.718996878404123, 9.40945777669523, 65.51139855129793, 57.141744058533085, 14.072448047354452, 14.273719937049798, 57.71441501730947, 192.90478940885538, 35.3641995923311, 30.168436990023448, 30.200136036736072, 63.86744458147063, 20.64773838246144, 14.777409712261717, 134.55244912999598, 7.345872252393603, 9.811458836579137, 28.645060804262283, 40.34746751791797, 26.700095970030823, 14.047473162897811, 41.552301312019765, 83.76817440315129, 18.46806623213122, 62.446025801867435, 6.893839554651502, 22.57803126850663, 80.60775046253235, 15.343420117335429, 10.864980570001764, 173.39258692741836, 14.882330510259042, 62.173039111026114, 36.2302910406428, 25.669300837974035, 6.292860280935553, 194.6284814587179, 23.58231774081941, 23.503726529559742, 74.4824693932072, 7.190742494053349, 55.76916245576464, 16.93504876694769, 21.168680650054366, 10.623033636882122, 52.738322520857125, 24.54280392021314, 7.495985864124437, 104.68042325813809, 45.71700225849374, 23.862176020542805, 27.668678633982875, 40.40029394163488, 22.116566919251056, 7.042162869799862, 75.68310910676983, 20.231540782281428, 30.016502417062288, 108.17971217349594, 39.66495739299225, 59.910274638271225, 18.26319473996175, 100.74988968441599, 91.33544533450406, 26.301657356701902, 36.19719647908259, 20.27362580956928, 60.41853905127239, 20.702454337412192, 10.787505775572866, 131.94369748615597, 6.72521597776971, 28.76593091314051, 91.86336310793705, 5.088610092984302, 7.653283967586822, 6.004591617884241, 17.408227322644755, 89.12929376949117, 62.45889222102508, 27.30389395941394, 94.98518564908866, 124.49964577228315, 59.01898607814068, 12.23364972305719, 100.93078211310448, 71.4564155320781, 16.798808697551213, 24.572470569394277, 52.37448703528459, 13.830071904868126, 43.76084143226031, 129.64556251923833, 89.87107608355743, 88.35062629053917, 130.90862445684343, 17.495888641502848, 56.793517879523435, 32.8136568860555, 22.407058142444637, 48.46969866809826, 93.72886631874113, 19.285740737763454, 6.422843729097433, 15.785755196245834, 28.7071495159403, 41.94487274014629, 10.427114989906189, 30.80416417092001, 66.73207538094694, 9.63885737811965, 32.8185851985289, 6.89877290520835, 96.03473045178804, 60.393418625577496, 61.31439056174132, 7.840728442219034, 23.09142157315197, 23.136433970285605, 51.728399025583236, 30.17959972558741, 40.68306104259786, 15.909405272249522, 5.929395411170496, 8.927074512839656, 55.39415395794505, 5.466696322027195, 47.272838989412335, 11.825198620306566, 54.684306337588495, 23.374384723077664, 24.67862482305913, 58.54758891878302, 25.32161186813068, 21.520756153458972, 69.74396203712922, 67.55124218660072, 43.67476479847492, 24.63763359768699, 49.91789432970638, 50.58489157215253, 10.748830663499197, 49.821824484883415, 7.330337337776931, 64.67135515388128, 44.23777232792657, 7.472636777119789, 5.297218126453584, 99.72710521998768, 38.582613445440145, 79.59835919185198, 51.66361471559409, 28.71465022117878, 7.45997572514058, 17.12082155251124, 30.113992375712282, 16.17594079274816, 58.92861107073817, 79.86728871888354, 78.10477500913501, 43.54969708014264, 19.370733639460873, 57.57869291801978, 47.96849572787596, 47.94693984941698, 59.595566770351795, 35.14282006036397, 8.783810746480059, 21.18040347096369, 24.78942045297894, 5.946148969039103, 15.576080563108775, 47.37246914984944, 19.499216792948364, 41.08728696012994, 35.00067102918067, 30.096177918338324, 11.921439860949658, 46.31045572206832, 56.17219913439906, 6.5775034597219975, 12.074823928549248, 18.773417218004617, 8.959310620680725, 7.2559313333093165, 33.63600453573232, 22.943672318297153, 14.416597406340022, 5.410611981108858, 12.573675042752436, 55.73725386170398, 97.9233444672571, 65.7454584139052, 73.90328768500747, 132.99804898449116, 15.306820344711568, 68.77382041443033, 10.018984994628683, 71.73176332277903, 26.42208728920811, 17.878720987280516, 15.889926984862363, 54.38326204312283, 64.56717833799048, 37.79470667216876, 20.05004609439551, 6.9759626164529305, 9.393583152960892, 18.354786322026243, 13.775479535091584, 9.99317932978207, 28.41128628695199, 5.624146146308867, 16.775071975047595, 5.23892409927747, 29.39158006528951, 6.643433143856895, 8.776449137129601, 11.68475768040407, 19.134726870151674, 26.604837349457306, 122.1890801117788, 19.202790701661243, 9.949810392914978, 81.23544278964114, 6.751733177606594, 5.618073318690475, 15.7293663114507, 42.71823748609845, 33.7098966576608, 32.29123690328831, 13.719094679302417, 12.25595434941903, 17.972835175605425, 15.682278064555595, 8.135230771075305, 87.10399021457941, 18.41130279796084, 63.750846837817235, 8.303763743514889, 13.125941317928895, 6.902873619136327, 8.783034843026671, 27.1527153502765, 55.36176848413642, 51.66309327518748, 55.0763391814959, 11.003162818690672, 74.77319354589838, 37.52670900831518, 6.067752834478162, 41.660532809914685, 20.124806687337994, 8.644895989987916, 58.0394930143639, 10.578766594057143, 5.987721092261761, 21.145721480511185, 47.057797279460466, 56.92760100394463, 16.80898685490438, 24.37235795976277, 35.453519875733434, 68.40526113680745, 6.061393660871369, 8.694028263189562, 49.94692579553566, 55.56361722240484, 92.40685901872119, 85.18187321508594, 51.42739221587547, 12.602664207415417, 27.63587101470909, 52.934977271440445, 24.461883857983757, 9.31125360702121, 44.16852712702456, 28.108263007751916, 8.378231808964589, 105.35415102237715, 6.675079534796943, 57.14837155072841, 12.926963487051493, 45.91729882849589, 21.328178038369952, 20.011145872846516, 5.419019192229296, 19.420770320339372, 20.005142697279666, 16.36374587265061, 40.539586424296004, 31.521940721976637, 32.97707325355662, 5.8287526220101835, 126.05841095672696, 41.910558763381204, 44.812421301091035, 7.929954219308007, 61.594203570492596, 8.947192002886286, 49.892411049946716, 22.01114267209405, 10.985049290623987, 17.182175454696207, 28.746986532216336, 26.594327560569884, 25.729953416528687, 25.57787837665999, 7.413157937605903, 26.181413877282274, 21.918264558798896, 23.692752291932283, 67.27700005759573, 5.031853811282872, 18.27013155103287, 5.967196021128281, 9.891194831923633, 70.0138466750804, 29.611562626118406, 121.49701473544872, 34.41394821588749, 21.959310620126104, 31.21249311081036, 20.715875191159554, 5.575689710226905, 9.410433395901139, 9.811501242698572, 24.39211105283917, 149.40079909534535, 99.64638780891796, 71.60921142892748, 18.149638625575086, 82.98098338751336, 76.9020383022797, 112.23413397559496, 14.126278292412044, 49.74525208732355, 5.496349503256777, 52.71391627813162, 108.25877810487827, 17.346106620765347, 57.38213285752336, 36.54271014721388, 108.8949833304752, 12.90442903840929, 66.52032723591039, 24.30655458954164, 30.01295354837774, 26.03988746613927, 6.752394564635926, 32.04285246410369, 66.94247595331298, 22.170027050648457, 44.759229153713896, 18.660178613381362, 15.969098723609175, 6.555706464435208, 116.42400051229903, 13.650404432564947, 8.773497069361644, 9.165096614336779, 19.36046492058162, 57.04100659865826, 78.29405962099489, 44.9574977464426, 7.136088335414876, 56.01761332892609, 20.072382707712606, 16.445754552845873, 7.440416628946079, 52.523567387927514, 31.335181916387562, 8.322981739392132, 47.32544394554966, 69.96622083620655, 9.5427721904596, 6.582344787874375, 18.31217113115762, 8.398972084136606, 101.54815761475506, 30.912110104800202, 81.00743210749926, 12.381414612545424, 12.1861960639382, 8.029375711370017, 32.30795438016145, 21.045354479114067, 76.66768435018218, 68.04556792693757, 12.18322007755835, 26.99968615950842, 10.87989784626513, 11.975599505317643, 32.85784027435943, 12.783496261159872, 71.03636623764949, 16.385293139784487, 10.960988492929848, 74.80656412332615, 6.239914299559864, 48.64803129224771, 26.96757821176098, 84.03960866857173, 73.96646056308018, 24.489065819172996, 96.23626924287407, 62.92398643938826, 13.220414679566893, 52.771815774826756, 78.94288411096929, 27.375865014520176, 5.87804642487564, 42.34504146751978, 31.26571790712594, 67.93271844663899, 61.99620723298483, 10.95602981570958, 25.03030923458802, 38.76217808798078, 57.001999955278066, 10.711422744771088, 13.8166045402374, 68.3648982783054, 19.771167186075036, 21.569185110937386, 26.178110332063905, 50.28796857069148, 7.275509308300727, 27.34680520928261, 10.493136655244156, 10.787463239345342, 18.35451754998838, 7.081474480821036, 10.851853139067304, 72.79510154107236, 12.714955865244104, 61.80603577345346, 85.71959444119194, 16.495577408239267, 6.139628672672048, 25.60810749112968, 94.83064588347193, 17.60258189323014, 5.650964141408839, 8.363048453718518, 17.08178195527272, 7.412657853224577, 15.229539524423204, 7.946311517678716, 5.5581961112290355, 72.16436368980276, 13.48187871699093, 53.234825579725324, 16.154747881939016, 10.72155736396814, 195.764438426897, 7.42874988004032, 25.94224808383872, 23.50126030164037, 60.245550672040125, 26.91989293598313, 18.41262342558644, 68.85413118072762, 8.504099546055768, 277.5100412284023, 22.61290108167048, 28.250486111174883, 73.65060666684519, 7.630156510700164, 11.751937844316636, 14.904223198123656, 5.232581839825779, 7.414212902851125, 77.38606854413177, 5.491055803478603, 5.709091494526549, 46.4585158261136, 26.92063162010752, 10.133553379508427, 61.37629622891186, 120.86650205289212, 30.3942143937813, 6.95369994784725, 9.661526859234298, 22.840788912103655, 60.789204579360685, 9.74797468542065, 13.8145838060149, 8.100618807472982, 5.781406550390005, 64.97178911410865, 130.86189875966593, 72.23551631407263, 59.014168281341284, 113.68449430067058, 28.66610173149037, 12.337484654003214, 32.678736992139804, 16.286118536178165, 11.09471524273142, 7.135196355130856, 71.91128634442838, 19.841374377319717, 126.97976682646632, 8.3705823158387, 17.14823071595107, 15.24349772882113, 13.789646088703686, 22.835629889243908, 6.84132661378913, 69.31468117726777, 12.409276666522958, 68.97865835908851, 22.4481556956987, 33.022519748373064, 6.396389498198599, 7.0007697423720385, 56.893057293612046, 53.75335664961685, 23.733150092608447, 10.62259057527047, 102.72196937811367, 35.15678073871496, 5.5174668811314165, 44.85919086468877, 5.53713842881098, 5.056035571118856, 78.41466954754448, 42.59264876457645, 38.527592333975235, 44.59880422571423, 17.89281124239409, 30.56168270955734, 20.05814635979038, 20.364307158832496, 81.79255288436696, 9.307774282725276, 29.046744858131085, 8.203121489803673, 147.28318841373516, 70.78227337459458, 11.329943075939216, 11.065158522129309, 43.822825136195505, 33.584846096510674, 53.23205197163633, 92.1134022493266, 41.524262173721496, 48.527304519580554, 76.53157567914283, 59.51247383514085, 13.243489667113543, 14.180157827866454, 13.50228140739982, 7.46331990859856, 56.14449783190893, 13.243522077802675, 28.88159016082907, 26.617020438047927, 7.36179379573736, 7.352525526664377, 9.696492086710654, 30.839822085528795, 72.77788453329173, 21.160660441911034, 39.19029622716429, 6.719837388294191, 12.338046504054935, 9.66313151153607, 16.539092979544094, 31.919352219303235, 37.81736400743127, 10.76153560387105, 74.80800295004413, 17.080983838080748, 23.532098495659646, 59.939113088383564, 31.942378208929558, 55.8418271531354, 11.546881042562658, 38.94556239294198, 11.195461706855868, 51.04132376585331, 78.27758378382252, 5.930205847570665, 7.410262285793927, 7.448598986273836, 146.66392351084596, 43.19895510001143, 89.04043990578668, 12.435706625052253, 52.53046555386358, 50.10628166469803, 70.77850096042827, 90.47318801705653, 40.886325118580736, 51.8738820153842, 62.293600550134485, 45.729787602975954, 36.174166402428824, 156.7147710406242, 23.803060049024058, 5.858949188508756, 24.60170167912171, 11.382477522423526, 7.1128699203665455, 12.263093576611722, 57.34472797611786, 74.00999385141871, 7.225581085567609, 5.704980271513474, 51.18768954654844, 28.567803678367866, 81.54155211875046, 10.409811665730546, 67.06726169631176, 64.33167878070606, 76.61627114946799, 9.791721694056806, 35.017264601987215, 49.28283684110287, 89.44277416171383, 18.84217096476679, 24.466029343540455, 131.80516857544575, 12.1238392992704, 12.725214582970654, 12.591790654097542, 84.44808096771676, 27.581590613779067, 82.03270240762234, 57.13119320366504, 74.89275687891266, 24.74484986031315, 19.052432521107548, 51.288062310238054, 50.067607518130494, 60.09549141340622, 34.77845514583749, 51.27938024998907, 48.0572353504073, 34.1429265032179, 103.60602267312595, 76.21380803367988, 6.353525617444555, 48.656710079254616, 20.694911464797908, 85.41182679008749, 16.817209656848004, 39.514918900469056, 31.737629482932128, 16.47026247956771, 87.31109049554615, 45.35038513914103, 66.11086753524307, 28.926923215739276, 47.02740765297892, 13.803763491688978, 50.03963078128016, 58.16116048360013, 18.39367903770345, 23.01633342432678, 56.90328638389689, 27.82191598913738, 65.31168776543439, 120.41120130835611, 22.295989098074887, 6.152987816376674, 54.000416453889095, 53.52861002220382, 31.57509694252446, 118.2191972609213, 65.04530438114567, 10.980299103057867, 14.83654698792569, 54.892606131226046, 5.871960867459332, 23.633295943742723, 7.729616757734162, 47.533863956444605, 85.13485543977721, 59.79237658653557, 93.20179929685874, 15.53047319777053, 7.435994562239094, 17.919280345965177, 5.416467982013834, 7.092433244837979, 6.5891007186502915, 12.42485997397158, 57.982756610333375, 53.87680949914552, 11.260680637324375, 99.72150803100831, 11.453613821019148, 28.428178389794326, 77.10682961404372, 21.964526430438685, 98.66618777225378, 11.790635538536545, 20.09785756580739, 35.12712474940889, 41.04948179374108, 91.56773003887899, 23.420515968563173, 81.15113546239874, 7.534014152264884, 11.325002199385422, 164.88018534413536, 28.431012567350614, 12.237683036428134, 5.072167684153422, 31.450644873046368, 77.94694987938583, 7.696756931077842, 62.40419544477681, 21.198313083825248, 59.46857642333963, 21.95226416743048, 100.76340927690251, 21.73276274137989, 17.069781868999993, 22.787168083252087, 22.02220356029101, 106.44571928033142, 14.559774456960538, 7.243301758591996, 38.08017645559182, 6.386318797167132, 36.75484540003411, 65.35183328303586, 6.099846297759042, 8.58035460706921, 5.669352270990335, 10.181976116297236, 50.377056261175504, 42.58399521446817, 8.133193005755516, 59.00228160986754, 85.98719341078139, 88.64438426960585, 79.0421936795692, 6.372281182635593, 70.77431451070342, 64.58119724594943, 12.26310819892735, 13.309590718000983, 8.245812108574265, 68.21840266860507, 152.14511012013963, 22.11489881186194, 18.754609080278154, 85.31607870892292, 36.32835408847872, 9.036206660098124, 41.41968487031017, 55.71964764068937, 21.603223560055657, 23.13966319442613, 23.556256809350405, 8.035214175436574, 50.51429879539655, 41.081871026866715, 118.16522199966938, 40.40991529461174, 84.8876719411143, 83.7303912005455, 6.8900980572800625, 94.18889141294544, 24.37579335202196, 18.57619383115172, 14.203262830834415, 57.40565552331358, 100.79463965918146, 39.67030846733495, 7.616772875903235, 40.33124406908117, 24.605437616430873, 15.82220436909235, 79.51645021310176, 34.54036633944528, 57.48082143881457, 121.0276158871626, 34.04666722040631, 15.34681865927424, 6.031469343314607, 80.84336246781807, 32.71429865188982, 6.087684888107347, 82.25313919975802, 94.3382639788089, 85.82169518381383, 9.971661507605733, 46.41991901518887, 12.355588510308051, 58.861400860652466, 22.67635452168379, 24.076749762482596, 12.88943907086688, 48.76569951302215, 26.69359385428443, 7.238168359666823, 36.94978423421955, 7.793122816225809, 114.72790586125845, 7.4950223903189706, 8.884601284615018, 6.2140513663376575, 43.47523303516792, 150.31820678945485, 122.74423360178606, 29.975573353229652, 48.00322085134435, 90.82978384778052, 17.90119525500951, 10.391924302404789, 34.65293605692355, 16.86229414904183, 205.92419690504462, 46.92769952487448, 18.441198523494954, 50.951291603542096, 18.295058870655534, 43.027625453366376, 33.284600130586114, 7.182311554994006, 30.43433477453808, 20.273860551356712, 13.745664139051366, 18.728777440248027, 15.873581926992726, 30.618151437989162, 92.55696694261958, 48.517349431200365, 20.82254625449054, 33.116951794871945, 5.348107474349705, 23.609277850957653, 174.55651132508024, 13.40051543384193, 32.60938286169837, 40.25413119612015, 203.42265107866547, 70.17979066129514, 128.4846927014143, 113.17139329193921, 16.881549357703115, 9.299587436755456, 47.03445427298361, 48.954762296300764, 31.939867793119127, 35.30962043758531, 11.732340805967256, 103.01149083150884, 6.454140023828605, 8.547695021242843, 127.5755992360488, 31.550763214217383, 118.14762000398332, 86.13136770132711, 12.388446666527598, 31.12747531162584, 57.23278633911032, 15.299684169645245, 72.02723616022944, 47.84941910048735, 26.821164142468454, 148.0033994091305, 33.76176395273888, 43.62957865282516, 18.504052318990077, 9.898197515471523, 61.26692452036546, 46.359227843156006, 36.17355924757493, 41.235054251483355, 25.24702176774894, 46.329238934378964, 7.70499779146175, 9.618164962906437, 16.569710669612604, ...])
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);
([3737362.319224936, 3768320.1074678535, 3769588.3341696155, 3814057.8079347787, 3814093.412457006, 3895902.2930306927, 3959016.9341606796, 3959323.352602122, 3968879.6875, 3968883.9813560024, 3974279.6875, 3976390.8027257673, 4016912.5, 4025649.9097010694, 4027326.1736947657, 4028530.1731234053, 4043454.6875, 4055532.320275219, 4059305.310196502, 4066249.7386316694, 4066533.2769956687, 4066667.1875, 4067498.4375, 4067877.935129406, 4078168.75, 4080994.4151754566, 4094813.917510293, 4096337.5, 4162440.625, 4189171.1637144852, 4209292.1875, 4214700.614995896, 4216654.481831429, 4220477.850629937, 4221084.375, 4221731.486547901, 4223751.5625, 4223831.092863197, 4224218.75, 4224439.650932144, 4224499.129377584, 4224584.962216653, 4224585.9375, 4230729.183680063, 4231561.83022355, 4256412.5, 4256637.475970191, 4262820.3125, 4285549.736343914, 4291748.30227511, 4297728.125, 4299728.125, 4299831.25, 4300334.355298599, 4302410.197761499, 4304620.275662569, 4304819.6764604645, 4306664.514007771, 4307283.025446345, 4309142.1875, 4309318.045656781, 4309738.886785497, 4311573.4375, 4312214.716384253, 4313369.794370718, 4316767.1875, 4317888.995679791, 4332340.868270253, 4333391.473425327, 4336121.5886625275, 4338185.422665623, 4338354.6875, 4340329.6875, 4340891.249130071, 4340925.71975054, 4341122.2993991105, 4341159.950854262, 4341340.5129893115, 4341384.375, 4341388.690625954, 4341715.594581833, 4342167.045107303, 4342188.470355959, 4342251.179702336, 4342335.045263596, 4342407.724705873, 4342535.5640246235, 4342913.65266506, 4343276.469572635, 4343521.336282286, 4343807.085399669, 4343951.140705009, 4344131.25, 4344158.535556904, 4344167.101686896, 4344806.25, 4345234.265831328, 4345251.5625, 4417475.4219095595, 4424212.295026164, 4424799.316071791, 4425854.6875, 4430090.925896448, 4484521.875, 4486115.294408467, 4491496.218783592, 4492814.0625, 4513531.25, 4513563.270961994, 4513630.4749012, 4513761.242428409, 4513784.971362434, 4513794.656442916, 4513806.25, 4513875.946992463, 4513956.488465608, 4513972.54323184, 4514062.0998368915, 4514112.735693974, 4514121.83293827, 4514332.903391214, 4514409.131408522, 4514475.0, 4514533.986948295, 4514563.875523997, 4514859.577734093, 4514926.098411658, 4514944.968195784, 4515141.387791324, 4515193.75, 4515223.392726919, 4516422.848364509, 4516539.018769855, 4516663.542853213, 4516724.227569911, 4516786.455459887, 4516921.875, 4517087.5, 4517106.15044364, 4517730.993844636, 4517950.709172315, 4517973.4375, 4517994.444341849, 4518071.861642934, 4518124.057063128, 4518187.102290695, 4518570.3125, 4518761.0390957305, 4519021.700151816, 4521603.125, 4524614.046886593, 4537185.9375, 4544376.5625, 4546398.274189193, 4547579.8879493065, 4548135.514462273, 4548667.566713203, 4549124.33804004, 4549496.301850816, 4550089.319695119, 4550207.8125, 4550217.627767469, 4550229.984599526, 4550318.401206433, 4550500.0, 4550602.884577073, 4550834.068398725, 4551410.444473662, 4551675.0, 4553000.169737308, 4553049.246667197, 4556073.4375, 4557290.185308021, 4557323.127033407, 4557476.5625, 4564855.862184267, 4565679.6875, 4569900.184605448, 4569914.0625, 4569945.958726636, 4570457.127567061, 4571569.081226359, 4575065.625, 4583638.939009756, 4600465.556705809, 4601789.99339949, 4602338.023120754, 4602650.979412508, 4602676.33337214, 4602947.544430346, 4602985.742629668, 4603033.7528233295, 4603689.991249915, 4603710.430685568, 4603797.01128283, 4603803.844276355, 4603892.712547943, 4603900.978504765, 4603993.442772288, 4604126.139303954, 4604226.85028401, 4604243.738894629, 4604256.25, 4605394.60679821, 4606185.746727604, 4606589.0625, 4610005.102163344, 4615556.624012654, 4619337.893468209, 4637680.924263548, 4638525.6618564045, 4639895.035092752, 4654325.0, 4705182.415639631, 4705713.877572366, 4705825.373097682, 4706075.0, 4706193.02710491, 4706229.274486106, 4706380.891808403, 4706467.1875, 4706593.351664718, 4706655.827530153, 4707026.149511468, 4707445.3125, 4707582.8125, 4710669.812726596, 4712160.316789877, 4718364.0625, 4718467.530028348, 4718750.489471407, 4718794.391776776, 4719776.5625, 4734760.9375, 4735280.916021357, 4737997.487127138, 4738884.799648786, 4739260.587836633, 4740076.5625, 4755146.425184325, 4776239.0625, 4776922.508273684, 4779528.009332581, 4781672.917203334, 4782853.125, 4782975.114355887, 4782998.4375, 4783186.342172406, 4783436.031176419, 4831462.169953922, 4841770.081827209, 4856659.375, 4862285.242226166, 4990672.940267913, 4990692.531809707, 5788827.535058004, 5980906.25, 5980970.078898329, 5997621.875, 6141388.37814342, 6167018.493285142, 6168225.0, 6302136.676695142, 6363747.676377505, 6417917.1875, 6419898.061371036, 6425008.009712296, 6448073.4375, 6454338.461175444, 6457406.094655668, 6457487.5, 6457666.4990103645, 6457733.96073498, 6457870.786801084, 6458320.3125, 6458492.617065263, 6458626.5625, 6458788.105112579, 6458918.75, 6459519.004487086, 6459705.52510419, 6459866.471001826, 6460460.783465915, 6461912.5, 6462051.5625, 6465089.0625, 6468125.835150494, 6468506.500291788, 6468761.163957459, 6469151.6396099, 6469154.844587642, 6469418.75, 6469428.961339137, 6469720.3125, 6470059.375, 6470758.920818713, 6471292.642166799, 6471302.585751426, 6471457.174240131, 6471464.615992459, 6472022.004969448, 6472352.020822788, 6472832.337024097, 6473319.238018831, 6474060.9375, 6478243.384076999, 6480338.917611786, 6511751.876418328, 6567878.88769679, 6573906.25, 6585979.6875, 6586854.675632965, 6597218.75, 6597910.050186255, 6599434.467652052, 6600310.486406018, 6600453.839779067, 6600589.281530639, 6600876.446334945, 6602647.57023148, 6604292.960505408, 6607237.5, 6626426.5625, 6629271.875, 6630369.654555957, 6630911.916029292, 6631404.760133183, 6632210.0524688335, 6637070.222467461, 6638339.7535910215, 6638428.687978196, 6638514.243670019, 6638973.847645037, 6639315.401186668, 6639728.125, 6639746.242254172, 6639832.07415015, 6639833.14186783, 6640049.707509076, 6640240.519799437, 6640488.878373879, 6640642.495275627, 6640955.338290368, 6642351.358074942, 6643478.065740101, 6644798.510101917, 6749237.476666083, 6769173.4375, 6772244.922223882, 6776837.5, 6797680.887501251, 6816331.868985312, 6816914.6810111925, 6816936.119160354, 6816960.6398993125, 6817171.450580789, 6817420.998420899, 6817570.3125, 6817646.907358977, 6817834.367281517, 6817872.535176274, 6817874.27149279, 6817900.550518974, 6817932.665630371, 6817995.3125, 6818221.5556931365, 6818237.418832114, 6818314.0625, 6818369.405151062, 6818457.61454589, 6818525.743798454, 6818564.295736444, 6818731.871234186, 6818770.3125, 6818832.4304218795, 6818836.476070135, 6818908.839457276, 6819051.5625, 6819127.982134956, 6819170.729095498, 6819187.247154283, 6819259.375, 6819323.4375, 6819412.2392183645, 6819469.448452336, 6819490.625, 6819496.673561929, 6819643.75, 6819748.370900372, 6819841.981688042, 6819855.462759205, 6819973.876292916, 6819982.482450463, 6820009.128705528, 6820017.163573532, 6820038.823126645, 6820152.867511168, 6820200.169389682, 6820221.319771025, 6820222.977825282, 6820226.5625, 6820229.035014366, 6820239.026581291, 6820333.858306864, 6820372.774895743, 6820602.08972407, 6820749.872028024, 6820835.274174506, 6820881.395882019, 6820960.9375, 6821035.9375, 6821118.610553684, 6821539.2601732705, 6821550.0, 6821747.144280084, 6821748.403063941, 6822011.758695759, 6822471.875, 6822497.945248009, 6822639.483201371, 6823393.30040921, 6830723.344273861, 6836956.878166361, 6837956.25, 6838692.081673759, 6838808.98058741, 6839325.248826157, 6839380.6919901185, 6839451.603018789, 6839571.416590059, 6839614.313908902, 6839637.959259003, 6839727.541970392, 6839763.544633727, 6839861.25117745, 6839874.032821742, 6840040.625, 6840135.9375, 6840155.212823225, 6840168.431818524, 6840344.8441592865, 6840498.4375, 6840499.418389804, 6840694.597754564, 6840804.779509585, 6840931.76800163, 6841257.561104786, 6841487.5, 6841720.294246391, 6841812.5, 6841836.400467602, 6842233.935005521, 6842425.0, 6842726.9563096985, 6842877.893303744, 6842915.195451232, 6842967.969211223, 6842973.4375, 6843532.8125, 6843663.014269312, 6843674.354171295, 6843708.774561989, 6843789.9692649655, 6844047.775980476, 6844171.875, 6845829.733826617, 6846303.638399138, 6846460.260483539, 6847312.444084422, 6847376.121385612, 6847409.038608904, 6847924.565282939, 6848179.6875, 6848553.191448731, 6848773.683284669, 6848825.4241794925, 6848978.125, 6849198.0518080015, 6849277.382228666, 6849301.359043031, 6849750.818366873, 6849918.75, 6850417.1875, 6852192.943393484, 6852276.617889287, 6852710.608882779, 6853116.532221451, 6853162.845631523, 6853355.776209962, 6853554.349402727, 6854174.055105142, 6854443.818212633, 6854940.625, 6855492.080431976, 6857004.9273277065, 6857030.269373492, 6857158.483550508, 6857484.581660019, 6858093.75, 6858228.125, 6858943.75, 6859005.364589689, 6859334.960874724, 6859483.854754285, 6860240.533526956, 6860432.266412852, 6860514.0625, 6860762.5, 6860816.209449086, 6861223.658973471, 6861432.885242959, 6862309.8572471775, 6862328.125, 6865569.601676037, 6865592.1875, 6866305.958870572, 6866406.140654512, 6868959.375, 6880384.155951942, 6881563.100427071, 6888077.332762099, 6888085.8862315845, 6888175.0, 6889487.255683105, 6890009.375, 6890589.0625, 6890598.568152671, 6890904.6875, 6891071.283925338, 6891103.064143908, 6891461.767376998, 6892220.272583022, 6892826.061471263, 6895462.779238601, 6901826.5625, 6902967.07481792, 6903985.038256925, 6904291.910093171, 6904600.0, 6905495.028783584, 6905869.153116753, 6906278.125, 6906558.683127046, 6908360.445093473, 6908457.913467958, 6908689.0625, 6908922.4303421285, 6909153.06252647, 6909166.73967799, 6909218.520841981, 6909218.890965726, 6909223.283205352, 6909467.003545429, 6909676.5625, 6909702.385600109, 6910057.931037627, 6910298.4375, 6911031.605616209, 6915448.918857627, 6915704.520210105, 6916473.341438556, 6956008.37061866, 7027517.836118045, 7028809.516861729, 7095323.90473136, 7095404.12793109, 7096170.38606995, 7101736.795902223, 7108145.819355441, 7109880.41225162, 7110610.4934293805, 7111166.7179759955, 7111483.098130847, 7111521.59863014, 7112203.125, 7113347.9278455265, 7113981.104163062, 7115819.992714762, 7116110.9375, 7116877.803670421, 7119303.811117588, 7119579.6875, 7119850.389869056, 7120121.875, 7120498.151169164, 7121620.298484831, 7122345.315732389, 7126567.26131833, 7126572.240745777, 7127737.490183007, 7128227.669819273, 7128240.0702773435, 7128560.847980425, 7129163.165087988, 7131631.286603125, 7132798.4375, 7134774.5052294, 7136200.817399406, 7136348.4375, 7137170.3125, 7137957.8125, 7138052.445943077, 7138115.991218267, 7138140.250260029, 7138142.560201867, 7138411.39223587, 7138517.96275165, 7138580.880977766, 7138644.8623399725, 7138650.0, 7138760.014137255, 7139407.8125, 7140131.182495777, 7140193.75, 7140245.833901395, 7140377.219451736, 7140453.337493904, 7140569.06307911, 7140570.291289988, 7140609.42703036, 7140611.640657862, 7140624.911906536, 7140640.0689441, 7140692.3430467835, 7140844.229238897, 7140845.389536505, 7140862.160972042, 7141365.249815325, 7141470.690187835, 7141602.310014669, 7141912.831192333, 7142010.430987249, 7142180.903736471, 7143331.25, 7143872.833416918, 7144021.395111347, 7144032.8125, 7144129.6875, 7144187.375779165, 7144230.900875616, 7144245.3125, 7144250.0, 7144335.611535869, 7144393.75, 7144454.770828057, 7144513.342626722, 7144621.869347354, 7144657.8125, 7144740.625, 7144760.387112244, 7145289.668237824, 7145424.137652792, 7145622.284716233, 7145910.316374628, 7146136.141995178, 7146282.784422396, 7146813.429000187, 7147077.963777668, 7147127.611757128, 7147369.747728261, 7147562.625643013, 7147582.772111574, 7147634.375, 7147659.515874131, 7147693.75, 7147719.535074861, 7147757.937315562, 7147814.324659711, 7147971.73878358, 7148157.8125, 7148174.469576958, 7148224.784801172, 7148232.375611247, 7148379.283337929, 7148393.065863019, 7148421.344589013, 7148527.60426513, 7148571.245523533, 7148622.716668706, 7148822.686698208, 7148825.402364522, 7148937.74405096, 7149006.25, 7149129.153515988, 7149350.0, 7149401.339755167, 7149510.032210689, 7149520.680387509, 7149591.143613611, 7149672.499803976, 7150199.149770135, 7150277.877384219, 7150390.625, 7150431.717086377, 7150518.432688256, 7150821.506948146, 7151040.771632374, 7151063.422273904, 7151072.127584634, 7151359.5315538, 7151469.154054331, 7153271.19141157, 7153365.340602725, 7153520.206251271, 7154032.245455801, 7155338.613702701, 7156628.701093655, 7156762.4076328995, 7156868.75, 7158063.201675896, 7158479.529180463, 7158573.820861556, 7158978.125, 7161195.476287212, 7163290.599381861, 7179371.875, 7185299.67063035, 7185312.5, 7198646.875, 7212240.388531963, 7225602.829084809, 7231719.339808327, 7389370.269039751, 7390129.844600892, 7390335.904752728, 7391949.0598410545, 7391964.0625, 7393868.75, 7395962.881849087, 7396684.347030631, 7435848.717633129, 7445132.8125, 7458279.6875, 7472616.673924085, 7473073.4375, 7474506.25, 7479188.53012868, 7479300.498461246, 7479569.84941719, 7479711.658110764, 7482110.9375, 7482383.560692407, 7488338.816507471, 7489328.774454701, 7496967.743275125, 7523314.889906898, 7523346.083057506, 7525945.258852693, 7527087.450478724, 7529293.75, 7638584.375, 7643004.6875, 7644560.711534221, 7666098.018799307, 7731989.0625, 7732496.875, 7743087.27523431, 7747639.908013532, 7805731.530489401, 7808782.8125, 7829231.25, 7897318.75, 7901123.4375, 7901381.904035995, 7910591.691417707, 7915061.56538549, 7917030.627805933, 7929591.601813623, 7958656.095466235, 7960153.125, 7961051.91305325, 7973295.3125, 7973670.3125, 7979989.0625, 7980228.125, 8008801.06223124, 8033057.478126567, 8033082.1076048575, 8039658.47601432, 8078977.64165586, 8081972.286571233, 8082164.0625, 8082220.404628117, 8082802.114984809, 8083792.1875, 8083805.590364504, 8083845.914193257, 8084124.235227361, 8084254.6875, 8084368.75, 8084421.386017085, 8084422.16974669, 8084440.1969205635, 8084518.722186597, 8108684.756913564, 8159219.504024537, 8162323.427919713, 8164058.148905594, 8165782.929321364, 8172357.8125, 8191468.201626845, 8433723.714269945, 8592626.708891584, 8593169.825147979, 8595191.234979464, 8595219.212846322, 8595501.450946786, 8595513.121274497, 8596560.07179036, 8602834.375, 8609835.9375, 8610821.958438803, 8611942.1875, 8611950.198957477, 8612312.757847846, 8613127.36688536, 8615915.967338761, 8618448.4375, 8622282.315593082, 8695719.66025222, 8871588.009088093, 8914120.370650718, 8964030.809462208, 8964168.42370049, 8966726.5625, 9013529.491963798, 9025945.435160061, 9057940.814927675, 9069170.307729658, 9074816.235369394, 9075437.679099346, 9075465.465798149, 9076014.89440833, 9076109.626371022, 9076185.582805766, 9077652.59493236, 9077818.75, 9078262.04482925, 9079050.0, 9081964.649616536, 10006561.40254954, 10096426.183125818, 10097085.488953313, 10097689.98702127, 10109187.396107722, 10110894.194107998, 10131384.375, 10150305.575547818, 10242685.313556759, 10452760.813225659, 10557265.737209782, 11312441.142081566, 11312477.520760475, 11319989.922062906, 11327280.673118904, 11753395.55768462, 13146848.135730473, 13202156.25, 13217829.6875, 13331825.27720934, 13430139.0625, 13451205.47629836, 13503426.5625, 13507495.774065569, 13559311.559847921, 13592329.181480683, 13610603.047108565, 13611285.81731944, 13612113.53394567, 13630363.35179437, 13640066.36083879, 13642670.120946249, 13643513.33487636, 13643524.628956957, 13643853.822990427, 13646226.5625, 13654104.198468937, 13664530.757366804, 13668574.68462042, 13670594.804866383, 13672227.594460543, 13672270.625522591, 13717657.8125, 13726446.868711434, 13727409.375, 13757164.90213507, 13758525.602658868, 13766119.523647234, 13767674.747406755, 13769253.835197011, 13773898.229320519, 13778599.67808802, 13778742.069880467, 13778783.382706288, 13780073.474768404, 13780783.193477273, 13783734.994905947, 13786654.296365095, 13787888.451982828, 13789117.1875, 13807395.073160214, 13851136.701106694, 13880030.99888444, 13891998.539923197, 13893255.687242983, 13893881.25, 13894318.257408863, 13900835.93351479, 13904727.027257262, 13905010.9375, 13906529.6875, 13913444.421173085, 13914476.25662507, 13916714.72777746, 13916858.471325727, 13918198.048462825, 13918584.100100502, 13918591.519944748, 13918735.1029058, 13919009.27505991, 13919614.488650808, 13919674.897876555, 13921200.496164965, 13921592.1875, 13928610.628050076, 13931486.91967895, 13932230.817436198, 13932498.4375, 13933910.837801313, 13935727.81757867, 13936279.344284162, 13936284.375, 13936681.25, 13937761.544583142, 13938472.90957278, 13940405.75361692, 13941494.17666371, 13941873.009845475, 13942026.5625, 13944230.147237232, 13947910.9375, 13947988.168462181, 13948348.4375, 13948382.8125, 13948467.414070211, 13948569.696676604, 13948580.61842676, 13948610.5838816, 13948764.794665633, 13949067.41228413, 13949109.375, 13949124.17065526, 13949240.625, 13949686.930046054, 13949699.427582217, 13949703.304417217, 13949708.01690003, 13949924.29391224, 13949982.339467477, 13950060.9375, 13950200.0, 13950217.377605917, 13950350.881594848, 13950437.196064983, 13951205.311946299, 13951224.095105203, 13951545.274631817, 13951713.809896288, 13951803.125, 13952872.00723767, 13953370.3125, 13953556.605202286, 13953953.093087118, 13954152.911526047, 13954250.463161232, 13954587.5, 13954721.875, 13954735.9375, 13954785.9375, 13954897.555292854, 13956083.77157341, 13956102.415107416, 13956150.090901269, 13956160.9375, 13956414.0625, 13956909.282548077, 13956955.864749053, 13957183.444945015, 13957216.416681778, 13957814.762145495, 13958120.914509963, 13959154.6875, 13961411.373662496, 13962316.443213182, 13962385.9375, 13962426.60538071, 13962764.0625, 13964359.647852553, 13964564.383226965, 13966053.495322254, ...], [9.183086381281143, 14.213657909398803, 77.17486051483473, 28.435048926333316, 5.2807734301196145, 19.646368695041197, 24.365644883358346, 42.35172165128767, 72.56953612400335, 10.563530060957257, 98.66450669562545, 11.417351414059306, 74.99398777157496, 83.58115807177843, 10.569895441055282, 5.108135557138435, 100.2756107687476, 23.247390350542084, 12.26385053319802, 123.7268723860184, 9.757678378602849, 55.2536651177522, 44.46558508448569, 16.422877314915524, 61.71999541106577, 7.862946112544786, 31.969701415603055, 62.34320277943377, 48.788634369575846, 58.519092400521586, 88.21898791658353, 75.66328877272466, 37.86502890711992, 10.72432167845841, 69.75814035252333, 20.186936106503296, 38.05609513211028, 44.14582156254, 53.00443715698298, 7.830894711099887, 71.02177776199481, 14.638099882914922, 43.692506200296755, 13.31559628840592, 19.951652287197867, 42.125759504650254, 11.090353254770614, 31.23908981484898, 58.333327183080755, 19.61366340215322, 40.001832463741046, 63.986368196834576, 60.76829926662392, 28.140786867776466, 5.498224403677244, 49.980009915214765, 142.90827626950946, 6.857123386169211, 15.22794747131757, 98.28437492075795, 12.79919684732764, 12.90009484856422, 30.395625748876384, 18.19945679711233, 13.276666932962414, 32.88654488871809, 39.23239357292441, 6.813065260177078, 46.57962207111718, 23.9268445467479, 144.48443759706058, 41.9741262639778, 92.85335867218215, 7.295786284490513, 18.64214871959171, 16.850264288068598, 22.203601412198786, 10.957027006890558, 51.20098862228508, 29.45596670557482, 9.305814657490181, 18.749358667795846, 28.723340081903714, 29.952523079365434, 5.750785874689642, 89.5760385099171, 61.095319922535225, 82.96954630918873, 68.39039669687986, 69.44396726668705, 47.69369708014207, 7.457487873363341, 64.4752008212952, 21.838960271493406, 26.935488394857305, 42.443957242132434, 14.541119171770758, 86.18673487147562, 5.845871744444563, 51.376720194361404, 6.952569534508566, 54.54584185781688, 16.227452170100985, 35.7855163308442, 37.23277513673705, 118.00201453329504, 177.1650700227213, 51.80198439321573, 19.0063789333899, 34.273240148115285, 55.87980286940426, 95.33939453485505, 29.966443989151344, 144.45916513331397, 20.413366146600044, 20.46885556894332, 125.30211532314037, 6.42613990892368, 7.690768222197161, 27.718996878404123, 9.40945777669523, 65.51139855129793, 57.141744058533085, 14.072448047354452, 14.273719937049798, 57.71441501730947, 192.90478940885538, 35.3641995923311, 30.168436990023448, 30.200136036736072, 63.86744458147063, 20.64773838246144, 14.777409712261717, 134.55244912999598, 7.345872252393603, 9.811458836579137, 28.645060804262283, 40.34746751791797, 26.700095970030823, 14.047473162897811, 41.552301312019765, 83.76817440315129, 18.46806623213122, 62.446025801867435, 6.893839554651502, 22.57803126850663, 80.60775046253235, 15.343420117335429, 10.864980570001764, 173.39258692741836, 14.882330510259042, 62.173039111026114, 36.2302910406428, 25.669300837974035, 6.292860280935553, 194.6284814587179, 23.58231774081941, 23.503726529559742, 74.4824693932072, 7.190742494053349, 55.76916245576464, 16.93504876694769, 21.168680650054366, 10.623033636882122, 52.738322520857125, 24.54280392021314, 7.495985864124437, 104.68042325813809, 45.71700225849374, 23.862176020542805, 27.668678633982875, 40.40029394163488, 22.116566919251056, 7.042162869799862, 75.68310910676983, 20.231540782281428, 30.016502417062288, 108.17971217349594, 39.66495739299225, 59.910274638271225, 18.26319473996175, 100.74988968441599, 91.33544533450406, 26.301657356701902, 36.19719647908259, 20.27362580956928, 60.41853905127239, 20.702454337412192, 10.787505775572866, 131.94369748615597, 6.72521597776971, 28.76593091314051, 91.86336310793705, 5.088610092984302, 7.653283967586822, 6.004591617884241, 17.408227322644755, 89.12929376949117, 62.45889222102508, 27.30389395941394, 94.98518564908866, 124.49964577228315, 59.01898607814068, 12.23364972305719, 100.93078211310448, 71.4564155320781, 16.798808697551213, 24.572470569394277, 52.37448703528459, 13.830071904868126, 43.76084143226031, 129.64556251923833, 89.87107608355743, 88.35062629053917, 130.90862445684343, 17.495888641502848, 56.793517879523435, 32.8136568860555, 22.407058142444637, 48.46969866809826, 93.72886631874113, 19.285740737763454, 6.422843729097433, 15.785755196245834, 28.7071495159403, 41.94487274014629, 10.427114989906189, 30.80416417092001, 66.73207538094694, 9.63885737811965, 32.8185851985289, 6.89877290520835, 96.03473045178804, 60.393418625577496, 61.31439056174132, 7.840728442219034, 23.09142157315197, 23.136433970285605, 51.728399025583236, 30.17959972558741, 40.68306104259786, 15.909405272249522, 5.929395411170496, 8.927074512839656, 55.39415395794505, 5.466696322027195, 47.272838989412335, 11.825198620306566, 54.684306337588495, 23.374384723077664, 24.67862482305913, 58.54758891878302, 25.32161186813068, 21.520756153458972, 69.74396203712922, 67.55124218660072, 43.67476479847492, 24.63763359768699, 49.91789432970638, 50.58489157215253, 10.748830663499197, 49.821824484883415, 7.330337337776931, 64.67135515388128, 44.23777232792657, 7.472636777119789, 5.297218126453584, 99.72710521998768, 38.582613445440145, 79.59835919185198, 51.66361471559409, 28.71465022117878, 7.45997572514058, 17.12082155251124, 30.113992375712282, 16.17594079274816, 58.92861107073817, 79.86728871888354, 78.10477500913501, 43.54969708014264, 19.370733639460873, 57.57869291801978, 47.96849572787596, 47.94693984941698, 59.595566770351795, 35.14282006036397, 8.783810746480059, 21.18040347096369, 24.78942045297894, 5.946148969039103, 15.576080563108775, 47.37246914984944, 19.499216792948364, 41.08728696012994, 35.00067102918067, 30.096177918338324, 11.921439860949658, 46.31045572206832, 56.17219913439906, 6.5775034597219975, 12.074823928549248, 18.773417218004617, 8.959310620680725, 7.2559313333093165, 33.63600453573232, 22.943672318297153, 14.416597406340022, 5.410611981108858, 12.573675042752436, 55.73725386170398, 97.9233444672571, 65.7454584139052, 73.90328768500747, 132.99804898449116, 15.306820344711568, 68.77382041443033, 10.018984994628683, 71.73176332277903, 26.42208728920811, 17.878720987280516, 15.889926984862363, 54.38326204312283, 64.56717833799048, 37.79470667216876, 20.05004609439551, 6.9759626164529305, 9.393583152960892, 18.354786322026243, 13.775479535091584, 9.99317932978207, 28.41128628695199, 5.624146146308867, 16.775071975047595, 5.23892409927747, 29.39158006528951, 6.643433143856895, 8.776449137129601, 11.68475768040407, 19.134726870151674, 26.604837349457306, 122.1890801117788, 19.202790701661243, 9.949810392914978, 81.23544278964114, 6.751733177606594, 5.618073318690475, 15.7293663114507, 42.71823748609845, 33.7098966576608, 32.29123690328831, 13.719094679302417, 12.25595434941903, 17.972835175605425, 15.682278064555595, 8.135230771075305, 87.10399021457941, 18.41130279796084, 63.750846837817235, 8.303763743514889, 13.125941317928895, 6.902873619136327, 8.783034843026671, 27.1527153502765, 55.36176848413642, 51.66309327518748, 55.0763391814959, 11.003162818690672, 74.77319354589838, 37.52670900831518, 6.067752834478162, 41.660532809914685, 20.124806687337994, 8.644895989987916, 58.0394930143639, 10.578766594057143, 5.987721092261761, 21.145721480511185, 47.057797279460466, 56.92760100394463, 16.80898685490438, 24.37235795976277, 35.453519875733434, 68.40526113680745, 6.061393660871369, 8.694028263189562, 49.94692579553566, 55.56361722240484, 92.40685901872119, 85.18187321508594, 51.42739221587547, 12.602664207415417, 27.63587101470909, 52.934977271440445, 24.461883857983757, 9.31125360702121, 44.16852712702456, 28.108263007751916, 8.378231808964589, 105.35415102237715, 6.675079534796943, 57.14837155072841, 12.926963487051493, 45.91729882849589, 21.328178038369952, 20.011145872846516, 5.419019192229296, 19.420770320339372, 20.005142697279666, 16.36374587265061, 40.539586424296004, 31.521940721976637, 32.97707325355662, 5.8287526220101835, 126.05841095672696, 41.910558763381204, 44.812421301091035, 7.929954219308007, 61.594203570492596, 8.947192002886286, 49.892411049946716, 22.01114267209405, 10.985049290623987, 17.182175454696207, 28.746986532216336, 26.594327560569884, 25.729953416528687, 25.57787837665999, 7.413157937605903, 26.181413877282274, 21.918264558798896, 23.692752291932283, 67.27700005759573, 5.031853811282872, 18.27013155103287, 5.967196021128281, 9.891194831923633, 70.0138466750804, 29.611562626118406, 121.49701473544872, 34.41394821588749, 21.959310620126104, 31.21249311081036, 20.715875191159554, 5.575689710226905, 9.410433395901139, 9.811501242698572, 24.39211105283917, 149.40079909534535, 99.64638780891796, 71.60921142892748, 18.149638625575086, 82.98098338751336, 76.9020383022797, 112.23413397559496, 14.126278292412044, 49.74525208732355, 5.496349503256777, 52.71391627813162, 108.25877810487827, 17.346106620765347, 57.38213285752336, 36.54271014721388, 108.8949833304752, 12.90442903840929, 66.52032723591039, 24.30655458954164, 30.01295354837774, 26.03988746613927, 6.752394564635926, 32.04285246410369, 66.94247595331298, 22.170027050648457, 44.759229153713896, 18.660178613381362, 15.969098723609175, 6.555706464435208, 116.42400051229903, 13.650404432564947, 8.773497069361644, 9.165096614336779, 19.36046492058162, 57.04100659865826, 78.29405962099489, 44.9574977464426, 7.136088335414876, 56.01761332892609, 20.072382707712606, 16.445754552845873, 7.440416628946079, 52.523567387927514, 31.335181916387562, 8.322981739392132, 47.32544394554966, 69.96622083620655, 9.5427721904596, 6.582344787874375, 18.31217113115762, 8.398972084136606, 101.54815761475506, 30.912110104800202, 81.00743210749926, 12.381414612545424, 12.1861960639382, 8.029375711370017, 32.30795438016145, 21.045354479114067, 76.66768435018218, 68.04556792693757, 12.18322007755835, 26.99968615950842, 10.87989784626513, 11.975599505317643, 32.85784027435943, 12.783496261159872, 71.03636623764949, 16.385293139784487, 10.960988492929848, 74.80656412332615, 6.239914299559864, 48.64803129224771, 26.96757821176098, 84.03960866857173, 73.96646056308018, 24.489065819172996, 96.23626924287407, 62.92398643938826, 13.220414679566893, 52.771815774826756, 78.94288411096929, 27.375865014520176, 5.87804642487564, 42.34504146751978, 31.26571790712594, 67.93271844663899, 61.99620723298483, 10.95602981570958, 25.03030923458802, 38.76217808798078, 57.001999955278066, 10.711422744771088, 13.8166045402374, 68.3648982783054, 19.771167186075036, 21.569185110937386, 26.178110332063905, 50.28796857069148, 7.275509308300727, 27.34680520928261, 10.493136655244156, 10.787463239345342, 18.35451754998838, 7.081474480821036, 10.851853139067304, 72.79510154107236, 12.714955865244104, 61.80603577345346, 85.71959444119194, 16.495577408239267, 6.139628672672048, 25.60810749112968, 94.83064588347193, 17.60258189323014, 5.650964141408839, 8.363048453718518, 17.08178195527272, 7.412657853224577, 15.229539524423204, 7.946311517678716, 5.5581961112290355, 72.16436368980276, 13.48187871699093, 53.234825579725324, 16.154747881939016, 10.72155736396814, 195.764438426897, 7.42874988004032, 25.94224808383872, 23.50126030164037, 60.245550672040125, 26.91989293598313, 18.41262342558644, 68.85413118072762, 8.504099546055768, 277.5100412284023, 22.61290108167048, 28.250486111174883, 73.65060666684519, 7.630156510700164, 11.751937844316636, 14.904223198123656, 5.232581839825779, 7.414212902851125, 77.38606854413177, 5.491055803478603, 5.709091494526549, 46.4585158261136, 26.92063162010752, 10.133553379508427, 61.37629622891186, 120.86650205289212, 30.3942143937813, 6.95369994784725, 9.661526859234298, 22.840788912103655, 60.789204579360685, 9.74797468542065, 13.8145838060149, 8.100618807472982, 5.781406550390005, 64.97178911410865, 130.86189875966593, 72.23551631407263, 59.014168281341284, 113.68449430067058, 28.66610173149037, 12.337484654003214, 32.678736992139804, 16.286118536178165, 11.09471524273142, 7.135196355130856, 71.91128634442838, 19.841374377319717, 126.97976682646632, 8.3705823158387, 17.14823071595107, 15.24349772882113, 13.789646088703686, 22.835629889243908, 6.84132661378913, 69.31468117726777, 12.409276666522958, 68.97865835908851, 22.4481556956987, 33.022519748373064, 6.396389498198599, 7.0007697423720385, 56.893057293612046, 53.75335664961685, 23.733150092608447, 10.62259057527047, 102.72196937811367, 35.15678073871496, 5.5174668811314165, 44.85919086468877, 5.53713842881098, 5.056035571118856, 78.41466954754448, 42.59264876457645, 38.527592333975235, 44.59880422571423, 17.89281124239409, 30.56168270955734, 20.05814635979038, 20.364307158832496, 81.79255288436696, 9.307774282725276, 29.046744858131085, 8.203121489803673, 147.28318841373516, 70.78227337459458, 11.329943075939216, 11.065158522129309, 43.822825136195505, 33.584846096510674, 53.23205197163633, 92.1134022493266, 41.524262173721496, 48.527304519580554, 76.53157567914283, 59.51247383514085, 13.243489667113543, 14.180157827866454, 13.50228140739982, 7.46331990859856, 56.14449783190893, 13.243522077802675, 28.88159016082907, 26.617020438047927, 7.36179379573736, 7.352525526664377, 9.696492086710654, 30.839822085528795, 72.77788453329173, 21.160660441911034, 39.19029622716429, 6.719837388294191, 12.338046504054935, 9.66313151153607, 16.539092979544094, 31.919352219303235, 37.81736400743127, 10.76153560387105, 74.80800295004413, 17.080983838080748, 23.532098495659646, 59.939113088383564, 31.942378208929558, 55.8418271531354, 11.546881042562658, 38.94556239294198, 11.195461706855868, 51.04132376585331, 78.27758378382252, 5.930205847570665, 7.410262285793927, 7.448598986273836, 146.66392351084596, 43.19895510001143, 89.04043990578668, 12.435706625052253, 52.53046555386358, 50.10628166469803, 70.77850096042827, 90.47318801705653, 40.886325118580736, 51.8738820153842, 62.293600550134485, 45.729787602975954, 36.174166402428824, 156.7147710406242, 23.803060049024058, 5.858949188508756, 24.60170167912171, 11.382477522423526, 7.1128699203665455, 12.263093576611722, 57.34472797611786, 74.00999385141871, 7.225581085567609, 5.704980271513474, 51.18768954654844, 28.567803678367866, 81.54155211875046, 10.409811665730546, 67.06726169631176, 64.33167878070606, 76.61627114946799, 9.791721694056806, 35.017264601987215, 49.28283684110287, 89.44277416171383, 18.84217096476679, 24.466029343540455, 131.80516857544575, 12.1238392992704, 12.725214582970654, 12.591790654097542, 84.44808096771676, 27.581590613779067, 82.03270240762234, 57.13119320366504, 74.89275687891266, 24.74484986031315, 19.052432521107548, 51.288062310238054, 50.067607518130494, 60.09549141340622, 34.77845514583749, 51.27938024998907, 48.0572353504073, 34.1429265032179, 103.60602267312595, 76.21380803367988, 6.353525617444555, 48.656710079254616, 20.694911464797908, 85.41182679008749, 16.817209656848004, 39.514918900469056, 31.737629482932128, 16.47026247956771, 87.31109049554615, 45.35038513914103, 66.11086753524307, 28.926923215739276, 47.02740765297892, 13.803763491688978, 50.03963078128016, 58.16116048360013, 18.39367903770345, 23.01633342432678, 56.90328638389689, 27.82191598913738, 65.31168776543439, 120.41120130835611, 22.295989098074887, 6.152987816376674, 54.000416453889095, 53.52861002220382, 31.57509694252446, 118.2191972609213, 65.04530438114567, 10.980299103057867, 14.83654698792569, 54.892606131226046, 5.871960867459332, 23.633295943742723, 7.729616757734162, 47.533863956444605, 85.13485543977721, 59.79237658653557, 93.20179929685874, 15.53047319777053, 7.435994562239094, 17.919280345965177, 5.416467982013834, 7.092433244837979, 6.5891007186502915, 12.42485997397158, 57.982756610333375, 53.87680949914552, 11.260680637324375, 99.72150803100831, 11.453613821019148, 28.428178389794326, 77.10682961404372, 21.964526430438685, 98.66618777225378, 11.790635538536545, 20.09785756580739, 35.12712474940889, 41.04948179374108, 91.56773003887899, 23.420515968563173, 81.15113546239874, 7.534014152264884, 11.325002199385422, 164.88018534413536, 28.431012567350614, 12.237683036428134, 5.072167684153422, 31.450644873046368, 77.94694987938583, 7.696756931077842, 62.40419544477681, 21.198313083825248, 59.46857642333963, 21.95226416743048, 100.76340927690251, 21.73276274137989, 17.069781868999993, 22.787168083252087, 22.02220356029101, 106.44571928033142, 14.559774456960538, 7.243301758591996, 38.08017645559182, 6.386318797167132, 36.75484540003411, 65.35183328303586, 6.099846297759042, 8.58035460706921, 5.669352270990335, 10.181976116297236, 50.377056261175504, 42.58399521446817, 8.133193005755516, 59.00228160986754, 85.98719341078139, 88.64438426960585, 79.0421936795692, 6.372281182635593, 70.77431451070342, 64.58119724594943, 12.26310819892735, 13.309590718000983, 8.245812108574265, 68.21840266860507, 152.14511012013963, 22.11489881186194, 18.754609080278154, 85.31607870892292, 36.32835408847872, 9.036206660098124, 41.41968487031017, 55.71964764068937, 21.603223560055657, 23.13966319442613, 23.556256809350405, 8.035214175436574, 50.51429879539655, 41.081871026866715, 118.16522199966938, 40.40991529461174, 84.8876719411143, 83.7303912005455, 6.8900980572800625, 94.18889141294544, 24.37579335202196, 18.57619383115172, 14.203262830834415, 57.40565552331358, 100.79463965918146, 39.67030846733495, 7.616772875903235, 40.33124406908117, 24.605437616430873, 15.82220436909235, 79.51645021310176, 34.54036633944528, 57.48082143881457, 121.0276158871626, 34.04666722040631, 15.34681865927424, 6.031469343314607, 80.84336246781807, 32.71429865188982, 6.087684888107347, 82.25313919975802, 94.3382639788089, 85.82169518381383, 9.971661507605733, 46.41991901518887, 12.355588510308051, 58.861400860652466, 22.67635452168379, 24.076749762482596, 12.88943907086688, 48.76569951302215, 26.69359385428443, 7.238168359666823, 36.94978423421955, 7.793122816225809, 114.72790586125845, 7.4950223903189706, 8.884601284615018, 6.2140513663376575, 43.47523303516792, 150.31820678945485, 122.74423360178606, 29.975573353229652, 48.00322085134435, 90.82978384778052, 17.90119525500951, 10.391924302404789, 34.65293605692355, 16.86229414904183, 205.92419690504462, 46.92769952487448, 18.441198523494954, 50.951291603542096, 18.295058870655534, 43.027625453366376, 33.284600130586114, 7.182311554994006, 30.43433477453808, 20.273860551356712, 13.745664139051366, 18.728777440248027, 15.873581926992726, 30.618151437989162, 92.55696694261958, 48.517349431200365, 20.82254625449054, 33.116951794871945, 5.348107474349705, 23.609277850957653, 174.55651132508024, 13.40051543384193, 32.60938286169837, 40.25413119612015, 203.42265107866547, 70.17979066129514, 128.4846927014143, 113.17139329193921, 16.881549357703115, 9.299587436755456, 47.03445427298361, 48.954762296300764, 31.939867793119127, 35.30962043758531, 11.732340805967256, 103.01149083150884, 6.454140023828605, 8.547695021242843, 127.5755992360488, 31.550763214217383, 118.14762000398332, 86.13136770132711, 12.388446666527598, 31.12747531162584, 57.23278633911032, 15.299684169645245, 72.02723616022944, 47.84941910048735, 26.821164142468454, 148.0033994091305, 33.76176395273888, 43.62957865282516, 18.504052318990077, 9.898197515471523, 61.26692452036546, 46.359227843156006, 36.17355924757493, 41.235054251483355, 25.24702176774894, 46.329238934378964, 7.70499779146175, 9.618164962906437, 16.569710669612604, ...])
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)