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 = 45904
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);
([3618065.1677224385, 3721187.885033656, 6447661.526824407, 6783410.168128089, 6798828.007643217, 6863768.75, 6870579.276001032, 6872280.78017595, 6872295.19003222, 6875487.3642181875, 6953279.6875, 7186029.927345432, 7597629.138935041, 7699467.0187845, 7703007.8125, 7705562.5, 7765332.8125, 7852514.0625, 7930444.4085278865, 7934789.91449729, 7937589.990914185, 7938073.4375, 7939153.125, 7941320.705828841, 7950270.209321454, 7955678.857769706, 7964028.125, 7970900.0, 7974213.589344902, 7975481.874514754, 7975549.846121616, 7975993.75, 7976496.173730879, 7976754.135925691, 7976912.5, 7977761.799452474, 7978881.685304711, 7979702.586738607, 7980156.25, 8009565.80332204, 8210588.686992075, 8309954.043910053, 8342887.328272313, 8357143.75, 8453530.893545147, 8483808.311772764, 8493277.370538127, 8500035.9375, 8500043.75, 8522790.602195896, 8531314.0625, 8532474.654542277, 8533672.480465151, 8533673.97458877, 8533989.0625, 8539776.439107874, 8539841.525386997, 8556760.164143598, 8567710.207382947, 8581538.367077684, 8588449.353736693, 8594856.458068203, 8602688.102409797, 8619559.213418268, 8619817.648628676, 8620643.205714062, 8620921.875, 8637550.702353587, 8638679.334816776, 8642532.113324523, 8644441.848060718, 8687123.697402678, 8726701.5625, 8731898.4375, 8734607.437088206, 8734614.054920372, 8734996.494512964, 8735331.566887222, 8735334.765972277, 8736150.458082393, 8739257.8125, 8742207.029198842, 8746629.6875, 8747285.9375, 8749428.125, 8749954.89158814, 8751648.4375, 8755862.65586263, 8758809.40191744, 8761913.585074103, 8762647.64298286, 8763290.589651087, 8779281.464498827, 8779709.290432896, 8789118.75, 8789491.21397127, 8789507.187043583, 8789626.5625, 8792776.433765152, 8792948.320945267, 8793002.378782967, 8794923.145194773, 8818798.519235954, 8836239.030482795, 8841389.91469775, 8849911.616280943, 8862604.486692153, 8863906.095021965, 8865472.49802994, 8866901.5625, 8867144.024433255, 8882494.962345736, 8887821.287449837, 8902046.875, 8909555.195373043, 8925585.857319625, 8933575.0, 8941494.416626876, 8945445.592950424, 8946935.515011331, 8957440.625, 8959183.350530704, 8961139.302483223, 8965705.064438472, 8966287.5, 8966814.727357823, 8973949.782724632, 8973952.92215718, 8982225.837541008, 8984880.8192577, 8984945.034537718, 8987749.639596937, 8988268.050892202, 8988615.407741072, 8990332.750185117, 8990984.911298942, 8993108.527823992, 8993211.292926153, 8994051.5625, 8994799.944550483, 8994966.457979204, 8995159.375, 8996107.7019937, 8996281.554461112, 8996824.794124482, 8996849.634858951, 8996985.654975284, 8996990.319358926, 8996996.875, 8997720.029038252, 8999932.8125, 9000010.854096299, 9000710.9375, 9000856.6940042, 9003110.289640164, 9004596.875, 9004799.442383463, 9005143.75, 9005260.53165198, 9006947.954191748, 9007301.5625, 9010342.1875, 9010440.625, 9010972.042219523, 9012918.75, 9013966.334783858, 9014182.8125, 9015354.869489277, 9019636.248711588, 9022094.713255836, 9022760.452631693, 9022938.107416946, 9024790.547610844, 9024793.695939282, 9025119.861327486, 9025557.151131036, 9025785.309417756, 9026142.1875, 9027324.2104236, 9028114.0625, 9028161.232170697, 9034385.872147126, 9040838.70663887, 9042213.884463001, 9042407.158148186, 9043709.665101383, 9044861.01801649, 9045056.896495912, 9047192.981495773, 9047703.015209537, 9050471.195626166, 9052870.05838765, 9065477.95172823, 9071662.196794257, 9072191.168583754, 9073917.051335998, 9073984.264008863, 9074163.836670376, 9074206.216542864, 9074608.510477072, 9075500.0, 9075838.714005705, 9075855.084067697, 9076017.1875, 9076769.665717678, 9078367.277449235, 9078796.699699806, 9078984.464834692, 9079137.5, 9079715.140872803, 9080070.649574673, 9080198.4375, 9080447.809477352, 9080727.292288154, 9080936.762924412, 9081116.792949775, 9081245.504974883, 9081439.496636234, 9081584.375, 9082061.198514627, 9083125.262974067, 9083946.875, 9084892.880330648, 9085131.25, 9085232.692712143, 9085750.90745798, 9085823.995767403, 9085832.8125, 9086293.227097005, 9086298.607924918, 9086341.719717603, 9086735.395436693, 9087015.625, 9087316.894158082, 9087593.482574064, 9087601.318853231, 9087712.991333837, 9087912.5, 9088600.090954801, 9088696.875, 9088906.692885486, 9089120.3125, 9089343.327476526, 9089554.6875, 9090355.647285882, 9090437.12448673, 9090438.832900293, 9091259.018184671, 9092042.1875, 9092865.832388325, 9093448.899660727, 9096942.525271067, 9097045.954807004, 9100027.97853199, 9101347.696489876, 9102215.625, 9102249.272280816, 9102470.3125, 9103918.75, 9104638.132740676, 9104668.75, 9104750.715133566, 9104884.375, 9105183.040536575, 9105718.75, 9105809.375, 9105963.450024059, 9109043.75, 9111184.33027419, 9115377.957541497, 9117876.5625, 9120817.1875, 9121415.625, 9122486.545207262, 9124390.625, 9125277.7196192, 9125460.260812093, 9125689.0625, 9125849.928831857, 9125858.973676354, 9126415.625, 9126695.742527593, 9126804.6875, 9126876.5625, 9127378.125, 9127455.835410964, 9128514.0625, 9128677.446665958, 9128807.596898304, 9128854.6875, 9129282.907152249, 9129650.0, 9131398.4375, 9132222.024547413, 9134343.75, 9134987.17217507, 9136512.406867558, 9138571.456857502, 9138743.360848969, 9138958.907575676, 9139424.623122113, 9139566.159401856, 9139851.5625, 9139895.605484297, 9140079.154697997, 9140154.220497841, 9140246.267394496, 9140255.707925797, 9140410.288592508, 9140537.5, 9140614.84575273, 9140746.6773118, 9140855.267677981, 9141032.810340961, 9141096.875, 9141450.304753812, 9141543.161312608, 9141648.4375, 9141675.0, 9141936.737083932, 9142060.712137299, 9142104.758369697, 9142165.184228411, 9142220.231039736, 9142406.25, 9142517.57891987, 9142582.8125, 9142659.676910242, 9142696.12087369, 9142750.0, 9142827.146393804, 9142873.033463392, 9143034.375, 9143120.3125, 9143257.25730431, 9143509.947895616, 9143511.636455733, 9143925.0, 9144167.122078903, 9144317.1875, 9144496.875, 9144512.565140536, 9144871.464936981, 9145460.9375, 9145519.711938303, 9145774.69636559, 9146185.9375, 9146497.232013704, 9146818.75, 9147126.5625, 9147167.661034754, 9147739.58751501, 9147952.06617503, 9147996.663599752, 9148571.643823458, 9149929.475788957, 9150537.424501227, 9154087.769117953, 9154134.33034626, 9156507.320667513, 9156544.666015046, 9156574.903408915, 9158268.073489, 9158299.574158316, 9158843.250248933, 9159331.25, 9160457.756717324, 9160764.154914046, 9160931.25, 9161653.052690603, 9161869.169975046, 9161990.67899187, 9162008.969270892, 9162067.1875, 9162711.336665051, 9163055.085504573, 9163330.761909239, 9163332.39339927, 9163342.057460882, 9163847.172307285, 9163862.940103363, 9163898.4375, 9163986.263748972, 9164101.5625, 9164263.892848466, 9164837.5, 9164993.83546378, 9165003.125, 9165018.75, 9165281.377526848, 9165576.03088543, 9165784.13509415, 9166107.784899557, 9168072.875591435, 9169991.792608904, 9172421.875, 9173170.1477987, 9175470.3125, 9177862.5, 9178939.96153557, 9181569.03328218, 9189620.110456252, 9190275.0, 9192426.920952298, 9193024.460719127, 9195126.427217111, 9197064.695459526, 9197298.055635089, 9197336.617841704, 9198471.70861592, 9199179.14735977, 9199773.4375, 9199812.19805782, 9199835.9375, 9199848.205390042, 9200015.625, 9200802.799021833, 9201319.654653097, 9202831.25, 9206108.383688096, 9206297.613222482, 9206482.8125, 9206531.14796693, 9207460.11164327, 9208040.280700585, 9208111.182826973, 9209975.0, 9210029.061380673, 9214592.825095385, 9214746.875, 9215376.210510205, 9215782.569259753, 9216112.623776218, 9217862.835520219, 9218778.33909428, 9219282.76572939, 9220234.299703412, 9220611.730976693, 9221085.9375, 9221521.815374397, 9222013.115142915, 9222069.258739784, 9222486.03426638, 9222579.304702928, 9223431.34631731, 9224043.75, 9224157.648110498, 9224838.792681985, 9224931.732831571, 9225084.375, 9227919.748457823, 9228451.840872558, 9229464.060585938, 9233063.355737034, 9234902.943010861, 9236039.417193122, 9236912.776640171, 9236957.8125, 9237065.842048254, 9239955.661146395, 9239979.6875, 9240690.625, 9241803.566051912, 9244474.882138018, 9247047.665978078, 9248268.75, 9250115.138807617, 9250995.389214957, 9251320.846895, 9253824.82356494, 9256471.47029622, 9260177.788418164, 9260362.190840185, 9261506.25, 9262400.975706156, 9263121.651854454, 9265425.0, 9268198.256813496, 9268370.129168857, 9269377.199259218, 9271400.269118614, 9277675.346812494, 9288405.480461068, 9300530.879541881, 9305917.433665771, 9309347.415613111, 9310866.136831013, 9312257.31010588, 9312454.378771333, 9314243.75, 9324154.620533306, 9326851.252332702, 9327096.875, 9330210.233572843, 9330347.714889875, 9330931.089400241, 9339969.832046783, 9342356.966784105, 9344265.161638362, 9346793.679340784, 9347321.793180179, 9347525.657014668, 9349157.702253265, 9349508.790166812, 9351075.11672286, 9352290.879224967, 9353292.710853735, 9357972.253932536, 9359410.9375, 9360129.88045524, 9361345.3125, 9362532.656738305, 9365966.76065108, 9367357.927659646, 9367672.803633124, 9368457.8125, 9368761.97618072, 9368803.891703067, 9369569.83427046, 9369570.3125, 9369754.317802906, 9369978.125, 9370228.541400943, 9370446.529815298, 9370513.658861047, 9371140.258700296, 9371156.25, 9371321.875, 9371375.68244844, 9371444.199523048, 9371753.125, 9372316.43220346, 9373472.100173084, 9373633.96400288, 9373921.875, 9374864.886144722, 9374880.754986973, 9376218.378678203, 9386239.0625, 9386528.989235165, 9386660.9375, 9387251.154010437, 9387321.875, 9387331.25, 9387714.299983483, 9392861.993579717, 9394034.375, 9394981.25, 9402524.591817537, 9403446.165112408, 9404274.406202175, 9404371.875, 9405080.519160543, 9405557.204525054, 9406190.532316905, 9407680.089683577, 9407807.8125, 9410247.99632448, 9414142.543661803, 9417771.06379318, 9419105.045692092, 9421669.77255319, 9424478.125, 9424842.1875, 9432451.54379508, 9436681.009074552, 9438115.684437018, 9438682.8125, 9438795.336049013, 9440357.496950902, 9440446.875, 9441735.9375, 9442290.558992486, 9444666.979005985, 9447337.5, 9450137.726219619, 9453040.625, 9454996.001713274, 9455799.23979687, 9456146.740827693, 9456148.4375, 9456189.571952576, 9457073.288140154, 9457162.5, 9457829.028140437, 9457839.0625, 9457990.625, 9458149.951280246, 9458338.674686408, 9458534.313796556, 9458547.689546738, 9458753.97648689, 9458892.1875, 9459136.78194282, 9460058.511708418, 9460426.230569927, 9460884.908902809, 9461263.761792032, 9461446.834026244, 9461637.602931725, 9461849.563206485, 9461861.612223225, 9461865.770829724, 9463335.68638383, 9463569.702448292, 9464441.937467162, 9464500.0, 9464603.349993734, 9464655.542609785, 9464750.0, 9465020.730729887, 9465143.146685733, 9465404.78670168, 9465612.5, 9466532.792612415, 9466746.650296528, 9466961.514087055, 9467106.25, 9467166.638055656, 9467195.976241177, 9467202.423184555, 9467594.565234413, 9467948.778036699, 9469533.766258406, 9470012.25206276, 9470118.748792544, 9470351.5625, 9471935.9375, 9472220.3125, 9475074.653416192, 9476055.939408315, 9476567.626627319, 9476892.512453297, 9477745.507306367, 9480695.482789947, 9481673.336153556, 9481865.15999885, 9482104.565382333, 9482191.80836106, 9482515.625, 9483118.735708684, 9484016.765646929, 9484093.022587385, 9484189.398600217, 9484406.434286019, 9484593.75, 9484652.046535205, 9484668.080029227, 9486165.293192524, 9486554.708978934, 9486658.901789993, 9486659.375, 9486726.5625, 9487062.417907495, 9488022.835005986, 9488471.278312664, 9488653.430496905, 9488737.5, 9488809.375, 9488921.875, 9488993.67905707, 9489462.730984509, 9489520.931987686, 9490232.632607726, 9490907.8125, 9491518.932509765, 9493665.58092178, 9493833.212728277, 9493853.085162697, 9494500.702946711, 9494503.025589451, 9494519.615222398, 9495064.0625, 9495175.943469407, 9495258.760262644, 9495389.0625, 9495423.867847163, 9495459.678250398, 9495787.5, 9495900.06937453, 9496030.37279375, 9496375.257245615, 9497034.375, 9497506.25, 9498314.0625, 9498510.127298938, 9498761.947794052, 9499207.692896383, 9499224.159177614, 9499451.442516776, 9499657.773171404, 9499757.29312505, 9499760.20014539, 9501397.307753453, 9501520.496391943, 9502275.182407761, 9502319.10020342, 9502700.003503723, 9503185.543224595, 9503510.769929923, 9504926.72039801, 9506828.125, 9507818.427630119, 9509338.533503607, 9510247.082272632, 9510572.944056328, 9510718.092747549, 9511430.263511969, 9511820.051874159, 9512257.8125, 9512689.0625, 9512730.469137734, 9512755.08524298, 9512757.8125, 9513088.54158797, 9513554.922223018, 9513706.25, 9513710.9375, 9514187.560332172, 9514197.476648184, 9514396.62396266, 9514680.500621634, 9516743.617789872, 9516832.542592285, 9517151.20398946, 9517218.75, 9517572.74054153, 9517803.508368345, 9517827.955030747, 9518339.48263367, 9518393.719094662, 9518540.625, 9518542.825611321, 9518772.603188826, 9518821.045001913, 9518895.538779942, 9518937.327699747, 9518980.16416457, 9519127.930689685, 9519164.64463337, 9519243.75, 9519292.1875, 9519382.93105595, 9519504.317596951, 9519553.125, 9519625.0, 9519741.047769092, 9519946.257014293, 9519973.4375, 9520099.88083264, 9520269.51889099, 9520366.747934775, 9520380.310271708, 9520518.75, 9520549.21889167, 9520753.085581578, 9520762.5, 9520815.625, 9520850.45635434, 9520914.0625, 9520950.738888541, 9520986.006317772, 9521051.311985098, 9521186.85875803, 9521221.394289343, 9521460.9375, 9521580.428344399, 9521759.375, 9521959.375, 9522038.909401426, 9522130.600802671, 9522198.074958596, 9522208.797184106, 9522268.75, 9522589.0625, 9522789.0625, 9522803.793673232, 9522879.546475727, 9522899.59632099, 9522920.736175852, 9522940.425372703, 9523023.4375, 9523331.25, 9523454.6875, 9523464.381780835, 9523523.4375, 9523837.5, 9523849.965831826, 9523895.310316782, 9523958.319581164, 9524011.931428846, 9524089.72737702, 9524180.028251356, 9524359.375, 9524482.996768529, 9524556.25, 9524879.024799664, 9524914.877412355, 9525040.625, 9525147.945264122, 9525320.3125, 9525351.094614709, 9525376.5625, 9525760.9375, 9525812.220207544, 9526140.528322414, 9526235.444494912, 9526282.509987503, 9526646.825661706, 9526914.0625, 9527424.692504482, 9527904.515322905, 9528039.0625, 9528089.911935722, 9529200.6544723, 9529205.994910652, 9529468.629344491, 9529522.537917655, 9529543.75, 9529779.225207783, 9530004.444582619, 9530255.051026966, 9530477.063562032, 9531087.344576254, 9531135.152578557, 9531445.11796377, 9531657.376404082, 9532072.713565292, 9532099.535172088, 9532201.516783042, 9532630.491716133, 9532817.1875, 9532839.55727362, 9534147.446631989, 9534483.6905153, 9534597.56936586, 9535101.235317044, 9535421.219631914, 9535587.959526941, 9535654.573502224, 9535659.40430342, 9535964.0625, 9536135.9375, 9536192.1875, 9536450.078982722, 9536731.25, 9536796.875, 9536814.820252372, 9537270.094315967, 9537324.51265515, 9537510.9375, 9537586.616519662, 9538082.10315645, 9538442.1875, 9539359.668154292, 9539481.562204642, 9541110.089246051, 9541626.235971194, 9544441.455538185, 9544675.0, 9545504.28811309, 9545826.139372073, 9546623.28355405, 9547295.680016352, 9547390.625, 9547512.366716206, 9547522.940427303, 9547591.450024612, 9547732.244196614, 9547877.407719415, 9548206.921242028, 9548518.75, 9548531.500402594, 9548575.922876352, 9549627.22262156, 9549631.364059027, 9549849.853949599, 9549852.229790015, 9549948.590898132, 9550068.005437668, 9550097.916784946, 9551188.06779694, 9551729.251063067, 9552020.78394867, 9552498.4375, 9552503.46187209, 9552550.630010413, 9552742.1875, 9554167.389106976, 9554375.0, 9555071.541778369, 9555258.927094528, 9555443.75, 9555641.619947791, 9556065.625, 9556961.459882963, 9557824.633911496, 9557830.417485377, 9560587.5, 9561018.589814011, 9561204.230184166, 9562062.475328872, 9563804.052355051, 9567217.1875, 9573905.924410174, 9573990.736837659, 9575327.533721376, 9575593.831460278, 9577151.197400406, 9579080.505559236, 9579988.391825859, 9581101.242237313, 9581428.125, 9581913.401515547, 9582223.4375, 9584050.805735886, 9585115.660002079, 9585390.14352138, 9586420.587775243, 9586951.941535318, 9588751.285093198, 9590063.515585292, 9590500.918408308, 9591647.465057068, 9591955.479794085, 9592223.4375, 9592287.437756091, 9597939.0625, 9598304.513194254, 9599047.039402671, 9599452.847593203, 9600040.709707467, 9600244.077230424, 9600724.542516356, 9600909.151439186, 9600981.25, 9601031.25, 9601490.949094929, 9602638.166652776, 9602845.016614934, 9603091.179795593, 9603165.625, 9603514.0625, 9604597.785976313, 9605253.742976982, 9605707.597831655, 9605720.861699294, 9605749.032481752, 9607114.0625, 9607117.16428927, 9607518.75, 9608308.582742093, 9609936.117282363, 9610967.040703982, 9611412.122034542, 9612653.84607499, 9613249.455207415, 9613737.89349071, 9613821.875, 9614630.97552768, 9616160.35373143, 9616160.9375, 9617023.14528584, 9617572.54909598, 9617650.407163747, 9618192.01413724, 9618236.302678283, 9618259.225918062, 9618568.635689417, 9618988.458857289, 9619131.159235325, 9619319.675425999, 9620367.794870527, 9620671.422021726, 9620689.0625, 9621056.25, 9621157.410874281, 9621447.012322757, 9621557.365566451, 9621718.717494562, 9621718.75, 9621858.927611122, 9622014.0625, 9622477.677704971, 9623058.241108675, 9623651.319666343, 9624935.112119775, 9626303.110311402, 9626528.125, 9626870.314380571, 9627379.039094184, 9627533.895293297, 9628677.439623483, 9629765.625, 9629882.8125, 9629935.479430428, 9630050.0, 9630570.280210871, 9630816.33249885, 9630855.413849773, ...], [21.930135457215112, 8.501255082321986, 8.624914494300691, 65.6248628151741, 10.949094975470299, 45.67691563305095, 22.42383888672503, 21.79949728401249, 26.318388283089888, 22.199233180329358, 40.19670706273715, 15.319531932091245, 78.35900800815871, 7.5433350849081595, 59.855172352815096, 57.464873604307925, 57.46659839338973, 65.9537860224543, 15.636103291250915, 6.381197562514361, 20.25226138313861, 32.91435192179068, 83.51176803565924, 22.55742122922282, 57.66559568479029, 6.919181447073649, 58.57965919632691, 38.01041416629655, 43.447475107700214, 68.55218632789095, 25.815775749936375, 55.683730733660624, 75.69755190351027, 35.76587086020305, 62.48876235096503, 19.701448250598713, 8.531018451885227, 46.365918870668814, 55.827894473730986, 111.50960698079739, 50.44864635420036, 26.888480611081956, 29.043667565006626, 136.65251570125804, 53.41586145719768, 37.85812790773974, 19.281866599139068, 75.04326406801515, 62.49778102091227, 28.081352613015007, 58.78388742661106, 13.770213403727096, 5.993926407287379, 25.55511384707784, 67.20651682975016, 26.303261794682577, 5.186875206736932, 19.14019352086591, 30.159570602345156, 19.74256405645371, 5.885033951680115, 121.09518622128564, 17.87211547073372, 144.58031339344666, 5.258237266511103, 8.910004903386595, 66.17983584450229, 32.77913555061026, 29.328876081025562, 19.71243366021619, 9.05998391241085, 18.78481153998544, 76.82004732247616, 66.03231699007198, 9.032938627531092, 67.44462849319584, 79.48876215731927, 34.98590737871291, 16.675346589336385, 17.031613134830586, 71.45180909739462, 55.782162487203145, 50.94177857440623, 38.23642291857401, 51.65105024944191, 25.681542365801967, 45.13456748150853, 27.687271421841366, 84.04721786878515, 6.039819494449734, 6.171777697861719, 27.84404436396776, 15.827371219340085, 81.99736304225345, 44.993959797264424, 56.70817514142147, 5.086341817244414, 35.915337736233184, 26.216236994486138, 6.740458287760265, 24.39327764139471, 29.167638340875364, 9.401485207867468, 38.17844254738858, 40.793998199917645, 67.01117229267452, 30.646347549525775, 14.38197187223354, 18.00137140271951, 35.12045104537863, 5.473670110684331, 13.7560694629388, 5.228993244732717, 47.554448520619346, 6.569765139396346, 16.259416956355892, 65.41381873028806, 5.566333050937957, 7.19717804810454, 7.01465109047637, 76.17042446259637, 12.087540529663295, 15.942554250745484, 9.67184912100233, 118.83148685997104, 18.27129899301645, 7.065484327004394, 6.723675150657134, 12.7494532939928, 16.79395689717824, 7.050251794763143, 68.20634312433899, 16.30730980532049, 15.325529683478297, 128.57975340485325, 7.269944866808819, 7.884209901641719, 9.651175621887296, 35.712497921991606, 7.583304905620795, 19.47308254666783, 129.39429639422193, 14.536400648290599, 9.60283139711916, 10.820468166086965, 14.451576271514254, 13.963922363379716, 13.891852352289389, 48.03446882233558, 56.82511973865507, 40.338404157973905, 6.079468698292694, 37.445391888274415, 63.087637522650425, 48.123606739576104, 29.10793007828362, 6.40309386135836, 80.22411794280981, 13.59152104283756, 50.12082744870465, 30.704972277573848, 74.78003482328036, 56.87857366304246, 11.808947364160806, 54.003868816172655, 18.573355257676564, 59.39360216423518, 44.53073121900181, 5.137209537273245, 5.376049182753419, 54.15582782585623, 9.90387164154223, 27.08223799370349, 21.221171859496316, 59.63943887836804, 10.23051355389707, 13.321152329664718, 52.78119148125153, 12.59725910849533, 31.202949449087463, 16.19769352231073, 35.7462942541971, 9.047598902351778, 37.98642705420106, 7.9684157020560615, 16.900795220954116, 13.672244227033188, 57.18888747832798, 24.588603078352094, 63.66830834423358, 10.209391390746896, 14.05400698576128, 61.22011494979057, 21.608846074757842, 38.4867430643716, 26.13601095038818, 36.610832587071705, 91.33760396502666, 9.303272598018149, 10.000656772213258, 58.11320895980333, 28.860614009499002, 11.809826305623313, 48.22219099528135, 20.144006073217685, 15.295807590639171, 17.188331300727853, 11.271088766434804, 49.82131275395601, 43.888125007798244, 11.69888830223448, 83.53952996052647, 8.851404029686464, 8.71428770177194, 85.53737399958943, 48.57038276086692, 14.985924796990775, 56.366564606869865, 43.913403050804924, 58.743836277091646, 52.2278082118114, 49.56924013528953, 51.53648879687468, 64.5936694972926, 67.56815875828248, 12.92057473354375, 17.603469106380924, 82.6941966759357, 21.267633101685803, 5.101825320503785, 7.442379536134488, 13.212302154166625, 34.825318367086865, 13.930062652115092, 14.011585776856107, 94.5890872367998, 11.993612778976377, 63.371412092134676, 102.446776899035, 94.93349527728648, 89.85658602383022, 52.98778074940561, 25.90580295676415, 41.94377679003369, 6.971544276274729, 13.680426004116153, 21.159459478770344, 68.49393735920506, 107.45297636615632, 25.632854025636988, 17.30548695688694, 9.63432826795992, 12.30583800249881, 79.70498967572075, 10.138215917897547, 38.54107775163429, 26.344043878785243, 62.11491782563391, 29.130383723852145, 18.063101345247002, 85.78793002892951, 28.533153362551936, 47.51808352446939, 17.28909597713087, 155.00482621796164, 108.20174926436627, 20.439965186601423, 128.08236965559368, 69.77410435491063, 25.60552228547835, 33.968950817594866, 29.97660788285437, 35.43782914920879, 23.430737278677686, 41.25596207608527, 70.83128200441371, 19.894747246463822, 67.26096775147006, 33.86763527250191, 10.55345415036374, 63.23923040216336, 16.766657136549878, 61.853642753204774, 60.330189521583435, 136.6043990423886, 80.41506387787504, 58.43553339609146, 21.051249433835107, 18.078110208659968, 63.064833919110455, 26.3534427208845, 61.19911195921506, 49.6399128994353, 17.765809534670865, 56.764368155994255, 49.332449691315404, 101.65309596957705, 22.176701223220473, 22.67505677647575, 8.053951961385243, 49.063835474054784, 17.70827159037855, 79.53535010744824, 16.189658274256264, 13.237097961764379, 18.260989650626776, 20.482882905278984, 54.11758719743196, 20.12602976800312, 54.577634093115314, 45.55465312099864, 25.151956987033962, 17.735468615112246, 150.63772835589793, 61.26896066625886, 112.76490146299227, 6.028948097948077, 83.84538189917629, 62.42294070980316, 25.639969848747114, 5.452176150271598, 111.8871975243119, 31.42361417354154, 27.01107993025095, 49.73252387913847, 22.249236567593154, 67.88867170051007, 70.73886626055555, 19.284407193670003, 44.744344971826024, 9.879270300325347, 22.506955914206326, 40.04902423748969, 51.17679882765761, 108.39463204988026, 48.63906380949986, 10.001721087324336, 62.81079684025487, 38.731445962213634, 47.88150277594181, 49.01399655904736, 7.138681054010137, 13.579301430213537, 33.780461917663125, 124.56125122060875, 32.50188357741554, 67.67669253264785, 27.498500419316727, 56.247618936158595, 36.351464923415165, 11.958407519455507, 17.40803661493584, 100.38636786426736, 14.192647849454026, 26.83099404156863, 24.948062454561434, 9.268370287759081, 6.530121878529813, 11.058620162739144, 7.434536413112425, 10.248089575951594, 6.744374909927425, 31.435460103950614, 7.013836236179436, 21.495583839358652, 61.98278015866405, 78.91573799941442, 23.88263988160338, 34.81234705141657, 14.672881068576155, 11.854396447525268, 11.213161473683334, 10.547688766229989, 84.70529221254544, 5.0762275784329525, 9.692250259765407, 10.441838001228716, 7.0154749362334945, 26.195097015060917, 8.450315287614341, 8.533881787401572, 69.330994475541, 16.350193459234823, 73.2568415192941, 14.332038805135053, 39.937342346308895, 53.55383614461888, 94.62360260188112, 33.65789343156408, 65.51714818413214, 61.19330865214745, 30.02675266436311, 27.99005742415107, 18.80391390020237, 19.86889041067245, 54.60685922948512, 25.993367586937175, 38.852771732617526, 51.90705158219712, 11.133446573192806, 18.602139421320437, 16.522113935337046, 86.5113162456446, 9.654074081863188, 70.83428757654059, 10.922636065134798, 6.350623502027109, 107.68915105021101, 8.682404532562524, 14.34311475104625, 13.21743954144817, 115.03836474858446, 5.1583886962330014, 34.50396324714978, 63.415799806908865, 56.27918395612687, 94.81039593570785, 5.150318771523393, 34.345977666449095, 17.680992894547003, 12.517777829949909, 89.73886866581715, 21.58736513502733, 6.609118348047697, 13.773708257842127, 11.534115901811354, 28.544992959180608, 6.025321739927437, 28.494880237198778, 47.3618841798154, 31.314927654830743, 24.503895330078745, 15.435250842153323, 16.395714265241434, 15.825561192500517, 116.00022393357116, 37.27958363987826, 7.917863954673478, 46.21201909110808, 75.78470466285862, 12.24779555670909, 5.984968923246031, 45.25298552533206, 47.8793053667698, 19.639159192898624, 33.57495547206327, 6.461626848307763, 207.44820130080421, 5.982586046270673, 95.78462075538555, 103.61897406318548, 7.707121936686138, 44.12052629716121, 5.269743907140502, 67.72654202921679, 5.840699086265075, 5.299709653973466, 30.69553853924155, 64.77284106947438, 64.12138417803212, 48.303924074920786, 84.55821929331952, 11.894986408506151, 8.225218084644776, 10.103616517187879, 47.96887268855044, 21.631953322925927, 11.716294568278897, 17.462579683024575, 6.728786555054671, 20.51768363119505, 48.28648897250647, 8.129585935186384, 51.00640565391744, 59.4081368382896, 20.53069694859294, 30.546427730106185, 17.598968670036214, 19.782036212063392, 18.088810180304883, 9.569819527544235, 7.733682477036947, 24.837504123836236, 69.22753490481557, 7.187700400261186, 61.696464428722564, 12.034559727912981, 23.408691310727036, 7.0425941446414235, 51.68280937138006, 11.024622371842934, 38.30176270319949, 100.57068046378704, 19.674455790951757, 60.92530980665917, 9.19920109836709, 21.690331393632313, 12.46943404492632, 51.09513885986888, 14.678859636082953, 72.95948919355175, 6.902168055258353, 26.52035632016757, 13.099561407919213, 33.136856803516125, 16.007934795310085, 58.77781338052992, 74.00497306948562, 61.460714905931916, 9.500066851896651, 111.71200115636412, 84.20791471750208, 8.994800208051684, 5.949497457999203, 51.63068744778606, 58.345065570504396, 43.062335684032576, 73.33018844838499, 107.67998549277503, 36.101190416546885, 34.54007655818531, 55.074005503997846, 16.807961228974115, 107.82753048720396, 22.511406503345864, 9.039760056004214, 51.18044565047924, 40.80564883561339, 32.304012696747904, 37.13380133612567, 37.70050665303896, 10.121964041286247, 69.27308021705416, 15.734744515418374, 54.39996410475938, 12.716251738932899, 39.800403764694394, 13.692844845613683, 82.46142562727329, 75.496588416966, 51.260719498525546, 73.51252743695255, 78.39658883276925, 43.19508853764696, 6.113148560276172, 106.3815965574063, 55.85868636231157, 80.45222379073068, 18.06618689079632, 5.879879867725442, 13.076292861497965, 39.74085964435636, 10.149841569175782, 7.397211283092397, 151.53934476124093, 11.820471301504492, 60.17351390347561, 13.490092354724565, 9.651879940604559, 28.08488039191167, 16.50849747427979, 21.10365496985932, 42.6915577937862, 150.18577199939799, 14.870691118729601, 14.096392844415027, 7.624877436903846, 29.662331957627668, 15.032033389842393, 100.11903162318555, 58.90825884080269, 64.05967483406428, 27.283566043849103, 12.714273916718241, 74.07800988556465, 15.880060993423001, 47.42882020684239, 42.1030602082259, 10.116403409752657, 54.84594838836661, 71.58325380521367, 5.216598473364044, 25.88665849566214, 65.79923181901493, 62.814562037338355, 84.90163080823227, 62.07372665178925, 7.108703338062741, 22.690312703705594, 8.254474948678569, 16.970887817578724, 10.172638669297887, 30.64293394839796, 43.92593231413704, 6.163959599244024, 68.14783720354285, 95.26591784410655, 16.107050704079114, 19.556143907496658, 11.292499707574123, 22.147674579117886, 164.46568759619325, 8.365230005925932, 7.05696919601507, 86.8157631249866, 6.714595377027766, 31.039281062851494, 8.409252770902905, 69.1086266718898, 32.12899396021374, 14.940610049810566, 20.520886783641586, 15.333599149134182, 55.11956696032851, 61.56069195517048, 104.50680916661426, 17.713655537440772, 54.01906970226316, 7.415908379786924, 12.352241779584357, 8.800993015072182, 10.131088634607085, 30.5855188725343, 26.825226163325354, 88.19434776811113, 47.827099634173564, 60.75581486287293, 51.359705314490434, 40.569272055478145, 39.13997866221542, 23.616383864636486, 15.85793125451296, 16.343859190386453, 103.00077745549365, 15.632889457102317, 74.23320028278454, 20.97020733581227, 26.324123148201032, 22.78988250100946, 32.02746880426768, 34.55428161670146, 73.40722896244685, 102.86513853576113, 118.4708090491946, 7.671279025963792, 70.22398416006193, 34.79849230492779, 7.961446456378681, 55.16421196329817, 20.82719048730854, 29.276620435725714, 70.76664477931925, 36.97590469392064, 16.95105296987629, 32.266246878491735, 10.872462557395483, 16.249538137503126, 41.293006688519206, 108.95419725558098, 46.48003566023927, 43.76139387848191, 5.72161788323948, 98.62545610135791, 53.86862728159323, 106.34492306120482, 5.955458743551771, 50.494098106596034, 33.78795337070789, 21.58637843876359, 10.006065508588268, 26.702567662181103, 57.82515906171359, 82.35929014746652, 6.1920329829181915, 13.022420813759132, 66.30765597894096, 15.022227424915599, 19.261119441122194, 37.569098454382164, 5.131987626399192, 68.47614475570194, 46.83092972179375, 59.955703977883786, 98.11665505107048, 45.72104406938793, 62.45165004868579, 58.1293225486921, 5.699188162173058, 6.362896250403033, 6.0757102621505, 49.44206148472566, 85.91580001596671, 6.178326868550872, 25.01395227267487, 51.589721260450254, 6.290522665485145, 11.723085632553168, 11.133187766332005, 22.61683794918844, 25.603811884223784, 9.468581484852411, 92.86599704089909, 51.69066647194587, 21.208641588362706, 15.795125514027394, 5.778350056919627, 12.915058220530641, 19.504364110744525, 10.743385228200202, 108.11388771033828, 85.04121771986034, 19.08465642857102, 57.63363808006474, 106.29298287800351, 85.57615959984186, 11.515546180137541, 46.69631577804004, 65.42316950300153, 17.36134190054914, 66.17898158227749, 61.49484646042553, 26.234326184970268, 64.27758817189375, 31.34942861590233, 8.105673298047371, 78.68269756063322, 53.81822642031648, 79.63378069257021, 151.52095469910563, 121.68454984221647, 27.927558354502317, 34.8111901226769, 78.34151813153977, 20.03848416560362, 97.00135625128465, 6.11195073992847, 10.868663049182993, 218.0269733576857, 46.349437960039374, 9.877437916986535, 65.60775555436065, 33.54684703094742, 5.714344997281866, 22.89708866125087, 39.201832669456685, 43.55792044527671, 8.523556899448824, 5.187958313768364, 44.20266385342915, 36.63065889131178, 16.52943272473016, 58.219687466757165, 6.155348254200232, 84.0588418280448, 19.08284281515214, 14.793363663497294, 30.7364941507955, 47.4609059023474, 34.04694373218817, 29.0662741475027, 24.02776118615249, 25.472281874590358, 88.75627689513638, 20.19106361090776, 50.41195652372761, 63.00262346962895, 113.41491183147316, 47.616633684343135, 45.97266583404176, 37.13591781382885, 7.970721539515915, 87.22201395371624, 21.140166329290555, 48.55027767889493, 46.0368527712529, 48.416044817697895, 5.491217823071816, 9.21493947984326, 76.68703472448549, 21.390053918495152, 16.464127705460207, 38.57308164142837, 51.65990497421707, 56.83591983539263, 27.547791696968826, 28.56885903783508, 66.10315513936536, 27.866177821151737, 28.482021222127596, 12.025032078171535, 43.17127306251895, 5.566243346214241, 6.541867426315019, 77.69386802576558, 11.193574729981933, 68.35009999518743, 16.027799693256522, 40.525437385107395, 66.33109868081871, 8.94720361186385, 40.96750385139475, 8.96481484247081, 100.99182856299151, 69.51566783356407, 24.01234316653369, 10.979882740676542, 62.254651151521294, 30.517948294815724, 8.260657610847018, 66.30904592846598, 13.886117464574424, 16.526407709865673, 75.03354416941144, 30.59926229873306, 19.23552059031432, 154.84613270168094, 122.7028762417461, 5.0528951517706036, 91.54894220319093, 31.627413459210594, 22.629989335138887, 11.747805150585068, 54.16815411186177, 14.380447797104658, 7.910966282096361, 25.198343675462795, 30.033399810049698, 19.51658204279478, 31.281461638460527, 23.21577847745474, 19.25299054974571, 107.1188434740047, 9.788004953852234, 53.46940444193845, 7.954994213238359, 12.2696338075963, 99.47315960454782, 23.30547452246969, 24.699948665398516, 7.091804108709126, 70.92256001685078, 48.37682198125173, 51.01532855900465, 110.9612983090219, 7.632056387557186, 51.645528316939036, 85.17679365919712, 12.56232093809105, 33.435803697287554, 10.442780449451444, 75.20660792898136, 9.980118780630118, 19.631393366805554, 52.663177451576416, 11.619079305909256, 37.037826665391755, 18.604072869423447, 13.827652287176056, 19.45415223195281, 36.0694516057502, 6.686308147019315, 22.295818619353483, 21.725619840819896, 178.94748263066626, 42.08189810508543, 8.217330193431481, 10.43051223278802, 12.719536907027154, 20.837763608052928, 19.56872585342315, 23.45336421522953, 98.12867895586724, 96.34519734065869, 7.387195639913512, 9.959792747074111, 28.909930780905825, 25.93887159245192, 22.39791249067654, 13.385957718583679, 7.928528902067177, 59.711383461340844, 17.66055850287539, 10.50779687541522, 9.76461266278808, 62.73041730872452, 21.583316047275634, 7.297532651696559, 136.769746568063, 25.34836892461214, 56.55740888744579, 5.517123882646, 22.029003240972195, 41.44070729895137, 10.343078667204724, 60.85669011111624, 17.392813045791335, 13.270160953286322, 29.83240928209488, 62.16419898653008, 60.49249828904734, 10.480964897082929, 11.089361974591968, 65.85113412317311, 29.749768588584022, 23.4292794578968, 104.15044135289705, 10.314206535167353, 15.261362244353338, 13.71134149334673, 12.702980396238438, 29.932607321907604, 70.42866533675505, 39.4284053735838, 10.230966296028388, 36.55709071710086, 14.97311130037561, 5.61598347840729, 39.96496109847755, 15.42859150234747, 9.673872811460113, 34.28047200543943, 8.908142111477476, 5.37440893019959, 6.8873159575271625, 10.105100309966435, 69.2617751473643, 33.630402826016834, 61.23958597057852, 25.50106346465477, 15.607486004421618, 24.043693290110955, 22.897475635802156, 11.680848311048372, 21.92797386555152, 50.720221793679045, 46.20210725843441, 100.47421764075891, 24.731386523828522, 44.949835183129835, 13.648767973214905, 12.121826661955257, 267.390525512617, 71.52820360141546, 36.39038050313904, 17.969469477542265, 24.905571762106522, 27.59980240618708, 12.205260181742187, 50.797171252296764, 25.764894035024955, 51.464355006229425, 92.32065959148994, 7.669582434874342, 7.083390797012946, 22.80343502409219, 45.204608800127566, 21.05761217234365, 6.129997516335255, 44.56869232863354, 13.989283346313083, 15.020928052646115, 77.75160595002897, 177.7479886070439, 12.374853481897592, 6.131489463171004, 6.070254667100876, 16.54367730044088, 8.209282928643756, 16.315356617158287, 44.29452041122333, 12.596865239765815, 8.84515949384955, 16.42246829319255, 73.18300258781653, 63.92921533786044, 43.57388256104483, 76.07416036725091, 25.251526209690397, 58.218576982030925, 27.89741727576621, 58.1152606036319, 17.449575154829084, 43.18517700352844, 6.042787664149025, 8.52702947736109, 74.89624428247498, 22.109288185151122, 59.628151850271706, 125.55186424458194, 14.948682126378793, 16.917062459541256, 43.47256739272111, 10.202383034938398, 49.935516406234555, 86.34057326218172, 8.058338588465332, 160.43355302757047, 64.5550636814147, 5.366764023068658, 18.688065886914643, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([3618065.1677224385, 3721187.885033656, 6447661.526824407, 6783410.168128089, 6798828.007643217, 6863768.75, 6870579.276001032, 6872280.78017595, 6872295.19003222, 6875487.3642181875, 6953279.6875, 7186029.927345432, 7597629.138935041, 7699467.0187845, 7703007.8125, 7705562.5, 7765332.8125, 7852514.0625, 7930444.4085278865, 7934789.91449729, 7937589.990914185, 7938073.4375, 7939153.125, 7941320.705828841, 7950270.209321454, 7955678.857769706, 7964028.125, 7970900.0, 7974213.589344902, 7975481.874514754, 7975549.846121616, 7975993.75, 7976496.173730879, 7976754.135925691, 7976912.5, 7977761.799452474, 7978881.685304711, 7979702.586738607, 7980156.25, 8009565.80332204, 8210588.686992075, 8309954.043910053, 8342887.328272313, 8357143.75, 8453530.893545147, 8483808.311772764, 8493277.370538127, 8500035.9375, 8500043.75, 8522790.602195896, 8531314.0625, 8532474.654542277, 8533672.480465151, 8533673.97458877, 8533989.0625, 8539776.439107874, 8539841.525386997, 8556760.164143598, 8567710.207382947, 8581538.367077684, 8588449.353736693, 8594856.458068203, 8602688.102409797, 8619559.213418268, 8619817.648628676, 8620643.205714062, 8620921.875, 8637550.702353587, 8638679.334816776, 8642532.113324523, 8644441.848060718, 8687123.697402678, 8726701.5625, 8731898.4375, 8734607.437088206, 8734614.054920372, 8734996.494512964, 8735331.566887222, 8735334.765972277, 8736150.458082393, 8739257.8125, 8742207.029198842, 8746629.6875, 8747285.9375, 8749428.125, 8749954.89158814, 8751648.4375, 8755862.65586263, 8758809.40191744, 8761913.585074103, 8762647.64298286, 8763290.589651087, 8779281.464498827, 8779709.290432896, 8789118.75, 8789491.21397127, 8789507.187043583, 8789626.5625, 8792776.433765152, 8792948.320945267, 8793002.378782967, 8794923.145194773, 8818798.519235954, 8836239.030482795, 8841389.91469775, 8849911.616280943, 8862604.486692153, 8863906.095021965, 8865472.49802994, 8866901.5625, 8867144.024433255, 8882494.962345736, 8887821.287449837, 8902046.875, 8909555.195373043, 8925585.857319625, 8933575.0, 8941494.416626876, 8945445.592950424, 8946935.515011331, 8957440.625, 8959183.350530704, 8961139.302483223, 8965705.064438472, 8966287.5, 8966814.727357823, 8973949.782724632, 8973952.92215718, 8982225.837541008, 8984880.8192577, 8984945.034537718, 8987749.639596937, 8988268.050892202, 8988615.407741072, 8990332.750185117, 8990984.911298942, 8993108.527823992, 8993211.292926153, 8994051.5625, 8994799.944550483, 8994966.457979204, 8995159.375, 8996107.7019937, 8996281.554461112, 8996824.794124482, 8996849.634858951, 8996985.654975284, 8996990.319358926, 8996996.875, 8997720.029038252, 8999932.8125, 9000010.854096299, 9000710.9375, 9000856.6940042, 9003110.289640164, 9004596.875, 9004799.442383463, 9005143.75, 9005260.53165198, 9006947.954191748, 9007301.5625, 9010342.1875, 9010440.625, 9010972.042219523, 9012918.75, 9013966.334783858, 9014182.8125, 9015354.869489277, 9019636.248711588, 9022094.713255836, 9022760.452631693, 9022938.107416946, 9024790.547610844, 9024793.695939282, 9025119.861327486, 9025557.151131036, 9025785.309417756, 9026142.1875, 9027324.2104236, 9028114.0625, 9028161.232170697, 9034385.872147126, 9040838.70663887, 9042213.884463001, 9042407.158148186, 9043709.665101383, 9044861.01801649, 9045056.896495912, 9047192.981495773, 9047703.015209537, 9050471.195626166, 9052870.05838765, 9065477.95172823, 9071662.196794257, 9072191.168583754, 9073917.051335998, 9073984.264008863, 9074163.836670376, 9074206.216542864, 9074608.510477072, 9075500.0, 9075838.714005705, 9075855.084067697, 9076017.1875, 9076769.665717678, 9078367.277449235, 9078796.699699806, 9078984.464834692, 9079137.5, 9079715.140872803, 9080070.649574673, 9080198.4375, 9080447.809477352, 9080727.292288154, 9080936.762924412, 9081116.792949775, 9081245.504974883, 9081439.496636234, 9081584.375, 9082061.198514627, 9083125.262974067, 9083946.875, 9084892.880330648, 9085131.25, 9085232.692712143, 9085750.90745798, 9085823.995767403, 9085832.8125, 9086293.227097005, 9086298.607924918, 9086341.719717603, 9086735.395436693, 9087015.625, 9087316.894158082, 9087593.482574064, 9087601.318853231, 9087712.991333837, 9087912.5, 9088600.090954801, 9088696.875, 9088906.692885486, 9089120.3125, 9089343.327476526, 9089554.6875, 9090355.647285882, 9090437.12448673, 9090438.832900293, 9091259.018184671, 9092042.1875, 9092865.832388325, 9093448.899660727, 9096942.525271067, 9097045.954807004, 9100027.97853199, 9101347.696489876, 9102215.625, 9102249.272280816, 9102470.3125, 9103918.75, 9104638.132740676, 9104668.75, 9104750.715133566, 9104884.375, 9105183.040536575, 9105718.75, 9105809.375, 9105963.450024059, 9109043.75, 9111184.33027419, 9115377.957541497, 9117876.5625, 9120817.1875, 9121415.625, 9122486.545207262, 9124390.625, 9125277.7196192, 9125460.260812093, 9125689.0625, 9125849.928831857, 9125858.973676354, 9126415.625, 9126695.742527593, 9126804.6875, 9126876.5625, 9127378.125, 9127455.835410964, 9128514.0625, 9128677.446665958, 9128807.596898304, 9128854.6875, 9129282.907152249, 9129650.0, 9131398.4375, 9132222.024547413, 9134343.75, 9134987.17217507, 9136512.406867558, 9138571.456857502, 9138743.360848969, 9138958.907575676, 9139424.623122113, 9139566.159401856, 9139851.5625, 9139895.605484297, 9140079.154697997, 9140154.220497841, 9140246.267394496, 9140255.707925797, 9140410.288592508, 9140537.5, 9140614.84575273, 9140746.6773118, 9140855.267677981, 9141032.810340961, 9141096.875, 9141450.304753812, 9141543.161312608, 9141648.4375, 9141675.0, 9141936.737083932, 9142060.712137299, 9142104.758369697, 9142165.184228411, 9142220.231039736, 9142406.25, 9142517.57891987, 9142582.8125, 9142659.676910242, 9142696.12087369, 9142750.0, 9142827.146393804, 9142873.033463392, 9143034.375, 9143120.3125, 9143257.25730431, 9143509.947895616, 9143511.636455733, 9143925.0, 9144167.122078903, 9144317.1875, 9144496.875, 9144512.565140536, 9144871.464936981, 9145460.9375, 9145519.711938303, 9145774.69636559, 9146185.9375, 9146497.232013704, 9146818.75, 9147126.5625, 9147167.661034754, 9147739.58751501, 9147952.06617503, 9147996.663599752, 9148571.643823458, 9149929.475788957, 9150537.424501227, 9154087.769117953, 9154134.33034626, 9156507.320667513, 9156544.666015046, 9156574.903408915, 9158268.073489, 9158299.574158316, 9158843.250248933, 9159331.25, 9160457.756717324, 9160764.154914046, 9160931.25, 9161653.052690603, 9161869.169975046, 9161990.67899187, 9162008.969270892, 9162067.1875, 9162711.336665051, 9163055.085504573, 9163330.761909239, 9163332.39339927, 9163342.057460882, 9163847.172307285, 9163862.940103363, 9163898.4375, 9163986.263748972, 9164101.5625, 9164263.892848466, 9164837.5, 9164993.83546378, 9165003.125, 9165018.75, 9165281.377526848, 9165576.03088543, 9165784.13509415, 9166107.784899557, 9168072.875591435, 9169991.792608904, 9172421.875, 9173170.1477987, 9175470.3125, 9177862.5, 9178939.96153557, 9181569.03328218, 9189620.110456252, 9190275.0, 9192426.920952298, 9193024.460719127, 9195126.427217111, 9197064.695459526, 9197298.055635089, 9197336.617841704, 9198471.70861592, 9199179.14735977, 9199773.4375, 9199812.19805782, 9199835.9375, 9199848.205390042, 9200015.625, 9200802.799021833, 9201319.654653097, 9202831.25, 9206108.383688096, 9206297.613222482, 9206482.8125, 9206531.14796693, 9207460.11164327, 9208040.280700585, 9208111.182826973, 9209975.0, 9210029.061380673, 9214592.825095385, 9214746.875, 9215376.210510205, 9215782.569259753, 9216112.623776218, 9217862.835520219, 9218778.33909428, 9219282.76572939, 9220234.299703412, 9220611.730976693, 9221085.9375, 9221521.815374397, 9222013.115142915, 9222069.258739784, 9222486.03426638, 9222579.304702928, 9223431.34631731, 9224043.75, 9224157.648110498, 9224838.792681985, 9224931.732831571, 9225084.375, 9227919.748457823, 9228451.840872558, 9229464.060585938, 9233063.355737034, 9234902.943010861, 9236039.417193122, 9236912.776640171, 9236957.8125, 9237065.842048254, 9239955.661146395, 9239979.6875, 9240690.625, 9241803.566051912, 9244474.882138018, 9247047.665978078, 9248268.75, 9250115.138807617, 9250995.389214957, 9251320.846895, 9253824.82356494, 9256471.47029622, 9260177.788418164, 9260362.190840185, 9261506.25, 9262400.975706156, 9263121.651854454, 9265425.0, 9268198.256813496, 9268370.129168857, 9269377.199259218, 9271400.269118614, 9277675.346812494, 9288405.480461068, 9300530.879541881, 9305917.433665771, 9309347.415613111, 9310866.136831013, 9312257.31010588, 9312454.378771333, 9314243.75, 9324154.620533306, 9326851.252332702, 9327096.875, 9330210.233572843, 9330347.714889875, 9330931.089400241, 9339969.832046783, 9342356.966784105, 9344265.161638362, 9346793.679340784, 9347321.793180179, 9347525.657014668, 9349157.702253265, 9349508.790166812, 9351075.11672286, 9352290.879224967, 9353292.710853735, 9357972.253932536, 9359410.9375, 9360129.88045524, 9361345.3125, 9362532.656738305, 9365966.76065108, 9367357.927659646, 9367672.803633124, 9368457.8125, 9368761.97618072, 9368803.891703067, 9369569.83427046, 9369570.3125, 9369754.317802906, 9369978.125, 9370228.541400943, 9370446.529815298, 9370513.658861047, 9371140.258700296, 9371156.25, 9371321.875, 9371375.68244844, 9371444.199523048, 9371753.125, 9372316.43220346, 9373472.100173084, 9373633.96400288, 9373921.875, 9374864.886144722, 9374880.754986973, 9376218.378678203, 9386239.0625, 9386528.989235165, 9386660.9375, 9387251.154010437, 9387321.875, 9387331.25, 9387714.299983483, 9392861.993579717, 9394034.375, 9394981.25, 9402524.591817537, 9403446.165112408, 9404274.406202175, 9404371.875, 9405080.519160543, 9405557.204525054, 9406190.532316905, 9407680.089683577, 9407807.8125, 9410247.99632448, 9414142.543661803, 9417771.06379318, 9419105.045692092, 9421669.77255319, 9424478.125, 9424842.1875, 9432451.54379508, 9436681.009074552, 9438115.684437018, 9438682.8125, 9438795.336049013, 9440357.496950902, 9440446.875, 9441735.9375, 9442290.558992486, 9444666.979005985, 9447337.5, 9450137.726219619, 9453040.625, 9454996.001713274, 9455799.23979687, 9456146.740827693, 9456148.4375, 9456189.571952576, 9457073.288140154, 9457162.5, 9457829.028140437, 9457839.0625, 9457990.625, 9458149.951280246, 9458338.674686408, 9458534.313796556, 9458547.689546738, 9458753.97648689, 9458892.1875, 9459136.78194282, 9460058.511708418, 9460426.230569927, 9460884.908902809, 9461263.761792032, 9461446.834026244, 9461637.602931725, 9461849.563206485, 9461861.612223225, 9461865.770829724, 9463335.68638383, 9463569.702448292, 9464441.937467162, 9464500.0, 9464603.349993734, 9464655.542609785, 9464750.0, 9465020.730729887, 9465143.146685733, 9465404.78670168, 9465612.5, 9466532.792612415, 9466746.650296528, 9466961.514087055, 9467106.25, 9467166.638055656, 9467195.976241177, 9467202.423184555, 9467594.565234413, 9467948.778036699, 9469533.766258406, 9470012.25206276, 9470118.748792544, 9470351.5625, 9471935.9375, 9472220.3125, 9475074.653416192, 9476055.939408315, 9476567.626627319, 9476892.512453297, 9477745.507306367, 9480695.482789947, 9481673.336153556, 9481865.15999885, 9482104.565382333, 9482191.80836106, 9482515.625, 9483118.735708684, 9484016.765646929, 9484093.022587385, 9484189.398600217, 9484406.434286019, 9484593.75, 9484652.046535205, 9484668.080029227, 9486165.293192524, 9486554.708978934, 9486658.901789993, 9486659.375, 9486726.5625, 9487062.417907495, 9488022.835005986, 9488471.278312664, 9488653.430496905, 9488737.5, 9488809.375, 9488921.875, 9488993.67905707, 9489462.730984509, 9489520.931987686, 9490232.632607726, 9490907.8125, 9491518.932509765, 9493665.58092178, 9493833.212728277, 9493853.085162697, 9494500.702946711, 9494503.025589451, 9494519.615222398, 9495064.0625, 9495175.943469407, 9495258.760262644, 9495389.0625, 9495423.867847163, 9495459.678250398, 9495787.5, 9495900.06937453, 9496030.37279375, 9496375.257245615, 9497034.375, 9497506.25, 9498314.0625, 9498510.127298938, 9498761.947794052, 9499207.692896383, 9499224.159177614, 9499451.442516776, 9499657.773171404, 9499757.29312505, 9499760.20014539, 9501397.307753453, 9501520.496391943, 9502275.182407761, 9502319.10020342, 9502700.003503723, 9503185.543224595, 9503510.769929923, 9504926.72039801, 9506828.125, 9507818.427630119, 9509338.533503607, 9510247.082272632, 9510572.944056328, 9510718.092747549, 9511430.263511969, 9511820.051874159, 9512257.8125, 9512689.0625, 9512730.469137734, 9512755.08524298, 9512757.8125, 9513088.54158797, 9513554.922223018, 9513706.25, 9513710.9375, 9514187.560332172, 9514197.476648184, 9514396.62396266, 9514680.500621634, 9516743.617789872, 9516832.542592285, 9517151.20398946, 9517218.75, 9517572.74054153, 9517803.508368345, 9517827.955030747, 9518339.48263367, 9518393.719094662, 9518540.625, 9518542.825611321, 9518772.603188826, 9518821.045001913, 9518895.538779942, 9518937.327699747, 9518980.16416457, 9519127.930689685, 9519164.64463337, 9519243.75, 9519292.1875, 9519382.93105595, 9519504.317596951, 9519553.125, 9519625.0, 9519741.047769092, 9519946.257014293, 9519973.4375, 9520099.88083264, 9520269.51889099, 9520366.747934775, 9520380.310271708, 9520518.75, 9520549.21889167, 9520753.085581578, 9520762.5, 9520815.625, 9520850.45635434, 9520914.0625, 9520950.738888541, 9520986.006317772, 9521051.311985098, 9521186.85875803, 9521221.394289343, 9521460.9375, 9521580.428344399, 9521759.375, 9521959.375, 9522038.909401426, 9522130.600802671, 9522198.074958596, 9522208.797184106, 9522268.75, 9522589.0625, 9522789.0625, 9522803.793673232, 9522879.546475727, 9522899.59632099, 9522920.736175852, 9522940.425372703, 9523023.4375, 9523331.25, 9523454.6875, 9523464.381780835, 9523523.4375, 9523837.5, 9523849.965831826, 9523895.310316782, 9523958.319581164, 9524011.931428846, 9524089.72737702, 9524180.028251356, 9524359.375, 9524482.996768529, 9524556.25, 9524879.024799664, 9524914.877412355, 9525040.625, 9525147.945264122, 9525320.3125, 9525351.094614709, 9525376.5625, 9525760.9375, 9525812.220207544, 9526140.528322414, 9526235.444494912, 9526282.509987503, 9526646.825661706, 9526914.0625, 9527424.692504482, 9527904.515322905, 9528039.0625, 9528089.911935722, 9529200.6544723, 9529205.994910652, 9529468.629344491, 9529522.537917655, 9529543.75, 9529779.225207783, 9530004.444582619, 9530255.051026966, 9530477.063562032, 9531087.344576254, 9531135.152578557, 9531445.11796377, 9531657.376404082, 9532072.713565292, 9532099.535172088, 9532201.516783042, 9532630.491716133, 9532817.1875, 9532839.55727362, 9534147.446631989, 9534483.6905153, 9534597.56936586, 9535101.235317044, 9535421.219631914, 9535587.959526941, 9535654.573502224, 9535659.40430342, 9535964.0625, 9536135.9375, 9536192.1875, 9536450.078982722, 9536731.25, 9536796.875, 9536814.820252372, 9537270.094315967, 9537324.51265515, 9537510.9375, 9537586.616519662, 9538082.10315645, 9538442.1875, 9539359.668154292, 9539481.562204642, 9541110.089246051, 9541626.235971194, 9544441.455538185, 9544675.0, 9545504.28811309, 9545826.139372073, 9546623.28355405, 9547295.680016352, 9547390.625, 9547512.366716206, 9547522.940427303, 9547591.450024612, 9547732.244196614, 9547877.407719415, 9548206.921242028, 9548518.75, 9548531.500402594, 9548575.922876352, 9549627.22262156, 9549631.364059027, 9549849.853949599, 9549852.229790015, 9549948.590898132, 9550068.005437668, 9550097.916784946, 9551188.06779694, 9551729.251063067, 9552020.78394867, 9552498.4375, 9552503.46187209, 9552550.630010413, 9552742.1875, 9554167.389106976, 9554375.0, 9555071.541778369, 9555258.927094528, 9555443.75, 9555641.619947791, 9556065.625, 9556961.459882963, 9557824.633911496, 9557830.417485377, 9560587.5, 9561018.589814011, 9561204.230184166, 9562062.475328872, 9563804.052355051, 9567217.1875, 9573905.924410174, 9573990.736837659, 9575327.533721376, 9575593.831460278, 9577151.197400406, 9579080.505559236, 9579988.391825859, 9581101.242237313, 9581428.125, 9581913.401515547, 9582223.4375, 9584050.805735886, 9585115.660002079, 9585390.14352138, 9586420.587775243, 9586951.941535318, 9588751.285093198, 9590063.515585292, 9590500.918408308, 9591647.465057068, 9591955.479794085, 9592223.4375, 9592287.437756091, 9597939.0625, 9598304.513194254, 9599047.039402671, 9599452.847593203, 9600040.709707467, 9600244.077230424, 9600724.542516356, 9600909.151439186, 9600981.25, 9601031.25, 9601490.949094929, 9602638.166652776, 9602845.016614934, 9603091.179795593, 9603165.625, 9603514.0625, 9604597.785976313, 9605253.742976982, 9605707.597831655, 9605720.861699294, 9605749.032481752, 9607114.0625, 9607117.16428927, 9607518.75, 9608308.582742093, 9609936.117282363, 9610967.040703982, 9611412.122034542, 9612653.84607499, 9613249.455207415, 9613737.89349071, 9613821.875, 9614630.97552768, 9616160.35373143, 9616160.9375, 9617023.14528584, 9617572.54909598, 9617650.407163747, 9618192.01413724, 9618236.302678283, 9618259.225918062, 9618568.635689417, 9618988.458857289, 9619131.159235325, 9619319.675425999, 9620367.794870527, 9620671.422021726, 9620689.0625, 9621056.25, 9621157.410874281, 9621447.012322757, 9621557.365566451, 9621718.717494562, 9621718.75, 9621858.927611122, 9622014.0625, 9622477.677704971, 9623058.241108675, 9623651.319666343, 9624935.112119775, 9626303.110311402, 9626528.125, 9626870.314380571, 9627379.039094184, 9627533.895293297, 9628677.439623483, 9629765.625, 9629882.8125, 9629935.479430428, 9630050.0, 9630570.280210871, 9630816.33249885, 9630855.413849773, ...], [21.930135457215112, 8.501255082321986, 8.624914494300691, 65.6248628151741, 10.949094975470299, 45.67691563305095, 22.42383888672503, 21.79949728401249, 26.318388283089888, 22.199233180329358, 40.19670706273715, 15.319531932091245, 78.35900800815871, 7.5433350849081595, 59.855172352815096, 57.464873604307925, 57.46659839338973, 65.9537860224543, 15.636103291250915, 6.381197562514361, 20.25226138313861, 32.91435192179068, 83.51176803565924, 22.55742122922282, 57.66559568479029, 6.919181447073649, 58.57965919632691, 38.01041416629655, 43.447475107700214, 68.55218632789095, 25.815775749936375, 55.683730733660624, 75.69755190351027, 35.76587086020305, 62.48876235096503, 19.701448250598713, 8.531018451885227, 46.365918870668814, 55.827894473730986, 111.50960698079739, 50.44864635420036, 26.888480611081956, 29.043667565006626, 136.65251570125804, 53.41586145719768, 37.85812790773974, 19.281866599139068, 75.04326406801515, 62.49778102091227, 28.081352613015007, 58.78388742661106, 13.770213403727096, 5.993926407287379, 25.55511384707784, 67.20651682975016, 26.303261794682577, 5.186875206736932, 19.14019352086591, 30.159570602345156, 19.74256405645371, 5.885033951680115, 121.09518622128564, 17.87211547073372, 144.58031339344666, 5.258237266511103, 8.910004903386595, 66.17983584450229, 32.77913555061026, 29.328876081025562, 19.71243366021619, 9.05998391241085, 18.78481153998544, 76.82004732247616, 66.03231699007198, 9.032938627531092, 67.44462849319584, 79.48876215731927, 34.98590737871291, 16.675346589336385, 17.031613134830586, 71.45180909739462, 55.782162487203145, 50.94177857440623, 38.23642291857401, 51.65105024944191, 25.681542365801967, 45.13456748150853, 27.687271421841366, 84.04721786878515, 6.039819494449734, 6.171777697861719, 27.84404436396776, 15.827371219340085, 81.99736304225345, 44.993959797264424, 56.70817514142147, 5.086341817244414, 35.915337736233184, 26.216236994486138, 6.740458287760265, 24.39327764139471, 29.167638340875364, 9.401485207867468, 38.17844254738858, 40.793998199917645, 67.01117229267452, 30.646347549525775, 14.38197187223354, 18.00137140271951, 35.12045104537863, 5.473670110684331, 13.7560694629388, 5.228993244732717, 47.554448520619346, 6.569765139396346, 16.259416956355892, 65.41381873028806, 5.566333050937957, 7.19717804810454, 7.01465109047637, 76.17042446259637, 12.087540529663295, 15.942554250745484, 9.67184912100233, 118.83148685997104, 18.27129899301645, 7.065484327004394, 6.723675150657134, 12.7494532939928, 16.79395689717824, 7.050251794763143, 68.20634312433899, 16.30730980532049, 15.325529683478297, 128.57975340485325, 7.269944866808819, 7.884209901641719, 9.651175621887296, 35.712497921991606, 7.583304905620795, 19.47308254666783, 129.39429639422193, 14.536400648290599, 9.60283139711916, 10.820468166086965, 14.451576271514254, 13.963922363379716, 13.891852352289389, 48.03446882233558, 56.82511973865507, 40.338404157973905, 6.079468698292694, 37.445391888274415, 63.087637522650425, 48.123606739576104, 29.10793007828362, 6.40309386135836, 80.22411794280981, 13.59152104283756, 50.12082744870465, 30.704972277573848, 74.78003482328036, 56.87857366304246, 11.808947364160806, 54.003868816172655, 18.573355257676564, 59.39360216423518, 44.53073121900181, 5.137209537273245, 5.376049182753419, 54.15582782585623, 9.90387164154223, 27.08223799370349, 21.221171859496316, 59.63943887836804, 10.23051355389707, 13.321152329664718, 52.78119148125153, 12.59725910849533, 31.202949449087463, 16.19769352231073, 35.7462942541971, 9.047598902351778, 37.98642705420106, 7.9684157020560615, 16.900795220954116, 13.672244227033188, 57.18888747832798, 24.588603078352094, 63.66830834423358, 10.209391390746896, 14.05400698576128, 61.22011494979057, 21.608846074757842, 38.4867430643716, 26.13601095038818, 36.610832587071705, 91.33760396502666, 9.303272598018149, 10.000656772213258, 58.11320895980333, 28.860614009499002, 11.809826305623313, 48.22219099528135, 20.144006073217685, 15.295807590639171, 17.188331300727853, 11.271088766434804, 49.82131275395601, 43.888125007798244, 11.69888830223448, 83.53952996052647, 8.851404029686464, 8.71428770177194, 85.53737399958943, 48.57038276086692, 14.985924796990775, 56.366564606869865, 43.913403050804924, 58.743836277091646, 52.2278082118114, 49.56924013528953, 51.53648879687468, 64.5936694972926, 67.56815875828248, 12.92057473354375, 17.603469106380924, 82.6941966759357, 21.267633101685803, 5.101825320503785, 7.442379536134488, 13.212302154166625, 34.825318367086865, 13.930062652115092, 14.011585776856107, 94.5890872367998, 11.993612778976377, 63.371412092134676, 102.446776899035, 94.93349527728648, 89.85658602383022, 52.98778074940561, 25.90580295676415, 41.94377679003369, 6.971544276274729, 13.680426004116153, 21.159459478770344, 68.49393735920506, 107.45297636615632, 25.632854025636988, 17.30548695688694, 9.63432826795992, 12.30583800249881, 79.70498967572075, 10.138215917897547, 38.54107775163429, 26.344043878785243, 62.11491782563391, 29.130383723852145, 18.063101345247002, 85.78793002892951, 28.533153362551936, 47.51808352446939, 17.28909597713087, 155.00482621796164, 108.20174926436627, 20.439965186601423, 128.08236965559368, 69.77410435491063, 25.60552228547835, 33.968950817594866, 29.97660788285437, 35.43782914920879, 23.430737278677686, 41.25596207608527, 70.83128200441371, 19.894747246463822, 67.26096775147006, 33.86763527250191, 10.55345415036374, 63.23923040216336, 16.766657136549878, 61.853642753204774, 60.330189521583435, 136.6043990423886, 80.41506387787504, 58.43553339609146, 21.051249433835107, 18.078110208659968, 63.064833919110455, 26.3534427208845, 61.19911195921506, 49.6399128994353, 17.765809534670865, 56.764368155994255, 49.332449691315404, 101.65309596957705, 22.176701223220473, 22.67505677647575, 8.053951961385243, 49.063835474054784, 17.70827159037855, 79.53535010744824, 16.189658274256264, 13.237097961764379, 18.260989650626776, 20.482882905278984, 54.11758719743196, 20.12602976800312, 54.577634093115314, 45.55465312099864, 25.151956987033962, 17.735468615112246, 150.63772835589793, 61.26896066625886, 112.76490146299227, 6.028948097948077, 83.84538189917629, 62.42294070980316, 25.639969848747114, 5.452176150271598, 111.8871975243119, 31.42361417354154, 27.01107993025095, 49.73252387913847, 22.249236567593154, 67.88867170051007, 70.73886626055555, 19.284407193670003, 44.744344971826024, 9.879270300325347, 22.506955914206326, 40.04902423748969, 51.17679882765761, 108.39463204988026, 48.63906380949986, 10.001721087324336, 62.81079684025487, 38.731445962213634, 47.88150277594181, 49.01399655904736, 7.138681054010137, 13.579301430213537, 33.780461917663125, 124.56125122060875, 32.50188357741554, 67.67669253264785, 27.498500419316727, 56.247618936158595, 36.351464923415165, 11.958407519455507, 17.40803661493584, 100.38636786426736, 14.192647849454026, 26.83099404156863, 24.948062454561434, 9.268370287759081, 6.530121878529813, 11.058620162739144, 7.434536413112425, 10.248089575951594, 6.744374909927425, 31.435460103950614, 7.013836236179436, 21.495583839358652, 61.98278015866405, 78.91573799941442, 23.88263988160338, 34.81234705141657, 14.672881068576155, 11.854396447525268, 11.213161473683334, 10.547688766229989, 84.70529221254544, 5.0762275784329525, 9.692250259765407, 10.441838001228716, 7.0154749362334945, 26.195097015060917, 8.450315287614341, 8.533881787401572, 69.330994475541, 16.350193459234823, 73.2568415192941, 14.332038805135053, 39.937342346308895, 53.55383614461888, 94.62360260188112, 33.65789343156408, 65.51714818413214, 61.19330865214745, 30.02675266436311, 27.99005742415107, 18.80391390020237, 19.86889041067245, 54.60685922948512, 25.993367586937175, 38.852771732617526, 51.90705158219712, 11.133446573192806, 18.602139421320437, 16.522113935337046, 86.5113162456446, 9.654074081863188, 70.83428757654059, 10.922636065134798, 6.350623502027109, 107.68915105021101, 8.682404532562524, 14.34311475104625, 13.21743954144817, 115.03836474858446, 5.1583886962330014, 34.50396324714978, 63.415799806908865, 56.27918395612687, 94.81039593570785, 5.150318771523393, 34.345977666449095, 17.680992894547003, 12.517777829949909, 89.73886866581715, 21.58736513502733, 6.609118348047697, 13.773708257842127, 11.534115901811354, 28.544992959180608, 6.025321739927437, 28.494880237198778, 47.3618841798154, 31.314927654830743, 24.503895330078745, 15.435250842153323, 16.395714265241434, 15.825561192500517, 116.00022393357116, 37.27958363987826, 7.917863954673478, 46.21201909110808, 75.78470466285862, 12.24779555670909, 5.984968923246031, 45.25298552533206, 47.8793053667698, 19.639159192898624, 33.57495547206327, 6.461626848307763, 207.44820130080421, 5.982586046270673, 95.78462075538555, 103.61897406318548, 7.707121936686138, 44.12052629716121, 5.269743907140502, 67.72654202921679, 5.840699086265075, 5.299709653973466, 30.69553853924155, 64.77284106947438, 64.12138417803212, 48.303924074920786, 84.55821929331952, 11.894986408506151, 8.225218084644776, 10.103616517187879, 47.96887268855044, 21.631953322925927, 11.716294568278897, 17.462579683024575, 6.728786555054671, 20.51768363119505, 48.28648897250647, 8.129585935186384, 51.00640565391744, 59.4081368382896, 20.53069694859294, 30.546427730106185, 17.598968670036214, 19.782036212063392, 18.088810180304883, 9.569819527544235, 7.733682477036947, 24.837504123836236, 69.22753490481557, 7.187700400261186, 61.696464428722564, 12.034559727912981, 23.408691310727036, 7.0425941446414235, 51.68280937138006, 11.024622371842934, 38.30176270319949, 100.57068046378704, 19.674455790951757, 60.92530980665917, 9.19920109836709, 21.690331393632313, 12.46943404492632, 51.09513885986888, 14.678859636082953, 72.95948919355175, 6.902168055258353, 26.52035632016757, 13.099561407919213, 33.136856803516125, 16.007934795310085, 58.77781338052992, 74.00497306948562, 61.460714905931916, 9.500066851896651, 111.71200115636412, 84.20791471750208, 8.994800208051684, 5.949497457999203, 51.63068744778606, 58.345065570504396, 43.062335684032576, 73.33018844838499, 107.67998549277503, 36.101190416546885, 34.54007655818531, 55.074005503997846, 16.807961228974115, 107.82753048720396, 22.511406503345864, 9.039760056004214, 51.18044565047924, 40.80564883561339, 32.304012696747904, 37.13380133612567, 37.70050665303896, 10.121964041286247, 69.27308021705416, 15.734744515418374, 54.39996410475938, 12.716251738932899, 39.800403764694394, 13.692844845613683, 82.46142562727329, 75.496588416966, 51.260719498525546, 73.51252743695255, 78.39658883276925, 43.19508853764696, 6.113148560276172, 106.3815965574063, 55.85868636231157, 80.45222379073068, 18.06618689079632, 5.879879867725442, 13.076292861497965, 39.74085964435636, 10.149841569175782, 7.397211283092397, 151.53934476124093, 11.820471301504492, 60.17351390347561, 13.490092354724565, 9.651879940604559, 28.08488039191167, 16.50849747427979, 21.10365496985932, 42.6915577937862, 150.18577199939799, 14.870691118729601, 14.096392844415027, 7.624877436903846, 29.662331957627668, 15.032033389842393, 100.11903162318555, 58.90825884080269, 64.05967483406428, 27.283566043849103, 12.714273916718241, 74.07800988556465, 15.880060993423001, 47.42882020684239, 42.1030602082259, 10.116403409752657, 54.84594838836661, 71.58325380521367, 5.216598473364044, 25.88665849566214, 65.79923181901493, 62.814562037338355, 84.90163080823227, 62.07372665178925, 7.108703338062741, 22.690312703705594, 8.254474948678569, 16.970887817578724, 10.172638669297887, 30.64293394839796, 43.92593231413704, 6.163959599244024, 68.14783720354285, 95.26591784410655, 16.107050704079114, 19.556143907496658, 11.292499707574123, 22.147674579117886, 164.46568759619325, 8.365230005925932, 7.05696919601507, 86.8157631249866, 6.714595377027766, 31.039281062851494, 8.409252770902905, 69.1086266718898, 32.12899396021374, 14.940610049810566, 20.520886783641586, 15.333599149134182, 55.11956696032851, 61.56069195517048, 104.50680916661426, 17.713655537440772, 54.01906970226316, 7.415908379786924, 12.352241779584357, 8.800993015072182, 10.131088634607085, 30.5855188725343, 26.825226163325354, 88.19434776811113, 47.827099634173564, 60.75581486287293, 51.359705314490434, 40.569272055478145, 39.13997866221542, 23.616383864636486, 15.85793125451296, 16.343859190386453, 103.00077745549365, 15.632889457102317, 74.23320028278454, 20.97020733581227, 26.324123148201032, 22.78988250100946, 32.02746880426768, 34.55428161670146, 73.40722896244685, 102.86513853576113, 118.4708090491946, 7.671279025963792, 70.22398416006193, 34.79849230492779, 7.961446456378681, 55.16421196329817, 20.82719048730854, 29.276620435725714, 70.76664477931925, 36.97590469392064, 16.95105296987629, 32.266246878491735, 10.872462557395483, 16.249538137503126, 41.293006688519206, 108.95419725558098, 46.48003566023927, 43.76139387848191, 5.72161788323948, 98.62545610135791, 53.86862728159323, 106.34492306120482, 5.955458743551771, 50.494098106596034, 33.78795337070789, 21.58637843876359, 10.006065508588268, 26.702567662181103, 57.82515906171359, 82.35929014746652, 6.1920329829181915, 13.022420813759132, 66.30765597894096, 15.022227424915599, 19.261119441122194, 37.569098454382164, 5.131987626399192, 68.47614475570194, 46.83092972179375, 59.955703977883786, 98.11665505107048, 45.72104406938793, 62.45165004868579, 58.1293225486921, 5.699188162173058, 6.362896250403033, 6.0757102621505, 49.44206148472566, 85.91580001596671, 6.178326868550872, 25.01395227267487, 51.589721260450254, 6.290522665485145, 11.723085632553168, 11.133187766332005, 22.61683794918844, 25.603811884223784, 9.468581484852411, 92.86599704089909, 51.69066647194587, 21.208641588362706, 15.795125514027394, 5.778350056919627, 12.915058220530641, 19.504364110744525, 10.743385228200202, 108.11388771033828, 85.04121771986034, 19.08465642857102, 57.63363808006474, 106.29298287800351, 85.57615959984186, 11.515546180137541, 46.69631577804004, 65.42316950300153, 17.36134190054914, 66.17898158227749, 61.49484646042553, 26.234326184970268, 64.27758817189375, 31.34942861590233, 8.105673298047371, 78.68269756063322, 53.81822642031648, 79.63378069257021, 151.52095469910563, 121.68454984221647, 27.927558354502317, 34.8111901226769, 78.34151813153977, 20.03848416560362, 97.00135625128465, 6.11195073992847, 10.868663049182993, 218.0269733576857, 46.349437960039374, 9.877437916986535, 65.60775555436065, 33.54684703094742, 5.714344997281866, 22.89708866125087, 39.201832669456685, 43.55792044527671, 8.523556899448824, 5.187958313768364, 44.20266385342915, 36.63065889131178, 16.52943272473016, 58.219687466757165, 6.155348254200232, 84.0588418280448, 19.08284281515214, 14.793363663497294, 30.7364941507955, 47.4609059023474, 34.04694373218817, 29.0662741475027, 24.02776118615249, 25.472281874590358, 88.75627689513638, 20.19106361090776, 50.41195652372761, 63.00262346962895, 113.41491183147316, 47.616633684343135, 45.97266583404176, 37.13591781382885, 7.970721539515915, 87.22201395371624, 21.140166329290555, 48.55027767889493, 46.0368527712529, 48.416044817697895, 5.491217823071816, 9.21493947984326, 76.68703472448549, 21.390053918495152, 16.464127705460207, 38.57308164142837, 51.65990497421707, 56.83591983539263, 27.547791696968826, 28.56885903783508, 66.10315513936536, 27.866177821151737, 28.482021222127596, 12.025032078171535, 43.17127306251895, 5.566243346214241, 6.541867426315019, 77.69386802576558, 11.193574729981933, 68.35009999518743, 16.027799693256522, 40.525437385107395, 66.33109868081871, 8.94720361186385, 40.96750385139475, 8.96481484247081, 100.99182856299151, 69.51566783356407, 24.01234316653369, 10.979882740676542, 62.254651151521294, 30.517948294815724, 8.260657610847018, 66.30904592846598, 13.886117464574424, 16.526407709865673, 75.03354416941144, 30.59926229873306, 19.23552059031432, 154.84613270168094, 122.7028762417461, 5.0528951517706036, 91.54894220319093, 31.627413459210594, 22.629989335138887, 11.747805150585068, 54.16815411186177, 14.380447797104658, 7.910966282096361, 25.198343675462795, 30.033399810049698, 19.51658204279478, 31.281461638460527, 23.21577847745474, 19.25299054974571, 107.1188434740047, 9.788004953852234, 53.46940444193845, 7.954994213238359, 12.2696338075963, 99.47315960454782, 23.30547452246969, 24.699948665398516, 7.091804108709126, 70.92256001685078, 48.37682198125173, 51.01532855900465, 110.9612983090219, 7.632056387557186, 51.645528316939036, 85.17679365919712, 12.56232093809105, 33.435803697287554, 10.442780449451444, 75.20660792898136, 9.980118780630118, 19.631393366805554, 52.663177451576416, 11.619079305909256, 37.037826665391755, 18.604072869423447, 13.827652287176056, 19.45415223195281, 36.0694516057502, 6.686308147019315, 22.295818619353483, 21.725619840819896, 178.94748263066626, 42.08189810508543, 8.217330193431481, 10.43051223278802, 12.719536907027154, 20.837763608052928, 19.56872585342315, 23.45336421522953, 98.12867895586724, 96.34519734065869, 7.387195639913512, 9.959792747074111, 28.909930780905825, 25.93887159245192, 22.39791249067654, 13.385957718583679, 7.928528902067177, 59.711383461340844, 17.66055850287539, 10.50779687541522, 9.76461266278808, 62.73041730872452, 21.583316047275634, 7.297532651696559, 136.769746568063, 25.34836892461214, 56.55740888744579, 5.517123882646, 22.029003240972195, 41.44070729895137, 10.343078667204724, 60.85669011111624, 17.392813045791335, 13.270160953286322, 29.83240928209488, 62.16419898653008, 60.49249828904734, 10.480964897082929, 11.089361974591968, 65.85113412317311, 29.749768588584022, 23.4292794578968, 104.15044135289705, 10.314206535167353, 15.261362244353338, 13.71134149334673, 12.702980396238438, 29.932607321907604, 70.42866533675505, 39.4284053735838, 10.230966296028388, 36.55709071710086, 14.97311130037561, 5.61598347840729, 39.96496109847755, 15.42859150234747, 9.673872811460113, 34.28047200543943, 8.908142111477476, 5.37440893019959, 6.8873159575271625, 10.105100309966435, 69.2617751473643, 33.630402826016834, 61.23958597057852, 25.50106346465477, 15.607486004421618, 24.043693290110955, 22.897475635802156, 11.680848311048372, 21.92797386555152, 50.720221793679045, 46.20210725843441, 100.47421764075891, 24.731386523828522, 44.949835183129835, 13.648767973214905, 12.121826661955257, 267.390525512617, 71.52820360141546, 36.39038050313904, 17.969469477542265, 24.905571762106522, 27.59980240618708, 12.205260181742187, 50.797171252296764, 25.764894035024955, 51.464355006229425, 92.32065959148994, 7.669582434874342, 7.083390797012946, 22.80343502409219, 45.204608800127566, 21.05761217234365, 6.129997516335255, 44.56869232863354, 13.989283346313083, 15.020928052646115, 77.75160595002897, 177.7479886070439, 12.374853481897592, 6.131489463171004, 6.070254667100876, 16.54367730044088, 8.209282928643756, 16.315356617158287, 44.29452041122333, 12.596865239765815, 8.84515949384955, 16.42246829319255, 73.18300258781653, 63.92921533786044, 43.57388256104483, 76.07416036725091, 25.251526209690397, 58.218576982030925, 27.89741727576621, 58.1152606036319, 17.449575154829084, 43.18517700352844, 6.042787664149025, 8.52702947736109, 74.89624428247498, 22.109288185151122, 59.628151850271706, 125.55186424458194, 14.948682126378793, 16.917062459541256, 43.47256739272111, 10.202383034938398, 49.935516406234555, 86.34057326218172, 8.058338588465332, 160.43355302757047, 64.5550636814147, 5.366764023068658, 18.688065886914643, ...])
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);
([3618065.1677224385, 3721187.885033656, 6447661.526824407, 6783410.168128089, 6798828.007643217, 6863768.75, 6870579.276001032, 6872280.78017595, 6872295.19003222, 6875487.3642181875, 6953279.6875, 7186029.927345432, 7597629.138935041, 7699467.0187845, 7703007.8125, 7705562.5, 7765332.8125, 7852514.0625, 7930444.4085278865, 7934789.91449729, 7937589.990914185, 7938073.4375, 7939153.125, 7941320.705828841, 7950270.209321454, 7955678.857769706, 7964028.125, 7970900.0, 7974213.589344902, 7975481.874514754, 7975549.846121616, 7975993.75, 7976496.173730879, 7976754.135925691, 7976912.5, 7977761.799452474, 7978881.685304711, 7979702.586738607, 7980156.25, 8009565.80332204, 8210588.686992075, 8309954.043910053, 8342887.328272313, 8357143.75, 8453530.893545147, 8483808.311772764, 8493277.370538127, 8500035.9375, 8500043.75, 8522790.602195896, 8531314.0625, 8532474.654542277, 8533672.480465151, 8533673.97458877, 8533989.0625, 8539776.439107874, 8539841.525386997, 8556760.164143598, 8567710.207382947, 8581538.367077684, 8588449.353736693, 8594856.458068203, 8602688.102409797, 8619559.213418268, 8619817.648628676, 8620643.205714062, 8620921.875, 8637550.702353587, 8638679.334816776, 8642532.113324523, 8644441.848060718, 8687123.697402678, 8726701.5625, 8731898.4375, 8734607.437088206, 8734614.054920372, 8734996.494512964, 8735331.566887222, 8735334.765972277, 8736150.458082393, 8739257.8125, 8742207.029198842, 8746629.6875, 8747285.9375, 8749428.125, 8749954.89158814, 8751648.4375, 8755862.65586263, 8758809.40191744, 8761913.585074103, 8762647.64298286, 8763290.589651087, 8779281.464498827, 8779709.290432896, 8789118.75, 8789491.21397127, 8789507.187043583, 8789626.5625, 8792776.433765152, 8792948.320945267, 8793002.378782967, 8794923.145194773, 8818798.519235954, 8836239.030482795, 8841389.91469775, 8849911.616280943, 8862604.486692153, 8863906.095021965, 8865472.49802994, 8866901.5625, 8867144.024433255, 8882494.962345736, 8887821.287449837, 8902046.875, 8909555.195373043, 8925585.857319625, 8933575.0, 8941494.416626876, 8945445.592950424, 8946935.515011331, 8957440.625, 8959183.350530704, 8961139.302483223, 8965705.064438472, 8966287.5, 8966814.727357823, 8973949.782724632, 8973952.92215718, 8982225.837541008, 8984880.8192577, 8984945.034537718, 8987749.639596937, 8988268.050892202, 8988615.407741072, 8990332.750185117, 8990984.911298942, 8993108.527823992, 8993211.292926153, 8994051.5625, 8994799.944550483, 8994966.457979204, 8995159.375, 8996107.7019937, 8996281.554461112, 8996824.794124482, 8996849.634858951, 8996985.654975284, 8996990.319358926, 8996996.875, 8997720.029038252, 8999932.8125, 9000010.854096299, 9000710.9375, 9000856.6940042, 9003110.289640164, 9004596.875, 9004799.442383463, 9005143.75, 9005260.53165198, 9006947.954191748, 9007301.5625, 9010342.1875, 9010440.625, 9010972.042219523, 9012918.75, 9013966.334783858, 9014182.8125, 9015354.869489277, 9019636.248711588, 9022094.713255836, 9022760.452631693, 9022938.107416946, 9024790.547610844, 9024793.695939282, 9025119.861327486, 9025557.151131036, 9025785.309417756, 9026142.1875, 9027324.2104236, 9028114.0625, 9028161.232170697, 9034385.872147126, 9040838.70663887, 9042213.884463001, 9042407.158148186, 9043709.665101383, 9044861.01801649, 9045056.896495912, 9047192.981495773, 9047703.015209537, 9050471.195626166, 9052870.05838765, 9065477.95172823, 9071662.196794257, 9072191.168583754, 9073917.051335998, 9073984.264008863, 9074163.836670376, 9074206.216542864, 9074608.510477072, 9075500.0, 9075838.714005705, 9075855.084067697, 9076017.1875, 9076769.665717678, 9078367.277449235, 9078796.699699806, 9078984.464834692, 9079137.5, 9079715.140872803, 9080070.649574673, 9080198.4375, 9080447.809477352, 9080727.292288154, 9080936.762924412, 9081116.792949775, 9081245.504974883, 9081439.496636234, 9081584.375, 9082061.198514627, 9083125.262974067, 9083946.875, 9084892.880330648, 9085131.25, 9085232.692712143, 9085750.90745798, 9085823.995767403, 9085832.8125, 9086293.227097005, 9086298.607924918, 9086341.719717603, 9086735.395436693, 9087015.625, 9087316.894158082, 9087593.482574064, 9087601.318853231, 9087712.991333837, 9087912.5, 9088600.090954801, 9088696.875, 9088906.692885486, 9089120.3125, 9089343.327476526, 9089554.6875, 9090355.647285882, 9090437.12448673, 9090438.832900293, 9091259.018184671, 9092042.1875, 9092865.832388325, 9093448.899660727, 9096942.525271067, 9097045.954807004, 9100027.97853199, 9101347.696489876, 9102215.625, 9102249.272280816, 9102470.3125, 9103918.75, 9104638.132740676, 9104668.75, 9104750.715133566, 9104884.375, 9105183.040536575, 9105718.75, 9105809.375, 9105963.450024059, 9109043.75, 9111184.33027419, 9115377.957541497, 9117876.5625, 9120817.1875, 9121415.625, 9122486.545207262, 9124390.625, 9125277.7196192, 9125460.260812093, 9125689.0625, 9125849.928831857, 9125858.973676354, 9126415.625, 9126695.742527593, 9126804.6875, 9126876.5625, 9127378.125, 9127455.835410964, 9128514.0625, 9128677.446665958, 9128807.596898304, 9128854.6875, 9129282.907152249, 9129650.0, 9131398.4375, 9132222.024547413, 9134343.75, 9134987.17217507, 9136512.406867558, 9138571.456857502, 9138743.360848969, 9138958.907575676, 9139424.623122113, 9139566.159401856, 9139851.5625, 9139895.605484297, 9140079.154697997, 9140154.220497841, 9140246.267394496, 9140255.707925797, 9140410.288592508, 9140537.5, 9140614.84575273, 9140746.6773118, 9140855.267677981, 9141032.810340961, 9141096.875, 9141450.304753812, 9141543.161312608, 9141648.4375, 9141675.0, 9141936.737083932, 9142060.712137299, 9142104.758369697, 9142165.184228411, 9142220.231039736, 9142406.25, 9142517.57891987, 9142582.8125, 9142659.676910242, 9142696.12087369, 9142750.0, 9142827.146393804, 9142873.033463392, 9143034.375, 9143120.3125, 9143257.25730431, 9143509.947895616, 9143511.636455733, 9143925.0, 9144167.122078903, 9144317.1875, 9144496.875, 9144512.565140536, 9144871.464936981, 9145460.9375, 9145519.711938303, 9145774.69636559, 9146185.9375, 9146497.232013704, 9146818.75, 9147126.5625, 9147167.661034754, 9147739.58751501, 9147952.06617503, 9147996.663599752, 9148571.643823458, 9149929.475788957, 9150537.424501227, 9154087.769117953, 9154134.33034626, 9156507.320667513, 9156544.666015046, 9156574.903408915, 9158268.073489, 9158299.574158316, 9158843.250248933, 9159331.25, 9160457.756717324, 9160764.154914046, 9160931.25, 9161653.052690603, 9161869.169975046, 9161990.67899187, 9162008.969270892, 9162067.1875, 9162711.336665051, 9163055.085504573, 9163330.761909239, 9163332.39339927, 9163342.057460882, 9163847.172307285, 9163862.940103363, 9163898.4375, 9163986.263748972, 9164101.5625, 9164263.892848466, 9164837.5, 9164993.83546378, 9165003.125, 9165018.75, 9165281.377526848, 9165576.03088543, 9165784.13509415, 9166107.784899557, 9168072.875591435, 9169991.792608904, 9172421.875, 9173170.1477987, 9175470.3125, 9177862.5, 9178939.96153557, 9181569.03328218, 9189620.110456252, 9190275.0, 9192426.920952298, 9193024.460719127, 9195126.427217111, 9197064.695459526, 9197298.055635089, 9197336.617841704, 9198471.70861592, 9199179.14735977, 9199773.4375, 9199812.19805782, 9199835.9375, 9199848.205390042, 9200015.625, 9200802.799021833, 9201319.654653097, 9202831.25, 9206108.383688096, 9206297.613222482, 9206482.8125, 9206531.14796693, 9207460.11164327, 9208040.280700585, 9208111.182826973, 9209975.0, 9210029.061380673, 9214592.825095385, 9214746.875, 9215376.210510205, 9215782.569259753, 9216112.623776218, 9217862.835520219, 9218778.33909428, 9219282.76572939, 9220234.299703412, 9220611.730976693, 9221085.9375, 9221521.815374397, 9222013.115142915, 9222069.258739784, 9222486.03426638, 9222579.304702928, 9223431.34631731, 9224043.75, 9224157.648110498, 9224838.792681985, 9224931.732831571, 9225084.375, 9227919.748457823, 9228451.840872558, 9229464.060585938, 9233063.355737034, 9234902.943010861, 9236039.417193122, 9236912.776640171, 9236957.8125, 9237065.842048254, 9239955.661146395, 9239979.6875, 9240690.625, 9241803.566051912, 9244474.882138018, 9247047.665978078, 9248268.75, 9250115.138807617, 9250995.389214957, 9251320.846895, 9253824.82356494, 9256471.47029622, 9260177.788418164, 9260362.190840185, 9261506.25, 9262400.975706156, 9263121.651854454, 9265425.0, 9268198.256813496, 9268370.129168857, 9269377.199259218, 9271400.269118614, 9277675.346812494, 9288405.480461068, 9300530.879541881, 9305917.433665771, 9309347.415613111, 9310866.136831013, 9312257.31010588, 9312454.378771333, 9314243.75, 9324154.620533306, 9326851.252332702, 9327096.875, 9330210.233572843, 9330347.714889875, 9330931.089400241, 9339969.832046783, 9342356.966784105, 9344265.161638362, 9346793.679340784, 9347321.793180179, 9347525.657014668, 9349157.702253265, 9349508.790166812, 9351075.11672286, 9352290.879224967, 9353292.710853735, 9357972.253932536, 9359410.9375, 9360129.88045524, 9361345.3125, 9362532.656738305, 9365966.76065108, 9367357.927659646, 9367672.803633124, 9368457.8125, 9368761.97618072, 9368803.891703067, 9369569.83427046, 9369570.3125, 9369754.317802906, 9369978.125, 9370228.541400943, 9370446.529815298, 9370513.658861047, 9371140.258700296, 9371156.25, 9371321.875, 9371375.68244844, 9371444.199523048, 9371753.125, 9372316.43220346, 9373472.100173084, 9373633.96400288, 9373921.875, 9374864.886144722, 9374880.754986973, 9376218.378678203, 9386239.0625, 9386528.989235165, 9386660.9375, 9387251.154010437, 9387321.875, 9387331.25, 9387714.299983483, 9392861.993579717, 9394034.375, 9394981.25, 9402524.591817537, 9403446.165112408, 9404274.406202175, 9404371.875, 9405080.519160543, 9405557.204525054, 9406190.532316905, 9407680.089683577, 9407807.8125, 9410247.99632448, 9414142.543661803, 9417771.06379318, 9419105.045692092, 9421669.77255319, 9424478.125, 9424842.1875, 9432451.54379508, 9436681.009074552, 9438115.684437018, 9438682.8125, 9438795.336049013, 9440357.496950902, 9440446.875, 9441735.9375, 9442290.558992486, 9444666.979005985, 9447337.5, 9450137.726219619, 9453040.625, 9454996.001713274, 9455799.23979687, 9456146.740827693, 9456148.4375, 9456189.571952576, 9457073.288140154, 9457162.5, 9457829.028140437, 9457839.0625, 9457990.625, 9458149.951280246, 9458338.674686408, 9458534.313796556, 9458547.689546738, 9458753.97648689, 9458892.1875, 9459136.78194282, 9460058.511708418, 9460426.230569927, 9460884.908902809, 9461263.761792032, 9461446.834026244, 9461637.602931725, 9461849.563206485, 9461861.612223225, 9461865.770829724, 9463335.68638383, 9463569.702448292, 9464441.937467162, 9464500.0, 9464603.349993734, 9464655.542609785, 9464750.0, 9465020.730729887, 9465143.146685733, 9465404.78670168, 9465612.5, 9466532.792612415, 9466746.650296528, 9466961.514087055, 9467106.25, 9467166.638055656, 9467195.976241177, 9467202.423184555, 9467594.565234413, 9467948.778036699, 9469533.766258406, 9470012.25206276, 9470118.748792544, 9470351.5625, 9471935.9375, 9472220.3125, 9475074.653416192, 9476055.939408315, 9476567.626627319, 9476892.512453297, 9477745.507306367, 9480695.482789947, 9481673.336153556, 9481865.15999885, 9482104.565382333, 9482191.80836106, 9482515.625, 9483118.735708684, 9484016.765646929, 9484093.022587385, 9484189.398600217, 9484406.434286019, 9484593.75, 9484652.046535205, 9484668.080029227, 9486165.293192524, 9486554.708978934, 9486658.901789993, 9486659.375, 9486726.5625, 9487062.417907495, 9488022.835005986, 9488471.278312664, 9488653.430496905, 9488737.5, 9488809.375, 9488921.875, 9488993.67905707, 9489462.730984509, 9489520.931987686, 9490232.632607726, 9490907.8125, 9491518.932509765, 9493665.58092178, 9493833.212728277, 9493853.085162697, 9494500.702946711, 9494503.025589451, 9494519.615222398, 9495064.0625, 9495175.943469407, 9495258.760262644, 9495389.0625, 9495423.867847163, 9495459.678250398, 9495787.5, 9495900.06937453, 9496030.37279375, 9496375.257245615, 9497034.375, 9497506.25, 9498314.0625, 9498510.127298938, 9498761.947794052, 9499207.692896383, 9499224.159177614, 9499451.442516776, 9499657.773171404, 9499757.29312505, 9499760.20014539, 9501397.307753453, 9501520.496391943, 9502275.182407761, 9502319.10020342, 9502700.003503723, 9503185.543224595, 9503510.769929923, 9504926.72039801, 9506828.125, 9507818.427630119, 9509338.533503607, 9510247.082272632, 9510572.944056328, 9510718.092747549, 9511430.263511969, 9511820.051874159, 9512257.8125, 9512689.0625, 9512730.469137734, 9512755.08524298, 9512757.8125, 9513088.54158797, 9513554.922223018, 9513706.25, 9513710.9375, 9514187.560332172, 9514197.476648184, 9514396.62396266, 9514680.500621634, 9516743.617789872, 9516832.542592285, 9517151.20398946, 9517218.75, 9517572.74054153, 9517803.508368345, 9517827.955030747, 9518339.48263367, 9518393.719094662, 9518540.625, 9518542.825611321, 9518772.603188826, 9518821.045001913, 9518895.538779942, 9518937.327699747, 9518980.16416457, 9519127.930689685, 9519164.64463337, 9519243.75, 9519292.1875, 9519382.93105595, 9519504.317596951, 9519553.125, 9519625.0, 9519741.047769092, 9519946.257014293, 9519973.4375, 9520099.88083264, 9520269.51889099, 9520366.747934775, 9520380.310271708, 9520518.75, 9520549.21889167, 9520753.085581578, 9520762.5, 9520815.625, 9520850.45635434, 9520914.0625, 9520950.738888541, 9520986.006317772, 9521051.311985098, 9521186.85875803, 9521221.394289343, 9521460.9375, 9521580.428344399, 9521759.375, 9521959.375, 9522038.909401426, 9522130.600802671, 9522198.074958596, 9522208.797184106, 9522268.75, 9522589.0625, 9522789.0625, 9522803.793673232, 9522879.546475727, 9522899.59632099, 9522920.736175852, 9522940.425372703, 9523023.4375, 9523331.25, 9523454.6875, 9523464.381780835, 9523523.4375, 9523837.5, 9523849.965831826, 9523895.310316782, 9523958.319581164, 9524011.931428846, 9524089.72737702, 9524180.028251356, 9524359.375, 9524482.996768529, 9524556.25, 9524879.024799664, 9524914.877412355, 9525040.625, 9525147.945264122, 9525320.3125, 9525351.094614709, 9525376.5625, 9525760.9375, 9525812.220207544, 9526140.528322414, 9526235.444494912, 9526282.509987503, 9526646.825661706, 9526914.0625, 9527424.692504482, 9527904.515322905, 9528039.0625, 9528089.911935722, 9529200.6544723, 9529205.994910652, 9529468.629344491, 9529522.537917655, 9529543.75, 9529779.225207783, 9530004.444582619, 9530255.051026966, 9530477.063562032, 9531087.344576254, 9531135.152578557, 9531445.11796377, 9531657.376404082, 9532072.713565292, 9532099.535172088, 9532201.516783042, 9532630.491716133, 9532817.1875, 9532839.55727362, 9534147.446631989, 9534483.6905153, 9534597.56936586, 9535101.235317044, 9535421.219631914, 9535587.959526941, 9535654.573502224, 9535659.40430342, 9535964.0625, 9536135.9375, 9536192.1875, 9536450.078982722, 9536731.25, 9536796.875, 9536814.820252372, 9537270.094315967, 9537324.51265515, 9537510.9375, 9537586.616519662, 9538082.10315645, 9538442.1875, 9539359.668154292, 9539481.562204642, 9541110.089246051, 9541626.235971194, 9544441.455538185, 9544675.0, 9545504.28811309, 9545826.139372073, 9546623.28355405, 9547295.680016352, 9547390.625, 9547512.366716206, 9547522.940427303, 9547591.450024612, 9547732.244196614, 9547877.407719415, 9548206.921242028, 9548518.75, 9548531.500402594, 9548575.922876352, 9549627.22262156, 9549631.364059027, 9549849.853949599, 9549852.229790015, 9549948.590898132, 9550068.005437668, 9550097.916784946, 9551188.06779694, 9551729.251063067, 9552020.78394867, 9552498.4375, 9552503.46187209, 9552550.630010413, 9552742.1875, 9554167.389106976, 9554375.0, 9555071.541778369, 9555258.927094528, 9555443.75, 9555641.619947791, 9556065.625, 9556961.459882963, 9557824.633911496, 9557830.417485377, 9560587.5, 9561018.589814011, 9561204.230184166, 9562062.475328872, 9563804.052355051, 9567217.1875, 9573905.924410174, 9573990.736837659, 9575327.533721376, 9575593.831460278, 9577151.197400406, 9579080.505559236, 9579988.391825859, 9581101.242237313, 9581428.125, 9581913.401515547, 9582223.4375, 9584050.805735886, 9585115.660002079, 9585390.14352138, 9586420.587775243, 9586951.941535318, 9588751.285093198, 9590063.515585292, 9590500.918408308, 9591647.465057068, 9591955.479794085, 9592223.4375, 9592287.437756091, 9597939.0625, 9598304.513194254, 9599047.039402671, 9599452.847593203, 9600040.709707467, 9600244.077230424, 9600724.542516356, 9600909.151439186, 9600981.25, 9601031.25, 9601490.949094929, 9602638.166652776, 9602845.016614934, 9603091.179795593, 9603165.625, 9603514.0625, 9604597.785976313, 9605253.742976982, 9605707.597831655, 9605720.861699294, 9605749.032481752, 9607114.0625, 9607117.16428927, 9607518.75, 9608308.582742093, 9609936.117282363, 9610967.040703982, 9611412.122034542, 9612653.84607499, 9613249.455207415, 9613737.89349071, 9613821.875, 9614630.97552768, 9616160.35373143, 9616160.9375, 9617023.14528584, 9617572.54909598, 9617650.407163747, 9618192.01413724, 9618236.302678283, 9618259.225918062, 9618568.635689417, 9618988.458857289, 9619131.159235325, 9619319.675425999, 9620367.794870527, 9620671.422021726, 9620689.0625, 9621056.25, 9621157.410874281, 9621447.012322757, 9621557.365566451, 9621718.717494562, 9621718.75, 9621858.927611122, 9622014.0625, 9622477.677704971, 9623058.241108675, 9623651.319666343, 9624935.112119775, 9626303.110311402, 9626528.125, 9626870.314380571, 9627379.039094184, 9627533.895293297, 9628677.439623483, 9629765.625, 9629882.8125, 9629935.479430428, 9630050.0, 9630570.280210871, 9630816.33249885, 9630855.413849773, ...], [21.930135457215112, 8.501255082321986, 8.624914494300691, 65.6248628151741, 10.949094975470299, 45.67691563305095, 22.42383888672503, 21.79949728401249, 26.318388283089888, 22.199233180329358, 40.19670706273715, 15.319531932091245, 78.35900800815871, 7.5433350849081595, 59.855172352815096, 57.464873604307925, 57.46659839338973, 65.9537860224543, 15.636103291250915, 6.381197562514361, 20.25226138313861, 32.91435192179068, 83.51176803565924, 22.55742122922282, 57.66559568479029, 6.919181447073649, 58.57965919632691, 38.01041416629655, 43.447475107700214, 68.55218632789095, 25.815775749936375, 55.683730733660624, 75.69755190351027, 35.76587086020305, 62.48876235096503, 19.701448250598713, 8.531018451885227, 46.365918870668814, 55.827894473730986, 111.50960698079739, 50.44864635420036, 26.888480611081956, 29.043667565006626, 136.65251570125804, 53.41586145719768, 37.85812790773974, 19.281866599139068, 75.04326406801515, 62.49778102091227, 28.081352613015007, 58.78388742661106, 13.770213403727096, 5.993926407287379, 25.55511384707784, 67.20651682975016, 26.303261794682577, 5.186875206736932, 19.14019352086591, 30.159570602345156, 19.74256405645371, 5.885033951680115, 121.09518622128564, 17.87211547073372, 144.58031339344666, 5.258237266511103, 8.910004903386595, 66.17983584450229, 32.77913555061026, 29.328876081025562, 19.71243366021619, 9.05998391241085, 18.78481153998544, 76.82004732247616, 66.03231699007198, 9.032938627531092, 67.44462849319584, 79.48876215731927, 34.98590737871291, 16.675346589336385, 17.031613134830586, 71.45180909739462, 55.782162487203145, 50.94177857440623, 38.23642291857401, 51.65105024944191, 25.681542365801967, 45.13456748150853, 27.687271421841366, 84.04721786878515, 6.039819494449734, 6.171777697861719, 27.84404436396776, 15.827371219340085, 81.99736304225345, 44.993959797264424, 56.70817514142147, 5.086341817244414, 35.915337736233184, 26.216236994486138, 6.740458287760265, 24.39327764139471, 29.167638340875364, 9.401485207867468, 38.17844254738858, 40.793998199917645, 67.01117229267452, 30.646347549525775, 14.38197187223354, 18.00137140271951, 35.12045104537863, 5.473670110684331, 13.7560694629388, 5.228993244732717, 47.554448520619346, 6.569765139396346, 16.259416956355892, 65.41381873028806, 5.566333050937957, 7.19717804810454, 7.01465109047637, 76.17042446259637, 12.087540529663295, 15.942554250745484, 9.67184912100233, 118.83148685997104, 18.27129899301645, 7.065484327004394, 6.723675150657134, 12.7494532939928, 16.79395689717824, 7.050251794763143, 68.20634312433899, 16.30730980532049, 15.325529683478297, 128.57975340485325, 7.269944866808819, 7.884209901641719, 9.651175621887296, 35.712497921991606, 7.583304905620795, 19.47308254666783, 129.39429639422193, 14.536400648290599, 9.60283139711916, 10.820468166086965, 14.451576271514254, 13.963922363379716, 13.891852352289389, 48.03446882233558, 56.82511973865507, 40.338404157973905, 6.079468698292694, 37.445391888274415, 63.087637522650425, 48.123606739576104, 29.10793007828362, 6.40309386135836, 80.22411794280981, 13.59152104283756, 50.12082744870465, 30.704972277573848, 74.78003482328036, 56.87857366304246, 11.808947364160806, 54.003868816172655, 18.573355257676564, 59.39360216423518, 44.53073121900181, 5.137209537273245, 5.376049182753419, 54.15582782585623, 9.90387164154223, 27.08223799370349, 21.221171859496316, 59.63943887836804, 10.23051355389707, 13.321152329664718, 52.78119148125153, 12.59725910849533, 31.202949449087463, 16.19769352231073, 35.7462942541971, 9.047598902351778, 37.98642705420106, 7.9684157020560615, 16.900795220954116, 13.672244227033188, 57.18888747832798, 24.588603078352094, 63.66830834423358, 10.209391390746896, 14.05400698576128, 61.22011494979057, 21.608846074757842, 38.4867430643716, 26.13601095038818, 36.610832587071705, 91.33760396502666, 9.303272598018149, 10.000656772213258, 58.11320895980333, 28.860614009499002, 11.809826305623313, 48.22219099528135, 20.144006073217685, 15.295807590639171, 17.188331300727853, 11.271088766434804, 49.82131275395601, 43.888125007798244, 11.69888830223448, 83.53952996052647, 8.851404029686464, 8.71428770177194, 85.53737399958943, 48.57038276086692, 14.985924796990775, 56.366564606869865, 43.913403050804924, 58.743836277091646, 52.2278082118114, 49.56924013528953, 51.53648879687468, 64.5936694972926, 67.56815875828248, 12.92057473354375, 17.603469106380924, 82.6941966759357, 21.267633101685803, 5.101825320503785, 7.442379536134488, 13.212302154166625, 34.825318367086865, 13.930062652115092, 14.011585776856107, 94.5890872367998, 11.993612778976377, 63.371412092134676, 102.446776899035, 94.93349527728648, 89.85658602383022, 52.98778074940561, 25.90580295676415, 41.94377679003369, 6.971544276274729, 13.680426004116153, 21.159459478770344, 68.49393735920506, 107.45297636615632, 25.632854025636988, 17.30548695688694, 9.63432826795992, 12.30583800249881, 79.70498967572075, 10.138215917897547, 38.54107775163429, 26.344043878785243, 62.11491782563391, 29.130383723852145, 18.063101345247002, 85.78793002892951, 28.533153362551936, 47.51808352446939, 17.28909597713087, 155.00482621796164, 108.20174926436627, 20.439965186601423, 128.08236965559368, 69.77410435491063, 25.60552228547835, 33.968950817594866, 29.97660788285437, 35.43782914920879, 23.430737278677686, 41.25596207608527, 70.83128200441371, 19.894747246463822, 67.26096775147006, 33.86763527250191, 10.55345415036374, 63.23923040216336, 16.766657136549878, 61.853642753204774, 60.330189521583435, 136.6043990423886, 80.41506387787504, 58.43553339609146, 21.051249433835107, 18.078110208659968, 63.064833919110455, 26.3534427208845, 61.19911195921506, 49.6399128994353, 17.765809534670865, 56.764368155994255, 49.332449691315404, 101.65309596957705, 22.176701223220473, 22.67505677647575, 8.053951961385243, 49.063835474054784, 17.70827159037855, 79.53535010744824, 16.189658274256264, 13.237097961764379, 18.260989650626776, 20.482882905278984, 54.11758719743196, 20.12602976800312, 54.577634093115314, 45.55465312099864, 25.151956987033962, 17.735468615112246, 150.63772835589793, 61.26896066625886, 112.76490146299227, 6.028948097948077, 83.84538189917629, 62.42294070980316, 25.639969848747114, 5.452176150271598, 111.8871975243119, 31.42361417354154, 27.01107993025095, 49.73252387913847, 22.249236567593154, 67.88867170051007, 70.73886626055555, 19.284407193670003, 44.744344971826024, 9.879270300325347, 22.506955914206326, 40.04902423748969, 51.17679882765761, 108.39463204988026, 48.63906380949986, 10.001721087324336, 62.81079684025487, 38.731445962213634, 47.88150277594181, 49.01399655904736, 7.138681054010137, 13.579301430213537, 33.780461917663125, 124.56125122060875, 32.50188357741554, 67.67669253264785, 27.498500419316727, 56.247618936158595, 36.351464923415165, 11.958407519455507, 17.40803661493584, 100.38636786426736, 14.192647849454026, 26.83099404156863, 24.948062454561434, 9.268370287759081, 6.530121878529813, 11.058620162739144, 7.434536413112425, 10.248089575951594, 6.744374909927425, 31.435460103950614, 7.013836236179436, 21.495583839358652, 61.98278015866405, 78.91573799941442, 23.88263988160338, 34.81234705141657, 14.672881068576155, 11.854396447525268, 11.213161473683334, 10.547688766229989, 84.70529221254544, 5.0762275784329525, 9.692250259765407, 10.441838001228716, 7.0154749362334945, 26.195097015060917, 8.450315287614341, 8.533881787401572, 69.330994475541, 16.350193459234823, 73.2568415192941, 14.332038805135053, 39.937342346308895, 53.55383614461888, 94.62360260188112, 33.65789343156408, 65.51714818413214, 61.19330865214745, 30.02675266436311, 27.99005742415107, 18.80391390020237, 19.86889041067245, 54.60685922948512, 25.993367586937175, 38.852771732617526, 51.90705158219712, 11.133446573192806, 18.602139421320437, 16.522113935337046, 86.5113162456446, 9.654074081863188, 70.83428757654059, 10.922636065134798, 6.350623502027109, 107.68915105021101, 8.682404532562524, 14.34311475104625, 13.21743954144817, 115.03836474858446, 5.1583886962330014, 34.50396324714978, 63.415799806908865, 56.27918395612687, 94.81039593570785, 5.150318771523393, 34.345977666449095, 17.680992894547003, 12.517777829949909, 89.73886866581715, 21.58736513502733, 6.609118348047697, 13.773708257842127, 11.534115901811354, 28.544992959180608, 6.025321739927437, 28.494880237198778, 47.3618841798154, 31.314927654830743, 24.503895330078745, 15.435250842153323, 16.395714265241434, 15.825561192500517, 116.00022393357116, 37.27958363987826, 7.917863954673478, 46.21201909110808, 75.78470466285862, 12.24779555670909, 5.984968923246031, 45.25298552533206, 47.8793053667698, 19.639159192898624, 33.57495547206327, 6.461626848307763, 207.44820130080421, 5.982586046270673, 95.78462075538555, 103.61897406318548, 7.707121936686138, 44.12052629716121, 5.269743907140502, 67.72654202921679, 5.840699086265075, 5.299709653973466, 30.69553853924155, 64.77284106947438, 64.12138417803212, 48.303924074920786, 84.55821929331952, 11.894986408506151, 8.225218084644776, 10.103616517187879, 47.96887268855044, 21.631953322925927, 11.716294568278897, 17.462579683024575, 6.728786555054671, 20.51768363119505, 48.28648897250647, 8.129585935186384, 51.00640565391744, 59.4081368382896, 20.53069694859294, 30.546427730106185, 17.598968670036214, 19.782036212063392, 18.088810180304883, 9.569819527544235, 7.733682477036947, 24.837504123836236, 69.22753490481557, 7.187700400261186, 61.696464428722564, 12.034559727912981, 23.408691310727036, 7.0425941446414235, 51.68280937138006, 11.024622371842934, 38.30176270319949, 100.57068046378704, 19.674455790951757, 60.92530980665917, 9.19920109836709, 21.690331393632313, 12.46943404492632, 51.09513885986888, 14.678859636082953, 72.95948919355175, 6.902168055258353, 26.52035632016757, 13.099561407919213, 33.136856803516125, 16.007934795310085, 58.77781338052992, 74.00497306948562, 61.460714905931916, 9.500066851896651, 111.71200115636412, 84.20791471750208, 8.994800208051684, 5.949497457999203, 51.63068744778606, 58.345065570504396, 43.062335684032576, 73.33018844838499, 107.67998549277503, 36.101190416546885, 34.54007655818531, 55.074005503997846, 16.807961228974115, 107.82753048720396, 22.511406503345864, 9.039760056004214, 51.18044565047924, 40.80564883561339, 32.304012696747904, 37.13380133612567, 37.70050665303896, 10.121964041286247, 69.27308021705416, 15.734744515418374, 54.39996410475938, 12.716251738932899, 39.800403764694394, 13.692844845613683, 82.46142562727329, 75.496588416966, 51.260719498525546, 73.51252743695255, 78.39658883276925, 43.19508853764696, 6.113148560276172, 106.3815965574063, 55.85868636231157, 80.45222379073068, 18.06618689079632, 5.879879867725442, 13.076292861497965, 39.74085964435636, 10.149841569175782, 7.397211283092397, 151.53934476124093, 11.820471301504492, 60.17351390347561, 13.490092354724565, 9.651879940604559, 28.08488039191167, 16.50849747427979, 21.10365496985932, 42.6915577937862, 150.18577199939799, 14.870691118729601, 14.096392844415027, 7.624877436903846, 29.662331957627668, 15.032033389842393, 100.11903162318555, 58.90825884080269, 64.05967483406428, 27.283566043849103, 12.714273916718241, 74.07800988556465, 15.880060993423001, 47.42882020684239, 42.1030602082259, 10.116403409752657, 54.84594838836661, 71.58325380521367, 5.216598473364044, 25.88665849566214, 65.79923181901493, 62.814562037338355, 84.90163080823227, 62.07372665178925, 7.108703338062741, 22.690312703705594, 8.254474948678569, 16.970887817578724, 10.172638669297887, 30.64293394839796, 43.92593231413704, 6.163959599244024, 68.14783720354285, 95.26591784410655, 16.107050704079114, 19.556143907496658, 11.292499707574123, 22.147674579117886, 164.46568759619325, 8.365230005925932, 7.05696919601507, 86.8157631249866, 6.714595377027766, 31.039281062851494, 8.409252770902905, 69.1086266718898, 32.12899396021374, 14.940610049810566, 20.520886783641586, 15.333599149134182, 55.11956696032851, 61.56069195517048, 104.50680916661426, 17.713655537440772, 54.01906970226316, 7.415908379786924, 12.352241779584357, 8.800993015072182, 10.131088634607085, 30.5855188725343, 26.825226163325354, 88.19434776811113, 47.827099634173564, 60.75581486287293, 51.359705314490434, 40.569272055478145, 39.13997866221542, 23.616383864636486, 15.85793125451296, 16.343859190386453, 103.00077745549365, 15.632889457102317, 74.23320028278454, 20.97020733581227, 26.324123148201032, 22.78988250100946, 32.02746880426768, 34.55428161670146, 73.40722896244685, 102.86513853576113, 118.4708090491946, 7.671279025963792, 70.22398416006193, 34.79849230492779, 7.961446456378681, 55.16421196329817, 20.82719048730854, 29.276620435725714, 70.76664477931925, 36.97590469392064, 16.95105296987629, 32.266246878491735, 10.872462557395483, 16.249538137503126, 41.293006688519206, 108.95419725558098, 46.48003566023927, 43.76139387848191, 5.72161788323948, 98.62545610135791, 53.86862728159323, 106.34492306120482, 5.955458743551771, 50.494098106596034, 33.78795337070789, 21.58637843876359, 10.006065508588268, 26.702567662181103, 57.82515906171359, 82.35929014746652, 6.1920329829181915, 13.022420813759132, 66.30765597894096, 15.022227424915599, 19.261119441122194, 37.569098454382164, 5.131987626399192, 68.47614475570194, 46.83092972179375, 59.955703977883786, 98.11665505107048, 45.72104406938793, 62.45165004868579, 58.1293225486921, 5.699188162173058, 6.362896250403033, 6.0757102621505, 49.44206148472566, 85.91580001596671, 6.178326868550872, 25.01395227267487, 51.589721260450254, 6.290522665485145, 11.723085632553168, 11.133187766332005, 22.61683794918844, 25.603811884223784, 9.468581484852411, 92.86599704089909, 51.69066647194587, 21.208641588362706, 15.795125514027394, 5.778350056919627, 12.915058220530641, 19.504364110744525, 10.743385228200202, 108.11388771033828, 85.04121771986034, 19.08465642857102, 57.63363808006474, 106.29298287800351, 85.57615959984186, 11.515546180137541, 46.69631577804004, 65.42316950300153, 17.36134190054914, 66.17898158227749, 61.49484646042553, 26.234326184970268, 64.27758817189375, 31.34942861590233, 8.105673298047371, 78.68269756063322, 53.81822642031648, 79.63378069257021, 151.52095469910563, 121.68454984221647, 27.927558354502317, 34.8111901226769, 78.34151813153977, 20.03848416560362, 97.00135625128465, 6.11195073992847, 10.868663049182993, 218.0269733576857, 46.349437960039374, 9.877437916986535, 65.60775555436065, 33.54684703094742, 5.714344997281866, 22.89708866125087, 39.201832669456685, 43.55792044527671, 8.523556899448824, 5.187958313768364, 44.20266385342915, 36.63065889131178, 16.52943272473016, 58.219687466757165, 6.155348254200232, 84.0588418280448, 19.08284281515214, 14.793363663497294, 30.7364941507955, 47.4609059023474, 34.04694373218817, 29.0662741475027, 24.02776118615249, 25.472281874590358, 88.75627689513638, 20.19106361090776, 50.41195652372761, 63.00262346962895, 113.41491183147316, 47.616633684343135, 45.97266583404176, 37.13591781382885, 7.970721539515915, 87.22201395371624, 21.140166329290555, 48.55027767889493, 46.0368527712529, 48.416044817697895, 5.491217823071816, 9.21493947984326, 76.68703472448549, 21.390053918495152, 16.464127705460207, 38.57308164142837, 51.65990497421707, 56.83591983539263, 27.547791696968826, 28.56885903783508, 66.10315513936536, 27.866177821151737, 28.482021222127596, 12.025032078171535, 43.17127306251895, 5.566243346214241, 6.541867426315019, 77.69386802576558, 11.193574729981933, 68.35009999518743, 16.027799693256522, 40.525437385107395, 66.33109868081871, 8.94720361186385, 40.96750385139475, 8.96481484247081, 100.99182856299151, 69.51566783356407, 24.01234316653369, 10.979882740676542, 62.254651151521294, 30.517948294815724, 8.260657610847018, 66.30904592846598, 13.886117464574424, 16.526407709865673, 75.03354416941144, 30.59926229873306, 19.23552059031432, 154.84613270168094, 122.7028762417461, 5.0528951517706036, 91.54894220319093, 31.627413459210594, 22.629989335138887, 11.747805150585068, 54.16815411186177, 14.380447797104658, 7.910966282096361, 25.198343675462795, 30.033399810049698, 19.51658204279478, 31.281461638460527, 23.21577847745474, 19.25299054974571, 107.1188434740047, 9.788004953852234, 53.46940444193845, 7.954994213238359, 12.2696338075963, 99.47315960454782, 23.30547452246969, 24.699948665398516, 7.091804108709126, 70.92256001685078, 48.37682198125173, 51.01532855900465, 110.9612983090219, 7.632056387557186, 51.645528316939036, 85.17679365919712, 12.56232093809105, 33.435803697287554, 10.442780449451444, 75.20660792898136, 9.980118780630118, 19.631393366805554, 52.663177451576416, 11.619079305909256, 37.037826665391755, 18.604072869423447, 13.827652287176056, 19.45415223195281, 36.0694516057502, 6.686308147019315, 22.295818619353483, 21.725619840819896, 178.94748263066626, 42.08189810508543, 8.217330193431481, 10.43051223278802, 12.719536907027154, 20.837763608052928, 19.56872585342315, 23.45336421522953, 98.12867895586724, 96.34519734065869, 7.387195639913512, 9.959792747074111, 28.909930780905825, 25.93887159245192, 22.39791249067654, 13.385957718583679, 7.928528902067177, 59.711383461340844, 17.66055850287539, 10.50779687541522, 9.76461266278808, 62.73041730872452, 21.583316047275634, 7.297532651696559, 136.769746568063, 25.34836892461214, 56.55740888744579, 5.517123882646, 22.029003240972195, 41.44070729895137, 10.343078667204724, 60.85669011111624, 17.392813045791335, 13.270160953286322, 29.83240928209488, 62.16419898653008, 60.49249828904734, 10.480964897082929, 11.089361974591968, 65.85113412317311, 29.749768588584022, 23.4292794578968, 104.15044135289705, 10.314206535167353, 15.261362244353338, 13.71134149334673, 12.702980396238438, 29.932607321907604, 70.42866533675505, 39.4284053735838, 10.230966296028388, 36.55709071710086, 14.97311130037561, 5.61598347840729, 39.96496109847755, 15.42859150234747, 9.673872811460113, 34.28047200543943, 8.908142111477476, 5.37440893019959, 6.8873159575271625, 10.105100309966435, 69.2617751473643, 33.630402826016834, 61.23958597057852, 25.50106346465477, 15.607486004421618, 24.043693290110955, 22.897475635802156, 11.680848311048372, 21.92797386555152, 50.720221793679045, 46.20210725843441, 100.47421764075891, 24.731386523828522, 44.949835183129835, 13.648767973214905, 12.121826661955257, 267.390525512617, 71.52820360141546, 36.39038050313904, 17.969469477542265, 24.905571762106522, 27.59980240618708, 12.205260181742187, 50.797171252296764, 25.764894035024955, 51.464355006229425, 92.32065959148994, 7.669582434874342, 7.083390797012946, 22.80343502409219, 45.204608800127566, 21.05761217234365, 6.129997516335255, 44.56869232863354, 13.989283346313083, 15.020928052646115, 77.75160595002897, 177.7479886070439, 12.374853481897592, 6.131489463171004, 6.070254667100876, 16.54367730044088, 8.209282928643756, 16.315356617158287, 44.29452041122333, 12.596865239765815, 8.84515949384955, 16.42246829319255, 73.18300258781653, 63.92921533786044, 43.57388256104483, 76.07416036725091, 25.251526209690397, 58.218576982030925, 27.89741727576621, 58.1152606036319, 17.449575154829084, 43.18517700352844, 6.042787664149025, 8.52702947736109, 74.89624428247498, 22.109288185151122, 59.628151850271706, 125.55186424458194, 14.948682126378793, 16.917062459541256, 43.47256739272111, 10.202383034938398, 49.935516406234555, 86.34057326218172, 8.058338588465332, 160.43355302757047, 64.5550636814147, 5.366764023068658, 18.688065886914643, ...])
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)