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 = 46542
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);
([4534748.468832108, 4536542.244256884, 4673807.393945612, 4722297.751087505, 4722301.51323838, 4828969.061096607, 4890571.104891868, 4907360.130911923, 4907369.03397611, 4908468.2130036205, 5020482.1374936355, 5048075.0, 5070544.120661866, 5076494.694090907, 5078551.320252452, 5146650.017241579, 5163812.046656254, 5164464.0625, 5272050.00012191, 5303071.642938754, 5388944.049541532, 5412577.959957583, 5432079.6875, 5450479.6875, 5633052.256803651, 5731552.86901449, 5832759.375, 5961801.328958111, 5962128.125, 6017446.646911293, 6621446.03452935, 6622753.949356299, 6622876.633458332, 6623563.444911711, 6623567.74202413, 6623753.379889096, 6625060.9375, 6625338.705455866, 6632311.663079168, 6653167.451783611, 6653224.776476224, 6653352.241953203, 6655139.021076638, 6655475.0, 6656327.698840982, 6656390.325461083, 6656557.528670111, 6656770.659447482, 6657766.629528384, 6661540.408931836, 6661673.184339035, 6663521.0764880385, 6665443.75, 6665819.613392266, 6666189.377116446, 6666200.119148949, 6666607.061061192, 6667164.451064153, 6667695.093447141, 6668697.9308223445, 6672727.616326297, 6674155.295167601, 6674642.1875, 6678924.773829214, 6686250.497132023, 6689892.752300366, 6690525.673847267, 6690817.1875, 6691405.18195345, 6692860.714529506, 6697971.244415634, 6708892.1875, 6710587.5, 6711119.686191754, 6714157.8125, 6716737.5, 6717263.67616771, 6718124.033811789, 6719132.913191009, 6719217.1875, 6724855.831745493, 6740563.642802529, 6741395.638109279, 6741795.269667069, 6742251.159265791, 6742589.0625, 6745325.0, 6746166.873042017, 6747454.9577811025, 6753131.708613718, 6755337.1205988275, 6758116.91655439, 6779673.4375, 6867906.6398606, 6880103.31710484, 6880608.034018437, 6880626.737311626, 6880864.667877731, 6881084.375, 6881515.587704782, 6881623.4375, 6881700.468260851, 6881704.661876872, 6881725.069021104, 6881800.436533212, 6881807.239409923, 6882079.2334668515, 6882084.759572914, 6882223.4375, 6882610.9375, 6882885.9375, 6882963.776333417, 6883119.059867517, 6883127.692226054, 6883211.69962997, 6883317.1875, 6883356.557966844, 6883499.212538829, 6884563.595741113, 6885442.1875, 6886269.747805531, 6886324.418361168, 6886400.0, 6886536.636758326, 6886842.231786456, 6887004.6875, 6887069.709404134, 6887081.195208273, 6887116.976596633, 6887163.674845976, 6887190.572448056, 6887397.771187064, 6887570.34409594, 6887652.515698526, 6887662.301097196, 6887827.869198746, 6889442.238708489, 6889701.9512859285, 6892390.625, 6893788.515292013, 6894164.286131391, 6894410.775485408, 6894798.4375, 6895980.244102557, 6896253.125, 6896293.502998382, 6896624.657787627, 6897025.0, 6900876.68636628, 6914337.5, 6915234.35957084, 6919206.719775956, 6919219.047875645, 6921313.853682667, 6922390.625, 6922399.089369432, 6925188.875623018, 6926004.009264233, 6926359.6954758745, 6926593.099004644, 6927949.600241295, 6928090.554638984, 6928545.3125, 6929883.897617644, 6931388.89716817, 6940931.49875231, 6957449.555138009, 6959120.934985139, 6959694.260591214, 6959904.5447677355, 6960150.0, 6961369.21756368, 6962110.872105774, 6962365.812432728, 6966532.768303214, 6966679.915285501, 6969622.73102609, 6971602.890666358, 6971667.966060857, 6971820.356749812, 6979874.403725695, 6981500.631693884, 7054830.076604555, 7071994.588050147, 7076435.9375, 7101628.125, 7101835.9253181955, 7101854.006973656, 7102504.963599038, 7103094.361580047, 7232841.262180262, 7232990.040381241, 7299343.4501356715, 7312595.886590059, 7312613.113850836, 7312658.630109662, 7312853.849249079, 7313034.039457915, 7313082.8125, 7313309.375, 7313500.0, 7313535.753387395, 7313550.0, 7313707.4441599585, 7313723.052875678, 7313784.375, 7313966.085119665, 7313984.8671374675, 7314090.57342744, 7314166.440779055, 7314197.544496528, 7314226.060730924, 7314231.7089431435, 7314274.056576132, 7314339.445432501, 7314340.625, 7314340.859323581, 7314359.375, 7314421.875, 7314490.533647788, 7314526.9215493435, 7314972.641030248, 7314997.398070071, 7315357.22521835, 7315895.182587021, 7315974.5958132995, 7335739.890765433, 7353759.914303941, 7358184.375, 7360282.8125, 7367139.167124862, 7368996.875, 7369350.0, 7370424.313223092, 7373333.755219946, 7394872.58311634, 7410650.409779564, 7412682.998962494, 7417969.964570638, 7419264.016843766, 7419275.923558881, 7422275.483148528, 7422411.4326293, 7422632.8125, 7422707.211512396, 7422916.9499308625, 7423000.669506256, 7423203.668763751, 7423460.807749341, 7423848.299602056, 7423917.283224747, 7424015.598226393, 7424038.778392501, 7424041.314582093, 7424045.028087823, 7424151.198316187, 7424220.3125, 7424239.541792696, 7424304.6875, 7424350.414560431, 7424420.126602874, 7424480.932951747, 7424545.3125, 7424575.0, 7424657.581531474, 7424807.8125, 7424807.915494345, 7424815.108892112, 7424826.927958955, 7424881.2230371125, 7424966.612091829, 7425058.229680798, 7425075.669208624, 7425077.99728301, 7425135.810878433, 7425146.632690869, 7425161.75749352, 7425193.458971015, 7425194.443321448, 7425204.6875, 7425228.125, 7425236.275354877, 7425237.5, 7425353.5107638575, 7425368.75, 7425371.67875699, 7425390.625, 7425426.285470111, 7425428.125, 7425438.782391102, 7425447.517610779, 7425460.9375, 7425489.0625, 7425491.733487898, 7425495.3125, 7425509.375, 7425522.061336352, 7425554.6875, 7425569.336314104, 7425587.738231614, 7425642.058270601, 7425646.875, 7425647.598411357, 7425672.562639095, 7425680.788451987, 7425689.0625, 7425696.303963021, 7425702.465438232, 7425715.625, 7425718.75, 7425723.055192237, 7425731.7516128225, 7425739.999336416, 7425779.6875, 7425792.193836947, 7425805.439149509, 7425830.912077222, 7425854.625788177, 7425859.163740487, 7425863.467999106, 7425871.361911406, 7425873.916874914, 7425877.775082957, 7425904.6875, 7425916.222873089, 7425917.597093619, 7425922.270357358, 7425930.727451131, 7425967.678209865, 7426084.201715222, 7426084.375, 7426090.625, 7426107.8125, 7426124.710449734, 7426132.842485274, 7426185.730263451, 7426239.996998973, 7426263.318817302, 7426268.635468986, 7426274.567907971, 7426276.741700675, 7426292.285601726, 7426300.154333585, 7426348.942971935, 7426357.495195679, 7426379.175855228, 7426540.390516718, 7426588.338482724, 7426617.806332377, 7426722.9901572205, 7426773.4375, 7426848.4375, 7426937.291081729, 7427058.566841323, 7427077.47069994, 7427081.25, 7427091.07426043, 7427154.6875, 7427189.0625, 7427198.4375, 7427201.794328027, 7427207.9456276605, 7427243.071470397, 7427251.578436408, 7427282.8125, 7427285.9375, 7427325.373584529, 7427355.488307675, 7427394.565538298, 7427417.1875, 7427421.54839508, 7427437.5, 7427441.607126658, 7427446.806471193, 7427489.751742947, 7427541.211790731, 7427560.9375, 7427593.75, 7427631.3958588075, 7427650.914462158, 7427688.27891118, 7427713.2623766465, 7427717.9128962215, 7427768.375589128, 7427785.237356452, 7427831.612174491, 7427854.6875, 7427856.081407752, 7427867.313502445, 7427871.872924253, 7427897.799960783, 7427900.371232231, 7427905.18362801, 7427914.0625, 7427937.279826999, 7427963.769958132, 7428028.817893762, 7428028.972774091, 7428056.391440959, 7428075.310503746, 7428085.321828184, 7428102.139972846, 7428107.039149425, 7428110.9375, 7428144.751902853, 7428157.6121634245, 7428159.375, 7428185.9375, 7428211.245774477, 7428247.421585663, 7428310.474936417, 7428351.458948284, 7428399.823908752, 7428406.126446771, 7428424.755478011, 7428436.03656932, 7428491.833217853, 7428492.917775389, 7428510.754810017, 7428542.934106453, 7428567.357867922, 7428606.423098807, 7428614.0625, 7428659.375, 7428663.403735624, 7428704.6875, 7428768.75, 7428795.3125, 7428814.413310054, 7428826.5625, 7428829.246266023, 7428835.726290846, 7428842.020631192, 7428870.128308535, 7428887.490269095, 7428887.682980884, 7428974.080255269, 7429003.125, 7429070.254923743, 7429082.32299908, 7429104.124010198, 7429115.307643889, 7429167.1875, 7429301.357743837, 7429357.450937104, 7429366.492230619, 7429406.869213334, 7429607.719007483, 7429819.854585844, 7429963.511822305, 7430068.996543576, 7430077.525535638, 7430209.375, 7430258.42189765, 7430467.937584936, 7430491.875240641, 7430498.4375, 7430515.3725777, 7430576.5625, 7430621.534720066, 7430621.875, 7430648.323522008, 7430655.586904047, 7430664.340936738, 7430730.82059407, 7430801.111785346, 7430812.975002298, 7430825.729187883, 7430867.1875, 7430886.260629159, 7430915.839998291, 7430933.177422103, 7430937.452200282, 7430957.230693513, 7430975.114779934, 7430982.8125, 7430988.585131216, 7431069.932167091, 7431071.881599337, 7431096.700116613, 7431144.704341216, 7431163.691764485, 7431171.875, 7431190.625, 7431214.0625, 7431251.5625, 7431306.000468699, 7431307.956432617, 7431316.523297659, 7431346.875, 7431358.899401596, 7431368.75, 7431378.125, 7431397.841340075, 7431415.625, 7431423.4375, 7431442.657956395, 7431446.875, 7431459.544896479, 7431460.9375, 7431471.209495035, 7431514.1088452265, 7431518.75, 7431532.8125, 7431580.890021472, 7431582.689069814, 7431599.525033958, 7431605.532128724, 7431634.375, 7431637.125229393, 7431649.884311534, 7431656.154850603, 7431665.617241604, 7431681.25, 7431714.894664109, 7431788.194974592, 7431815.625, 7431832.8125, 7431838.3448831905, 7431856.436890467, 7431862.5, 7431876.292409014, 7431898.4279423505, 7431927.020198068, 7431959.314424321, 7431962.5, 7431970.693129238, 7431986.774629589, 7431995.62768098, 7432032.8125, 7432043.31627791, 7432046.600325945, 7432065.625, 7432129.6875, 7432140.373020881, 7432162.056058948, 7432229.6875, 7432232.6289118165, 7432285.4131417805, 7432288.226293013, 7432289.09295352, 7432363.703362777, 7432370.3125, 7432391.828690621, 7432440.42873751, 7432440.497668744, 7432460.833565394, 7432467.1875, 7432709.961373039, 7432739.0625, 7432747.729103662, 7432829.6875, 7432832.099686928, 7432935.619316748, 7432994.061608639, 7433002.601912343, 7433040.625, 7433047.333067043, 7433153.125, 7433178.125, 7433224.2023990005, 7433279.775051694, 7433287.251607577, 7433429.883072834, 7433436.474634243, 7433518.411155302, 7433553.6871677395, 7433656.469194174, 7433788.821486047, 7433877.065980226, 7433884.375, 7433929.9174562385, 7433930.4938357305, 7434484.04424818, 7434882.8125, 7435133.010177024, 7435334.022349458, 7435747.485661239, 7435853.887134338, 7435990.625, 7436119.608966152, 7436164.0625, 7436273.797259145, 7436647.935300612, 7436798.30991128, 7437123.359969347, 7437194.81358863, 7438087.300770263, 7439997.219001721, 7442324.36878688, 7442326.5625, 7443878.125, 7445181.25, 7445821.534554777, 7445841.212272977, 7445927.249592057, 7445986.515826714, 7446562.5, 7446628.047071067, 7446675.266494475, 7446765.625, 7446847.87003535, 7447026.983577476, 7447065.625, 7447412.808477507, 7447577.669999996, 7447658.485068482, 7447662.479080289, 7447753.259670444, 7447773.4375, 7448298.4375, 7448314.5582367, 7448321.50565587, 7448398.59714231, 7448570.558038923, 7448938.8332907045, 7449176.718288965, 7450816.958570423, 7451347.404217396, 7454174.785103956, 7454554.34811697, 7455233.869463339, 7455234.375, 7455445.324012204, 7455686.242667792, 7455810.9375, 7456076.092306427, 7456164.0625, 7456423.4375, 7456537.5, 7456692.48182922, 7456756.342056973, 7456810.956861173, 7456846.3730770135, 7456855.72116983, 7456923.3163261525, 7456938.245065864, 7456956.25, 7456981.716014153, 7457031.227905416, 7457062.374612154, 7457069.117086128, 7457089.0625, 7457104.43568314, 7457110.384977073, 7457115.714053774, 7457122.071027202, 7457144.702562008, 7457170.3125, 7457203.125, 7457204.033437297, 7457225.0, 7457235.949082066, 7457276.5625, 7457287.5, 7457294.780742944, 7457301.017486419, 7457314.83350326, 7457318.115583093, 7457319.374954691, 7457345.334497305, 7457364.238112682, 7457383.220519499, 7457407.622763809, 7457493.75, 7457501.212210902, 7457520.266381994, 7457526.287609584, 7457535.969107546, 7457570.973827298, 7457588.700468522, 7457589.625377556, 7457622.815857882, 7457646.875, 7457656.25, 7457698.681581145, 7457700.0, 7457739.451434397, 7457754.6875, 7457806.25, 7457810.793801205, 7457815.11222626, 7457826.250939734, 7457878.801222508, 7457887.514484127, 7457901.525825363, 7457905.050265323, 7457920.494836339, 7457925.090213125, 7457956.227581867, 7457983.090909508, 7458050.811170072, 7458057.8125, 7458063.711198216, 7458064.751063675, 7458078.8232937595, 7458081.25, 7458082.695513027, 7458126.69433899, 7458172.805198741, 7458180.64464976, 7458184.25342356, 7458186.315055027, 7458222.933447611, 7458243.730303312, 7458250.57275084, 7458298.266323537, 7458312.9565065345, 7458328.125, 7458344.440951894, 7458349.987217138, 7458352.155977923, 7458353.896645357, 7458390.841009494, 7458406.640514618, 7458457.214003442, 7458497.223454191, 7458548.774101084, 7458598.4375, 7458743.435734241, 7458777.014247429, 7458815.567982637, 7458823.4375, 7458823.4375, 7458829.6875, 7458856.629417206, 7458874.588238816, 7458876.5625, 7458928.464504944, 7458979.6875, 7459013.618072974, 7459031.306918715, 7459062.5, 7459068.75, 7459099.3127456745, 7459124.355206203, 7459145.2805206, 7459161.985435128, 7459192.1875, 7459197.452736251, 7459207.8125, 7459210.479848695, 7459213.946831734, 7459246.4794676015, 7459249.314836629, 7459302.961357995, 7459315.625, 7459390.559717698, 7459459.375, 7459518.214038716, 7459541.399690099, 7459549.0450004265, 7459557.8125, 7459600.0, 7459637.187317855, 7459646.130508019, 7459722.181459663, 7459757.273785054, 7459764.8431228725, 7459773.4375, 7459790.406384577, 7459801.791379187, 7459806.302921569, 7459825.969310411, 7459903.258520995, 7460032.805032774, 7460042.1875, 7460088.691721877, 7460290.31315424, 7460326.5625, 7460387.5, 7460399.083557159, 7460400.0, 7460400.671630196, 7460509.473060672, 7460522.792218255, 7460577.89013691, 7460596.268164793, 7460681.097106606, 7460694.424064543, 7460793.533654658, 7461164.0625, 7461241.041632291, 7461256.25, 7461275.78229362, 7461324.3564738985, 7461362.5, 7461367.004417187, 7461430.826340509, 7461456.97846998, 7461751.551214574, 7462004.397177331, 7462038.470556898, 7462253.574276387, 7462262.5, 7463149.096641359, 7476651.766258309, 7497365.75030597, 7498281.53932473, 7498810.9375, 7499284.375, 7499298.298840747, 7499303.125, 7499319.481781262, 7499498.767426989, 7500011.55837049, 7500340.625, 7500581.546464288, 7500616.304488266, 7500684.126697558, 7500757.654706148, 7500859.493405454, 7501048.4375, 7501263.532209991, 7502081.216458532, 7502362.5, 7502622.924588969, 7505519.619703775, 7506576.5625, 7508071.802007231, 7508700.09036948, 7508792.1875, 7509369.48883539, 7509934.375, 7510737.636050653, 7513373.4375, 7513567.2325074235, 7517314.374163614, 7517469.10547514, 7518435.913295058, 7519254.698011191, 7520636.8984876275, 7522453.669827919, 7522540.599074642, 7522610.530036081, 7522690.396944071, 7522848.296376319, 7522971.875, 7523255.773807913, 7523368.552924074, 7523411.493510248, 7523467.1875, 7523615.625, 7523932.169109836, 7524595.864390065, 7525157.260322516, 7525172.115237682, 7525225.919742148, 7525553.789283632, 7525865.625, 7526635.982423034, 7526721.849008562, 7526900.322622786, 7526927.459015347, 7527179.6875, 7527334.12283785, 7543733.851239037, 7544175.0, 7546039.0625, 7546191.651208531, 7546300.6356603615, 7547129.89471021, 7547198.223137034, 7547600.0, 7547755.138677509, 7548269.129897252, 7548357.8125, 7549043.9447749825, 7549912.5, 7566682.8125, 7569249.892300049, 7571787.5, 7578309.455153923, 7578333.6054938175, 7578585.9375, 7578948.4375, 7578956.614929625, 7580343.705269454, 7580650.748919135, 7580759.248303341, 7582265.178779985, 7582499.365915068, 7583077.598946262, 7583367.1875, 7583580.860467471, 7583970.3125, 7584017.1875, 7584046.429728292, 7584300.616184789, 7585872.986118762, 7585938.865761673, 7587281.25, 7587815.068071677, 7587994.245615613, 7588200.911233332, 7589738.7228628015, 7592854.674799958, 7593909.970706823, 7594669.850769609, 7594828.037078569, 7595221.019085855, 7595445.120511594, 7595592.315396611, 7596069.85377531, 7596073.4375, 7596121.602545099, 7596291.853334292, 7596454.517725852, 7596892.283802304, 7597487.766304731, 7597565.625, 7597793.559960772, 7598052.858980454, 7598390.195441465, 7598610.9375, 7598621.413678334, 7598788.829939368, 7611664.0625, 7612425.0, 7612431.25, 7612606.25, 7612728.321697372, 7612772.858610085, 7612939.476416129, 7613170.684650062, 7613631.040380344, 7614102.361268401, 7614578.75587065, 7617312.5, 7617845.972577809, 7618021.875, 7620084.375, 7620723.93732496, 7623260.39495144, 7627776.011598688, 7630516.4288501525, 7631113.457971461, 7631765.625, 7632325.451934146, 7632357.8125, 7632482.4193874365, 7632909.375, 7633395.49435877, 7633600.0, 7633827.663244991, 7633930.587374642, 7634373.4375, 7634452.024759997, 7634490.540892928, 7634547.235522942, 7634740.625, 7634769.491885456, 7634803.082800722, 7634851.5625, 7635417.868688618, 7635431.638035749, 7635769.136497266, 7635777.176456474, 7635925.020592569, 7636409.522745626, 7636741.885066537, 7637115.380223752, 7637243.229135004, 7637263.536036719, 7637493.355399969, 7637815.973031847, 7642073.850710415, 7643668.439098458, 7646450.1865907945, 7646823.105475758, 7647703.016516358, 7647838.993160158, 7650485.9375, 7651589.427454697, 7652097.306067914, 7653054.6875, 7653377.846533391, 7654934.124013354, 7659087.056944172, 7669931.196582337, 7678971.875, 7679901.5625, 7688395.206695617, 7690702.757305106, 7690714.872023817, 7690989.0625, 7692280.733775429, 7704516.215660958, 7705965.484291821, 7718779.6875, 7719570.3125, 7719846.875, 7720802.938675145, 7720856.034684409, 7721317.1875, 7721603.388764851, 7722172.933262522, 7758687.326345924, 7759668.929803203, 7777544.177914214, ...], [6.271165085516691, 94.19042700017403, 9.000908303984057, 10.201175185307964, 27.58634638388823, 8.458239592685917, 5.572814723439383, 18.897428525722564, 24.46345882605037, 13.225850980454062, 31.055808926927295, 31.550624213363797, 27.088165961057918, 27.03688667358555, 71.17845280828993, 5.7078561867784625, 79.3548236510847, 33.79476604603218, 11.127897361937142, 93.49827038388833, 24.394476202692815, 6.730998444383518, 109.9167353690657, 47.96466686118971, 18.467807721360966, 24.329732921866583, 224.8725730266022, 14.120287239111978, 57.60271321405538, 24.714928140170592, 6.91675561790784, 6.377288260357831, 46.317426735674644, 20.39516053794294, 17.581177566052006, 6.527803686043721, 110.33139914145579, 7.47901149449868, 29.966059942809167, 8.43146088019207, 9.149291942067487, 5.181493541708859, 9.296621279684036, 43.0486567201465, 117.70186081561954, 10.68970439325732, 45.02637153975453, 18.05936324667003, 20.93365939536022, 9.155151908640423, 129.4132136134071, 12.576645363009922, 58.630663408882384, 78.81818011388343, 27.708107741371187, 6.7875291660205646, 19.304785861490185, 16.662933869496896, 5.522542829996347, 10.418447265390396, 13.302353411318597, 37.62130175302176, 44.64690763223612, 24.741956541170943, 9.790381392512073, 12.142432479921629, 28.403809632357476, 57.0037275411316, 17.23342863980392, 57.62518090821773, 28.777965888194974, 28.800508258326772, 37.00535562520047, 56.3773472064169, 63.78243030136747, 77.4696054193889, 22.707239304275106, 6.5848157550867485, 28.200155162825588, 35.75263543294155, 22.349247609698928, 20.48947949908089, 11.677885970919583, 5.531005329052469, 22.515938674613572, 67.97916008642142, 41.50204937882565, 6.702310349760499, 21.771278516917558, 95.29265627099925, 40.08854901022066, 24.129104121304376, 49.29873300424212, 8.504094568735743, 5.828332444643175, 43.65802780207699, 23.1439349028962, 109.28531130649446, 73.91374189448297, 14.801237731441844, 82.74852681123781, 44.026687862484536, 11.087891013076513, 213.4256878428635, 26.069340101499463, 20.793709867020382, 5.511443299940862, 109.9354157387808, 57.07189512852701, 29.668664055430064, 95.26934675260728, 13.952496034030098, 55.128401143599525, 13.514012081553016, 90.84328694378596, 74.92580912564789, 76.37789648789595, 17.739730648572326, 7.003932277001613, 80.05727435493381, 5.189270033424871, 5.322378410494484, 62.33870928112521, 18.50141911334423, 6.092716758093859, 59.18094218913712, 41.45505290532161, 27.48547742120613, 19.826238778452094, 63.882616447598366, 35.26482656282412, 8.825105026717594, 7.6147055105835335, 13.036342017195288, 25.134136992802617, 10.7501040489247, 5.343679477242824, 113.73706906947322, 70.18099639813896, 21.034756211240474, 21.028305802261944, 25.68931109258027, 47.93827614018317, 27.834483124080336, 130.84612564942225, 24.452181866276433, 33.14958913999379, 69.72504286780735, 38.156401636998766, 90.42627584264676, 14.883025006772996, 17.09580592821491, 16.212994318503643, 24.989809749756553, 113.49918416899986, 6.158616814826283, 33.34215283762476, 12.863041723317389, 16.322021394816115, 11.931232244916451, 22.554949307092674, 96.81373301828448, 70.62938907986282, 15.64778231714834, 77.46293832818449, 15.982724139213358, 27.705889027394374, 14.538571972972948, 21.405703713738014, 71.72458701284881, 170.2335583812245, 7.250034424160456, 11.627389813363346, 15.707516635767886, 77.09924530975167, 15.887136884082018, 5.576120399252478, 65.23102387187285, 10.089653644358792, 128.81427503319455, 10.308162741177302, 18.05642021063336, 11.795726570548291, 23.35846106498503, 101.35080851212062, 30.065779349362085, 11.108719095770882, 5.765286507103635, 30.493818343967177, 49.4827860697278, 24.93079935007567, 31.567370297598792, 13.909761230104358, 31.07479828668042, 30.128482936421282, 19.3546747262005, 46.20107044823444, 23.307114884404598, 50.891752333660136, 86.75703145039746, 60.45704248921227, 70.78876487488493, 61.07030448595143, 47.6055330065072, 22.726794777629625, 55.615527403159305, 6.858979237270887, 89.80419473008772, 28.959153091592146, 19.34069496602444, 13.541830479346507, 21.475470893209103, 78.0954109303544, 5.563900051397338, 16.634002684708697, 42.029486602307884, 15.916775071655861, 74.52455209044852, 53.90984141057686, 26.84002178005873, 26.990331604466782, 63.09422146149333, 5.559016988039951, 7.403795578110466, 10.930539805139949, 13.596346219449314, 52.222335095655126, 23.224780089460193, 60.02295419065906, 58.48271944756454, 16.713980127895468, 39.14092500233259, 79.10860962773859, 19.812420744089582, 5.435779170508018, 14.764228678648214, 39.9803881911156, 11.432228349269794, 13.762764611845835, 92.22422887940074, 20.210688554508554, 11.977382544799841, 62.65144414328557, 65.96354025958314, 104.97483671537826, 82.01954493797474, 66.9454323475494, 109.77085869017738, 31.88415527911444, 27.372848922370654, 11.99529629051318, 21.381295700159633, 13.958953063056871, 8.68832742254878, 23.951917760281905, 19.73019174110707, 60.15872763357035, 29.694767835835407, 34.89178735211297, 7.760389955428784, 10.849059653607513, 10.66584248854812, 45.023648203362214, 71.0872065827803, 81.19227764597231, 37.321860709148666, 15.349165690994397, 48.377381823434845, 7.740991608679347, 28.00215241133199, 7.407586345941103, 16.812073370746347, 100.20518203068309, 35.226027485309686, 8.220733836055265, 64.55923834430476, 12.707571574805055, 48.61694819515023, 49.96564042019818, 77.05527194345412, 38.53418863716492, 16.407231602612523, 103.49496846625468, 16.648531070402626, 80.9730279749113, 14.242803167280867, 89.03864591148485, 30.818441074600628, 55.11295245157249, 19.94814303956816, 5.220108779462272, 33.643810102464286, 38.001127770700606, 10.485195054126542, 134.29554584198758, 55.4834584668347, 5.718720469562905, 59.91991649109448, 88.36788072782554, 210.104210802428, 14.470809434257049, 42.05535871228057, 120.10483520849559, 72.97235517964154, 46.714236543367775, 68.51355350136862, 20.812576473057142, 17.06917641605496, 38.93676722224995, 83.55891564522285, 22.753384967681495, 32.82595527675311, 8.853034392538587, 53.545015390528064, 11.137626325749723, 8.728533564846028, 10.637627649921235, 5.934049245605062, 10.812805911784146, 20.599503195466347, 8.932228350952004, 21.91752237683423, 10.621529226228516, 39.027782374209444, 17.84400492606973, 62.382412772220675, 20.92374991619709, 18.79132734167783, 84.126921226206, 25.516573803853838, 44.921978213289094, 125.89210677878555, 120.90275461135445, 67.77764845957844, 9.356886768178365, 25.012687072626143, 5.580221334728045, 19.36391134304934, 87.66804516751523, 10.513410098097959, 15.671557610162637, 15.329092747925825, 11.377824499058777, 27.37275610522287, 84.57214527085488, 48.41615871137903, 29.714940600916364, 12.751712796525227, 25.592864256324575, 78.28469345414157, 53.10671629370592, 55.024874289223554, 24.988350691238608, 40.367426710268035, 20.08059830078066, 56.6522059936176, 11.910913260139967, 75.62990271966186, 49.2158846721112, 59.27982719674335, 5.721672739749008, 6.790378732457404, 8.816778574425332, 21.140333034498212, 33.97719074268477, 31.281854176755978, 6.547293137976038, 24.487168924030392, 16.762918211966454, 51.25813274584385, 23.4167471055323, 37.445160211392995, 158.1688962781326, 27.238660581613797, 8.688109751562715, 19.88650847608263, 106.62533243547854, 51.57274311143881, 22.071179431554143, 20.133380997554998, 42.149069260080324, 7.337396011771799, 18.681412909283956, 13.683689085261486, 19.70468110003221, 27.68326438315964, 113.24427463608275, 25.588155130905797, 94.61842152947423, 28.484144835104246, 12.9645077789853, 17.3684431851243, 172.78957319752396, 88.46238536931799, 14.163850152806566, 51.20319215265317, 5.081716775082026, 19.588840393970646, 6.792076545979847, 80.31101804789493, 13.020032161783192, 12.168689807161982, 5.0550981810289555, 62.45210192480732, 10.35159505796398, 88.65467162201017, 31.375052755118162, 30.935434754879278, 9.60641820133294, 9.840694872793643, 21.87485813890978, 37.177534074974545, 25.473992995487787, 44.16350742576139, 9.132864088079552, 21.586817292299024, 13.743673042975695, 7.327630147756377, 10.853672965109288, 18.83087033603765, 7.66604145154555, 15.645050022227013, 62.63590517304943, 81.79236536713364, 167.44288134226218, 43.160439138770954, 35.59338282666316, 49.04163049489611, 16.24324014018198, 147.07917133971247, 112.75250860790155, 75.95206408090162, 6.070916544950781, 63.85307475631904, 14.904549030718051, 7.170397086618168, 66.04942011942595, 55.86550141380499, 136.2218708053807, 22.10957684497907, 20.88230332048164, 17.88121652950996, 28.836327410804106, 184.1289777666263, 23.54467370458648, 10.190869176616982, 25.493852138032672, 64.34742126050018, 7.006066921156642, 53.46116066829762, 11.536252569530955, 10.30430978875307, 61.70529274895513, 28.071955095237847, 6.6114737739037714, 14.007354375269408, 178.1046771652652, 14.05941863141646, 45.720218767231984, 84.04239961224559, 96.23110164166802, 26.45830015367631, 21.217160884503663, 16.120792391270516, 58.40832849080884, 21.99925227509232, 36.69664331482635, 16.363376653443602, 45.122318831679905, 29.988547002527753, 23.802655786472478, 18.123456938913062, 60.85131431236616, 26.4759036395426, 106.37974562848802, 78.59921651472666, 21.721868960141165, 13.666186673145399, 14.966722804233628, 53.08851189204181, 20.477995951276615, 50.37870228317351, 97.70335265838368, 38.68315313727142, 79.89196134811995, 35.57785241506636, 5.28344114207586, 11.360390851433653, 19.997850497447477, 40.64236325235828, 21.740022496539794, 83.28661660686313, 35.33330631683397, 20.584646133641364, 56.99952446228841, 29.331251406790038, 11.95235156311238, 76.37970619615771, 9.479314161298936, 55.11331079611343, 119.46047675269607, 75.54064463459639, 35.559034874988036, 54.33841517893237, 65.8887590983626, 65.2497153656921, 50.150254324502825, 8.790173339153979, 36.27847444266811, 64.62830598237818, 7.561924289499618, 51.118190507529434, 23.72566603714044, 89.41705544484265, 178.54495893060587, 18.472349894266284, 42.43121875147753, 66.07239734982676, 42.69088273421082, 8.387944246637483, 41.63728209866966, 112.29842397858158, 28.337190458657865, 17.029514312208732, 9.280702911763127, 110.97499012853035, 8.498667523906542, 5.115296516876496, 9.61292682780437, 29.045344658662337, 5.090014363764554, 5.519896606149816, 33.067111868917735, 92.69857672638358, 6.448303670945447, 22.07115981327353, 117.65742552332118, 8.191821649977342, 48.371344353775825, 12.49080605434312, 11.175643605182481, 6.051531735591909, 35.10190060015902, 49.266317924818466, 10.834194166004506, 34.46690917773108, 70.93403153682866, 70.54471902675397, 12.187236817229284, 32.45001647326837, 6.629867716953898, 79.05611656017652, 80.59791000825112, 8.125191036230932, 9.60955827918731, 66.6955358452573, 68.1437268837314, 6.85853665216164, 53.6897063274183, 71.56568618674153, 18.962292220270136, 63.62305335193227, 8.159450550562852, 29.74698870576909, 11.100303109356478, 23.266919844556252, 17.62677593355931, 7.180288392514462, 36.325027852039504, 8.572068584861537, 52.62665016170554, 5.959684841643033, 41.702351253358586, 23.365719929848282, 50.553935498789826, 20.9290812120947, 33.31174360585686, 8.638254751329878, 24.203003019211955, 103.59754947720715, 15.05146469644421, 44.69826809715997, 8.486450104818665, 45.17863192126763, 14.476523363369047, 32.48576711289266, 30.739497593278653, 25.12934564141913, 6.311661349047756, 12.980497492432152, 90.54315784596812, 59.40776926439006, 40.02194356021714, 72.62750206032017, 9.882790979534594, 17.738121079316908, 25.120252047084595, 70.44089639132062, 27.072777666256105, 9.567384931877866, 53.768018777968926, 13.14499744024994, 5.257085226910334, 56.34879103397506, 22.281888453589612, 60.84718455794909, 58.622228461378484, 11.095164632789443, 7.157308189003551, 56.772654441320924, 87.59657068983978, 22.98632444477617, 47.27245861404247, 21.72466834646289, 80.4673170602069, 14.134362761058979, 15.570523268100017, 5.919713861074814, 12.069637119203641, 64.82835089242464, 49.11508564379629, 21.438046325948587, 73.74876753399161, 11.145748922122044, 11.640736965355718, 48.16233644665821, 8.963139638426313, 99.21814189171764, 106.8696541979774, 72.45657089580071, 82.53725034222674, 217.36570799055102, 78.44012390407406, 21.47393884885574, 5.507953642937391, 7.08995892180261, 23.319768367543524, 70.22996647981685, 16.15390742593675, 14.857958683072235, 45.068234595673935, 8.490731165817179, 29.543257882619834, 24.38636501040756, 8.904173097776319, 15.292163863401344, 7.1739526218540295, 20.46230079188551, 48.16892587793423, 46.8894696036301, 35.04972027455, 42.29699654519629, 85.885580665358, 36.1136906275422, 33.44323363570266, 23.627582151918812, 13.20443220825547, 5.369054014400901, 6.643131757789634, 67.65181811611026, 38.07423637584658, 44.378995703193276, 16.76393680576779, 25.269383034801063, 60.28187280197562, 75.73748255529894, 27.644078628472524, 31.771355780285255, 9.358272904857207, 18.248104105008302, 59.58320373980759, 36.16216310085064, 66.71022241855424, 106.94637640664571, 63.67965382637085, 14.92091643536848, 68.19505959701401, 5.843329694825089, 47.39625552663929, 59.844091725965185, 14.42069490403131, 21.36661479012727, 37.44714318877649, 82.52507064528086, 5.3424182453711015, 42.59563108282981, 79.13358234444267, 97.56825689424852, 7.14536959953091, 76.85287477754194, 16.120664236641037, 8.767793940301992, 45.97428299927334, 23.11682940828519, 18.429067901738716, 29.526451074293412, 122.69568727149348, 10.94964305239857, 6.284000219086765, 20.26759616061098, 104.56493573872947, 14.497517266631636, 11.774011199967369, 21.45277051122049, 15.069547004668562, 26.684363221093463, 10.870288563844536, 17.023011683834937, 45.76588167385675, 12.411935716463704, 7.118095480897086, 18.925584403171882, 10.081906599796866, 8.404208337411353, 100.66833204168816, 10.305478176990134, 16.459798017847277, 11.698018403371929, 43.91017313334767, 7.493394908091556, 18.528734804157054, 14.72854996765922, 46.64566518218967, 46.88393495738602, 56.32796202624079, 22.264812364688165, 23.88861596747398, 56.42818596944912, 33.2415671181493, 112.14844548314991, 83.16642641815234, 11.217855376858319, 49.699312543942554, 58.84838265618066, 116.80197229062621, 20.16086363924726, 11.078086165618922, 21.349027952561478, 28.802989787102067, 8.617703935433696, 48.30975973646832, 21.926215678961103, 9.235477383010691, 178.3936664205608, 91.53861674216968, 138.08670615696724, 67.50158209303783, 73.65313457028101, 45.61374132485401, 25.487729814219815, 7.909715927494772, 77.43378045754916, 95.41225407374206, 93.76241348486568, 9.080303663397233, 7.354472090850924, 17.91085863804915, 96.23714136584903, 47.19433764625374, 79.32784039342714, 89.7552804995929, 5.544292848468552, 15.147132660671208, 44.687087045753344, 21.85083456057342, 28.37806875338719, 104.1931128361469, 13.694458107943252, 56.075317817845665, 52.19470349370048, 33.40730835194838, 181.73667036384373, 29.675925116580913, 45.87897464623033, 33.54374543859005, 15.35504146001924, 86.25455879378264, 13.042672812408318, 43.169727999627014, 18.332150840505257, 52.270922044823664, 64.01959477255252, 9.710420397259263, 30.185509257834628, 6.371367877050511, 5.150640426286988, 59.138334847790965, 49.352458134864705, 10.52433336706663, 18.70288082845665, 5.398042776320478, 23.87514828393811, 56.011291339867974, 174.9326022955777, 41.27158243772877, 18.233781558861907, 68.86874508141476, 15.441640773430725, 18.122282404427544, 70.09503720036048, 142.0689992530916, 6.073797599522565, 50.58914033010359, 18.72607967582661, 19.121424824526336, 8.64466719929053, 48.038156982606665, 11.625033660508304, 7.312308817542337, 14.072635964552227, 25.754729464035847, 21.07416356143001, 28.77374086071674, 111.71757962336802, 27.87794263328256, 68.11494593167632, 10.410642933274366, 97.10149702416899, 164.5017651071954, 51.31638310510996, 15.297518443080254, 80.83012869129868, 6.920553465710267, 63.43547230532119, 18.784475184714417, 112.79609752242204, 30.873846762416917, 103.15748195945508, 21.942655421181772, 21.09727119548658, 14.981725081510973, 58.34994514906389, 12.10140515523402, 28.021861701752748, 22.46868728294517, 70.01126010023553, 56.465718921171984, 31.623027370205225, 10.456906610733505, 25.160951509960814, 9.850388817853833, 135.44670971073504, 106.93816523124742, 20.17278450034398, 6.577230740764027, 90.71322604076502, 30.935464986497536, 30.611493285784103, 26.04490837454603, 33.13775815586573, 196.9792085873005, 7.114636019108968, 11.672434964443717, 42.75912152568736, 128.9884825398876, 7.514511944634298, 37.62169466281823, 82.70705921730931, 202.0093548762058, 11.873520787761665, 27.8854820892248, 16.663709576798553, 39.552197100855985, 96.49680482870755, 30.033644013707764, 40.15145338723033, 109.31837003423055, 32.04332052248973, 29.863265948865124, 70.90147671042794, 26.247031057547858, 96.94952066785098, 8.329423813779995, 12.643937868512811, 46.54933491779686, 47.095711093281615, 16.542421665823206, 7.587139131980786, 100.33225397945336, 7.088540520620096, 10.495195283721062, 72.58649438615726, 29.8148578753146, 30.654392607941368, 22.670709745999922, 40.00792965745209, 31.052966298941215, 35.307560417037436, 17.958190188330448, 30.547999601094762, 37.84330488922282, 80.9184632425365, 96.79512836053591, 36.159785920110465, 46.2346730520695, 6.697543430536419, 40.404725534517766, 29.757229352570192, 7.005145467636848, 62.88087850541322, 10.010032749941647, 14.528595211615134, 19.511484377457876, 77.77867686014392, 34.047585445230816, 8.14756879230246, 9.063974954652565, 14.331623648962447, 5.402168383763554, 11.571136760185823, 30.01080742920553, 47.687947661996766, 88.31527298536794, 157.7059409011114, 57.664468450101744, 8.969584936760484, 14.12347155569179, 43.14381454940046, 34.37435897523624, 98.4453528584547, 39.25659325249778, 27.206428508090447, 13.115056140802565, 16.79487698451876, 16.578987864093936, 50.44873297895141, 19.212024008841322, 5.310980461988383, 104.43223989600938, 5.750095637599159, 76.92080116209587, 93.51709700608704, 12.01052242215873, 24.7250333994624, 46.13305450786851, 19.446032950027018, 50.43366141085666, 32.60765017421853, 35.951974088649365, 50.0232092611996, 18.299038842785833, 128.1386354111883, 15.683143737784464, 102.31369666157562, 166.44507433833098, 42.25944929524935, 52.921612136593204, 26.685827101400882, 77.69018231303384, 16.520212194148606, 79.72869367543862, 18.79733511135225, 41.26532616008928, 129.6775005392617, 39.30030548097952, 11.793711684233887, 74.70831975682358, 40.74080784493826, 15.422048858947115, 51.94682946686024, 5.518580341508827, 5.521317549409614, 44.442982381942656, 17.097435283964764, 5.785348986921674, 18.209164364095656, 32.5670724033862, 31.272973201127435, 15.703828455868866, 134.49560082575937, 5.3943429364678686, 27.2242529908884, 32.20276080734484, 11.750463871363836, 25.894827224790852, 154.42969522870231, 24.029753896388726, 70.03829416501873, 10.499265439498851, 17.410186691433115, 88.11267352471017, 101.52494692092803, 26.594694554451802, 46.935314598515674, 6.9366508814745504, 53.90134973086409, 34.97612745028631, 12.73781387962958, 26.023691748970204, 56.10380925481051, 101.89139217615411, 62.41947853478661, 14.275899568577213, 117.08242886937465, 65.41453340673702, 67.04110953885154, 49.586149091827544, 77.86996155890375, 7.669590281664298, 11.869634467006483, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([4534748.468832108, 4536542.244256884, 4673807.393945612, 4722297.751087505, 4722301.51323838, 4828969.061096607, 4890571.104891868, 4907360.130911923, 4907369.03397611, 4908468.2130036205, 5020482.1374936355, 5048075.0, 5070544.120661866, 5076494.694090907, 5078551.320252452, 5146650.017241579, 5163812.046656254, 5164464.0625, 5272050.00012191, 5303071.642938754, 5388944.049541532, 5412577.959957583, 5432079.6875, 5450479.6875, 5633052.256803651, 5731552.86901449, 5832759.375, 5961801.328958111, 5962128.125, 6017446.646911293, 6621446.03452935, 6622753.949356299, 6622876.633458332, 6623563.444911711, 6623567.74202413, 6623753.379889096, 6625060.9375, 6625338.705455866, 6632311.663079168, 6653167.451783611, 6653224.776476224, 6653352.241953203, 6655139.021076638, 6655475.0, 6656327.698840982, 6656390.325461083, 6656557.528670111, 6656770.659447482, 6657766.629528384, 6661540.408931836, 6661673.184339035, 6663521.0764880385, 6665443.75, 6665819.613392266, 6666189.377116446, 6666200.119148949, 6666607.061061192, 6667164.451064153, 6667695.093447141, 6668697.9308223445, 6672727.616326297, 6674155.295167601, 6674642.1875, 6678924.773829214, 6686250.497132023, 6689892.752300366, 6690525.673847267, 6690817.1875, 6691405.18195345, 6692860.714529506, 6697971.244415634, 6708892.1875, 6710587.5, 6711119.686191754, 6714157.8125, 6716737.5, 6717263.67616771, 6718124.033811789, 6719132.913191009, 6719217.1875, 6724855.831745493, 6740563.642802529, 6741395.638109279, 6741795.269667069, 6742251.159265791, 6742589.0625, 6745325.0, 6746166.873042017, 6747454.9577811025, 6753131.708613718, 6755337.1205988275, 6758116.91655439, 6779673.4375, 6867906.6398606, 6880103.31710484, 6880608.034018437, 6880626.737311626, 6880864.667877731, 6881084.375, 6881515.587704782, 6881623.4375, 6881700.468260851, 6881704.661876872, 6881725.069021104, 6881800.436533212, 6881807.239409923, 6882079.2334668515, 6882084.759572914, 6882223.4375, 6882610.9375, 6882885.9375, 6882963.776333417, 6883119.059867517, 6883127.692226054, 6883211.69962997, 6883317.1875, 6883356.557966844, 6883499.212538829, 6884563.595741113, 6885442.1875, 6886269.747805531, 6886324.418361168, 6886400.0, 6886536.636758326, 6886842.231786456, 6887004.6875, 6887069.709404134, 6887081.195208273, 6887116.976596633, 6887163.674845976, 6887190.572448056, 6887397.771187064, 6887570.34409594, 6887652.515698526, 6887662.301097196, 6887827.869198746, 6889442.238708489, 6889701.9512859285, 6892390.625, 6893788.515292013, 6894164.286131391, 6894410.775485408, 6894798.4375, 6895980.244102557, 6896253.125, 6896293.502998382, 6896624.657787627, 6897025.0, 6900876.68636628, 6914337.5, 6915234.35957084, 6919206.719775956, 6919219.047875645, 6921313.853682667, 6922390.625, 6922399.089369432, 6925188.875623018, 6926004.009264233, 6926359.6954758745, 6926593.099004644, 6927949.600241295, 6928090.554638984, 6928545.3125, 6929883.897617644, 6931388.89716817, 6940931.49875231, 6957449.555138009, 6959120.934985139, 6959694.260591214, 6959904.5447677355, 6960150.0, 6961369.21756368, 6962110.872105774, 6962365.812432728, 6966532.768303214, 6966679.915285501, 6969622.73102609, 6971602.890666358, 6971667.966060857, 6971820.356749812, 6979874.403725695, 6981500.631693884, 7054830.076604555, 7071994.588050147, 7076435.9375, 7101628.125, 7101835.9253181955, 7101854.006973656, 7102504.963599038, 7103094.361580047, 7232841.262180262, 7232990.040381241, 7299343.4501356715, 7312595.886590059, 7312613.113850836, 7312658.630109662, 7312853.849249079, 7313034.039457915, 7313082.8125, 7313309.375, 7313500.0, 7313535.753387395, 7313550.0, 7313707.4441599585, 7313723.052875678, 7313784.375, 7313966.085119665, 7313984.8671374675, 7314090.57342744, 7314166.440779055, 7314197.544496528, 7314226.060730924, 7314231.7089431435, 7314274.056576132, 7314339.445432501, 7314340.625, 7314340.859323581, 7314359.375, 7314421.875, 7314490.533647788, 7314526.9215493435, 7314972.641030248, 7314997.398070071, 7315357.22521835, 7315895.182587021, 7315974.5958132995, 7335739.890765433, 7353759.914303941, 7358184.375, 7360282.8125, 7367139.167124862, 7368996.875, 7369350.0, 7370424.313223092, 7373333.755219946, 7394872.58311634, 7410650.409779564, 7412682.998962494, 7417969.964570638, 7419264.016843766, 7419275.923558881, 7422275.483148528, 7422411.4326293, 7422632.8125, 7422707.211512396, 7422916.9499308625, 7423000.669506256, 7423203.668763751, 7423460.807749341, 7423848.299602056, 7423917.283224747, 7424015.598226393, 7424038.778392501, 7424041.314582093, 7424045.028087823, 7424151.198316187, 7424220.3125, 7424239.541792696, 7424304.6875, 7424350.414560431, 7424420.126602874, 7424480.932951747, 7424545.3125, 7424575.0, 7424657.581531474, 7424807.8125, 7424807.915494345, 7424815.108892112, 7424826.927958955, 7424881.2230371125, 7424966.612091829, 7425058.229680798, 7425075.669208624, 7425077.99728301, 7425135.810878433, 7425146.632690869, 7425161.75749352, 7425193.458971015, 7425194.443321448, 7425204.6875, 7425228.125, 7425236.275354877, 7425237.5, 7425353.5107638575, 7425368.75, 7425371.67875699, 7425390.625, 7425426.285470111, 7425428.125, 7425438.782391102, 7425447.517610779, 7425460.9375, 7425489.0625, 7425491.733487898, 7425495.3125, 7425509.375, 7425522.061336352, 7425554.6875, 7425569.336314104, 7425587.738231614, 7425642.058270601, 7425646.875, 7425647.598411357, 7425672.562639095, 7425680.788451987, 7425689.0625, 7425696.303963021, 7425702.465438232, 7425715.625, 7425718.75, 7425723.055192237, 7425731.7516128225, 7425739.999336416, 7425779.6875, 7425792.193836947, 7425805.439149509, 7425830.912077222, 7425854.625788177, 7425859.163740487, 7425863.467999106, 7425871.361911406, 7425873.916874914, 7425877.775082957, 7425904.6875, 7425916.222873089, 7425917.597093619, 7425922.270357358, 7425930.727451131, 7425967.678209865, 7426084.201715222, 7426084.375, 7426090.625, 7426107.8125, 7426124.710449734, 7426132.842485274, 7426185.730263451, 7426239.996998973, 7426263.318817302, 7426268.635468986, 7426274.567907971, 7426276.741700675, 7426292.285601726, 7426300.154333585, 7426348.942971935, 7426357.495195679, 7426379.175855228, 7426540.390516718, 7426588.338482724, 7426617.806332377, 7426722.9901572205, 7426773.4375, 7426848.4375, 7426937.291081729, 7427058.566841323, 7427077.47069994, 7427081.25, 7427091.07426043, 7427154.6875, 7427189.0625, 7427198.4375, 7427201.794328027, 7427207.9456276605, 7427243.071470397, 7427251.578436408, 7427282.8125, 7427285.9375, 7427325.373584529, 7427355.488307675, 7427394.565538298, 7427417.1875, 7427421.54839508, 7427437.5, 7427441.607126658, 7427446.806471193, 7427489.751742947, 7427541.211790731, 7427560.9375, 7427593.75, 7427631.3958588075, 7427650.914462158, 7427688.27891118, 7427713.2623766465, 7427717.9128962215, 7427768.375589128, 7427785.237356452, 7427831.612174491, 7427854.6875, 7427856.081407752, 7427867.313502445, 7427871.872924253, 7427897.799960783, 7427900.371232231, 7427905.18362801, 7427914.0625, 7427937.279826999, 7427963.769958132, 7428028.817893762, 7428028.972774091, 7428056.391440959, 7428075.310503746, 7428085.321828184, 7428102.139972846, 7428107.039149425, 7428110.9375, 7428144.751902853, 7428157.6121634245, 7428159.375, 7428185.9375, 7428211.245774477, 7428247.421585663, 7428310.474936417, 7428351.458948284, 7428399.823908752, 7428406.126446771, 7428424.755478011, 7428436.03656932, 7428491.833217853, 7428492.917775389, 7428510.754810017, 7428542.934106453, 7428567.357867922, 7428606.423098807, 7428614.0625, 7428659.375, 7428663.403735624, 7428704.6875, 7428768.75, 7428795.3125, 7428814.413310054, 7428826.5625, 7428829.246266023, 7428835.726290846, 7428842.020631192, 7428870.128308535, 7428887.490269095, 7428887.682980884, 7428974.080255269, 7429003.125, 7429070.254923743, 7429082.32299908, 7429104.124010198, 7429115.307643889, 7429167.1875, 7429301.357743837, 7429357.450937104, 7429366.492230619, 7429406.869213334, 7429607.719007483, 7429819.854585844, 7429963.511822305, 7430068.996543576, 7430077.525535638, 7430209.375, 7430258.42189765, 7430467.937584936, 7430491.875240641, 7430498.4375, 7430515.3725777, 7430576.5625, 7430621.534720066, 7430621.875, 7430648.323522008, 7430655.586904047, 7430664.340936738, 7430730.82059407, 7430801.111785346, 7430812.975002298, 7430825.729187883, 7430867.1875, 7430886.260629159, 7430915.839998291, 7430933.177422103, 7430937.452200282, 7430957.230693513, 7430975.114779934, 7430982.8125, 7430988.585131216, 7431069.932167091, 7431071.881599337, 7431096.700116613, 7431144.704341216, 7431163.691764485, 7431171.875, 7431190.625, 7431214.0625, 7431251.5625, 7431306.000468699, 7431307.956432617, 7431316.523297659, 7431346.875, 7431358.899401596, 7431368.75, 7431378.125, 7431397.841340075, 7431415.625, 7431423.4375, 7431442.657956395, 7431446.875, 7431459.544896479, 7431460.9375, 7431471.209495035, 7431514.1088452265, 7431518.75, 7431532.8125, 7431580.890021472, 7431582.689069814, 7431599.525033958, 7431605.532128724, 7431634.375, 7431637.125229393, 7431649.884311534, 7431656.154850603, 7431665.617241604, 7431681.25, 7431714.894664109, 7431788.194974592, 7431815.625, 7431832.8125, 7431838.3448831905, 7431856.436890467, 7431862.5, 7431876.292409014, 7431898.4279423505, 7431927.020198068, 7431959.314424321, 7431962.5, 7431970.693129238, 7431986.774629589, 7431995.62768098, 7432032.8125, 7432043.31627791, 7432046.600325945, 7432065.625, 7432129.6875, 7432140.373020881, 7432162.056058948, 7432229.6875, 7432232.6289118165, 7432285.4131417805, 7432288.226293013, 7432289.09295352, 7432363.703362777, 7432370.3125, 7432391.828690621, 7432440.42873751, 7432440.497668744, 7432460.833565394, 7432467.1875, 7432709.961373039, 7432739.0625, 7432747.729103662, 7432829.6875, 7432832.099686928, 7432935.619316748, 7432994.061608639, 7433002.601912343, 7433040.625, 7433047.333067043, 7433153.125, 7433178.125, 7433224.2023990005, 7433279.775051694, 7433287.251607577, 7433429.883072834, 7433436.474634243, 7433518.411155302, 7433553.6871677395, 7433656.469194174, 7433788.821486047, 7433877.065980226, 7433884.375, 7433929.9174562385, 7433930.4938357305, 7434484.04424818, 7434882.8125, 7435133.010177024, 7435334.022349458, 7435747.485661239, 7435853.887134338, 7435990.625, 7436119.608966152, 7436164.0625, 7436273.797259145, 7436647.935300612, 7436798.30991128, 7437123.359969347, 7437194.81358863, 7438087.300770263, 7439997.219001721, 7442324.36878688, 7442326.5625, 7443878.125, 7445181.25, 7445821.534554777, 7445841.212272977, 7445927.249592057, 7445986.515826714, 7446562.5, 7446628.047071067, 7446675.266494475, 7446765.625, 7446847.87003535, 7447026.983577476, 7447065.625, 7447412.808477507, 7447577.669999996, 7447658.485068482, 7447662.479080289, 7447753.259670444, 7447773.4375, 7448298.4375, 7448314.5582367, 7448321.50565587, 7448398.59714231, 7448570.558038923, 7448938.8332907045, 7449176.718288965, 7450816.958570423, 7451347.404217396, 7454174.785103956, 7454554.34811697, 7455233.869463339, 7455234.375, 7455445.324012204, 7455686.242667792, 7455810.9375, 7456076.092306427, 7456164.0625, 7456423.4375, 7456537.5, 7456692.48182922, 7456756.342056973, 7456810.956861173, 7456846.3730770135, 7456855.72116983, 7456923.3163261525, 7456938.245065864, 7456956.25, 7456981.716014153, 7457031.227905416, 7457062.374612154, 7457069.117086128, 7457089.0625, 7457104.43568314, 7457110.384977073, 7457115.714053774, 7457122.071027202, 7457144.702562008, 7457170.3125, 7457203.125, 7457204.033437297, 7457225.0, 7457235.949082066, 7457276.5625, 7457287.5, 7457294.780742944, 7457301.017486419, 7457314.83350326, 7457318.115583093, 7457319.374954691, 7457345.334497305, 7457364.238112682, 7457383.220519499, 7457407.622763809, 7457493.75, 7457501.212210902, 7457520.266381994, 7457526.287609584, 7457535.969107546, 7457570.973827298, 7457588.700468522, 7457589.625377556, 7457622.815857882, 7457646.875, 7457656.25, 7457698.681581145, 7457700.0, 7457739.451434397, 7457754.6875, 7457806.25, 7457810.793801205, 7457815.11222626, 7457826.250939734, 7457878.801222508, 7457887.514484127, 7457901.525825363, 7457905.050265323, 7457920.494836339, 7457925.090213125, 7457956.227581867, 7457983.090909508, 7458050.811170072, 7458057.8125, 7458063.711198216, 7458064.751063675, 7458078.8232937595, 7458081.25, 7458082.695513027, 7458126.69433899, 7458172.805198741, 7458180.64464976, 7458184.25342356, 7458186.315055027, 7458222.933447611, 7458243.730303312, 7458250.57275084, 7458298.266323537, 7458312.9565065345, 7458328.125, 7458344.440951894, 7458349.987217138, 7458352.155977923, 7458353.896645357, 7458390.841009494, 7458406.640514618, 7458457.214003442, 7458497.223454191, 7458548.774101084, 7458598.4375, 7458743.435734241, 7458777.014247429, 7458815.567982637, 7458823.4375, 7458823.4375, 7458829.6875, 7458856.629417206, 7458874.588238816, 7458876.5625, 7458928.464504944, 7458979.6875, 7459013.618072974, 7459031.306918715, 7459062.5, 7459068.75, 7459099.3127456745, 7459124.355206203, 7459145.2805206, 7459161.985435128, 7459192.1875, 7459197.452736251, 7459207.8125, 7459210.479848695, 7459213.946831734, 7459246.4794676015, 7459249.314836629, 7459302.961357995, 7459315.625, 7459390.559717698, 7459459.375, 7459518.214038716, 7459541.399690099, 7459549.0450004265, 7459557.8125, 7459600.0, 7459637.187317855, 7459646.130508019, 7459722.181459663, 7459757.273785054, 7459764.8431228725, 7459773.4375, 7459790.406384577, 7459801.791379187, 7459806.302921569, 7459825.969310411, 7459903.258520995, 7460032.805032774, 7460042.1875, 7460088.691721877, 7460290.31315424, 7460326.5625, 7460387.5, 7460399.083557159, 7460400.0, 7460400.671630196, 7460509.473060672, 7460522.792218255, 7460577.89013691, 7460596.268164793, 7460681.097106606, 7460694.424064543, 7460793.533654658, 7461164.0625, 7461241.041632291, 7461256.25, 7461275.78229362, 7461324.3564738985, 7461362.5, 7461367.004417187, 7461430.826340509, 7461456.97846998, 7461751.551214574, 7462004.397177331, 7462038.470556898, 7462253.574276387, 7462262.5, 7463149.096641359, 7476651.766258309, 7497365.75030597, 7498281.53932473, 7498810.9375, 7499284.375, 7499298.298840747, 7499303.125, 7499319.481781262, 7499498.767426989, 7500011.55837049, 7500340.625, 7500581.546464288, 7500616.304488266, 7500684.126697558, 7500757.654706148, 7500859.493405454, 7501048.4375, 7501263.532209991, 7502081.216458532, 7502362.5, 7502622.924588969, 7505519.619703775, 7506576.5625, 7508071.802007231, 7508700.09036948, 7508792.1875, 7509369.48883539, 7509934.375, 7510737.636050653, 7513373.4375, 7513567.2325074235, 7517314.374163614, 7517469.10547514, 7518435.913295058, 7519254.698011191, 7520636.8984876275, 7522453.669827919, 7522540.599074642, 7522610.530036081, 7522690.396944071, 7522848.296376319, 7522971.875, 7523255.773807913, 7523368.552924074, 7523411.493510248, 7523467.1875, 7523615.625, 7523932.169109836, 7524595.864390065, 7525157.260322516, 7525172.115237682, 7525225.919742148, 7525553.789283632, 7525865.625, 7526635.982423034, 7526721.849008562, 7526900.322622786, 7526927.459015347, 7527179.6875, 7527334.12283785, 7543733.851239037, 7544175.0, 7546039.0625, 7546191.651208531, 7546300.6356603615, 7547129.89471021, 7547198.223137034, 7547600.0, 7547755.138677509, 7548269.129897252, 7548357.8125, 7549043.9447749825, 7549912.5, 7566682.8125, 7569249.892300049, 7571787.5, 7578309.455153923, 7578333.6054938175, 7578585.9375, 7578948.4375, 7578956.614929625, 7580343.705269454, 7580650.748919135, 7580759.248303341, 7582265.178779985, 7582499.365915068, 7583077.598946262, 7583367.1875, 7583580.860467471, 7583970.3125, 7584017.1875, 7584046.429728292, 7584300.616184789, 7585872.986118762, 7585938.865761673, 7587281.25, 7587815.068071677, 7587994.245615613, 7588200.911233332, 7589738.7228628015, 7592854.674799958, 7593909.970706823, 7594669.850769609, 7594828.037078569, 7595221.019085855, 7595445.120511594, 7595592.315396611, 7596069.85377531, 7596073.4375, 7596121.602545099, 7596291.853334292, 7596454.517725852, 7596892.283802304, 7597487.766304731, 7597565.625, 7597793.559960772, 7598052.858980454, 7598390.195441465, 7598610.9375, 7598621.413678334, 7598788.829939368, 7611664.0625, 7612425.0, 7612431.25, 7612606.25, 7612728.321697372, 7612772.858610085, 7612939.476416129, 7613170.684650062, 7613631.040380344, 7614102.361268401, 7614578.75587065, 7617312.5, 7617845.972577809, 7618021.875, 7620084.375, 7620723.93732496, 7623260.39495144, 7627776.011598688, 7630516.4288501525, 7631113.457971461, 7631765.625, 7632325.451934146, 7632357.8125, 7632482.4193874365, 7632909.375, 7633395.49435877, 7633600.0, 7633827.663244991, 7633930.587374642, 7634373.4375, 7634452.024759997, 7634490.540892928, 7634547.235522942, 7634740.625, 7634769.491885456, 7634803.082800722, 7634851.5625, 7635417.868688618, 7635431.638035749, 7635769.136497266, 7635777.176456474, 7635925.020592569, 7636409.522745626, 7636741.885066537, 7637115.380223752, 7637243.229135004, 7637263.536036719, 7637493.355399969, 7637815.973031847, 7642073.850710415, 7643668.439098458, 7646450.1865907945, 7646823.105475758, 7647703.016516358, 7647838.993160158, 7650485.9375, 7651589.427454697, 7652097.306067914, 7653054.6875, 7653377.846533391, 7654934.124013354, 7659087.056944172, 7669931.196582337, 7678971.875, 7679901.5625, 7688395.206695617, 7690702.757305106, 7690714.872023817, 7690989.0625, 7692280.733775429, 7704516.215660958, 7705965.484291821, 7718779.6875, 7719570.3125, 7719846.875, 7720802.938675145, 7720856.034684409, 7721317.1875, 7721603.388764851, 7722172.933262522, 7758687.326345924, 7759668.929803203, 7777544.177914214, ...], [6.271165085516691, 94.19042700017403, 9.000908303984057, 10.201175185307964, 27.58634638388823, 8.458239592685917, 5.572814723439383, 18.897428525722564, 24.46345882605037, 13.225850980454062, 31.055808926927295, 31.550624213363797, 27.088165961057918, 27.03688667358555, 71.17845280828993, 5.7078561867784625, 79.3548236510847, 33.79476604603218, 11.127897361937142, 93.49827038388833, 24.394476202692815, 6.730998444383518, 109.9167353690657, 47.96466686118971, 18.467807721360966, 24.329732921866583, 224.8725730266022, 14.120287239111978, 57.60271321405538, 24.714928140170592, 6.91675561790784, 6.377288260357831, 46.317426735674644, 20.39516053794294, 17.581177566052006, 6.527803686043721, 110.33139914145579, 7.47901149449868, 29.966059942809167, 8.43146088019207, 9.149291942067487, 5.181493541708859, 9.296621279684036, 43.0486567201465, 117.70186081561954, 10.68970439325732, 45.02637153975453, 18.05936324667003, 20.93365939536022, 9.155151908640423, 129.4132136134071, 12.576645363009922, 58.630663408882384, 78.81818011388343, 27.708107741371187, 6.7875291660205646, 19.304785861490185, 16.662933869496896, 5.522542829996347, 10.418447265390396, 13.302353411318597, 37.62130175302176, 44.64690763223612, 24.741956541170943, 9.790381392512073, 12.142432479921629, 28.403809632357476, 57.0037275411316, 17.23342863980392, 57.62518090821773, 28.777965888194974, 28.800508258326772, 37.00535562520047, 56.3773472064169, 63.78243030136747, 77.4696054193889, 22.707239304275106, 6.5848157550867485, 28.200155162825588, 35.75263543294155, 22.349247609698928, 20.48947949908089, 11.677885970919583, 5.531005329052469, 22.515938674613572, 67.97916008642142, 41.50204937882565, 6.702310349760499, 21.771278516917558, 95.29265627099925, 40.08854901022066, 24.129104121304376, 49.29873300424212, 8.504094568735743, 5.828332444643175, 43.65802780207699, 23.1439349028962, 109.28531130649446, 73.91374189448297, 14.801237731441844, 82.74852681123781, 44.026687862484536, 11.087891013076513, 213.4256878428635, 26.069340101499463, 20.793709867020382, 5.511443299940862, 109.9354157387808, 57.07189512852701, 29.668664055430064, 95.26934675260728, 13.952496034030098, 55.128401143599525, 13.514012081553016, 90.84328694378596, 74.92580912564789, 76.37789648789595, 17.739730648572326, 7.003932277001613, 80.05727435493381, 5.189270033424871, 5.322378410494484, 62.33870928112521, 18.50141911334423, 6.092716758093859, 59.18094218913712, 41.45505290532161, 27.48547742120613, 19.826238778452094, 63.882616447598366, 35.26482656282412, 8.825105026717594, 7.6147055105835335, 13.036342017195288, 25.134136992802617, 10.7501040489247, 5.343679477242824, 113.73706906947322, 70.18099639813896, 21.034756211240474, 21.028305802261944, 25.68931109258027, 47.93827614018317, 27.834483124080336, 130.84612564942225, 24.452181866276433, 33.14958913999379, 69.72504286780735, 38.156401636998766, 90.42627584264676, 14.883025006772996, 17.09580592821491, 16.212994318503643, 24.989809749756553, 113.49918416899986, 6.158616814826283, 33.34215283762476, 12.863041723317389, 16.322021394816115, 11.931232244916451, 22.554949307092674, 96.81373301828448, 70.62938907986282, 15.64778231714834, 77.46293832818449, 15.982724139213358, 27.705889027394374, 14.538571972972948, 21.405703713738014, 71.72458701284881, 170.2335583812245, 7.250034424160456, 11.627389813363346, 15.707516635767886, 77.09924530975167, 15.887136884082018, 5.576120399252478, 65.23102387187285, 10.089653644358792, 128.81427503319455, 10.308162741177302, 18.05642021063336, 11.795726570548291, 23.35846106498503, 101.35080851212062, 30.065779349362085, 11.108719095770882, 5.765286507103635, 30.493818343967177, 49.4827860697278, 24.93079935007567, 31.567370297598792, 13.909761230104358, 31.07479828668042, 30.128482936421282, 19.3546747262005, 46.20107044823444, 23.307114884404598, 50.891752333660136, 86.75703145039746, 60.45704248921227, 70.78876487488493, 61.07030448595143, 47.6055330065072, 22.726794777629625, 55.615527403159305, 6.858979237270887, 89.80419473008772, 28.959153091592146, 19.34069496602444, 13.541830479346507, 21.475470893209103, 78.0954109303544, 5.563900051397338, 16.634002684708697, 42.029486602307884, 15.916775071655861, 74.52455209044852, 53.90984141057686, 26.84002178005873, 26.990331604466782, 63.09422146149333, 5.559016988039951, 7.403795578110466, 10.930539805139949, 13.596346219449314, 52.222335095655126, 23.224780089460193, 60.02295419065906, 58.48271944756454, 16.713980127895468, 39.14092500233259, 79.10860962773859, 19.812420744089582, 5.435779170508018, 14.764228678648214, 39.9803881911156, 11.432228349269794, 13.762764611845835, 92.22422887940074, 20.210688554508554, 11.977382544799841, 62.65144414328557, 65.96354025958314, 104.97483671537826, 82.01954493797474, 66.9454323475494, 109.77085869017738, 31.88415527911444, 27.372848922370654, 11.99529629051318, 21.381295700159633, 13.958953063056871, 8.68832742254878, 23.951917760281905, 19.73019174110707, 60.15872763357035, 29.694767835835407, 34.89178735211297, 7.760389955428784, 10.849059653607513, 10.66584248854812, 45.023648203362214, 71.0872065827803, 81.19227764597231, 37.321860709148666, 15.349165690994397, 48.377381823434845, 7.740991608679347, 28.00215241133199, 7.407586345941103, 16.812073370746347, 100.20518203068309, 35.226027485309686, 8.220733836055265, 64.55923834430476, 12.707571574805055, 48.61694819515023, 49.96564042019818, 77.05527194345412, 38.53418863716492, 16.407231602612523, 103.49496846625468, 16.648531070402626, 80.9730279749113, 14.242803167280867, 89.03864591148485, 30.818441074600628, 55.11295245157249, 19.94814303956816, 5.220108779462272, 33.643810102464286, 38.001127770700606, 10.485195054126542, 134.29554584198758, 55.4834584668347, 5.718720469562905, 59.91991649109448, 88.36788072782554, 210.104210802428, 14.470809434257049, 42.05535871228057, 120.10483520849559, 72.97235517964154, 46.714236543367775, 68.51355350136862, 20.812576473057142, 17.06917641605496, 38.93676722224995, 83.55891564522285, 22.753384967681495, 32.82595527675311, 8.853034392538587, 53.545015390528064, 11.137626325749723, 8.728533564846028, 10.637627649921235, 5.934049245605062, 10.812805911784146, 20.599503195466347, 8.932228350952004, 21.91752237683423, 10.621529226228516, 39.027782374209444, 17.84400492606973, 62.382412772220675, 20.92374991619709, 18.79132734167783, 84.126921226206, 25.516573803853838, 44.921978213289094, 125.89210677878555, 120.90275461135445, 67.77764845957844, 9.356886768178365, 25.012687072626143, 5.580221334728045, 19.36391134304934, 87.66804516751523, 10.513410098097959, 15.671557610162637, 15.329092747925825, 11.377824499058777, 27.37275610522287, 84.57214527085488, 48.41615871137903, 29.714940600916364, 12.751712796525227, 25.592864256324575, 78.28469345414157, 53.10671629370592, 55.024874289223554, 24.988350691238608, 40.367426710268035, 20.08059830078066, 56.6522059936176, 11.910913260139967, 75.62990271966186, 49.2158846721112, 59.27982719674335, 5.721672739749008, 6.790378732457404, 8.816778574425332, 21.140333034498212, 33.97719074268477, 31.281854176755978, 6.547293137976038, 24.487168924030392, 16.762918211966454, 51.25813274584385, 23.4167471055323, 37.445160211392995, 158.1688962781326, 27.238660581613797, 8.688109751562715, 19.88650847608263, 106.62533243547854, 51.57274311143881, 22.071179431554143, 20.133380997554998, 42.149069260080324, 7.337396011771799, 18.681412909283956, 13.683689085261486, 19.70468110003221, 27.68326438315964, 113.24427463608275, 25.588155130905797, 94.61842152947423, 28.484144835104246, 12.9645077789853, 17.3684431851243, 172.78957319752396, 88.46238536931799, 14.163850152806566, 51.20319215265317, 5.081716775082026, 19.588840393970646, 6.792076545979847, 80.31101804789493, 13.020032161783192, 12.168689807161982, 5.0550981810289555, 62.45210192480732, 10.35159505796398, 88.65467162201017, 31.375052755118162, 30.935434754879278, 9.60641820133294, 9.840694872793643, 21.87485813890978, 37.177534074974545, 25.473992995487787, 44.16350742576139, 9.132864088079552, 21.586817292299024, 13.743673042975695, 7.327630147756377, 10.853672965109288, 18.83087033603765, 7.66604145154555, 15.645050022227013, 62.63590517304943, 81.79236536713364, 167.44288134226218, 43.160439138770954, 35.59338282666316, 49.04163049489611, 16.24324014018198, 147.07917133971247, 112.75250860790155, 75.95206408090162, 6.070916544950781, 63.85307475631904, 14.904549030718051, 7.170397086618168, 66.04942011942595, 55.86550141380499, 136.2218708053807, 22.10957684497907, 20.88230332048164, 17.88121652950996, 28.836327410804106, 184.1289777666263, 23.54467370458648, 10.190869176616982, 25.493852138032672, 64.34742126050018, 7.006066921156642, 53.46116066829762, 11.536252569530955, 10.30430978875307, 61.70529274895513, 28.071955095237847, 6.6114737739037714, 14.007354375269408, 178.1046771652652, 14.05941863141646, 45.720218767231984, 84.04239961224559, 96.23110164166802, 26.45830015367631, 21.217160884503663, 16.120792391270516, 58.40832849080884, 21.99925227509232, 36.69664331482635, 16.363376653443602, 45.122318831679905, 29.988547002527753, 23.802655786472478, 18.123456938913062, 60.85131431236616, 26.4759036395426, 106.37974562848802, 78.59921651472666, 21.721868960141165, 13.666186673145399, 14.966722804233628, 53.08851189204181, 20.477995951276615, 50.37870228317351, 97.70335265838368, 38.68315313727142, 79.89196134811995, 35.57785241506636, 5.28344114207586, 11.360390851433653, 19.997850497447477, 40.64236325235828, 21.740022496539794, 83.28661660686313, 35.33330631683397, 20.584646133641364, 56.99952446228841, 29.331251406790038, 11.95235156311238, 76.37970619615771, 9.479314161298936, 55.11331079611343, 119.46047675269607, 75.54064463459639, 35.559034874988036, 54.33841517893237, 65.8887590983626, 65.2497153656921, 50.150254324502825, 8.790173339153979, 36.27847444266811, 64.62830598237818, 7.561924289499618, 51.118190507529434, 23.72566603714044, 89.41705544484265, 178.54495893060587, 18.472349894266284, 42.43121875147753, 66.07239734982676, 42.69088273421082, 8.387944246637483, 41.63728209866966, 112.29842397858158, 28.337190458657865, 17.029514312208732, 9.280702911763127, 110.97499012853035, 8.498667523906542, 5.115296516876496, 9.61292682780437, 29.045344658662337, 5.090014363764554, 5.519896606149816, 33.067111868917735, 92.69857672638358, 6.448303670945447, 22.07115981327353, 117.65742552332118, 8.191821649977342, 48.371344353775825, 12.49080605434312, 11.175643605182481, 6.051531735591909, 35.10190060015902, 49.266317924818466, 10.834194166004506, 34.46690917773108, 70.93403153682866, 70.54471902675397, 12.187236817229284, 32.45001647326837, 6.629867716953898, 79.05611656017652, 80.59791000825112, 8.125191036230932, 9.60955827918731, 66.6955358452573, 68.1437268837314, 6.85853665216164, 53.6897063274183, 71.56568618674153, 18.962292220270136, 63.62305335193227, 8.159450550562852, 29.74698870576909, 11.100303109356478, 23.266919844556252, 17.62677593355931, 7.180288392514462, 36.325027852039504, 8.572068584861537, 52.62665016170554, 5.959684841643033, 41.702351253358586, 23.365719929848282, 50.553935498789826, 20.9290812120947, 33.31174360585686, 8.638254751329878, 24.203003019211955, 103.59754947720715, 15.05146469644421, 44.69826809715997, 8.486450104818665, 45.17863192126763, 14.476523363369047, 32.48576711289266, 30.739497593278653, 25.12934564141913, 6.311661349047756, 12.980497492432152, 90.54315784596812, 59.40776926439006, 40.02194356021714, 72.62750206032017, 9.882790979534594, 17.738121079316908, 25.120252047084595, 70.44089639132062, 27.072777666256105, 9.567384931877866, 53.768018777968926, 13.14499744024994, 5.257085226910334, 56.34879103397506, 22.281888453589612, 60.84718455794909, 58.622228461378484, 11.095164632789443, 7.157308189003551, 56.772654441320924, 87.59657068983978, 22.98632444477617, 47.27245861404247, 21.72466834646289, 80.4673170602069, 14.134362761058979, 15.570523268100017, 5.919713861074814, 12.069637119203641, 64.82835089242464, 49.11508564379629, 21.438046325948587, 73.74876753399161, 11.145748922122044, 11.640736965355718, 48.16233644665821, 8.963139638426313, 99.21814189171764, 106.8696541979774, 72.45657089580071, 82.53725034222674, 217.36570799055102, 78.44012390407406, 21.47393884885574, 5.507953642937391, 7.08995892180261, 23.319768367543524, 70.22996647981685, 16.15390742593675, 14.857958683072235, 45.068234595673935, 8.490731165817179, 29.543257882619834, 24.38636501040756, 8.904173097776319, 15.292163863401344, 7.1739526218540295, 20.46230079188551, 48.16892587793423, 46.8894696036301, 35.04972027455, 42.29699654519629, 85.885580665358, 36.1136906275422, 33.44323363570266, 23.627582151918812, 13.20443220825547, 5.369054014400901, 6.643131757789634, 67.65181811611026, 38.07423637584658, 44.378995703193276, 16.76393680576779, 25.269383034801063, 60.28187280197562, 75.73748255529894, 27.644078628472524, 31.771355780285255, 9.358272904857207, 18.248104105008302, 59.58320373980759, 36.16216310085064, 66.71022241855424, 106.94637640664571, 63.67965382637085, 14.92091643536848, 68.19505959701401, 5.843329694825089, 47.39625552663929, 59.844091725965185, 14.42069490403131, 21.36661479012727, 37.44714318877649, 82.52507064528086, 5.3424182453711015, 42.59563108282981, 79.13358234444267, 97.56825689424852, 7.14536959953091, 76.85287477754194, 16.120664236641037, 8.767793940301992, 45.97428299927334, 23.11682940828519, 18.429067901738716, 29.526451074293412, 122.69568727149348, 10.94964305239857, 6.284000219086765, 20.26759616061098, 104.56493573872947, 14.497517266631636, 11.774011199967369, 21.45277051122049, 15.069547004668562, 26.684363221093463, 10.870288563844536, 17.023011683834937, 45.76588167385675, 12.411935716463704, 7.118095480897086, 18.925584403171882, 10.081906599796866, 8.404208337411353, 100.66833204168816, 10.305478176990134, 16.459798017847277, 11.698018403371929, 43.91017313334767, 7.493394908091556, 18.528734804157054, 14.72854996765922, 46.64566518218967, 46.88393495738602, 56.32796202624079, 22.264812364688165, 23.88861596747398, 56.42818596944912, 33.2415671181493, 112.14844548314991, 83.16642641815234, 11.217855376858319, 49.699312543942554, 58.84838265618066, 116.80197229062621, 20.16086363924726, 11.078086165618922, 21.349027952561478, 28.802989787102067, 8.617703935433696, 48.30975973646832, 21.926215678961103, 9.235477383010691, 178.3936664205608, 91.53861674216968, 138.08670615696724, 67.50158209303783, 73.65313457028101, 45.61374132485401, 25.487729814219815, 7.909715927494772, 77.43378045754916, 95.41225407374206, 93.76241348486568, 9.080303663397233, 7.354472090850924, 17.91085863804915, 96.23714136584903, 47.19433764625374, 79.32784039342714, 89.7552804995929, 5.544292848468552, 15.147132660671208, 44.687087045753344, 21.85083456057342, 28.37806875338719, 104.1931128361469, 13.694458107943252, 56.075317817845665, 52.19470349370048, 33.40730835194838, 181.73667036384373, 29.675925116580913, 45.87897464623033, 33.54374543859005, 15.35504146001924, 86.25455879378264, 13.042672812408318, 43.169727999627014, 18.332150840505257, 52.270922044823664, 64.01959477255252, 9.710420397259263, 30.185509257834628, 6.371367877050511, 5.150640426286988, 59.138334847790965, 49.352458134864705, 10.52433336706663, 18.70288082845665, 5.398042776320478, 23.87514828393811, 56.011291339867974, 174.9326022955777, 41.27158243772877, 18.233781558861907, 68.86874508141476, 15.441640773430725, 18.122282404427544, 70.09503720036048, 142.0689992530916, 6.073797599522565, 50.58914033010359, 18.72607967582661, 19.121424824526336, 8.64466719929053, 48.038156982606665, 11.625033660508304, 7.312308817542337, 14.072635964552227, 25.754729464035847, 21.07416356143001, 28.77374086071674, 111.71757962336802, 27.87794263328256, 68.11494593167632, 10.410642933274366, 97.10149702416899, 164.5017651071954, 51.31638310510996, 15.297518443080254, 80.83012869129868, 6.920553465710267, 63.43547230532119, 18.784475184714417, 112.79609752242204, 30.873846762416917, 103.15748195945508, 21.942655421181772, 21.09727119548658, 14.981725081510973, 58.34994514906389, 12.10140515523402, 28.021861701752748, 22.46868728294517, 70.01126010023553, 56.465718921171984, 31.623027370205225, 10.456906610733505, 25.160951509960814, 9.850388817853833, 135.44670971073504, 106.93816523124742, 20.17278450034398, 6.577230740764027, 90.71322604076502, 30.935464986497536, 30.611493285784103, 26.04490837454603, 33.13775815586573, 196.9792085873005, 7.114636019108968, 11.672434964443717, 42.75912152568736, 128.9884825398876, 7.514511944634298, 37.62169466281823, 82.70705921730931, 202.0093548762058, 11.873520787761665, 27.8854820892248, 16.663709576798553, 39.552197100855985, 96.49680482870755, 30.033644013707764, 40.15145338723033, 109.31837003423055, 32.04332052248973, 29.863265948865124, 70.90147671042794, 26.247031057547858, 96.94952066785098, 8.329423813779995, 12.643937868512811, 46.54933491779686, 47.095711093281615, 16.542421665823206, 7.587139131980786, 100.33225397945336, 7.088540520620096, 10.495195283721062, 72.58649438615726, 29.8148578753146, 30.654392607941368, 22.670709745999922, 40.00792965745209, 31.052966298941215, 35.307560417037436, 17.958190188330448, 30.547999601094762, 37.84330488922282, 80.9184632425365, 96.79512836053591, 36.159785920110465, 46.2346730520695, 6.697543430536419, 40.404725534517766, 29.757229352570192, 7.005145467636848, 62.88087850541322, 10.010032749941647, 14.528595211615134, 19.511484377457876, 77.77867686014392, 34.047585445230816, 8.14756879230246, 9.063974954652565, 14.331623648962447, 5.402168383763554, 11.571136760185823, 30.01080742920553, 47.687947661996766, 88.31527298536794, 157.7059409011114, 57.664468450101744, 8.969584936760484, 14.12347155569179, 43.14381454940046, 34.37435897523624, 98.4453528584547, 39.25659325249778, 27.206428508090447, 13.115056140802565, 16.79487698451876, 16.578987864093936, 50.44873297895141, 19.212024008841322, 5.310980461988383, 104.43223989600938, 5.750095637599159, 76.92080116209587, 93.51709700608704, 12.01052242215873, 24.7250333994624, 46.13305450786851, 19.446032950027018, 50.43366141085666, 32.60765017421853, 35.951974088649365, 50.0232092611996, 18.299038842785833, 128.1386354111883, 15.683143737784464, 102.31369666157562, 166.44507433833098, 42.25944929524935, 52.921612136593204, 26.685827101400882, 77.69018231303384, 16.520212194148606, 79.72869367543862, 18.79733511135225, 41.26532616008928, 129.6775005392617, 39.30030548097952, 11.793711684233887, 74.70831975682358, 40.74080784493826, 15.422048858947115, 51.94682946686024, 5.518580341508827, 5.521317549409614, 44.442982381942656, 17.097435283964764, 5.785348986921674, 18.209164364095656, 32.5670724033862, 31.272973201127435, 15.703828455868866, 134.49560082575937, 5.3943429364678686, 27.2242529908884, 32.20276080734484, 11.750463871363836, 25.894827224790852, 154.42969522870231, 24.029753896388726, 70.03829416501873, 10.499265439498851, 17.410186691433115, 88.11267352471017, 101.52494692092803, 26.594694554451802, 46.935314598515674, 6.9366508814745504, 53.90134973086409, 34.97612745028631, 12.73781387962958, 26.023691748970204, 56.10380925481051, 101.89139217615411, 62.41947853478661, 14.275899568577213, 117.08242886937465, 65.41453340673702, 67.04110953885154, 49.586149091827544, 77.86996155890375, 7.669590281664298, 11.869634467006483, ...])
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);
([4534748.468832108, 4536542.244256884, 4673807.393945612, 4722297.751087505, 4722301.51323838, 4828969.061096607, 4890571.104891868, 4907360.130911923, 4907369.03397611, 4908468.2130036205, 5020482.1374936355, 5048075.0, 5070544.120661866, 5076494.694090907, 5078551.320252452, 5146650.017241579, 5163812.046656254, 5164464.0625, 5272050.00012191, 5303071.642938754, 5388944.049541532, 5412577.959957583, 5432079.6875, 5450479.6875, 5633052.256803651, 5731552.86901449, 5832759.375, 5961801.328958111, 5962128.125, 6017446.646911293, 6621446.03452935, 6622753.949356299, 6622876.633458332, 6623563.444911711, 6623567.74202413, 6623753.379889096, 6625060.9375, 6625338.705455866, 6632311.663079168, 6653167.451783611, 6653224.776476224, 6653352.241953203, 6655139.021076638, 6655475.0, 6656327.698840982, 6656390.325461083, 6656557.528670111, 6656770.659447482, 6657766.629528384, 6661540.408931836, 6661673.184339035, 6663521.0764880385, 6665443.75, 6665819.613392266, 6666189.377116446, 6666200.119148949, 6666607.061061192, 6667164.451064153, 6667695.093447141, 6668697.9308223445, 6672727.616326297, 6674155.295167601, 6674642.1875, 6678924.773829214, 6686250.497132023, 6689892.752300366, 6690525.673847267, 6690817.1875, 6691405.18195345, 6692860.714529506, 6697971.244415634, 6708892.1875, 6710587.5, 6711119.686191754, 6714157.8125, 6716737.5, 6717263.67616771, 6718124.033811789, 6719132.913191009, 6719217.1875, 6724855.831745493, 6740563.642802529, 6741395.638109279, 6741795.269667069, 6742251.159265791, 6742589.0625, 6745325.0, 6746166.873042017, 6747454.9577811025, 6753131.708613718, 6755337.1205988275, 6758116.91655439, 6779673.4375, 6867906.6398606, 6880103.31710484, 6880608.034018437, 6880626.737311626, 6880864.667877731, 6881084.375, 6881515.587704782, 6881623.4375, 6881700.468260851, 6881704.661876872, 6881725.069021104, 6881800.436533212, 6881807.239409923, 6882079.2334668515, 6882084.759572914, 6882223.4375, 6882610.9375, 6882885.9375, 6882963.776333417, 6883119.059867517, 6883127.692226054, 6883211.69962997, 6883317.1875, 6883356.557966844, 6883499.212538829, 6884563.595741113, 6885442.1875, 6886269.747805531, 6886324.418361168, 6886400.0, 6886536.636758326, 6886842.231786456, 6887004.6875, 6887069.709404134, 6887081.195208273, 6887116.976596633, 6887163.674845976, 6887190.572448056, 6887397.771187064, 6887570.34409594, 6887652.515698526, 6887662.301097196, 6887827.869198746, 6889442.238708489, 6889701.9512859285, 6892390.625, 6893788.515292013, 6894164.286131391, 6894410.775485408, 6894798.4375, 6895980.244102557, 6896253.125, 6896293.502998382, 6896624.657787627, 6897025.0, 6900876.68636628, 6914337.5, 6915234.35957084, 6919206.719775956, 6919219.047875645, 6921313.853682667, 6922390.625, 6922399.089369432, 6925188.875623018, 6926004.009264233, 6926359.6954758745, 6926593.099004644, 6927949.600241295, 6928090.554638984, 6928545.3125, 6929883.897617644, 6931388.89716817, 6940931.49875231, 6957449.555138009, 6959120.934985139, 6959694.260591214, 6959904.5447677355, 6960150.0, 6961369.21756368, 6962110.872105774, 6962365.812432728, 6966532.768303214, 6966679.915285501, 6969622.73102609, 6971602.890666358, 6971667.966060857, 6971820.356749812, 6979874.403725695, 6981500.631693884, 7054830.076604555, 7071994.588050147, 7076435.9375, 7101628.125, 7101835.9253181955, 7101854.006973656, 7102504.963599038, 7103094.361580047, 7232841.262180262, 7232990.040381241, 7299343.4501356715, 7312595.886590059, 7312613.113850836, 7312658.630109662, 7312853.849249079, 7313034.039457915, 7313082.8125, 7313309.375, 7313500.0, 7313535.753387395, 7313550.0, 7313707.4441599585, 7313723.052875678, 7313784.375, 7313966.085119665, 7313984.8671374675, 7314090.57342744, 7314166.440779055, 7314197.544496528, 7314226.060730924, 7314231.7089431435, 7314274.056576132, 7314339.445432501, 7314340.625, 7314340.859323581, 7314359.375, 7314421.875, 7314490.533647788, 7314526.9215493435, 7314972.641030248, 7314997.398070071, 7315357.22521835, 7315895.182587021, 7315974.5958132995, 7335739.890765433, 7353759.914303941, 7358184.375, 7360282.8125, 7367139.167124862, 7368996.875, 7369350.0, 7370424.313223092, 7373333.755219946, 7394872.58311634, 7410650.409779564, 7412682.998962494, 7417969.964570638, 7419264.016843766, 7419275.923558881, 7422275.483148528, 7422411.4326293, 7422632.8125, 7422707.211512396, 7422916.9499308625, 7423000.669506256, 7423203.668763751, 7423460.807749341, 7423848.299602056, 7423917.283224747, 7424015.598226393, 7424038.778392501, 7424041.314582093, 7424045.028087823, 7424151.198316187, 7424220.3125, 7424239.541792696, 7424304.6875, 7424350.414560431, 7424420.126602874, 7424480.932951747, 7424545.3125, 7424575.0, 7424657.581531474, 7424807.8125, 7424807.915494345, 7424815.108892112, 7424826.927958955, 7424881.2230371125, 7424966.612091829, 7425058.229680798, 7425075.669208624, 7425077.99728301, 7425135.810878433, 7425146.632690869, 7425161.75749352, 7425193.458971015, 7425194.443321448, 7425204.6875, 7425228.125, 7425236.275354877, 7425237.5, 7425353.5107638575, 7425368.75, 7425371.67875699, 7425390.625, 7425426.285470111, 7425428.125, 7425438.782391102, 7425447.517610779, 7425460.9375, 7425489.0625, 7425491.733487898, 7425495.3125, 7425509.375, 7425522.061336352, 7425554.6875, 7425569.336314104, 7425587.738231614, 7425642.058270601, 7425646.875, 7425647.598411357, 7425672.562639095, 7425680.788451987, 7425689.0625, 7425696.303963021, 7425702.465438232, 7425715.625, 7425718.75, 7425723.055192237, 7425731.7516128225, 7425739.999336416, 7425779.6875, 7425792.193836947, 7425805.439149509, 7425830.912077222, 7425854.625788177, 7425859.163740487, 7425863.467999106, 7425871.361911406, 7425873.916874914, 7425877.775082957, 7425904.6875, 7425916.222873089, 7425917.597093619, 7425922.270357358, 7425930.727451131, 7425967.678209865, 7426084.201715222, 7426084.375, 7426090.625, 7426107.8125, 7426124.710449734, 7426132.842485274, 7426185.730263451, 7426239.996998973, 7426263.318817302, 7426268.635468986, 7426274.567907971, 7426276.741700675, 7426292.285601726, 7426300.154333585, 7426348.942971935, 7426357.495195679, 7426379.175855228, 7426540.390516718, 7426588.338482724, 7426617.806332377, 7426722.9901572205, 7426773.4375, 7426848.4375, 7426937.291081729, 7427058.566841323, 7427077.47069994, 7427081.25, 7427091.07426043, 7427154.6875, 7427189.0625, 7427198.4375, 7427201.794328027, 7427207.9456276605, 7427243.071470397, 7427251.578436408, 7427282.8125, 7427285.9375, 7427325.373584529, 7427355.488307675, 7427394.565538298, 7427417.1875, 7427421.54839508, 7427437.5, 7427441.607126658, 7427446.806471193, 7427489.751742947, 7427541.211790731, 7427560.9375, 7427593.75, 7427631.3958588075, 7427650.914462158, 7427688.27891118, 7427713.2623766465, 7427717.9128962215, 7427768.375589128, 7427785.237356452, 7427831.612174491, 7427854.6875, 7427856.081407752, 7427867.313502445, 7427871.872924253, 7427897.799960783, 7427900.371232231, 7427905.18362801, 7427914.0625, 7427937.279826999, 7427963.769958132, 7428028.817893762, 7428028.972774091, 7428056.391440959, 7428075.310503746, 7428085.321828184, 7428102.139972846, 7428107.039149425, 7428110.9375, 7428144.751902853, 7428157.6121634245, 7428159.375, 7428185.9375, 7428211.245774477, 7428247.421585663, 7428310.474936417, 7428351.458948284, 7428399.823908752, 7428406.126446771, 7428424.755478011, 7428436.03656932, 7428491.833217853, 7428492.917775389, 7428510.754810017, 7428542.934106453, 7428567.357867922, 7428606.423098807, 7428614.0625, 7428659.375, 7428663.403735624, 7428704.6875, 7428768.75, 7428795.3125, 7428814.413310054, 7428826.5625, 7428829.246266023, 7428835.726290846, 7428842.020631192, 7428870.128308535, 7428887.490269095, 7428887.682980884, 7428974.080255269, 7429003.125, 7429070.254923743, 7429082.32299908, 7429104.124010198, 7429115.307643889, 7429167.1875, 7429301.357743837, 7429357.450937104, 7429366.492230619, 7429406.869213334, 7429607.719007483, 7429819.854585844, 7429963.511822305, 7430068.996543576, 7430077.525535638, 7430209.375, 7430258.42189765, 7430467.937584936, 7430491.875240641, 7430498.4375, 7430515.3725777, 7430576.5625, 7430621.534720066, 7430621.875, 7430648.323522008, 7430655.586904047, 7430664.340936738, 7430730.82059407, 7430801.111785346, 7430812.975002298, 7430825.729187883, 7430867.1875, 7430886.260629159, 7430915.839998291, 7430933.177422103, 7430937.452200282, 7430957.230693513, 7430975.114779934, 7430982.8125, 7430988.585131216, 7431069.932167091, 7431071.881599337, 7431096.700116613, 7431144.704341216, 7431163.691764485, 7431171.875, 7431190.625, 7431214.0625, 7431251.5625, 7431306.000468699, 7431307.956432617, 7431316.523297659, 7431346.875, 7431358.899401596, 7431368.75, 7431378.125, 7431397.841340075, 7431415.625, 7431423.4375, 7431442.657956395, 7431446.875, 7431459.544896479, 7431460.9375, 7431471.209495035, 7431514.1088452265, 7431518.75, 7431532.8125, 7431580.890021472, 7431582.689069814, 7431599.525033958, 7431605.532128724, 7431634.375, 7431637.125229393, 7431649.884311534, 7431656.154850603, 7431665.617241604, 7431681.25, 7431714.894664109, 7431788.194974592, 7431815.625, 7431832.8125, 7431838.3448831905, 7431856.436890467, 7431862.5, 7431876.292409014, 7431898.4279423505, 7431927.020198068, 7431959.314424321, 7431962.5, 7431970.693129238, 7431986.774629589, 7431995.62768098, 7432032.8125, 7432043.31627791, 7432046.600325945, 7432065.625, 7432129.6875, 7432140.373020881, 7432162.056058948, 7432229.6875, 7432232.6289118165, 7432285.4131417805, 7432288.226293013, 7432289.09295352, 7432363.703362777, 7432370.3125, 7432391.828690621, 7432440.42873751, 7432440.497668744, 7432460.833565394, 7432467.1875, 7432709.961373039, 7432739.0625, 7432747.729103662, 7432829.6875, 7432832.099686928, 7432935.619316748, 7432994.061608639, 7433002.601912343, 7433040.625, 7433047.333067043, 7433153.125, 7433178.125, 7433224.2023990005, 7433279.775051694, 7433287.251607577, 7433429.883072834, 7433436.474634243, 7433518.411155302, 7433553.6871677395, 7433656.469194174, 7433788.821486047, 7433877.065980226, 7433884.375, 7433929.9174562385, 7433930.4938357305, 7434484.04424818, 7434882.8125, 7435133.010177024, 7435334.022349458, 7435747.485661239, 7435853.887134338, 7435990.625, 7436119.608966152, 7436164.0625, 7436273.797259145, 7436647.935300612, 7436798.30991128, 7437123.359969347, 7437194.81358863, 7438087.300770263, 7439997.219001721, 7442324.36878688, 7442326.5625, 7443878.125, 7445181.25, 7445821.534554777, 7445841.212272977, 7445927.249592057, 7445986.515826714, 7446562.5, 7446628.047071067, 7446675.266494475, 7446765.625, 7446847.87003535, 7447026.983577476, 7447065.625, 7447412.808477507, 7447577.669999996, 7447658.485068482, 7447662.479080289, 7447753.259670444, 7447773.4375, 7448298.4375, 7448314.5582367, 7448321.50565587, 7448398.59714231, 7448570.558038923, 7448938.8332907045, 7449176.718288965, 7450816.958570423, 7451347.404217396, 7454174.785103956, 7454554.34811697, 7455233.869463339, 7455234.375, 7455445.324012204, 7455686.242667792, 7455810.9375, 7456076.092306427, 7456164.0625, 7456423.4375, 7456537.5, 7456692.48182922, 7456756.342056973, 7456810.956861173, 7456846.3730770135, 7456855.72116983, 7456923.3163261525, 7456938.245065864, 7456956.25, 7456981.716014153, 7457031.227905416, 7457062.374612154, 7457069.117086128, 7457089.0625, 7457104.43568314, 7457110.384977073, 7457115.714053774, 7457122.071027202, 7457144.702562008, 7457170.3125, 7457203.125, 7457204.033437297, 7457225.0, 7457235.949082066, 7457276.5625, 7457287.5, 7457294.780742944, 7457301.017486419, 7457314.83350326, 7457318.115583093, 7457319.374954691, 7457345.334497305, 7457364.238112682, 7457383.220519499, 7457407.622763809, 7457493.75, 7457501.212210902, 7457520.266381994, 7457526.287609584, 7457535.969107546, 7457570.973827298, 7457588.700468522, 7457589.625377556, 7457622.815857882, 7457646.875, 7457656.25, 7457698.681581145, 7457700.0, 7457739.451434397, 7457754.6875, 7457806.25, 7457810.793801205, 7457815.11222626, 7457826.250939734, 7457878.801222508, 7457887.514484127, 7457901.525825363, 7457905.050265323, 7457920.494836339, 7457925.090213125, 7457956.227581867, 7457983.090909508, 7458050.811170072, 7458057.8125, 7458063.711198216, 7458064.751063675, 7458078.8232937595, 7458081.25, 7458082.695513027, 7458126.69433899, 7458172.805198741, 7458180.64464976, 7458184.25342356, 7458186.315055027, 7458222.933447611, 7458243.730303312, 7458250.57275084, 7458298.266323537, 7458312.9565065345, 7458328.125, 7458344.440951894, 7458349.987217138, 7458352.155977923, 7458353.896645357, 7458390.841009494, 7458406.640514618, 7458457.214003442, 7458497.223454191, 7458548.774101084, 7458598.4375, 7458743.435734241, 7458777.014247429, 7458815.567982637, 7458823.4375, 7458823.4375, 7458829.6875, 7458856.629417206, 7458874.588238816, 7458876.5625, 7458928.464504944, 7458979.6875, 7459013.618072974, 7459031.306918715, 7459062.5, 7459068.75, 7459099.3127456745, 7459124.355206203, 7459145.2805206, 7459161.985435128, 7459192.1875, 7459197.452736251, 7459207.8125, 7459210.479848695, 7459213.946831734, 7459246.4794676015, 7459249.314836629, 7459302.961357995, 7459315.625, 7459390.559717698, 7459459.375, 7459518.214038716, 7459541.399690099, 7459549.0450004265, 7459557.8125, 7459600.0, 7459637.187317855, 7459646.130508019, 7459722.181459663, 7459757.273785054, 7459764.8431228725, 7459773.4375, 7459790.406384577, 7459801.791379187, 7459806.302921569, 7459825.969310411, 7459903.258520995, 7460032.805032774, 7460042.1875, 7460088.691721877, 7460290.31315424, 7460326.5625, 7460387.5, 7460399.083557159, 7460400.0, 7460400.671630196, 7460509.473060672, 7460522.792218255, 7460577.89013691, 7460596.268164793, 7460681.097106606, 7460694.424064543, 7460793.533654658, 7461164.0625, 7461241.041632291, 7461256.25, 7461275.78229362, 7461324.3564738985, 7461362.5, 7461367.004417187, 7461430.826340509, 7461456.97846998, 7461751.551214574, 7462004.397177331, 7462038.470556898, 7462253.574276387, 7462262.5, 7463149.096641359, 7476651.766258309, 7497365.75030597, 7498281.53932473, 7498810.9375, 7499284.375, 7499298.298840747, 7499303.125, 7499319.481781262, 7499498.767426989, 7500011.55837049, 7500340.625, 7500581.546464288, 7500616.304488266, 7500684.126697558, 7500757.654706148, 7500859.493405454, 7501048.4375, 7501263.532209991, 7502081.216458532, 7502362.5, 7502622.924588969, 7505519.619703775, 7506576.5625, 7508071.802007231, 7508700.09036948, 7508792.1875, 7509369.48883539, 7509934.375, 7510737.636050653, 7513373.4375, 7513567.2325074235, 7517314.374163614, 7517469.10547514, 7518435.913295058, 7519254.698011191, 7520636.8984876275, 7522453.669827919, 7522540.599074642, 7522610.530036081, 7522690.396944071, 7522848.296376319, 7522971.875, 7523255.773807913, 7523368.552924074, 7523411.493510248, 7523467.1875, 7523615.625, 7523932.169109836, 7524595.864390065, 7525157.260322516, 7525172.115237682, 7525225.919742148, 7525553.789283632, 7525865.625, 7526635.982423034, 7526721.849008562, 7526900.322622786, 7526927.459015347, 7527179.6875, 7527334.12283785, 7543733.851239037, 7544175.0, 7546039.0625, 7546191.651208531, 7546300.6356603615, 7547129.89471021, 7547198.223137034, 7547600.0, 7547755.138677509, 7548269.129897252, 7548357.8125, 7549043.9447749825, 7549912.5, 7566682.8125, 7569249.892300049, 7571787.5, 7578309.455153923, 7578333.6054938175, 7578585.9375, 7578948.4375, 7578956.614929625, 7580343.705269454, 7580650.748919135, 7580759.248303341, 7582265.178779985, 7582499.365915068, 7583077.598946262, 7583367.1875, 7583580.860467471, 7583970.3125, 7584017.1875, 7584046.429728292, 7584300.616184789, 7585872.986118762, 7585938.865761673, 7587281.25, 7587815.068071677, 7587994.245615613, 7588200.911233332, 7589738.7228628015, 7592854.674799958, 7593909.970706823, 7594669.850769609, 7594828.037078569, 7595221.019085855, 7595445.120511594, 7595592.315396611, 7596069.85377531, 7596073.4375, 7596121.602545099, 7596291.853334292, 7596454.517725852, 7596892.283802304, 7597487.766304731, 7597565.625, 7597793.559960772, 7598052.858980454, 7598390.195441465, 7598610.9375, 7598621.413678334, 7598788.829939368, 7611664.0625, 7612425.0, 7612431.25, 7612606.25, 7612728.321697372, 7612772.858610085, 7612939.476416129, 7613170.684650062, 7613631.040380344, 7614102.361268401, 7614578.75587065, 7617312.5, 7617845.972577809, 7618021.875, 7620084.375, 7620723.93732496, 7623260.39495144, 7627776.011598688, 7630516.4288501525, 7631113.457971461, 7631765.625, 7632325.451934146, 7632357.8125, 7632482.4193874365, 7632909.375, 7633395.49435877, 7633600.0, 7633827.663244991, 7633930.587374642, 7634373.4375, 7634452.024759997, 7634490.540892928, 7634547.235522942, 7634740.625, 7634769.491885456, 7634803.082800722, 7634851.5625, 7635417.868688618, 7635431.638035749, 7635769.136497266, 7635777.176456474, 7635925.020592569, 7636409.522745626, 7636741.885066537, 7637115.380223752, 7637243.229135004, 7637263.536036719, 7637493.355399969, 7637815.973031847, 7642073.850710415, 7643668.439098458, 7646450.1865907945, 7646823.105475758, 7647703.016516358, 7647838.993160158, 7650485.9375, 7651589.427454697, 7652097.306067914, 7653054.6875, 7653377.846533391, 7654934.124013354, 7659087.056944172, 7669931.196582337, 7678971.875, 7679901.5625, 7688395.206695617, 7690702.757305106, 7690714.872023817, 7690989.0625, 7692280.733775429, 7704516.215660958, 7705965.484291821, 7718779.6875, 7719570.3125, 7719846.875, 7720802.938675145, 7720856.034684409, 7721317.1875, 7721603.388764851, 7722172.933262522, 7758687.326345924, 7759668.929803203, 7777544.177914214, ...], [6.271165085516691, 94.19042700017403, 9.000908303984057, 10.201175185307964, 27.58634638388823, 8.458239592685917, 5.572814723439383, 18.897428525722564, 24.46345882605037, 13.225850980454062, 31.055808926927295, 31.550624213363797, 27.088165961057918, 27.03688667358555, 71.17845280828993, 5.7078561867784625, 79.3548236510847, 33.79476604603218, 11.127897361937142, 93.49827038388833, 24.394476202692815, 6.730998444383518, 109.9167353690657, 47.96466686118971, 18.467807721360966, 24.329732921866583, 224.8725730266022, 14.120287239111978, 57.60271321405538, 24.714928140170592, 6.91675561790784, 6.377288260357831, 46.317426735674644, 20.39516053794294, 17.581177566052006, 6.527803686043721, 110.33139914145579, 7.47901149449868, 29.966059942809167, 8.43146088019207, 9.149291942067487, 5.181493541708859, 9.296621279684036, 43.0486567201465, 117.70186081561954, 10.68970439325732, 45.02637153975453, 18.05936324667003, 20.93365939536022, 9.155151908640423, 129.4132136134071, 12.576645363009922, 58.630663408882384, 78.81818011388343, 27.708107741371187, 6.7875291660205646, 19.304785861490185, 16.662933869496896, 5.522542829996347, 10.418447265390396, 13.302353411318597, 37.62130175302176, 44.64690763223612, 24.741956541170943, 9.790381392512073, 12.142432479921629, 28.403809632357476, 57.0037275411316, 17.23342863980392, 57.62518090821773, 28.777965888194974, 28.800508258326772, 37.00535562520047, 56.3773472064169, 63.78243030136747, 77.4696054193889, 22.707239304275106, 6.5848157550867485, 28.200155162825588, 35.75263543294155, 22.349247609698928, 20.48947949908089, 11.677885970919583, 5.531005329052469, 22.515938674613572, 67.97916008642142, 41.50204937882565, 6.702310349760499, 21.771278516917558, 95.29265627099925, 40.08854901022066, 24.129104121304376, 49.29873300424212, 8.504094568735743, 5.828332444643175, 43.65802780207699, 23.1439349028962, 109.28531130649446, 73.91374189448297, 14.801237731441844, 82.74852681123781, 44.026687862484536, 11.087891013076513, 213.4256878428635, 26.069340101499463, 20.793709867020382, 5.511443299940862, 109.9354157387808, 57.07189512852701, 29.668664055430064, 95.26934675260728, 13.952496034030098, 55.128401143599525, 13.514012081553016, 90.84328694378596, 74.92580912564789, 76.37789648789595, 17.739730648572326, 7.003932277001613, 80.05727435493381, 5.189270033424871, 5.322378410494484, 62.33870928112521, 18.50141911334423, 6.092716758093859, 59.18094218913712, 41.45505290532161, 27.48547742120613, 19.826238778452094, 63.882616447598366, 35.26482656282412, 8.825105026717594, 7.6147055105835335, 13.036342017195288, 25.134136992802617, 10.7501040489247, 5.343679477242824, 113.73706906947322, 70.18099639813896, 21.034756211240474, 21.028305802261944, 25.68931109258027, 47.93827614018317, 27.834483124080336, 130.84612564942225, 24.452181866276433, 33.14958913999379, 69.72504286780735, 38.156401636998766, 90.42627584264676, 14.883025006772996, 17.09580592821491, 16.212994318503643, 24.989809749756553, 113.49918416899986, 6.158616814826283, 33.34215283762476, 12.863041723317389, 16.322021394816115, 11.931232244916451, 22.554949307092674, 96.81373301828448, 70.62938907986282, 15.64778231714834, 77.46293832818449, 15.982724139213358, 27.705889027394374, 14.538571972972948, 21.405703713738014, 71.72458701284881, 170.2335583812245, 7.250034424160456, 11.627389813363346, 15.707516635767886, 77.09924530975167, 15.887136884082018, 5.576120399252478, 65.23102387187285, 10.089653644358792, 128.81427503319455, 10.308162741177302, 18.05642021063336, 11.795726570548291, 23.35846106498503, 101.35080851212062, 30.065779349362085, 11.108719095770882, 5.765286507103635, 30.493818343967177, 49.4827860697278, 24.93079935007567, 31.567370297598792, 13.909761230104358, 31.07479828668042, 30.128482936421282, 19.3546747262005, 46.20107044823444, 23.307114884404598, 50.891752333660136, 86.75703145039746, 60.45704248921227, 70.78876487488493, 61.07030448595143, 47.6055330065072, 22.726794777629625, 55.615527403159305, 6.858979237270887, 89.80419473008772, 28.959153091592146, 19.34069496602444, 13.541830479346507, 21.475470893209103, 78.0954109303544, 5.563900051397338, 16.634002684708697, 42.029486602307884, 15.916775071655861, 74.52455209044852, 53.90984141057686, 26.84002178005873, 26.990331604466782, 63.09422146149333, 5.559016988039951, 7.403795578110466, 10.930539805139949, 13.596346219449314, 52.222335095655126, 23.224780089460193, 60.02295419065906, 58.48271944756454, 16.713980127895468, 39.14092500233259, 79.10860962773859, 19.812420744089582, 5.435779170508018, 14.764228678648214, 39.9803881911156, 11.432228349269794, 13.762764611845835, 92.22422887940074, 20.210688554508554, 11.977382544799841, 62.65144414328557, 65.96354025958314, 104.97483671537826, 82.01954493797474, 66.9454323475494, 109.77085869017738, 31.88415527911444, 27.372848922370654, 11.99529629051318, 21.381295700159633, 13.958953063056871, 8.68832742254878, 23.951917760281905, 19.73019174110707, 60.15872763357035, 29.694767835835407, 34.89178735211297, 7.760389955428784, 10.849059653607513, 10.66584248854812, 45.023648203362214, 71.0872065827803, 81.19227764597231, 37.321860709148666, 15.349165690994397, 48.377381823434845, 7.740991608679347, 28.00215241133199, 7.407586345941103, 16.812073370746347, 100.20518203068309, 35.226027485309686, 8.220733836055265, 64.55923834430476, 12.707571574805055, 48.61694819515023, 49.96564042019818, 77.05527194345412, 38.53418863716492, 16.407231602612523, 103.49496846625468, 16.648531070402626, 80.9730279749113, 14.242803167280867, 89.03864591148485, 30.818441074600628, 55.11295245157249, 19.94814303956816, 5.220108779462272, 33.643810102464286, 38.001127770700606, 10.485195054126542, 134.29554584198758, 55.4834584668347, 5.718720469562905, 59.91991649109448, 88.36788072782554, 210.104210802428, 14.470809434257049, 42.05535871228057, 120.10483520849559, 72.97235517964154, 46.714236543367775, 68.51355350136862, 20.812576473057142, 17.06917641605496, 38.93676722224995, 83.55891564522285, 22.753384967681495, 32.82595527675311, 8.853034392538587, 53.545015390528064, 11.137626325749723, 8.728533564846028, 10.637627649921235, 5.934049245605062, 10.812805911784146, 20.599503195466347, 8.932228350952004, 21.91752237683423, 10.621529226228516, 39.027782374209444, 17.84400492606973, 62.382412772220675, 20.92374991619709, 18.79132734167783, 84.126921226206, 25.516573803853838, 44.921978213289094, 125.89210677878555, 120.90275461135445, 67.77764845957844, 9.356886768178365, 25.012687072626143, 5.580221334728045, 19.36391134304934, 87.66804516751523, 10.513410098097959, 15.671557610162637, 15.329092747925825, 11.377824499058777, 27.37275610522287, 84.57214527085488, 48.41615871137903, 29.714940600916364, 12.751712796525227, 25.592864256324575, 78.28469345414157, 53.10671629370592, 55.024874289223554, 24.988350691238608, 40.367426710268035, 20.08059830078066, 56.6522059936176, 11.910913260139967, 75.62990271966186, 49.2158846721112, 59.27982719674335, 5.721672739749008, 6.790378732457404, 8.816778574425332, 21.140333034498212, 33.97719074268477, 31.281854176755978, 6.547293137976038, 24.487168924030392, 16.762918211966454, 51.25813274584385, 23.4167471055323, 37.445160211392995, 158.1688962781326, 27.238660581613797, 8.688109751562715, 19.88650847608263, 106.62533243547854, 51.57274311143881, 22.071179431554143, 20.133380997554998, 42.149069260080324, 7.337396011771799, 18.681412909283956, 13.683689085261486, 19.70468110003221, 27.68326438315964, 113.24427463608275, 25.588155130905797, 94.61842152947423, 28.484144835104246, 12.9645077789853, 17.3684431851243, 172.78957319752396, 88.46238536931799, 14.163850152806566, 51.20319215265317, 5.081716775082026, 19.588840393970646, 6.792076545979847, 80.31101804789493, 13.020032161783192, 12.168689807161982, 5.0550981810289555, 62.45210192480732, 10.35159505796398, 88.65467162201017, 31.375052755118162, 30.935434754879278, 9.60641820133294, 9.840694872793643, 21.87485813890978, 37.177534074974545, 25.473992995487787, 44.16350742576139, 9.132864088079552, 21.586817292299024, 13.743673042975695, 7.327630147756377, 10.853672965109288, 18.83087033603765, 7.66604145154555, 15.645050022227013, 62.63590517304943, 81.79236536713364, 167.44288134226218, 43.160439138770954, 35.59338282666316, 49.04163049489611, 16.24324014018198, 147.07917133971247, 112.75250860790155, 75.95206408090162, 6.070916544950781, 63.85307475631904, 14.904549030718051, 7.170397086618168, 66.04942011942595, 55.86550141380499, 136.2218708053807, 22.10957684497907, 20.88230332048164, 17.88121652950996, 28.836327410804106, 184.1289777666263, 23.54467370458648, 10.190869176616982, 25.493852138032672, 64.34742126050018, 7.006066921156642, 53.46116066829762, 11.536252569530955, 10.30430978875307, 61.70529274895513, 28.071955095237847, 6.6114737739037714, 14.007354375269408, 178.1046771652652, 14.05941863141646, 45.720218767231984, 84.04239961224559, 96.23110164166802, 26.45830015367631, 21.217160884503663, 16.120792391270516, 58.40832849080884, 21.99925227509232, 36.69664331482635, 16.363376653443602, 45.122318831679905, 29.988547002527753, 23.802655786472478, 18.123456938913062, 60.85131431236616, 26.4759036395426, 106.37974562848802, 78.59921651472666, 21.721868960141165, 13.666186673145399, 14.966722804233628, 53.08851189204181, 20.477995951276615, 50.37870228317351, 97.70335265838368, 38.68315313727142, 79.89196134811995, 35.57785241506636, 5.28344114207586, 11.360390851433653, 19.997850497447477, 40.64236325235828, 21.740022496539794, 83.28661660686313, 35.33330631683397, 20.584646133641364, 56.99952446228841, 29.331251406790038, 11.95235156311238, 76.37970619615771, 9.479314161298936, 55.11331079611343, 119.46047675269607, 75.54064463459639, 35.559034874988036, 54.33841517893237, 65.8887590983626, 65.2497153656921, 50.150254324502825, 8.790173339153979, 36.27847444266811, 64.62830598237818, 7.561924289499618, 51.118190507529434, 23.72566603714044, 89.41705544484265, 178.54495893060587, 18.472349894266284, 42.43121875147753, 66.07239734982676, 42.69088273421082, 8.387944246637483, 41.63728209866966, 112.29842397858158, 28.337190458657865, 17.029514312208732, 9.280702911763127, 110.97499012853035, 8.498667523906542, 5.115296516876496, 9.61292682780437, 29.045344658662337, 5.090014363764554, 5.519896606149816, 33.067111868917735, 92.69857672638358, 6.448303670945447, 22.07115981327353, 117.65742552332118, 8.191821649977342, 48.371344353775825, 12.49080605434312, 11.175643605182481, 6.051531735591909, 35.10190060015902, 49.266317924818466, 10.834194166004506, 34.46690917773108, 70.93403153682866, 70.54471902675397, 12.187236817229284, 32.45001647326837, 6.629867716953898, 79.05611656017652, 80.59791000825112, 8.125191036230932, 9.60955827918731, 66.6955358452573, 68.1437268837314, 6.85853665216164, 53.6897063274183, 71.56568618674153, 18.962292220270136, 63.62305335193227, 8.159450550562852, 29.74698870576909, 11.100303109356478, 23.266919844556252, 17.62677593355931, 7.180288392514462, 36.325027852039504, 8.572068584861537, 52.62665016170554, 5.959684841643033, 41.702351253358586, 23.365719929848282, 50.553935498789826, 20.9290812120947, 33.31174360585686, 8.638254751329878, 24.203003019211955, 103.59754947720715, 15.05146469644421, 44.69826809715997, 8.486450104818665, 45.17863192126763, 14.476523363369047, 32.48576711289266, 30.739497593278653, 25.12934564141913, 6.311661349047756, 12.980497492432152, 90.54315784596812, 59.40776926439006, 40.02194356021714, 72.62750206032017, 9.882790979534594, 17.738121079316908, 25.120252047084595, 70.44089639132062, 27.072777666256105, 9.567384931877866, 53.768018777968926, 13.14499744024994, 5.257085226910334, 56.34879103397506, 22.281888453589612, 60.84718455794909, 58.622228461378484, 11.095164632789443, 7.157308189003551, 56.772654441320924, 87.59657068983978, 22.98632444477617, 47.27245861404247, 21.72466834646289, 80.4673170602069, 14.134362761058979, 15.570523268100017, 5.919713861074814, 12.069637119203641, 64.82835089242464, 49.11508564379629, 21.438046325948587, 73.74876753399161, 11.145748922122044, 11.640736965355718, 48.16233644665821, 8.963139638426313, 99.21814189171764, 106.8696541979774, 72.45657089580071, 82.53725034222674, 217.36570799055102, 78.44012390407406, 21.47393884885574, 5.507953642937391, 7.08995892180261, 23.319768367543524, 70.22996647981685, 16.15390742593675, 14.857958683072235, 45.068234595673935, 8.490731165817179, 29.543257882619834, 24.38636501040756, 8.904173097776319, 15.292163863401344, 7.1739526218540295, 20.46230079188551, 48.16892587793423, 46.8894696036301, 35.04972027455, 42.29699654519629, 85.885580665358, 36.1136906275422, 33.44323363570266, 23.627582151918812, 13.20443220825547, 5.369054014400901, 6.643131757789634, 67.65181811611026, 38.07423637584658, 44.378995703193276, 16.76393680576779, 25.269383034801063, 60.28187280197562, 75.73748255529894, 27.644078628472524, 31.771355780285255, 9.358272904857207, 18.248104105008302, 59.58320373980759, 36.16216310085064, 66.71022241855424, 106.94637640664571, 63.67965382637085, 14.92091643536848, 68.19505959701401, 5.843329694825089, 47.39625552663929, 59.844091725965185, 14.42069490403131, 21.36661479012727, 37.44714318877649, 82.52507064528086, 5.3424182453711015, 42.59563108282981, 79.13358234444267, 97.56825689424852, 7.14536959953091, 76.85287477754194, 16.120664236641037, 8.767793940301992, 45.97428299927334, 23.11682940828519, 18.429067901738716, 29.526451074293412, 122.69568727149348, 10.94964305239857, 6.284000219086765, 20.26759616061098, 104.56493573872947, 14.497517266631636, 11.774011199967369, 21.45277051122049, 15.069547004668562, 26.684363221093463, 10.870288563844536, 17.023011683834937, 45.76588167385675, 12.411935716463704, 7.118095480897086, 18.925584403171882, 10.081906599796866, 8.404208337411353, 100.66833204168816, 10.305478176990134, 16.459798017847277, 11.698018403371929, 43.91017313334767, 7.493394908091556, 18.528734804157054, 14.72854996765922, 46.64566518218967, 46.88393495738602, 56.32796202624079, 22.264812364688165, 23.88861596747398, 56.42818596944912, 33.2415671181493, 112.14844548314991, 83.16642641815234, 11.217855376858319, 49.699312543942554, 58.84838265618066, 116.80197229062621, 20.16086363924726, 11.078086165618922, 21.349027952561478, 28.802989787102067, 8.617703935433696, 48.30975973646832, 21.926215678961103, 9.235477383010691, 178.3936664205608, 91.53861674216968, 138.08670615696724, 67.50158209303783, 73.65313457028101, 45.61374132485401, 25.487729814219815, 7.909715927494772, 77.43378045754916, 95.41225407374206, 93.76241348486568, 9.080303663397233, 7.354472090850924, 17.91085863804915, 96.23714136584903, 47.19433764625374, 79.32784039342714, 89.7552804995929, 5.544292848468552, 15.147132660671208, 44.687087045753344, 21.85083456057342, 28.37806875338719, 104.1931128361469, 13.694458107943252, 56.075317817845665, 52.19470349370048, 33.40730835194838, 181.73667036384373, 29.675925116580913, 45.87897464623033, 33.54374543859005, 15.35504146001924, 86.25455879378264, 13.042672812408318, 43.169727999627014, 18.332150840505257, 52.270922044823664, 64.01959477255252, 9.710420397259263, 30.185509257834628, 6.371367877050511, 5.150640426286988, 59.138334847790965, 49.352458134864705, 10.52433336706663, 18.70288082845665, 5.398042776320478, 23.87514828393811, 56.011291339867974, 174.9326022955777, 41.27158243772877, 18.233781558861907, 68.86874508141476, 15.441640773430725, 18.122282404427544, 70.09503720036048, 142.0689992530916, 6.073797599522565, 50.58914033010359, 18.72607967582661, 19.121424824526336, 8.64466719929053, 48.038156982606665, 11.625033660508304, 7.312308817542337, 14.072635964552227, 25.754729464035847, 21.07416356143001, 28.77374086071674, 111.71757962336802, 27.87794263328256, 68.11494593167632, 10.410642933274366, 97.10149702416899, 164.5017651071954, 51.31638310510996, 15.297518443080254, 80.83012869129868, 6.920553465710267, 63.43547230532119, 18.784475184714417, 112.79609752242204, 30.873846762416917, 103.15748195945508, 21.942655421181772, 21.09727119548658, 14.981725081510973, 58.34994514906389, 12.10140515523402, 28.021861701752748, 22.46868728294517, 70.01126010023553, 56.465718921171984, 31.623027370205225, 10.456906610733505, 25.160951509960814, 9.850388817853833, 135.44670971073504, 106.93816523124742, 20.17278450034398, 6.577230740764027, 90.71322604076502, 30.935464986497536, 30.611493285784103, 26.04490837454603, 33.13775815586573, 196.9792085873005, 7.114636019108968, 11.672434964443717, 42.75912152568736, 128.9884825398876, 7.514511944634298, 37.62169466281823, 82.70705921730931, 202.0093548762058, 11.873520787761665, 27.8854820892248, 16.663709576798553, 39.552197100855985, 96.49680482870755, 30.033644013707764, 40.15145338723033, 109.31837003423055, 32.04332052248973, 29.863265948865124, 70.90147671042794, 26.247031057547858, 96.94952066785098, 8.329423813779995, 12.643937868512811, 46.54933491779686, 47.095711093281615, 16.542421665823206, 7.587139131980786, 100.33225397945336, 7.088540520620096, 10.495195283721062, 72.58649438615726, 29.8148578753146, 30.654392607941368, 22.670709745999922, 40.00792965745209, 31.052966298941215, 35.307560417037436, 17.958190188330448, 30.547999601094762, 37.84330488922282, 80.9184632425365, 96.79512836053591, 36.159785920110465, 46.2346730520695, 6.697543430536419, 40.404725534517766, 29.757229352570192, 7.005145467636848, 62.88087850541322, 10.010032749941647, 14.528595211615134, 19.511484377457876, 77.77867686014392, 34.047585445230816, 8.14756879230246, 9.063974954652565, 14.331623648962447, 5.402168383763554, 11.571136760185823, 30.01080742920553, 47.687947661996766, 88.31527298536794, 157.7059409011114, 57.664468450101744, 8.969584936760484, 14.12347155569179, 43.14381454940046, 34.37435897523624, 98.4453528584547, 39.25659325249778, 27.206428508090447, 13.115056140802565, 16.79487698451876, 16.578987864093936, 50.44873297895141, 19.212024008841322, 5.310980461988383, 104.43223989600938, 5.750095637599159, 76.92080116209587, 93.51709700608704, 12.01052242215873, 24.7250333994624, 46.13305450786851, 19.446032950027018, 50.43366141085666, 32.60765017421853, 35.951974088649365, 50.0232092611996, 18.299038842785833, 128.1386354111883, 15.683143737784464, 102.31369666157562, 166.44507433833098, 42.25944929524935, 52.921612136593204, 26.685827101400882, 77.69018231303384, 16.520212194148606, 79.72869367543862, 18.79733511135225, 41.26532616008928, 129.6775005392617, 39.30030548097952, 11.793711684233887, 74.70831975682358, 40.74080784493826, 15.422048858947115, 51.94682946686024, 5.518580341508827, 5.521317549409614, 44.442982381942656, 17.097435283964764, 5.785348986921674, 18.209164364095656, 32.5670724033862, 31.272973201127435, 15.703828455868866, 134.49560082575937, 5.3943429364678686, 27.2242529908884, 32.20276080734484, 11.750463871363836, 25.894827224790852, 154.42969522870231, 24.029753896388726, 70.03829416501873, 10.499265439498851, 17.410186691433115, 88.11267352471017, 101.52494692092803, 26.594694554451802, 46.935314598515674, 6.9366508814745504, 53.90134973086409, 34.97612745028631, 12.73781387962958, 26.023691748970204, 56.10380925481051, 101.89139217615411, 62.41947853478661, 14.275899568577213, 117.08242886937465, 65.41453340673702, 67.04110953885154, 49.586149091827544, 77.86996155890375, 7.669590281664298, 11.869634467006483, ...])
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)