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 = 45426
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);
([6895959.339687811, 7298578.541477725, 7310473.634190553, 7322042.188441395, 7372643.75, 7489167.619811428, 7830251.010987607, 7849544.563052268, 7892789.990365247, 7914702.742599266, 7937582.707607367, 7981050.214930049, 7982051.428680278, 7988245.138200995, 7989687.5, 8001271.825100143, 8043748.4375, 8053535.8331863005, 8053580.48943723, 8159887.5, 8167035.854105854, 8174738.208429214, 8223199.834377235, 8236301.036146042, 8236515.032625193, 8261854.077608687, 8304035.9375, 8308896.865053416, 8342954.811274263, 8345626.759516647, 8382503.531823345, 8393723.34687006, 8394354.6875, 8396097.990011692, 8430590.625, 8435588.348363245, 8442459.00338948, 8478555.064310236, 8510843.349154642, 8525007.243393637, 8531350.99507135, 8534864.372396491, 8561688.63453475, 8590179.133581284, 8617412.839309977, 8621015.785270855, 8622951.5625, 8625546.875, 8642048.561214836, 8643151.5625, 8643156.013673717, 8646137.026213579, 8665113.828768818, 8674918.75, 8729185.56374518, 8747545.3125, 8792992.138149163, 8830589.0625, 8859656.287177209, 8902710.861997817, 8903691.773222974, 8945987.878880765, 8955599.937712872, 8958678.661335612, 8960809.905578488, 8966902.432666972, 8984511.08359984, 8984547.752642535, 8992880.017053325, 9011942.722151553, 9012900.538624262, 9014936.832653956, 9034107.178704252, 9038751.5625, 9048699.863639198, 9081002.239204293, 9109004.111838933, 9147979.210951371, 9209654.6875, 9252314.031596795, 9328204.827827314, 9383089.715817602, 9388526.403984915, 9411529.009231573, 9427095.359103143, 9428166.192133192, 9429646.147789635, 9470026.378286242, 9527082.783910906, 9555463.687849548, 9556524.43081403, 9577264.018711962, 9582028.567725869, 9584083.94822407, 9587284.7019165, 9634338.258141605, 10495489.0625, 10645495.3125, 10681573.4375, 10681656.347713454, 10737775.10853238, 10756454.663992096, 10809464.0625, 10809741.297979401, 10828603.830098178, 10853250.0, 10997848.4375, 11042950.754497353, 11043898.226994017, 11435591.052112238, 11493863.55109577, 11511517.1875, 11512870.977032665, 11525652.146566298, 11530033.791481908, 11536653.902611393, 11542199.371473491, 11544817.827061972, 11545037.40821069, 11545674.869024206, 11550158.26052774, 11550475.0, 11551919.752323577, 11552266.0763471, 11553022.661210908, 11554257.611862678, 11555373.4375, 11555493.777252825, 11556851.667598547, 11559159.262309602, 11576539.520615391, 11583116.622198692, 11586030.360907018, 11588169.948992815, 11589209.077576306, 11589584.375, 11590525.592113713, 11590973.4375, 11591327.163452528, 11592243.747072099, 11592621.875, 11593545.3125, 11594352.20830137, 11596649.250388645, 11596910.9375, 11597178.860953135, 11597353.229042301, 11598056.25, 11598539.710221266, 11598958.366824007, 11599026.5625, 11599261.508395737, 11599508.323111877, 11599622.751147661, 11601721.875, 11603640.037102338, 11603659.835688358, 11603947.174923526, 11604326.411806865, 11604562.5, 11604562.575486239, 11604695.954781612, 11604962.186490307, 11605693.75, 11606069.521336345, 11606069.698246451, 11606287.851178711, 11606299.36962138, 11606522.26634074, 11606938.671537923, 11607144.695220897, 11607145.033273548, 11607515.801567338, 11607673.787360584, 11608166.707330009, 11608192.1875, 11608533.98785096, 11608535.870348576, 11608673.4375, 11608908.943795063, 11609246.875, 11609254.606050942, 11609419.354084188, 11609871.876502462, 11609873.321722664, 11609981.17055168, 11611051.5625, 11611654.562413475, 11612382.502314275, 11612411.3724105, 11612415.66492902, 11612690.685306253, 11612887.391218988, 11613093.75, 11613985.13488119, 11614458.532101665, 11614628.39971232, 11614915.8876237, 11614939.763385206, 11615429.628522344, 11615708.95497122, 11615763.046141481, 11615775.470017878, 11615947.285526995, 11616216.243295226, 11616376.499209672, 11616460.9375, 11616510.401464855, 11616516.66778279, 11616629.6875, 11616632.8125, 11616650.297908656, 11616864.0625, 11617025.966573037, 11617148.718500014, 11618240.922769602, 11618573.668073809, 11618652.828838268, 11619101.616588922, 11619361.691045227, 11619715.43769462, 11620359.522099402, 11620362.355043065, 11621415.124223907, 11621871.875, 11622242.04543642, 11623389.468695218, 11624456.25, 11625178.339022983, 11625809.155220604, 11625817.742598096, 11628117.182749728, 11628820.868705202, 11629944.590045603, 11632033.860409282, 11633954.059236668, 11634128.763164258, 11634429.6875, 11634496.670056751, 11634512.5, 11634732.324586805, 11634850.512485141, 11634879.6875, 11634897.313807817, 11635194.671662372, 11635289.344011048, 11635367.186245918, 11635437.5, 11635443.502561789, 11635474.66805165, 11635708.619914284, 11635968.011357972, 11635987.712299742, 11636166.304485012, 11636296.116041945, 11636367.596690314, 11636457.381149491, 11636639.047864614, 11636822.291915983, 11637783.723727861, 11640601.112604111, 11642378.125, 11642537.285971064, 11642752.166719, 11642806.012321427, 11643209.676697768, 11643235.9375, 11643254.824034072, 11643370.028667081, 11643694.928382976, 11644143.017317293, 11644318.155273853, 11644355.706186593, 11644515.244404698, 11644525.42766705, 11644560.63958117, 11644735.40756527, 11644908.77083392, 11644926.924411604, 11645200.251973704, 11645269.294480322, 11645317.796154113, 11645343.75, 11645388.27165485, 11645475.0, 11645490.625, 11645569.406693269, 11645573.699607193, 11645687.221131675, 11645723.738823114, 11645723.967847656, 11645726.5625, 11645770.908301618, 11645804.524217647, 11645806.760640139, 11645833.236850154, 11645857.8125, 11645884.236145869, 11645892.1875, 11645991.639072603, 11646008.778921634, 11646010.567421269, 11646021.875, 11646503.743306959, 11646532.761068465, 11646644.985364862, 11646653.031384274, 11646690.25539728, 11646709.287599321, 11646897.224180883, 11646944.654213754, 11647076.5625, 11647097.79536378, 11647167.1875, 11647178.125, 11647253.125, 11647283.878399013, 11647325.407760033, 11647516.641618978, 11647951.797985462, 11647988.529262751, 11648117.1875, 11670218.75, 11670219.63621465, 11671198.4375, 11671297.777314933, 11671448.44558135, 11671814.577643983, 11672130.665402874, 11672279.167787686, 11672475.0, 11672991.722123541, 11673051.191928616, 11673126.5625, 11673128.277983485, 11673263.433203444, 11673478.125, 11673490.320925463, 11673621.875, 11673694.765035674, 11673768.005153466, 11673802.508615488, 11673949.959584836, 11673959.375, 11673987.5, 11674023.335205773, 11674064.0625, 11674117.581922129, 11674119.372544847, 11674199.136995848, 11674298.255244114, 11674548.071670007, 11674574.117021784, 11674678.125, 11674760.694562249, 11674803.050857253, 11674826.073903762, 11674832.96710236, 11674867.1875, 11674944.517799526, 11675213.349438267, 11676086.073808381, 11684472.380498547, 11688523.66210613, 11690761.37247251, 11691451.5625, 11691803.125, 11691869.618257761, 11691937.315070957, 11691994.299859198, 11692025.0, 11692063.196091825, 11692097.76565489, 11692099.470765758, 11692117.126061667, 11692128.961393634, 11692173.407724585, 11692177.103867022, 11692246.875, 11692248.4375, 11692271.875, 11692278.125, 11692306.024944322, 11692309.375, 11692320.459378477, 11692360.9375, 11692397.960461842, 11692435.9375, 11692482.753158566, 11692515.384387711, 11692570.791136948, 11692589.324451407, 11692592.1875, 11692617.1875, 11692618.75, 11692621.802975183, 11692668.002268158, 11692712.307360077, 11692727.70097012, 11692743.75, 11692746.875, 11692758.585101048, 11692781.25, 11692891.565055557, 11692907.580787588, 11692909.961377926, 11692918.166285489, 11692922.248635827, 11692951.5625, 11693021.653523143, 11693050.0, 11693056.98702113, 11693067.849458802, 11693092.451388722, 11693095.697967488, 11693104.6875, 11693106.75414786, 11693154.211981827, 11693160.75251958, 11693203.125, 11693210.006277999, 11693213.283961782, 11693217.1875, 11693217.1875, 11693240.315112801, 11693247.17274247, 11693294.888215663, 11693299.86550178, 11693332.287381044, 11693337.572510563, 11693375.0, 11693390.304174954, 11693404.28479594, 11693412.5, 11693462.496820003, 11693470.575571446, 11693499.040398238, 11693521.875, 11693533.111660426, 11693578.125, 11693582.8125, 11693587.764081946, 11693597.367464602, 11693604.6875, 11693613.134722063, 11693615.315463508, 11693617.583660742, 11693618.506751232, 11693625.949637868, 11693632.310167793, 11693632.643552125, 11693640.820493843, 11693653.581418544, 11693664.586852184, 11693669.324527133, 11693693.461442748, 11693715.625, 11693718.8964845, 11693720.085068813, 11693732.801182596, 11693741.213654228, 11693748.362002445, 11693770.049497098, 11693781.96255905, 11693791.40377848, 11693807.8125, 11693812.464023363, 11693827.86808103, 11693841.108833397, 11693844.567911038, 11693848.878607681, 11693855.700124597, 11693855.74378529, 11693862.761076197, 11693865.625, 11693866.134002812, 11693879.970757043, 11693906.427044021, 11693907.14479089, 11693915.625, 11693929.932089219, 11693945.3125, 11693946.428396279, 11693950.0, 11693953.098757586, 11693965.184677431, 11693966.405659094, 11693970.794442, 11693973.277617998, 11693985.590907473, 11693993.75, 11693997.648431335, 11694002.628155496, 11694014.64930627, 11694016.088710207, 11694020.3125, 11694021.428283757, 11694036.98876326, 11694045.3125, 11694054.878857771, 11694055.51022283, 11694057.8125, 11694060.946349755, 11694062.5, 11694076.5625, 11694078.125, 11694079.883317513, 11694090.621861383, 11694092.783559587, 11694110.921794347, 11694117.1875, 11694121.28321981, 11694122.362749426, 11694124.910179209, 11694134.988219686, 11694146.875, 11694152.022399265, 11694180.407996396, 11694182.366239501, 11694182.8125, 11694189.549150309, 11694193.528688457, 11694200.00562863, 11694208.321675494, 11694217.41694303, 11694224.376033992, 11694227.241558678, 11694228.487392621, 11694233.96500153, 11694235.699573994, 11694238.574996762, 11694239.817514928, 11694241.3341782, 11694244.1433506, 11694244.820992, 11694248.4375, 11694251.720797794, 11694254.6875, 11694257.055117361, 11694266.312699636, 11694269.773206944, 11694277.614917714, 11694289.85299239, 11694296.133676566, 11694297.409147223, 11694298.130187795, 11694307.341051478, 11694311.456817834, 11694314.0625, 11694315.625, 11694324.804224338, 11694324.974387659, 11694329.6875, 11694331.174901543, 11694341.811074425, 11694347.432390945, 11694352.04101377, 11694364.0625, 11694366.398273934, 11694375.798444947, 11694385.9375, 11694387.5, 11694390.625, 11694390.67117798, 11694396.081853112, 11694404.192541705, 11694407.3513386, 11694413.526449904, 11694421.039824363, 11694421.711591564, 11694425.916984351, 11694429.271423345, 11694432.068576068, 11694439.693268588, 11694440.362443656, 11694442.1875, 11694443.273132749, 11694454.6875, 11694455.268951654, 11694456.252736045, 11694458.83138586, 11694460.792224647, 11694460.928619325, 11694467.765466176, 11694477.676880514, 11694481.25, 11694482.871126315, 11694485.9375, 11694492.161605854, 11694498.4370665, 11694505.378227921, 11694509.375, 11694518.080513136, 11694520.391282747, 11694522.321936496, 11694525.31185509, 11694529.26903431, 11694531.806070466, 11694533.119861959, 11694533.992659507, 11694542.030560564, 11694544.49018236, 11694555.69677151, 11694557.494354447, 11694558.05123463, 11694558.258830799, 11694559.66300911, 11694562.70815733, 11694563.4476516, 11694566.678375108, 11694581.008679057, 11694583.151041191, 11694589.958509825, 11694590.76859202, 11694601.5625, 11694602.885997688, 11694607.912458094, 11694610.054063357, 11694615.0147815, 11694615.595526915, 11694617.977948003, 11694634.375, 11694638.815556722, 11694640.440991405, 11694648.063581226, 11694648.595352449, 11694659.803707728, 11694668.05056156, 11694677.003287174, 11694677.610460663, 11694687.5, 11694688.68481786, 11694690.08213069, 11694690.625, 11694692.1875, 11694702.515856419, 11694705.426930027, 11694705.496193472, 11694715.137379685, 11694717.1875, 11694720.69259375, 11694721.043740973, 11694731.49568496, 11694731.672284935, 11694733.752950843, 11694747.478115369, 11694752.51842959, 11694752.793328386, 11694753.125, 11694757.8125, 11694761.95598902, 11694767.1875, 11694770.365754588, 11694774.749310018, 11694774.991920792, 11694782.472082099, 11694785.403452234, 11694795.206671983, 11694807.511925133, 11694814.036357908, 11694814.770920197, 11694814.816945154, 11694834.375, 11694856.926521122, 11694870.7530335, 11694874.643973555, 11694875.977341799, 11694883.88592897, 11694884.028485535, 11694889.0625, 11694891.637995863, 11694893.95534184, 11694900.078567283, 11694937.124604113, 11694939.725221002, 11694953.033098428, 11694990.97929046, 11694996.408874504, 11695001.434142716, 11695003.204269873, 11695026.5625, 11695037.550452987, 11695043.412697462, 11695048.489708878, 11695051.259219388, 11695057.820703432, 11695067.1875, 11695078.605319526, 11695096.954835491, 11695129.6875, 11695136.264857654, 11695162.5, 11695181.99698307, 11695249.256750315, 11695254.122241054, 11695261.95159182, 11695265.625, 11695272.443923522, 11695287.780153131, 11695296.62695331, 11695307.368293462, 11695318.708395015, 11695322.067893606, 11695329.071330953, 11695329.6875, 11695334.33274637, 11695339.0625, 11695348.074015796, 11695380.14762994, 11695416.087795619, 11695433.847384857, 11695441.734232597, 11695473.104504429, 11695479.907832008, 11695495.3125, 11695510.078353208, 11695515.392383259, 11695518.75, 11695529.18446463, 11695539.150966667, 11695544.630072061, 11695556.489214187, 11695558.453559, 11695560.469892249, 11695570.3125, 11695574.812133549, 11695575.85066228, 11695586.620101782, 11695589.411622781, 11695590.317781596, 11695595.37742683, 11695602.058396917, 11695607.725260131, 11695625.0, 11695626.366795728, 11695646.875, 11695647.605799353, 11695651.5625, 11695667.978608573, 11695668.075774234, 11695673.181083743, 11695676.5625, 11695678.125, 11695678.125, 11695691.885041619, 11695705.82179933, 11695710.419295548, 11695727.010387214, 11695736.666224685, 11695746.500980953, 11695776.493139068, 11695777.180317668, 11695779.11206126, 11695780.717804825, 11695782.8125, 11695793.068023495, 11695804.6875, 11695819.593025573, 11695835.033806618, 11695839.59102271, 11695844.216170602, 11695847.917912215, 11695858.038092704, 11695860.9375, 11695864.910691375, 11695868.656987878, 11695873.30177996, 11695874.436275888, 11695879.147763938, 11695896.85297683, 11695906.45880969, 11695918.937035868, 11695920.3125, 11695931.045525078, 11695933.962157546, 11695940.96077269, 11695947.25006943, 11695947.60456224, 11695949.484585369, 11695966.118595148, 11695976.057284663, 11695979.585701738, 11695983.474519726, 11695991.61196928, 11695997.974858088, 11696018.118600896, 11696018.416274704, 11696020.7435124, 11696057.45790788, 11696071.875, 11696078.125, 11696114.82389706, 11696124.550430425, 11696133.30728825, 11696138.67145306, 11696141.138159286, 11696141.52694551, 11696146.875, 11696147.478193345, 11696148.4375, 11696151.5625, 11696160.370748786, 11696176.5625, 11696182.39287705, 11696196.875, 11696201.205250695, 11696206.2442746, 11696210.9375, 11696215.251752678, 11696216.540245228, 11696232.695699878, 11696240.625, 11696260.9375, 11696264.996549066, 11696285.40618708, 11696321.446487246, 11696323.94823895, 11696327.512368735, 11696331.803445471, 11696347.094897177, 11696350.78014112, 11696363.0869281, 11696383.160835426, 11696402.06122061, 11696403.125, 11696407.073213134, 11696407.8125, 11696410.761106309, 11696410.9375, 11696419.596837657, 11696431.562889861, 11696435.9375, 11696440.05666865, 11696470.26790895, 11696472.229092097, 11696490.271276707, 11696502.68113733, 11696506.213692477, 11696513.747121567, 11696514.038210748, 11696519.503842674, 11696565.625, 11696573.4375, 11696583.06343484, 11696590.625, 11696600.726665383, 11696607.249011494, 11696673.373646855, 11696684.00742551, 11696687.8800485, 11696735.390688607, 11696770.3125, 11696775.595338536, 11696812.851445816, 11696836.437162, 11696842.520552082, 11696850.0, 11696890.625, 11696915.116133513, 11696924.979617912, 11696945.3125, 11696956.194839133, 11696960.995502966, 11696967.394757792, 11696968.305198254, 11696977.842898967, 11696978.125, 11696984.237082819, 11696998.13027779, 11697006.142111689, 11697006.25, 11697026.342281139, 11697027.627760204, 11697035.9375, 11697047.279251605, 11697050.971754022, 11697063.241563275, 11697067.1875, 11697090.625, 11697103.125, 11697138.633194977, 11697139.335408533, 11697188.46012731, 11697198.147149196, 11697199.782988697, 11697200.22149255, 11697203.125, 11697208.801718172, 11697210.523414373, 11697222.135787003, 11697224.919845395, 11697277.637941763, 11697278.899819117, 11697281.820774322, 11697283.468870252, 11697297.164568271, 11697310.9375, 11697313.52564764, 11697327.186141526, 11697347.782032609, 11697352.15484348, 11697357.415881863, 11697371.438096995, 11697375.0, 11697381.795397516, 11697385.57743018, 11697386.71170837, 11697390.610982796, 11697409.639206016, 11697409.985917792, 11697427.562817384, 11697431.645058535, 11697434.6523964, 11697437.982045148, 11697438.755240634, 11697450.0, 11697481.25, 11697490.625, 11697491.494326409, 11697496.875, 11697506.011540657, 11697529.90650935, 11697554.6875, 11697582.058950074, 11697599.82483005, 11697604.14301191, 11697607.8125, 11697614.367728608, 11697646.875, 11697651.417400671, 11697655.954853281, 11697660.872410476, 11697684.897487927, 11697687.5, 11697690.776297584, 11697694.953536619, 11697705.457245298, 11697707.730109138, 11697711.93957641, 11697720.3125, 11697720.698774075, 11697736.967683736, 11697754.6875, 11697759.964004282, 11697765.78751516, 11697782.7803378, 11697799.5813595, 11697803.125, 11697820.372071173, 11697840.625, 11697849.207295137, 11697849.928985303, 11697850.0, 11697879.620038878, 11697903.125, 11697903.62269788, 11697904.6875, 11697905.896330088, 11697910.073253462, 11697915.653467635, 11697923.940942597, 11697924.818199346, 11697936.634919625, 11697967.265918711, 11697978.843880368, 11697980.120067818, 11697986.863785774, 11697992.603186022, 11698005.773402805, 11698032.616223477, 11698034.375, 11698035.673653074, 11698039.931172736, 11698046.153088165, 11698089.0625, 11698089.335394878, 11698093.75, 11698106.223643132, 11698119.373721095, 11698214.870961614, 11698217.741019893, 11698225.084151266, 11698240.30310615, 11698253.39639113, 11698304.6875, 11698305.602801662, 11698306.25, 11698306.25, 11698312.485133816, 11698312.5, 11698338.158769684, 11698342.202654805, 11698389.71610476, 11698391.255665809, 11698391.407066427, 11698400.0, 11698414.743048593, 11698420.3125, 11698442.1875, 11698453.813448614, ...], [5.460252938635176, 7.761151899293302, 84.73866415338526, 16.403766811472025, 96.01688015399841, 6.134239967474135, 8.904887757153555, 10.128606482659853, 8.846840632340145, 22.75231633715127, 116.03002770891732, 86.46409311736524, 56.72400177626367, 41.57113736040616, 52.94108340708378, 11.050595720292417, 67.6747647223016, 10.968480553573704, 12.664908545881714, 76.44232084026555, 69.95421131001568, 20.695826308238075, 14.345698968347081, 5.088235580123728, 20.618582634751206, 13.034829290547455, 77.50955154871029, 142.21177762836902, 25.88174930402198, 15.749669340569753, 18.167017393151323, 69.35984563527664, 46.06303738105767, 7.008587553394116, 75.89721723769506, 5.371857432313778, 5.3293471870267, 8.49642649324221, 22.542734232769043, 5.671471202306295, 28.387929452118524, 6.120929708448949, 5.902982555343133, 26.795007622363713, 24.439526888198536, 7.1642290921061536, 72.912121271182, 31.71078938222662, 9.438248654153835, 79.68554585892261, 14.111262756722018, 46.17079772553453, 14.119673195204157, 104.20153383088044, 38.2845181594562, 48.160347438650376, 36.2162526921407, 176.8396839206033, 38.95608405231192, 7.101744866312509, 46.2991262185842, 5.9730941609832024, 16.040181375806625, 90.44852200292127, 72.98441667040059, 12.828448198531335, 47.21228598866898, 5.577247357868122, 5.838773544111049, 17.464077892425774, 9.832532449395421, 8.824399699517503, 12.973962540598336, 74.6884390670657, 26.093209584377163, 18.349696435836613, 65.30776262617348, 13.39073600452021, 57.522577363188105, 6.482257769902875, 15.5047795371232, 28.786502064140116, 9.200872311160754, 40.20368843742601, 105.903401862619, 102.32008572861324, 41.64063568888645, 25.351714507109147, 43.90431481910174, 18.751208762936493, 8.006893478919068, 14.777195830827345, 6.135381506937779, 8.99485388755833, 5.353250119138213, 12.56321361490476, 76.69101816221578, 38.03851993515669, 37.35945033344258, 5.947960414419268, 9.424891016512479, 34.03891251927486, 57.35927944087869, 5.312337830012777, 7.3200150823440655, 67.08303303979407, 64.67294415124236, 26.42869766429424, 57.598142254141905, 16.864679531197535, 28.817489280251284, 91.18327588364005, 75.05729699276445, 29.66071328616131, 42.5370660683604, 133.6198071380245, 81.24475808469127, 7.300373708323997, 16.02076758438511, 16.439071571406583, 9.741325236442703, 51.90625768079173, 48.8682276243933, 11.914972694330329, 6.371917790152286, 6.067480291182612, 45.33783066639404, 5.131085061499675, 9.42187959927735, 118.52198742287008, 11.928169821661557, 20.865513397463836, 9.974066726062185, 80.40377696099017, 13.917347790229158, 99.93737864648097, 12.199246414528321, 63.27799076620135, 12.217809387957397, 11.123133386669219, 39.507774652209974, 78.20880255936967, 18.147011436974694, 62.43178096004782, 62.395115832064945, 16.42259945656228, 9.420954004086957, 58.42660979670131, 40.20839468143809, 12.120858068445783, 50.537654004962235, 62.63392406449596, 67.9527681464524, 12.843089976866393, 29.594905465810125, 59.3591985438696, 16.113815948377265, 78.64232842838817, 14.396647387327507, 37.786661110650684, 6.778670967118271, 8.658177845079965, 23.57969441157581, 53.72055006893286, 19.00910971293715, 87.3734405571612, 22.85947657740026, 62.31901211347787, 5.13895489231768, 59.510797338933514, 20.39786316183278, 13.974294104226278, 15.66010270254959, 36.50464359669958, 21.693222542692464, 81.98206798522142, 5.061923194040572, 21.814759383337602, 42.12493198354341, 13.5184929886327, 56.19156337257718, 11.002739328089298, 17.8825199822449, 14.947239197496634, 26.428498383663094, 76.70989492960746, 39.25993189781575, 26.275587730587304, 7.494773622136089, 11.883114059624235, 72.18193496379621, 89.13746046243524, 26.544828764795216, 38.78132319685075, 41.36684765715972, 5.754138817454306, 6.302541606917939, 7.701068708188628, 47.34168555254441, 27.409706301366473, 20.066193710694126, 64.05982147428055, 17.097140834562147, 14.943685809065734, 12.25448780801949, 11.030200293249626, 107.65735611134843, 75.40906344747819, 29.78091443116981, 83.76900872540476, 87.37375472274613, 11.627634988003521, 46.55244809816368, 10.308582560585469, 27.217881317205, 9.596549229118414, 37.73088942493841, 89.93662112911235, 15.151758257172641, 6.612080922138294, 39.942099575956355, 91.3996310398406, 20.426872481171465, 5.3250498388549605, 78.45914810309233, 31.525066740246366, 16.754395728156094, 64.48541192839271, 11.479570837068596, 10.80071773966907, 17.974109176277725, 7.1202035147386695, 8.604370737092108, 19.52815133296919, 8.031991273926904, 20.30240356391667, 144.24356982291104, 48.934891160809656, 19.95545121856008, 36.767026235832304, 116.12147798846848, 58.671509232830125, 33.816978650516525, 16.927201919268324, 145.76720409681863, 21.592355163982415, 100.15869774989565, 58.502053324588346, 14.075413152957342, 23.351047445450572, 28.38920716514014, 20.47041610851933, 74.84281573291688, 95.90751795624138, 12.668682518615093, 8.515504322555659, 22.20638655476027, 14.886018072712252, 23.748107571575527, 7.9697930302413855, 22.007913167148317, 29.754265031729435, 59.70719181426905, 72.10934946382466, 14.106885866851364, 15.374037749109089, 41.13638161429821, 6.791074135284568, 34.69929195284763, 56.1919423791805, 43.324599454993376, 20.59748440384528, 76.58807241837948, 5.786346134002089, 24.02818386732737, 21.92278471642827, 5.439471752098302, 45.42742403682226, 6.83797629180351, 7.189301524605561, 17.521734233715744, 9.905171561662469, 48.71434200584985, 10.081917219405934, 82.50789424186988, 96.85632094360368, 41.25198182604963, 8.430224352894, 24.024475386184598, 9.599883492042627, 37.47544052107638, 43.96127646263986, 77.19043148096226, 6.461796331591985, 12.032168751297066, 16.85000447455032, 31.21595021066996, 21.733632784957305, 59.43136586977271, 67.11409050163618, 6.397541345034614, 22.895037790228127, 64.53142813022939, 12.254512739417077, 56.48429944530151, 63.04665565086593, 9.2534806529787, 22.900595664815302, 10.993787807510214, 6.835279257107196, 12.91248064309481, 38.20728176005609, 30.648892033695628, 49.54066678160679, 46.85494128568102, 48.40745994189808, 15.388824834027771, 83.96267645187629, 21.04730499651902, 11.516878179375313, 32.79300790183296, 45.56129048785399, 144.7489606332726, 32.437970509277164, 30.594638227151872, 10.231907752288587, 14.972401469092276, 17.351125615580745, 58.08628639542522, 71.72315322317593, 50.67509086805651, 32.251833873073394, 14.621868896467543, 87.12359074732161, 9.464198342592391, 20.29348258098955, 44.91669603804496, 29.75359655251838, 58.296632415652326, 22.696486327137915, 7.354362645185148, 10.283956456530788, 27.749546103309672, 60.4959971084214, 126.04152369779459, 10.971492205746108, 33.14323466354499, 9.688769894998774, 5.48913671564534, 17.23337650617966, 5.39155197219837, 64.7833510364125, 8.681879760229151, 32.08568169476225, 95.406732743434, 81.20029887090611, 13.357387139152026, 18.22622879739086, 70.54212164260488, 47.82487157465533, 19.60197207438647, 6.102389726884679, 104.89376167116731, 48.295192509305025, 68.86675724724483, 57.74065087529928, 29.548551857846128, 98.05670922935687, 10.850451502600547, 17.553502087248432, 102.17339371968733, 22.983146597891412, 45.883387634246304, 27.158692471550413, 36.84359427956782, 94.86470251889953, 14.829221129613797, 5.855152951594521, 81.50666961764533, 104.4042651678436, 35.10677717896589, 32.22170863680171, 24.75770424978792, 85.94526200637023, 9.458763856167783, 39.912859690691214, 12.881359389002789, 37.3821842201421, 85.60639539489765, 9.135914322126585, 9.771800266227398, 34.07180832724616, 48.61598339990915, 51.12816907825314, 44.856262767198196, 89.65254051160922, 43.169429896497945, 7.53501807823781, 74.00598087486665, 70.32081675812107, 48.201612018827205, 19.018342884893148, 49.139600861292024, 24.737543343841025, 10.783862611441288, 5.0797168212970245, 5.505406168262883, 37.24602161751498, 66.58211707103514, 14.159584435806861, 46.10884479128927, 8.718990800338952, 159.16834635748938, 43.37179584736314, 9.680090161869535, 62.33195737284045, 90.77201476943068, 41.39322504255997, 25.34024597295846, 144.58530268001647, 9.929050496930142, 12.622866291928304, 71.4066256559322, 52.507995300687476, 23.625262663497352, 120.08778362864521, 8.07426772829945, 18.121136815297994, 59.1413717396908, 5.46488740377869, 87.7885445725395, 79.31898892504472, 34.67017308419803, 30.792505880411387, 9.328715754295535, 11.565405957795656, 37.75029919713322, 55.67795108322393, 22.96255276368028, 40.27504379245481, 66.02423932722203, 40.36933347642946, 11.995860337669317, 30.310044550399223, 43.3108220789442, 60.408918582484745, 26.495989089755874, 24.503777878669553, 20.436571881431263, 21.46986673190395, 8.199210853653256, 23.992616291786096, 39.340861018900476, 7.266464751823209, 26.348989108749397, 13.945010061229835, 56.570555870793356, 87.04487634500852, 24.72418620322019, 7.599149493424031, 17.787240798514013, 112.51532354765153, 14.025637784278988, 25.938004605890214, 69.97410342439676, 39.38545067980556, 9.301167039002738, 24.31709543403755, 6.565708808269785, 18.935019075310876, 7.770970233463848, 104.6387065105746, 65.55944586951767, 16.03965033391386, 45.95132468808685, 78.06493314909929, 67.1475752098492, 6.799374364463168, 27.483737679478818, 42.882742569003284, 15.963619025940107, 35.62905731238479, 83.56457148283232, 32.234302885592136, 49.51200905449721, 22.109813529819878, 12.61518784749462, 34.95657746934574, 8.203800765401239, 10.625983067439343, 81.44909910903309, 10.08390533103058, 5.67585066521472, 5.309564091524374, 5.258311621024151, 30.42051657977705, 13.474385735369362, 6.665560888840471, 79.51246281444156, 9.498623745493198, 28.37510103152433, 44.82600519420977, 6.268317117749086, 40.29594875839345, 78.58498899367034, 92.00948271452206, 7.675630986373837, 122.21642777044758, 28.124652277505167, 26.76744810530409, 43.37663847585634, 13.081519037939678, 30.652691276516062, 26.866335071587905, 7.292551525799824, 28.796549251450415, 35.21514570388574, 8.70826071174015, 33.6409784984766, 137.44600281926586, 56.18831392919827, 8.172911678332376, 8.289556084569897, 19.516646293609327, 45.150694793730054, 8.854208325790655, 9.980160897897589, 18.907969493147167, 38.872714281461406, 48.110353949953435, 66.26526135409135, 10.063361607782294, 24.89300071511056, 11.80374187714371, 100.91742467431432, 175.62880405674, 7.661512595899223, 70.59882245337243, 10.119598561078437, 23.593358620055227, 7.419174390179069, 97.69761476262109, 89.78416287875991, 23.22137698084453, 28.88657975628615, 84.36731582171622, 5.779901636477087, 9.812838713524707, 44.02778337792866, 71.97773831542602, 25.18007863666533, 14.844777608067558, 45.75836164060701, 27.122473345751345, 11.810673430393223, 14.350215259792655, 36.72173653892308, 84.4465664725421, 12.598069405027976, 31.422094166170613, 100.10447392870998, 34.088050103748124, 48.576606882254154, 58.98568738718978, 63.925998658556054, 70.5328509438142, 21.88948726548239, 13.228385901795383, 18.694872033579124, 14.353222906791542, 203.1875977401222, 28.005826101642178, 6.623551913450039, 7.848503871771209, 24.24111326585492, 96.14544674434796, 5.2765809793043195, 131.2291784114163, 27.125622053900184, 24.60556551719723, 31.863272699069142, 10.907978904581881, 42.186989223900554, 38.9717900345389, 22.026733179078946, 104.12575804004702, 15.169775164363848, 88.00894856102785, 7.114661469303509, 74.16514005498458, 18.443649707889538, 96.14845780705718, 19.954045663199725, 8.328683035484742, 16.971025176243504, 159.49183560393195, 12.495566608697178, 12.124446337300446, 16.258515317060642, 74.49190049851579, 25.768021103686625, 7.8948455944351625, 34.9012975647499, 13.853314951978968, 7.69192809911607, 8.537603506017085, 16.166016132232542, 11.469442174772794, 20.41914189833026, 48.07497458659282, 33.22316296678188, 9.63506093010219, 80.04108591492772, 15.518597072958649, 78.0082543464886, 10.773608967085952, 16.666483122162568, 28.69893685187832, 18.3800984630141, 11.081948869465108, 18.735288051651775, 54.50733587542842, 9.130977011324894, 14.283660693645157, 17.45106849382511, 76.28796050238496, 39.57396209349859, 10.186030523332795, 16.937844980865194, 7.427167610146756, 102.08844029569481, 19.299410904108818, 13.210150726665546, 29.096458459632565, 94.29647023094972, 24.232903954284776, 17.809417296860158, 162.15426786475211, 31.480797167956247, 66.74625023215688, 5.355117018959853, 145.38305865409558, 20.424773276174445, 16.83905433399815, 106.23618972477499, 12.222365064725809, 42.42164072764561, 23.354438907843825, 68.62121749408874, 74.12055909617841, 13.20710511063656, 57.051789503133314, 46.853499265257184, 7.515015953010547, 61.09181836159534, 23.247832738317136, 116.20748530040856, 166.63449235107592, 9.089555663891263, 11.087089416605268, 6.361052799761944, 26.922310992471687, 63.99577617048914, 6.000568982775497, 11.893982789922775, 20.34627175149898, 61.239000986937135, 42.478591426169174, 26.35606511386498, 53.648163996918605, 8.015901955351698, 164.39024831191412, 26.4112282196, 78.14035308266259, 27.112461734231943, 9.254885598742849, 16.488938423993527, 36.65811277235814, 13.094923464168444, 32.019887692627044, 104.27649476867904, 5.943811351596394, 117.49975741199533, 139.74110577709413, 23.708926632220095, 5.203630966098047, 54.84642977113471, 17.15424484040857, 31.56206768992689, 107.2311492623032, 16.355618867712153, 39.85114954086866, 45.500764891722966, 5.877190954281901, 6.401988189727852, 13.552957626206766, 57.747190321358744, 23.191552768294827, 16.128875865651743, 5.795852103702941, 14.199401364446071, 14.78526700394337, 17.708250286516122, 142.2998573220712, 143.99923099159062, 71.74120192361254, 46.83294228981629, 5.684008927798381, 38.35746506664283, 11.937322459319901, 8.921853546151466, 6.211580889031861, 29.598608464171214, 70.4397350602754, 31.314631733434215, 131.73479554900467, 13.569975711636493, 32.337324994094196, 17.804748052199884, 15.289776177420338, 64.51566800645986, 23.153261666921296, 23.312616964453856, 10.467824175733178, 64.68608573198557, 6.7265712462804705, 8.794233064916284, 16.9259135743713, 17.9363267916371, 23.658972383063723, 24.110259183348983, 12.002690649525293, 10.99402935809744, 33.64124045189928, 25.18112982135089, 37.903189961612355, 28.819876879325818, 70.22782335891402, 7.3461910933869925, 19.914971501948273, 53.323963272735575, 28.808111929211034, 62.29475208451602, 35.3869955360457, 5.124090285886879, 163.01932690451414, 6.6642805485822425, 14.620142421881159, 45.05305320584166, 10.589427522651086, 115.05362047330794, 132.4936673264293, 140.6142137080598, 10.386625063871302, 43.40311539164333, 15.747414063168058, 43.60092398432318, 8.789095889117737, 12.341510918615054, 12.068229446718057, 11.943936267235319, 73.15042838584662, 8.409589523245137, 56.434053944727076, 6.180980510169613, 7.569939676514714, 49.071420653752966, 102.01026024913183, 21.105663165367947, 68.97217978703543, 107.8783985979419, 16.73911670182204, 28.673736173402883, 63.6610179713229, 21.07090159419862, 5.549601627328112, 9.670046579955935, 28.951858763100425, 13.28402632160907, 8.566066806974483, 5.777521030803525, 40.56698727065494, 18.25264714159934, 90.67210910094752, 8.056193235443407, 7.978706059551002, 13.805732668141088, 9.72453181057739, 47.52082984970545, 47.29484724062753, 33.977837708850565, 24.41243361050931, 22.01136727328236, 9.788019688152673, 27.856336060489017, 17.339742710818705, 12.90683061234564, 58.403170544505144, 96.39184801106418, 52.2429681134834, 61.111733053296796, 20.852099505511198, 29.20218601458562, 45.53619948369089, 77.08608244019965, 23.046006346731918, 28.412236716317672, 65.472064846792, 34.52303182039036, 6.390199391780841, 26.41159419269373, 73.63537392890555, 46.92264873029664, 7.980032036751357, 109.56985734614345, 38.041874350159155, 84.18743369554728, 67.45423247434623, 7.274954156712916, 15.851579144380272, 7.912076296681365, 9.88243145466224, 26.815152176146164, 12.008318942220235, 50.80720769562077, 12.715224767930737, 108.71446582391879, 25.46941442854053, 61.42361693995342, 27.62682535541999, 51.76834557083591, 64.65650200016543, 47.069806726132796, 24.741767109803234, 102.63507701940637, 5.385121529460548, 66.60188545774248, 138.4659755925927, 19.31694996815614, 11.089952200948185, 71.97491884142681, 89.12245906274276, 93.91796863094152, 8.423888540316218, 54.406648115163144, 51.45186332478594, 65.45628265563698, 122.01073105213557, 45.57263324823092, 16.61923938638801, 53.751274856852305, 40.501986141325304, 38.15456163793765, 16.474717682608883, 17.26285625134095, 11.691506043462146, 51.884073724495074, 55.99771596703191, 10.95099148996755, 28.127722407055206, 43.46102847436189, 27.478775492973522, 11.219595862052032, 9.513023398412507, 33.282197062356964, 23.98210077765086, 32.50917033452184, 9.21744690383711, 112.64476494422696, 14.545639770718132, 46.17952768036199, 7.5254839956617925, 6.668137135072295, 75.3465943823278, 53.90310903609527, 13.084200328141849, 39.94653989844454, 67.60275787102906, 91.53926752805344, 100.38426016009393, 90.75935930990298, 26.164330183047063, 20.52924949781164, 72.86875507750986, 12.773897892194782, 20.69657730764871, 81.63357945280771, 99.41669369931313, 10.536782001672037, 13.622918270426808, 27.033852727046625, 45.06270250719752, 12.601645204778164, 12.154788522630136, 12.336223302690678, 5.474333924671807, 79.64859721402291, 6.987135430144392, 12.265863747538786, 103.07846116383118, 12.199727853303362, 51.70884693947353, 22.14649750307853, 46.71010158206659, 173.4244968399875, 23.01260604372279, 31.318979762653136, 66.63121123738328, 16.05419623647354, 15.073022544220489, 13.158908798990621, 92.23594620821811, 11.590865302987401, 34.457236499605074, 23.658454114022103, 68.76685251774346, 46.00064791507219, 67.86293393208113, 6.383656089938611, 41.52708033053883, 6.063647685044109, 93.92788713973664, 39.8461132185202, 19.288773094570683, 18.1581449764045, 67.45122397445914, 56.42652748743169, 18.407978240298185, 59.656171266636676, 42.313225531415284, 6.057935076075061, 27.299959659273068, 17.393419474026523, 70.6212110756625, 21.73313006573548, 8.105455272744686, 10.079781723715895, 5.609502283309166, 40.77469782287106, 80.61500224352179, 11.790392994599127, 21.17667387217765, 82.18407141926588, 12.192736869289355, 8.374429370995584, 80.88266656707225, 7.015586889498976, 45.48162623373101, 11.222114773833981, 49.83957489413025, 12.590030226330438, 14.677571153673648, 54.02389417383945, 31.668833549591767, 157.61731280865143, 12.006279445105097, 93.37667165794795, 7.4801412494733155, 37.87335990062296, 15.051136349745814, 17.284300358289716, 93.1567037943517, 6.602272861197759, 36.11813370456603, 18.636116011922535, 58.41156274941314, 20.234010406215628, 36.76483227718627, 21.729776201693603, 22.830815389335765, 126.86343297518783, 24.22379964101965, 8.806395682948656, 10.160084813927545, 60.116426561236764, 11.58284557445704, 41.25951122414962, 11.08675772819767, 65.72771626136986, 21.59946116810341, 12.119207053374643, 15.27225790496426, 13.841823600929501, 136.40850948109116, 42.79733198769789, 18.51436242346445, 65.3819171500322, 35.82133465911016, 39.662611784817, 97.909141333533, 18.23134923425069, 171.3803284753017, 75.28607072595256, 96.40009759915637, 19.087817177635923, 52.680809091128836, 99.31385021882228, 44.0671173765733, 30.683015165843575, 18.428293514363634, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([6895959.339687811, 7298578.541477725, 7310473.634190553, 7322042.188441395, 7372643.75, 7489167.619811428, 7830251.010987607, 7849544.563052268, 7892789.990365247, 7914702.742599266, 7937582.707607367, 7981050.214930049, 7982051.428680278, 7988245.138200995, 7989687.5, 8001271.825100143, 8043748.4375, 8053535.8331863005, 8053580.48943723, 8159887.5, 8167035.854105854, 8174738.208429214, 8223199.834377235, 8236301.036146042, 8236515.032625193, 8261854.077608687, 8304035.9375, 8308896.865053416, 8342954.811274263, 8345626.759516647, 8382503.531823345, 8393723.34687006, 8394354.6875, 8396097.990011692, 8430590.625, 8435588.348363245, 8442459.00338948, 8478555.064310236, 8510843.349154642, 8525007.243393637, 8531350.99507135, 8534864.372396491, 8561688.63453475, 8590179.133581284, 8617412.839309977, 8621015.785270855, 8622951.5625, 8625546.875, 8642048.561214836, 8643151.5625, 8643156.013673717, 8646137.026213579, 8665113.828768818, 8674918.75, 8729185.56374518, 8747545.3125, 8792992.138149163, 8830589.0625, 8859656.287177209, 8902710.861997817, 8903691.773222974, 8945987.878880765, 8955599.937712872, 8958678.661335612, 8960809.905578488, 8966902.432666972, 8984511.08359984, 8984547.752642535, 8992880.017053325, 9011942.722151553, 9012900.538624262, 9014936.832653956, 9034107.178704252, 9038751.5625, 9048699.863639198, 9081002.239204293, 9109004.111838933, 9147979.210951371, 9209654.6875, 9252314.031596795, 9328204.827827314, 9383089.715817602, 9388526.403984915, 9411529.009231573, 9427095.359103143, 9428166.192133192, 9429646.147789635, 9470026.378286242, 9527082.783910906, 9555463.687849548, 9556524.43081403, 9577264.018711962, 9582028.567725869, 9584083.94822407, 9587284.7019165, 9634338.258141605, 10495489.0625, 10645495.3125, 10681573.4375, 10681656.347713454, 10737775.10853238, 10756454.663992096, 10809464.0625, 10809741.297979401, 10828603.830098178, 10853250.0, 10997848.4375, 11042950.754497353, 11043898.226994017, 11435591.052112238, 11493863.55109577, 11511517.1875, 11512870.977032665, 11525652.146566298, 11530033.791481908, 11536653.902611393, 11542199.371473491, 11544817.827061972, 11545037.40821069, 11545674.869024206, 11550158.26052774, 11550475.0, 11551919.752323577, 11552266.0763471, 11553022.661210908, 11554257.611862678, 11555373.4375, 11555493.777252825, 11556851.667598547, 11559159.262309602, 11576539.520615391, 11583116.622198692, 11586030.360907018, 11588169.948992815, 11589209.077576306, 11589584.375, 11590525.592113713, 11590973.4375, 11591327.163452528, 11592243.747072099, 11592621.875, 11593545.3125, 11594352.20830137, 11596649.250388645, 11596910.9375, 11597178.860953135, 11597353.229042301, 11598056.25, 11598539.710221266, 11598958.366824007, 11599026.5625, 11599261.508395737, 11599508.323111877, 11599622.751147661, 11601721.875, 11603640.037102338, 11603659.835688358, 11603947.174923526, 11604326.411806865, 11604562.5, 11604562.575486239, 11604695.954781612, 11604962.186490307, 11605693.75, 11606069.521336345, 11606069.698246451, 11606287.851178711, 11606299.36962138, 11606522.26634074, 11606938.671537923, 11607144.695220897, 11607145.033273548, 11607515.801567338, 11607673.787360584, 11608166.707330009, 11608192.1875, 11608533.98785096, 11608535.870348576, 11608673.4375, 11608908.943795063, 11609246.875, 11609254.606050942, 11609419.354084188, 11609871.876502462, 11609873.321722664, 11609981.17055168, 11611051.5625, 11611654.562413475, 11612382.502314275, 11612411.3724105, 11612415.66492902, 11612690.685306253, 11612887.391218988, 11613093.75, 11613985.13488119, 11614458.532101665, 11614628.39971232, 11614915.8876237, 11614939.763385206, 11615429.628522344, 11615708.95497122, 11615763.046141481, 11615775.470017878, 11615947.285526995, 11616216.243295226, 11616376.499209672, 11616460.9375, 11616510.401464855, 11616516.66778279, 11616629.6875, 11616632.8125, 11616650.297908656, 11616864.0625, 11617025.966573037, 11617148.718500014, 11618240.922769602, 11618573.668073809, 11618652.828838268, 11619101.616588922, 11619361.691045227, 11619715.43769462, 11620359.522099402, 11620362.355043065, 11621415.124223907, 11621871.875, 11622242.04543642, 11623389.468695218, 11624456.25, 11625178.339022983, 11625809.155220604, 11625817.742598096, 11628117.182749728, 11628820.868705202, 11629944.590045603, 11632033.860409282, 11633954.059236668, 11634128.763164258, 11634429.6875, 11634496.670056751, 11634512.5, 11634732.324586805, 11634850.512485141, 11634879.6875, 11634897.313807817, 11635194.671662372, 11635289.344011048, 11635367.186245918, 11635437.5, 11635443.502561789, 11635474.66805165, 11635708.619914284, 11635968.011357972, 11635987.712299742, 11636166.304485012, 11636296.116041945, 11636367.596690314, 11636457.381149491, 11636639.047864614, 11636822.291915983, 11637783.723727861, 11640601.112604111, 11642378.125, 11642537.285971064, 11642752.166719, 11642806.012321427, 11643209.676697768, 11643235.9375, 11643254.824034072, 11643370.028667081, 11643694.928382976, 11644143.017317293, 11644318.155273853, 11644355.706186593, 11644515.244404698, 11644525.42766705, 11644560.63958117, 11644735.40756527, 11644908.77083392, 11644926.924411604, 11645200.251973704, 11645269.294480322, 11645317.796154113, 11645343.75, 11645388.27165485, 11645475.0, 11645490.625, 11645569.406693269, 11645573.699607193, 11645687.221131675, 11645723.738823114, 11645723.967847656, 11645726.5625, 11645770.908301618, 11645804.524217647, 11645806.760640139, 11645833.236850154, 11645857.8125, 11645884.236145869, 11645892.1875, 11645991.639072603, 11646008.778921634, 11646010.567421269, 11646021.875, 11646503.743306959, 11646532.761068465, 11646644.985364862, 11646653.031384274, 11646690.25539728, 11646709.287599321, 11646897.224180883, 11646944.654213754, 11647076.5625, 11647097.79536378, 11647167.1875, 11647178.125, 11647253.125, 11647283.878399013, 11647325.407760033, 11647516.641618978, 11647951.797985462, 11647988.529262751, 11648117.1875, 11670218.75, 11670219.63621465, 11671198.4375, 11671297.777314933, 11671448.44558135, 11671814.577643983, 11672130.665402874, 11672279.167787686, 11672475.0, 11672991.722123541, 11673051.191928616, 11673126.5625, 11673128.277983485, 11673263.433203444, 11673478.125, 11673490.320925463, 11673621.875, 11673694.765035674, 11673768.005153466, 11673802.508615488, 11673949.959584836, 11673959.375, 11673987.5, 11674023.335205773, 11674064.0625, 11674117.581922129, 11674119.372544847, 11674199.136995848, 11674298.255244114, 11674548.071670007, 11674574.117021784, 11674678.125, 11674760.694562249, 11674803.050857253, 11674826.073903762, 11674832.96710236, 11674867.1875, 11674944.517799526, 11675213.349438267, 11676086.073808381, 11684472.380498547, 11688523.66210613, 11690761.37247251, 11691451.5625, 11691803.125, 11691869.618257761, 11691937.315070957, 11691994.299859198, 11692025.0, 11692063.196091825, 11692097.76565489, 11692099.470765758, 11692117.126061667, 11692128.961393634, 11692173.407724585, 11692177.103867022, 11692246.875, 11692248.4375, 11692271.875, 11692278.125, 11692306.024944322, 11692309.375, 11692320.459378477, 11692360.9375, 11692397.960461842, 11692435.9375, 11692482.753158566, 11692515.384387711, 11692570.791136948, 11692589.324451407, 11692592.1875, 11692617.1875, 11692618.75, 11692621.802975183, 11692668.002268158, 11692712.307360077, 11692727.70097012, 11692743.75, 11692746.875, 11692758.585101048, 11692781.25, 11692891.565055557, 11692907.580787588, 11692909.961377926, 11692918.166285489, 11692922.248635827, 11692951.5625, 11693021.653523143, 11693050.0, 11693056.98702113, 11693067.849458802, 11693092.451388722, 11693095.697967488, 11693104.6875, 11693106.75414786, 11693154.211981827, 11693160.75251958, 11693203.125, 11693210.006277999, 11693213.283961782, 11693217.1875, 11693217.1875, 11693240.315112801, 11693247.17274247, 11693294.888215663, 11693299.86550178, 11693332.287381044, 11693337.572510563, 11693375.0, 11693390.304174954, 11693404.28479594, 11693412.5, 11693462.496820003, 11693470.575571446, 11693499.040398238, 11693521.875, 11693533.111660426, 11693578.125, 11693582.8125, 11693587.764081946, 11693597.367464602, 11693604.6875, 11693613.134722063, 11693615.315463508, 11693617.583660742, 11693618.506751232, 11693625.949637868, 11693632.310167793, 11693632.643552125, 11693640.820493843, 11693653.581418544, 11693664.586852184, 11693669.324527133, 11693693.461442748, 11693715.625, 11693718.8964845, 11693720.085068813, 11693732.801182596, 11693741.213654228, 11693748.362002445, 11693770.049497098, 11693781.96255905, 11693791.40377848, 11693807.8125, 11693812.464023363, 11693827.86808103, 11693841.108833397, 11693844.567911038, 11693848.878607681, 11693855.700124597, 11693855.74378529, 11693862.761076197, 11693865.625, 11693866.134002812, 11693879.970757043, 11693906.427044021, 11693907.14479089, 11693915.625, 11693929.932089219, 11693945.3125, 11693946.428396279, 11693950.0, 11693953.098757586, 11693965.184677431, 11693966.405659094, 11693970.794442, 11693973.277617998, 11693985.590907473, 11693993.75, 11693997.648431335, 11694002.628155496, 11694014.64930627, 11694016.088710207, 11694020.3125, 11694021.428283757, 11694036.98876326, 11694045.3125, 11694054.878857771, 11694055.51022283, 11694057.8125, 11694060.946349755, 11694062.5, 11694076.5625, 11694078.125, 11694079.883317513, 11694090.621861383, 11694092.783559587, 11694110.921794347, 11694117.1875, 11694121.28321981, 11694122.362749426, 11694124.910179209, 11694134.988219686, 11694146.875, 11694152.022399265, 11694180.407996396, 11694182.366239501, 11694182.8125, 11694189.549150309, 11694193.528688457, 11694200.00562863, 11694208.321675494, 11694217.41694303, 11694224.376033992, 11694227.241558678, 11694228.487392621, 11694233.96500153, 11694235.699573994, 11694238.574996762, 11694239.817514928, 11694241.3341782, 11694244.1433506, 11694244.820992, 11694248.4375, 11694251.720797794, 11694254.6875, 11694257.055117361, 11694266.312699636, 11694269.773206944, 11694277.614917714, 11694289.85299239, 11694296.133676566, 11694297.409147223, 11694298.130187795, 11694307.341051478, 11694311.456817834, 11694314.0625, 11694315.625, 11694324.804224338, 11694324.974387659, 11694329.6875, 11694331.174901543, 11694341.811074425, 11694347.432390945, 11694352.04101377, 11694364.0625, 11694366.398273934, 11694375.798444947, 11694385.9375, 11694387.5, 11694390.625, 11694390.67117798, 11694396.081853112, 11694404.192541705, 11694407.3513386, 11694413.526449904, 11694421.039824363, 11694421.711591564, 11694425.916984351, 11694429.271423345, 11694432.068576068, 11694439.693268588, 11694440.362443656, 11694442.1875, 11694443.273132749, 11694454.6875, 11694455.268951654, 11694456.252736045, 11694458.83138586, 11694460.792224647, 11694460.928619325, 11694467.765466176, 11694477.676880514, 11694481.25, 11694482.871126315, 11694485.9375, 11694492.161605854, 11694498.4370665, 11694505.378227921, 11694509.375, 11694518.080513136, 11694520.391282747, 11694522.321936496, 11694525.31185509, 11694529.26903431, 11694531.806070466, 11694533.119861959, 11694533.992659507, 11694542.030560564, 11694544.49018236, 11694555.69677151, 11694557.494354447, 11694558.05123463, 11694558.258830799, 11694559.66300911, 11694562.70815733, 11694563.4476516, 11694566.678375108, 11694581.008679057, 11694583.151041191, 11694589.958509825, 11694590.76859202, 11694601.5625, 11694602.885997688, 11694607.912458094, 11694610.054063357, 11694615.0147815, 11694615.595526915, 11694617.977948003, 11694634.375, 11694638.815556722, 11694640.440991405, 11694648.063581226, 11694648.595352449, 11694659.803707728, 11694668.05056156, 11694677.003287174, 11694677.610460663, 11694687.5, 11694688.68481786, 11694690.08213069, 11694690.625, 11694692.1875, 11694702.515856419, 11694705.426930027, 11694705.496193472, 11694715.137379685, 11694717.1875, 11694720.69259375, 11694721.043740973, 11694731.49568496, 11694731.672284935, 11694733.752950843, 11694747.478115369, 11694752.51842959, 11694752.793328386, 11694753.125, 11694757.8125, 11694761.95598902, 11694767.1875, 11694770.365754588, 11694774.749310018, 11694774.991920792, 11694782.472082099, 11694785.403452234, 11694795.206671983, 11694807.511925133, 11694814.036357908, 11694814.770920197, 11694814.816945154, 11694834.375, 11694856.926521122, 11694870.7530335, 11694874.643973555, 11694875.977341799, 11694883.88592897, 11694884.028485535, 11694889.0625, 11694891.637995863, 11694893.95534184, 11694900.078567283, 11694937.124604113, 11694939.725221002, 11694953.033098428, 11694990.97929046, 11694996.408874504, 11695001.434142716, 11695003.204269873, 11695026.5625, 11695037.550452987, 11695043.412697462, 11695048.489708878, 11695051.259219388, 11695057.820703432, 11695067.1875, 11695078.605319526, 11695096.954835491, 11695129.6875, 11695136.264857654, 11695162.5, 11695181.99698307, 11695249.256750315, 11695254.122241054, 11695261.95159182, 11695265.625, 11695272.443923522, 11695287.780153131, 11695296.62695331, 11695307.368293462, 11695318.708395015, 11695322.067893606, 11695329.071330953, 11695329.6875, 11695334.33274637, 11695339.0625, 11695348.074015796, 11695380.14762994, 11695416.087795619, 11695433.847384857, 11695441.734232597, 11695473.104504429, 11695479.907832008, 11695495.3125, 11695510.078353208, 11695515.392383259, 11695518.75, 11695529.18446463, 11695539.150966667, 11695544.630072061, 11695556.489214187, 11695558.453559, 11695560.469892249, 11695570.3125, 11695574.812133549, 11695575.85066228, 11695586.620101782, 11695589.411622781, 11695590.317781596, 11695595.37742683, 11695602.058396917, 11695607.725260131, 11695625.0, 11695626.366795728, 11695646.875, 11695647.605799353, 11695651.5625, 11695667.978608573, 11695668.075774234, 11695673.181083743, 11695676.5625, 11695678.125, 11695678.125, 11695691.885041619, 11695705.82179933, 11695710.419295548, 11695727.010387214, 11695736.666224685, 11695746.500980953, 11695776.493139068, 11695777.180317668, 11695779.11206126, 11695780.717804825, 11695782.8125, 11695793.068023495, 11695804.6875, 11695819.593025573, 11695835.033806618, 11695839.59102271, 11695844.216170602, 11695847.917912215, 11695858.038092704, 11695860.9375, 11695864.910691375, 11695868.656987878, 11695873.30177996, 11695874.436275888, 11695879.147763938, 11695896.85297683, 11695906.45880969, 11695918.937035868, 11695920.3125, 11695931.045525078, 11695933.962157546, 11695940.96077269, 11695947.25006943, 11695947.60456224, 11695949.484585369, 11695966.118595148, 11695976.057284663, 11695979.585701738, 11695983.474519726, 11695991.61196928, 11695997.974858088, 11696018.118600896, 11696018.416274704, 11696020.7435124, 11696057.45790788, 11696071.875, 11696078.125, 11696114.82389706, 11696124.550430425, 11696133.30728825, 11696138.67145306, 11696141.138159286, 11696141.52694551, 11696146.875, 11696147.478193345, 11696148.4375, 11696151.5625, 11696160.370748786, 11696176.5625, 11696182.39287705, 11696196.875, 11696201.205250695, 11696206.2442746, 11696210.9375, 11696215.251752678, 11696216.540245228, 11696232.695699878, 11696240.625, 11696260.9375, 11696264.996549066, 11696285.40618708, 11696321.446487246, 11696323.94823895, 11696327.512368735, 11696331.803445471, 11696347.094897177, 11696350.78014112, 11696363.0869281, 11696383.160835426, 11696402.06122061, 11696403.125, 11696407.073213134, 11696407.8125, 11696410.761106309, 11696410.9375, 11696419.596837657, 11696431.562889861, 11696435.9375, 11696440.05666865, 11696470.26790895, 11696472.229092097, 11696490.271276707, 11696502.68113733, 11696506.213692477, 11696513.747121567, 11696514.038210748, 11696519.503842674, 11696565.625, 11696573.4375, 11696583.06343484, 11696590.625, 11696600.726665383, 11696607.249011494, 11696673.373646855, 11696684.00742551, 11696687.8800485, 11696735.390688607, 11696770.3125, 11696775.595338536, 11696812.851445816, 11696836.437162, 11696842.520552082, 11696850.0, 11696890.625, 11696915.116133513, 11696924.979617912, 11696945.3125, 11696956.194839133, 11696960.995502966, 11696967.394757792, 11696968.305198254, 11696977.842898967, 11696978.125, 11696984.237082819, 11696998.13027779, 11697006.142111689, 11697006.25, 11697026.342281139, 11697027.627760204, 11697035.9375, 11697047.279251605, 11697050.971754022, 11697063.241563275, 11697067.1875, 11697090.625, 11697103.125, 11697138.633194977, 11697139.335408533, 11697188.46012731, 11697198.147149196, 11697199.782988697, 11697200.22149255, 11697203.125, 11697208.801718172, 11697210.523414373, 11697222.135787003, 11697224.919845395, 11697277.637941763, 11697278.899819117, 11697281.820774322, 11697283.468870252, 11697297.164568271, 11697310.9375, 11697313.52564764, 11697327.186141526, 11697347.782032609, 11697352.15484348, 11697357.415881863, 11697371.438096995, 11697375.0, 11697381.795397516, 11697385.57743018, 11697386.71170837, 11697390.610982796, 11697409.639206016, 11697409.985917792, 11697427.562817384, 11697431.645058535, 11697434.6523964, 11697437.982045148, 11697438.755240634, 11697450.0, 11697481.25, 11697490.625, 11697491.494326409, 11697496.875, 11697506.011540657, 11697529.90650935, 11697554.6875, 11697582.058950074, 11697599.82483005, 11697604.14301191, 11697607.8125, 11697614.367728608, 11697646.875, 11697651.417400671, 11697655.954853281, 11697660.872410476, 11697684.897487927, 11697687.5, 11697690.776297584, 11697694.953536619, 11697705.457245298, 11697707.730109138, 11697711.93957641, 11697720.3125, 11697720.698774075, 11697736.967683736, 11697754.6875, 11697759.964004282, 11697765.78751516, 11697782.7803378, 11697799.5813595, 11697803.125, 11697820.372071173, 11697840.625, 11697849.207295137, 11697849.928985303, 11697850.0, 11697879.620038878, 11697903.125, 11697903.62269788, 11697904.6875, 11697905.896330088, 11697910.073253462, 11697915.653467635, 11697923.940942597, 11697924.818199346, 11697936.634919625, 11697967.265918711, 11697978.843880368, 11697980.120067818, 11697986.863785774, 11697992.603186022, 11698005.773402805, 11698032.616223477, 11698034.375, 11698035.673653074, 11698039.931172736, 11698046.153088165, 11698089.0625, 11698089.335394878, 11698093.75, 11698106.223643132, 11698119.373721095, 11698214.870961614, 11698217.741019893, 11698225.084151266, 11698240.30310615, 11698253.39639113, 11698304.6875, 11698305.602801662, 11698306.25, 11698306.25, 11698312.485133816, 11698312.5, 11698338.158769684, 11698342.202654805, 11698389.71610476, 11698391.255665809, 11698391.407066427, 11698400.0, 11698414.743048593, 11698420.3125, 11698442.1875, 11698453.813448614, ...], [5.460252938635176, 7.761151899293302, 84.73866415338526, 16.403766811472025, 96.01688015399841, 6.134239967474135, 8.904887757153555, 10.128606482659853, 8.846840632340145, 22.75231633715127, 116.03002770891732, 86.46409311736524, 56.72400177626367, 41.57113736040616, 52.94108340708378, 11.050595720292417, 67.6747647223016, 10.968480553573704, 12.664908545881714, 76.44232084026555, 69.95421131001568, 20.695826308238075, 14.345698968347081, 5.088235580123728, 20.618582634751206, 13.034829290547455, 77.50955154871029, 142.21177762836902, 25.88174930402198, 15.749669340569753, 18.167017393151323, 69.35984563527664, 46.06303738105767, 7.008587553394116, 75.89721723769506, 5.371857432313778, 5.3293471870267, 8.49642649324221, 22.542734232769043, 5.671471202306295, 28.387929452118524, 6.120929708448949, 5.902982555343133, 26.795007622363713, 24.439526888198536, 7.1642290921061536, 72.912121271182, 31.71078938222662, 9.438248654153835, 79.68554585892261, 14.111262756722018, 46.17079772553453, 14.119673195204157, 104.20153383088044, 38.2845181594562, 48.160347438650376, 36.2162526921407, 176.8396839206033, 38.95608405231192, 7.101744866312509, 46.2991262185842, 5.9730941609832024, 16.040181375806625, 90.44852200292127, 72.98441667040059, 12.828448198531335, 47.21228598866898, 5.577247357868122, 5.838773544111049, 17.464077892425774, 9.832532449395421, 8.824399699517503, 12.973962540598336, 74.6884390670657, 26.093209584377163, 18.349696435836613, 65.30776262617348, 13.39073600452021, 57.522577363188105, 6.482257769902875, 15.5047795371232, 28.786502064140116, 9.200872311160754, 40.20368843742601, 105.903401862619, 102.32008572861324, 41.64063568888645, 25.351714507109147, 43.90431481910174, 18.751208762936493, 8.006893478919068, 14.777195830827345, 6.135381506937779, 8.99485388755833, 5.353250119138213, 12.56321361490476, 76.69101816221578, 38.03851993515669, 37.35945033344258, 5.947960414419268, 9.424891016512479, 34.03891251927486, 57.35927944087869, 5.312337830012777, 7.3200150823440655, 67.08303303979407, 64.67294415124236, 26.42869766429424, 57.598142254141905, 16.864679531197535, 28.817489280251284, 91.18327588364005, 75.05729699276445, 29.66071328616131, 42.5370660683604, 133.6198071380245, 81.24475808469127, 7.300373708323997, 16.02076758438511, 16.439071571406583, 9.741325236442703, 51.90625768079173, 48.8682276243933, 11.914972694330329, 6.371917790152286, 6.067480291182612, 45.33783066639404, 5.131085061499675, 9.42187959927735, 118.52198742287008, 11.928169821661557, 20.865513397463836, 9.974066726062185, 80.40377696099017, 13.917347790229158, 99.93737864648097, 12.199246414528321, 63.27799076620135, 12.217809387957397, 11.123133386669219, 39.507774652209974, 78.20880255936967, 18.147011436974694, 62.43178096004782, 62.395115832064945, 16.42259945656228, 9.420954004086957, 58.42660979670131, 40.20839468143809, 12.120858068445783, 50.537654004962235, 62.63392406449596, 67.9527681464524, 12.843089976866393, 29.594905465810125, 59.3591985438696, 16.113815948377265, 78.64232842838817, 14.396647387327507, 37.786661110650684, 6.778670967118271, 8.658177845079965, 23.57969441157581, 53.72055006893286, 19.00910971293715, 87.3734405571612, 22.85947657740026, 62.31901211347787, 5.13895489231768, 59.510797338933514, 20.39786316183278, 13.974294104226278, 15.66010270254959, 36.50464359669958, 21.693222542692464, 81.98206798522142, 5.061923194040572, 21.814759383337602, 42.12493198354341, 13.5184929886327, 56.19156337257718, 11.002739328089298, 17.8825199822449, 14.947239197496634, 26.428498383663094, 76.70989492960746, 39.25993189781575, 26.275587730587304, 7.494773622136089, 11.883114059624235, 72.18193496379621, 89.13746046243524, 26.544828764795216, 38.78132319685075, 41.36684765715972, 5.754138817454306, 6.302541606917939, 7.701068708188628, 47.34168555254441, 27.409706301366473, 20.066193710694126, 64.05982147428055, 17.097140834562147, 14.943685809065734, 12.25448780801949, 11.030200293249626, 107.65735611134843, 75.40906344747819, 29.78091443116981, 83.76900872540476, 87.37375472274613, 11.627634988003521, 46.55244809816368, 10.308582560585469, 27.217881317205, 9.596549229118414, 37.73088942493841, 89.93662112911235, 15.151758257172641, 6.612080922138294, 39.942099575956355, 91.3996310398406, 20.426872481171465, 5.3250498388549605, 78.45914810309233, 31.525066740246366, 16.754395728156094, 64.48541192839271, 11.479570837068596, 10.80071773966907, 17.974109176277725, 7.1202035147386695, 8.604370737092108, 19.52815133296919, 8.031991273926904, 20.30240356391667, 144.24356982291104, 48.934891160809656, 19.95545121856008, 36.767026235832304, 116.12147798846848, 58.671509232830125, 33.816978650516525, 16.927201919268324, 145.76720409681863, 21.592355163982415, 100.15869774989565, 58.502053324588346, 14.075413152957342, 23.351047445450572, 28.38920716514014, 20.47041610851933, 74.84281573291688, 95.90751795624138, 12.668682518615093, 8.515504322555659, 22.20638655476027, 14.886018072712252, 23.748107571575527, 7.9697930302413855, 22.007913167148317, 29.754265031729435, 59.70719181426905, 72.10934946382466, 14.106885866851364, 15.374037749109089, 41.13638161429821, 6.791074135284568, 34.69929195284763, 56.1919423791805, 43.324599454993376, 20.59748440384528, 76.58807241837948, 5.786346134002089, 24.02818386732737, 21.92278471642827, 5.439471752098302, 45.42742403682226, 6.83797629180351, 7.189301524605561, 17.521734233715744, 9.905171561662469, 48.71434200584985, 10.081917219405934, 82.50789424186988, 96.85632094360368, 41.25198182604963, 8.430224352894, 24.024475386184598, 9.599883492042627, 37.47544052107638, 43.96127646263986, 77.19043148096226, 6.461796331591985, 12.032168751297066, 16.85000447455032, 31.21595021066996, 21.733632784957305, 59.43136586977271, 67.11409050163618, 6.397541345034614, 22.895037790228127, 64.53142813022939, 12.254512739417077, 56.48429944530151, 63.04665565086593, 9.2534806529787, 22.900595664815302, 10.993787807510214, 6.835279257107196, 12.91248064309481, 38.20728176005609, 30.648892033695628, 49.54066678160679, 46.85494128568102, 48.40745994189808, 15.388824834027771, 83.96267645187629, 21.04730499651902, 11.516878179375313, 32.79300790183296, 45.56129048785399, 144.7489606332726, 32.437970509277164, 30.594638227151872, 10.231907752288587, 14.972401469092276, 17.351125615580745, 58.08628639542522, 71.72315322317593, 50.67509086805651, 32.251833873073394, 14.621868896467543, 87.12359074732161, 9.464198342592391, 20.29348258098955, 44.91669603804496, 29.75359655251838, 58.296632415652326, 22.696486327137915, 7.354362645185148, 10.283956456530788, 27.749546103309672, 60.4959971084214, 126.04152369779459, 10.971492205746108, 33.14323466354499, 9.688769894998774, 5.48913671564534, 17.23337650617966, 5.39155197219837, 64.7833510364125, 8.681879760229151, 32.08568169476225, 95.406732743434, 81.20029887090611, 13.357387139152026, 18.22622879739086, 70.54212164260488, 47.82487157465533, 19.60197207438647, 6.102389726884679, 104.89376167116731, 48.295192509305025, 68.86675724724483, 57.74065087529928, 29.548551857846128, 98.05670922935687, 10.850451502600547, 17.553502087248432, 102.17339371968733, 22.983146597891412, 45.883387634246304, 27.158692471550413, 36.84359427956782, 94.86470251889953, 14.829221129613797, 5.855152951594521, 81.50666961764533, 104.4042651678436, 35.10677717896589, 32.22170863680171, 24.75770424978792, 85.94526200637023, 9.458763856167783, 39.912859690691214, 12.881359389002789, 37.3821842201421, 85.60639539489765, 9.135914322126585, 9.771800266227398, 34.07180832724616, 48.61598339990915, 51.12816907825314, 44.856262767198196, 89.65254051160922, 43.169429896497945, 7.53501807823781, 74.00598087486665, 70.32081675812107, 48.201612018827205, 19.018342884893148, 49.139600861292024, 24.737543343841025, 10.783862611441288, 5.0797168212970245, 5.505406168262883, 37.24602161751498, 66.58211707103514, 14.159584435806861, 46.10884479128927, 8.718990800338952, 159.16834635748938, 43.37179584736314, 9.680090161869535, 62.33195737284045, 90.77201476943068, 41.39322504255997, 25.34024597295846, 144.58530268001647, 9.929050496930142, 12.622866291928304, 71.4066256559322, 52.507995300687476, 23.625262663497352, 120.08778362864521, 8.07426772829945, 18.121136815297994, 59.1413717396908, 5.46488740377869, 87.7885445725395, 79.31898892504472, 34.67017308419803, 30.792505880411387, 9.328715754295535, 11.565405957795656, 37.75029919713322, 55.67795108322393, 22.96255276368028, 40.27504379245481, 66.02423932722203, 40.36933347642946, 11.995860337669317, 30.310044550399223, 43.3108220789442, 60.408918582484745, 26.495989089755874, 24.503777878669553, 20.436571881431263, 21.46986673190395, 8.199210853653256, 23.992616291786096, 39.340861018900476, 7.266464751823209, 26.348989108749397, 13.945010061229835, 56.570555870793356, 87.04487634500852, 24.72418620322019, 7.599149493424031, 17.787240798514013, 112.51532354765153, 14.025637784278988, 25.938004605890214, 69.97410342439676, 39.38545067980556, 9.301167039002738, 24.31709543403755, 6.565708808269785, 18.935019075310876, 7.770970233463848, 104.6387065105746, 65.55944586951767, 16.03965033391386, 45.95132468808685, 78.06493314909929, 67.1475752098492, 6.799374364463168, 27.483737679478818, 42.882742569003284, 15.963619025940107, 35.62905731238479, 83.56457148283232, 32.234302885592136, 49.51200905449721, 22.109813529819878, 12.61518784749462, 34.95657746934574, 8.203800765401239, 10.625983067439343, 81.44909910903309, 10.08390533103058, 5.67585066521472, 5.309564091524374, 5.258311621024151, 30.42051657977705, 13.474385735369362, 6.665560888840471, 79.51246281444156, 9.498623745493198, 28.37510103152433, 44.82600519420977, 6.268317117749086, 40.29594875839345, 78.58498899367034, 92.00948271452206, 7.675630986373837, 122.21642777044758, 28.124652277505167, 26.76744810530409, 43.37663847585634, 13.081519037939678, 30.652691276516062, 26.866335071587905, 7.292551525799824, 28.796549251450415, 35.21514570388574, 8.70826071174015, 33.6409784984766, 137.44600281926586, 56.18831392919827, 8.172911678332376, 8.289556084569897, 19.516646293609327, 45.150694793730054, 8.854208325790655, 9.980160897897589, 18.907969493147167, 38.872714281461406, 48.110353949953435, 66.26526135409135, 10.063361607782294, 24.89300071511056, 11.80374187714371, 100.91742467431432, 175.62880405674, 7.661512595899223, 70.59882245337243, 10.119598561078437, 23.593358620055227, 7.419174390179069, 97.69761476262109, 89.78416287875991, 23.22137698084453, 28.88657975628615, 84.36731582171622, 5.779901636477087, 9.812838713524707, 44.02778337792866, 71.97773831542602, 25.18007863666533, 14.844777608067558, 45.75836164060701, 27.122473345751345, 11.810673430393223, 14.350215259792655, 36.72173653892308, 84.4465664725421, 12.598069405027976, 31.422094166170613, 100.10447392870998, 34.088050103748124, 48.576606882254154, 58.98568738718978, 63.925998658556054, 70.5328509438142, 21.88948726548239, 13.228385901795383, 18.694872033579124, 14.353222906791542, 203.1875977401222, 28.005826101642178, 6.623551913450039, 7.848503871771209, 24.24111326585492, 96.14544674434796, 5.2765809793043195, 131.2291784114163, 27.125622053900184, 24.60556551719723, 31.863272699069142, 10.907978904581881, 42.186989223900554, 38.9717900345389, 22.026733179078946, 104.12575804004702, 15.169775164363848, 88.00894856102785, 7.114661469303509, 74.16514005498458, 18.443649707889538, 96.14845780705718, 19.954045663199725, 8.328683035484742, 16.971025176243504, 159.49183560393195, 12.495566608697178, 12.124446337300446, 16.258515317060642, 74.49190049851579, 25.768021103686625, 7.8948455944351625, 34.9012975647499, 13.853314951978968, 7.69192809911607, 8.537603506017085, 16.166016132232542, 11.469442174772794, 20.41914189833026, 48.07497458659282, 33.22316296678188, 9.63506093010219, 80.04108591492772, 15.518597072958649, 78.0082543464886, 10.773608967085952, 16.666483122162568, 28.69893685187832, 18.3800984630141, 11.081948869465108, 18.735288051651775, 54.50733587542842, 9.130977011324894, 14.283660693645157, 17.45106849382511, 76.28796050238496, 39.57396209349859, 10.186030523332795, 16.937844980865194, 7.427167610146756, 102.08844029569481, 19.299410904108818, 13.210150726665546, 29.096458459632565, 94.29647023094972, 24.232903954284776, 17.809417296860158, 162.15426786475211, 31.480797167956247, 66.74625023215688, 5.355117018959853, 145.38305865409558, 20.424773276174445, 16.83905433399815, 106.23618972477499, 12.222365064725809, 42.42164072764561, 23.354438907843825, 68.62121749408874, 74.12055909617841, 13.20710511063656, 57.051789503133314, 46.853499265257184, 7.515015953010547, 61.09181836159534, 23.247832738317136, 116.20748530040856, 166.63449235107592, 9.089555663891263, 11.087089416605268, 6.361052799761944, 26.922310992471687, 63.99577617048914, 6.000568982775497, 11.893982789922775, 20.34627175149898, 61.239000986937135, 42.478591426169174, 26.35606511386498, 53.648163996918605, 8.015901955351698, 164.39024831191412, 26.4112282196, 78.14035308266259, 27.112461734231943, 9.254885598742849, 16.488938423993527, 36.65811277235814, 13.094923464168444, 32.019887692627044, 104.27649476867904, 5.943811351596394, 117.49975741199533, 139.74110577709413, 23.708926632220095, 5.203630966098047, 54.84642977113471, 17.15424484040857, 31.56206768992689, 107.2311492623032, 16.355618867712153, 39.85114954086866, 45.500764891722966, 5.877190954281901, 6.401988189727852, 13.552957626206766, 57.747190321358744, 23.191552768294827, 16.128875865651743, 5.795852103702941, 14.199401364446071, 14.78526700394337, 17.708250286516122, 142.2998573220712, 143.99923099159062, 71.74120192361254, 46.83294228981629, 5.684008927798381, 38.35746506664283, 11.937322459319901, 8.921853546151466, 6.211580889031861, 29.598608464171214, 70.4397350602754, 31.314631733434215, 131.73479554900467, 13.569975711636493, 32.337324994094196, 17.804748052199884, 15.289776177420338, 64.51566800645986, 23.153261666921296, 23.312616964453856, 10.467824175733178, 64.68608573198557, 6.7265712462804705, 8.794233064916284, 16.9259135743713, 17.9363267916371, 23.658972383063723, 24.110259183348983, 12.002690649525293, 10.99402935809744, 33.64124045189928, 25.18112982135089, 37.903189961612355, 28.819876879325818, 70.22782335891402, 7.3461910933869925, 19.914971501948273, 53.323963272735575, 28.808111929211034, 62.29475208451602, 35.3869955360457, 5.124090285886879, 163.01932690451414, 6.6642805485822425, 14.620142421881159, 45.05305320584166, 10.589427522651086, 115.05362047330794, 132.4936673264293, 140.6142137080598, 10.386625063871302, 43.40311539164333, 15.747414063168058, 43.60092398432318, 8.789095889117737, 12.341510918615054, 12.068229446718057, 11.943936267235319, 73.15042838584662, 8.409589523245137, 56.434053944727076, 6.180980510169613, 7.569939676514714, 49.071420653752966, 102.01026024913183, 21.105663165367947, 68.97217978703543, 107.8783985979419, 16.73911670182204, 28.673736173402883, 63.6610179713229, 21.07090159419862, 5.549601627328112, 9.670046579955935, 28.951858763100425, 13.28402632160907, 8.566066806974483, 5.777521030803525, 40.56698727065494, 18.25264714159934, 90.67210910094752, 8.056193235443407, 7.978706059551002, 13.805732668141088, 9.72453181057739, 47.52082984970545, 47.29484724062753, 33.977837708850565, 24.41243361050931, 22.01136727328236, 9.788019688152673, 27.856336060489017, 17.339742710818705, 12.90683061234564, 58.403170544505144, 96.39184801106418, 52.2429681134834, 61.111733053296796, 20.852099505511198, 29.20218601458562, 45.53619948369089, 77.08608244019965, 23.046006346731918, 28.412236716317672, 65.472064846792, 34.52303182039036, 6.390199391780841, 26.41159419269373, 73.63537392890555, 46.92264873029664, 7.980032036751357, 109.56985734614345, 38.041874350159155, 84.18743369554728, 67.45423247434623, 7.274954156712916, 15.851579144380272, 7.912076296681365, 9.88243145466224, 26.815152176146164, 12.008318942220235, 50.80720769562077, 12.715224767930737, 108.71446582391879, 25.46941442854053, 61.42361693995342, 27.62682535541999, 51.76834557083591, 64.65650200016543, 47.069806726132796, 24.741767109803234, 102.63507701940637, 5.385121529460548, 66.60188545774248, 138.4659755925927, 19.31694996815614, 11.089952200948185, 71.97491884142681, 89.12245906274276, 93.91796863094152, 8.423888540316218, 54.406648115163144, 51.45186332478594, 65.45628265563698, 122.01073105213557, 45.57263324823092, 16.61923938638801, 53.751274856852305, 40.501986141325304, 38.15456163793765, 16.474717682608883, 17.26285625134095, 11.691506043462146, 51.884073724495074, 55.99771596703191, 10.95099148996755, 28.127722407055206, 43.46102847436189, 27.478775492973522, 11.219595862052032, 9.513023398412507, 33.282197062356964, 23.98210077765086, 32.50917033452184, 9.21744690383711, 112.64476494422696, 14.545639770718132, 46.17952768036199, 7.5254839956617925, 6.668137135072295, 75.3465943823278, 53.90310903609527, 13.084200328141849, 39.94653989844454, 67.60275787102906, 91.53926752805344, 100.38426016009393, 90.75935930990298, 26.164330183047063, 20.52924949781164, 72.86875507750986, 12.773897892194782, 20.69657730764871, 81.63357945280771, 99.41669369931313, 10.536782001672037, 13.622918270426808, 27.033852727046625, 45.06270250719752, 12.601645204778164, 12.154788522630136, 12.336223302690678, 5.474333924671807, 79.64859721402291, 6.987135430144392, 12.265863747538786, 103.07846116383118, 12.199727853303362, 51.70884693947353, 22.14649750307853, 46.71010158206659, 173.4244968399875, 23.01260604372279, 31.318979762653136, 66.63121123738328, 16.05419623647354, 15.073022544220489, 13.158908798990621, 92.23594620821811, 11.590865302987401, 34.457236499605074, 23.658454114022103, 68.76685251774346, 46.00064791507219, 67.86293393208113, 6.383656089938611, 41.52708033053883, 6.063647685044109, 93.92788713973664, 39.8461132185202, 19.288773094570683, 18.1581449764045, 67.45122397445914, 56.42652748743169, 18.407978240298185, 59.656171266636676, 42.313225531415284, 6.057935076075061, 27.299959659273068, 17.393419474026523, 70.6212110756625, 21.73313006573548, 8.105455272744686, 10.079781723715895, 5.609502283309166, 40.77469782287106, 80.61500224352179, 11.790392994599127, 21.17667387217765, 82.18407141926588, 12.192736869289355, 8.374429370995584, 80.88266656707225, 7.015586889498976, 45.48162623373101, 11.222114773833981, 49.83957489413025, 12.590030226330438, 14.677571153673648, 54.02389417383945, 31.668833549591767, 157.61731280865143, 12.006279445105097, 93.37667165794795, 7.4801412494733155, 37.87335990062296, 15.051136349745814, 17.284300358289716, 93.1567037943517, 6.602272861197759, 36.11813370456603, 18.636116011922535, 58.41156274941314, 20.234010406215628, 36.76483227718627, 21.729776201693603, 22.830815389335765, 126.86343297518783, 24.22379964101965, 8.806395682948656, 10.160084813927545, 60.116426561236764, 11.58284557445704, 41.25951122414962, 11.08675772819767, 65.72771626136986, 21.59946116810341, 12.119207053374643, 15.27225790496426, 13.841823600929501, 136.40850948109116, 42.79733198769789, 18.51436242346445, 65.3819171500322, 35.82133465911016, 39.662611784817, 97.909141333533, 18.23134923425069, 171.3803284753017, 75.28607072595256, 96.40009759915637, 19.087817177635923, 52.680809091128836, 99.31385021882228, 44.0671173765733, 30.683015165843575, 18.428293514363634, ...])
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);
([6895959.339687811, 7298578.541477725, 7310473.634190553, 7322042.188441395, 7372643.75, 7489167.619811428, 7830251.010987607, 7849544.563052268, 7892789.990365247, 7914702.742599266, 7937582.707607367, 7981050.214930049, 7982051.428680278, 7988245.138200995, 7989687.5, 8001271.825100143, 8043748.4375, 8053535.8331863005, 8053580.48943723, 8159887.5, 8167035.854105854, 8174738.208429214, 8223199.834377235, 8236301.036146042, 8236515.032625193, 8261854.077608687, 8304035.9375, 8308896.865053416, 8342954.811274263, 8345626.759516647, 8382503.531823345, 8393723.34687006, 8394354.6875, 8396097.990011692, 8430590.625, 8435588.348363245, 8442459.00338948, 8478555.064310236, 8510843.349154642, 8525007.243393637, 8531350.99507135, 8534864.372396491, 8561688.63453475, 8590179.133581284, 8617412.839309977, 8621015.785270855, 8622951.5625, 8625546.875, 8642048.561214836, 8643151.5625, 8643156.013673717, 8646137.026213579, 8665113.828768818, 8674918.75, 8729185.56374518, 8747545.3125, 8792992.138149163, 8830589.0625, 8859656.287177209, 8902710.861997817, 8903691.773222974, 8945987.878880765, 8955599.937712872, 8958678.661335612, 8960809.905578488, 8966902.432666972, 8984511.08359984, 8984547.752642535, 8992880.017053325, 9011942.722151553, 9012900.538624262, 9014936.832653956, 9034107.178704252, 9038751.5625, 9048699.863639198, 9081002.239204293, 9109004.111838933, 9147979.210951371, 9209654.6875, 9252314.031596795, 9328204.827827314, 9383089.715817602, 9388526.403984915, 9411529.009231573, 9427095.359103143, 9428166.192133192, 9429646.147789635, 9470026.378286242, 9527082.783910906, 9555463.687849548, 9556524.43081403, 9577264.018711962, 9582028.567725869, 9584083.94822407, 9587284.7019165, 9634338.258141605, 10495489.0625, 10645495.3125, 10681573.4375, 10681656.347713454, 10737775.10853238, 10756454.663992096, 10809464.0625, 10809741.297979401, 10828603.830098178, 10853250.0, 10997848.4375, 11042950.754497353, 11043898.226994017, 11435591.052112238, 11493863.55109577, 11511517.1875, 11512870.977032665, 11525652.146566298, 11530033.791481908, 11536653.902611393, 11542199.371473491, 11544817.827061972, 11545037.40821069, 11545674.869024206, 11550158.26052774, 11550475.0, 11551919.752323577, 11552266.0763471, 11553022.661210908, 11554257.611862678, 11555373.4375, 11555493.777252825, 11556851.667598547, 11559159.262309602, 11576539.520615391, 11583116.622198692, 11586030.360907018, 11588169.948992815, 11589209.077576306, 11589584.375, 11590525.592113713, 11590973.4375, 11591327.163452528, 11592243.747072099, 11592621.875, 11593545.3125, 11594352.20830137, 11596649.250388645, 11596910.9375, 11597178.860953135, 11597353.229042301, 11598056.25, 11598539.710221266, 11598958.366824007, 11599026.5625, 11599261.508395737, 11599508.323111877, 11599622.751147661, 11601721.875, 11603640.037102338, 11603659.835688358, 11603947.174923526, 11604326.411806865, 11604562.5, 11604562.575486239, 11604695.954781612, 11604962.186490307, 11605693.75, 11606069.521336345, 11606069.698246451, 11606287.851178711, 11606299.36962138, 11606522.26634074, 11606938.671537923, 11607144.695220897, 11607145.033273548, 11607515.801567338, 11607673.787360584, 11608166.707330009, 11608192.1875, 11608533.98785096, 11608535.870348576, 11608673.4375, 11608908.943795063, 11609246.875, 11609254.606050942, 11609419.354084188, 11609871.876502462, 11609873.321722664, 11609981.17055168, 11611051.5625, 11611654.562413475, 11612382.502314275, 11612411.3724105, 11612415.66492902, 11612690.685306253, 11612887.391218988, 11613093.75, 11613985.13488119, 11614458.532101665, 11614628.39971232, 11614915.8876237, 11614939.763385206, 11615429.628522344, 11615708.95497122, 11615763.046141481, 11615775.470017878, 11615947.285526995, 11616216.243295226, 11616376.499209672, 11616460.9375, 11616510.401464855, 11616516.66778279, 11616629.6875, 11616632.8125, 11616650.297908656, 11616864.0625, 11617025.966573037, 11617148.718500014, 11618240.922769602, 11618573.668073809, 11618652.828838268, 11619101.616588922, 11619361.691045227, 11619715.43769462, 11620359.522099402, 11620362.355043065, 11621415.124223907, 11621871.875, 11622242.04543642, 11623389.468695218, 11624456.25, 11625178.339022983, 11625809.155220604, 11625817.742598096, 11628117.182749728, 11628820.868705202, 11629944.590045603, 11632033.860409282, 11633954.059236668, 11634128.763164258, 11634429.6875, 11634496.670056751, 11634512.5, 11634732.324586805, 11634850.512485141, 11634879.6875, 11634897.313807817, 11635194.671662372, 11635289.344011048, 11635367.186245918, 11635437.5, 11635443.502561789, 11635474.66805165, 11635708.619914284, 11635968.011357972, 11635987.712299742, 11636166.304485012, 11636296.116041945, 11636367.596690314, 11636457.381149491, 11636639.047864614, 11636822.291915983, 11637783.723727861, 11640601.112604111, 11642378.125, 11642537.285971064, 11642752.166719, 11642806.012321427, 11643209.676697768, 11643235.9375, 11643254.824034072, 11643370.028667081, 11643694.928382976, 11644143.017317293, 11644318.155273853, 11644355.706186593, 11644515.244404698, 11644525.42766705, 11644560.63958117, 11644735.40756527, 11644908.77083392, 11644926.924411604, 11645200.251973704, 11645269.294480322, 11645317.796154113, 11645343.75, 11645388.27165485, 11645475.0, 11645490.625, 11645569.406693269, 11645573.699607193, 11645687.221131675, 11645723.738823114, 11645723.967847656, 11645726.5625, 11645770.908301618, 11645804.524217647, 11645806.760640139, 11645833.236850154, 11645857.8125, 11645884.236145869, 11645892.1875, 11645991.639072603, 11646008.778921634, 11646010.567421269, 11646021.875, 11646503.743306959, 11646532.761068465, 11646644.985364862, 11646653.031384274, 11646690.25539728, 11646709.287599321, 11646897.224180883, 11646944.654213754, 11647076.5625, 11647097.79536378, 11647167.1875, 11647178.125, 11647253.125, 11647283.878399013, 11647325.407760033, 11647516.641618978, 11647951.797985462, 11647988.529262751, 11648117.1875, 11670218.75, 11670219.63621465, 11671198.4375, 11671297.777314933, 11671448.44558135, 11671814.577643983, 11672130.665402874, 11672279.167787686, 11672475.0, 11672991.722123541, 11673051.191928616, 11673126.5625, 11673128.277983485, 11673263.433203444, 11673478.125, 11673490.320925463, 11673621.875, 11673694.765035674, 11673768.005153466, 11673802.508615488, 11673949.959584836, 11673959.375, 11673987.5, 11674023.335205773, 11674064.0625, 11674117.581922129, 11674119.372544847, 11674199.136995848, 11674298.255244114, 11674548.071670007, 11674574.117021784, 11674678.125, 11674760.694562249, 11674803.050857253, 11674826.073903762, 11674832.96710236, 11674867.1875, 11674944.517799526, 11675213.349438267, 11676086.073808381, 11684472.380498547, 11688523.66210613, 11690761.37247251, 11691451.5625, 11691803.125, 11691869.618257761, 11691937.315070957, 11691994.299859198, 11692025.0, 11692063.196091825, 11692097.76565489, 11692099.470765758, 11692117.126061667, 11692128.961393634, 11692173.407724585, 11692177.103867022, 11692246.875, 11692248.4375, 11692271.875, 11692278.125, 11692306.024944322, 11692309.375, 11692320.459378477, 11692360.9375, 11692397.960461842, 11692435.9375, 11692482.753158566, 11692515.384387711, 11692570.791136948, 11692589.324451407, 11692592.1875, 11692617.1875, 11692618.75, 11692621.802975183, 11692668.002268158, 11692712.307360077, 11692727.70097012, 11692743.75, 11692746.875, 11692758.585101048, 11692781.25, 11692891.565055557, 11692907.580787588, 11692909.961377926, 11692918.166285489, 11692922.248635827, 11692951.5625, 11693021.653523143, 11693050.0, 11693056.98702113, 11693067.849458802, 11693092.451388722, 11693095.697967488, 11693104.6875, 11693106.75414786, 11693154.211981827, 11693160.75251958, 11693203.125, 11693210.006277999, 11693213.283961782, 11693217.1875, 11693217.1875, 11693240.315112801, 11693247.17274247, 11693294.888215663, 11693299.86550178, 11693332.287381044, 11693337.572510563, 11693375.0, 11693390.304174954, 11693404.28479594, 11693412.5, 11693462.496820003, 11693470.575571446, 11693499.040398238, 11693521.875, 11693533.111660426, 11693578.125, 11693582.8125, 11693587.764081946, 11693597.367464602, 11693604.6875, 11693613.134722063, 11693615.315463508, 11693617.583660742, 11693618.506751232, 11693625.949637868, 11693632.310167793, 11693632.643552125, 11693640.820493843, 11693653.581418544, 11693664.586852184, 11693669.324527133, 11693693.461442748, 11693715.625, 11693718.8964845, 11693720.085068813, 11693732.801182596, 11693741.213654228, 11693748.362002445, 11693770.049497098, 11693781.96255905, 11693791.40377848, 11693807.8125, 11693812.464023363, 11693827.86808103, 11693841.108833397, 11693844.567911038, 11693848.878607681, 11693855.700124597, 11693855.74378529, 11693862.761076197, 11693865.625, 11693866.134002812, 11693879.970757043, 11693906.427044021, 11693907.14479089, 11693915.625, 11693929.932089219, 11693945.3125, 11693946.428396279, 11693950.0, 11693953.098757586, 11693965.184677431, 11693966.405659094, 11693970.794442, 11693973.277617998, 11693985.590907473, 11693993.75, 11693997.648431335, 11694002.628155496, 11694014.64930627, 11694016.088710207, 11694020.3125, 11694021.428283757, 11694036.98876326, 11694045.3125, 11694054.878857771, 11694055.51022283, 11694057.8125, 11694060.946349755, 11694062.5, 11694076.5625, 11694078.125, 11694079.883317513, 11694090.621861383, 11694092.783559587, 11694110.921794347, 11694117.1875, 11694121.28321981, 11694122.362749426, 11694124.910179209, 11694134.988219686, 11694146.875, 11694152.022399265, 11694180.407996396, 11694182.366239501, 11694182.8125, 11694189.549150309, 11694193.528688457, 11694200.00562863, 11694208.321675494, 11694217.41694303, 11694224.376033992, 11694227.241558678, 11694228.487392621, 11694233.96500153, 11694235.699573994, 11694238.574996762, 11694239.817514928, 11694241.3341782, 11694244.1433506, 11694244.820992, 11694248.4375, 11694251.720797794, 11694254.6875, 11694257.055117361, 11694266.312699636, 11694269.773206944, 11694277.614917714, 11694289.85299239, 11694296.133676566, 11694297.409147223, 11694298.130187795, 11694307.341051478, 11694311.456817834, 11694314.0625, 11694315.625, 11694324.804224338, 11694324.974387659, 11694329.6875, 11694331.174901543, 11694341.811074425, 11694347.432390945, 11694352.04101377, 11694364.0625, 11694366.398273934, 11694375.798444947, 11694385.9375, 11694387.5, 11694390.625, 11694390.67117798, 11694396.081853112, 11694404.192541705, 11694407.3513386, 11694413.526449904, 11694421.039824363, 11694421.711591564, 11694425.916984351, 11694429.271423345, 11694432.068576068, 11694439.693268588, 11694440.362443656, 11694442.1875, 11694443.273132749, 11694454.6875, 11694455.268951654, 11694456.252736045, 11694458.83138586, 11694460.792224647, 11694460.928619325, 11694467.765466176, 11694477.676880514, 11694481.25, 11694482.871126315, 11694485.9375, 11694492.161605854, 11694498.4370665, 11694505.378227921, 11694509.375, 11694518.080513136, 11694520.391282747, 11694522.321936496, 11694525.31185509, 11694529.26903431, 11694531.806070466, 11694533.119861959, 11694533.992659507, 11694542.030560564, 11694544.49018236, 11694555.69677151, 11694557.494354447, 11694558.05123463, 11694558.258830799, 11694559.66300911, 11694562.70815733, 11694563.4476516, 11694566.678375108, 11694581.008679057, 11694583.151041191, 11694589.958509825, 11694590.76859202, 11694601.5625, 11694602.885997688, 11694607.912458094, 11694610.054063357, 11694615.0147815, 11694615.595526915, 11694617.977948003, 11694634.375, 11694638.815556722, 11694640.440991405, 11694648.063581226, 11694648.595352449, 11694659.803707728, 11694668.05056156, 11694677.003287174, 11694677.610460663, 11694687.5, 11694688.68481786, 11694690.08213069, 11694690.625, 11694692.1875, 11694702.515856419, 11694705.426930027, 11694705.496193472, 11694715.137379685, 11694717.1875, 11694720.69259375, 11694721.043740973, 11694731.49568496, 11694731.672284935, 11694733.752950843, 11694747.478115369, 11694752.51842959, 11694752.793328386, 11694753.125, 11694757.8125, 11694761.95598902, 11694767.1875, 11694770.365754588, 11694774.749310018, 11694774.991920792, 11694782.472082099, 11694785.403452234, 11694795.206671983, 11694807.511925133, 11694814.036357908, 11694814.770920197, 11694814.816945154, 11694834.375, 11694856.926521122, 11694870.7530335, 11694874.643973555, 11694875.977341799, 11694883.88592897, 11694884.028485535, 11694889.0625, 11694891.637995863, 11694893.95534184, 11694900.078567283, 11694937.124604113, 11694939.725221002, 11694953.033098428, 11694990.97929046, 11694996.408874504, 11695001.434142716, 11695003.204269873, 11695026.5625, 11695037.550452987, 11695043.412697462, 11695048.489708878, 11695051.259219388, 11695057.820703432, 11695067.1875, 11695078.605319526, 11695096.954835491, 11695129.6875, 11695136.264857654, 11695162.5, 11695181.99698307, 11695249.256750315, 11695254.122241054, 11695261.95159182, 11695265.625, 11695272.443923522, 11695287.780153131, 11695296.62695331, 11695307.368293462, 11695318.708395015, 11695322.067893606, 11695329.071330953, 11695329.6875, 11695334.33274637, 11695339.0625, 11695348.074015796, 11695380.14762994, 11695416.087795619, 11695433.847384857, 11695441.734232597, 11695473.104504429, 11695479.907832008, 11695495.3125, 11695510.078353208, 11695515.392383259, 11695518.75, 11695529.18446463, 11695539.150966667, 11695544.630072061, 11695556.489214187, 11695558.453559, 11695560.469892249, 11695570.3125, 11695574.812133549, 11695575.85066228, 11695586.620101782, 11695589.411622781, 11695590.317781596, 11695595.37742683, 11695602.058396917, 11695607.725260131, 11695625.0, 11695626.366795728, 11695646.875, 11695647.605799353, 11695651.5625, 11695667.978608573, 11695668.075774234, 11695673.181083743, 11695676.5625, 11695678.125, 11695678.125, 11695691.885041619, 11695705.82179933, 11695710.419295548, 11695727.010387214, 11695736.666224685, 11695746.500980953, 11695776.493139068, 11695777.180317668, 11695779.11206126, 11695780.717804825, 11695782.8125, 11695793.068023495, 11695804.6875, 11695819.593025573, 11695835.033806618, 11695839.59102271, 11695844.216170602, 11695847.917912215, 11695858.038092704, 11695860.9375, 11695864.910691375, 11695868.656987878, 11695873.30177996, 11695874.436275888, 11695879.147763938, 11695896.85297683, 11695906.45880969, 11695918.937035868, 11695920.3125, 11695931.045525078, 11695933.962157546, 11695940.96077269, 11695947.25006943, 11695947.60456224, 11695949.484585369, 11695966.118595148, 11695976.057284663, 11695979.585701738, 11695983.474519726, 11695991.61196928, 11695997.974858088, 11696018.118600896, 11696018.416274704, 11696020.7435124, 11696057.45790788, 11696071.875, 11696078.125, 11696114.82389706, 11696124.550430425, 11696133.30728825, 11696138.67145306, 11696141.138159286, 11696141.52694551, 11696146.875, 11696147.478193345, 11696148.4375, 11696151.5625, 11696160.370748786, 11696176.5625, 11696182.39287705, 11696196.875, 11696201.205250695, 11696206.2442746, 11696210.9375, 11696215.251752678, 11696216.540245228, 11696232.695699878, 11696240.625, 11696260.9375, 11696264.996549066, 11696285.40618708, 11696321.446487246, 11696323.94823895, 11696327.512368735, 11696331.803445471, 11696347.094897177, 11696350.78014112, 11696363.0869281, 11696383.160835426, 11696402.06122061, 11696403.125, 11696407.073213134, 11696407.8125, 11696410.761106309, 11696410.9375, 11696419.596837657, 11696431.562889861, 11696435.9375, 11696440.05666865, 11696470.26790895, 11696472.229092097, 11696490.271276707, 11696502.68113733, 11696506.213692477, 11696513.747121567, 11696514.038210748, 11696519.503842674, 11696565.625, 11696573.4375, 11696583.06343484, 11696590.625, 11696600.726665383, 11696607.249011494, 11696673.373646855, 11696684.00742551, 11696687.8800485, 11696735.390688607, 11696770.3125, 11696775.595338536, 11696812.851445816, 11696836.437162, 11696842.520552082, 11696850.0, 11696890.625, 11696915.116133513, 11696924.979617912, 11696945.3125, 11696956.194839133, 11696960.995502966, 11696967.394757792, 11696968.305198254, 11696977.842898967, 11696978.125, 11696984.237082819, 11696998.13027779, 11697006.142111689, 11697006.25, 11697026.342281139, 11697027.627760204, 11697035.9375, 11697047.279251605, 11697050.971754022, 11697063.241563275, 11697067.1875, 11697090.625, 11697103.125, 11697138.633194977, 11697139.335408533, 11697188.46012731, 11697198.147149196, 11697199.782988697, 11697200.22149255, 11697203.125, 11697208.801718172, 11697210.523414373, 11697222.135787003, 11697224.919845395, 11697277.637941763, 11697278.899819117, 11697281.820774322, 11697283.468870252, 11697297.164568271, 11697310.9375, 11697313.52564764, 11697327.186141526, 11697347.782032609, 11697352.15484348, 11697357.415881863, 11697371.438096995, 11697375.0, 11697381.795397516, 11697385.57743018, 11697386.71170837, 11697390.610982796, 11697409.639206016, 11697409.985917792, 11697427.562817384, 11697431.645058535, 11697434.6523964, 11697437.982045148, 11697438.755240634, 11697450.0, 11697481.25, 11697490.625, 11697491.494326409, 11697496.875, 11697506.011540657, 11697529.90650935, 11697554.6875, 11697582.058950074, 11697599.82483005, 11697604.14301191, 11697607.8125, 11697614.367728608, 11697646.875, 11697651.417400671, 11697655.954853281, 11697660.872410476, 11697684.897487927, 11697687.5, 11697690.776297584, 11697694.953536619, 11697705.457245298, 11697707.730109138, 11697711.93957641, 11697720.3125, 11697720.698774075, 11697736.967683736, 11697754.6875, 11697759.964004282, 11697765.78751516, 11697782.7803378, 11697799.5813595, 11697803.125, 11697820.372071173, 11697840.625, 11697849.207295137, 11697849.928985303, 11697850.0, 11697879.620038878, 11697903.125, 11697903.62269788, 11697904.6875, 11697905.896330088, 11697910.073253462, 11697915.653467635, 11697923.940942597, 11697924.818199346, 11697936.634919625, 11697967.265918711, 11697978.843880368, 11697980.120067818, 11697986.863785774, 11697992.603186022, 11698005.773402805, 11698032.616223477, 11698034.375, 11698035.673653074, 11698039.931172736, 11698046.153088165, 11698089.0625, 11698089.335394878, 11698093.75, 11698106.223643132, 11698119.373721095, 11698214.870961614, 11698217.741019893, 11698225.084151266, 11698240.30310615, 11698253.39639113, 11698304.6875, 11698305.602801662, 11698306.25, 11698306.25, 11698312.485133816, 11698312.5, 11698338.158769684, 11698342.202654805, 11698389.71610476, 11698391.255665809, 11698391.407066427, 11698400.0, 11698414.743048593, 11698420.3125, 11698442.1875, 11698453.813448614, ...], [5.460252938635176, 7.761151899293302, 84.73866415338526, 16.403766811472025, 96.01688015399841, 6.134239967474135, 8.904887757153555, 10.128606482659853, 8.846840632340145, 22.75231633715127, 116.03002770891732, 86.46409311736524, 56.72400177626367, 41.57113736040616, 52.94108340708378, 11.050595720292417, 67.6747647223016, 10.968480553573704, 12.664908545881714, 76.44232084026555, 69.95421131001568, 20.695826308238075, 14.345698968347081, 5.088235580123728, 20.618582634751206, 13.034829290547455, 77.50955154871029, 142.21177762836902, 25.88174930402198, 15.749669340569753, 18.167017393151323, 69.35984563527664, 46.06303738105767, 7.008587553394116, 75.89721723769506, 5.371857432313778, 5.3293471870267, 8.49642649324221, 22.542734232769043, 5.671471202306295, 28.387929452118524, 6.120929708448949, 5.902982555343133, 26.795007622363713, 24.439526888198536, 7.1642290921061536, 72.912121271182, 31.71078938222662, 9.438248654153835, 79.68554585892261, 14.111262756722018, 46.17079772553453, 14.119673195204157, 104.20153383088044, 38.2845181594562, 48.160347438650376, 36.2162526921407, 176.8396839206033, 38.95608405231192, 7.101744866312509, 46.2991262185842, 5.9730941609832024, 16.040181375806625, 90.44852200292127, 72.98441667040059, 12.828448198531335, 47.21228598866898, 5.577247357868122, 5.838773544111049, 17.464077892425774, 9.832532449395421, 8.824399699517503, 12.973962540598336, 74.6884390670657, 26.093209584377163, 18.349696435836613, 65.30776262617348, 13.39073600452021, 57.522577363188105, 6.482257769902875, 15.5047795371232, 28.786502064140116, 9.200872311160754, 40.20368843742601, 105.903401862619, 102.32008572861324, 41.64063568888645, 25.351714507109147, 43.90431481910174, 18.751208762936493, 8.006893478919068, 14.777195830827345, 6.135381506937779, 8.99485388755833, 5.353250119138213, 12.56321361490476, 76.69101816221578, 38.03851993515669, 37.35945033344258, 5.947960414419268, 9.424891016512479, 34.03891251927486, 57.35927944087869, 5.312337830012777, 7.3200150823440655, 67.08303303979407, 64.67294415124236, 26.42869766429424, 57.598142254141905, 16.864679531197535, 28.817489280251284, 91.18327588364005, 75.05729699276445, 29.66071328616131, 42.5370660683604, 133.6198071380245, 81.24475808469127, 7.300373708323997, 16.02076758438511, 16.439071571406583, 9.741325236442703, 51.90625768079173, 48.8682276243933, 11.914972694330329, 6.371917790152286, 6.067480291182612, 45.33783066639404, 5.131085061499675, 9.42187959927735, 118.52198742287008, 11.928169821661557, 20.865513397463836, 9.974066726062185, 80.40377696099017, 13.917347790229158, 99.93737864648097, 12.199246414528321, 63.27799076620135, 12.217809387957397, 11.123133386669219, 39.507774652209974, 78.20880255936967, 18.147011436974694, 62.43178096004782, 62.395115832064945, 16.42259945656228, 9.420954004086957, 58.42660979670131, 40.20839468143809, 12.120858068445783, 50.537654004962235, 62.63392406449596, 67.9527681464524, 12.843089976866393, 29.594905465810125, 59.3591985438696, 16.113815948377265, 78.64232842838817, 14.396647387327507, 37.786661110650684, 6.778670967118271, 8.658177845079965, 23.57969441157581, 53.72055006893286, 19.00910971293715, 87.3734405571612, 22.85947657740026, 62.31901211347787, 5.13895489231768, 59.510797338933514, 20.39786316183278, 13.974294104226278, 15.66010270254959, 36.50464359669958, 21.693222542692464, 81.98206798522142, 5.061923194040572, 21.814759383337602, 42.12493198354341, 13.5184929886327, 56.19156337257718, 11.002739328089298, 17.8825199822449, 14.947239197496634, 26.428498383663094, 76.70989492960746, 39.25993189781575, 26.275587730587304, 7.494773622136089, 11.883114059624235, 72.18193496379621, 89.13746046243524, 26.544828764795216, 38.78132319685075, 41.36684765715972, 5.754138817454306, 6.302541606917939, 7.701068708188628, 47.34168555254441, 27.409706301366473, 20.066193710694126, 64.05982147428055, 17.097140834562147, 14.943685809065734, 12.25448780801949, 11.030200293249626, 107.65735611134843, 75.40906344747819, 29.78091443116981, 83.76900872540476, 87.37375472274613, 11.627634988003521, 46.55244809816368, 10.308582560585469, 27.217881317205, 9.596549229118414, 37.73088942493841, 89.93662112911235, 15.151758257172641, 6.612080922138294, 39.942099575956355, 91.3996310398406, 20.426872481171465, 5.3250498388549605, 78.45914810309233, 31.525066740246366, 16.754395728156094, 64.48541192839271, 11.479570837068596, 10.80071773966907, 17.974109176277725, 7.1202035147386695, 8.604370737092108, 19.52815133296919, 8.031991273926904, 20.30240356391667, 144.24356982291104, 48.934891160809656, 19.95545121856008, 36.767026235832304, 116.12147798846848, 58.671509232830125, 33.816978650516525, 16.927201919268324, 145.76720409681863, 21.592355163982415, 100.15869774989565, 58.502053324588346, 14.075413152957342, 23.351047445450572, 28.38920716514014, 20.47041610851933, 74.84281573291688, 95.90751795624138, 12.668682518615093, 8.515504322555659, 22.20638655476027, 14.886018072712252, 23.748107571575527, 7.9697930302413855, 22.007913167148317, 29.754265031729435, 59.70719181426905, 72.10934946382466, 14.106885866851364, 15.374037749109089, 41.13638161429821, 6.791074135284568, 34.69929195284763, 56.1919423791805, 43.324599454993376, 20.59748440384528, 76.58807241837948, 5.786346134002089, 24.02818386732737, 21.92278471642827, 5.439471752098302, 45.42742403682226, 6.83797629180351, 7.189301524605561, 17.521734233715744, 9.905171561662469, 48.71434200584985, 10.081917219405934, 82.50789424186988, 96.85632094360368, 41.25198182604963, 8.430224352894, 24.024475386184598, 9.599883492042627, 37.47544052107638, 43.96127646263986, 77.19043148096226, 6.461796331591985, 12.032168751297066, 16.85000447455032, 31.21595021066996, 21.733632784957305, 59.43136586977271, 67.11409050163618, 6.397541345034614, 22.895037790228127, 64.53142813022939, 12.254512739417077, 56.48429944530151, 63.04665565086593, 9.2534806529787, 22.900595664815302, 10.993787807510214, 6.835279257107196, 12.91248064309481, 38.20728176005609, 30.648892033695628, 49.54066678160679, 46.85494128568102, 48.40745994189808, 15.388824834027771, 83.96267645187629, 21.04730499651902, 11.516878179375313, 32.79300790183296, 45.56129048785399, 144.7489606332726, 32.437970509277164, 30.594638227151872, 10.231907752288587, 14.972401469092276, 17.351125615580745, 58.08628639542522, 71.72315322317593, 50.67509086805651, 32.251833873073394, 14.621868896467543, 87.12359074732161, 9.464198342592391, 20.29348258098955, 44.91669603804496, 29.75359655251838, 58.296632415652326, 22.696486327137915, 7.354362645185148, 10.283956456530788, 27.749546103309672, 60.4959971084214, 126.04152369779459, 10.971492205746108, 33.14323466354499, 9.688769894998774, 5.48913671564534, 17.23337650617966, 5.39155197219837, 64.7833510364125, 8.681879760229151, 32.08568169476225, 95.406732743434, 81.20029887090611, 13.357387139152026, 18.22622879739086, 70.54212164260488, 47.82487157465533, 19.60197207438647, 6.102389726884679, 104.89376167116731, 48.295192509305025, 68.86675724724483, 57.74065087529928, 29.548551857846128, 98.05670922935687, 10.850451502600547, 17.553502087248432, 102.17339371968733, 22.983146597891412, 45.883387634246304, 27.158692471550413, 36.84359427956782, 94.86470251889953, 14.829221129613797, 5.855152951594521, 81.50666961764533, 104.4042651678436, 35.10677717896589, 32.22170863680171, 24.75770424978792, 85.94526200637023, 9.458763856167783, 39.912859690691214, 12.881359389002789, 37.3821842201421, 85.60639539489765, 9.135914322126585, 9.771800266227398, 34.07180832724616, 48.61598339990915, 51.12816907825314, 44.856262767198196, 89.65254051160922, 43.169429896497945, 7.53501807823781, 74.00598087486665, 70.32081675812107, 48.201612018827205, 19.018342884893148, 49.139600861292024, 24.737543343841025, 10.783862611441288, 5.0797168212970245, 5.505406168262883, 37.24602161751498, 66.58211707103514, 14.159584435806861, 46.10884479128927, 8.718990800338952, 159.16834635748938, 43.37179584736314, 9.680090161869535, 62.33195737284045, 90.77201476943068, 41.39322504255997, 25.34024597295846, 144.58530268001647, 9.929050496930142, 12.622866291928304, 71.4066256559322, 52.507995300687476, 23.625262663497352, 120.08778362864521, 8.07426772829945, 18.121136815297994, 59.1413717396908, 5.46488740377869, 87.7885445725395, 79.31898892504472, 34.67017308419803, 30.792505880411387, 9.328715754295535, 11.565405957795656, 37.75029919713322, 55.67795108322393, 22.96255276368028, 40.27504379245481, 66.02423932722203, 40.36933347642946, 11.995860337669317, 30.310044550399223, 43.3108220789442, 60.408918582484745, 26.495989089755874, 24.503777878669553, 20.436571881431263, 21.46986673190395, 8.199210853653256, 23.992616291786096, 39.340861018900476, 7.266464751823209, 26.348989108749397, 13.945010061229835, 56.570555870793356, 87.04487634500852, 24.72418620322019, 7.599149493424031, 17.787240798514013, 112.51532354765153, 14.025637784278988, 25.938004605890214, 69.97410342439676, 39.38545067980556, 9.301167039002738, 24.31709543403755, 6.565708808269785, 18.935019075310876, 7.770970233463848, 104.6387065105746, 65.55944586951767, 16.03965033391386, 45.95132468808685, 78.06493314909929, 67.1475752098492, 6.799374364463168, 27.483737679478818, 42.882742569003284, 15.963619025940107, 35.62905731238479, 83.56457148283232, 32.234302885592136, 49.51200905449721, 22.109813529819878, 12.61518784749462, 34.95657746934574, 8.203800765401239, 10.625983067439343, 81.44909910903309, 10.08390533103058, 5.67585066521472, 5.309564091524374, 5.258311621024151, 30.42051657977705, 13.474385735369362, 6.665560888840471, 79.51246281444156, 9.498623745493198, 28.37510103152433, 44.82600519420977, 6.268317117749086, 40.29594875839345, 78.58498899367034, 92.00948271452206, 7.675630986373837, 122.21642777044758, 28.124652277505167, 26.76744810530409, 43.37663847585634, 13.081519037939678, 30.652691276516062, 26.866335071587905, 7.292551525799824, 28.796549251450415, 35.21514570388574, 8.70826071174015, 33.6409784984766, 137.44600281926586, 56.18831392919827, 8.172911678332376, 8.289556084569897, 19.516646293609327, 45.150694793730054, 8.854208325790655, 9.980160897897589, 18.907969493147167, 38.872714281461406, 48.110353949953435, 66.26526135409135, 10.063361607782294, 24.89300071511056, 11.80374187714371, 100.91742467431432, 175.62880405674, 7.661512595899223, 70.59882245337243, 10.119598561078437, 23.593358620055227, 7.419174390179069, 97.69761476262109, 89.78416287875991, 23.22137698084453, 28.88657975628615, 84.36731582171622, 5.779901636477087, 9.812838713524707, 44.02778337792866, 71.97773831542602, 25.18007863666533, 14.844777608067558, 45.75836164060701, 27.122473345751345, 11.810673430393223, 14.350215259792655, 36.72173653892308, 84.4465664725421, 12.598069405027976, 31.422094166170613, 100.10447392870998, 34.088050103748124, 48.576606882254154, 58.98568738718978, 63.925998658556054, 70.5328509438142, 21.88948726548239, 13.228385901795383, 18.694872033579124, 14.353222906791542, 203.1875977401222, 28.005826101642178, 6.623551913450039, 7.848503871771209, 24.24111326585492, 96.14544674434796, 5.2765809793043195, 131.2291784114163, 27.125622053900184, 24.60556551719723, 31.863272699069142, 10.907978904581881, 42.186989223900554, 38.9717900345389, 22.026733179078946, 104.12575804004702, 15.169775164363848, 88.00894856102785, 7.114661469303509, 74.16514005498458, 18.443649707889538, 96.14845780705718, 19.954045663199725, 8.328683035484742, 16.971025176243504, 159.49183560393195, 12.495566608697178, 12.124446337300446, 16.258515317060642, 74.49190049851579, 25.768021103686625, 7.8948455944351625, 34.9012975647499, 13.853314951978968, 7.69192809911607, 8.537603506017085, 16.166016132232542, 11.469442174772794, 20.41914189833026, 48.07497458659282, 33.22316296678188, 9.63506093010219, 80.04108591492772, 15.518597072958649, 78.0082543464886, 10.773608967085952, 16.666483122162568, 28.69893685187832, 18.3800984630141, 11.081948869465108, 18.735288051651775, 54.50733587542842, 9.130977011324894, 14.283660693645157, 17.45106849382511, 76.28796050238496, 39.57396209349859, 10.186030523332795, 16.937844980865194, 7.427167610146756, 102.08844029569481, 19.299410904108818, 13.210150726665546, 29.096458459632565, 94.29647023094972, 24.232903954284776, 17.809417296860158, 162.15426786475211, 31.480797167956247, 66.74625023215688, 5.355117018959853, 145.38305865409558, 20.424773276174445, 16.83905433399815, 106.23618972477499, 12.222365064725809, 42.42164072764561, 23.354438907843825, 68.62121749408874, 74.12055909617841, 13.20710511063656, 57.051789503133314, 46.853499265257184, 7.515015953010547, 61.09181836159534, 23.247832738317136, 116.20748530040856, 166.63449235107592, 9.089555663891263, 11.087089416605268, 6.361052799761944, 26.922310992471687, 63.99577617048914, 6.000568982775497, 11.893982789922775, 20.34627175149898, 61.239000986937135, 42.478591426169174, 26.35606511386498, 53.648163996918605, 8.015901955351698, 164.39024831191412, 26.4112282196, 78.14035308266259, 27.112461734231943, 9.254885598742849, 16.488938423993527, 36.65811277235814, 13.094923464168444, 32.019887692627044, 104.27649476867904, 5.943811351596394, 117.49975741199533, 139.74110577709413, 23.708926632220095, 5.203630966098047, 54.84642977113471, 17.15424484040857, 31.56206768992689, 107.2311492623032, 16.355618867712153, 39.85114954086866, 45.500764891722966, 5.877190954281901, 6.401988189727852, 13.552957626206766, 57.747190321358744, 23.191552768294827, 16.128875865651743, 5.795852103702941, 14.199401364446071, 14.78526700394337, 17.708250286516122, 142.2998573220712, 143.99923099159062, 71.74120192361254, 46.83294228981629, 5.684008927798381, 38.35746506664283, 11.937322459319901, 8.921853546151466, 6.211580889031861, 29.598608464171214, 70.4397350602754, 31.314631733434215, 131.73479554900467, 13.569975711636493, 32.337324994094196, 17.804748052199884, 15.289776177420338, 64.51566800645986, 23.153261666921296, 23.312616964453856, 10.467824175733178, 64.68608573198557, 6.7265712462804705, 8.794233064916284, 16.9259135743713, 17.9363267916371, 23.658972383063723, 24.110259183348983, 12.002690649525293, 10.99402935809744, 33.64124045189928, 25.18112982135089, 37.903189961612355, 28.819876879325818, 70.22782335891402, 7.3461910933869925, 19.914971501948273, 53.323963272735575, 28.808111929211034, 62.29475208451602, 35.3869955360457, 5.124090285886879, 163.01932690451414, 6.6642805485822425, 14.620142421881159, 45.05305320584166, 10.589427522651086, 115.05362047330794, 132.4936673264293, 140.6142137080598, 10.386625063871302, 43.40311539164333, 15.747414063168058, 43.60092398432318, 8.789095889117737, 12.341510918615054, 12.068229446718057, 11.943936267235319, 73.15042838584662, 8.409589523245137, 56.434053944727076, 6.180980510169613, 7.569939676514714, 49.071420653752966, 102.01026024913183, 21.105663165367947, 68.97217978703543, 107.8783985979419, 16.73911670182204, 28.673736173402883, 63.6610179713229, 21.07090159419862, 5.549601627328112, 9.670046579955935, 28.951858763100425, 13.28402632160907, 8.566066806974483, 5.777521030803525, 40.56698727065494, 18.25264714159934, 90.67210910094752, 8.056193235443407, 7.978706059551002, 13.805732668141088, 9.72453181057739, 47.52082984970545, 47.29484724062753, 33.977837708850565, 24.41243361050931, 22.01136727328236, 9.788019688152673, 27.856336060489017, 17.339742710818705, 12.90683061234564, 58.403170544505144, 96.39184801106418, 52.2429681134834, 61.111733053296796, 20.852099505511198, 29.20218601458562, 45.53619948369089, 77.08608244019965, 23.046006346731918, 28.412236716317672, 65.472064846792, 34.52303182039036, 6.390199391780841, 26.41159419269373, 73.63537392890555, 46.92264873029664, 7.980032036751357, 109.56985734614345, 38.041874350159155, 84.18743369554728, 67.45423247434623, 7.274954156712916, 15.851579144380272, 7.912076296681365, 9.88243145466224, 26.815152176146164, 12.008318942220235, 50.80720769562077, 12.715224767930737, 108.71446582391879, 25.46941442854053, 61.42361693995342, 27.62682535541999, 51.76834557083591, 64.65650200016543, 47.069806726132796, 24.741767109803234, 102.63507701940637, 5.385121529460548, 66.60188545774248, 138.4659755925927, 19.31694996815614, 11.089952200948185, 71.97491884142681, 89.12245906274276, 93.91796863094152, 8.423888540316218, 54.406648115163144, 51.45186332478594, 65.45628265563698, 122.01073105213557, 45.57263324823092, 16.61923938638801, 53.751274856852305, 40.501986141325304, 38.15456163793765, 16.474717682608883, 17.26285625134095, 11.691506043462146, 51.884073724495074, 55.99771596703191, 10.95099148996755, 28.127722407055206, 43.46102847436189, 27.478775492973522, 11.219595862052032, 9.513023398412507, 33.282197062356964, 23.98210077765086, 32.50917033452184, 9.21744690383711, 112.64476494422696, 14.545639770718132, 46.17952768036199, 7.5254839956617925, 6.668137135072295, 75.3465943823278, 53.90310903609527, 13.084200328141849, 39.94653989844454, 67.60275787102906, 91.53926752805344, 100.38426016009393, 90.75935930990298, 26.164330183047063, 20.52924949781164, 72.86875507750986, 12.773897892194782, 20.69657730764871, 81.63357945280771, 99.41669369931313, 10.536782001672037, 13.622918270426808, 27.033852727046625, 45.06270250719752, 12.601645204778164, 12.154788522630136, 12.336223302690678, 5.474333924671807, 79.64859721402291, 6.987135430144392, 12.265863747538786, 103.07846116383118, 12.199727853303362, 51.70884693947353, 22.14649750307853, 46.71010158206659, 173.4244968399875, 23.01260604372279, 31.318979762653136, 66.63121123738328, 16.05419623647354, 15.073022544220489, 13.158908798990621, 92.23594620821811, 11.590865302987401, 34.457236499605074, 23.658454114022103, 68.76685251774346, 46.00064791507219, 67.86293393208113, 6.383656089938611, 41.52708033053883, 6.063647685044109, 93.92788713973664, 39.8461132185202, 19.288773094570683, 18.1581449764045, 67.45122397445914, 56.42652748743169, 18.407978240298185, 59.656171266636676, 42.313225531415284, 6.057935076075061, 27.299959659273068, 17.393419474026523, 70.6212110756625, 21.73313006573548, 8.105455272744686, 10.079781723715895, 5.609502283309166, 40.77469782287106, 80.61500224352179, 11.790392994599127, 21.17667387217765, 82.18407141926588, 12.192736869289355, 8.374429370995584, 80.88266656707225, 7.015586889498976, 45.48162623373101, 11.222114773833981, 49.83957489413025, 12.590030226330438, 14.677571153673648, 54.02389417383945, 31.668833549591767, 157.61731280865143, 12.006279445105097, 93.37667165794795, 7.4801412494733155, 37.87335990062296, 15.051136349745814, 17.284300358289716, 93.1567037943517, 6.602272861197759, 36.11813370456603, 18.636116011922535, 58.41156274941314, 20.234010406215628, 36.76483227718627, 21.729776201693603, 22.830815389335765, 126.86343297518783, 24.22379964101965, 8.806395682948656, 10.160084813927545, 60.116426561236764, 11.58284557445704, 41.25951122414962, 11.08675772819767, 65.72771626136986, 21.59946116810341, 12.119207053374643, 15.27225790496426, 13.841823600929501, 136.40850948109116, 42.79733198769789, 18.51436242346445, 65.3819171500322, 35.82133465911016, 39.662611784817, 97.909141333533, 18.23134923425069, 171.3803284753017, 75.28607072595256, 96.40009759915637, 19.087817177635923, 52.680809091128836, 99.31385021882228, 44.0671173765733, 30.683015165843575, 18.428293514363634, ...])
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)