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 = 45105
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);
([3730237.416182438, 5019560.667896746, 5019647.750091376, 5161728.125, 5222408.023400646, 5228896.875, 5238084.375, 5244067.125951538, 5267277.774056396, 5268556.027662415, 5278541.781277664, 5356905.579807587, 5414651.5625, 5418717.621636233, 5419006.242028584, 5419611.20596169, 5422655.547771536, 5423485.657331423, 5423785.250013288, 5431255.487324032, 5432276.5625, 5507138.191394898, 5523045.322009408, 5541835.6962849, 5543609.375, 5547750.0, 5548679.6875, 5549605.076498646, 5549615.618042544, 5550364.0625, 5550584.356816662, 5550852.380327474, 5551285.637257465, 5551823.007203219, 5552409.019774921, 5552599.281743918, 5552638.958560795, 5553033.028639563, 5553555.822267793, 5553579.130838785, 5553824.99342174, 5553882.8125, 5554090.625, 5561576.749912533, 5573690.555637892, 5575802.929692741, 5576228.023902994, 5578172.75076017, 5579197.853919722, 5579516.488819366, 5580612.510010625, 5581473.4375, 5581956.119701176, 5582216.825205612, 5582237.5, 5582269.174109464, 5582446.875, 5582484.375, 5582745.3125, 5582842.1875, 5582876.5625, 5582937.950300649, 5582948.946395649, 5582982.8125, 5583002.334904228, 5583023.162951639, 5583053.478925502, 5583058.2551750885, 5583322.053864659, 5583348.4375, 5583387.3122568345, 5583409.471810587, 5583421.882920942, 5583452.141410394, 5583481.250975123, 5583523.260128219, 5583658.832858019, 5583661.303976903, 5583720.3125, 5583759.365481995, 5583767.790903085, 5583784.832693244, 5583908.9527697265, 5583913.93022922, 5583932.778152081, 5583965.3276684405, 5583992.115973128, 5584002.393659015, 5584090.625, 5584220.897022432, 5584226.5625, 5584230.472716278, 5584250.6573109515, 5584264.0625, 5584401.530307177, 5584423.4375, 5584515.581644, 5584639.529331756, 5584671.875, 5584679.203971888, 5584692.935830882, 5584744.845232652, 5584753.538768477, 5584794.485275053, 5584809.375, 5584829.016926202, 5584848.4375, 5584884.375, 5584942.1875, 5584981.683665264, 5584984.244593974, 5585030.818458845, 5585065.224156928, 5585071.979637218, 5585102.768074253, 5585148.096920767, 5585311.354438462, 5585313.612129321, 5585340.116596079, 5585376.475088858, 5585381.76994575, 5585454.152559825, 5585454.6875, 5585465.275860954, 5585514.415415204, 5585570.3125, 5585620.3125, 5585639.90531311, 5585642.1875, 5585663.120186811, 5585757.977524614, 5585771.803926541, 5585855.37545169, 5585875.0, 5585900.0, 5586009.493079927, 5586021.6160080945, 5586078.313440374, 5586087.388943756, 5586088.504538061, 5586210.9375, 5586212.5, 5586225.329284863, 5586252.758412176, 5586328.872352573, 5586337.028108256, 5586363.919269133, 5586373.160093114, 5586385.9375, 5586408.495809079, 5586457.8125, 5586492.98501054, 5586518.708781763, 5586530.706423057, 5586544.67993812, 5586593.473399634, 5586594.782649671, 5586609.741356266, 5586618.184709309, 5586636.768692237, 5586700.884581792, 5586723.979328729, 5586768.75, 5586808.729681241, 5586832.795457445, 5586849.105625139, 5586899.545196508, 5587087.112681364, 5587117.402921423, 5587138.785092754, 5587162.359160106, 5587170.3125, 5587276.5625, 5587279.313893995, 5587284.700936939, 5587350.0, 5587351.033133585, 5587365.811945483, 5587367.019002272, 5587376.222358797, 5587376.506497453, 5587377.840763217, 5587379.439627448, 5587393.296279931, 5587417.501151053, 5587434.375, 5587434.555970972, 5587554.8042025985, 5587563.959773107, 5587571.875, 5587575.0, 5587668.414793845, 5587670.3125, 5587688.272583288, 5587693.269681939, 5587769.958028608, 5587792.111010771, 5587831.25, 5587851.706969317, 5587881.1604670845, 5587886.599851006, 5587891.847859924, 5587913.702705255, 5587932.8125, 5587987.5, 5588002.724198806, 5588009.015410579, 5588015.391057089, 5588034.23674634, 5588057.712650927, 5588097.403700575, 5588137.933960031, 5588160.175750333, 5588200.0, 5588220.839428418, 5588229.6875, 5588294.801839446, 5588319.08580587, 5588331.593533648, 5588370.3125, 5588393.75, 5588396.216945539, 5588397.810083803, 5588422.73076958, 5588426.918266401, 5588434.11183498, 5588610.926457085, 5588705.596043477, 5588789.0625, 5588803.826190489, 5588892.154007598, 5588931.25, 5588976.414383513, 5589112.856547811, 5589267.534250668, 5589280.480948323, 5589303.442352149, 5589324.043647939, 5589337.592759265, 5589351.544527169, 5589410.9375, 5589427.595787654, 5589731.740631131, 5589735.393464477, 5590738.205173423, 5590904.191972638, 5590972.884281058, 5591087.226488211, 5591179.7809039, 5591390.715402033, 5591525.0, 5592119.885861375, 5592506.841403291, 5593053.939869674, 5593531.11949742, 5594681.163518058, 5594721.350363408, 5595058.710015425, 5595440.541589973, 5595451.5625, 5597454.023924107, 5598265.625, 5599652.829716205, 5602424.808610313, 5602515.672583848, 5602536.018747677, 5602747.6221868675, 5603300.0, 5603572.979210108, 5605780.551118372, 5609006.201394531, 5609016.3376842495, 5609045.3125, 5609179.2416559495, 5610841.431030449, 5645730.360039421, 5705446.659723519, 5734254.869234998, 5735071.439207428, 5737568.639324934, 5738409.95160313, 5738568.75, 5738678.521916312, 5738975.1819590535, 5739426.294235556, 5739885.056532273, 5744763.594450382, 5745396.186565069, 5751078.125, 5782682.449202309, 5784345.3418621225, 5788564.0625, 5788755.371079109, 5789304.628355688, 5789340.968518987, 5789503.790615244, 5789789.812212096, 5790701.5625, 5791879.6875, 5793013.820637851, 5795687.424266184, 5797562.5, 5798000.0, 5804891.729042403, 5805827.03346039, 5810737.5, 5811290.625, 5816783.702729525, 5819766.629830079, 5825751.561772043, 5827847.65534758, 5829900.566340538, 5830856.993524332, 5831465.625, 5831780.518471478, 5831837.1085899845, 5832698.697103662, 5832865.900162347, 5833040.768518635, 5833324.459540681, 5833437.263844535, 5833551.48543831, 5833702.856643798, 5834174.309696798, 5834470.893004019, 5834490.566174337, 5834758.267231914, 5834926.2574416455, 5835017.1875, 5835043.095891487, 5835048.606420053, 5835161.62423628, 5835244.398445296, 5835305.327686304, 5835421.875, 5835457.043894718, 5835494.714726623, 5835602.43076919, 5835632.8125, 5835773.846650973, 5835793.974192851, 5836047.840363053, 5836390.616211117, 5837188.843096104, 5841830.840015682, 5842518.043593669, 5861440.28091718, 5866528.125, 5883888.533443135, 5884220.3125, 5884699.310332402, 5885235.735400519, 5885311.330617965, 5885759.375, 5886297.821621897, 5886337.703941904, 5886374.766569901, 5886946.678652994, 5887198.782315209, 5887267.323772342, 5887382.8125, 5888604.344603272, 5891462.004811641, 5891644.415492653, 5892743.75, 5894315.129367176, 5894401.394589689, 5894622.773900152, 5896654.879218882, 5912850.118654755, 5921131.25, 5930753.653092755, 5932273.4375, 5935228.6217706455, 5935335.772612332, 5935351.1227262085, 5935519.0322889825, 5935636.84838431, 5935807.250239974, 5936055.843133065, 5936180.703628543, 5936292.044592765, 5936434.324009342, 5936534.16593095, 5937311.03984899, 5937336.883002973, 5937346.875, 5937635.014728833, 5937670.257934178, 5937971.875, 5938018.75, 5938031.25, 5938410.9375, 5938640.861560469, 5938745.3125, 5938902.502481794, 5939151.396414947, 5939165.399483167, 5939222.413218681, 5939230.42382395, 5939384.0170639735, 5939737.424942786, 5940003.11329518, 5940782.794080107, 5941143.303889259, 5941214.735053501, 5942600.0, 5943630.639434699, 5946176.5625, 5946215.625, 5947079.6875, 5947276.808520074, 5950123.620244936, 5953814.612985356, 5956637.49438581, 5967128.106086635, 5980671.394033814, 5987656.660813475, 5996175.997680735, 6003326.253971907, 6023776.5625, 6024913.766758877, 6029575.078490091, 6029582.663521072, 6030700.0, 6031750.913360127, 6032489.22470152, 6033767.21856952, 6034393.944858473, 6034416.794127747, 6034609.375, 6036978.573756738, 6037507.8125, 6039115.625, 6039203.801615596, 6039431.866852487, 6039543.75, 6039918.147215511, 6040238.2063740995, 6040275.0, 6040978.022108209, 6042482.836279359, 6042511.253463909, 6042646.048525039, 6043747.321323791, 6045376.5728415325, 6046272.653403825, 6046958.433676252, 6048001.5625, 6048503.9251380805, 6048915.088577136, 6049168.155249158, 6049709.375, 6050335.495507977, 6050368.806712803, 6050564.988130957, 6050675.588165325, 6051582.967166108, 6057162.5, 6064364.0625, 6065299.232888152, 6066094.990530852, 6066424.386742779, 6070995.105240656, 6074680.803713139, 6076361.546290961, 6078108.196273758, 6080343.976563349, 6080404.6875, 6080410.453792031, 6080414.0625, 6080475.0, 6080646.875, 6080684.945490876, 6080693.146866293, 6080851.5625, 6085453.668856461, 6085946.875, 6086294.621814853, 6087521.65526846, 6088062.987847214, 6088152.317713743, 6088191.8376913, 6089120.576174234, 6089439.612174291, 6091136.3294163775, 6091455.396587726, 6091687.632231164, 6092338.087695743, 6092392.590110787, 6092929.403956095, 6093461.985349039, 6094535.283428137, 6094839.245878763, 6096674.587952832, 6097667.553460771, 6097707.8125, 6098550.705138567, 6098556.757548676, 6098638.217626497, 6099362.2866766285, 6101121.938941492, 6101262.021420351, 6101412.924143529, 6103176.827319154, 6103452.7466614, 6103535.585054417, 6104191.03719096, 6104350.0, 6104623.247754259, 6104707.584033805, 6104830.68701393, 6104910.174102194, 6105036.760469394, 6105075.0, 6105102.62631752, 6105307.579352703, 6105452.880715825, 6105526.365021945, 6105528.332317079, 6105535.9375, 6105946.815401421, 6106081.440817517, 6106398.351442693, 6106422.462155149, 6106484.375, 6106569.876083761, 6106602.597963187, 6106762.4247057205, 6106975.980035723, 6107574.893429464, 6107631.424467735, 6109739.0625, 6110553.125, 6113676.779197085, 6114533.837930495, 6115010.201867866, 6134560.951848817, 6152193.75, 6153667.342982528, 6153744.055482165, 6155964.0625, 6155981.829308821, 6156324.983590423, 6162615.453326673, 6162958.241436607, 6164714.4165607905, 6165348.476150045, 6165631.690662964, 6165725.438156557, 6166057.118860962, 6166198.326655829, 6166335.776352119, 6168140.616171342, 6168334.0898743905, 6199626.505315038, 6201381.63855839, 6202028.500696107, 6202576.130885523, 6202681.678123145, 6203524.399987051, 6203598.4375, 6204114.797291924, 6204237.820400459, 6205147.845398804, 6205432.259031229, 6206707.203758181, 6206791.918343225, 6206928.188878034, 6208826.5625, 6208843.488041013, 6210211.038275444, 6210277.592968094, 6210578.125, 6210645.830235019, 6212217.631120843, 6217032.8125, 6247431.25, 6248973.4375, 6250309.375, 6250688.421534134, 6250781.25, 6250914.101571649, 6251490.231545434, 6251717.0688543655, 6252209.317188153, 6252243.528094588, 6252583.697860833, 6252966.872322578, 6253158.828721619, 6253660.9375, 6253801.159230032, 6253805.989022348, 6254219.579256844, 6254820.3125, 6255851.991221951, 6286992.1875, 6319246.875, 6341346.365839717, 6343030.888645632, 6350312.010431691, 6356710.024663039, 6366251.524592504, 6384735.527223453, 6390066.327309722, 6391065.625, 6396189.0625, 6396285.9375, 6399461.774613611, 6419807.033534338, 6424729.324841234, 6426217.1875, 6426231.476518169, 6428744.693198168, 6431113.494993064, 6453930.049742526, 6464004.6875, 6469523.4375, 6487168.7083197, 6492083.890443106, 6527407.844491072, 6540014.0609250935, 6540333.863806312, 6604065.625, 6604406.25, 6616918.550780628, 6618817.150527176, 6618853.125, 6629517.301267397, 6643530.252924536, 6714424.229557082, 6717279.6875, 6792071.875, 6794882.7105940925, 6932277.813867069, 6932973.369576628, 6934257.960647747, 6978118.133724869, 6980697.974444984, 6994845.3125, 7003339.831063425, 7017671.6594257485, 7074192.966448725, 7080037.938251889, 7084827.440579321, 7100301.784169343, 7115010.2001755275, 7122007.780872897, 7178600.801805525, 7179266.671738382, 7179762.655527927, 7180989.881064908, 7181283.8813502425, 7181866.999893084, 7189480.048389455, 7190487.5, 7191243.445919155, 7192748.804872984, 7193472.998070012, 7193784.35320484, 7197385.9375, 7205301.5625, 7207871.200848552, 7208951.3811602825, 7210182.153847048, 7219081.25, 7219094.067070765, 7220470.43714907, 7238001.726276628, 7238871.875, 7239096.875, 7240265.917114155, 7241470.296929509, 7241975.349879822, 7241985.728764236, 7242911.804065118, 7243008.266073765, 7243456.174452483, 7243914.0625, 7244268.75, 7244513.174900634, 7244858.412994753, 7244913.215797059, 7244929.6875, 7245042.005518773, 7245282.783491576, 7245881.340553485, 7246066.912240737, 7247747.150531155, 7249167.1875, 7253032.8125, 7253908.416368454, 7258394.673851297, 7263332.416592298, 7264609.671399093, 7264628.125, 7265044.191047047, 7265891.799529719, 7266253.1722043045, 7266496.875, 7266514.543393746, 7267789.0340145035, 7267992.595013811, 7268032.445166361, 7269322.801115253, 7270876.677090424, 7276064.0625, 7279566.840565281, 7286298.4375, 7287160.93924611, 7289331.25, 7290393.75, 7290395.408364966, 7290574.840762363, 7290754.100119684, 7291501.5625, 7291615.7034346685, 7293092.1875, 7293325.59402209, 7294459.260506461, 7294683.780802121, 7294823.4375, 7295177.231916615, 7295717.1875, 7296502.292635289, 7300435.202961152, 7300600.651974156, 7305725.755770658, 7315786.8244914, 7316057.8125, 7321783.809036184, 7324250.0, 7324990.343090462, 7325909.375, 7326228.044425812, 7326580.856870017, 7327803.125, 7328718.129435879, 7328804.6875, 7329447.717352176, 7329607.654067576, 7330201.395527519, 7331255.8166728215, 7331676.44923459, 7332429.6875, 7332525.26692174, 7332526.5625, 7332543.309170097, 7332555.9799516555, 7332615.4856390385, 7332765.625, 7332992.067605662, 7334044.573746558, 7334398.4375, 7335499.670101341, 7336367.064040636, 7337654.6875, 7338733.249983333, 7338774.412385746, 7338901.5625, 7339419.83454298, 7339593.349747728, 7340693.087968424, 7343851.224740906, 7347163.776983246, 7348447.391250224, 7348819.474744964, 7349370.0768568115, 7349518.75, 7349553.739497755, 7350004.401912952, 7350506.772416819, 7350618.75, 7350672.557620768, 7350812.5, 7350939.0625, 7350965.776881181, 7350995.006862464, 7351231.25, 7351300.720553232, 7351367.1875, 7351376.144349247, 7351402.636373084, 7351501.226641242, 7351831.25, 7351832.446353484, 7352027.345146394, 7352114.0625, 7352225.962594893, 7352793.75, 7352798.4375, 7352799.642821131, 7352992.09032759, 7353000.128139452, 7353189.519349005, 7353473.4375, 7354018.75, 7354084.458162492, 7354224.772589176, 7354239.854904564, 7354384.854680248, 7355007.583428219, 7357441.6452046065, 7358954.6875, 7360857.65962234, 7362689.79562671, 7365360.358240478, 7365980.900468955, 7373243.075570752, 7376057.34307134, 7382025.0, 7385922.323819574, 7390683.7126739975, 7390921.968976471, 7390929.522809181, 7390959.375, 7391561.2763613835, 7392089.813230282, 7393050.434477628, 7393585.503330627, 7393888.467296639, 7393946.217606279, 7393977.797973316, 7394121.3162552565, 7394667.117515757, 7394831.981603861, 7394847.489838398, 7394908.726440112, 7394969.6776564, 7394970.180669036, 7395088.082333939, 7395095.3125, 7395257.069287272, 7395472.488510308, 7395542.392871405, 7395551.5625, 7395590.625, 7395622.571204733, 7395750.0, 7395812.5, 7395832.784901742, 7395942.011515893, 7395967.803776592, 7396060.969027025, 7396173.563482327, 7396223.4375, 7396400.334565212, 7396537.802599783, 7396579.825787596, 7396610.556127461, 7396990.625, 7397388.3505396405, 7397675.0, 7397840.2654422065, 7397865.586153626, 7398188.860281276, 7398225.41326543, 7398378.125, 7398875.955732237, 7399242.1875, 7399323.4375, 7399326.448993951, 7399342.645518405, 7399345.124612839, 7399354.286101029, 7399403.125, 7399412.386617943, 7399449.270085177, 7399462.7512242235, 7399475.747120882, 7399602.25570154, 7399657.751919538, 7399666.923890667, 7399707.8125, 7399860.9375, 7399865.625, 7399866.480208127, 7399995.94789484, 7400059.375, 7400087.110419112, 7400293.449368858, 7400301.5625, 7400411.659636232, 7400438.704371938, 7400471.535450383, 7400474.42545564, 7400620.122089295, 7400626.568816661, 7400642.182701623, 7400738.115372757, 7400775.7677100655, 7400794.7655887995, 7400876.5625, 7400910.9375, 7400970.3125, 7400997.665341356, 7401034.819278671, 7401092.1875, 7401096.832093507, 7401257.682177052, 7401354.843598809, 7401376.5625, 7401436.854856275, 7401482.30319329, 7401546.875, 7401563.503954987, 7401603.980185097, 7401614.0625, 7401697.675521537, 7401707.8125, 7401717.1656083185, 7401755.693768868, 7402066.09470179, 7402076.11682356, 7402121.946223555, 7402346.875, 7402365.534766277, 7402615.863750712, 7402788.137769622, 7403053.057337919, 7403136.915189061, 7403505.276874305, 7403601.334477443, 7403761.919039184, 7404020.261164194, 7404132.215285254, 7404186.534560615, 7404670.2482002815, 7404678.0831608, 7405585.833656705, 7405647.705375759, 7405748.973809456, 7407744.656326639, 7408478.0150993345, 7415070.3125, 7416603.125, 7416781.274566465, 7416967.1875, 7418241.833628202, 7418616.791472609, 7418920.3125, 7425110.762083877, 7428247.639590015, 7435984.216584144, 7437708.251188456, 7437929.6875, 7439482.8125, 7439806.25, 7439931.372540092, 7441788.454978455, 7442088.266495311, 7442582.384306222, 7442622.444696558, 7442822.022072397, 7445191.577225593, 7447373.6188576585, 7454163.874609631, 7454948.9704896035, 7455260.9375, 7456057.222081182, 7456403.125, 7456411.663230565, 7456437.5, 7456678.883873683, 7459060.361150913, 7462431.923830926, 7462727.416712906, 7464146.870611062, 7464395.98680374, 7464481.192808854, 7465015.226636825, 7465798.4375, 7466016.61881552, 7471738.592959026, 7473583.665333003, 7474973.4375, 7481715.831029624, 7482641.638756992, 7484443.75, 7485820.021995552, 7485951.5625, 7487732.7378489245, 7494965.625, 7496850.152482054, 7504576.478621648, 7505986.939771345, 7508043.59489478, 7511993.195463485, 7512480.687958895, 7513231.25, 7514378.120966929, 7515370.030253065, 7515430.544976918, 7515448.59591329, 7515534.140241677, 7515630.323887629, 7515667.1875, 7516528.663527252, 7516538.497627822, 7516558.568892219, ...], [7.099591508560082, 42.698683061189854, 5.226304997608756, 48.34640750138965, 15.81129227077243, 87.30808459609796, 52.19313101793568, 7.58112731926365, 5.684781208827573, 7.524753899974565, 9.010019299411237, 24.77860288762752, 61.299712860168334, 70.13428860105209, 232.06120768479104, 11.574964894227664, 21.672450317833704, 73.20623466255205, 8.810693324223209, 7.920625295547651, 97.96076656908153, 5.26491702450558, 14.977879130950642, 8.163008983298951, 50.093853676288184, 56.83835809686895, 44.96672439674664, 16.665171627328274, 7.600723226999086, 81.7156960258458, 17.281380239625527, 19.356339817999114, 85.00460489617056, 30.742309076868715, 133.27914370170805, 25.296853057816595, 26.626055113102378, 80.92633428552875, 7.013377017136052, 10.356425268493858, 14.916495316083294, 42.27054694169054, 114.92261192890008, 9.495063186717651, 41.94612251352197, 25.186977540030036, 137.5953126971241, 10.200793647122058, 8.000333006631314, 42.93233447655564, 155.14416362362994, 51.575738133380625, 20.383390385749674, 10.605002652381016, 29.652406629955646, 59.22696606341767, 43.46276629615346, 34.40184030232291, 33.61751294612257, 71.04476638189973, 48.46106338218998, 7.774649304238179, 6.869542178941735, 53.562052462852016, 15.854210288962095, 40.60509631845334, 6.125694257264956, 53.59097387291075, 21.531575014089764, 32.267273227881155, 14.271153192724729, 18.41351904579975, 9.338109770817063, 30.583769853898907, 14.945227434026398, 73.47117203395472, 50.28388217336673, 16.550239086048503, 51.68949447085273, 28.337964420448927, 38.495331678405265, 17.134168176037562, 29.460305573861493, 10.927067123850197, 22.56800529890934, 46.13947017598808, 11.01771640205272, 19.458962336172796, 77.69389740528229, 49.781283426672296, 86.56492679033306, 10.097129090214683, 80.03640806829705, 42.253298447932686, 14.186336700688237, 41.081249862646764, 7.110101131795222, 5.556174595064342, 31.227928553909837, 21.659005031232077, 18.84315849365755, 8.96526351112126, 6.320929798369247, 27.47556737637062, 48.3496382236824, 6.186037459940719, 53.78858492386744, 44.75795037289787, 30.73563237097896, 7.240314299842703, 75.90178021402764, 40.41627384022806, 22.54275992736482, 15.355922353316778, 23.0498455251198, 6.22510668482676, 45.372919828178965, 97.27608072813716, 13.30308845481361, 32.994814699721104, 12.050891694538, 13.231361022775378, 108.03977343877091, 96.86683044627979, 20.100262971272848, 139.58899957144152, 90.841368769726, 40.38229526074915, 140.74887327901862, 9.917318495831777, 105.28921258280776, 14.677358191760508, 7.8725719236395495, 111.47837097631631, 108.14068009571746, 15.411521382726233, 24.289088474994234, 22.3309960685404, 55.35802063164929, 94.42531126791954, 68.18335028118616, 48.05972146127119, 6.831075862402214, 13.706910805829562, 12.737999233350195, 66.5946016548328, 44.137538728222395, 38.05796328469537, 38.845057897116014, 18.393789737831103, 48.675501470187825, 28.54076749197447, 31.684654417642264, 21.069138987161363, 25.385284995044277, 9.107983118470143, 10.389535356137841, 23.007397204087184, 44.925034620437245, 5.878152370516414, 23.02376022356918, 17.506129955685964, 66.83867156950382, 17.70227970953318, 41.39707345477598, 24.758029349065595, 69.88915663429589, 114.92673478271742, 42.316099228909934, 66.31887811360465, 9.215088200791087, 62.74409858227729, 78.6792890660666, 53.40020161561284, 21.67552704957679, 33.20181745574063, 85.96163192853479, 7.67228169509447, 25.589601938360534, 8.114538756905398, 14.73226551432782, 19.72050365891515, 24.440245578318496, 29.85275535340065, 11.656108149828073, 95.5663564310229, 26.3953195457585, 15.405798970742012, 14.901128063185904, 36.92683651130405, 28.88014958438261, 23.311212942445785, 52.99606355931594, 19.01821315277396, 13.380275403626655, 23.079019123830342, 6.475167351235087, 86.44571146459768, 7.159953244541261, 26.87128831821515, 6.159797094499944, 25.5798829327155, 23.015858224860633, 41.421531135666754, 66.44903647075557, 13.606194754002127, 13.72778266685393, 32.44157380290413, 10.918271649924531, 75.57849677872908, 5.643978395111621, 11.881279979746745, 19.226901921697323, 29.240229615790113, 9.820585099484836, 31.733938644821794, 10.413458271370981, 82.81857122973199, 24.047995988688015, 47.53725540107625, 30.010043482209518, 10.23441848769484, 20.30972528713759, 12.793406706210433, 6.836673688772723, 5.09331163488729, 14.899585391203777, 10.23925357108235, 66.51691327242746, 173.55002559717855, 38.186581707681, 67.0895600757086, 26.30583055848859, 85.81954435247951, 52.10865667740114, 19.172234013366563, 161.59191016689368, 19.42012613371101, 20.690659606366616, 28.174027964678814, 58.24414374275026, 21.206558445460107, 22.82000322423498, 6.405061628952583, 12.443489562353564, 12.52437010410475, 10.360656020056819, 13.992317460004575, 9.411650261059604, 15.297650991426034, 66.18586021063035, 22.406784237542897, 95.87688493648051, 6.622895024298856, 5.804386884087452, 26.92391800010102, 30.613499273268303, 12.895817031644174, 14.764566640852896, 30.237053115395188, 6.38786889249513, 58.676738141321806, 6.2305985675154565, 22.888257859649027, 8.31190177863164, 7.142974247753238, 18.93701115958057, 61.408956363941414, 10.479718808071013, 25.34108673771111, 53.944392276276815, 19.259041388263597, 35.49934350121595, 7.008985516147787, 121.76686817322533, 116.70785768933209, 24.896855741538126, 6.107204174914191, 8.988231997587858, 6.741610482125643, 98.1782013153325, 52.77674178138807, 82.15694043160667, 5.827567481467467, 99.2202893659383, 49.91753185537731, 20.720882468021465, 64.51474541221225, 50.26472630591892, 13.598178626735454, 6.769382680125183, 56.36490223361801, 8.6844778037151, 32.86651818663478, 9.639801478485609, 7.308150893832297, 32.74410776291709, 66.83472619885357, 43.33859589959067, 25.288288596561365, 46.27297507109869, 76.80446957032619, 142.59017344590848, 19.17799543431505, 126.91190588812131, 31.9802811261643, 82.11221878331544, 6.185840760473894, 20.936476377303563, 60.11890763455948, 19.0751523118476, 17.65180172709618, 18.808959132974582, 43.05059850853982, 8.781011207300262, 5.2343210116212955, 11.55926960660894, 11.586882987103271, 21.702452513530687, 13.216586705967769, 15.005069864075764, 15.601236904483697, 14.008635497874282, 19.78385120258233, 6.150621138724652, 27.412448912936565, 57.97627013890102, 23.68634252095957, 60.35797660406104, 72.7189581828005, 15.626968187740397, 18.41677912529358, 99.23059933985806, 77.84716565087794, 58.443225208934024, 19.175564516497648, 72.60237692378487, 24.00707905997421, 56.20954946131231, 15.134354158989684, 14.431813755882668, 173.35360968621364, 6.761753203636939, 24.837894739160838, 6.684326574444242, 127.36395454820936, 23.203516493868978, 63.540073813270745, 46.084891559081555, 56.121160781061, 19.78899298131372, 6.455870266586192, 7.751891635119143, 64.89260927220974, 79.53801219778381, 32.90617488666108, 118.73565731370773, 41.26192347848861, 5.6334092731446805, 20.409280409406925, 74.31329645293239, 21.129112223785995, 30.31701419983648, 41.04646993416118, 38.61575622004224, 46.355780693844736, 72.48183955501747, 126.57305303079568, 36.682562604300585, 43.948318328461745, 52.60592768265398, 141.28110509899284, 40.68008204096536, 63.27495239907073, 54.58521332609673, 8.066947832441977, 6.532272103121083, 28.84144460267845, 52.96626067405244, 19.513547592946736, 49.552156856279424, 25.988696105955437, 9.28865666970876, 135.11855669174136, 5.132695620184646, 59.88742076437961, 73.80187828949279, 85.97665001716548, 120.8310231676991, 79.86900013071562, 104.15526725431266, 151.09186513361215, 62.83950356368463, 51.77905754569297, 53.91626851044733, 30.310771637452092, 75.20282778132292, 23.406074472351367, 24.722951611812878, 5.082535317296109, 23.037863257262803, 37.65246891667148, 22.18571447025687, 14.871763147015463, 54.78566456614361, 23.46564600272262, 86.62680552399198, 41.75257281446264, 100.47466485542932, 67.50553571351747, 71.69565669527935, 23.728265712882358, 22.079120804282653, 27.296193866205662, 63.94459149510445, 8.276600882216783, 39.39520593119351, 16.778577884788575, 8.008888332256655, 5.597200641320953, 35.81995918687749, 37.80493136140867, 21.127534039904916, 10.902562977492124, 84.55211426728002, 19.11572874922623, 6.79632672347974, 6.091336143649227, 9.50178723005258, 32.52100946407883, 46.36060350860342, 6.559816510675508, 38.402537437502005, 44.84476981820735, 40.21340226361072, 17.962390212448977, 48.70858204971331, 15.936232409558176, 26.180107411035365, 49.05753810261143, 69.32465710945007, 15.03292648853876, 5.475493479849378, 5.266222908665965, 11.905207641065235, 16.219247199215054, 19.06085645603469, 5.649358952259153, 61.488917519101385, 10.11396024099716, 12.1129549361639, 148.55775079503763, 48.137871639698794, 13.487774377456166, 28.90684141786458, 75.24132976476868, 7.2851499968180855, 25.005121487230443, 91.79081480621802, 87.50510977389337, 35.20613261557282, 9.07323120205564, 13.02620699948873, 25.012356822164104, 49.71308669934645, 47.060166095633036, 90.59991525540032, 16.747432696412453, 108.26791075528928, 8.95335603634301, 39.5661873656398, 83.35134023852112, 55.4936460761655, 69.968322009813, 13.052191705085045, 42.461270383801434, 17.518059565786523, 29.752052763510406, 101.8875374396318, 198.30040729567895, 8.562584731848222, 10.063582602946987, 69.80973521035033, 16.051722222242123, 12.111320876435814, 11.801032554045937, 23.166171467779144, 21.111089640247968, 95.29588129107198, 16.735691596742935, 23.96324631032257, 51.74772789071833, 20.082515526455936, 8.3859916089281, 13.573560392109739, 16.547630284323983, 51.35960298663571, 12.44341192532976, 5.483981111249239, 5.146141240496766, 10.809873523043933, 11.229144272488636, 44.30535048149434, 35.72651008824489, 17.864703557558045, 21.045498141773578, 80.98261393929968, 25.340775771722875, 96.74559519793303, 98.72704267853152, 14.136780979352519, 13.156789897589922, 52.29934850174594, 5.055690718681304, 53.5877682543029, 13.329655859247149, 82.50241140390983, 30.14828851214909, 35.64809009234276, 21.92339478812543, 63.09773384451458, 11.035810924654953, 5.3485030966649205, 7.099012075401837, 126.47270885592465, 69.32553497255883, 13.503626949224042, 8.92226569221303, 14.662084441453864, 27.325705551460217, 26.581838233465245, 5.347935809775228, 29.991801337041935, 39.674222025675256, 9.521610039579997, 35.36777293259178, 11.935551960214477, 14.996483898289098, 32.444471648095046, 25.84783767410223, 38.34199136002303, 45.630803739011064, 12.172508597372435, 5.812767094562311, 14.325197647937335, 58.366005738210376, 92.30320666425862, 41.50655847013961, 7.770792455474573, 5.554730376512234, 19.756921636544348, 32.36218936277033, 7.07972543614272, 28.351430119129937, 10.70948242944959, 55.263071895236685, 69.00787734884403, 16.597026311346834, 22.203530275126187, 9.72169059648643, 29.416967233930137, 34.54634160882573, 161.2599750892353, 11.668383975786206, 5.889448723051315, 13.181954852692359, 57.259531305581305, 9.113733567876013, 56.203907727178745, 75.54897143433986, 20.439508922611292, 5.821474605897427, 70.97261848655668, 32.39319778670002, 5.050378027534207, 11.712611623601532, 38.16301714012823, 35.11744144328245, 64.00771671144913, 39.24248777263159, 47.755149869856474, 46.37219896296798, 15.092553286358315, 133.15304874853916, 18.615040332507515, 27.430759182920198, 13.991689487694536, 19.8910462425664, 29.575474751416962, 8.908592884147845, 107.32612516623726, 22.51553817363051, 11.102423208278394, 19.444234261398847, 92.24414457358873, 6.133846856278372, 48.7437997950512, 73.98019037638856, 82.22930863199795, 7.477569525481653, 45.93334754066379, 61.931558527820584, 14.798965831170921, 61.022867905716694, 101.14969268411002, 89.70540351119456, 56.14749710867541, 48.737073202877916, 12.748428218024266, 32.76594144390966, 53.8306840595487, 51.68118154829265, 15.88140940680362, 31.58657247059611, 13.14488624588642, 29.488500923865985, 36.40669717084235, 65.14371970159195, 39.45778892011046, 46.10001869458729, 5.534635186376319, 14.935510011810084, 77.55990020241208, 63.182132465701194, 89.84332760224719, 26.764137909140707, 5.8112496489411445, 57.11302970209814, 15.393623740600072, 5.178742509188801, 5.759091696269724, 80.4074875578969, 59.17031857175982, 48.44392806317158, 13.874888698726682, 55.52017475097081, 73.30286430355399, 6.192354593944759, 21.869736737617806, 29.417886488567945, 12.58718760683857, 91.09067928198712, 8.746453693565272, 5.735228999332295, 7.373130569953709, 11.492817654141218, 5.148538260917653, 24.02139420559444, 84.51358984837982, 80.79959946566053, 15.569406900500011, 20.151201269665933, 80.48505608644629, 84.89048525068557, 17.12083278915593, 52.027637651281054, 10.683497342403792, 16.55477100396687, 10.503936046789134, 15.455552041459661, 59.76526972360381, 43.408547384060334, 66.58921881805718, 8.19295464955249, 6.187420650166443, 75.34727998548325, 5.837819292844014, 22.539765734567773, 7.165179499745701, 41.10661330554882, 72.22893743881532, 13.46591762544955, 37.79408098462976, 11.722487305831084, 24.990988981617058, 57.070225040555506, 23.503310459815474, 27.114574545107107, 43.38165237161327, 63.32928082083353, 11.411186263737683, 5.648151789981299, 22.48225167396263, 32.4718438216193, 6.458937513486529, 27.963390571309986, 24.255958835591372, 67.2186028247583, 5.252922842424578, 76.34808243867039, 82.30466746694151, 25.812165988959666, 44.6354057345478, 8.087752540996924, 16.205940188063163, 37.07675241657005, 23.102164769689974, 73.3635031740204, 34.47077391772089, 44.112346558825244, 30.587402974916657, 7.113983765056166, 9.701510530278927, 9.03898504236111, 13.170308552616849, 18.00371438569543, 74.09866758568702, 28.57811810101323, 74.18635557340424, 8.28750091346833, 88.12205276692292, 91.93434671001482, 11.280930622288645, 6.4624157302223795, 13.09293750913892, 51.49865036616835, 16.556902897538524, 58.678265862092154, 70.89445957443522, 159.00038287891047, 45.53055585081716, 113.38056533270037, 7.309289057640661, 85.70239003123737, 37.59073397874893, 64.12205239019228, 12.326700155402236, 6.924391842503147, 14.116777326160356, 30.248385435898637, 48.152719923312304, 36.27768725276394, 101.90222298848605, 88.74195129567462, 63.13162913681048, 77.00905763993218, 70.06951843993612, 10.278950147141316, 31.690891967767875, 12.761009720916142, 25.74480633120827, 37.195035367647606, 22.185020141246962, 101.42494035792853, 55.33365357764988, 75.67537318969437, 68.08793640382024, 6.67857783813794, 89.57582508767922, 14.435666826730797, 116.84889345044795, 14.50340646559769, 19.401730855130605, 59.96719352600019, 25.81434024044826, 9.229148355462083, 41.68520465719576, 142.94492458494227, 5.889815584439519, 37.06072358036591, 63.497847149471006, 92.6270416856485, 10.229733527639528, 9.061254747349373, 10.708944073712885, 12.987290380585296, 12.487319042439918, 14.113475190023445, 56.41282037230114, 17.947589770566942, 8.141115397427725, 21.410129031040505, 68.19733398155955, 52.95967113651194, 64.76937999915906, 31.82838836007759, 32.40698781024937, 9.085682546263227, 127.09497858765185, 19.63819373986903, 49.55108288738517, 116.38905437847335, 6.669725236634391, 84.89679291006952, 57.74667836228512, 13.708224210029226, 7.913162161652397, 59.77094460769754, 49.402857390879845, 32.53988495614972, 37.57234804611662, 5.446642055161584, 56.816949284970924, 6.789361124073655, 81.32320426532597, 97.55643603078077, 46.96521387710818, 23.777673049820024, 31.880382295617885, 12.642559883862226, 11.97052620010524, 24.701101852458713, 5.774915866300172, 42.17781403159971, 61.84137923670664, 28.340863862677523, 71.58930679794477, 30.391397720843493, 6.3863220632638935, 112.10269631557807, 75.2526777082481, 31.085030679433327, 12.902423075842892, 15.312224837559327, 22.021544515595956, 53.88064346791202, 17.354500482936874, 18.860291153355487, 16.90398091688955, 15.531296262335129, 7.995052660964228, 6.958738887809397, 10.652323789044894, 5.892180164726751, 27.212818476204905, 12.502791551533612, 48.08470555109572, 14.748657827118873, 7.977158076501062, 67.08465719294686, 7.283432609765101, 30.590054214070726, 6.1776535492317395, 17.941392834671603, 42.83127906189165, 35.22066166114792, 35.393529710062296, 12.423561741509905, 43.5421172442072, 55.9954807234387, 11.08484122878747, 51.879469618575584, 26.763895018960426, 9.358204086811678, 90.55504488506658, 46.61603570218044, 124.16823786052638, 18.19597762192004, 15.496163961624795, 49.28595539924518, 35.29741080383119, 49.889925267367126, 71.39050759902123, 58.96591612703766, 25.027560557043124, 14.22296869349187, 30.940713119411175, 43.592961378380195, 60.188282058173826, 52.34173105350689, 71.88829105003612, 50.45185397209059, 11.927980389770866, 96.3660162169096, 8.085135457576472, 41.48282584101734, 26.46818810087559, 12.73758248737931, 7.189094807862896, 18.83453393934374, 18.460352919997373, 8.254799085761999, 7.053839040026903, 70.92192132926131, 69.05375287273014, 63.33926747530776, 26.576746982099884, 18.080070710612734, 73.65285256098687, 85.41639564016168, 65.2068173637611, 69.62848782504273, 15.764249553285044, 5.235231369347475, 56.93102393197737, 20.78037210400053, 148.76165324663307, 14.938983971368963, 63.92402823083065, 11.463224903766186, 33.822186664865725, 80.38402031876832, 89.55547623739118, 125.04891332197336, 86.12604390903698, 15.22855984672217, 50.24417835804311, 34.7555307625025, 27.70335466988507, 26.19050203088498, 7.163098891939153, 171.44078291476782, 5.5025680182755154, 52.59108965578508, 83.79656753260203, 20.92830812787762, 87.61304507429955, 35.04106670174526, 19.225182881764987, 53.14011044515796, 11.093660240251694, 26.55037006920778, 11.950868522522383, 17.025062070020603, 55.453160066905795, 78.81732688954186, 14.608384120242711, 23.22581402130688, 38.507733818358105, 72.70890082886099, 13.09961930999405, 33.56648515795162, 40.32549247614137, 10.326727861917437, 59.90328517804977, 39.10264391308975, 12.209624938503216, 14.701964791287411, 27.723120876618125, 7.566106228076202, 19.4528942855951, 162.0893879994879, 20.064877175205453, 38.97557168787196, 68.61960419309007, 74.2251910811022, 26.452195619190583, 55.13805963221906, 23.08616000799918, 23.11155210606858, 72.60924888166147, 25.484220596336645, 26.16621694466258, 9.200951888443793, 17.380098724803965, 61.68656273165814, 31.009585646150537, 57.06312592586306, 9.437212602453, 20.483624747680395, 27.36687023145639, 22.240614869978998, 13.451757807853639, 8.36591369813065, 32.919169731089994, 21.816360229704703, 10.846195762925586, 17.454378567598567, 62.1394601558576, 5.889586257331782, 42.59477173116534, 12.489538783720771, 83.77743358263311, 10.067653924425105, 124.38121144785546, 27.395581352740045, 6.629887191250421, 5.532867570500535, 61.068908523561284, 22.656478064386572, 5.156186646951924, 37.7616079841412, 20.834247609437416, 21.685861055477496, 6.181515898204998, 35.67283226827724, 15.789597029244629, 8.01625121634514, 46.8792484296625, 5.519145619321616, 32.293984748001, 14.664409069816504, 93.26553173844454, 58.7875135362388, 36.30755887718558, 27.598314651861564, 45.449548335008615, 20.965790143730267, 13.159282102250751, 70.99487512062983, 86.55709578680582, 7.504247076840858, 6.381974333069462, 7.163725769347953, 12.283981106310469, 5.862617445085807, 79.71949970049468, 9.832433139549103, 53.78625479949645, 118.13985815008118, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([3730237.416182438, 5019560.667896746, 5019647.750091376, 5161728.125, 5222408.023400646, 5228896.875, 5238084.375, 5244067.125951538, 5267277.774056396, 5268556.027662415, 5278541.781277664, 5356905.579807587, 5414651.5625, 5418717.621636233, 5419006.242028584, 5419611.20596169, 5422655.547771536, 5423485.657331423, 5423785.250013288, 5431255.487324032, 5432276.5625, 5507138.191394898, 5523045.322009408, 5541835.6962849, 5543609.375, 5547750.0, 5548679.6875, 5549605.076498646, 5549615.618042544, 5550364.0625, 5550584.356816662, 5550852.380327474, 5551285.637257465, 5551823.007203219, 5552409.019774921, 5552599.281743918, 5552638.958560795, 5553033.028639563, 5553555.822267793, 5553579.130838785, 5553824.99342174, 5553882.8125, 5554090.625, 5561576.749912533, 5573690.555637892, 5575802.929692741, 5576228.023902994, 5578172.75076017, 5579197.853919722, 5579516.488819366, 5580612.510010625, 5581473.4375, 5581956.119701176, 5582216.825205612, 5582237.5, 5582269.174109464, 5582446.875, 5582484.375, 5582745.3125, 5582842.1875, 5582876.5625, 5582937.950300649, 5582948.946395649, 5582982.8125, 5583002.334904228, 5583023.162951639, 5583053.478925502, 5583058.2551750885, 5583322.053864659, 5583348.4375, 5583387.3122568345, 5583409.471810587, 5583421.882920942, 5583452.141410394, 5583481.250975123, 5583523.260128219, 5583658.832858019, 5583661.303976903, 5583720.3125, 5583759.365481995, 5583767.790903085, 5583784.832693244, 5583908.9527697265, 5583913.93022922, 5583932.778152081, 5583965.3276684405, 5583992.115973128, 5584002.393659015, 5584090.625, 5584220.897022432, 5584226.5625, 5584230.472716278, 5584250.6573109515, 5584264.0625, 5584401.530307177, 5584423.4375, 5584515.581644, 5584639.529331756, 5584671.875, 5584679.203971888, 5584692.935830882, 5584744.845232652, 5584753.538768477, 5584794.485275053, 5584809.375, 5584829.016926202, 5584848.4375, 5584884.375, 5584942.1875, 5584981.683665264, 5584984.244593974, 5585030.818458845, 5585065.224156928, 5585071.979637218, 5585102.768074253, 5585148.096920767, 5585311.354438462, 5585313.612129321, 5585340.116596079, 5585376.475088858, 5585381.76994575, 5585454.152559825, 5585454.6875, 5585465.275860954, 5585514.415415204, 5585570.3125, 5585620.3125, 5585639.90531311, 5585642.1875, 5585663.120186811, 5585757.977524614, 5585771.803926541, 5585855.37545169, 5585875.0, 5585900.0, 5586009.493079927, 5586021.6160080945, 5586078.313440374, 5586087.388943756, 5586088.504538061, 5586210.9375, 5586212.5, 5586225.329284863, 5586252.758412176, 5586328.872352573, 5586337.028108256, 5586363.919269133, 5586373.160093114, 5586385.9375, 5586408.495809079, 5586457.8125, 5586492.98501054, 5586518.708781763, 5586530.706423057, 5586544.67993812, 5586593.473399634, 5586594.782649671, 5586609.741356266, 5586618.184709309, 5586636.768692237, 5586700.884581792, 5586723.979328729, 5586768.75, 5586808.729681241, 5586832.795457445, 5586849.105625139, 5586899.545196508, 5587087.112681364, 5587117.402921423, 5587138.785092754, 5587162.359160106, 5587170.3125, 5587276.5625, 5587279.313893995, 5587284.700936939, 5587350.0, 5587351.033133585, 5587365.811945483, 5587367.019002272, 5587376.222358797, 5587376.506497453, 5587377.840763217, 5587379.439627448, 5587393.296279931, 5587417.501151053, 5587434.375, 5587434.555970972, 5587554.8042025985, 5587563.959773107, 5587571.875, 5587575.0, 5587668.414793845, 5587670.3125, 5587688.272583288, 5587693.269681939, 5587769.958028608, 5587792.111010771, 5587831.25, 5587851.706969317, 5587881.1604670845, 5587886.599851006, 5587891.847859924, 5587913.702705255, 5587932.8125, 5587987.5, 5588002.724198806, 5588009.015410579, 5588015.391057089, 5588034.23674634, 5588057.712650927, 5588097.403700575, 5588137.933960031, 5588160.175750333, 5588200.0, 5588220.839428418, 5588229.6875, 5588294.801839446, 5588319.08580587, 5588331.593533648, 5588370.3125, 5588393.75, 5588396.216945539, 5588397.810083803, 5588422.73076958, 5588426.918266401, 5588434.11183498, 5588610.926457085, 5588705.596043477, 5588789.0625, 5588803.826190489, 5588892.154007598, 5588931.25, 5588976.414383513, 5589112.856547811, 5589267.534250668, 5589280.480948323, 5589303.442352149, 5589324.043647939, 5589337.592759265, 5589351.544527169, 5589410.9375, 5589427.595787654, 5589731.740631131, 5589735.393464477, 5590738.205173423, 5590904.191972638, 5590972.884281058, 5591087.226488211, 5591179.7809039, 5591390.715402033, 5591525.0, 5592119.885861375, 5592506.841403291, 5593053.939869674, 5593531.11949742, 5594681.163518058, 5594721.350363408, 5595058.710015425, 5595440.541589973, 5595451.5625, 5597454.023924107, 5598265.625, 5599652.829716205, 5602424.808610313, 5602515.672583848, 5602536.018747677, 5602747.6221868675, 5603300.0, 5603572.979210108, 5605780.551118372, 5609006.201394531, 5609016.3376842495, 5609045.3125, 5609179.2416559495, 5610841.431030449, 5645730.360039421, 5705446.659723519, 5734254.869234998, 5735071.439207428, 5737568.639324934, 5738409.95160313, 5738568.75, 5738678.521916312, 5738975.1819590535, 5739426.294235556, 5739885.056532273, 5744763.594450382, 5745396.186565069, 5751078.125, 5782682.449202309, 5784345.3418621225, 5788564.0625, 5788755.371079109, 5789304.628355688, 5789340.968518987, 5789503.790615244, 5789789.812212096, 5790701.5625, 5791879.6875, 5793013.820637851, 5795687.424266184, 5797562.5, 5798000.0, 5804891.729042403, 5805827.03346039, 5810737.5, 5811290.625, 5816783.702729525, 5819766.629830079, 5825751.561772043, 5827847.65534758, 5829900.566340538, 5830856.993524332, 5831465.625, 5831780.518471478, 5831837.1085899845, 5832698.697103662, 5832865.900162347, 5833040.768518635, 5833324.459540681, 5833437.263844535, 5833551.48543831, 5833702.856643798, 5834174.309696798, 5834470.893004019, 5834490.566174337, 5834758.267231914, 5834926.2574416455, 5835017.1875, 5835043.095891487, 5835048.606420053, 5835161.62423628, 5835244.398445296, 5835305.327686304, 5835421.875, 5835457.043894718, 5835494.714726623, 5835602.43076919, 5835632.8125, 5835773.846650973, 5835793.974192851, 5836047.840363053, 5836390.616211117, 5837188.843096104, 5841830.840015682, 5842518.043593669, 5861440.28091718, 5866528.125, 5883888.533443135, 5884220.3125, 5884699.310332402, 5885235.735400519, 5885311.330617965, 5885759.375, 5886297.821621897, 5886337.703941904, 5886374.766569901, 5886946.678652994, 5887198.782315209, 5887267.323772342, 5887382.8125, 5888604.344603272, 5891462.004811641, 5891644.415492653, 5892743.75, 5894315.129367176, 5894401.394589689, 5894622.773900152, 5896654.879218882, 5912850.118654755, 5921131.25, 5930753.653092755, 5932273.4375, 5935228.6217706455, 5935335.772612332, 5935351.1227262085, 5935519.0322889825, 5935636.84838431, 5935807.250239974, 5936055.843133065, 5936180.703628543, 5936292.044592765, 5936434.324009342, 5936534.16593095, 5937311.03984899, 5937336.883002973, 5937346.875, 5937635.014728833, 5937670.257934178, 5937971.875, 5938018.75, 5938031.25, 5938410.9375, 5938640.861560469, 5938745.3125, 5938902.502481794, 5939151.396414947, 5939165.399483167, 5939222.413218681, 5939230.42382395, 5939384.0170639735, 5939737.424942786, 5940003.11329518, 5940782.794080107, 5941143.303889259, 5941214.735053501, 5942600.0, 5943630.639434699, 5946176.5625, 5946215.625, 5947079.6875, 5947276.808520074, 5950123.620244936, 5953814.612985356, 5956637.49438581, 5967128.106086635, 5980671.394033814, 5987656.660813475, 5996175.997680735, 6003326.253971907, 6023776.5625, 6024913.766758877, 6029575.078490091, 6029582.663521072, 6030700.0, 6031750.913360127, 6032489.22470152, 6033767.21856952, 6034393.944858473, 6034416.794127747, 6034609.375, 6036978.573756738, 6037507.8125, 6039115.625, 6039203.801615596, 6039431.866852487, 6039543.75, 6039918.147215511, 6040238.2063740995, 6040275.0, 6040978.022108209, 6042482.836279359, 6042511.253463909, 6042646.048525039, 6043747.321323791, 6045376.5728415325, 6046272.653403825, 6046958.433676252, 6048001.5625, 6048503.9251380805, 6048915.088577136, 6049168.155249158, 6049709.375, 6050335.495507977, 6050368.806712803, 6050564.988130957, 6050675.588165325, 6051582.967166108, 6057162.5, 6064364.0625, 6065299.232888152, 6066094.990530852, 6066424.386742779, 6070995.105240656, 6074680.803713139, 6076361.546290961, 6078108.196273758, 6080343.976563349, 6080404.6875, 6080410.453792031, 6080414.0625, 6080475.0, 6080646.875, 6080684.945490876, 6080693.146866293, 6080851.5625, 6085453.668856461, 6085946.875, 6086294.621814853, 6087521.65526846, 6088062.987847214, 6088152.317713743, 6088191.8376913, 6089120.576174234, 6089439.612174291, 6091136.3294163775, 6091455.396587726, 6091687.632231164, 6092338.087695743, 6092392.590110787, 6092929.403956095, 6093461.985349039, 6094535.283428137, 6094839.245878763, 6096674.587952832, 6097667.553460771, 6097707.8125, 6098550.705138567, 6098556.757548676, 6098638.217626497, 6099362.2866766285, 6101121.938941492, 6101262.021420351, 6101412.924143529, 6103176.827319154, 6103452.7466614, 6103535.585054417, 6104191.03719096, 6104350.0, 6104623.247754259, 6104707.584033805, 6104830.68701393, 6104910.174102194, 6105036.760469394, 6105075.0, 6105102.62631752, 6105307.579352703, 6105452.880715825, 6105526.365021945, 6105528.332317079, 6105535.9375, 6105946.815401421, 6106081.440817517, 6106398.351442693, 6106422.462155149, 6106484.375, 6106569.876083761, 6106602.597963187, 6106762.4247057205, 6106975.980035723, 6107574.893429464, 6107631.424467735, 6109739.0625, 6110553.125, 6113676.779197085, 6114533.837930495, 6115010.201867866, 6134560.951848817, 6152193.75, 6153667.342982528, 6153744.055482165, 6155964.0625, 6155981.829308821, 6156324.983590423, 6162615.453326673, 6162958.241436607, 6164714.4165607905, 6165348.476150045, 6165631.690662964, 6165725.438156557, 6166057.118860962, 6166198.326655829, 6166335.776352119, 6168140.616171342, 6168334.0898743905, 6199626.505315038, 6201381.63855839, 6202028.500696107, 6202576.130885523, 6202681.678123145, 6203524.399987051, 6203598.4375, 6204114.797291924, 6204237.820400459, 6205147.845398804, 6205432.259031229, 6206707.203758181, 6206791.918343225, 6206928.188878034, 6208826.5625, 6208843.488041013, 6210211.038275444, 6210277.592968094, 6210578.125, 6210645.830235019, 6212217.631120843, 6217032.8125, 6247431.25, 6248973.4375, 6250309.375, 6250688.421534134, 6250781.25, 6250914.101571649, 6251490.231545434, 6251717.0688543655, 6252209.317188153, 6252243.528094588, 6252583.697860833, 6252966.872322578, 6253158.828721619, 6253660.9375, 6253801.159230032, 6253805.989022348, 6254219.579256844, 6254820.3125, 6255851.991221951, 6286992.1875, 6319246.875, 6341346.365839717, 6343030.888645632, 6350312.010431691, 6356710.024663039, 6366251.524592504, 6384735.527223453, 6390066.327309722, 6391065.625, 6396189.0625, 6396285.9375, 6399461.774613611, 6419807.033534338, 6424729.324841234, 6426217.1875, 6426231.476518169, 6428744.693198168, 6431113.494993064, 6453930.049742526, 6464004.6875, 6469523.4375, 6487168.7083197, 6492083.890443106, 6527407.844491072, 6540014.0609250935, 6540333.863806312, 6604065.625, 6604406.25, 6616918.550780628, 6618817.150527176, 6618853.125, 6629517.301267397, 6643530.252924536, 6714424.229557082, 6717279.6875, 6792071.875, 6794882.7105940925, 6932277.813867069, 6932973.369576628, 6934257.960647747, 6978118.133724869, 6980697.974444984, 6994845.3125, 7003339.831063425, 7017671.6594257485, 7074192.966448725, 7080037.938251889, 7084827.440579321, 7100301.784169343, 7115010.2001755275, 7122007.780872897, 7178600.801805525, 7179266.671738382, 7179762.655527927, 7180989.881064908, 7181283.8813502425, 7181866.999893084, 7189480.048389455, 7190487.5, 7191243.445919155, 7192748.804872984, 7193472.998070012, 7193784.35320484, 7197385.9375, 7205301.5625, 7207871.200848552, 7208951.3811602825, 7210182.153847048, 7219081.25, 7219094.067070765, 7220470.43714907, 7238001.726276628, 7238871.875, 7239096.875, 7240265.917114155, 7241470.296929509, 7241975.349879822, 7241985.728764236, 7242911.804065118, 7243008.266073765, 7243456.174452483, 7243914.0625, 7244268.75, 7244513.174900634, 7244858.412994753, 7244913.215797059, 7244929.6875, 7245042.005518773, 7245282.783491576, 7245881.340553485, 7246066.912240737, 7247747.150531155, 7249167.1875, 7253032.8125, 7253908.416368454, 7258394.673851297, 7263332.416592298, 7264609.671399093, 7264628.125, 7265044.191047047, 7265891.799529719, 7266253.1722043045, 7266496.875, 7266514.543393746, 7267789.0340145035, 7267992.595013811, 7268032.445166361, 7269322.801115253, 7270876.677090424, 7276064.0625, 7279566.840565281, 7286298.4375, 7287160.93924611, 7289331.25, 7290393.75, 7290395.408364966, 7290574.840762363, 7290754.100119684, 7291501.5625, 7291615.7034346685, 7293092.1875, 7293325.59402209, 7294459.260506461, 7294683.780802121, 7294823.4375, 7295177.231916615, 7295717.1875, 7296502.292635289, 7300435.202961152, 7300600.651974156, 7305725.755770658, 7315786.8244914, 7316057.8125, 7321783.809036184, 7324250.0, 7324990.343090462, 7325909.375, 7326228.044425812, 7326580.856870017, 7327803.125, 7328718.129435879, 7328804.6875, 7329447.717352176, 7329607.654067576, 7330201.395527519, 7331255.8166728215, 7331676.44923459, 7332429.6875, 7332525.26692174, 7332526.5625, 7332543.309170097, 7332555.9799516555, 7332615.4856390385, 7332765.625, 7332992.067605662, 7334044.573746558, 7334398.4375, 7335499.670101341, 7336367.064040636, 7337654.6875, 7338733.249983333, 7338774.412385746, 7338901.5625, 7339419.83454298, 7339593.349747728, 7340693.087968424, 7343851.224740906, 7347163.776983246, 7348447.391250224, 7348819.474744964, 7349370.0768568115, 7349518.75, 7349553.739497755, 7350004.401912952, 7350506.772416819, 7350618.75, 7350672.557620768, 7350812.5, 7350939.0625, 7350965.776881181, 7350995.006862464, 7351231.25, 7351300.720553232, 7351367.1875, 7351376.144349247, 7351402.636373084, 7351501.226641242, 7351831.25, 7351832.446353484, 7352027.345146394, 7352114.0625, 7352225.962594893, 7352793.75, 7352798.4375, 7352799.642821131, 7352992.09032759, 7353000.128139452, 7353189.519349005, 7353473.4375, 7354018.75, 7354084.458162492, 7354224.772589176, 7354239.854904564, 7354384.854680248, 7355007.583428219, 7357441.6452046065, 7358954.6875, 7360857.65962234, 7362689.79562671, 7365360.358240478, 7365980.900468955, 7373243.075570752, 7376057.34307134, 7382025.0, 7385922.323819574, 7390683.7126739975, 7390921.968976471, 7390929.522809181, 7390959.375, 7391561.2763613835, 7392089.813230282, 7393050.434477628, 7393585.503330627, 7393888.467296639, 7393946.217606279, 7393977.797973316, 7394121.3162552565, 7394667.117515757, 7394831.981603861, 7394847.489838398, 7394908.726440112, 7394969.6776564, 7394970.180669036, 7395088.082333939, 7395095.3125, 7395257.069287272, 7395472.488510308, 7395542.392871405, 7395551.5625, 7395590.625, 7395622.571204733, 7395750.0, 7395812.5, 7395832.784901742, 7395942.011515893, 7395967.803776592, 7396060.969027025, 7396173.563482327, 7396223.4375, 7396400.334565212, 7396537.802599783, 7396579.825787596, 7396610.556127461, 7396990.625, 7397388.3505396405, 7397675.0, 7397840.2654422065, 7397865.586153626, 7398188.860281276, 7398225.41326543, 7398378.125, 7398875.955732237, 7399242.1875, 7399323.4375, 7399326.448993951, 7399342.645518405, 7399345.124612839, 7399354.286101029, 7399403.125, 7399412.386617943, 7399449.270085177, 7399462.7512242235, 7399475.747120882, 7399602.25570154, 7399657.751919538, 7399666.923890667, 7399707.8125, 7399860.9375, 7399865.625, 7399866.480208127, 7399995.94789484, 7400059.375, 7400087.110419112, 7400293.449368858, 7400301.5625, 7400411.659636232, 7400438.704371938, 7400471.535450383, 7400474.42545564, 7400620.122089295, 7400626.568816661, 7400642.182701623, 7400738.115372757, 7400775.7677100655, 7400794.7655887995, 7400876.5625, 7400910.9375, 7400970.3125, 7400997.665341356, 7401034.819278671, 7401092.1875, 7401096.832093507, 7401257.682177052, 7401354.843598809, 7401376.5625, 7401436.854856275, 7401482.30319329, 7401546.875, 7401563.503954987, 7401603.980185097, 7401614.0625, 7401697.675521537, 7401707.8125, 7401717.1656083185, 7401755.693768868, 7402066.09470179, 7402076.11682356, 7402121.946223555, 7402346.875, 7402365.534766277, 7402615.863750712, 7402788.137769622, 7403053.057337919, 7403136.915189061, 7403505.276874305, 7403601.334477443, 7403761.919039184, 7404020.261164194, 7404132.215285254, 7404186.534560615, 7404670.2482002815, 7404678.0831608, 7405585.833656705, 7405647.705375759, 7405748.973809456, 7407744.656326639, 7408478.0150993345, 7415070.3125, 7416603.125, 7416781.274566465, 7416967.1875, 7418241.833628202, 7418616.791472609, 7418920.3125, 7425110.762083877, 7428247.639590015, 7435984.216584144, 7437708.251188456, 7437929.6875, 7439482.8125, 7439806.25, 7439931.372540092, 7441788.454978455, 7442088.266495311, 7442582.384306222, 7442622.444696558, 7442822.022072397, 7445191.577225593, 7447373.6188576585, 7454163.874609631, 7454948.9704896035, 7455260.9375, 7456057.222081182, 7456403.125, 7456411.663230565, 7456437.5, 7456678.883873683, 7459060.361150913, 7462431.923830926, 7462727.416712906, 7464146.870611062, 7464395.98680374, 7464481.192808854, 7465015.226636825, 7465798.4375, 7466016.61881552, 7471738.592959026, 7473583.665333003, 7474973.4375, 7481715.831029624, 7482641.638756992, 7484443.75, 7485820.021995552, 7485951.5625, 7487732.7378489245, 7494965.625, 7496850.152482054, 7504576.478621648, 7505986.939771345, 7508043.59489478, 7511993.195463485, 7512480.687958895, 7513231.25, 7514378.120966929, 7515370.030253065, 7515430.544976918, 7515448.59591329, 7515534.140241677, 7515630.323887629, 7515667.1875, 7516528.663527252, 7516538.497627822, 7516558.568892219, ...], [7.099591508560082, 42.698683061189854, 5.226304997608756, 48.34640750138965, 15.81129227077243, 87.30808459609796, 52.19313101793568, 7.58112731926365, 5.684781208827573, 7.524753899974565, 9.010019299411237, 24.77860288762752, 61.299712860168334, 70.13428860105209, 232.06120768479104, 11.574964894227664, 21.672450317833704, 73.20623466255205, 8.810693324223209, 7.920625295547651, 97.96076656908153, 5.26491702450558, 14.977879130950642, 8.163008983298951, 50.093853676288184, 56.83835809686895, 44.96672439674664, 16.665171627328274, 7.600723226999086, 81.7156960258458, 17.281380239625527, 19.356339817999114, 85.00460489617056, 30.742309076868715, 133.27914370170805, 25.296853057816595, 26.626055113102378, 80.92633428552875, 7.013377017136052, 10.356425268493858, 14.916495316083294, 42.27054694169054, 114.92261192890008, 9.495063186717651, 41.94612251352197, 25.186977540030036, 137.5953126971241, 10.200793647122058, 8.000333006631314, 42.93233447655564, 155.14416362362994, 51.575738133380625, 20.383390385749674, 10.605002652381016, 29.652406629955646, 59.22696606341767, 43.46276629615346, 34.40184030232291, 33.61751294612257, 71.04476638189973, 48.46106338218998, 7.774649304238179, 6.869542178941735, 53.562052462852016, 15.854210288962095, 40.60509631845334, 6.125694257264956, 53.59097387291075, 21.531575014089764, 32.267273227881155, 14.271153192724729, 18.41351904579975, 9.338109770817063, 30.583769853898907, 14.945227434026398, 73.47117203395472, 50.28388217336673, 16.550239086048503, 51.68949447085273, 28.337964420448927, 38.495331678405265, 17.134168176037562, 29.460305573861493, 10.927067123850197, 22.56800529890934, 46.13947017598808, 11.01771640205272, 19.458962336172796, 77.69389740528229, 49.781283426672296, 86.56492679033306, 10.097129090214683, 80.03640806829705, 42.253298447932686, 14.186336700688237, 41.081249862646764, 7.110101131795222, 5.556174595064342, 31.227928553909837, 21.659005031232077, 18.84315849365755, 8.96526351112126, 6.320929798369247, 27.47556737637062, 48.3496382236824, 6.186037459940719, 53.78858492386744, 44.75795037289787, 30.73563237097896, 7.240314299842703, 75.90178021402764, 40.41627384022806, 22.54275992736482, 15.355922353316778, 23.0498455251198, 6.22510668482676, 45.372919828178965, 97.27608072813716, 13.30308845481361, 32.994814699721104, 12.050891694538, 13.231361022775378, 108.03977343877091, 96.86683044627979, 20.100262971272848, 139.58899957144152, 90.841368769726, 40.38229526074915, 140.74887327901862, 9.917318495831777, 105.28921258280776, 14.677358191760508, 7.8725719236395495, 111.47837097631631, 108.14068009571746, 15.411521382726233, 24.289088474994234, 22.3309960685404, 55.35802063164929, 94.42531126791954, 68.18335028118616, 48.05972146127119, 6.831075862402214, 13.706910805829562, 12.737999233350195, 66.5946016548328, 44.137538728222395, 38.05796328469537, 38.845057897116014, 18.393789737831103, 48.675501470187825, 28.54076749197447, 31.684654417642264, 21.069138987161363, 25.385284995044277, 9.107983118470143, 10.389535356137841, 23.007397204087184, 44.925034620437245, 5.878152370516414, 23.02376022356918, 17.506129955685964, 66.83867156950382, 17.70227970953318, 41.39707345477598, 24.758029349065595, 69.88915663429589, 114.92673478271742, 42.316099228909934, 66.31887811360465, 9.215088200791087, 62.74409858227729, 78.6792890660666, 53.40020161561284, 21.67552704957679, 33.20181745574063, 85.96163192853479, 7.67228169509447, 25.589601938360534, 8.114538756905398, 14.73226551432782, 19.72050365891515, 24.440245578318496, 29.85275535340065, 11.656108149828073, 95.5663564310229, 26.3953195457585, 15.405798970742012, 14.901128063185904, 36.92683651130405, 28.88014958438261, 23.311212942445785, 52.99606355931594, 19.01821315277396, 13.380275403626655, 23.079019123830342, 6.475167351235087, 86.44571146459768, 7.159953244541261, 26.87128831821515, 6.159797094499944, 25.5798829327155, 23.015858224860633, 41.421531135666754, 66.44903647075557, 13.606194754002127, 13.72778266685393, 32.44157380290413, 10.918271649924531, 75.57849677872908, 5.643978395111621, 11.881279979746745, 19.226901921697323, 29.240229615790113, 9.820585099484836, 31.733938644821794, 10.413458271370981, 82.81857122973199, 24.047995988688015, 47.53725540107625, 30.010043482209518, 10.23441848769484, 20.30972528713759, 12.793406706210433, 6.836673688772723, 5.09331163488729, 14.899585391203777, 10.23925357108235, 66.51691327242746, 173.55002559717855, 38.186581707681, 67.0895600757086, 26.30583055848859, 85.81954435247951, 52.10865667740114, 19.172234013366563, 161.59191016689368, 19.42012613371101, 20.690659606366616, 28.174027964678814, 58.24414374275026, 21.206558445460107, 22.82000322423498, 6.405061628952583, 12.443489562353564, 12.52437010410475, 10.360656020056819, 13.992317460004575, 9.411650261059604, 15.297650991426034, 66.18586021063035, 22.406784237542897, 95.87688493648051, 6.622895024298856, 5.804386884087452, 26.92391800010102, 30.613499273268303, 12.895817031644174, 14.764566640852896, 30.237053115395188, 6.38786889249513, 58.676738141321806, 6.2305985675154565, 22.888257859649027, 8.31190177863164, 7.142974247753238, 18.93701115958057, 61.408956363941414, 10.479718808071013, 25.34108673771111, 53.944392276276815, 19.259041388263597, 35.49934350121595, 7.008985516147787, 121.76686817322533, 116.70785768933209, 24.896855741538126, 6.107204174914191, 8.988231997587858, 6.741610482125643, 98.1782013153325, 52.77674178138807, 82.15694043160667, 5.827567481467467, 99.2202893659383, 49.91753185537731, 20.720882468021465, 64.51474541221225, 50.26472630591892, 13.598178626735454, 6.769382680125183, 56.36490223361801, 8.6844778037151, 32.86651818663478, 9.639801478485609, 7.308150893832297, 32.74410776291709, 66.83472619885357, 43.33859589959067, 25.288288596561365, 46.27297507109869, 76.80446957032619, 142.59017344590848, 19.17799543431505, 126.91190588812131, 31.9802811261643, 82.11221878331544, 6.185840760473894, 20.936476377303563, 60.11890763455948, 19.0751523118476, 17.65180172709618, 18.808959132974582, 43.05059850853982, 8.781011207300262, 5.2343210116212955, 11.55926960660894, 11.586882987103271, 21.702452513530687, 13.216586705967769, 15.005069864075764, 15.601236904483697, 14.008635497874282, 19.78385120258233, 6.150621138724652, 27.412448912936565, 57.97627013890102, 23.68634252095957, 60.35797660406104, 72.7189581828005, 15.626968187740397, 18.41677912529358, 99.23059933985806, 77.84716565087794, 58.443225208934024, 19.175564516497648, 72.60237692378487, 24.00707905997421, 56.20954946131231, 15.134354158989684, 14.431813755882668, 173.35360968621364, 6.761753203636939, 24.837894739160838, 6.684326574444242, 127.36395454820936, 23.203516493868978, 63.540073813270745, 46.084891559081555, 56.121160781061, 19.78899298131372, 6.455870266586192, 7.751891635119143, 64.89260927220974, 79.53801219778381, 32.90617488666108, 118.73565731370773, 41.26192347848861, 5.6334092731446805, 20.409280409406925, 74.31329645293239, 21.129112223785995, 30.31701419983648, 41.04646993416118, 38.61575622004224, 46.355780693844736, 72.48183955501747, 126.57305303079568, 36.682562604300585, 43.948318328461745, 52.60592768265398, 141.28110509899284, 40.68008204096536, 63.27495239907073, 54.58521332609673, 8.066947832441977, 6.532272103121083, 28.84144460267845, 52.96626067405244, 19.513547592946736, 49.552156856279424, 25.988696105955437, 9.28865666970876, 135.11855669174136, 5.132695620184646, 59.88742076437961, 73.80187828949279, 85.97665001716548, 120.8310231676991, 79.86900013071562, 104.15526725431266, 151.09186513361215, 62.83950356368463, 51.77905754569297, 53.91626851044733, 30.310771637452092, 75.20282778132292, 23.406074472351367, 24.722951611812878, 5.082535317296109, 23.037863257262803, 37.65246891667148, 22.18571447025687, 14.871763147015463, 54.78566456614361, 23.46564600272262, 86.62680552399198, 41.75257281446264, 100.47466485542932, 67.50553571351747, 71.69565669527935, 23.728265712882358, 22.079120804282653, 27.296193866205662, 63.94459149510445, 8.276600882216783, 39.39520593119351, 16.778577884788575, 8.008888332256655, 5.597200641320953, 35.81995918687749, 37.80493136140867, 21.127534039904916, 10.902562977492124, 84.55211426728002, 19.11572874922623, 6.79632672347974, 6.091336143649227, 9.50178723005258, 32.52100946407883, 46.36060350860342, 6.559816510675508, 38.402537437502005, 44.84476981820735, 40.21340226361072, 17.962390212448977, 48.70858204971331, 15.936232409558176, 26.180107411035365, 49.05753810261143, 69.32465710945007, 15.03292648853876, 5.475493479849378, 5.266222908665965, 11.905207641065235, 16.219247199215054, 19.06085645603469, 5.649358952259153, 61.488917519101385, 10.11396024099716, 12.1129549361639, 148.55775079503763, 48.137871639698794, 13.487774377456166, 28.90684141786458, 75.24132976476868, 7.2851499968180855, 25.005121487230443, 91.79081480621802, 87.50510977389337, 35.20613261557282, 9.07323120205564, 13.02620699948873, 25.012356822164104, 49.71308669934645, 47.060166095633036, 90.59991525540032, 16.747432696412453, 108.26791075528928, 8.95335603634301, 39.5661873656398, 83.35134023852112, 55.4936460761655, 69.968322009813, 13.052191705085045, 42.461270383801434, 17.518059565786523, 29.752052763510406, 101.8875374396318, 198.30040729567895, 8.562584731848222, 10.063582602946987, 69.80973521035033, 16.051722222242123, 12.111320876435814, 11.801032554045937, 23.166171467779144, 21.111089640247968, 95.29588129107198, 16.735691596742935, 23.96324631032257, 51.74772789071833, 20.082515526455936, 8.3859916089281, 13.573560392109739, 16.547630284323983, 51.35960298663571, 12.44341192532976, 5.483981111249239, 5.146141240496766, 10.809873523043933, 11.229144272488636, 44.30535048149434, 35.72651008824489, 17.864703557558045, 21.045498141773578, 80.98261393929968, 25.340775771722875, 96.74559519793303, 98.72704267853152, 14.136780979352519, 13.156789897589922, 52.29934850174594, 5.055690718681304, 53.5877682543029, 13.329655859247149, 82.50241140390983, 30.14828851214909, 35.64809009234276, 21.92339478812543, 63.09773384451458, 11.035810924654953, 5.3485030966649205, 7.099012075401837, 126.47270885592465, 69.32553497255883, 13.503626949224042, 8.92226569221303, 14.662084441453864, 27.325705551460217, 26.581838233465245, 5.347935809775228, 29.991801337041935, 39.674222025675256, 9.521610039579997, 35.36777293259178, 11.935551960214477, 14.996483898289098, 32.444471648095046, 25.84783767410223, 38.34199136002303, 45.630803739011064, 12.172508597372435, 5.812767094562311, 14.325197647937335, 58.366005738210376, 92.30320666425862, 41.50655847013961, 7.770792455474573, 5.554730376512234, 19.756921636544348, 32.36218936277033, 7.07972543614272, 28.351430119129937, 10.70948242944959, 55.263071895236685, 69.00787734884403, 16.597026311346834, 22.203530275126187, 9.72169059648643, 29.416967233930137, 34.54634160882573, 161.2599750892353, 11.668383975786206, 5.889448723051315, 13.181954852692359, 57.259531305581305, 9.113733567876013, 56.203907727178745, 75.54897143433986, 20.439508922611292, 5.821474605897427, 70.97261848655668, 32.39319778670002, 5.050378027534207, 11.712611623601532, 38.16301714012823, 35.11744144328245, 64.00771671144913, 39.24248777263159, 47.755149869856474, 46.37219896296798, 15.092553286358315, 133.15304874853916, 18.615040332507515, 27.430759182920198, 13.991689487694536, 19.8910462425664, 29.575474751416962, 8.908592884147845, 107.32612516623726, 22.51553817363051, 11.102423208278394, 19.444234261398847, 92.24414457358873, 6.133846856278372, 48.7437997950512, 73.98019037638856, 82.22930863199795, 7.477569525481653, 45.93334754066379, 61.931558527820584, 14.798965831170921, 61.022867905716694, 101.14969268411002, 89.70540351119456, 56.14749710867541, 48.737073202877916, 12.748428218024266, 32.76594144390966, 53.8306840595487, 51.68118154829265, 15.88140940680362, 31.58657247059611, 13.14488624588642, 29.488500923865985, 36.40669717084235, 65.14371970159195, 39.45778892011046, 46.10001869458729, 5.534635186376319, 14.935510011810084, 77.55990020241208, 63.182132465701194, 89.84332760224719, 26.764137909140707, 5.8112496489411445, 57.11302970209814, 15.393623740600072, 5.178742509188801, 5.759091696269724, 80.4074875578969, 59.17031857175982, 48.44392806317158, 13.874888698726682, 55.52017475097081, 73.30286430355399, 6.192354593944759, 21.869736737617806, 29.417886488567945, 12.58718760683857, 91.09067928198712, 8.746453693565272, 5.735228999332295, 7.373130569953709, 11.492817654141218, 5.148538260917653, 24.02139420559444, 84.51358984837982, 80.79959946566053, 15.569406900500011, 20.151201269665933, 80.48505608644629, 84.89048525068557, 17.12083278915593, 52.027637651281054, 10.683497342403792, 16.55477100396687, 10.503936046789134, 15.455552041459661, 59.76526972360381, 43.408547384060334, 66.58921881805718, 8.19295464955249, 6.187420650166443, 75.34727998548325, 5.837819292844014, 22.539765734567773, 7.165179499745701, 41.10661330554882, 72.22893743881532, 13.46591762544955, 37.79408098462976, 11.722487305831084, 24.990988981617058, 57.070225040555506, 23.503310459815474, 27.114574545107107, 43.38165237161327, 63.32928082083353, 11.411186263737683, 5.648151789981299, 22.48225167396263, 32.4718438216193, 6.458937513486529, 27.963390571309986, 24.255958835591372, 67.2186028247583, 5.252922842424578, 76.34808243867039, 82.30466746694151, 25.812165988959666, 44.6354057345478, 8.087752540996924, 16.205940188063163, 37.07675241657005, 23.102164769689974, 73.3635031740204, 34.47077391772089, 44.112346558825244, 30.587402974916657, 7.113983765056166, 9.701510530278927, 9.03898504236111, 13.170308552616849, 18.00371438569543, 74.09866758568702, 28.57811810101323, 74.18635557340424, 8.28750091346833, 88.12205276692292, 91.93434671001482, 11.280930622288645, 6.4624157302223795, 13.09293750913892, 51.49865036616835, 16.556902897538524, 58.678265862092154, 70.89445957443522, 159.00038287891047, 45.53055585081716, 113.38056533270037, 7.309289057640661, 85.70239003123737, 37.59073397874893, 64.12205239019228, 12.326700155402236, 6.924391842503147, 14.116777326160356, 30.248385435898637, 48.152719923312304, 36.27768725276394, 101.90222298848605, 88.74195129567462, 63.13162913681048, 77.00905763993218, 70.06951843993612, 10.278950147141316, 31.690891967767875, 12.761009720916142, 25.74480633120827, 37.195035367647606, 22.185020141246962, 101.42494035792853, 55.33365357764988, 75.67537318969437, 68.08793640382024, 6.67857783813794, 89.57582508767922, 14.435666826730797, 116.84889345044795, 14.50340646559769, 19.401730855130605, 59.96719352600019, 25.81434024044826, 9.229148355462083, 41.68520465719576, 142.94492458494227, 5.889815584439519, 37.06072358036591, 63.497847149471006, 92.6270416856485, 10.229733527639528, 9.061254747349373, 10.708944073712885, 12.987290380585296, 12.487319042439918, 14.113475190023445, 56.41282037230114, 17.947589770566942, 8.141115397427725, 21.410129031040505, 68.19733398155955, 52.95967113651194, 64.76937999915906, 31.82838836007759, 32.40698781024937, 9.085682546263227, 127.09497858765185, 19.63819373986903, 49.55108288738517, 116.38905437847335, 6.669725236634391, 84.89679291006952, 57.74667836228512, 13.708224210029226, 7.913162161652397, 59.77094460769754, 49.402857390879845, 32.53988495614972, 37.57234804611662, 5.446642055161584, 56.816949284970924, 6.789361124073655, 81.32320426532597, 97.55643603078077, 46.96521387710818, 23.777673049820024, 31.880382295617885, 12.642559883862226, 11.97052620010524, 24.701101852458713, 5.774915866300172, 42.17781403159971, 61.84137923670664, 28.340863862677523, 71.58930679794477, 30.391397720843493, 6.3863220632638935, 112.10269631557807, 75.2526777082481, 31.085030679433327, 12.902423075842892, 15.312224837559327, 22.021544515595956, 53.88064346791202, 17.354500482936874, 18.860291153355487, 16.90398091688955, 15.531296262335129, 7.995052660964228, 6.958738887809397, 10.652323789044894, 5.892180164726751, 27.212818476204905, 12.502791551533612, 48.08470555109572, 14.748657827118873, 7.977158076501062, 67.08465719294686, 7.283432609765101, 30.590054214070726, 6.1776535492317395, 17.941392834671603, 42.83127906189165, 35.22066166114792, 35.393529710062296, 12.423561741509905, 43.5421172442072, 55.9954807234387, 11.08484122878747, 51.879469618575584, 26.763895018960426, 9.358204086811678, 90.55504488506658, 46.61603570218044, 124.16823786052638, 18.19597762192004, 15.496163961624795, 49.28595539924518, 35.29741080383119, 49.889925267367126, 71.39050759902123, 58.96591612703766, 25.027560557043124, 14.22296869349187, 30.940713119411175, 43.592961378380195, 60.188282058173826, 52.34173105350689, 71.88829105003612, 50.45185397209059, 11.927980389770866, 96.3660162169096, 8.085135457576472, 41.48282584101734, 26.46818810087559, 12.73758248737931, 7.189094807862896, 18.83453393934374, 18.460352919997373, 8.254799085761999, 7.053839040026903, 70.92192132926131, 69.05375287273014, 63.33926747530776, 26.576746982099884, 18.080070710612734, 73.65285256098687, 85.41639564016168, 65.2068173637611, 69.62848782504273, 15.764249553285044, 5.235231369347475, 56.93102393197737, 20.78037210400053, 148.76165324663307, 14.938983971368963, 63.92402823083065, 11.463224903766186, 33.822186664865725, 80.38402031876832, 89.55547623739118, 125.04891332197336, 86.12604390903698, 15.22855984672217, 50.24417835804311, 34.7555307625025, 27.70335466988507, 26.19050203088498, 7.163098891939153, 171.44078291476782, 5.5025680182755154, 52.59108965578508, 83.79656753260203, 20.92830812787762, 87.61304507429955, 35.04106670174526, 19.225182881764987, 53.14011044515796, 11.093660240251694, 26.55037006920778, 11.950868522522383, 17.025062070020603, 55.453160066905795, 78.81732688954186, 14.608384120242711, 23.22581402130688, 38.507733818358105, 72.70890082886099, 13.09961930999405, 33.56648515795162, 40.32549247614137, 10.326727861917437, 59.90328517804977, 39.10264391308975, 12.209624938503216, 14.701964791287411, 27.723120876618125, 7.566106228076202, 19.4528942855951, 162.0893879994879, 20.064877175205453, 38.97557168787196, 68.61960419309007, 74.2251910811022, 26.452195619190583, 55.13805963221906, 23.08616000799918, 23.11155210606858, 72.60924888166147, 25.484220596336645, 26.16621694466258, 9.200951888443793, 17.380098724803965, 61.68656273165814, 31.009585646150537, 57.06312592586306, 9.437212602453, 20.483624747680395, 27.36687023145639, 22.240614869978998, 13.451757807853639, 8.36591369813065, 32.919169731089994, 21.816360229704703, 10.846195762925586, 17.454378567598567, 62.1394601558576, 5.889586257331782, 42.59477173116534, 12.489538783720771, 83.77743358263311, 10.067653924425105, 124.38121144785546, 27.395581352740045, 6.629887191250421, 5.532867570500535, 61.068908523561284, 22.656478064386572, 5.156186646951924, 37.7616079841412, 20.834247609437416, 21.685861055477496, 6.181515898204998, 35.67283226827724, 15.789597029244629, 8.01625121634514, 46.8792484296625, 5.519145619321616, 32.293984748001, 14.664409069816504, 93.26553173844454, 58.7875135362388, 36.30755887718558, 27.598314651861564, 45.449548335008615, 20.965790143730267, 13.159282102250751, 70.99487512062983, 86.55709578680582, 7.504247076840858, 6.381974333069462, 7.163725769347953, 12.283981106310469, 5.862617445085807, 79.71949970049468, 9.832433139549103, 53.78625479949645, 118.13985815008118, ...])
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);
([3730237.416182438, 5019560.667896746, 5019647.750091376, 5161728.125, 5222408.023400646, 5228896.875, 5238084.375, 5244067.125951538, 5267277.774056396, 5268556.027662415, 5278541.781277664, 5356905.579807587, 5414651.5625, 5418717.621636233, 5419006.242028584, 5419611.20596169, 5422655.547771536, 5423485.657331423, 5423785.250013288, 5431255.487324032, 5432276.5625, 5507138.191394898, 5523045.322009408, 5541835.6962849, 5543609.375, 5547750.0, 5548679.6875, 5549605.076498646, 5549615.618042544, 5550364.0625, 5550584.356816662, 5550852.380327474, 5551285.637257465, 5551823.007203219, 5552409.019774921, 5552599.281743918, 5552638.958560795, 5553033.028639563, 5553555.822267793, 5553579.130838785, 5553824.99342174, 5553882.8125, 5554090.625, 5561576.749912533, 5573690.555637892, 5575802.929692741, 5576228.023902994, 5578172.75076017, 5579197.853919722, 5579516.488819366, 5580612.510010625, 5581473.4375, 5581956.119701176, 5582216.825205612, 5582237.5, 5582269.174109464, 5582446.875, 5582484.375, 5582745.3125, 5582842.1875, 5582876.5625, 5582937.950300649, 5582948.946395649, 5582982.8125, 5583002.334904228, 5583023.162951639, 5583053.478925502, 5583058.2551750885, 5583322.053864659, 5583348.4375, 5583387.3122568345, 5583409.471810587, 5583421.882920942, 5583452.141410394, 5583481.250975123, 5583523.260128219, 5583658.832858019, 5583661.303976903, 5583720.3125, 5583759.365481995, 5583767.790903085, 5583784.832693244, 5583908.9527697265, 5583913.93022922, 5583932.778152081, 5583965.3276684405, 5583992.115973128, 5584002.393659015, 5584090.625, 5584220.897022432, 5584226.5625, 5584230.472716278, 5584250.6573109515, 5584264.0625, 5584401.530307177, 5584423.4375, 5584515.581644, 5584639.529331756, 5584671.875, 5584679.203971888, 5584692.935830882, 5584744.845232652, 5584753.538768477, 5584794.485275053, 5584809.375, 5584829.016926202, 5584848.4375, 5584884.375, 5584942.1875, 5584981.683665264, 5584984.244593974, 5585030.818458845, 5585065.224156928, 5585071.979637218, 5585102.768074253, 5585148.096920767, 5585311.354438462, 5585313.612129321, 5585340.116596079, 5585376.475088858, 5585381.76994575, 5585454.152559825, 5585454.6875, 5585465.275860954, 5585514.415415204, 5585570.3125, 5585620.3125, 5585639.90531311, 5585642.1875, 5585663.120186811, 5585757.977524614, 5585771.803926541, 5585855.37545169, 5585875.0, 5585900.0, 5586009.493079927, 5586021.6160080945, 5586078.313440374, 5586087.388943756, 5586088.504538061, 5586210.9375, 5586212.5, 5586225.329284863, 5586252.758412176, 5586328.872352573, 5586337.028108256, 5586363.919269133, 5586373.160093114, 5586385.9375, 5586408.495809079, 5586457.8125, 5586492.98501054, 5586518.708781763, 5586530.706423057, 5586544.67993812, 5586593.473399634, 5586594.782649671, 5586609.741356266, 5586618.184709309, 5586636.768692237, 5586700.884581792, 5586723.979328729, 5586768.75, 5586808.729681241, 5586832.795457445, 5586849.105625139, 5586899.545196508, 5587087.112681364, 5587117.402921423, 5587138.785092754, 5587162.359160106, 5587170.3125, 5587276.5625, 5587279.313893995, 5587284.700936939, 5587350.0, 5587351.033133585, 5587365.811945483, 5587367.019002272, 5587376.222358797, 5587376.506497453, 5587377.840763217, 5587379.439627448, 5587393.296279931, 5587417.501151053, 5587434.375, 5587434.555970972, 5587554.8042025985, 5587563.959773107, 5587571.875, 5587575.0, 5587668.414793845, 5587670.3125, 5587688.272583288, 5587693.269681939, 5587769.958028608, 5587792.111010771, 5587831.25, 5587851.706969317, 5587881.1604670845, 5587886.599851006, 5587891.847859924, 5587913.702705255, 5587932.8125, 5587987.5, 5588002.724198806, 5588009.015410579, 5588015.391057089, 5588034.23674634, 5588057.712650927, 5588097.403700575, 5588137.933960031, 5588160.175750333, 5588200.0, 5588220.839428418, 5588229.6875, 5588294.801839446, 5588319.08580587, 5588331.593533648, 5588370.3125, 5588393.75, 5588396.216945539, 5588397.810083803, 5588422.73076958, 5588426.918266401, 5588434.11183498, 5588610.926457085, 5588705.596043477, 5588789.0625, 5588803.826190489, 5588892.154007598, 5588931.25, 5588976.414383513, 5589112.856547811, 5589267.534250668, 5589280.480948323, 5589303.442352149, 5589324.043647939, 5589337.592759265, 5589351.544527169, 5589410.9375, 5589427.595787654, 5589731.740631131, 5589735.393464477, 5590738.205173423, 5590904.191972638, 5590972.884281058, 5591087.226488211, 5591179.7809039, 5591390.715402033, 5591525.0, 5592119.885861375, 5592506.841403291, 5593053.939869674, 5593531.11949742, 5594681.163518058, 5594721.350363408, 5595058.710015425, 5595440.541589973, 5595451.5625, 5597454.023924107, 5598265.625, 5599652.829716205, 5602424.808610313, 5602515.672583848, 5602536.018747677, 5602747.6221868675, 5603300.0, 5603572.979210108, 5605780.551118372, 5609006.201394531, 5609016.3376842495, 5609045.3125, 5609179.2416559495, 5610841.431030449, 5645730.360039421, 5705446.659723519, 5734254.869234998, 5735071.439207428, 5737568.639324934, 5738409.95160313, 5738568.75, 5738678.521916312, 5738975.1819590535, 5739426.294235556, 5739885.056532273, 5744763.594450382, 5745396.186565069, 5751078.125, 5782682.449202309, 5784345.3418621225, 5788564.0625, 5788755.371079109, 5789304.628355688, 5789340.968518987, 5789503.790615244, 5789789.812212096, 5790701.5625, 5791879.6875, 5793013.820637851, 5795687.424266184, 5797562.5, 5798000.0, 5804891.729042403, 5805827.03346039, 5810737.5, 5811290.625, 5816783.702729525, 5819766.629830079, 5825751.561772043, 5827847.65534758, 5829900.566340538, 5830856.993524332, 5831465.625, 5831780.518471478, 5831837.1085899845, 5832698.697103662, 5832865.900162347, 5833040.768518635, 5833324.459540681, 5833437.263844535, 5833551.48543831, 5833702.856643798, 5834174.309696798, 5834470.893004019, 5834490.566174337, 5834758.267231914, 5834926.2574416455, 5835017.1875, 5835043.095891487, 5835048.606420053, 5835161.62423628, 5835244.398445296, 5835305.327686304, 5835421.875, 5835457.043894718, 5835494.714726623, 5835602.43076919, 5835632.8125, 5835773.846650973, 5835793.974192851, 5836047.840363053, 5836390.616211117, 5837188.843096104, 5841830.840015682, 5842518.043593669, 5861440.28091718, 5866528.125, 5883888.533443135, 5884220.3125, 5884699.310332402, 5885235.735400519, 5885311.330617965, 5885759.375, 5886297.821621897, 5886337.703941904, 5886374.766569901, 5886946.678652994, 5887198.782315209, 5887267.323772342, 5887382.8125, 5888604.344603272, 5891462.004811641, 5891644.415492653, 5892743.75, 5894315.129367176, 5894401.394589689, 5894622.773900152, 5896654.879218882, 5912850.118654755, 5921131.25, 5930753.653092755, 5932273.4375, 5935228.6217706455, 5935335.772612332, 5935351.1227262085, 5935519.0322889825, 5935636.84838431, 5935807.250239974, 5936055.843133065, 5936180.703628543, 5936292.044592765, 5936434.324009342, 5936534.16593095, 5937311.03984899, 5937336.883002973, 5937346.875, 5937635.014728833, 5937670.257934178, 5937971.875, 5938018.75, 5938031.25, 5938410.9375, 5938640.861560469, 5938745.3125, 5938902.502481794, 5939151.396414947, 5939165.399483167, 5939222.413218681, 5939230.42382395, 5939384.0170639735, 5939737.424942786, 5940003.11329518, 5940782.794080107, 5941143.303889259, 5941214.735053501, 5942600.0, 5943630.639434699, 5946176.5625, 5946215.625, 5947079.6875, 5947276.808520074, 5950123.620244936, 5953814.612985356, 5956637.49438581, 5967128.106086635, 5980671.394033814, 5987656.660813475, 5996175.997680735, 6003326.253971907, 6023776.5625, 6024913.766758877, 6029575.078490091, 6029582.663521072, 6030700.0, 6031750.913360127, 6032489.22470152, 6033767.21856952, 6034393.944858473, 6034416.794127747, 6034609.375, 6036978.573756738, 6037507.8125, 6039115.625, 6039203.801615596, 6039431.866852487, 6039543.75, 6039918.147215511, 6040238.2063740995, 6040275.0, 6040978.022108209, 6042482.836279359, 6042511.253463909, 6042646.048525039, 6043747.321323791, 6045376.5728415325, 6046272.653403825, 6046958.433676252, 6048001.5625, 6048503.9251380805, 6048915.088577136, 6049168.155249158, 6049709.375, 6050335.495507977, 6050368.806712803, 6050564.988130957, 6050675.588165325, 6051582.967166108, 6057162.5, 6064364.0625, 6065299.232888152, 6066094.990530852, 6066424.386742779, 6070995.105240656, 6074680.803713139, 6076361.546290961, 6078108.196273758, 6080343.976563349, 6080404.6875, 6080410.453792031, 6080414.0625, 6080475.0, 6080646.875, 6080684.945490876, 6080693.146866293, 6080851.5625, 6085453.668856461, 6085946.875, 6086294.621814853, 6087521.65526846, 6088062.987847214, 6088152.317713743, 6088191.8376913, 6089120.576174234, 6089439.612174291, 6091136.3294163775, 6091455.396587726, 6091687.632231164, 6092338.087695743, 6092392.590110787, 6092929.403956095, 6093461.985349039, 6094535.283428137, 6094839.245878763, 6096674.587952832, 6097667.553460771, 6097707.8125, 6098550.705138567, 6098556.757548676, 6098638.217626497, 6099362.2866766285, 6101121.938941492, 6101262.021420351, 6101412.924143529, 6103176.827319154, 6103452.7466614, 6103535.585054417, 6104191.03719096, 6104350.0, 6104623.247754259, 6104707.584033805, 6104830.68701393, 6104910.174102194, 6105036.760469394, 6105075.0, 6105102.62631752, 6105307.579352703, 6105452.880715825, 6105526.365021945, 6105528.332317079, 6105535.9375, 6105946.815401421, 6106081.440817517, 6106398.351442693, 6106422.462155149, 6106484.375, 6106569.876083761, 6106602.597963187, 6106762.4247057205, 6106975.980035723, 6107574.893429464, 6107631.424467735, 6109739.0625, 6110553.125, 6113676.779197085, 6114533.837930495, 6115010.201867866, 6134560.951848817, 6152193.75, 6153667.342982528, 6153744.055482165, 6155964.0625, 6155981.829308821, 6156324.983590423, 6162615.453326673, 6162958.241436607, 6164714.4165607905, 6165348.476150045, 6165631.690662964, 6165725.438156557, 6166057.118860962, 6166198.326655829, 6166335.776352119, 6168140.616171342, 6168334.0898743905, 6199626.505315038, 6201381.63855839, 6202028.500696107, 6202576.130885523, 6202681.678123145, 6203524.399987051, 6203598.4375, 6204114.797291924, 6204237.820400459, 6205147.845398804, 6205432.259031229, 6206707.203758181, 6206791.918343225, 6206928.188878034, 6208826.5625, 6208843.488041013, 6210211.038275444, 6210277.592968094, 6210578.125, 6210645.830235019, 6212217.631120843, 6217032.8125, 6247431.25, 6248973.4375, 6250309.375, 6250688.421534134, 6250781.25, 6250914.101571649, 6251490.231545434, 6251717.0688543655, 6252209.317188153, 6252243.528094588, 6252583.697860833, 6252966.872322578, 6253158.828721619, 6253660.9375, 6253801.159230032, 6253805.989022348, 6254219.579256844, 6254820.3125, 6255851.991221951, 6286992.1875, 6319246.875, 6341346.365839717, 6343030.888645632, 6350312.010431691, 6356710.024663039, 6366251.524592504, 6384735.527223453, 6390066.327309722, 6391065.625, 6396189.0625, 6396285.9375, 6399461.774613611, 6419807.033534338, 6424729.324841234, 6426217.1875, 6426231.476518169, 6428744.693198168, 6431113.494993064, 6453930.049742526, 6464004.6875, 6469523.4375, 6487168.7083197, 6492083.890443106, 6527407.844491072, 6540014.0609250935, 6540333.863806312, 6604065.625, 6604406.25, 6616918.550780628, 6618817.150527176, 6618853.125, 6629517.301267397, 6643530.252924536, 6714424.229557082, 6717279.6875, 6792071.875, 6794882.7105940925, 6932277.813867069, 6932973.369576628, 6934257.960647747, 6978118.133724869, 6980697.974444984, 6994845.3125, 7003339.831063425, 7017671.6594257485, 7074192.966448725, 7080037.938251889, 7084827.440579321, 7100301.784169343, 7115010.2001755275, 7122007.780872897, 7178600.801805525, 7179266.671738382, 7179762.655527927, 7180989.881064908, 7181283.8813502425, 7181866.999893084, 7189480.048389455, 7190487.5, 7191243.445919155, 7192748.804872984, 7193472.998070012, 7193784.35320484, 7197385.9375, 7205301.5625, 7207871.200848552, 7208951.3811602825, 7210182.153847048, 7219081.25, 7219094.067070765, 7220470.43714907, 7238001.726276628, 7238871.875, 7239096.875, 7240265.917114155, 7241470.296929509, 7241975.349879822, 7241985.728764236, 7242911.804065118, 7243008.266073765, 7243456.174452483, 7243914.0625, 7244268.75, 7244513.174900634, 7244858.412994753, 7244913.215797059, 7244929.6875, 7245042.005518773, 7245282.783491576, 7245881.340553485, 7246066.912240737, 7247747.150531155, 7249167.1875, 7253032.8125, 7253908.416368454, 7258394.673851297, 7263332.416592298, 7264609.671399093, 7264628.125, 7265044.191047047, 7265891.799529719, 7266253.1722043045, 7266496.875, 7266514.543393746, 7267789.0340145035, 7267992.595013811, 7268032.445166361, 7269322.801115253, 7270876.677090424, 7276064.0625, 7279566.840565281, 7286298.4375, 7287160.93924611, 7289331.25, 7290393.75, 7290395.408364966, 7290574.840762363, 7290754.100119684, 7291501.5625, 7291615.7034346685, 7293092.1875, 7293325.59402209, 7294459.260506461, 7294683.780802121, 7294823.4375, 7295177.231916615, 7295717.1875, 7296502.292635289, 7300435.202961152, 7300600.651974156, 7305725.755770658, 7315786.8244914, 7316057.8125, 7321783.809036184, 7324250.0, 7324990.343090462, 7325909.375, 7326228.044425812, 7326580.856870017, 7327803.125, 7328718.129435879, 7328804.6875, 7329447.717352176, 7329607.654067576, 7330201.395527519, 7331255.8166728215, 7331676.44923459, 7332429.6875, 7332525.26692174, 7332526.5625, 7332543.309170097, 7332555.9799516555, 7332615.4856390385, 7332765.625, 7332992.067605662, 7334044.573746558, 7334398.4375, 7335499.670101341, 7336367.064040636, 7337654.6875, 7338733.249983333, 7338774.412385746, 7338901.5625, 7339419.83454298, 7339593.349747728, 7340693.087968424, 7343851.224740906, 7347163.776983246, 7348447.391250224, 7348819.474744964, 7349370.0768568115, 7349518.75, 7349553.739497755, 7350004.401912952, 7350506.772416819, 7350618.75, 7350672.557620768, 7350812.5, 7350939.0625, 7350965.776881181, 7350995.006862464, 7351231.25, 7351300.720553232, 7351367.1875, 7351376.144349247, 7351402.636373084, 7351501.226641242, 7351831.25, 7351832.446353484, 7352027.345146394, 7352114.0625, 7352225.962594893, 7352793.75, 7352798.4375, 7352799.642821131, 7352992.09032759, 7353000.128139452, 7353189.519349005, 7353473.4375, 7354018.75, 7354084.458162492, 7354224.772589176, 7354239.854904564, 7354384.854680248, 7355007.583428219, 7357441.6452046065, 7358954.6875, 7360857.65962234, 7362689.79562671, 7365360.358240478, 7365980.900468955, 7373243.075570752, 7376057.34307134, 7382025.0, 7385922.323819574, 7390683.7126739975, 7390921.968976471, 7390929.522809181, 7390959.375, 7391561.2763613835, 7392089.813230282, 7393050.434477628, 7393585.503330627, 7393888.467296639, 7393946.217606279, 7393977.797973316, 7394121.3162552565, 7394667.117515757, 7394831.981603861, 7394847.489838398, 7394908.726440112, 7394969.6776564, 7394970.180669036, 7395088.082333939, 7395095.3125, 7395257.069287272, 7395472.488510308, 7395542.392871405, 7395551.5625, 7395590.625, 7395622.571204733, 7395750.0, 7395812.5, 7395832.784901742, 7395942.011515893, 7395967.803776592, 7396060.969027025, 7396173.563482327, 7396223.4375, 7396400.334565212, 7396537.802599783, 7396579.825787596, 7396610.556127461, 7396990.625, 7397388.3505396405, 7397675.0, 7397840.2654422065, 7397865.586153626, 7398188.860281276, 7398225.41326543, 7398378.125, 7398875.955732237, 7399242.1875, 7399323.4375, 7399326.448993951, 7399342.645518405, 7399345.124612839, 7399354.286101029, 7399403.125, 7399412.386617943, 7399449.270085177, 7399462.7512242235, 7399475.747120882, 7399602.25570154, 7399657.751919538, 7399666.923890667, 7399707.8125, 7399860.9375, 7399865.625, 7399866.480208127, 7399995.94789484, 7400059.375, 7400087.110419112, 7400293.449368858, 7400301.5625, 7400411.659636232, 7400438.704371938, 7400471.535450383, 7400474.42545564, 7400620.122089295, 7400626.568816661, 7400642.182701623, 7400738.115372757, 7400775.7677100655, 7400794.7655887995, 7400876.5625, 7400910.9375, 7400970.3125, 7400997.665341356, 7401034.819278671, 7401092.1875, 7401096.832093507, 7401257.682177052, 7401354.843598809, 7401376.5625, 7401436.854856275, 7401482.30319329, 7401546.875, 7401563.503954987, 7401603.980185097, 7401614.0625, 7401697.675521537, 7401707.8125, 7401717.1656083185, 7401755.693768868, 7402066.09470179, 7402076.11682356, 7402121.946223555, 7402346.875, 7402365.534766277, 7402615.863750712, 7402788.137769622, 7403053.057337919, 7403136.915189061, 7403505.276874305, 7403601.334477443, 7403761.919039184, 7404020.261164194, 7404132.215285254, 7404186.534560615, 7404670.2482002815, 7404678.0831608, 7405585.833656705, 7405647.705375759, 7405748.973809456, 7407744.656326639, 7408478.0150993345, 7415070.3125, 7416603.125, 7416781.274566465, 7416967.1875, 7418241.833628202, 7418616.791472609, 7418920.3125, 7425110.762083877, 7428247.639590015, 7435984.216584144, 7437708.251188456, 7437929.6875, 7439482.8125, 7439806.25, 7439931.372540092, 7441788.454978455, 7442088.266495311, 7442582.384306222, 7442622.444696558, 7442822.022072397, 7445191.577225593, 7447373.6188576585, 7454163.874609631, 7454948.9704896035, 7455260.9375, 7456057.222081182, 7456403.125, 7456411.663230565, 7456437.5, 7456678.883873683, 7459060.361150913, 7462431.923830926, 7462727.416712906, 7464146.870611062, 7464395.98680374, 7464481.192808854, 7465015.226636825, 7465798.4375, 7466016.61881552, 7471738.592959026, 7473583.665333003, 7474973.4375, 7481715.831029624, 7482641.638756992, 7484443.75, 7485820.021995552, 7485951.5625, 7487732.7378489245, 7494965.625, 7496850.152482054, 7504576.478621648, 7505986.939771345, 7508043.59489478, 7511993.195463485, 7512480.687958895, 7513231.25, 7514378.120966929, 7515370.030253065, 7515430.544976918, 7515448.59591329, 7515534.140241677, 7515630.323887629, 7515667.1875, 7516528.663527252, 7516538.497627822, 7516558.568892219, ...], [7.099591508560082, 42.698683061189854, 5.226304997608756, 48.34640750138965, 15.81129227077243, 87.30808459609796, 52.19313101793568, 7.58112731926365, 5.684781208827573, 7.524753899974565, 9.010019299411237, 24.77860288762752, 61.299712860168334, 70.13428860105209, 232.06120768479104, 11.574964894227664, 21.672450317833704, 73.20623466255205, 8.810693324223209, 7.920625295547651, 97.96076656908153, 5.26491702450558, 14.977879130950642, 8.163008983298951, 50.093853676288184, 56.83835809686895, 44.96672439674664, 16.665171627328274, 7.600723226999086, 81.7156960258458, 17.281380239625527, 19.356339817999114, 85.00460489617056, 30.742309076868715, 133.27914370170805, 25.296853057816595, 26.626055113102378, 80.92633428552875, 7.013377017136052, 10.356425268493858, 14.916495316083294, 42.27054694169054, 114.92261192890008, 9.495063186717651, 41.94612251352197, 25.186977540030036, 137.5953126971241, 10.200793647122058, 8.000333006631314, 42.93233447655564, 155.14416362362994, 51.575738133380625, 20.383390385749674, 10.605002652381016, 29.652406629955646, 59.22696606341767, 43.46276629615346, 34.40184030232291, 33.61751294612257, 71.04476638189973, 48.46106338218998, 7.774649304238179, 6.869542178941735, 53.562052462852016, 15.854210288962095, 40.60509631845334, 6.125694257264956, 53.59097387291075, 21.531575014089764, 32.267273227881155, 14.271153192724729, 18.41351904579975, 9.338109770817063, 30.583769853898907, 14.945227434026398, 73.47117203395472, 50.28388217336673, 16.550239086048503, 51.68949447085273, 28.337964420448927, 38.495331678405265, 17.134168176037562, 29.460305573861493, 10.927067123850197, 22.56800529890934, 46.13947017598808, 11.01771640205272, 19.458962336172796, 77.69389740528229, 49.781283426672296, 86.56492679033306, 10.097129090214683, 80.03640806829705, 42.253298447932686, 14.186336700688237, 41.081249862646764, 7.110101131795222, 5.556174595064342, 31.227928553909837, 21.659005031232077, 18.84315849365755, 8.96526351112126, 6.320929798369247, 27.47556737637062, 48.3496382236824, 6.186037459940719, 53.78858492386744, 44.75795037289787, 30.73563237097896, 7.240314299842703, 75.90178021402764, 40.41627384022806, 22.54275992736482, 15.355922353316778, 23.0498455251198, 6.22510668482676, 45.372919828178965, 97.27608072813716, 13.30308845481361, 32.994814699721104, 12.050891694538, 13.231361022775378, 108.03977343877091, 96.86683044627979, 20.100262971272848, 139.58899957144152, 90.841368769726, 40.38229526074915, 140.74887327901862, 9.917318495831777, 105.28921258280776, 14.677358191760508, 7.8725719236395495, 111.47837097631631, 108.14068009571746, 15.411521382726233, 24.289088474994234, 22.3309960685404, 55.35802063164929, 94.42531126791954, 68.18335028118616, 48.05972146127119, 6.831075862402214, 13.706910805829562, 12.737999233350195, 66.5946016548328, 44.137538728222395, 38.05796328469537, 38.845057897116014, 18.393789737831103, 48.675501470187825, 28.54076749197447, 31.684654417642264, 21.069138987161363, 25.385284995044277, 9.107983118470143, 10.389535356137841, 23.007397204087184, 44.925034620437245, 5.878152370516414, 23.02376022356918, 17.506129955685964, 66.83867156950382, 17.70227970953318, 41.39707345477598, 24.758029349065595, 69.88915663429589, 114.92673478271742, 42.316099228909934, 66.31887811360465, 9.215088200791087, 62.74409858227729, 78.6792890660666, 53.40020161561284, 21.67552704957679, 33.20181745574063, 85.96163192853479, 7.67228169509447, 25.589601938360534, 8.114538756905398, 14.73226551432782, 19.72050365891515, 24.440245578318496, 29.85275535340065, 11.656108149828073, 95.5663564310229, 26.3953195457585, 15.405798970742012, 14.901128063185904, 36.92683651130405, 28.88014958438261, 23.311212942445785, 52.99606355931594, 19.01821315277396, 13.380275403626655, 23.079019123830342, 6.475167351235087, 86.44571146459768, 7.159953244541261, 26.87128831821515, 6.159797094499944, 25.5798829327155, 23.015858224860633, 41.421531135666754, 66.44903647075557, 13.606194754002127, 13.72778266685393, 32.44157380290413, 10.918271649924531, 75.57849677872908, 5.643978395111621, 11.881279979746745, 19.226901921697323, 29.240229615790113, 9.820585099484836, 31.733938644821794, 10.413458271370981, 82.81857122973199, 24.047995988688015, 47.53725540107625, 30.010043482209518, 10.23441848769484, 20.30972528713759, 12.793406706210433, 6.836673688772723, 5.09331163488729, 14.899585391203777, 10.23925357108235, 66.51691327242746, 173.55002559717855, 38.186581707681, 67.0895600757086, 26.30583055848859, 85.81954435247951, 52.10865667740114, 19.172234013366563, 161.59191016689368, 19.42012613371101, 20.690659606366616, 28.174027964678814, 58.24414374275026, 21.206558445460107, 22.82000322423498, 6.405061628952583, 12.443489562353564, 12.52437010410475, 10.360656020056819, 13.992317460004575, 9.411650261059604, 15.297650991426034, 66.18586021063035, 22.406784237542897, 95.87688493648051, 6.622895024298856, 5.804386884087452, 26.92391800010102, 30.613499273268303, 12.895817031644174, 14.764566640852896, 30.237053115395188, 6.38786889249513, 58.676738141321806, 6.2305985675154565, 22.888257859649027, 8.31190177863164, 7.142974247753238, 18.93701115958057, 61.408956363941414, 10.479718808071013, 25.34108673771111, 53.944392276276815, 19.259041388263597, 35.49934350121595, 7.008985516147787, 121.76686817322533, 116.70785768933209, 24.896855741538126, 6.107204174914191, 8.988231997587858, 6.741610482125643, 98.1782013153325, 52.77674178138807, 82.15694043160667, 5.827567481467467, 99.2202893659383, 49.91753185537731, 20.720882468021465, 64.51474541221225, 50.26472630591892, 13.598178626735454, 6.769382680125183, 56.36490223361801, 8.6844778037151, 32.86651818663478, 9.639801478485609, 7.308150893832297, 32.74410776291709, 66.83472619885357, 43.33859589959067, 25.288288596561365, 46.27297507109869, 76.80446957032619, 142.59017344590848, 19.17799543431505, 126.91190588812131, 31.9802811261643, 82.11221878331544, 6.185840760473894, 20.936476377303563, 60.11890763455948, 19.0751523118476, 17.65180172709618, 18.808959132974582, 43.05059850853982, 8.781011207300262, 5.2343210116212955, 11.55926960660894, 11.586882987103271, 21.702452513530687, 13.216586705967769, 15.005069864075764, 15.601236904483697, 14.008635497874282, 19.78385120258233, 6.150621138724652, 27.412448912936565, 57.97627013890102, 23.68634252095957, 60.35797660406104, 72.7189581828005, 15.626968187740397, 18.41677912529358, 99.23059933985806, 77.84716565087794, 58.443225208934024, 19.175564516497648, 72.60237692378487, 24.00707905997421, 56.20954946131231, 15.134354158989684, 14.431813755882668, 173.35360968621364, 6.761753203636939, 24.837894739160838, 6.684326574444242, 127.36395454820936, 23.203516493868978, 63.540073813270745, 46.084891559081555, 56.121160781061, 19.78899298131372, 6.455870266586192, 7.751891635119143, 64.89260927220974, 79.53801219778381, 32.90617488666108, 118.73565731370773, 41.26192347848861, 5.6334092731446805, 20.409280409406925, 74.31329645293239, 21.129112223785995, 30.31701419983648, 41.04646993416118, 38.61575622004224, 46.355780693844736, 72.48183955501747, 126.57305303079568, 36.682562604300585, 43.948318328461745, 52.60592768265398, 141.28110509899284, 40.68008204096536, 63.27495239907073, 54.58521332609673, 8.066947832441977, 6.532272103121083, 28.84144460267845, 52.96626067405244, 19.513547592946736, 49.552156856279424, 25.988696105955437, 9.28865666970876, 135.11855669174136, 5.132695620184646, 59.88742076437961, 73.80187828949279, 85.97665001716548, 120.8310231676991, 79.86900013071562, 104.15526725431266, 151.09186513361215, 62.83950356368463, 51.77905754569297, 53.91626851044733, 30.310771637452092, 75.20282778132292, 23.406074472351367, 24.722951611812878, 5.082535317296109, 23.037863257262803, 37.65246891667148, 22.18571447025687, 14.871763147015463, 54.78566456614361, 23.46564600272262, 86.62680552399198, 41.75257281446264, 100.47466485542932, 67.50553571351747, 71.69565669527935, 23.728265712882358, 22.079120804282653, 27.296193866205662, 63.94459149510445, 8.276600882216783, 39.39520593119351, 16.778577884788575, 8.008888332256655, 5.597200641320953, 35.81995918687749, 37.80493136140867, 21.127534039904916, 10.902562977492124, 84.55211426728002, 19.11572874922623, 6.79632672347974, 6.091336143649227, 9.50178723005258, 32.52100946407883, 46.36060350860342, 6.559816510675508, 38.402537437502005, 44.84476981820735, 40.21340226361072, 17.962390212448977, 48.70858204971331, 15.936232409558176, 26.180107411035365, 49.05753810261143, 69.32465710945007, 15.03292648853876, 5.475493479849378, 5.266222908665965, 11.905207641065235, 16.219247199215054, 19.06085645603469, 5.649358952259153, 61.488917519101385, 10.11396024099716, 12.1129549361639, 148.55775079503763, 48.137871639698794, 13.487774377456166, 28.90684141786458, 75.24132976476868, 7.2851499968180855, 25.005121487230443, 91.79081480621802, 87.50510977389337, 35.20613261557282, 9.07323120205564, 13.02620699948873, 25.012356822164104, 49.71308669934645, 47.060166095633036, 90.59991525540032, 16.747432696412453, 108.26791075528928, 8.95335603634301, 39.5661873656398, 83.35134023852112, 55.4936460761655, 69.968322009813, 13.052191705085045, 42.461270383801434, 17.518059565786523, 29.752052763510406, 101.8875374396318, 198.30040729567895, 8.562584731848222, 10.063582602946987, 69.80973521035033, 16.051722222242123, 12.111320876435814, 11.801032554045937, 23.166171467779144, 21.111089640247968, 95.29588129107198, 16.735691596742935, 23.96324631032257, 51.74772789071833, 20.082515526455936, 8.3859916089281, 13.573560392109739, 16.547630284323983, 51.35960298663571, 12.44341192532976, 5.483981111249239, 5.146141240496766, 10.809873523043933, 11.229144272488636, 44.30535048149434, 35.72651008824489, 17.864703557558045, 21.045498141773578, 80.98261393929968, 25.340775771722875, 96.74559519793303, 98.72704267853152, 14.136780979352519, 13.156789897589922, 52.29934850174594, 5.055690718681304, 53.5877682543029, 13.329655859247149, 82.50241140390983, 30.14828851214909, 35.64809009234276, 21.92339478812543, 63.09773384451458, 11.035810924654953, 5.3485030966649205, 7.099012075401837, 126.47270885592465, 69.32553497255883, 13.503626949224042, 8.92226569221303, 14.662084441453864, 27.325705551460217, 26.581838233465245, 5.347935809775228, 29.991801337041935, 39.674222025675256, 9.521610039579997, 35.36777293259178, 11.935551960214477, 14.996483898289098, 32.444471648095046, 25.84783767410223, 38.34199136002303, 45.630803739011064, 12.172508597372435, 5.812767094562311, 14.325197647937335, 58.366005738210376, 92.30320666425862, 41.50655847013961, 7.770792455474573, 5.554730376512234, 19.756921636544348, 32.36218936277033, 7.07972543614272, 28.351430119129937, 10.70948242944959, 55.263071895236685, 69.00787734884403, 16.597026311346834, 22.203530275126187, 9.72169059648643, 29.416967233930137, 34.54634160882573, 161.2599750892353, 11.668383975786206, 5.889448723051315, 13.181954852692359, 57.259531305581305, 9.113733567876013, 56.203907727178745, 75.54897143433986, 20.439508922611292, 5.821474605897427, 70.97261848655668, 32.39319778670002, 5.050378027534207, 11.712611623601532, 38.16301714012823, 35.11744144328245, 64.00771671144913, 39.24248777263159, 47.755149869856474, 46.37219896296798, 15.092553286358315, 133.15304874853916, 18.615040332507515, 27.430759182920198, 13.991689487694536, 19.8910462425664, 29.575474751416962, 8.908592884147845, 107.32612516623726, 22.51553817363051, 11.102423208278394, 19.444234261398847, 92.24414457358873, 6.133846856278372, 48.7437997950512, 73.98019037638856, 82.22930863199795, 7.477569525481653, 45.93334754066379, 61.931558527820584, 14.798965831170921, 61.022867905716694, 101.14969268411002, 89.70540351119456, 56.14749710867541, 48.737073202877916, 12.748428218024266, 32.76594144390966, 53.8306840595487, 51.68118154829265, 15.88140940680362, 31.58657247059611, 13.14488624588642, 29.488500923865985, 36.40669717084235, 65.14371970159195, 39.45778892011046, 46.10001869458729, 5.534635186376319, 14.935510011810084, 77.55990020241208, 63.182132465701194, 89.84332760224719, 26.764137909140707, 5.8112496489411445, 57.11302970209814, 15.393623740600072, 5.178742509188801, 5.759091696269724, 80.4074875578969, 59.17031857175982, 48.44392806317158, 13.874888698726682, 55.52017475097081, 73.30286430355399, 6.192354593944759, 21.869736737617806, 29.417886488567945, 12.58718760683857, 91.09067928198712, 8.746453693565272, 5.735228999332295, 7.373130569953709, 11.492817654141218, 5.148538260917653, 24.02139420559444, 84.51358984837982, 80.79959946566053, 15.569406900500011, 20.151201269665933, 80.48505608644629, 84.89048525068557, 17.12083278915593, 52.027637651281054, 10.683497342403792, 16.55477100396687, 10.503936046789134, 15.455552041459661, 59.76526972360381, 43.408547384060334, 66.58921881805718, 8.19295464955249, 6.187420650166443, 75.34727998548325, 5.837819292844014, 22.539765734567773, 7.165179499745701, 41.10661330554882, 72.22893743881532, 13.46591762544955, 37.79408098462976, 11.722487305831084, 24.990988981617058, 57.070225040555506, 23.503310459815474, 27.114574545107107, 43.38165237161327, 63.32928082083353, 11.411186263737683, 5.648151789981299, 22.48225167396263, 32.4718438216193, 6.458937513486529, 27.963390571309986, 24.255958835591372, 67.2186028247583, 5.252922842424578, 76.34808243867039, 82.30466746694151, 25.812165988959666, 44.6354057345478, 8.087752540996924, 16.205940188063163, 37.07675241657005, 23.102164769689974, 73.3635031740204, 34.47077391772089, 44.112346558825244, 30.587402974916657, 7.113983765056166, 9.701510530278927, 9.03898504236111, 13.170308552616849, 18.00371438569543, 74.09866758568702, 28.57811810101323, 74.18635557340424, 8.28750091346833, 88.12205276692292, 91.93434671001482, 11.280930622288645, 6.4624157302223795, 13.09293750913892, 51.49865036616835, 16.556902897538524, 58.678265862092154, 70.89445957443522, 159.00038287891047, 45.53055585081716, 113.38056533270037, 7.309289057640661, 85.70239003123737, 37.59073397874893, 64.12205239019228, 12.326700155402236, 6.924391842503147, 14.116777326160356, 30.248385435898637, 48.152719923312304, 36.27768725276394, 101.90222298848605, 88.74195129567462, 63.13162913681048, 77.00905763993218, 70.06951843993612, 10.278950147141316, 31.690891967767875, 12.761009720916142, 25.74480633120827, 37.195035367647606, 22.185020141246962, 101.42494035792853, 55.33365357764988, 75.67537318969437, 68.08793640382024, 6.67857783813794, 89.57582508767922, 14.435666826730797, 116.84889345044795, 14.50340646559769, 19.401730855130605, 59.96719352600019, 25.81434024044826, 9.229148355462083, 41.68520465719576, 142.94492458494227, 5.889815584439519, 37.06072358036591, 63.497847149471006, 92.6270416856485, 10.229733527639528, 9.061254747349373, 10.708944073712885, 12.987290380585296, 12.487319042439918, 14.113475190023445, 56.41282037230114, 17.947589770566942, 8.141115397427725, 21.410129031040505, 68.19733398155955, 52.95967113651194, 64.76937999915906, 31.82838836007759, 32.40698781024937, 9.085682546263227, 127.09497858765185, 19.63819373986903, 49.55108288738517, 116.38905437847335, 6.669725236634391, 84.89679291006952, 57.74667836228512, 13.708224210029226, 7.913162161652397, 59.77094460769754, 49.402857390879845, 32.53988495614972, 37.57234804611662, 5.446642055161584, 56.816949284970924, 6.789361124073655, 81.32320426532597, 97.55643603078077, 46.96521387710818, 23.777673049820024, 31.880382295617885, 12.642559883862226, 11.97052620010524, 24.701101852458713, 5.774915866300172, 42.17781403159971, 61.84137923670664, 28.340863862677523, 71.58930679794477, 30.391397720843493, 6.3863220632638935, 112.10269631557807, 75.2526777082481, 31.085030679433327, 12.902423075842892, 15.312224837559327, 22.021544515595956, 53.88064346791202, 17.354500482936874, 18.860291153355487, 16.90398091688955, 15.531296262335129, 7.995052660964228, 6.958738887809397, 10.652323789044894, 5.892180164726751, 27.212818476204905, 12.502791551533612, 48.08470555109572, 14.748657827118873, 7.977158076501062, 67.08465719294686, 7.283432609765101, 30.590054214070726, 6.1776535492317395, 17.941392834671603, 42.83127906189165, 35.22066166114792, 35.393529710062296, 12.423561741509905, 43.5421172442072, 55.9954807234387, 11.08484122878747, 51.879469618575584, 26.763895018960426, 9.358204086811678, 90.55504488506658, 46.61603570218044, 124.16823786052638, 18.19597762192004, 15.496163961624795, 49.28595539924518, 35.29741080383119, 49.889925267367126, 71.39050759902123, 58.96591612703766, 25.027560557043124, 14.22296869349187, 30.940713119411175, 43.592961378380195, 60.188282058173826, 52.34173105350689, 71.88829105003612, 50.45185397209059, 11.927980389770866, 96.3660162169096, 8.085135457576472, 41.48282584101734, 26.46818810087559, 12.73758248737931, 7.189094807862896, 18.83453393934374, 18.460352919997373, 8.254799085761999, 7.053839040026903, 70.92192132926131, 69.05375287273014, 63.33926747530776, 26.576746982099884, 18.080070710612734, 73.65285256098687, 85.41639564016168, 65.2068173637611, 69.62848782504273, 15.764249553285044, 5.235231369347475, 56.93102393197737, 20.78037210400053, 148.76165324663307, 14.938983971368963, 63.92402823083065, 11.463224903766186, 33.822186664865725, 80.38402031876832, 89.55547623739118, 125.04891332197336, 86.12604390903698, 15.22855984672217, 50.24417835804311, 34.7555307625025, 27.70335466988507, 26.19050203088498, 7.163098891939153, 171.44078291476782, 5.5025680182755154, 52.59108965578508, 83.79656753260203, 20.92830812787762, 87.61304507429955, 35.04106670174526, 19.225182881764987, 53.14011044515796, 11.093660240251694, 26.55037006920778, 11.950868522522383, 17.025062070020603, 55.453160066905795, 78.81732688954186, 14.608384120242711, 23.22581402130688, 38.507733818358105, 72.70890082886099, 13.09961930999405, 33.56648515795162, 40.32549247614137, 10.326727861917437, 59.90328517804977, 39.10264391308975, 12.209624938503216, 14.701964791287411, 27.723120876618125, 7.566106228076202, 19.4528942855951, 162.0893879994879, 20.064877175205453, 38.97557168787196, 68.61960419309007, 74.2251910811022, 26.452195619190583, 55.13805963221906, 23.08616000799918, 23.11155210606858, 72.60924888166147, 25.484220596336645, 26.16621694466258, 9.200951888443793, 17.380098724803965, 61.68656273165814, 31.009585646150537, 57.06312592586306, 9.437212602453, 20.483624747680395, 27.36687023145639, 22.240614869978998, 13.451757807853639, 8.36591369813065, 32.919169731089994, 21.816360229704703, 10.846195762925586, 17.454378567598567, 62.1394601558576, 5.889586257331782, 42.59477173116534, 12.489538783720771, 83.77743358263311, 10.067653924425105, 124.38121144785546, 27.395581352740045, 6.629887191250421, 5.532867570500535, 61.068908523561284, 22.656478064386572, 5.156186646951924, 37.7616079841412, 20.834247609437416, 21.685861055477496, 6.181515898204998, 35.67283226827724, 15.789597029244629, 8.01625121634514, 46.8792484296625, 5.519145619321616, 32.293984748001, 14.664409069816504, 93.26553173844454, 58.7875135362388, 36.30755887718558, 27.598314651861564, 45.449548335008615, 20.965790143730267, 13.159282102250751, 70.99487512062983, 86.55709578680582, 7.504247076840858, 6.381974333069462, 7.163725769347953, 12.283981106310469, 5.862617445085807, 79.71949970049468, 9.832433139549103, 53.78625479949645, 118.13985815008118, ...])
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)