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 = 48220
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);
([7894346.824602374, 8069038.362210037, 8117429.67616826, 9089827.860018287, 12310883.533000816, 12520520.395422503, 12548245.141125795, 12584936.479366593, 12615716.49190018, 12625837.5, 12655162.155072011, 12655518.75, 12670219.121199166, 12671775.0, 12675495.927407907, 12676538.327385344, 12683857.8125, 12689370.3125, 12726180.14105947, 12738178.411536671, 12784414.04983571, 12804060.000447063, 12812015.467351627, 12813973.4375, 12822289.0625, 12884678.561624303, 12907160.397189751, 12907160.76654729, 12928565.044645796, 13061769.49165165, 13130845.3125, 13213708.197676962, 13314196.470689896, 13361628.333570423, 13449988.22483727, 13506653.125, 13507424.65630474, 13527065.625, 13534326.5625, 13537409.248895561, 13548693.204028854, 13552772.18504584, 13554378.675743718, 13558142.1875, 13563437.048514761, 13563439.004504124, 13566921.875, 13568667.799465282, 13571779.543803148, 13574968.461732572, 13581393.75, 13583101.232657457, 13589605.156826485, 13590485.9375, 13591313.941688897, 13592619.060832439, 13592983.82874026, 13596449.213139007, 13597644.876015427, 13602724.503207363, 13602830.507804336, 13603092.1875, 13603267.1875, 13606679.5214695, 13611077.01814209, 13611174.682561986, 13613250.0, 13614013.661348067, 13614135.9375, 13617245.872118356, 13619833.156031176, 13620384.375, 13620665.568984179, 13620798.47127303, 13623340.61525143, 13632253.24402132, 13632549.958758742, 13632558.670592261, 13632795.482243324, 13647258.86449294, 13649462.89896276, 13651052.841002973, 13661677.941682916, 13662249.892902255, 13662475.0, 13663742.1875, 13664907.377735807, 13665172.806478277, 13665364.66827573, 13666193.75, 13667234.47192846, 13667667.1875, 13669036.643698916, 13670092.1875, 13671431.039507601, 13672153.945106974, 13672568.814326765, 13673873.663594581, 13673884.095558567, 13674059.17983515, 13674947.84049587, 13675019.24834012, 13675126.5625, 13675300.0, 13675832.59941893, 13675899.889752377, 13677384.375, 13680456.951675294, 13681462.314163849, 13683045.617238784, 13684729.887241142, 13686426.774627825, 13688966.375608927, 13688993.75, 13689146.52891236, 13690083.13472091, 13690115.353093155, 13690498.4375, 13690524.285854423, 13692678.125, 13695022.163852965, 13696543.723836062, 13698651.189975342, 13699263.402644627, 13700769.842669375, 13701253.125, 13701799.381805165, 13705587.16266735, 13706085.9375, 13706110.151482703, 13706728.125, 13706739.646995643, 13709651.52700253, 13710947.049568651, 13713720.753737664, 13713902.864952227, 13714153.411439244, 13714326.5625, 13715375.524769168, 13716346.60134625, 13717110.956325574, 13717277.606672717, 13717576.99488997, 13718127.692329984, 13719013.206763815, 13719185.687194807, 13721825.516409015, 13722891.648323221, 13723208.414543707, 13723348.86434449, 13724254.096866975, 13724359.224783704, 13724365.625, 13724843.75, 13724920.262158351, 13725214.811510047, 13725232.86093049, 13725314.611505195, 13725427.10792522, 13725646.875, 13726259.013988314, 13728391.675190758, 13728504.6875, 13729558.325348403, 13729600.0, 13730779.680064479, 13731190.666688383, 13731852.859134952, 13731941.955966735, 13733268.339037716, 13733622.11271394, 13733776.55276194, 13734128.679812606, 13734432.762192978, 13734973.812780218, 13735858.225211333, 13736651.250645436, 13737670.495569382, 13738104.6875, 13738497.65275235, 13738752.79332535, 13739832.994575443, 13740962.030581132, 13741070.35075424, 13741807.277280139, 13741821.628362976, 13742714.39611009, 13743157.011212455, 13743228.842536466, 13743931.481085675, 13745701.652893499, 13747277.147024458, 13748498.68047589, 13748528.838423645, 13749465.821310125, 13749777.747745767, 13752067.307515029, 13752471.486093808, 13753114.0625, 13753117.474129016, 13756079.500369158, 13756253.125, 13759565.61250224, 13760004.064473258, 13760044.98026494, 13761329.154716091, 13762818.456476666, 13762822.471464518, 13762994.07677476, 13763039.015117884, 13763168.75, 13764370.30209244, 13764459.773614405, 13764656.115008099, 13764993.75, 13765366.053541621, 13765540.461210841, 13765750.924070433, 13766330.60894497, 13767648.4375, 13769857.8125, 13770542.703378683, 13770669.032053255, 13771092.591111436, 13772149.664638013, 13772271.600566626, 13772496.243449954, 13772614.0625, 13772928.365559172, 13773527.842043944, 13773706.009565627, 13773768.716610996, 13773929.454924343, 13774721.875, 13774727.100420032, 13775412.54989516, 13775980.632795492, 13776979.450679693, 13777145.91488185, 13777319.775849715, 13777693.322290769, 13777805.318770194, 13778007.363359632, 13778376.5625, 13778907.456387352, 13779100.482679708, 13779935.9375, 13781611.179202054, 13782598.421379628, 13782818.437885586, 13782906.122769717, 13782920.860985264, 13783053.158976303, 13783056.195140468, 13783254.183939181, 13783443.608235478, 13783966.909134263, 13784159.692147275, 13784620.3125, 13785008.048087936, 13785154.973537248, 13785295.956061652, 13785641.620107, 13785684.885487437, 13785707.8125, 13785828.390035305, 13787395.9709815, 13787403.125, 13787414.415834608, 13787471.314733114, 13787587.116881508, 13787928.019477151, 13788196.875, 13788221.530122753, 13788345.3125, 13788392.1875, 13788442.408083875, 13789527.614193529, 13789593.825672103, 13789725.0, 13789891.652965313, 13790636.474920534, 13791207.217169032, 13793246.035832433, 13797060.234688338, 13797389.275577255, 13799606.067096844, 13801695.3125, 13804895.275489502, 13805796.42469416, 13806836.52582526, 13807077.200189652, 13807935.9375, 13809016.29783643, 13810020.3125, 13810657.387071978, 13814060.362486085, 13816577.698920472, 13817381.25, 13818967.1875, 13819571.875, 13819578.125, 13819623.4375, 13820355.737262225, 13820401.531464927, 13820597.845563922, 13820625.089711323, 13823276.521757815, 13823280.818853851, 13823559.155611215, 13825010.947175037, 13827042.1875, 13828017.653537901, 13828381.234952161, 13828491.221685033, 13828912.326102545, 13829267.1875, 13829281.25, 13829387.073232614, 13829388.871125452, 13829623.101347322, 13829662.411142714, 13830316.630416792, 13830318.190180402, 13830319.051579796, 13831416.77295852, 13832368.15553212, 13832964.58287825, 13834108.06184139, 13838771.785817128, 13839472.249948533, 13839484.375, 13839791.33661196, 13839908.939715857, 13840096.3537206, 13840420.855748309, 13840544.439170582, 13840614.0625, 13840826.730636438, 13840966.502972692, 13841268.675324416, 13841305.51512844, 13841526.409543546, 13841677.724431625, 13841954.103813922, 13842202.097634666, 13842376.20577532, 13842576.630033568, 13843106.106932158, 13843189.0625, 13843210.9375, 13843220.090975022, 13843496.172577886, 13843653.354702733, 13843946.595426353, 13844204.6875, 13844207.8125, 13844549.823664228, 13845184.203810861, 13845453.125, 13845520.036808122, 13845838.285921672, 13845986.83924391, 13846131.154268043, 13846166.519378152, 13846177.012055371, 13847082.21938826, 13847906.609811816, 13847928.125, 13848203.070556514, 13848373.279539643, 13849153.521136127, 13849390.501010174, 13849464.828204326, 13850045.3125, 13850339.041288048, 13850353.0851706, 13850501.5625, 13850825.322051115, 13850870.3125, 13850873.812825354, 13850894.654301833, 13850990.146241685, 13850991.60684749, 13851268.206402268, 13851398.549252283, 13851579.850309333, 13851608.737868134, 13851678.049710196, 13851731.869806372, 13851917.1875, 13851919.874430662, 13851974.908620732, 13852120.36386256, 13852205.773245497, 13852273.4375, 13852545.3125, 13852557.495102173, 13852629.6875, 13852637.5, 13852724.538636021, 13852735.9375, 13852879.674090432, 13852964.641062526, 13853039.667213382, 13853058.475691214, 13853098.833981052, 13853120.11248475, 13853330.919726597, 13853330.940158268, 13853340.68028819, 13853429.6875, 13853463.750896597, 13853531.330607353, 13853549.352107288, 13853598.925002808, 13853629.682134448, 13853690.625, 13853807.725518191, 13853823.4375, 13853842.501093986, 13853915.625, 13854178.125, 13854294.814122008, 13854349.174423492, 13854368.75, 13854380.662538825, 13854394.13754203, 13854418.511324873, 13854419.933431692, 13854457.8125, 13854467.174065962, 13854493.584564919, 13854547.001171656, 13854635.873380346, 13854741.629296819, 13854888.084258774, 13854904.61542892, 13854918.75, 13854930.912017468, 13854985.9375, 13855005.59776166, 13855254.934926132, 13855290.897615127, 13855346.26687531, 13855583.0690352, 13855584.375, 13855585.725563567, 13855803.09124992, 13855839.158428561, 13855908.048320673, 13856042.163059589, 13856098.4375, 13856273.963327104, 13856280.577686435, 13856315.41558517, 13856668.525940135, 13856935.076401724, 13857255.811117003, 13857684.385051081, 13857816.404435247, 13857911.148794137, 13858651.338221442, 13858664.0625, 13858702.376357475, 13859062.5, 13859487.385672078, 13859585.9375, 13859698.4375, 13859772.58859031, 13859949.524128715, 13860298.1456846, 13860313.9914637, 13861846.33565694, 13862307.8125, 13862644.289979197, 13862993.75, 13863070.668387083, 13863084.663382497, 13864803.10988297, 13873554.6875, 13875985.39388447, 13876654.958626872, 13878788.855186816, 13879853.792102415, 13881056.154619653, 13881220.277815241, 13885650.0, 13887277.41748009, 13887655.557309719, 13891613.763862947, 13892319.774912907, 13892826.924960785, 13893527.311206177, 13894066.886672933, 13894346.256847627, 13895001.5625, 13895619.496331543, 13896487.020498984, 13897798.172810322, 13897957.478160698, 13899134.375, 13899164.0625, 13899316.07149224, 13899562.5, 13899693.541636258, 13899969.471534694, 13900118.24868153, 13900160.9375, 13900411.682304664, 13900443.305117585, 13902117.866773076, 13903164.335010668, 13903222.828694623, 13903820.3125, 13904569.072819881, 13905259.893968653, 13905317.1875, 13905497.455493214, 13905952.739181522, 13906076.902505755, 13906409.624150837, 13906682.8125, 13906708.472234862, 13906828.018231135, 13908840.625, 13908964.657839697, 13910919.081367452, 13911129.82245384, 13911178.53820386, 13911302.926081402, 13911466.478235628, 13911475.0, 13911841.833175287, 13912903.125, 13914085.9375, 13914318.546950376, 13914550.601858672, 13915204.217424018, 13915543.340707174, 13915829.6875, 13915850.22537569, 13916276.207159482, 13916288.319861168, 13916538.467035774, 13916721.371869087, 13916729.228140563, 13916748.758806594, 13917845.3125, 13917979.511352245, 13918083.412465142, 13918386.514519643, 13918784.32185508, 13918832.56012802, 13918862.863878096, 13919004.697671514, 13919369.244048007, 13919453.792653661, 13920026.748998646, 13920028.125, 13920053.591004781, 13920431.574142814, 13920523.4375, 13921161.882405724, 13921464.85655583, 13921984.348451516, 13922213.483068753, 13922563.536173781, 13922779.6875, 13922988.852629274, 13923077.968900379, 13923078.76338775, 13924216.903893083, 13924234.461732915, 13924253.976676038, 13924826.57984081, 13924941.755154373, 13925170.3125, 13925260.381988075, 13925557.381029088, 13925684.524474403, 13925815.952304563, 13925921.875, 13925922.02282388, 13927123.468754191, 13927218.689701898, 13928342.1875, 13928560.234499784, 13929999.948237395, 13930178.58501762, 13930212.5, 13930583.295333868, 13930584.24248247, 13930667.972252991, 13930778.998205617, 13930850.0, 13931139.0625, 13931149.91355079, 13931432.8125, 13931565.8636873, 13932067.845458854, 13932596.875, 13932616.345640348, 13932825.024877261, 13933332.595526153, 13933547.67879868, 13934540.625, 13934657.96320251, 13935294.348776966, 13935314.939694006, 13935329.641376797, 13935592.174137391, 13935755.833459914, 13935858.528505199, 13936721.103811562, 13937307.528613811, 13937791.388260005, 13938869.164735181, 13939021.875, 13939167.86941533, 13939252.72963743, 13939501.950279832, 13939904.6875, 13939986.26298919, 13940837.57128004, 13940856.191415757, 13940928.594946884, 13940950.826929022, 13941257.25924897, 13941257.574338764, 13941287.609962475, 13941397.822756745, 13941629.6875, 13941687.5, 13941721.350874871, 13941737.5, 13941985.680090412, 13942035.657070158, 13942045.886285026, 13942068.75, 13942218.75, 13942360.471495222, 13942366.867624272, 13942370.3125, 13942445.3125, 13942482.277315538, 13942516.787299799, 13942665.126836196, 13942720.563629841, 13942793.792216156, 13942799.230040614, 13942803.125, 13942803.188408416, 13942833.173349164, 13942835.856102696, 13942853.45134557, 13942890.625, 13942900.298794322, 13942962.06453371, 13942976.5625, 13942985.325879548, 13943046.421935363, 13943059.375, 13943065.625, 13943085.9375, 13943165.723715907, 13943240.574036414, 13943367.306524064, 13943463.716780473, 13943493.353809897, 13943559.328279495, 13943611.55401973, 13943766.23672799, 13943810.793218218, 13943812.438324548, 13943888.355719795, 13943890.671221077, 13944028.125, 13944073.363557339, 13944082.8125, 13944092.098814612, 13944237.384383528, 13944362.5, 13944521.875, 13944553.870602345, 13944645.3125, 13944727.936340326, 13944944.93432811, 13944950.0, 13944997.977166055, 13945027.740650183, 13945030.652975703, 13945042.1875, 13945057.8125, 13945515.474650456, 13945520.3125, 13945529.6875, 13945594.19862043, 13945595.3125, 13945732.8125, 13945761.024432529, 13945882.899221359, 13946436.086235475, 13946612.681537658, 13946716.62591882, 13946806.25, 13946918.260099694, 13946928.125, 13947046.809020339, 13947049.685518183, 13947144.872422067, 13947176.774248112, 13947218.788043777, 13947412.893002445, 13947607.445516882, 13948806.25, 13948861.997449733, 13950521.518536195, 13953493.75, 13953536.560025627, 13958021.727819607, 13958373.80830778, 13961407.424960418, 13961479.6875, 13961547.367566256, 13961621.732225664, 13962052.106492, 13962097.723364828, 13962332.8125, 13963074.946017345, 13963503.768599559, 13963510.90666467, 13963562.777522227, 13963597.962453831, 13963640.633442054, 13963672.155594494, 13963682.795063805, 13963716.32334163, 13963727.107865911, 13963744.722132549, 13963764.333837809, 13963847.841251211, 13963893.75, 13963905.547111603, 13963931.25, 13963939.233327296, 13964048.4375, 13964131.13227299, 13964132.80949768, 13964264.0625, 13964285.9375, 13964338.596863834, 13964433.090957392, 13964476.71629096, 13964515.357482318, 13964669.775599275, 13964729.6875, 13964770.3125, 13964775.00529348, 13964778.125, 13964785.9375, 13964845.3125, 13964883.958976539, 13964965.625, 13964971.236719986, 13964982.8125, 13965035.865967648, 13965314.70177169, 13965496.041534584, 13965854.341382546, 13965879.47782243, 13965967.1875, 13966145.3125, 13966296.875, 13967039.0625, 13967090.088694008, 13967126.5625, 13967411.676033113, 13967523.399640977, 13967591.346264997, 13967672.69287283, 13967764.089840107, 13968103.00350548, 13968194.37833435, 13968248.698210146, 13968248.876387563, 13968397.545846226, 13968643.838654658, 13968674.302555175, 13968843.75, 13968854.507483851, 13969051.46668933, 13969291.873832433, 13969381.396427054, 13969512.358106956, 13969912.420275662, 13969944.857574362, 13970200.0, 13970213.17084713, 13970229.123950234, 13970646.552957742, 13971135.315637466, 13971141.175962755, 13971141.780190876, 13971142.109949984, 13971143.0363537, 13971143.181872351, 13971143.832823448, 13971144.82192821, 13971146.749553414, 13971148.259789223, 13971148.32401319, 13971149.908535814, 13971151.165514482, 13971154.150848052, 13971154.223293982, 13971156.930642562, 13971158.714584442, 13971160.026762078, 13971160.055293683, 13971160.609608024, 13971161.29105933, 13971161.478901964, 13971163.816664774, 13971167.263837619, 13971168.794568164, 13971169.055613125, 13971169.070819514, 13971170.076895919, 13971171.165004397, 13971172.850271506, 13971175.156811565, 13971177.62884222, 13971178.329362907, 13971178.952655623, 13971179.227929987, 13971179.755361294, 13971180.449565137, 13971184.02265106, 13971190.602240758, 13971191.341460701, 13971196.314982016, 13971197.184046831, 13971203.601017343, 13971207.250221888, 13971207.500049492, 13971220.420187367, 13971299.376487782, 13971371.97566547, 13971424.990685573, 13972014.152327139, 13972030.985944897, 13972214.023173554, 13972346.714427765, 13972821.875, 13972840.363181608, 13972907.983301258, 13973052.891015701, 13973074.522281025, 13973390.515362354, 13973448.4375, 13973597.046611968, 13974111.885278974, 13975417.911671698, 13975868.75, 13976006.25, 13976575.0, 13976908.623178808, 13976968.744720828, 13977584.081228431, 13977683.564838067, 13978279.262661083, 13978594.07804237, 13978629.563763207, 13978758.466348927, 13979026.5625, 13979162.5, 13979668.75, 13979721.85056983, 13981140.16605431, 13981557.613506008, 13983737.240766602, 13986545.271982944, 13989584.017760202, 13994050.375858618, 13997320.756375445, 14001138.576312862, 14016606.067257086, 14026059.632722814, 14026076.042041013, 14027539.799412964, 14028856.395688077, 14029013.771363169, 14029507.729652802, 14029851.5625, 14032351.271029202, 14034726.055903142, 14034739.556480661, 14034775.0, 14036857.29755554, 14037282.025047863, 14039689.908633871, 14040092.234752437, 14040306.25, 14040790.634525139, 14040821.56603332, 14042628.357971394, 14042844.142309792, 14043364.537745556, 14043668.838057388, 14043675.998646572, 14044205.43236214, 14044214.0625, 14045019.560109703, 14046183.751700213, 14046345.059364894, 14046662.076495267, 14047077.115300598, 14047877.246096041, 14048504.753978806, 14049004.225676673, 14049029.6875, 14049526.39737456, 14050104.6875, 14050289.87084143, 14050534.375, 14051284.787538238, 14051671.875, 14052099.695739876, 14052197.857118761, 14052415.892357958, 14052445.3125, 14053062.5, 14053149.644355604, 14053692.1875, 14053753.125, 14053799.392385963, 14053818.31192063, 14053930.245643655, 14053988.921915838, 14054165.256966593, 14054171.19004226, 14054184.00598287, 14054209.541406328, 14054232.322358029, 14054242.1875, 14054273.584432552, 14054274.926630894, 14054379.6875, 14054381.25, 14054423.313380184, 14054424.415953211, 14054476.982317723, 14054479.6875, 14054495.400575096, 14054518.117911559, 14054523.4375, 14054532.761556348, 14054534.375, 14054548.4375, 14054555.098131375, 14054558.829404265, 14054561.792156478, 14054562.5, 14054567.1875, 14054570.3125, 14054575.0, 14054580.280874725, 14054586.86467591, 14054610.995843986, 14054612.202975642, 14054612.63867363, 14054614.529057221, 14054661.909214148, 14054677.7585194, 14054708.961652324, 14054719.647939935, 14054731.25, 14054731.25, 14054765.265135327, 14054823.1152344, 14054835.856827725, 14054871.875, 14054872.39403069, 14054901.443275534, 14054902.799404742, 14054904.17557972, 14054916.447799178, 14054920.559633084, 14054923.182664678, 14054931.25, 14054934.063359559, 14054935.837920586, 14054946.012042748, 14054947.899914669, 14054948.525921809, 14054950.910405697, 14054959.374210078, 14054972.719306063, 14054974.091155458, ...], [7.585110863403029, 131.62387688018373, 36.29148271344643, 6.234290433024878, 30.155880603999897, 71.49232237745005, 77.65852863236901, 17.506352521106237, 28.145521955743906, 66.97083366887327, 134.4626439639077, 58.65305492107825, 126.33585719286222, 48.20026689139068, 17.95016542831831, 61.516150897876216, 93.43763381115579, 103.66749134498946, 11.249587653598427, 25.243872676118862, 20.878009449726836, 8.647547962424435, 25.756991405272654, 97.00111733300326, 59.455668017147985, 11.886423366487616, 52.29991221022658, 8.198197307513842, 20.72730286601286, 7.331083761521092, 29.299819333539766, 16.645516746102164, 62.57318985291856, 15.800903346650163, 10.030013711791426, 93.46785852864585, 7.483485710909563, 34.16127320201086, 30.842487937663652, 26.25899601046593, 21.04645211354491, 9.608085986768156, 7.27416371461235, 31.790003019761333, 40.41232472534012, 27.427433339555698, 68.93979506161367, 17.931708007044357, 7.084183587724495, 23.90177489236587, 78.60211755282995, 23.37688511059067, 17.093326519449455, 59.47329605292193, 26.34555120574378, 5.7268299620542, 73.53941692753953, 10.086377913171598, 22.15099669578174, 92.30959116570031, 13.637275920997675, 76.19331828017847, 50.382962059015625, 6.730806445600604, 11.923341940171635, 9.076679224238028, 60.91669936801385, 8.085253114944479, 59.54320001506224, 7.819010721698522, 11.710768313529982, 42.68311577543026, 92.25056422146508, 5.292131623971401, 11.112503273259032, 15.68896228336561, 27.73420936617738, 6.947827790736202, 41.50453664940605, 21.388923148526608, 16.716713376801813, 13.95929972937028, 10.852770398219274, 9.242458507030557, 65.87530273721954, 46.32909648106146, 57.8360573552158, 88.69170762480782, 21.185166455366645, 83.11981765443352, 20.648393444824922, 71.78138785175895, 12.445774398383207, 84.2714722534714, 10.813896526469964, 5.43077956977718, 15.665995327148405, 15.879496342802248, 24.01694973365695, 14.2463902539398, 48.95960777921806, 12.328515387297628, 114.89275835093106, 63.76714215875979, 9.157503714193394, 14.537312801204987, 142.4989983366288, 18.517873371239695, 18.176863701167186, 14.400818480070928, 11.45495937988958, 15.816771025872862, 18.859423657674828, 93.09802444073131, 23.179361964735794, 22.161335504093234, 91.9154680337441, 104.81212077584412, 7.941879485004835, 160.6908144547565, 12.86749335837957, 11.087055678563814, 5.593762332175596, 8.829518790143705, 13.409439345788881, 54.87119509481894, 20.389861303240203, 16.249777244638523, 77.98802880149886, 6.616113776349165, 43.140889830392645, 43.36972757392048, 166.86179764402402, 8.38110113487372, 9.734611182084215, 24.274853043448612, 11.607029436903508, 105.40948454945057, 17.406613182787474, 33.275494189399716, 8.296557756083303, 57.869023381965505, 6.85301327038651, 8.9905230940404, 12.447033565057446, 50.99601982381664, 92.18492221061082, 10.377976429575149, 67.09937519960643, 16.863255473679562, 20.634246722759343, 10.900755499627508, 87.51712132694391, 80.96651430266736, 5.459609959571056, 18.84800390246399, 25.27067710633463, 16.479251138024953, 82.83490327281392, 87.57366661037024, 114.25797069128497, 27.406988184800795, 63.32928747850873, 49.78614101923451, 30.213091150302684, 6.762023031562869, 9.366903581293661, 7.509828306298882, 15.322162804143861, 13.576698571494743, 6.811910761777062, 28.33366903870087, 12.121861610052296, 77.9694835328352, 5.354947747677539, 7.7596554343085105, 13.872664143542735, 28.568316219397104, 28.912686892427544, 7.342096238911529, 16.586554897352414, 10.647011824665249, 10.465517556613593, 11.188031768795296, 102.19675829466343, 38.63342401600549, 83.43132116123637, 10.070258607816978, 24.90836642506635, 17.698442157682205, 15.297616239145931, 17.761966638745815, 8.419386991206213, 18.59840148714812, 85.44451665165833, 70.63110336433705, 22.461932997472815, 30.78812334215119, 74.98180254120417, 30.07934391603868, 55.82862460850307, 74.42073101275912, 5.938317883851108, 13.001277394336583, 23.347535007384042, 23.773754934841786, 51.960529791222875, 12.208372885594878, 30.23078659472631, 6.261230482119653, 59.156449917018165, 28.32061015701309, 54.21207091920247, 26.11519169435861, 37.7127581903935, 5.8463840452373095, 10.880994154960302, 5.768205347155379, 20.19265628646846, 53.68085423017528, 32.71647098649293, 18.349744267998346, 16.13783757328721, 9.697706455259892, 27.603078982181994, 108.02660233496358, 5.435297262483646, 42.07389822102369, 15.945184083357187, 54.537526725535315, 25.49947035550101, 27.880806543896295, 53.68032452968317, 49.560091686481506, 24.708553051647016, 5.463912177787889, 188.85971994667256, 24.592777181806255, 27.64824909185852, 21.135122532484047, 8.072646743869578, 132.68321678481678, 13.467530864568081, 37.674208040387825, 14.749660710713949, 25.272078208282526, 54.5733572838097, 11.52775711959789, 84.34282270865866, 24.539768850598445, 99.72985284053212, 28.707399677305823, 15.07261210688946, 22.475543990053175, 21.457652556898864, 65.92455132409202, 6.709176985807916, 33.05704039711346, 79.55263986316578, 15.92252415748934, 7.710075822023274, 5.180625693587949, 20.84616894470415, 23.24482463000328, 40.36680066056074, 35.32368578574206, 5.565915597222044, 92.17030853765033, 16.484156278545736, 11.96591860191722, 20.31642130924797, 5.457255534914988, 41.91102560025418, 14.867904485688742, 32.22325968454426, 94.2895169941553, 11.490934158659043, 13.296546774283852, 7.6308382249295015, 75.62631190026946, 88.96605858966655, 17.480269876104533, 10.30930305708049, 48.18826338032899, 73.59214286306603, 15.821013351449057, 68.87541559259098, 70.45379679128605, 35.23908340626074, 49.99780916354059, 6.583448270662101, 18.094776411051857, 39.18143230742746, 82.62312963980962, 30.2499623452549, 22.270711822202774, 32.76260535984295, 22.26361301905025, 34.96103032492267, 42.562136660958885, 55.67783689120058, 95.71679806419047, 85.55713843300585, 13.479977782800107, 9.305298413563076, 59.20238278885, 7.636010240995738, 27.743472412186303, 22.20859844822018, 14.16641759427414, 11.14286325728985, 84.57136206731836, 67.18701883578932, 28.230488689128972, 69.11458692404926, 33.48522337619487, 88.71350734376733, 45.65138852169924, 10.520302996343982, 25.245081449627996, 10.640010423547958, 90.60452676123465, 20.941957346514965, 34.22632678980731, 16.230727618598685, 22.390168673931807, 69.07987091514528, 7.802955885519202, 23.628599823899307, 14.61214316618518, 43.45057678311552, 39.12617410353576, 136.39842430417647, 22.16391698897187, 44.1964600648446, 8.596387073136482, 7.315217633354989, 44.068242052944456, 8.377538080925396, 34.18917143005179, 38.054621363596375, 12.72574297223577, 25.830200253164115, 80.64020227266215, 20.697022591681886, 12.081648361721312, 13.736353243230818, 5.617791216255131, 5.127456292823341, 31.021373052419232, 84.42286834522558, 35.405429560743016, 7.367515060730343, 15.895812281157683, 22.982980911379777, 95.24621277331238, 40.31838120128891, 10.911592683556936, 20.477423886191346, 71.70125834171576, 13.985433775686845, 17.065965147377277, 30.582549269841998, 10.981297477152046, 6.637069700063541, 16.98520907610803, 5.670022675456809, 53.36311055716652, 45.32003244245175, 74.54788205494972, 14.371782850123141, 16.702048212053235, 32.13974677412708, 6.171517609000342, 69.95079997445859, 28.11181418027458, 42.195328459205534, 40.05038224107324, 9.619417151199876, 53.372658650209786, 21.827604718418343, 111.54224599913339, 50.04289125239335, 86.66587418764458, 13.208207288350925, 5.713907324993894, 18.186860872689042, 25.9085543496902, 68.78398582679556, 5.64927892468977, 51.927690225818196, 5.121248927485224, 38.6607386033647, 5.943891002580616, 7.439448948225462, 30.97713205461712, 78.75424252530571, 55.80989890678419, 95.38230258995523, 47.69756438483416, 6.41712129772778, 45.07287149957398, 8.279498828767746, 12.170955869103418, 48.48138428674282, 25.48630441386384, 16.7038358949076, 12.538403460082359, 29.761265084208425, 32.28553890429698, 6.495793205366642, 37.95146832074044, 72.0972799152965, 6.779706612377343, 81.61802228018422, 25.47651601615032, 14.921097810774361, 76.68650022366434, 37.49130508156607, 48.703400486066975, 17.132286243515548, 29.04850027865026, 28.617810049592105, 36.68316872754674, 44.75510138618054, 76.98535574413432, 35.221348729273146, 16.80178068579342, 24.466986453046225, 7.0252481423223765, 35.23287273169973, 8.279485935240265, 14.346336250003478, 17.19277565191251, 15.626248600897426, 8.900160122030641, 48.17226894379889, 33.272407852060894, 81.68303294882394, 13.7928132520361, 63.738366741247496, 7.383221803047284, 15.976631280093658, 5.724330439616691, 7.989200360140691, 16.018610038783475, 178.56528565224556, 31.453429236984192, 114.38784410881746, 8.337965885447543, 5.627224893375614, 28.050127452613154, 65.47483339788528, 12.062772069110435, 6.955266400524846, 90.31274032741054, 73.19497124959251, 12.435097147972195, 8.06736802027715, 48.026567935956365, 19.0684388678961, 33.69601695520915, 9.148699493036549, 55.85532970306917, 101.40876142569834, 52.16364076253291, 5.9295106185645805, 41.56715251912553, 55.24291013796201, 10.017684358011678, 60.67615126027319, 21.291752514393046, 27.194174876629422, 8.0205700613048, 60.92745080221266, 7.271018598257791, 71.16582859578186, 47.12858579026708, 7.7109806893724535, 9.318653497813845, 32.54091289489387, 21.068772849878947, 5.7242332851982844, 12.358022673819734, 5.145020053000925, 26.771101812622632, 52.1786856951094, 112.5202902637478, 12.791493545291921, 19.76457121320363, 138.9677931160932, 5.893917674986602, 28.312048457095422, 25.42652154872848, 33.63255248087313, 21.80976532234653, 30.612128560674652, 37.716564414529515, 13.382540744987537, 64.6024535357949, 63.211609960123596, 29.139288475654915, 30.771385657687837, 8.537700076191802, 50.50956216983738, 9.161222447532102, 49.61223268257596, 75.9186379480399, 72.33490583138827, 12.532736254317038, 27.425110982700094, 51.66652027454407, 11.582161901350371, 83.26374393419924, 56.58379279982353, 66.59626425891197, 18.530008780489823, 70.79231994978286, 31.175374492352013, 13.650032601910665, 13.932586014976872, 7.188523095427645, 94.54664565306143, 18.237667346903052, 31.880447099056923, 69.01759744245328, 84.61640383668129, 57.68593769744292, 11.34541029492381, 24.959190376213225, 43.99760568996928, 10.174658020960283, 75.0001464711216, 15.71104444358268, 77.09954140167741, 75.69214526740237, 8.182042796882664, 7.836460108172062, 104.59673752393925, 9.007747476341228, 65.5396235298781, 19.884638218240234, 23.068677902554676, 14.485827530203139, 20.590872989607252, 21.46192445995243, 8.971012890211853, 45.80117344559722, 62.731666664120716, 25.47313740938397, 23.120575335375378, 30.174018116627394, 14.742742429295385, 14.059579850785276, 9.659278865914173, 8.291963526513136, 11.999009805146077, 12.36077047267216, 7.672113186846972, 93.82024994455244, 11.943611048575843, 6.122468578764251, 55.319736843824664, 32.305124162074165, 12.646422570327244, 14.841275427797289, 26.798844985630595, 151.85047338773353, 104.27512438145611, 63.418865142976045, 6.7327375614708815, 18.099256242091027, 7.503784619909786, 27.351463606015848, 21.600996498320463, 15.008018972843919, 34.66773238336035, 33.22496905919277, 50.053206471549814, 7.012469327848771, 16.633465665342747, 83.82703557890036, 74.23528910839417, 16.863259781631406, 39.9265528344536, 27.385907210020648, 65.92972110159948, 31.957231692137512, 7.107910997514634, 8.545806433895342, 72.18316572072537, 11.97675999307859, 8.217721364627605, 29.375839776136374, 7.371608175268653, 68.40791465221135, 51.55221179056056, 5.201225033781848, 46.68519253698719, 24.445162223741185, 9.957475960476463, 122.96741137980437, 8.708353958710527, 24.320800312760973, 14.174332275362794, 7.922356591772015, 65.41135581844564, 6.103912423743381, 84.39834923631929, 95.07525055066925, 14.768576070990855, 5.9382426733840035, 27.953770800953414, 12.467688358638632, 109.35903194904405, 11.441838695861744, 98.98493040334904, 16.799186821273178, 30.276436260036057, 78.59167237842175, 22.60453397543737, 17.887194841071633, 107.74184438936115, 22.175107345342614, 75.20793129417719, 27.41680649487267, 9.763113417567316, 19.426249467062924, 6.199741172208025, 24.57414782325843, 9.426146240537483, 18.73531539731035, 36.07222044860016, 87.38035052364174, 21.25576830904301, 67.96869270313388, 18.294933923663642, 24.003984102582457, 5.646596045628554, 69.32365843391551, 65.93481701556675, 14.954093781508575, 23.50013399146466, 31.906550486286875, 70.05047230336727, 21.149152778006872, 18.080395586112186, 109.54484847000155, 15.993663223376469, 9.367356248681954, 24.735599269076506, 44.38738817486788, 15.188828834653833, 16.13279831959016, 20.006488252389435, 11.679231109199568, 63.430836703548366, 25.419568581456545, 13.50633323577481, 102.41561564068392, 104.79272824938657, 13.456455693164045, 56.03259441922126, 62.70223375834368, 78.29188104825886, 15.331608527368209, 9.28867917005279, 5.714375120895026, 98.96366667163193, 21.799270264758935, 77.74886446326016, 31.164796209317757, 76.15057206201689, 75.34563263294328, 63.90870287144823, 42.29063365285833, 11.20073014404696, 49.42609687083113, 27.14282858074083, 50.61173784831539, 7.571473571416043, 21.972254870819803, 62.944005156189334, 33.61592601046678, 12.534552754281155, 119.55044286822148, 56.143715824295896, 9.030876286580806, 48.03874859336962, 40.770278518128045, 5.234513974369192, 13.06794846520025, 62.43132282017345, 65.06373974445933, 9.207429423189287, 82.87050340103656, 47.102276363308036, 16.98014175632242, 30.524314694058436, 70.39327489376686, 96.48742403489463, 153.4093557092407, 5.825068000011359, 6.800298541813051, 14.651588645521958, 81.77205772490393, 30.930771020750257, 58.42947157986234, 11.026119022638667, 84.30757356615257, 22.112432887518892, 8.401820041342571, 15.088524637188517, 26.841232867741315, 7.475688443361598, 31.89739924329373, 5.896803522697935, 7.479205742371479, 52.73924201601177, 18.29255281350612, 31.816625702591978, 16.572173628507773, 46.777362767470784, 49.62672222753358, 11.996062456834792, 20.572425680687147, 73.96198470354636, 18.94485903540332, 150.7036856611856, 25.895937507375095, 35.028008124835424, 27.928878843910297, 93.4205645584088, 47.23233564493151, 11.140927965510077, 52.76701423332337, 60.045479335217685, 8.693957022091942, 5.855465618518736, 40.71228729848595, 23.55137525466732, 20.58385110057066, 37.004493073791565, 19.682742069934076, 57.02858236274148, 5.296393319780392, 98.24948587983842, 6.252438114428019, 82.22881719899839, 60.85473664684377, 56.79206615838787, 122.11919810125944, 11.592758111471387, 11.376912833566644, 7.509264369864349, 199.81578065395124, 73.6039393833955, 55.51750260177778, 107.12441298130678, 38.79694678367311, 58.494294284682304, 49.36245620121056, 19.350456813387222, 113.66090163400635, 67.83809753125053, 66.81167625110716, 9.271642178101404, 18.1049328292024, 10.034628692974861, 6.6963196975641175, 26.20836171790596, 63.41014749490165, 101.07088811091654, 39.40845859525348, 47.68823570135939, 21.138415850840538, 68.99885283738911, 115.71903062367733, 44.57041116477235, 6.916583154050642, 6.177491050080168, 30.67749668600456, 26.33433772731836, 12.275876185127284, 59.500147421310494, 16.92763036349319, 18.310819036687917, 5.100205111378819, 8.803947390151459, 32.98100698493772, 25.414729282152933, 5.60876556275606, 5.195503599053856, 6.793095976928372, 59.83938452306351, 7.574655036012019, 13.451212920717722, 101.36007838189272, 7.309717592231531, 58.16179215105899, 10.659069421709109, 5.887019755982522, 69.40530113243041, 199.74974170677365, 86.34360637149999, 196.7579547825256, 132.73575048359297, 75.60816508043538, 32.14854530752748, 160.15108613942422, 130.53856421397708, 133.17884726669894, 89.86901185186076, 153.79668931385854, 60.81087442182866, 65.30547975170697, 15.318580112025662, 127.9865048590517, 51.98398171290211, 86.02242651358883, 33.5203870600663, 37.618959816577544, 25.759815756892777, 182.02491729924012, 75.24622338104805, 5.131455838785984, 5.211278566750483, 96.34013369549855, 5.0375957926328585, 24.025521611563917, 5.582362806304963, 20.33684789393206, 5.033280726724745, 5.250901218239198, 15.193795997634352, 5.033883453899097, 5.166945048082994, 5.14712995807849, 5.235389633184788, 158.85551980760204, 43.39197295870692, 5.274096553986734, 5.21136764883484, 5.049658009230326, 15.367804582831537, 5.386662185953356, 15.368488751378948, 20.343554012590822, 23.134878605825428, 17.123544871490296, 155.95635915756213, 67.43021644888556, 14.7937045158609, 9.199223156922361, 113.84028595321354, 14.029407918388074, 5.072015467992519, 86.12717617795157, 13.387485569937184, 10.960554005847678, 99.84318546323158, 11.406977855874096, 7.986219974225214, 32.12789019476227, 34.419079689629584, 85.16898175422142, 74.03022394278972, 19.37510977251639, 14.921425796855893, 76.38274182738209, 29.063886619728756, 70.78324982880866, 11.682332888113018, 56.24737023178178, 18.199226718918645, 46.309155195662015, 44.04192238997577, 141.35179795883136, 63.23708733987674, 27.26706886240646, 35.314296983313376, 14.037645788947065, 33.225064692829314, 7.030607286276347, 109.75574038792189, 6.324956402078758, 33.84130103729794, 25.07687732060485, 16.02410542708319, 13.27036077030038, 8.718920392872587, 8.365152089585907, 23.864620452389968, 25.950616187955063, 61.14678848202416, 31.918569844795076, 5.777423798996033, 35.1892990699438, 69.62613732841396, 113.63350018582014, 28.102376383029974, 6.380367040517928, 31.333653783123744, 81.11095494350393, 14.977939503161858, 64.61666571122812, 8.413742532116785, 16.68225163898633, 41.624005675279165, 5.820524616668381, 58.870410234157276, 157.74759008013712, 100.68857967636504, 19.297564606830058, 22.176261048112885, 16.965116137330707, 63.356814915019996, 51.64091532294158, 17.605332964465262, 9.388254534008658, 10.47520280445852, 71.30989909055678, 25.641350458888848, 95.44672113660064, 24.808386099191175, 82.84855696238375, 11.840178443282062, 61.59952572557213, 23.696476590180964, 81.57631609257635, 73.77057026355408, 67.2767062340862, 56.158071522149, 37.95870616196541, 36.34713763369623, 35.4413522882459, 13.04067259668111, 13.498892736358348, 114.94137145647126, 10.914851913036927, 80.35032735753748, 19.827200742035604, 13.699687380485777, 15.61611890272891, 12.615216532996044, 81.02637638910325, 5.8249326017678795, 58.53433832302919, 154.57230220243162, 43.64737452234082, 97.17368240787863, 75.27665720667017, 21.16424872745837, 33.32666578243452, 5.537370427496448, 70.0340829150938, 76.48131487243744, 43.88943905973814, 81.44105771240977, 122.75625610746766, 116.73731306296014, 31.88133440707632, 63.61430200021005, 105.08321205799673, 62.09150168869528, 74.08302495704086, 75.37606191566971, 17.81624701436516, 28.972624953557535, 86.44457415151183, 44.528332335761014, 5.9515737308549435, 17.07807175219887, 20.63287112828005, 13.70722988883865, 10.537743617533641, 10.226758888894883, 88.19639588459737, 87.25513631485343, 9.044589354760323, 36.76034252858996, 33.819638341217804, 39.96461002951313, 8.581544682141464, 14.505753646552321, 32.807077166126824, 29.093513191878856, 6.939696387371881, 15.97528578517737, 31.424543534333424, 130.99919170921982, 23.60318127252106, 91.7747096895598, 27.22254361350503, 46.356182048409664, 15.289593787961293, 20.09914980017348, 53.09848674124656, 7.940096847648648, 55.82887220017584, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([7894346.824602374, 8069038.362210037, 8117429.67616826, 9089827.860018287, 12310883.533000816, 12520520.395422503, 12548245.141125795, 12584936.479366593, 12615716.49190018, 12625837.5, 12655162.155072011, 12655518.75, 12670219.121199166, 12671775.0, 12675495.927407907, 12676538.327385344, 12683857.8125, 12689370.3125, 12726180.14105947, 12738178.411536671, 12784414.04983571, 12804060.000447063, 12812015.467351627, 12813973.4375, 12822289.0625, 12884678.561624303, 12907160.397189751, 12907160.76654729, 12928565.044645796, 13061769.49165165, 13130845.3125, 13213708.197676962, 13314196.470689896, 13361628.333570423, 13449988.22483727, 13506653.125, 13507424.65630474, 13527065.625, 13534326.5625, 13537409.248895561, 13548693.204028854, 13552772.18504584, 13554378.675743718, 13558142.1875, 13563437.048514761, 13563439.004504124, 13566921.875, 13568667.799465282, 13571779.543803148, 13574968.461732572, 13581393.75, 13583101.232657457, 13589605.156826485, 13590485.9375, 13591313.941688897, 13592619.060832439, 13592983.82874026, 13596449.213139007, 13597644.876015427, 13602724.503207363, 13602830.507804336, 13603092.1875, 13603267.1875, 13606679.5214695, 13611077.01814209, 13611174.682561986, 13613250.0, 13614013.661348067, 13614135.9375, 13617245.872118356, 13619833.156031176, 13620384.375, 13620665.568984179, 13620798.47127303, 13623340.61525143, 13632253.24402132, 13632549.958758742, 13632558.670592261, 13632795.482243324, 13647258.86449294, 13649462.89896276, 13651052.841002973, 13661677.941682916, 13662249.892902255, 13662475.0, 13663742.1875, 13664907.377735807, 13665172.806478277, 13665364.66827573, 13666193.75, 13667234.47192846, 13667667.1875, 13669036.643698916, 13670092.1875, 13671431.039507601, 13672153.945106974, 13672568.814326765, 13673873.663594581, 13673884.095558567, 13674059.17983515, 13674947.84049587, 13675019.24834012, 13675126.5625, 13675300.0, 13675832.59941893, 13675899.889752377, 13677384.375, 13680456.951675294, 13681462.314163849, 13683045.617238784, 13684729.887241142, 13686426.774627825, 13688966.375608927, 13688993.75, 13689146.52891236, 13690083.13472091, 13690115.353093155, 13690498.4375, 13690524.285854423, 13692678.125, 13695022.163852965, 13696543.723836062, 13698651.189975342, 13699263.402644627, 13700769.842669375, 13701253.125, 13701799.381805165, 13705587.16266735, 13706085.9375, 13706110.151482703, 13706728.125, 13706739.646995643, 13709651.52700253, 13710947.049568651, 13713720.753737664, 13713902.864952227, 13714153.411439244, 13714326.5625, 13715375.524769168, 13716346.60134625, 13717110.956325574, 13717277.606672717, 13717576.99488997, 13718127.692329984, 13719013.206763815, 13719185.687194807, 13721825.516409015, 13722891.648323221, 13723208.414543707, 13723348.86434449, 13724254.096866975, 13724359.224783704, 13724365.625, 13724843.75, 13724920.262158351, 13725214.811510047, 13725232.86093049, 13725314.611505195, 13725427.10792522, 13725646.875, 13726259.013988314, 13728391.675190758, 13728504.6875, 13729558.325348403, 13729600.0, 13730779.680064479, 13731190.666688383, 13731852.859134952, 13731941.955966735, 13733268.339037716, 13733622.11271394, 13733776.55276194, 13734128.679812606, 13734432.762192978, 13734973.812780218, 13735858.225211333, 13736651.250645436, 13737670.495569382, 13738104.6875, 13738497.65275235, 13738752.79332535, 13739832.994575443, 13740962.030581132, 13741070.35075424, 13741807.277280139, 13741821.628362976, 13742714.39611009, 13743157.011212455, 13743228.842536466, 13743931.481085675, 13745701.652893499, 13747277.147024458, 13748498.68047589, 13748528.838423645, 13749465.821310125, 13749777.747745767, 13752067.307515029, 13752471.486093808, 13753114.0625, 13753117.474129016, 13756079.500369158, 13756253.125, 13759565.61250224, 13760004.064473258, 13760044.98026494, 13761329.154716091, 13762818.456476666, 13762822.471464518, 13762994.07677476, 13763039.015117884, 13763168.75, 13764370.30209244, 13764459.773614405, 13764656.115008099, 13764993.75, 13765366.053541621, 13765540.461210841, 13765750.924070433, 13766330.60894497, 13767648.4375, 13769857.8125, 13770542.703378683, 13770669.032053255, 13771092.591111436, 13772149.664638013, 13772271.600566626, 13772496.243449954, 13772614.0625, 13772928.365559172, 13773527.842043944, 13773706.009565627, 13773768.716610996, 13773929.454924343, 13774721.875, 13774727.100420032, 13775412.54989516, 13775980.632795492, 13776979.450679693, 13777145.91488185, 13777319.775849715, 13777693.322290769, 13777805.318770194, 13778007.363359632, 13778376.5625, 13778907.456387352, 13779100.482679708, 13779935.9375, 13781611.179202054, 13782598.421379628, 13782818.437885586, 13782906.122769717, 13782920.860985264, 13783053.158976303, 13783056.195140468, 13783254.183939181, 13783443.608235478, 13783966.909134263, 13784159.692147275, 13784620.3125, 13785008.048087936, 13785154.973537248, 13785295.956061652, 13785641.620107, 13785684.885487437, 13785707.8125, 13785828.390035305, 13787395.9709815, 13787403.125, 13787414.415834608, 13787471.314733114, 13787587.116881508, 13787928.019477151, 13788196.875, 13788221.530122753, 13788345.3125, 13788392.1875, 13788442.408083875, 13789527.614193529, 13789593.825672103, 13789725.0, 13789891.652965313, 13790636.474920534, 13791207.217169032, 13793246.035832433, 13797060.234688338, 13797389.275577255, 13799606.067096844, 13801695.3125, 13804895.275489502, 13805796.42469416, 13806836.52582526, 13807077.200189652, 13807935.9375, 13809016.29783643, 13810020.3125, 13810657.387071978, 13814060.362486085, 13816577.698920472, 13817381.25, 13818967.1875, 13819571.875, 13819578.125, 13819623.4375, 13820355.737262225, 13820401.531464927, 13820597.845563922, 13820625.089711323, 13823276.521757815, 13823280.818853851, 13823559.155611215, 13825010.947175037, 13827042.1875, 13828017.653537901, 13828381.234952161, 13828491.221685033, 13828912.326102545, 13829267.1875, 13829281.25, 13829387.073232614, 13829388.871125452, 13829623.101347322, 13829662.411142714, 13830316.630416792, 13830318.190180402, 13830319.051579796, 13831416.77295852, 13832368.15553212, 13832964.58287825, 13834108.06184139, 13838771.785817128, 13839472.249948533, 13839484.375, 13839791.33661196, 13839908.939715857, 13840096.3537206, 13840420.855748309, 13840544.439170582, 13840614.0625, 13840826.730636438, 13840966.502972692, 13841268.675324416, 13841305.51512844, 13841526.409543546, 13841677.724431625, 13841954.103813922, 13842202.097634666, 13842376.20577532, 13842576.630033568, 13843106.106932158, 13843189.0625, 13843210.9375, 13843220.090975022, 13843496.172577886, 13843653.354702733, 13843946.595426353, 13844204.6875, 13844207.8125, 13844549.823664228, 13845184.203810861, 13845453.125, 13845520.036808122, 13845838.285921672, 13845986.83924391, 13846131.154268043, 13846166.519378152, 13846177.012055371, 13847082.21938826, 13847906.609811816, 13847928.125, 13848203.070556514, 13848373.279539643, 13849153.521136127, 13849390.501010174, 13849464.828204326, 13850045.3125, 13850339.041288048, 13850353.0851706, 13850501.5625, 13850825.322051115, 13850870.3125, 13850873.812825354, 13850894.654301833, 13850990.146241685, 13850991.60684749, 13851268.206402268, 13851398.549252283, 13851579.850309333, 13851608.737868134, 13851678.049710196, 13851731.869806372, 13851917.1875, 13851919.874430662, 13851974.908620732, 13852120.36386256, 13852205.773245497, 13852273.4375, 13852545.3125, 13852557.495102173, 13852629.6875, 13852637.5, 13852724.538636021, 13852735.9375, 13852879.674090432, 13852964.641062526, 13853039.667213382, 13853058.475691214, 13853098.833981052, 13853120.11248475, 13853330.919726597, 13853330.940158268, 13853340.68028819, 13853429.6875, 13853463.750896597, 13853531.330607353, 13853549.352107288, 13853598.925002808, 13853629.682134448, 13853690.625, 13853807.725518191, 13853823.4375, 13853842.501093986, 13853915.625, 13854178.125, 13854294.814122008, 13854349.174423492, 13854368.75, 13854380.662538825, 13854394.13754203, 13854418.511324873, 13854419.933431692, 13854457.8125, 13854467.174065962, 13854493.584564919, 13854547.001171656, 13854635.873380346, 13854741.629296819, 13854888.084258774, 13854904.61542892, 13854918.75, 13854930.912017468, 13854985.9375, 13855005.59776166, 13855254.934926132, 13855290.897615127, 13855346.26687531, 13855583.0690352, 13855584.375, 13855585.725563567, 13855803.09124992, 13855839.158428561, 13855908.048320673, 13856042.163059589, 13856098.4375, 13856273.963327104, 13856280.577686435, 13856315.41558517, 13856668.525940135, 13856935.076401724, 13857255.811117003, 13857684.385051081, 13857816.404435247, 13857911.148794137, 13858651.338221442, 13858664.0625, 13858702.376357475, 13859062.5, 13859487.385672078, 13859585.9375, 13859698.4375, 13859772.58859031, 13859949.524128715, 13860298.1456846, 13860313.9914637, 13861846.33565694, 13862307.8125, 13862644.289979197, 13862993.75, 13863070.668387083, 13863084.663382497, 13864803.10988297, 13873554.6875, 13875985.39388447, 13876654.958626872, 13878788.855186816, 13879853.792102415, 13881056.154619653, 13881220.277815241, 13885650.0, 13887277.41748009, 13887655.557309719, 13891613.763862947, 13892319.774912907, 13892826.924960785, 13893527.311206177, 13894066.886672933, 13894346.256847627, 13895001.5625, 13895619.496331543, 13896487.020498984, 13897798.172810322, 13897957.478160698, 13899134.375, 13899164.0625, 13899316.07149224, 13899562.5, 13899693.541636258, 13899969.471534694, 13900118.24868153, 13900160.9375, 13900411.682304664, 13900443.305117585, 13902117.866773076, 13903164.335010668, 13903222.828694623, 13903820.3125, 13904569.072819881, 13905259.893968653, 13905317.1875, 13905497.455493214, 13905952.739181522, 13906076.902505755, 13906409.624150837, 13906682.8125, 13906708.472234862, 13906828.018231135, 13908840.625, 13908964.657839697, 13910919.081367452, 13911129.82245384, 13911178.53820386, 13911302.926081402, 13911466.478235628, 13911475.0, 13911841.833175287, 13912903.125, 13914085.9375, 13914318.546950376, 13914550.601858672, 13915204.217424018, 13915543.340707174, 13915829.6875, 13915850.22537569, 13916276.207159482, 13916288.319861168, 13916538.467035774, 13916721.371869087, 13916729.228140563, 13916748.758806594, 13917845.3125, 13917979.511352245, 13918083.412465142, 13918386.514519643, 13918784.32185508, 13918832.56012802, 13918862.863878096, 13919004.697671514, 13919369.244048007, 13919453.792653661, 13920026.748998646, 13920028.125, 13920053.591004781, 13920431.574142814, 13920523.4375, 13921161.882405724, 13921464.85655583, 13921984.348451516, 13922213.483068753, 13922563.536173781, 13922779.6875, 13922988.852629274, 13923077.968900379, 13923078.76338775, 13924216.903893083, 13924234.461732915, 13924253.976676038, 13924826.57984081, 13924941.755154373, 13925170.3125, 13925260.381988075, 13925557.381029088, 13925684.524474403, 13925815.952304563, 13925921.875, 13925922.02282388, 13927123.468754191, 13927218.689701898, 13928342.1875, 13928560.234499784, 13929999.948237395, 13930178.58501762, 13930212.5, 13930583.295333868, 13930584.24248247, 13930667.972252991, 13930778.998205617, 13930850.0, 13931139.0625, 13931149.91355079, 13931432.8125, 13931565.8636873, 13932067.845458854, 13932596.875, 13932616.345640348, 13932825.024877261, 13933332.595526153, 13933547.67879868, 13934540.625, 13934657.96320251, 13935294.348776966, 13935314.939694006, 13935329.641376797, 13935592.174137391, 13935755.833459914, 13935858.528505199, 13936721.103811562, 13937307.528613811, 13937791.388260005, 13938869.164735181, 13939021.875, 13939167.86941533, 13939252.72963743, 13939501.950279832, 13939904.6875, 13939986.26298919, 13940837.57128004, 13940856.191415757, 13940928.594946884, 13940950.826929022, 13941257.25924897, 13941257.574338764, 13941287.609962475, 13941397.822756745, 13941629.6875, 13941687.5, 13941721.350874871, 13941737.5, 13941985.680090412, 13942035.657070158, 13942045.886285026, 13942068.75, 13942218.75, 13942360.471495222, 13942366.867624272, 13942370.3125, 13942445.3125, 13942482.277315538, 13942516.787299799, 13942665.126836196, 13942720.563629841, 13942793.792216156, 13942799.230040614, 13942803.125, 13942803.188408416, 13942833.173349164, 13942835.856102696, 13942853.45134557, 13942890.625, 13942900.298794322, 13942962.06453371, 13942976.5625, 13942985.325879548, 13943046.421935363, 13943059.375, 13943065.625, 13943085.9375, 13943165.723715907, 13943240.574036414, 13943367.306524064, 13943463.716780473, 13943493.353809897, 13943559.328279495, 13943611.55401973, 13943766.23672799, 13943810.793218218, 13943812.438324548, 13943888.355719795, 13943890.671221077, 13944028.125, 13944073.363557339, 13944082.8125, 13944092.098814612, 13944237.384383528, 13944362.5, 13944521.875, 13944553.870602345, 13944645.3125, 13944727.936340326, 13944944.93432811, 13944950.0, 13944997.977166055, 13945027.740650183, 13945030.652975703, 13945042.1875, 13945057.8125, 13945515.474650456, 13945520.3125, 13945529.6875, 13945594.19862043, 13945595.3125, 13945732.8125, 13945761.024432529, 13945882.899221359, 13946436.086235475, 13946612.681537658, 13946716.62591882, 13946806.25, 13946918.260099694, 13946928.125, 13947046.809020339, 13947049.685518183, 13947144.872422067, 13947176.774248112, 13947218.788043777, 13947412.893002445, 13947607.445516882, 13948806.25, 13948861.997449733, 13950521.518536195, 13953493.75, 13953536.560025627, 13958021.727819607, 13958373.80830778, 13961407.424960418, 13961479.6875, 13961547.367566256, 13961621.732225664, 13962052.106492, 13962097.723364828, 13962332.8125, 13963074.946017345, 13963503.768599559, 13963510.90666467, 13963562.777522227, 13963597.962453831, 13963640.633442054, 13963672.155594494, 13963682.795063805, 13963716.32334163, 13963727.107865911, 13963744.722132549, 13963764.333837809, 13963847.841251211, 13963893.75, 13963905.547111603, 13963931.25, 13963939.233327296, 13964048.4375, 13964131.13227299, 13964132.80949768, 13964264.0625, 13964285.9375, 13964338.596863834, 13964433.090957392, 13964476.71629096, 13964515.357482318, 13964669.775599275, 13964729.6875, 13964770.3125, 13964775.00529348, 13964778.125, 13964785.9375, 13964845.3125, 13964883.958976539, 13964965.625, 13964971.236719986, 13964982.8125, 13965035.865967648, 13965314.70177169, 13965496.041534584, 13965854.341382546, 13965879.47782243, 13965967.1875, 13966145.3125, 13966296.875, 13967039.0625, 13967090.088694008, 13967126.5625, 13967411.676033113, 13967523.399640977, 13967591.346264997, 13967672.69287283, 13967764.089840107, 13968103.00350548, 13968194.37833435, 13968248.698210146, 13968248.876387563, 13968397.545846226, 13968643.838654658, 13968674.302555175, 13968843.75, 13968854.507483851, 13969051.46668933, 13969291.873832433, 13969381.396427054, 13969512.358106956, 13969912.420275662, 13969944.857574362, 13970200.0, 13970213.17084713, 13970229.123950234, 13970646.552957742, 13971135.315637466, 13971141.175962755, 13971141.780190876, 13971142.109949984, 13971143.0363537, 13971143.181872351, 13971143.832823448, 13971144.82192821, 13971146.749553414, 13971148.259789223, 13971148.32401319, 13971149.908535814, 13971151.165514482, 13971154.150848052, 13971154.223293982, 13971156.930642562, 13971158.714584442, 13971160.026762078, 13971160.055293683, 13971160.609608024, 13971161.29105933, 13971161.478901964, 13971163.816664774, 13971167.263837619, 13971168.794568164, 13971169.055613125, 13971169.070819514, 13971170.076895919, 13971171.165004397, 13971172.850271506, 13971175.156811565, 13971177.62884222, 13971178.329362907, 13971178.952655623, 13971179.227929987, 13971179.755361294, 13971180.449565137, 13971184.02265106, 13971190.602240758, 13971191.341460701, 13971196.314982016, 13971197.184046831, 13971203.601017343, 13971207.250221888, 13971207.500049492, 13971220.420187367, 13971299.376487782, 13971371.97566547, 13971424.990685573, 13972014.152327139, 13972030.985944897, 13972214.023173554, 13972346.714427765, 13972821.875, 13972840.363181608, 13972907.983301258, 13973052.891015701, 13973074.522281025, 13973390.515362354, 13973448.4375, 13973597.046611968, 13974111.885278974, 13975417.911671698, 13975868.75, 13976006.25, 13976575.0, 13976908.623178808, 13976968.744720828, 13977584.081228431, 13977683.564838067, 13978279.262661083, 13978594.07804237, 13978629.563763207, 13978758.466348927, 13979026.5625, 13979162.5, 13979668.75, 13979721.85056983, 13981140.16605431, 13981557.613506008, 13983737.240766602, 13986545.271982944, 13989584.017760202, 13994050.375858618, 13997320.756375445, 14001138.576312862, 14016606.067257086, 14026059.632722814, 14026076.042041013, 14027539.799412964, 14028856.395688077, 14029013.771363169, 14029507.729652802, 14029851.5625, 14032351.271029202, 14034726.055903142, 14034739.556480661, 14034775.0, 14036857.29755554, 14037282.025047863, 14039689.908633871, 14040092.234752437, 14040306.25, 14040790.634525139, 14040821.56603332, 14042628.357971394, 14042844.142309792, 14043364.537745556, 14043668.838057388, 14043675.998646572, 14044205.43236214, 14044214.0625, 14045019.560109703, 14046183.751700213, 14046345.059364894, 14046662.076495267, 14047077.115300598, 14047877.246096041, 14048504.753978806, 14049004.225676673, 14049029.6875, 14049526.39737456, 14050104.6875, 14050289.87084143, 14050534.375, 14051284.787538238, 14051671.875, 14052099.695739876, 14052197.857118761, 14052415.892357958, 14052445.3125, 14053062.5, 14053149.644355604, 14053692.1875, 14053753.125, 14053799.392385963, 14053818.31192063, 14053930.245643655, 14053988.921915838, 14054165.256966593, 14054171.19004226, 14054184.00598287, 14054209.541406328, 14054232.322358029, 14054242.1875, 14054273.584432552, 14054274.926630894, 14054379.6875, 14054381.25, 14054423.313380184, 14054424.415953211, 14054476.982317723, 14054479.6875, 14054495.400575096, 14054518.117911559, 14054523.4375, 14054532.761556348, 14054534.375, 14054548.4375, 14054555.098131375, 14054558.829404265, 14054561.792156478, 14054562.5, 14054567.1875, 14054570.3125, 14054575.0, 14054580.280874725, 14054586.86467591, 14054610.995843986, 14054612.202975642, 14054612.63867363, 14054614.529057221, 14054661.909214148, 14054677.7585194, 14054708.961652324, 14054719.647939935, 14054731.25, 14054731.25, 14054765.265135327, 14054823.1152344, 14054835.856827725, 14054871.875, 14054872.39403069, 14054901.443275534, 14054902.799404742, 14054904.17557972, 14054916.447799178, 14054920.559633084, 14054923.182664678, 14054931.25, 14054934.063359559, 14054935.837920586, 14054946.012042748, 14054947.899914669, 14054948.525921809, 14054950.910405697, 14054959.374210078, 14054972.719306063, 14054974.091155458, ...], [7.585110863403029, 131.62387688018373, 36.29148271344643, 6.234290433024878, 30.155880603999897, 71.49232237745005, 77.65852863236901, 17.506352521106237, 28.145521955743906, 66.97083366887327, 134.4626439639077, 58.65305492107825, 126.33585719286222, 48.20026689139068, 17.95016542831831, 61.516150897876216, 93.43763381115579, 103.66749134498946, 11.249587653598427, 25.243872676118862, 20.878009449726836, 8.647547962424435, 25.756991405272654, 97.00111733300326, 59.455668017147985, 11.886423366487616, 52.29991221022658, 8.198197307513842, 20.72730286601286, 7.331083761521092, 29.299819333539766, 16.645516746102164, 62.57318985291856, 15.800903346650163, 10.030013711791426, 93.46785852864585, 7.483485710909563, 34.16127320201086, 30.842487937663652, 26.25899601046593, 21.04645211354491, 9.608085986768156, 7.27416371461235, 31.790003019761333, 40.41232472534012, 27.427433339555698, 68.93979506161367, 17.931708007044357, 7.084183587724495, 23.90177489236587, 78.60211755282995, 23.37688511059067, 17.093326519449455, 59.47329605292193, 26.34555120574378, 5.7268299620542, 73.53941692753953, 10.086377913171598, 22.15099669578174, 92.30959116570031, 13.637275920997675, 76.19331828017847, 50.382962059015625, 6.730806445600604, 11.923341940171635, 9.076679224238028, 60.91669936801385, 8.085253114944479, 59.54320001506224, 7.819010721698522, 11.710768313529982, 42.68311577543026, 92.25056422146508, 5.292131623971401, 11.112503273259032, 15.68896228336561, 27.73420936617738, 6.947827790736202, 41.50453664940605, 21.388923148526608, 16.716713376801813, 13.95929972937028, 10.852770398219274, 9.242458507030557, 65.87530273721954, 46.32909648106146, 57.8360573552158, 88.69170762480782, 21.185166455366645, 83.11981765443352, 20.648393444824922, 71.78138785175895, 12.445774398383207, 84.2714722534714, 10.813896526469964, 5.43077956977718, 15.665995327148405, 15.879496342802248, 24.01694973365695, 14.2463902539398, 48.95960777921806, 12.328515387297628, 114.89275835093106, 63.76714215875979, 9.157503714193394, 14.537312801204987, 142.4989983366288, 18.517873371239695, 18.176863701167186, 14.400818480070928, 11.45495937988958, 15.816771025872862, 18.859423657674828, 93.09802444073131, 23.179361964735794, 22.161335504093234, 91.9154680337441, 104.81212077584412, 7.941879485004835, 160.6908144547565, 12.86749335837957, 11.087055678563814, 5.593762332175596, 8.829518790143705, 13.409439345788881, 54.87119509481894, 20.389861303240203, 16.249777244638523, 77.98802880149886, 6.616113776349165, 43.140889830392645, 43.36972757392048, 166.86179764402402, 8.38110113487372, 9.734611182084215, 24.274853043448612, 11.607029436903508, 105.40948454945057, 17.406613182787474, 33.275494189399716, 8.296557756083303, 57.869023381965505, 6.85301327038651, 8.9905230940404, 12.447033565057446, 50.99601982381664, 92.18492221061082, 10.377976429575149, 67.09937519960643, 16.863255473679562, 20.634246722759343, 10.900755499627508, 87.51712132694391, 80.96651430266736, 5.459609959571056, 18.84800390246399, 25.27067710633463, 16.479251138024953, 82.83490327281392, 87.57366661037024, 114.25797069128497, 27.406988184800795, 63.32928747850873, 49.78614101923451, 30.213091150302684, 6.762023031562869, 9.366903581293661, 7.509828306298882, 15.322162804143861, 13.576698571494743, 6.811910761777062, 28.33366903870087, 12.121861610052296, 77.9694835328352, 5.354947747677539, 7.7596554343085105, 13.872664143542735, 28.568316219397104, 28.912686892427544, 7.342096238911529, 16.586554897352414, 10.647011824665249, 10.465517556613593, 11.188031768795296, 102.19675829466343, 38.63342401600549, 83.43132116123637, 10.070258607816978, 24.90836642506635, 17.698442157682205, 15.297616239145931, 17.761966638745815, 8.419386991206213, 18.59840148714812, 85.44451665165833, 70.63110336433705, 22.461932997472815, 30.78812334215119, 74.98180254120417, 30.07934391603868, 55.82862460850307, 74.42073101275912, 5.938317883851108, 13.001277394336583, 23.347535007384042, 23.773754934841786, 51.960529791222875, 12.208372885594878, 30.23078659472631, 6.261230482119653, 59.156449917018165, 28.32061015701309, 54.21207091920247, 26.11519169435861, 37.7127581903935, 5.8463840452373095, 10.880994154960302, 5.768205347155379, 20.19265628646846, 53.68085423017528, 32.71647098649293, 18.349744267998346, 16.13783757328721, 9.697706455259892, 27.603078982181994, 108.02660233496358, 5.435297262483646, 42.07389822102369, 15.945184083357187, 54.537526725535315, 25.49947035550101, 27.880806543896295, 53.68032452968317, 49.560091686481506, 24.708553051647016, 5.463912177787889, 188.85971994667256, 24.592777181806255, 27.64824909185852, 21.135122532484047, 8.072646743869578, 132.68321678481678, 13.467530864568081, 37.674208040387825, 14.749660710713949, 25.272078208282526, 54.5733572838097, 11.52775711959789, 84.34282270865866, 24.539768850598445, 99.72985284053212, 28.707399677305823, 15.07261210688946, 22.475543990053175, 21.457652556898864, 65.92455132409202, 6.709176985807916, 33.05704039711346, 79.55263986316578, 15.92252415748934, 7.710075822023274, 5.180625693587949, 20.84616894470415, 23.24482463000328, 40.36680066056074, 35.32368578574206, 5.565915597222044, 92.17030853765033, 16.484156278545736, 11.96591860191722, 20.31642130924797, 5.457255534914988, 41.91102560025418, 14.867904485688742, 32.22325968454426, 94.2895169941553, 11.490934158659043, 13.296546774283852, 7.6308382249295015, 75.62631190026946, 88.96605858966655, 17.480269876104533, 10.30930305708049, 48.18826338032899, 73.59214286306603, 15.821013351449057, 68.87541559259098, 70.45379679128605, 35.23908340626074, 49.99780916354059, 6.583448270662101, 18.094776411051857, 39.18143230742746, 82.62312963980962, 30.2499623452549, 22.270711822202774, 32.76260535984295, 22.26361301905025, 34.96103032492267, 42.562136660958885, 55.67783689120058, 95.71679806419047, 85.55713843300585, 13.479977782800107, 9.305298413563076, 59.20238278885, 7.636010240995738, 27.743472412186303, 22.20859844822018, 14.16641759427414, 11.14286325728985, 84.57136206731836, 67.18701883578932, 28.230488689128972, 69.11458692404926, 33.48522337619487, 88.71350734376733, 45.65138852169924, 10.520302996343982, 25.245081449627996, 10.640010423547958, 90.60452676123465, 20.941957346514965, 34.22632678980731, 16.230727618598685, 22.390168673931807, 69.07987091514528, 7.802955885519202, 23.628599823899307, 14.61214316618518, 43.45057678311552, 39.12617410353576, 136.39842430417647, 22.16391698897187, 44.1964600648446, 8.596387073136482, 7.315217633354989, 44.068242052944456, 8.377538080925396, 34.18917143005179, 38.054621363596375, 12.72574297223577, 25.830200253164115, 80.64020227266215, 20.697022591681886, 12.081648361721312, 13.736353243230818, 5.617791216255131, 5.127456292823341, 31.021373052419232, 84.42286834522558, 35.405429560743016, 7.367515060730343, 15.895812281157683, 22.982980911379777, 95.24621277331238, 40.31838120128891, 10.911592683556936, 20.477423886191346, 71.70125834171576, 13.985433775686845, 17.065965147377277, 30.582549269841998, 10.981297477152046, 6.637069700063541, 16.98520907610803, 5.670022675456809, 53.36311055716652, 45.32003244245175, 74.54788205494972, 14.371782850123141, 16.702048212053235, 32.13974677412708, 6.171517609000342, 69.95079997445859, 28.11181418027458, 42.195328459205534, 40.05038224107324, 9.619417151199876, 53.372658650209786, 21.827604718418343, 111.54224599913339, 50.04289125239335, 86.66587418764458, 13.208207288350925, 5.713907324993894, 18.186860872689042, 25.9085543496902, 68.78398582679556, 5.64927892468977, 51.927690225818196, 5.121248927485224, 38.6607386033647, 5.943891002580616, 7.439448948225462, 30.97713205461712, 78.75424252530571, 55.80989890678419, 95.38230258995523, 47.69756438483416, 6.41712129772778, 45.07287149957398, 8.279498828767746, 12.170955869103418, 48.48138428674282, 25.48630441386384, 16.7038358949076, 12.538403460082359, 29.761265084208425, 32.28553890429698, 6.495793205366642, 37.95146832074044, 72.0972799152965, 6.779706612377343, 81.61802228018422, 25.47651601615032, 14.921097810774361, 76.68650022366434, 37.49130508156607, 48.703400486066975, 17.132286243515548, 29.04850027865026, 28.617810049592105, 36.68316872754674, 44.75510138618054, 76.98535574413432, 35.221348729273146, 16.80178068579342, 24.466986453046225, 7.0252481423223765, 35.23287273169973, 8.279485935240265, 14.346336250003478, 17.19277565191251, 15.626248600897426, 8.900160122030641, 48.17226894379889, 33.272407852060894, 81.68303294882394, 13.7928132520361, 63.738366741247496, 7.383221803047284, 15.976631280093658, 5.724330439616691, 7.989200360140691, 16.018610038783475, 178.56528565224556, 31.453429236984192, 114.38784410881746, 8.337965885447543, 5.627224893375614, 28.050127452613154, 65.47483339788528, 12.062772069110435, 6.955266400524846, 90.31274032741054, 73.19497124959251, 12.435097147972195, 8.06736802027715, 48.026567935956365, 19.0684388678961, 33.69601695520915, 9.148699493036549, 55.85532970306917, 101.40876142569834, 52.16364076253291, 5.9295106185645805, 41.56715251912553, 55.24291013796201, 10.017684358011678, 60.67615126027319, 21.291752514393046, 27.194174876629422, 8.0205700613048, 60.92745080221266, 7.271018598257791, 71.16582859578186, 47.12858579026708, 7.7109806893724535, 9.318653497813845, 32.54091289489387, 21.068772849878947, 5.7242332851982844, 12.358022673819734, 5.145020053000925, 26.771101812622632, 52.1786856951094, 112.5202902637478, 12.791493545291921, 19.76457121320363, 138.9677931160932, 5.893917674986602, 28.312048457095422, 25.42652154872848, 33.63255248087313, 21.80976532234653, 30.612128560674652, 37.716564414529515, 13.382540744987537, 64.6024535357949, 63.211609960123596, 29.139288475654915, 30.771385657687837, 8.537700076191802, 50.50956216983738, 9.161222447532102, 49.61223268257596, 75.9186379480399, 72.33490583138827, 12.532736254317038, 27.425110982700094, 51.66652027454407, 11.582161901350371, 83.26374393419924, 56.58379279982353, 66.59626425891197, 18.530008780489823, 70.79231994978286, 31.175374492352013, 13.650032601910665, 13.932586014976872, 7.188523095427645, 94.54664565306143, 18.237667346903052, 31.880447099056923, 69.01759744245328, 84.61640383668129, 57.68593769744292, 11.34541029492381, 24.959190376213225, 43.99760568996928, 10.174658020960283, 75.0001464711216, 15.71104444358268, 77.09954140167741, 75.69214526740237, 8.182042796882664, 7.836460108172062, 104.59673752393925, 9.007747476341228, 65.5396235298781, 19.884638218240234, 23.068677902554676, 14.485827530203139, 20.590872989607252, 21.46192445995243, 8.971012890211853, 45.80117344559722, 62.731666664120716, 25.47313740938397, 23.120575335375378, 30.174018116627394, 14.742742429295385, 14.059579850785276, 9.659278865914173, 8.291963526513136, 11.999009805146077, 12.36077047267216, 7.672113186846972, 93.82024994455244, 11.943611048575843, 6.122468578764251, 55.319736843824664, 32.305124162074165, 12.646422570327244, 14.841275427797289, 26.798844985630595, 151.85047338773353, 104.27512438145611, 63.418865142976045, 6.7327375614708815, 18.099256242091027, 7.503784619909786, 27.351463606015848, 21.600996498320463, 15.008018972843919, 34.66773238336035, 33.22496905919277, 50.053206471549814, 7.012469327848771, 16.633465665342747, 83.82703557890036, 74.23528910839417, 16.863259781631406, 39.9265528344536, 27.385907210020648, 65.92972110159948, 31.957231692137512, 7.107910997514634, 8.545806433895342, 72.18316572072537, 11.97675999307859, 8.217721364627605, 29.375839776136374, 7.371608175268653, 68.40791465221135, 51.55221179056056, 5.201225033781848, 46.68519253698719, 24.445162223741185, 9.957475960476463, 122.96741137980437, 8.708353958710527, 24.320800312760973, 14.174332275362794, 7.922356591772015, 65.41135581844564, 6.103912423743381, 84.39834923631929, 95.07525055066925, 14.768576070990855, 5.9382426733840035, 27.953770800953414, 12.467688358638632, 109.35903194904405, 11.441838695861744, 98.98493040334904, 16.799186821273178, 30.276436260036057, 78.59167237842175, 22.60453397543737, 17.887194841071633, 107.74184438936115, 22.175107345342614, 75.20793129417719, 27.41680649487267, 9.763113417567316, 19.426249467062924, 6.199741172208025, 24.57414782325843, 9.426146240537483, 18.73531539731035, 36.07222044860016, 87.38035052364174, 21.25576830904301, 67.96869270313388, 18.294933923663642, 24.003984102582457, 5.646596045628554, 69.32365843391551, 65.93481701556675, 14.954093781508575, 23.50013399146466, 31.906550486286875, 70.05047230336727, 21.149152778006872, 18.080395586112186, 109.54484847000155, 15.993663223376469, 9.367356248681954, 24.735599269076506, 44.38738817486788, 15.188828834653833, 16.13279831959016, 20.006488252389435, 11.679231109199568, 63.430836703548366, 25.419568581456545, 13.50633323577481, 102.41561564068392, 104.79272824938657, 13.456455693164045, 56.03259441922126, 62.70223375834368, 78.29188104825886, 15.331608527368209, 9.28867917005279, 5.714375120895026, 98.96366667163193, 21.799270264758935, 77.74886446326016, 31.164796209317757, 76.15057206201689, 75.34563263294328, 63.90870287144823, 42.29063365285833, 11.20073014404696, 49.42609687083113, 27.14282858074083, 50.61173784831539, 7.571473571416043, 21.972254870819803, 62.944005156189334, 33.61592601046678, 12.534552754281155, 119.55044286822148, 56.143715824295896, 9.030876286580806, 48.03874859336962, 40.770278518128045, 5.234513974369192, 13.06794846520025, 62.43132282017345, 65.06373974445933, 9.207429423189287, 82.87050340103656, 47.102276363308036, 16.98014175632242, 30.524314694058436, 70.39327489376686, 96.48742403489463, 153.4093557092407, 5.825068000011359, 6.800298541813051, 14.651588645521958, 81.77205772490393, 30.930771020750257, 58.42947157986234, 11.026119022638667, 84.30757356615257, 22.112432887518892, 8.401820041342571, 15.088524637188517, 26.841232867741315, 7.475688443361598, 31.89739924329373, 5.896803522697935, 7.479205742371479, 52.73924201601177, 18.29255281350612, 31.816625702591978, 16.572173628507773, 46.777362767470784, 49.62672222753358, 11.996062456834792, 20.572425680687147, 73.96198470354636, 18.94485903540332, 150.7036856611856, 25.895937507375095, 35.028008124835424, 27.928878843910297, 93.4205645584088, 47.23233564493151, 11.140927965510077, 52.76701423332337, 60.045479335217685, 8.693957022091942, 5.855465618518736, 40.71228729848595, 23.55137525466732, 20.58385110057066, 37.004493073791565, 19.682742069934076, 57.02858236274148, 5.296393319780392, 98.24948587983842, 6.252438114428019, 82.22881719899839, 60.85473664684377, 56.79206615838787, 122.11919810125944, 11.592758111471387, 11.376912833566644, 7.509264369864349, 199.81578065395124, 73.6039393833955, 55.51750260177778, 107.12441298130678, 38.79694678367311, 58.494294284682304, 49.36245620121056, 19.350456813387222, 113.66090163400635, 67.83809753125053, 66.81167625110716, 9.271642178101404, 18.1049328292024, 10.034628692974861, 6.6963196975641175, 26.20836171790596, 63.41014749490165, 101.07088811091654, 39.40845859525348, 47.68823570135939, 21.138415850840538, 68.99885283738911, 115.71903062367733, 44.57041116477235, 6.916583154050642, 6.177491050080168, 30.67749668600456, 26.33433772731836, 12.275876185127284, 59.500147421310494, 16.92763036349319, 18.310819036687917, 5.100205111378819, 8.803947390151459, 32.98100698493772, 25.414729282152933, 5.60876556275606, 5.195503599053856, 6.793095976928372, 59.83938452306351, 7.574655036012019, 13.451212920717722, 101.36007838189272, 7.309717592231531, 58.16179215105899, 10.659069421709109, 5.887019755982522, 69.40530113243041, 199.74974170677365, 86.34360637149999, 196.7579547825256, 132.73575048359297, 75.60816508043538, 32.14854530752748, 160.15108613942422, 130.53856421397708, 133.17884726669894, 89.86901185186076, 153.79668931385854, 60.81087442182866, 65.30547975170697, 15.318580112025662, 127.9865048590517, 51.98398171290211, 86.02242651358883, 33.5203870600663, 37.618959816577544, 25.759815756892777, 182.02491729924012, 75.24622338104805, 5.131455838785984, 5.211278566750483, 96.34013369549855, 5.0375957926328585, 24.025521611563917, 5.582362806304963, 20.33684789393206, 5.033280726724745, 5.250901218239198, 15.193795997634352, 5.033883453899097, 5.166945048082994, 5.14712995807849, 5.235389633184788, 158.85551980760204, 43.39197295870692, 5.274096553986734, 5.21136764883484, 5.049658009230326, 15.367804582831537, 5.386662185953356, 15.368488751378948, 20.343554012590822, 23.134878605825428, 17.123544871490296, 155.95635915756213, 67.43021644888556, 14.7937045158609, 9.199223156922361, 113.84028595321354, 14.029407918388074, 5.072015467992519, 86.12717617795157, 13.387485569937184, 10.960554005847678, 99.84318546323158, 11.406977855874096, 7.986219974225214, 32.12789019476227, 34.419079689629584, 85.16898175422142, 74.03022394278972, 19.37510977251639, 14.921425796855893, 76.38274182738209, 29.063886619728756, 70.78324982880866, 11.682332888113018, 56.24737023178178, 18.199226718918645, 46.309155195662015, 44.04192238997577, 141.35179795883136, 63.23708733987674, 27.26706886240646, 35.314296983313376, 14.037645788947065, 33.225064692829314, 7.030607286276347, 109.75574038792189, 6.324956402078758, 33.84130103729794, 25.07687732060485, 16.02410542708319, 13.27036077030038, 8.718920392872587, 8.365152089585907, 23.864620452389968, 25.950616187955063, 61.14678848202416, 31.918569844795076, 5.777423798996033, 35.1892990699438, 69.62613732841396, 113.63350018582014, 28.102376383029974, 6.380367040517928, 31.333653783123744, 81.11095494350393, 14.977939503161858, 64.61666571122812, 8.413742532116785, 16.68225163898633, 41.624005675279165, 5.820524616668381, 58.870410234157276, 157.74759008013712, 100.68857967636504, 19.297564606830058, 22.176261048112885, 16.965116137330707, 63.356814915019996, 51.64091532294158, 17.605332964465262, 9.388254534008658, 10.47520280445852, 71.30989909055678, 25.641350458888848, 95.44672113660064, 24.808386099191175, 82.84855696238375, 11.840178443282062, 61.59952572557213, 23.696476590180964, 81.57631609257635, 73.77057026355408, 67.2767062340862, 56.158071522149, 37.95870616196541, 36.34713763369623, 35.4413522882459, 13.04067259668111, 13.498892736358348, 114.94137145647126, 10.914851913036927, 80.35032735753748, 19.827200742035604, 13.699687380485777, 15.61611890272891, 12.615216532996044, 81.02637638910325, 5.8249326017678795, 58.53433832302919, 154.57230220243162, 43.64737452234082, 97.17368240787863, 75.27665720667017, 21.16424872745837, 33.32666578243452, 5.537370427496448, 70.0340829150938, 76.48131487243744, 43.88943905973814, 81.44105771240977, 122.75625610746766, 116.73731306296014, 31.88133440707632, 63.61430200021005, 105.08321205799673, 62.09150168869528, 74.08302495704086, 75.37606191566971, 17.81624701436516, 28.972624953557535, 86.44457415151183, 44.528332335761014, 5.9515737308549435, 17.07807175219887, 20.63287112828005, 13.70722988883865, 10.537743617533641, 10.226758888894883, 88.19639588459737, 87.25513631485343, 9.044589354760323, 36.76034252858996, 33.819638341217804, 39.96461002951313, 8.581544682141464, 14.505753646552321, 32.807077166126824, 29.093513191878856, 6.939696387371881, 15.97528578517737, 31.424543534333424, 130.99919170921982, 23.60318127252106, 91.7747096895598, 27.22254361350503, 46.356182048409664, 15.289593787961293, 20.09914980017348, 53.09848674124656, 7.940096847648648, 55.82887220017584, ...])
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);
([7894346.824602374, 8069038.362210037, 8117429.67616826, 9089827.860018287, 12310883.533000816, 12520520.395422503, 12548245.141125795, 12584936.479366593, 12615716.49190018, 12625837.5, 12655162.155072011, 12655518.75, 12670219.121199166, 12671775.0, 12675495.927407907, 12676538.327385344, 12683857.8125, 12689370.3125, 12726180.14105947, 12738178.411536671, 12784414.04983571, 12804060.000447063, 12812015.467351627, 12813973.4375, 12822289.0625, 12884678.561624303, 12907160.397189751, 12907160.76654729, 12928565.044645796, 13061769.49165165, 13130845.3125, 13213708.197676962, 13314196.470689896, 13361628.333570423, 13449988.22483727, 13506653.125, 13507424.65630474, 13527065.625, 13534326.5625, 13537409.248895561, 13548693.204028854, 13552772.18504584, 13554378.675743718, 13558142.1875, 13563437.048514761, 13563439.004504124, 13566921.875, 13568667.799465282, 13571779.543803148, 13574968.461732572, 13581393.75, 13583101.232657457, 13589605.156826485, 13590485.9375, 13591313.941688897, 13592619.060832439, 13592983.82874026, 13596449.213139007, 13597644.876015427, 13602724.503207363, 13602830.507804336, 13603092.1875, 13603267.1875, 13606679.5214695, 13611077.01814209, 13611174.682561986, 13613250.0, 13614013.661348067, 13614135.9375, 13617245.872118356, 13619833.156031176, 13620384.375, 13620665.568984179, 13620798.47127303, 13623340.61525143, 13632253.24402132, 13632549.958758742, 13632558.670592261, 13632795.482243324, 13647258.86449294, 13649462.89896276, 13651052.841002973, 13661677.941682916, 13662249.892902255, 13662475.0, 13663742.1875, 13664907.377735807, 13665172.806478277, 13665364.66827573, 13666193.75, 13667234.47192846, 13667667.1875, 13669036.643698916, 13670092.1875, 13671431.039507601, 13672153.945106974, 13672568.814326765, 13673873.663594581, 13673884.095558567, 13674059.17983515, 13674947.84049587, 13675019.24834012, 13675126.5625, 13675300.0, 13675832.59941893, 13675899.889752377, 13677384.375, 13680456.951675294, 13681462.314163849, 13683045.617238784, 13684729.887241142, 13686426.774627825, 13688966.375608927, 13688993.75, 13689146.52891236, 13690083.13472091, 13690115.353093155, 13690498.4375, 13690524.285854423, 13692678.125, 13695022.163852965, 13696543.723836062, 13698651.189975342, 13699263.402644627, 13700769.842669375, 13701253.125, 13701799.381805165, 13705587.16266735, 13706085.9375, 13706110.151482703, 13706728.125, 13706739.646995643, 13709651.52700253, 13710947.049568651, 13713720.753737664, 13713902.864952227, 13714153.411439244, 13714326.5625, 13715375.524769168, 13716346.60134625, 13717110.956325574, 13717277.606672717, 13717576.99488997, 13718127.692329984, 13719013.206763815, 13719185.687194807, 13721825.516409015, 13722891.648323221, 13723208.414543707, 13723348.86434449, 13724254.096866975, 13724359.224783704, 13724365.625, 13724843.75, 13724920.262158351, 13725214.811510047, 13725232.86093049, 13725314.611505195, 13725427.10792522, 13725646.875, 13726259.013988314, 13728391.675190758, 13728504.6875, 13729558.325348403, 13729600.0, 13730779.680064479, 13731190.666688383, 13731852.859134952, 13731941.955966735, 13733268.339037716, 13733622.11271394, 13733776.55276194, 13734128.679812606, 13734432.762192978, 13734973.812780218, 13735858.225211333, 13736651.250645436, 13737670.495569382, 13738104.6875, 13738497.65275235, 13738752.79332535, 13739832.994575443, 13740962.030581132, 13741070.35075424, 13741807.277280139, 13741821.628362976, 13742714.39611009, 13743157.011212455, 13743228.842536466, 13743931.481085675, 13745701.652893499, 13747277.147024458, 13748498.68047589, 13748528.838423645, 13749465.821310125, 13749777.747745767, 13752067.307515029, 13752471.486093808, 13753114.0625, 13753117.474129016, 13756079.500369158, 13756253.125, 13759565.61250224, 13760004.064473258, 13760044.98026494, 13761329.154716091, 13762818.456476666, 13762822.471464518, 13762994.07677476, 13763039.015117884, 13763168.75, 13764370.30209244, 13764459.773614405, 13764656.115008099, 13764993.75, 13765366.053541621, 13765540.461210841, 13765750.924070433, 13766330.60894497, 13767648.4375, 13769857.8125, 13770542.703378683, 13770669.032053255, 13771092.591111436, 13772149.664638013, 13772271.600566626, 13772496.243449954, 13772614.0625, 13772928.365559172, 13773527.842043944, 13773706.009565627, 13773768.716610996, 13773929.454924343, 13774721.875, 13774727.100420032, 13775412.54989516, 13775980.632795492, 13776979.450679693, 13777145.91488185, 13777319.775849715, 13777693.322290769, 13777805.318770194, 13778007.363359632, 13778376.5625, 13778907.456387352, 13779100.482679708, 13779935.9375, 13781611.179202054, 13782598.421379628, 13782818.437885586, 13782906.122769717, 13782920.860985264, 13783053.158976303, 13783056.195140468, 13783254.183939181, 13783443.608235478, 13783966.909134263, 13784159.692147275, 13784620.3125, 13785008.048087936, 13785154.973537248, 13785295.956061652, 13785641.620107, 13785684.885487437, 13785707.8125, 13785828.390035305, 13787395.9709815, 13787403.125, 13787414.415834608, 13787471.314733114, 13787587.116881508, 13787928.019477151, 13788196.875, 13788221.530122753, 13788345.3125, 13788392.1875, 13788442.408083875, 13789527.614193529, 13789593.825672103, 13789725.0, 13789891.652965313, 13790636.474920534, 13791207.217169032, 13793246.035832433, 13797060.234688338, 13797389.275577255, 13799606.067096844, 13801695.3125, 13804895.275489502, 13805796.42469416, 13806836.52582526, 13807077.200189652, 13807935.9375, 13809016.29783643, 13810020.3125, 13810657.387071978, 13814060.362486085, 13816577.698920472, 13817381.25, 13818967.1875, 13819571.875, 13819578.125, 13819623.4375, 13820355.737262225, 13820401.531464927, 13820597.845563922, 13820625.089711323, 13823276.521757815, 13823280.818853851, 13823559.155611215, 13825010.947175037, 13827042.1875, 13828017.653537901, 13828381.234952161, 13828491.221685033, 13828912.326102545, 13829267.1875, 13829281.25, 13829387.073232614, 13829388.871125452, 13829623.101347322, 13829662.411142714, 13830316.630416792, 13830318.190180402, 13830319.051579796, 13831416.77295852, 13832368.15553212, 13832964.58287825, 13834108.06184139, 13838771.785817128, 13839472.249948533, 13839484.375, 13839791.33661196, 13839908.939715857, 13840096.3537206, 13840420.855748309, 13840544.439170582, 13840614.0625, 13840826.730636438, 13840966.502972692, 13841268.675324416, 13841305.51512844, 13841526.409543546, 13841677.724431625, 13841954.103813922, 13842202.097634666, 13842376.20577532, 13842576.630033568, 13843106.106932158, 13843189.0625, 13843210.9375, 13843220.090975022, 13843496.172577886, 13843653.354702733, 13843946.595426353, 13844204.6875, 13844207.8125, 13844549.823664228, 13845184.203810861, 13845453.125, 13845520.036808122, 13845838.285921672, 13845986.83924391, 13846131.154268043, 13846166.519378152, 13846177.012055371, 13847082.21938826, 13847906.609811816, 13847928.125, 13848203.070556514, 13848373.279539643, 13849153.521136127, 13849390.501010174, 13849464.828204326, 13850045.3125, 13850339.041288048, 13850353.0851706, 13850501.5625, 13850825.322051115, 13850870.3125, 13850873.812825354, 13850894.654301833, 13850990.146241685, 13850991.60684749, 13851268.206402268, 13851398.549252283, 13851579.850309333, 13851608.737868134, 13851678.049710196, 13851731.869806372, 13851917.1875, 13851919.874430662, 13851974.908620732, 13852120.36386256, 13852205.773245497, 13852273.4375, 13852545.3125, 13852557.495102173, 13852629.6875, 13852637.5, 13852724.538636021, 13852735.9375, 13852879.674090432, 13852964.641062526, 13853039.667213382, 13853058.475691214, 13853098.833981052, 13853120.11248475, 13853330.919726597, 13853330.940158268, 13853340.68028819, 13853429.6875, 13853463.750896597, 13853531.330607353, 13853549.352107288, 13853598.925002808, 13853629.682134448, 13853690.625, 13853807.725518191, 13853823.4375, 13853842.501093986, 13853915.625, 13854178.125, 13854294.814122008, 13854349.174423492, 13854368.75, 13854380.662538825, 13854394.13754203, 13854418.511324873, 13854419.933431692, 13854457.8125, 13854467.174065962, 13854493.584564919, 13854547.001171656, 13854635.873380346, 13854741.629296819, 13854888.084258774, 13854904.61542892, 13854918.75, 13854930.912017468, 13854985.9375, 13855005.59776166, 13855254.934926132, 13855290.897615127, 13855346.26687531, 13855583.0690352, 13855584.375, 13855585.725563567, 13855803.09124992, 13855839.158428561, 13855908.048320673, 13856042.163059589, 13856098.4375, 13856273.963327104, 13856280.577686435, 13856315.41558517, 13856668.525940135, 13856935.076401724, 13857255.811117003, 13857684.385051081, 13857816.404435247, 13857911.148794137, 13858651.338221442, 13858664.0625, 13858702.376357475, 13859062.5, 13859487.385672078, 13859585.9375, 13859698.4375, 13859772.58859031, 13859949.524128715, 13860298.1456846, 13860313.9914637, 13861846.33565694, 13862307.8125, 13862644.289979197, 13862993.75, 13863070.668387083, 13863084.663382497, 13864803.10988297, 13873554.6875, 13875985.39388447, 13876654.958626872, 13878788.855186816, 13879853.792102415, 13881056.154619653, 13881220.277815241, 13885650.0, 13887277.41748009, 13887655.557309719, 13891613.763862947, 13892319.774912907, 13892826.924960785, 13893527.311206177, 13894066.886672933, 13894346.256847627, 13895001.5625, 13895619.496331543, 13896487.020498984, 13897798.172810322, 13897957.478160698, 13899134.375, 13899164.0625, 13899316.07149224, 13899562.5, 13899693.541636258, 13899969.471534694, 13900118.24868153, 13900160.9375, 13900411.682304664, 13900443.305117585, 13902117.866773076, 13903164.335010668, 13903222.828694623, 13903820.3125, 13904569.072819881, 13905259.893968653, 13905317.1875, 13905497.455493214, 13905952.739181522, 13906076.902505755, 13906409.624150837, 13906682.8125, 13906708.472234862, 13906828.018231135, 13908840.625, 13908964.657839697, 13910919.081367452, 13911129.82245384, 13911178.53820386, 13911302.926081402, 13911466.478235628, 13911475.0, 13911841.833175287, 13912903.125, 13914085.9375, 13914318.546950376, 13914550.601858672, 13915204.217424018, 13915543.340707174, 13915829.6875, 13915850.22537569, 13916276.207159482, 13916288.319861168, 13916538.467035774, 13916721.371869087, 13916729.228140563, 13916748.758806594, 13917845.3125, 13917979.511352245, 13918083.412465142, 13918386.514519643, 13918784.32185508, 13918832.56012802, 13918862.863878096, 13919004.697671514, 13919369.244048007, 13919453.792653661, 13920026.748998646, 13920028.125, 13920053.591004781, 13920431.574142814, 13920523.4375, 13921161.882405724, 13921464.85655583, 13921984.348451516, 13922213.483068753, 13922563.536173781, 13922779.6875, 13922988.852629274, 13923077.968900379, 13923078.76338775, 13924216.903893083, 13924234.461732915, 13924253.976676038, 13924826.57984081, 13924941.755154373, 13925170.3125, 13925260.381988075, 13925557.381029088, 13925684.524474403, 13925815.952304563, 13925921.875, 13925922.02282388, 13927123.468754191, 13927218.689701898, 13928342.1875, 13928560.234499784, 13929999.948237395, 13930178.58501762, 13930212.5, 13930583.295333868, 13930584.24248247, 13930667.972252991, 13930778.998205617, 13930850.0, 13931139.0625, 13931149.91355079, 13931432.8125, 13931565.8636873, 13932067.845458854, 13932596.875, 13932616.345640348, 13932825.024877261, 13933332.595526153, 13933547.67879868, 13934540.625, 13934657.96320251, 13935294.348776966, 13935314.939694006, 13935329.641376797, 13935592.174137391, 13935755.833459914, 13935858.528505199, 13936721.103811562, 13937307.528613811, 13937791.388260005, 13938869.164735181, 13939021.875, 13939167.86941533, 13939252.72963743, 13939501.950279832, 13939904.6875, 13939986.26298919, 13940837.57128004, 13940856.191415757, 13940928.594946884, 13940950.826929022, 13941257.25924897, 13941257.574338764, 13941287.609962475, 13941397.822756745, 13941629.6875, 13941687.5, 13941721.350874871, 13941737.5, 13941985.680090412, 13942035.657070158, 13942045.886285026, 13942068.75, 13942218.75, 13942360.471495222, 13942366.867624272, 13942370.3125, 13942445.3125, 13942482.277315538, 13942516.787299799, 13942665.126836196, 13942720.563629841, 13942793.792216156, 13942799.230040614, 13942803.125, 13942803.188408416, 13942833.173349164, 13942835.856102696, 13942853.45134557, 13942890.625, 13942900.298794322, 13942962.06453371, 13942976.5625, 13942985.325879548, 13943046.421935363, 13943059.375, 13943065.625, 13943085.9375, 13943165.723715907, 13943240.574036414, 13943367.306524064, 13943463.716780473, 13943493.353809897, 13943559.328279495, 13943611.55401973, 13943766.23672799, 13943810.793218218, 13943812.438324548, 13943888.355719795, 13943890.671221077, 13944028.125, 13944073.363557339, 13944082.8125, 13944092.098814612, 13944237.384383528, 13944362.5, 13944521.875, 13944553.870602345, 13944645.3125, 13944727.936340326, 13944944.93432811, 13944950.0, 13944997.977166055, 13945027.740650183, 13945030.652975703, 13945042.1875, 13945057.8125, 13945515.474650456, 13945520.3125, 13945529.6875, 13945594.19862043, 13945595.3125, 13945732.8125, 13945761.024432529, 13945882.899221359, 13946436.086235475, 13946612.681537658, 13946716.62591882, 13946806.25, 13946918.260099694, 13946928.125, 13947046.809020339, 13947049.685518183, 13947144.872422067, 13947176.774248112, 13947218.788043777, 13947412.893002445, 13947607.445516882, 13948806.25, 13948861.997449733, 13950521.518536195, 13953493.75, 13953536.560025627, 13958021.727819607, 13958373.80830778, 13961407.424960418, 13961479.6875, 13961547.367566256, 13961621.732225664, 13962052.106492, 13962097.723364828, 13962332.8125, 13963074.946017345, 13963503.768599559, 13963510.90666467, 13963562.777522227, 13963597.962453831, 13963640.633442054, 13963672.155594494, 13963682.795063805, 13963716.32334163, 13963727.107865911, 13963744.722132549, 13963764.333837809, 13963847.841251211, 13963893.75, 13963905.547111603, 13963931.25, 13963939.233327296, 13964048.4375, 13964131.13227299, 13964132.80949768, 13964264.0625, 13964285.9375, 13964338.596863834, 13964433.090957392, 13964476.71629096, 13964515.357482318, 13964669.775599275, 13964729.6875, 13964770.3125, 13964775.00529348, 13964778.125, 13964785.9375, 13964845.3125, 13964883.958976539, 13964965.625, 13964971.236719986, 13964982.8125, 13965035.865967648, 13965314.70177169, 13965496.041534584, 13965854.341382546, 13965879.47782243, 13965967.1875, 13966145.3125, 13966296.875, 13967039.0625, 13967090.088694008, 13967126.5625, 13967411.676033113, 13967523.399640977, 13967591.346264997, 13967672.69287283, 13967764.089840107, 13968103.00350548, 13968194.37833435, 13968248.698210146, 13968248.876387563, 13968397.545846226, 13968643.838654658, 13968674.302555175, 13968843.75, 13968854.507483851, 13969051.46668933, 13969291.873832433, 13969381.396427054, 13969512.358106956, 13969912.420275662, 13969944.857574362, 13970200.0, 13970213.17084713, 13970229.123950234, 13970646.552957742, 13971135.315637466, 13971141.175962755, 13971141.780190876, 13971142.109949984, 13971143.0363537, 13971143.181872351, 13971143.832823448, 13971144.82192821, 13971146.749553414, 13971148.259789223, 13971148.32401319, 13971149.908535814, 13971151.165514482, 13971154.150848052, 13971154.223293982, 13971156.930642562, 13971158.714584442, 13971160.026762078, 13971160.055293683, 13971160.609608024, 13971161.29105933, 13971161.478901964, 13971163.816664774, 13971167.263837619, 13971168.794568164, 13971169.055613125, 13971169.070819514, 13971170.076895919, 13971171.165004397, 13971172.850271506, 13971175.156811565, 13971177.62884222, 13971178.329362907, 13971178.952655623, 13971179.227929987, 13971179.755361294, 13971180.449565137, 13971184.02265106, 13971190.602240758, 13971191.341460701, 13971196.314982016, 13971197.184046831, 13971203.601017343, 13971207.250221888, 13971207.500049492, 13971220.420187367, 13971299.376487782, 13971371.97566547, 13971424.990685573, 13972014.152327139, 13972030.985944897, 13972214.023173554, 13972346.714427765, 13972821.875, 13972840.363181608, 13972907.983301258, 13973052.891015701, 13973074.522281025, 13973390.515362354, 13973448.4375, 13973597.046611968, 13974111.885278974, 13975417.911671698, 13975868.75, 13976006.25, 13976575.0, 13976908.623178808, 13976968.744720828, 13977584.081228431, 13977683.564838067, 13978279.262661083, 13978594.07804237, 13978629.563763207, 13978758.466348927, 13979026.5625, 13979162.5, 13979668.75, 13979721.85056983, 13981140.16605431, 13981557.613506008, 13983737.240766602, 13986545.271982944, 13989584.017760202, 13994050.375858618, 13997320.756375445, 14001138.576312862, 14016606.067257086, 14026059.632722814, 14026076.042041013, 14027539.799412964, 14028856.395688077, 14029013.771363169, 14029507.729652802, 14029851.5625, 14032351.271029202, 14034726.055903142, 14034739.556480661, 14034775.0, 14036857.29755554, 14037282.025047863, 14039689.908633871, 14040092.234752437, 14040306.25, 14040790.634525139, 14040821.56603332, 14042628.357971394, 14042844.142309792, 14043364.537745556, 14043668.838057388, 14043675.998646572, 14044205.43236214, 14044214.0625, 14045019.560109703, 14046183.751700213, 14046345.059364894, 14046662.076495267, 14047077.115300598, 14047877.246096041, 14048504.753978806, 14049004.225676673, 14049029.6875, 14049526.39737456, 14050104.6875, 14050289.87084143, 14050534.375, 14051284.787538238, 14051671.875, 14052099.695739876, 14052197.857118761, 14052415.892357958, 14052445.3125, 14053062.5, 14053149.644355604, 14053692.1875, 14053753.125, 14053799.392385963, 14053818.31192063, 14053930.245643655, 14053988.921915838, 14054165.256966593, 14054171.19004226, 14054184.00598287, 14054209.541406328, 14054232.322358029, 14054242.1875, 14054273.584432552, 14054274.926630894, 14054379.6875, 14054381.25, 14054423.313380184, 14054424.415953211, 14054476.982317723, 14054479.6875, 14054495.400575096, 14054518.117911559, 14054523.4375, 14054532.761556348, 14054534.375, 14054548.4375, 14054555.098131375, 14054558.829404265, 14054561.792156478, 14054562.5, 14054567.1875, 14054570.3125, 14054575.0, 14054580.280874725, 14054586.86467591, 14054610.995843986, 14054612.202975642, 14054612.63867363, 14054614.529057221, 14054661.909214148, 14054677.7585194, 14054708.961652324, 14054719.647939935, 14054731.25, 14054731.25, 14054765.265135327, 14054823.1152344, 14054835.856827725, 14054871.875, 14054872.39403069, 14054901.443275534, 14054902.799404742, 14054904.17557972, 14054916.447799178, 14054920.559633084, 14054923.182664678, 14054931.25, 14054934.063359559, 14054935.837920586, 14054946.012042748, 14054947.899914669, 14054948.525921809, 14054950.910405697, 14054959.374210078, 14054972.719306063, 14054974.091155458, ...], [7.585110863403029, 131.62387688018373, 36.29148271344643, 6.234290433024878, 30.155880603999897, 71.49232237745005, 77.65852863236901, 17.506352521106237, 28.145521955743906, 66.97083366887327, 134.4626439639077, 58.65305492107825, 126.33585719286222, 48.20026689139068, 17.95016542831831, 61.516150897876216, 93.43763381115579, 103.66749134498946, 11.249587653598427, 25.243872676118862, 20.878009449726836, 8.647547962424435, 25.756991405272654, 97.00111733300326, 59.455668017147985, 11.886423366487616, 52.29991221022658, 8.198197307513842, 20.72730286601286, 7.331083761521092, 29.299819333539766, 16.645516746102164, 62.57318985291856, 15.800903346650163, 10.030013711791426, 93.46785852864585, 7.483485710909563, 34.16127320201086, 30.842487937663652, 26.25899601046593, 21.04645211354491, 9.608085986768156, 7.27416371461235, 31.790003019761333, 40.41232472534012, 27.427433339555698, 68.93979506161367, 17.931708007044357, 7.084183587724495, 23.90177489236587, 78.60211755282995, 23.37688511059067, 17.093326519449455, 59.47329605292193, 26.34555120574378, 5.7268299620542, 73.53941692753953, 10.086377913171598, 22.15099669578174, 92.30959116570031, 13.637275920997675, 76.19331828017847, 50.382962059015625, 6.730806445600604, 11.923341940171635, 9.076679224238028, 60.91669936801385, 8.085253114944479, 59.54320001506224, 7.819010721698522, 11.710768313529982, 42.68311577543026, 92.25056422146508, 5.292131623971401, 11.112503273259032, 15.68896228336561, 27.73420936617738, 6.947827790736202, 41.50453664940605, 21.388923148526608, 16.716713376801813, 13.95929972937028, 10.852770398219274, 9.242458507030557, 65.87530273721954, 46.32909648106146, 57.8360573552158, 88.69170762480782, 21.185166455366645, 83.11981765443352, 20.648393444824922, 71.78138785175895, 12.445774398383207, 84.2714722534714, 10.813896526469964, 5.43077956977718, 15.665995327148405, 15.879496342802248, 24.01694973365695, 14.2463902539398, 48.95960777921806, 12.328515387297628, 114.89275835093106, 63.76714215875979, 9.157503714193394, 14.537312801204987, 142.4989983366288, 18.517873371239695, 18.176863701167186, 14.400818480070928, 11.45495937988958, 15.816771025872862, 18.859423657674828, 93.09802444073131, 23.179361964735794, 22.161335504093234, 91.9154680337441, 104.81212077584412, 7.941879485004835, 160.6908144547565, 12.86749335837957, 11.087055678563814, 5.593762332175596, 8.829518790143705, 13.409439345788881, 54.87119509481894, 20.389861303240203, 16.249777244638523, 77.98802880149886, 6.616113776349165, 43.140889830392645, 43.36972757392048, 166.86179764402402, 8.38110113487372, 9.734611182084215, 24.274853043448612, 11.607029436903508, 105.40948454945057, 17.406613182787474, 33.275494189399716, 8.296557756083303, 57.869023381965505, 6.85301327038651, 8.9905230940404, 12.447033565057446, 50.99601982381664, 92.18492221061082, 10.377976429575149, 67.09937519960643, 16.863255473679562, 20.634246722759343, 10.900755499627508, 87.51712132694391, 80.96651430266736, 5.459609959571056, 18.84800390246399, 25.27067710633463, 16.479251138024953, 82.83490327281392, 87.57366661037024, 114.25797069128497, 27.406988184800795, 63.32928747850873, 49.78614101923451, 30.213091150302684, 6.762023031562869, 9.366903581293661, 7.509828306298882, 15.322162804143861, 13.576698571494743, 6.811910761777062, 28.33366903870087, 12.121861610052296, 77.9694835328352, 5.354947747677539, 7.7596554343085105, 13.872664143542735, 28.568316219397104, 28.912686892427544, 7.342096238911529, 16.586554897352414, 10.647011824665249, 10.465517556613593, 11.188031768795296, 102.19675829466343, 38.63342401600549, 83.43132116123637, 10.070258607816978, 24.90836642506635, 17.698442157682205, 15.297616239145931, 17.761966638745815, 8.419386991206213, 18.59840148714812, 85.44451665165833, 70.63110336433705, 22.461932997472815, 30.78812334215119, 74.98180254120417, 30.07934391603868, 55.82862460850307, 74.42073101275912, 5.938317883851108, 13.001277394336583, 23.347535007384042, 23.773754934841786, 51.960529791222875, 12.208372885594878, 30.23078659472631, 6.261230482119653, 59.156449917018165, 28.32061015701309, 54.21207091920247, 26.11519169435861, 37.7127581903935, 5.8463840452373095, 10.880994154960302, 5.768205347155379, 20.19265628646846, 53.68085423017528, 32.71647098649293, 18.349744267998346, 16.13783757328721, 9.697706455259892, 27.603078982181994, 108.02660233496358, 5.435297262483646, 42.07389822102369, 15.945184083357187, 54.537526725535315, 25.49947035550101, 27.880806543896295, 53.68032452968317, 49.560091686481506, 24.708553051647016, 5.463912177787889, 188.85971994667256, 24.592777181806255, 27.64824909185852, 21.135122532484047, 8.072646743869578, 132.68321678481678, 13.467530864568081, 37.674208040387825, 14.749660710713949, 25.272078208282526, 54.5733572838097, 11.52775711959789, 84.34282270865866, 24.539768850598445, 99.72985284053212, 28.707399677305823, 15.07261210688946, 22.475543990053175, 21.457652556898864, 65.92455132409202, 6.709176985807916, 33.05704039711346, 79.55263986316578, 15.92252415748934, 7.710075822023274, 5.180625693587949, 20.84616894470415, 23.24482463000328, 40.36680066056074, 35.32368578574206, 5.565915597222044, 92.17030853765033, 16.484156278545736, 11.96591860191722, 20.31642130924797, 5.457255534914988, 41.91102560025418, 14.867904485688742, 32.22325968454426, 94.2895169941553, 11.490934158659043, 13.296546774283852, 7.6308382249295015, 75.62631190026946, 88.96605858966655, 17.480269876104533, 10.30930305708049, 48.18826338032899, 73.59214286306603, 15.821013351449057, 68.87541559259098, 70.45379679128605, 35.23908340626074, 49.99780916354059, 6.583448270662101, 18.094776411051857, 39.18143230742746, 82.62312963980962, 30.2499623452549, 22.270711822202774, 32.76260535984295, 22.26361301905025, 34.96103032492267, 42.562136660958885, 55.67783689120058, 95.71679806419047, 85.55713843300585, 13.479977782800107, 9.305298413563076, 59.20238278885, 7.636010240995738, 27.743472412186303, 22.20859844822018, 14.16641759427414, 11.14286325728985, 84.57136206731836, 67.18701883578932, 28.230488689128972, 69.11458692404926, 33.48522337619487, 88.71350734376733, 45.65138852169924, 10.520302996343982, 25.245081449627996, 10.640010423547958, 90.60452676123465, 20.941957346514965, 34.22632678980731, 16.230727618598685, 22.390168673931807, 69.07987091514528, 7.802955885519202, 23.628599823899307, 14.61214316618518, 43.45057678311552, 39.12617410353576, 136.39842430417647, 22.16391698897187, 44.1964600648446, 8.596387073136482, 7.315217633354989, 44.068242052944456, 8.377538080925396, 34.18917143005179, 38.054621363596375, 12.72574297223577, 25.830200253164115, 80.64020227266215, 20.697022591681886, 12.081648361721312, 13.736353243230818, 5.617791216255131, 5.127456292823341, 31.021373052419232, 84.42286834522558, 35.405429560743016, 7.367515060730343, 15.895812281157683, 22.982980911379777, 95.24621277331238, 40.31838120128891, 10.911592683556936, 20.477423886191346, 71.70125834171576, 13.985433775686845, 17.065965147377277, 30.582549269841998, 10.981297477152046, 6.637069700063541, 16.98520907610803, 5.670022675456809, 53.36311055716652, 45.32003244245175, 74.54788205494972, 14.371782850123141, 16.702048212053235, 32.13974677412708, 6.171517609000342, 69.95079997445859, 28.11181418027458, 42.195328459205534, 40.05038224107324, 9.619417151199876, 53.372658650209786, 21.827604718418343, 111.54224599913339, 50.04289125239335, 86.66587418764458, 13.208207288350925, 5.713907324993894, 18.186860872689042, 25.9085543496902, 68.78398582679556, 5.64927892468977, 51.927690225818196, 5.121248927485224, 38.6607386033647, 5.943891002580616, 7.439448948225462, 30.97713205461712, 78.75424252530571, 55.80989890678419, 95.38230258995523, 47.69756438483416, 6.41712129772778, 45.07287149957398, 8.279498828767746, 12.170955869103418, 48.48138428674282, 25.48630441386384, 16.7038358949076, 12.538403460082359, 29.761265084208425, 32.28553890429698, 6.495793205366642, 37.95146832074044, 72.0972799152965, 6.779706612377343, 81.61802228018422, 25.47651601615032, 14.921097810774361, 76.68650022366434, 37.49130508156607, 48.703400486066975, 17.132286243515548, 29.04850027865026, 28.617810049592105, 36.68316872754674, 44.75510138618054, 76.98535574413432, 35.221348729273146, 16.80178068579342, 24.466986453046225, 7.0252481423223765, 35.23287273169973, 8.279485935240265, 14.346336250003478, 17.19277565191251, 15.626248600897426, 8.900160122030641, 48.17226894379889, 33.272407852060894, 81.68303294882394, 13.7928132520361, 63.738366741247496, 7.383221803047284, 15.976631280093658, 5.724330439616691, 7.989200360140691, 16.018610038783475, 178.56528565224556, 31.453429236984192, 114.38784410881746, 8.337965885447543, 5.627224893375614, 28.050127452613154, 65.47483339788528, 12.062772069110435, 6.955266400524846, 90.31274032741054, 73.19497124959251, 12.435097147972195, 8.06736802027715, 48.026567935956365, 19.0684388678961, 33.69601695520915, 9.148699493036549, 55.85532970306917, 101.40876142569834, 52.16364076253291, 5.9295106185645805, 41.56715251912553, 55.24291013796201, 10.017684358011678, 60.67615126027319, 21.291752514393046, 27.194174876629422, 8.0205700613048, 60.92745080221266, 7.271018598257791, 71.16582859578186, 47.12858579026708, 7.7109806893724535, 9.318653497813845, 32.54091289489387, 21.068772849878947, 5.7242332851982844, 12.358022673819734, 5.145020053000925, 26.771101812622632, 52.1786856951094, 112.5202902637478, 12.791493545291921, 19.76457121320363, 138.9677931160932, 5.893917674986602, 28.312048457095422, 25.42652154872848, 33.63255248087313, 21.80976532234653, 30.612128560674652, 37.716564414529515, 13.382540744987537, 64.6024535357949, 63.211609960123596, 29.139288475654915, 30.771385657687837, 8.537700076191802, 50.50956216983738, 9.161222447532102, 49.61223268257596, 75.9186379480399, 72.33490583138827, 12.532736254317038, 27.425110982700094, 51.66652027454407, 11.582161901350371, 83.26374393419924, 56.58379279982353, 66.59626425891197, 18.530008780489823, 70.79231994978286, 31.175374492352013, 13.650032601910665, 13.932586014976872, 7.188523095427645, 94.54664565306143, 18.237667346903052, 31.880447099056923, 69.01759744245328, 84.61640383668129, 57.68593769744292, 11.34541029492381, 24.959190376213225, 43.99760568996928, 10.174658020960283, 75.0001464711216, 15.71104444358268, 77.09954140167741, 75.69214526740237, 8.182042796882664, 7.836460108172062, 104.59673752393925, 9.007747476341228, 65.5396235298781, 19.884638218240234, 23.068677902554676, 14.485827530203139, 20.590872989607252, 21.46192445995243, 8.971012890211853, 45.80117344559722, 62.731666664120716, 25.47313740938397, 23.120575335375378, 30.174018116627394, 14.742742429295385, 14.059579850785276, 9.659278865914173, 8.291963526513136, 11.999009805146077, 12.36077047267216, 7.672113186846972, 93.82024994455244, 11.943611048575843, 6.122468578764251, 55.319736843824664, 32.305124162074165, 12.646422570327244, 14.841275427797289, 26.798844985630595, 151.85047338773353, 104.27512438145611, 63.418865142976045, 6.7327375614708815, 18.099256242091027, 7.503784619909786, 27.351463606015848, 21.600996498320463, 15.008018972843919, 34.66773238336035, 33.22496905919277, 50.053206471549814, 7.012469327848771, 16.633465665342747, 83.82703557890036, 74.23528910839417, 16.863259781631406, 39.9265528344536, 27.385907210020648, 65.92972110159948, 31.957231692137512, 7.107910997514634, 8.545806433895342, 72.18316572072537, 11.97675999307859, 8.217721364627605, 29.375839776136374, 7.371608175268653, 68.40791465221135, 51.55221179056056, 5.201225033781848, 46.68519253698719, 24.445162223741185, 9.957475960476463, 122.96741137980437, 8.708353958710527, 24.320800312760973, 14.174332275362794, 7.922356591772015, 65.41135581844564, 6.103912423743381, 84.39834923631929, 95.07525055066925, 14.768576070990855, 5.9382426733840035, 27.953770800953414, 12.467688358638632, 109.35903194904405, 11.441838695861744, 98.98493040334904, 16.799186821273178, 30.276436260036057, 78.59167237842175, 22.60453397543737, 17.887194841071633, 107.74184438936115, 22.175107345342614, 75.20793129417719, 27.41680649487267, 9.763113417567316, 19.426249467062924, 6.199741172208025, 24.57414782325843, 9.426146240537483, 18.73531539731035, 36.07222044860016, 87.38035052364174, 21.25576830904301, 67.96869270313388, 18.294933923663642, 24.003984102582457, 5.646596045628554, 69.32365843391551, 65.93481701556675, 14.954093781508575, 23.50013399146466, 31.906550486286875, 70.05047230336727, 21.149152778006872, 18.080395586112186, 109.54484847000155, 15.993663223376469, 9.367356248681954, 24.735599269076506, 44.38738817486788, 15.188828834653833, 16.13279831959016, 20.006488252389435, 11.679231109199568, 63.430836703548366, 25.419568581456545, 13.50633323577481, 102.41561564068392, 104.79272824938657, 13.456455693164045, 56.03259441922126, 62.70223375834368, 78.29188104825886, 15.331608527368209, 9.28867917005279, 5.714375120895026, 98.96366667163193, 21.799270264758935, 77.74886446326016, 31.164796209317757, 76.15057206201689, 75.34563263294328, 63.90870287144823, 42.29063365285833, 11.20073014404696, 49.42609687083113, 27.14282858074083, 50.61173784831539, 7.571473571416043, 21.972254870819803, 62.944005156189334, 33.61592601046678, 12.534552754281155, 119.55044286822148, 56.143715824295896, 9.030876286580806, 48.03874859336962, 40.770278518128045, 5.234513974369192, 13.06794846520025, 62.43132282017345, 65.06373974445933, 9.207429423189287, 82.87050340103656, 47.102276363308036, 16.98014175632242, 30.524314694058436, 70.39327489376686, 96.48742403489463, 153.4093557092407, 5.825068000011359, 6.800298541813051, 14.651588645521958, 81.77205772490393, 30.930771020750257, 58.42947157986234, 11.026119022638667, 84.30757356615257, 22.112432887518892, 8.401820041342571, 15.088524637188517, 26.841232867741315, 7.475688443361598, 31.89739924329373, 5.896803522697935, 7.479205742371479, 52.73924201601177, 18.29255281350612, 31.816625702591978, 16.572173628507773, 46.777362767470784, 49.62672222753358, 11.996062456834792, 20.572425680687147, 73.96198470354636, 18.94485903540332, 150.7036856611856, 25.895937507375095, 35.028008124835424, 27.928878843910297, 93.4205645584088, 47.23233564493151, 11.140927965510077, 52.76701423332337, 60.045479335217685, 8.693957022091942, 5.855465618518736, 40.71228729848595, 23.55137525466732, 20.58385110057066, 37.004493073791565, 19.682742069934076, 57.02858236274148, 5.296393319780392, 98.24948587983842, 6.252438114428019, 82.22881719899839, 60.85473664684377, 56.79206615838787, 122.11919810125944, 11.592758111471387, 11.376912833566644, 7.509264369864349, 199.81578065395124, 73.6039393833955, 55.51750260177778, 107.12441298130678, 38.79694678367311, 58.494294284682304, 49.36245620121056, 19.350456813387222, 113.66090163400635, 67.83809753125053, 66.81167625110716, 9.271642178101404, 18.1049328292024, 10.034628692974861, 6.6963196975641175, 26.20836171790596, 63.41014749490165, 101.07088811091654, 39.40845859525348, 47.68823570135939, 21.138415850840538, 68.99885283738911, 115.71903062367733, 44.57041116477235, 6.916583154050642, 6.177491050080168, 30.67749668600456, 26.33433772731836, 12.275876185127284, 59.500147421310494, 16.92763036349319, 18.310819036687917, 5.100205111378819, 8.803947390151459, 32.98100698493772, 25.414729282152933, 5.60876556275606, 5.195503599053856, 6.793095976928372, 59.83938452306351, 7.574655036012019, 13.451212920717722, 101.36007838189272, 7.309717592231531, 58.16179215105899, 10.659069421709109, 5.887019755982522, 69.40530113243041, 199.74974170677365, 86.34360637149999, 196.7579547825256, 132.73575048359297, 75.60816508043538, 32.14854530752748, 160.15108613942422, 130.53856421397708, 133.17884726669894, 89.86901185186076, 153.79668931385854, 60.81087442182866, 65.30547975170697, 15.318580112025662, 127.9865048590517, 51.98398171290211, 86.02242651358883, 33.5203870600663, 37.618959816577544, 25.759815756892777, 182.02491729924012, 75.24622338104805, 5.131455838785984, 5.211278566750483, 96.34013369549855, 5.0375957926328585, 24.025521611563917, 5.582362806304963, 20.33684789393206, 5.033280726724745, 5.250901218239198, 15.193795997634352, 5.033883453899097, 5.166945048082994, 5.14712995807849, 5.235389633184788, 158.85551980760204, 43.39197295870692, 5.274096553986734, 5.21136764883484, 5.049658009230326, 15.367804582831537, 5.386662185953356, 15.368488751378948, 20.343554012590822, 23.134878605825428, 17.123544871490296, 155.95635915756213, 67.43021644888556, 14.7937045158609, 9.199223156922361, 113.84028595321354, 14.029407918388074, 5.072015467992519, 86.12717617795157, 13.387485569937184, 10.960554005847678, 99.84318546323158, 11.406977855874096, 7.986219974225214, 32.12789019476227, 34.419079689629584, 85.16898175422142, 74.03022394278972, 19.37510977251639, 14.921425796855893, 76.38274182738209, 29.063886619728756, 70.78324982880866, 11.682332888113018, 56.24737023178178, 18.199226718918645, 46.309155195662015, 44.04192238997577, 141.35179795883136, 63.23708733987674, 27.26706886240646, 35.314296983313376, 14.037645788947065, 33.225064692829314, 7.030607286276347, 109.75574038792189, 6.324956402078758, 33.84130103729794, 25.07687732060485, 16.02410542708319, 13.27036077030038, 8.718920392872587, 8.365152089585907, 23.864620452389968, 25.950616187955063, 61.14678848202416, 31.918569844795076, 5.777423798996033, 35.1892990699438, 69.62613732841396, 113.63350018582014, 28.102376383029974, 6.380367040517928, 31.333653783123744, 81.11095494350393, 14.977939503161858, 64.61666571122812, 8.413742532116785, 16.68225163898633, 41.624005675279165, 5.820524616668381, 58.870410234157276, 157.74759008013712, 100.68857967636504, 19.297564606830058, 22.176261048112885, 16.965116137330707, 63.356814915019996, 51.64091532294158, 17.605332964465262, 9.388254534008658, 10.47520280445852, 71.30989909055678, 25.641350458888848, 95.44672113660064, 24.808386099191175, 82.84855696238375, 11.840178443282062, 61.59952572557213, 23.696476590180964, 81.57631609257635, 73.77057026355408, 67.2767062340862, 56.158071522149, 37.95870616196541, 36.34713763369623, 35.4413522882459, 13.04067259668111, 13.498892736358348, 114.94137145647126, 10.914851913036927, 80.35032735753748, 19.827200742035604, 13.699687380485777, 15.61611890272891, 12.615216532996044, 81.02637638910325, 5.8249326017678795, 58.53433832302919, 154.57230220243162, 43.64737452234082, 97.17368240787863, 75.27665720667017, 21.16424872745837, 33.32666578243452, 5.537370427496448, 70.0340829150938, 76.48131487243744, 43.88943905973814, 81.44105771240977, 122.75625610746766, 116.73731306296014, 31.88133440707632, 63.61430200021005, 105.08321205799673, 62.09150168869528, 74.08302495704086, 75.37606191566971, 17.81624701436516, 28.972624953557535, 86.44457415151183, 44.528332335761014, 5.9515737308549435, 17.07807175219887, 20.63287112828005, 13.70722988883865, 10.537743617533641, 10.226758888894883, 88.19639588459737, 87.25513631485343, 9.044589354760323, 36.76034252858996, 33.819638341217804, 39.96461002951313, 8.581544682141464, 14.505753646552321, 32.807077166126824, 29.093513191878856, 6.939696387371881, 15.97528578517737, 31.424543534333424, 130.99919170921982, 23.60318127252106, 91.7747096895598, 27.22254361350503, 46.356182048409664, 15.289593787961293, 20.09914980017348, 53.09848674124656, 7.940096847648648, 55.82887220017584, ...])
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)