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 = 45856
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);
([2475721.875, 2501693.325567847, 2542513.72207182, 2544467.1961923214, 2551098.4375, 2552109.370303865, 2560070.2551536644, 2571974.7772901687, 2572101.082922238, 2576087.887833539, 2693237.4212995344, 2812485.4237475996, 2813681.25, 2857781.4328261577, 2858642.373797615, 2934403.213129457, 2937007.7153511927, 2938772.113867795, 2939164.8865819927, 2939424.9800139633, 2942456.206315675, 3095648.3214727556, 3095738.7530678967, 5455164.220598791, 5598590.813603273, 5663571.355783874, 5666601.476481376, 5667873.654623698, 5721355.326379045, 5745439.0625, 5892037.019338637, 5895516.141112072, 5969357.969163293, 5976107.8125, 5981044.745830735, 5981933.669019902, 5990892.1875, 5991245.352519876, 5992992.02651566, 5995518.75, 6023780.424222801, 6045945.3125, 6065692.275398101, 6089439.184504322, 6091748.118920668, 6092548.892902318, 6092673.873895976, 6094055.503232935, 6094905.520220008, 6095579.6875, 6095681.25, 6096245.052851181, 6096938.614676321, 6099957.330671003, 6105973.479457578, 6109266.395346846, 6112695.3125, 6115828.2361564385, 6136856.686301559, 6152138.689674688, 6155113.757827766, 6164347.501007175, 6173008.015177782, 6177449.727548186, 6183885.9375, 6185460.9375, 6188521.604702648, 6206165.625, 6214834.0491690915, 6215617.507766625, 6215618.75, 6260893.75, 6294698.4375, 6295806.25, 6297160.073028465, 6319097.522050451, 6326481.25, 6329050.076586475, 6333308.453508724, 6352799.0957939215, 6363653.479838189, 6387559.375, 6389601.5625, 6393625.252982412, 6395805.654266094, 6397095.5188189605, 6401271.362749454, 6418452.958072978, 6419550.818801383, 6420220.3125, 6423221.928288925, 6428758.201760738, 6443315.76105444, 6443397.24646097, 6444968.75, 6457393.19802917, 6476104.6875, 6478554.69696543, 6480251.5625, 6485468.6455815695, 6485834.245571402, 6485845.15553485, 6485880.87671911, 6487637.019483978, 6489292.1875, 6489343.75, 6489551.641371465, 6489896.901035175, 6490073.4375, 6491078.392665375, 6491543.60042418, 6493196.880112341, 6493238.618773333, 6493404.295131867, 6495634.2471224405, 6495661.091738465, 6495840.625, 6495996.875, 6496201.397250775, 6496456.25, 6496496.202614305, 6496681.25, 6496823.293915534, 6497150.121440074, 6497224.46425427, 6497243.185794586, 6497266.653190286, 6497302.811169954, 6497578.125, 6497578.125, 6497584.375, 6497690.327897558, 6497718.335029311, 6497761.658678142, 6497837.2821003655, 6497905.449603142, 6498017.137483089, 6498082.8125, 6498117.1875, 6498218.4095994495, 6498278.177305267, 6498350.0, 6498457.8125, 6498466.222047161, 6498757.104696057, 6498794.27900381, 6498900.564289328, 6499045.3125, 6499087.647250591, 6499117.608685482, 6499315.508836033, 6499384.375, 6499478.125, 6499608.803197208, 6499640.530622681, 6499664.034615877, 6499710.578770557, 6499747.5974686565, 6500063.4699021615, 6500290.077837278, 6500453.125, 6500469.851094062, 6500582.709551837, 6500701.561727071, 6500702.796200559, 6500705.944690423, 6500882.882100721, 6501076.5625, 6501148.594918194, 6501150.850764981, 6501166.650960618, 6501206.70808304, 6501321.629942055, 6501366.091080984, 6501470.3125, 6502006.09536082, 6502056.209889112, 6502147.098608468, 6502616.031294284, 6502646.875, 6502765.834816486, 6503031.398966908, 6503078.425436656, 6503094.544286334, 6503226.343481056, 6503258.460002087, 6503445.3125, 6503887.5, 6504134.375, 6505375.0, 6506458.168724301, 6507257.8125, 6513499.510292055, 6520836.221165803, 6522090.792754632, 6527144.715512513, 6532001.5625, 6532346.875, 6534894.31149647, 6538801.985929415, 6547037.5, 6548150.0, 6553351.210834546, 6553832.169782726, 6568690.453353577, 6574560.44012954, 6580639.155611883, 6584035.9375, 6589802.408582715, 6590737.23998296, 6592303.125, 6592312.465723147, 6592560.214415239, 6593032.8125, 6599008.661822276, 6602292.91944136, 6602643.9277329, 6602649.572472268, 6602664.549368388, 6602778.428788527, 6603359.22377129, 6603768.019709632, 6603920.468873435, 6604507.8125, 6605909.955117468, 6607271.778476995, 6608507.30810061, 6608674.1910182955, 6609705.8269004235, 6611986.4778726315, 6612339.0625, 6615543.629526864, 6616040.203069881, 6616528.179946362, 6617184.679689537, 6617187.013866812, 6617252.178505613, 6621144.827275194, 6621524.1810897635, 6634059.161005534, 6634429.000928388, 6642179.204709209, 6675641.155474158, 6698747.652611837, 6707834.231924665, 6745912.5, 6746973.659242368, 6761110.9375, 6783793.105264586, 6784771.339382221, 6784824.899047947, 6788395.072993433, 6788540.35380011, 6789281.25, 6790752.580423226, 6793267.768812028, 6794292.1875, 6796433.78306543, 6800634.647253145, 6800887.5, 6800950.235543588, 6802153.125, 6804569.487318543, 6804744.709855544, 6806207.273797793, 6809631.949021172, 6810344.421490401, 6811304.6875, 6813462.197158804, 6814509.375, 6820203.125, 6827156.25, 6828835.9375, 6836120.787224682, 6842470.3125, 6846888.519764883, 6847648.361229616, 6852886.614488511, 6854657.418889897, 6858570.225852118, 6863117.1212623175, 6864848.4375, 6872538.470412886, 6872757.8125, 6873337.943732231, 6877960.702604246, 6888162.5, 6889336.359439166, 6889596.125537953, 6890440.943068438, 6890918.632817577, 6890923.0242117075, 6890993.517428329, 6891620.3125, 6893000.630741085, 6895177.98601803, 6895378.125, 6895991.323985746, 6898030.34653888, 6898345.375645895, 6902079.415067157, 6902815.0699109845, 6902829.624434429, 6905164.696383755, 6908819.896885858, 6909142.812668793, 6911007.12260618, 6924121.875, 6924856.600777094, 6930265.361530943, 6934503.979377426, 6935818.75, 6937926.5625, 6938298.932772195, 6939085.690310867, 6941598.091271598, 6944049.44724326, 6944220.30590582, 6945932.665363017, 6951547.183740613, 6953082.510612339, 6953321.255266722, 6956850.379953259, 6958297.790724413, 6964042.106518611, 6965350.205054483, 6965970.362073726, 6967695.715769138, 6968915.625, 6971853.125, 6972122.514153163, 6973558.061528781, 6974028.125, 6974875.0, 6975605.438010786, 6977971.415351194, 6978200.238425962, 6978788.37973055, 6981191.961091083, 6981926.5625, 6983369.462137077, 6983444.3015621, 6984719.813442475, 6985050.0, 6985326.850875732, 6985852.456685291, 6986151.695297128, 6986531.25, 6986798.4375, 6987810.221964895, 6988297.260558052, 6988493.564526619, 6992593.75, 6993812.661497565, 6993911.22031142, 6997441.390394316, 6997585.294299144, 7002283.039416075, 7002473.756716817, 7003656.139367637, 7006511.741951317, 7008903.389549644, 7009721.724189369, 7009876.602625531, 7011474.366723702, 7013195.111184541, 7015468.75, 7016865.983582413, 7019478.125, 7019573.943844382, 7019762.9089903785, 7019877.802191653, 7020704.135873788, 7020737.7083598785, 7021318.120679842, 7021499.908666325, 7021669.784193619, 7021932.667064256, 7022640.625, 7022950.0, 7023149.557077865, 7024022.077711029, 7024284.338044157, 7025469.974080141, 7026483.451509078, 7027782.792153723, 7030172.106789539, 7030252.605459808, 7030806.680854218, 7034821.6272368105, 7034863.446409828, 7036220.3125, 7036306.92955196, 7038509.375, 7038631.203629265, 7042993.75, 7043110.710126731, 7045725.297567225, 7048797.293332449, 7049250.007209842, 7068520.3125, 7074001.623192995, 7074555.861295158, 7074943.672638023, 7075084.6184802, 7075089.0625, 7075334.496128186, 7078375.0, 7085727.985419459, 7091492.1875, 7092558.94098538, 7092696.875, 7093770.6031128075, 7095225.37171692, 7098668.75, 7100320.067575276, 7105364.862321653, 7106182.823661936, 7107429.66995038, 7108095.3125, 7108482.783723677, 7130264.6530979, 7131843.534871102, 7132512.5, 7134652.954257326, 7150933.934481149, 7158978.125, 7163424.949359547, 7165795.3125, 7165820.3125, 7181420.147050841, 7182141.9627780635, 7184544.391174776, 7185079.46290031, 7185144.985204578, 7194376.722873407, 7195270.390750065, 7195322.4651406575, 7201619.5986448135, 7202784.450218533, 7204728.125, 7206190.595231793, 7206268.334148097, 7214428.016273854, 7215356.063143039, 7215880.097445482, 7216519.760781259, 7217189.992423228, 7219276.5625, 7219537.2752904575, 7219777.146543491, 7220049.373383829, 7220730.330796707, 7220837.821179818, 7222143.990502872, 7222651.5625, 7223128.485924342, 7223253.125, 7224321.875, 7225078.894569882, 7225760.9375, 7226733.2138365945, 7230482.274423317, 7231710.417764045, 7231812.552375375, 7232034.944608661, 7232056.25, 7232479.732908491, 7232530.490228016, 7232536.337206961, 7232846.070736778, 7233271.875, 7233371.256850438, 7233462.137904251, 7233984.376464557, 7234000.149774817, 7234045.699305203, 7234757.3666216545, 7235360.036804654, 7236523.712687598, 7236844.965836271, 7236868.402362531, 7237418.588204618, 7237809.375, 7239054.357723168, 7239304.6875, 7240540.625, 7240956.754973749, 7241049.404271249, 7241272.732693398, 7241823.653709287, 7242163.662379014, 7242564.0625, 7242621.081604345, 7242632.1087453645, 7242771.554579832, 7242817.1875, 7242908.590543072, 7243011.554211859, 7243160.9375, 7243369.537374971, 7243540.625, 7244033.437232485, 7244267.1875, 7244323.4375, 7244629.6875, 7244640.674449137, 7245181.577143042, 7245425.0, 7245764.516936658, 7246129.6875, 7246267.1875, 7246414.90143359, 7246468.75, 7246485.9375, 7246524.051222503, 7246598.94755674, 7246643.75, 7246692.125453525, 7247093.75, 7247099.668088111, 7247124.091511896, 7247143.256504355, 7247398.90654597, 7247575.0, 7247614.811491222, 7247974.673614974, 7248291.9936968265, 7248355.412869292, 7248377.433205133, 7248754.6875, 7248983.064325672, 7249191.612042324, 7249350.0, 7249389.701673022, 7249530.762782272, 7250143.75, 7250349.417755333, 7253025.333777518, 7254920.3125, 7255350.990084475, 7255380.429260208, 7258820.153299283, 7259457.02367947, 7259931.25, 7260750.0, 7261950.947489868, 7262490.39005379, 7265458.3946373435, 7270190.315593603, 7270360.376728535, 7272979.156008367, 7273417.1875, 7276155.5487882625, 7276517.005654827, 7276692.66445344, 7276750.366664183, 7277080.418545045, 7277083.432890829, 7277362.822007154, 7277571.238872257, 7277859.252367821, 7278268.148710838, 7278279.303586418, 7279248.018827853, 7279532.465282554, 7279757.247217778, 7280062.180893516, 7280291.910940663, 7280570.309272433, 7280684.232196492, 7282589.383528692, 7282877.13773002, 7283865.625, 7283930.863155805, 7284293.073223347, 7284345.3125, 7284554.819412981, 7284845.862076005, 7284981.25, 7285039.965484096, 7285205.98701659, 7288244.363230071, 7289385.9375, 7290059.012102631, 7294614.0625, 7297489.145703135, 7305548.074122016, 7315732.6177516095, 7336242.1875, 7389936.013621573, 7394603.06274598, 7404463.489971756, 7405410.9375, 7405923.328708275, 7406692.411445532, 7408717.1875, 7409566.948441551, 7410123.4375, 7410826.454344318, 7418402.606747534, 7427014.058128804, 7428006.25, 7428340.097909968, 7428472.488644801, 7428637.242899652, 7430669.816124767, 7431935.149722916, 7433045.3125, 7433081.84314709, 7437164.0625, 7437862.231024882, 7438060.9375, 7438172.072492389, 7445121.336587132, 7445398.4375, 7447067.385110087, 7450162.913822441, 7452377.883690522, 7453204.3622632325, 7456796.4261763375, 7463564.203342541, 7470210.8486835705, 7472486.602838516, 7484155.671006356, 7484381.809294938, 7486614.0625, 7488917.1875, 7489118.400769263, 7489357.484707303, 7489436.920509983, 7489889.0625, 7490033.276991874, 7492194.876578979, 7497777.911954541, 7501062.5, 7502939.0625, 7503564.744192223, 7504332.3157360535, 7504347.353513159, 7504376.95255269, 7505248.161762487, 7505743.479565787, 7505845.3125, 7506389.0625, 7506435.413067592, 7508051.5625, 7508643.75, 7511260.9375, 7511320.106107131, 7511773.695095283, 7512748.4375, 7515051.969308462, 7515418.586886571, 7515529.419483474, 7517232.445749784, 7517321.875, 7517581.10588243, 7519031.420942832, 7519239.34373713, 7520211.849067228, 7520864.368078121, 7521667.1875, 7522681.604351302, 7522908.798187294, 7522979.6875, 7523235.593436705, 7523470.3125, 7523524.459512805, 7523529.6875, 7523868.922510884, 7523950.0, 7524414.14988221, 7524741.326870026, 7525732.8125, 7526055.447290098, 7526160.287092335, 7527289.949907748, 7527367.296619046, 7527392.1875, 7527801.5625, 7528354.6875, 7528746.844386911, 7530909.653923115, 7530920.801022532, 7532552.510480646, 7532558.690744156, 7538973.4375, 7546080.219168259, 7549623.611629995, 7549757.8125, 7550249.504604328, 7550396.474276817, 7550942.83198075, 7552304.712358866, 7552662.5, 7563512.325998002, 7564200.3429835, 7566970.003060723, 7569752.747855975, 7571876.373799251, 7572004.259790965, 7586686.969140758, 7588732.8125, 7597789.558503885, 7601028.4693335835, 7615102.127704724, 7615298.4375, 7624683.238715801, 7640453.179006789, 7641324.82839448, 7645488.276394833, 7670242.895521141, 7670403.013927836, 7681135.094535235, 7689422.7773122415, 7698000.0, 7701205.562741638, 7704275.815258955, 7704732.616916402, 7705539.678354444, 7705831.25, 7707297.829459838, 7707721.650410596, 7707954.6875, 7708042.1875, 7708990.625, 7709271.739161717, 7709401.5625, 7709728.081197247, 7709886.704842842, 7709988.750462648, 7710278.3407351365, 7710779.6875, 7711137.547683005, 7711312.526048124, 7711642.1802102, 7711704.198998832, 7711876.5625, 7711976.518135254, 7712195.308867292, 7712424.964383554, 7712441.193975874, 7712459.226701849, 7712564.199418201, 7712632.958972458, 7712696.869878713, 7712717.588639805, 7712871.875, 7712921.875, 7712941.861584413, 7713039.0625, 7713041.765763023, 7713113.801309227, 7713165.692689488, 7713217.508287483, 7713270.3125, 7713288.657184239, 7713295.3585801, 7713309.433285537, 7713370.3125, 7713516.023105375, 7713714.0625, 7713724.964041235, 7713740.862437115, 7713792.1875, 7713834.375, 7713932.8125, 7714001.7644188, 7714044.062801513, 7714065.625, 7714106.535318779, 7714163.801793181, 7714315.217102965, 7714350.0, 7714517.89144752, 7714523.4375, 7714568.655233147, 7714584.375, 7714599.016894248, 7714615.625, 7714659.572654888, 7714744.972544676, 7714967.1875, 7715090.625, 7715145.3125, 7715207.5584058575, 7715629.6875, 7715727.909468726, 7715819.80022623, 7715835.361514507, 7716004.6875, 7716131.481184725, 7716258.791057453, 7716758.525901346, 7716827.360176563, 7716912.649149828, 7718891.651831168, 7723135.9375, 7746583.436756334, 7751115.575552048, 7751780.834550331, 7762584.967433354, 7762691.7729936, 7763289.0625, 7763838.472200844, 7764227.510513349, 7767814.207471461, 7775009.834002349, 7776059.981212359, 7828200.865485344, 7828304.6875, 7856070.341182858, 7878654.28940938, 7884048.415299598, 7893961.646619756, 7896748.4375, 7909892.1875, 7932111.006603031, 7942210.09409452, 7979797.124698154, 7983801.834324196, 7986503.392567864, 7995806.25, 8027159.856070696, 8039474.8556854455, 8056691.395210774, 8082662.5, 8099169.946046455, 8100712.264750876, 8103487.5, 8104967.718627781, 8105440.455862341, 8106827.941789029, 8108548.4375, 8108729.817038777, 8108992.7305935845, 8124481.603010692, 8125902.529608959, 8126198.34454431, 8126287.5, 8127375.110502568, 8132313.884402417, 8132687.5, 8133476.310963234, 8136710.9375, 8137065.971308921, 8140712.5, 8161566.931157898, 8168602.306368305, 8170229.6875, 8176156.088233025, 8181329.6875, 8182165.527361431, 8183513.344611942, 8190725.5730070425, 8206682.092646256, 8207340.161770047, 8209817.237910782, 8211509.375, 8214068.718765926, 8215207.115812236, 8216678.125, 8221778.125, 8228921.875, 8235039.292614673, 8239365.625, 8243643.227384273, 8244939.0625, 8245319.875888163, 8245960.048467617, 8247085.9375, 8249323.997738855, 8249368.567214469, 8250860.178081276, 8255537.934172892, 8255810.9375, 8256846.447425763, 8257013.505403137, 8257443.647868608, 8257708.096237758, 8258190.625, 8258261.86600772, 8259897.350125477, 8260029.454840733, 8262031.03381949, 8262151.314824452, 8262397.68974245, 8263009.491308662, 8263875.0, 8264156.443321288, 8264182.8125, 8265912.5, 8266184.851878817, 8267219.397488735, 8274842.701171266, 8276947.10876323, 8284558.560200045, 8286130.827115347, 8287733.400196359, 8289578.473330844, 8290670.225673487, 8291373.557211187, 8309914.185617483, 8309922.478055283, 8319585.059581039, 8344631.292829965, 8352105.208615898, 8352744.490590985, 8367083.942467579, 8386050.0, 8389534.270057797, 8394505.921120575, 8403057.270178419, 8416892.47864237, 8420190.625, 8434376.211163739, 8434658.819814147, 8436966.536379088, 8438745.3125, 8440763.430193696, 8440881.809614293, 8441270.114724945, 8442959.375, 8444228.125, 8444960.526935203, 8444970.540307453, 8445776.398668146, 8446803.125, 8447238.833280904, 8447614.0625, 8447760.386504184, 8448494.436316118, 8449507.8125, 8451428.286915675, 8452390.80255294, 8453590.625, 8453850.319113137, 8455343.75, 8456410.9375, 8456430.05706977, 8459000.886762116, 8460737.090421095, 8461815.68094164, 8468768.75, 8473278.737686215, 8480653.922770673, 8491102.234023664, 8493609.372838547, 8514367.1875, 8524060.9375, 8531233.410414154, 8552533.268052345, 8553575.703656213, 8559997.122452457, 8562480.706397377, 8562775.32035905, 8563672.093444169, 8564200.0, 8573705.320411803, 8574397.129729846, 8575235.376731772, 8581227.20030004, 8582903.03286334, 8591140.625, 8594908.641752215, 8604046.875, 8604829.452165432, 8618571.503223622, 8619269.789640104, 8622529.6875, 8628892.99465489, 8630218.75, 8634538.649619222, 8635825.818831284, 8635874.148259057, 8646362.4869102, 8649449.76104242, 8651395.3125, 8651951.394642416, 8660202.758108782, 8662813.513953516, 8667393.75, 8667495.608116202, 8667979.612012003, 8668637.5, 8669364.194766724, 8669500.0, 8669517.629929328, 8670884.81402192, 8672321.875, 8672331.715440758, 8672934.21486007, 8674637.939917628, 8676048.889567262, 8680059.375, 8688263.081860429, 8689323.157138916, 8690047.21962821, 8691842.121722812, ...], [94.63828981194638, 35.62067697784133, 7.034749311103715, 20.92140014953732, 71.52932664483959, 28.4324726441667, 7.582627346732937, 70.11560927090106, 24.66198655262216, 9.682380836778592, 26.86530269312819, 16.109338479286578, 55.15279243904005, 5.250291196237983, 24.337650011590192, 11.268310753798962, 46.367114723049895, 71.02967593027259, 19.404311382116102, 8.276036578127373, 7.587513855265588, 26.42436561959981, 23.63100268692102, 9.468760714119894, 25.918691208787855, 91.95513279455534, 26.931931793950817, 47.072393443626616, 5.311238320339312, 77.38374913700233, 53.82127253779131, 117.310001892293, 15.574264086664966, 71.20292030464192, 34.32493989095613, 12.795225752233202, 149.08720216594116, 7.617776607215282, 65.06161178328186, 76.4630647190804, 7.893361597964149, 32.35201282506759, 5.820512726263434, 8.352166506519033, 23.5162825118093, 79.3972670220042, 50.38154474583227, 7.927565037747199, 8.782182125101274, 59.65069169887097, 74.47097138801057, 7.5119512959208965, 87.3983596626389, 7.437793896901666, 6.4936886239456735, 7.907837467109689, 86.1746126510611, 11.306013130721833, 9.729740800830815, 30.723336719347298, 35.84103143748587, 20.701976549622835, 15.774715707785235, 53.560442091226264, 59.99722429875965, 52.86385765269655, 14.002485061151337, 54.43097810889062, 12.64209577575047, 16.32100276209094, 63.99338892107526, 35.18808182563273, 36.23362695044603, 60.96645497904241, 27.3141451654067, 12.316060947256846, 107.0384383412036, 15.241683645808068, 12.303044552955349, 18.228236971220724, 5.550553407415744, 62.7777484387483, 74.80467104155036, 83.16757869947999, 7.401102778365645, 11.466273631652703, 21.37175880778209, 70.71580313406614, 8.77287845343906, 60.099608343263284, 60.82453652006554, 5.731987697920555, 135.48751477552486, 21.519281252196315, 61.94487986368998, 13.18592868320007, 46.81824371936753, 124.88902457219123, 42.34205605730168, 5.930363432284358, 48.13825222813371, 71.03442279157308, 14.353526314734523, 58.24670998173609, 85.27546396484749, 56.00030857409974, 9.398995903331937, 99.92920695929871, 68.05468678119487, 27.403826802304927, 14.400481171113153, 67.66900852659684, 29.469879059703736, 29.37806705224527, 26.230154437132082, 11.377664670482002, 33.670994487090255, 63.62686901996466, 25.639446503437657, 52.39901968263287, 12.877480208645249, 62.69706217407367, 37.11266191409508, 5.823020769254312, 54.32745498343196, 26.165180493300763, 13.233051845708598, 44.30663767928958, 89.42702615989528, 90.90986506573917, 49.6920750307495, 23.787824648404168, 48.842867728100735, 18.65205698594395, 14.171296604697776, 59.37608842194709, 12.06393072723779, 40.87990877491192, 83.97021524178972, 5.2806870669461885, 8.314432269471512, 43.338725941738005, 45.51541963582433, 7.28776961372534, 7.365840241389726, 17.431175324363757, 24.998876792343246, 92.13284916168398, 27.54024093686536, 16.64717005166026, 26.422105271738353, 44.112118805023485, 37.77834613134714, 41.97804207305819, 10.983325171348145, 27.984679754712452, 10.60975374817287, 73.34700587613948, 56.659805103587644, 26.357224881461445, 45.09106815876713, 13.433003687606632, 71.74416804898081, 14.938564196609384, 13.820725264217927, 83.60465951491527, 9.390956165067248, 111.9175942321701, 22.4295988978714, 77.3742151076588, 6.034026167516536, 78.8932753209878, 9.132446252560992, 11.943760500475136, 92.92438977883359, 85.41232771089491, 27.755200145485464, 15.86828100253152, 9.700321142690226, 74.95443908525266, 45.923204462826234, 116.95812981292133, 5.6308840839469605, 5.429732511871141, 20.48062395123093, 6.158125479939599, 70.6574321664807, 47.59286198977416, 57.58821806717059, 48.301254370097325, 21.66687536898194, 60.717693928733816, 16.941825859424146, 113.10392590011217, 7.665059868312299, 13.068043576887229, 38.30631078815635, 86.3489168376222, 7.277312130467459, 16.845120193174022, 29.026104209128103, 61.583071427232255, 7.480812765702759, 7.386220137516083, 52.697739097037385, 25.878158660059086, 7.146144953103077, 48.43266179887958, 18.710576302664833, 24.27526709635719, 73.8316830865376, 14.812452002074723, 148.6669399650023, 40.81179966695318, 19.60105607749422, 22.003734908719252, 5.348049050049601, 22.247853532276654, 74.5773866494755, 7.203665756662357, 23.471713269741464, 8.781840284096761, 15.573023652461764, 35.62090343302329, 17.735100436256715, 13.785005930683353, 72.25971410886348, 10.061698546184811, 21.587541099844742, 61.18272609849082, 70.69741645773749, 26.351100745785022, 6.215322772774463, 5.710263886571116, 14.527987997038323, 21.63255344843262, 17.95706355751505, 66.85175760859822, 79.70257998862373, 24.91523868405752, 5.577157917246776, 13.373426416842227, 5.419148308796932, 21.032369554527236, 49.132072738969754, 55.33355444487685, 15.85987697367986, 103.88430986657457, 34.26012635272215, 29.00773368657775, 5.039846794088877, 7.518849909058594, 13.999628074846086, 73.7411535980399, 8.909798736976406, 35.66818330454848, 128.491809068154, 7.4023126215457635, 19.091767676661924, 96.20301741792548, 11.516979746873213, 64.35480988120716, 40.830163171238944, 31.189857302358742, 101.34580394325951, 6.911574270174373, 12.369151696245057, 33.14686046838753, 23.714517032028834, 50.210498047439245, 137.103945572885, 29.567607934921632, 61.82471838210812, 70.3355800504874, 54.92209415318199, 5.67306612117421, 14.658558665628519, 71.37492572492316, 5.328612621681583, 70.82315796359218, 53.40528009627704, 29.14413876048116, 42.23300609234106, 106.6132635331781, 11.900179616324293, 16.511038201607374, 29.540275392961636, 13.07642614872563, 45.8731891387169, 11.664137841129332, 26.405282303285794, 85.79860281905621, 24.652030141318498, 49.45801830734474, 124.39465350657832, 60.443417040234344, 37.95475686541371, 12.429730478269668, 12.121423756018066, 9.385373498138557, 13.99572789191421, 85.77507731182142, 27.336186587352767, 26.647727218660506, 22.378327841896525, 110.57755417369395, 21.851488898220424, 33.162308433412214, 16.471379483601467, 75.59114776714216, 7.9445348927869075, 33.155877754475235, 42.31139617181845, 93.50256965320709, 14.573692661036311, 95.27527666299574, 20.982486523793362, 73.23470416057972, 25.921700706395388, 13.80001366591036, 87.12425267953859, 20.376436003224626, 21.243781183291816, 28.588556862111, 27.019426990054516, 15.785263664373474, 7.621266604484321, 9.697373036216469, 51.18601176833797, 30.19023288649332, 99.13552474601472, 24.311334203758562, 48.96850323622301, 31.232973075672025, 6.1697851870806755, 27.88601833849751, 15.935449621133884, 40.32071024287313, 10.79134281951319, 74.9007390971252, 8.702852702040081, 5.178409287398053, 53.498205665101665, 41.381805454230765, 37.49283484650671, 52.66440102365558, 5.467495354832483, 57.66424857357481, 62.93475522726291, 12.772119322028171, 43.01588689856007, 25.332878399440972, 48.87921896246326, 8.373867127110698, 9.58256014381549, 50.05250243170234, 75.90595082674457, 15.883207057951367, 8.462920328328437, 5.699753060367361, 35.06712248307595, 5.103698853509026, 87.77310213047699, 9.365563608291632, 18.050625395018415, 25.098830246834524, 73.98943008576605, 6.126199687739799, 32.23193797509774, 12.023556291727093, 206.15617377953157, 71.21167976797707, 27.194013961709203, 95.86126723410234, 5.503297779562671, 14.60445237425658, 21.21530110620287, 14.414712306621853, 85.81196381030117, 65.35062014382754, 22.082027165941206, 22.953353864904642, 20.903393953272158, 5.910465940432148, 19.721564742162315, 8.275847101359698, 11.51042595847423, 10.402365017556482, 76.64910588438788, 24.441743629771786, 8.859662734672337, 31.540499045180844, 12.38681905420284, 61.073320427223734, 74.41265950200673, 41.02190567644645, 5.284115148082361, 28.093882373650985, 5.414710972237882, 24.88702091885483, 44.823896594737676, 8.318935708078318, 48.51398765467622, 6.748159509275234, 5.960893475895645, 91.40737999256122, 15.424207104548167, 32.72253695132811, 56.21235860492712, 83.15653771196499, 10.510925024126468, 57.510483797313256, 11.614514024134806, 16.576788148882923, 45.42236420871252, 22.414877101915206, 93.23106446611163, 28.508718359105792, 97.04239981404918, 54.18453123087832, 5.811854128005304, 113.58202970503453, 10.807310356484102, 28.977940109328653, 63.84880763424746, 13.491957436082876, 66.26474168050913, 6.479182089597198, 87.11391342366602, 56.78767637446422, 14.346288447219381, 29.67393461159651, 8.65747734269614, 24.764150777038772, 5.330830173632789, 11.387987960268863, 15.248392628872901, 5.562424232973692, 12.776172640511227, 11.247349459925587, 48.166038024532384, 6.757578093109765, 54.355980109966694, 14.542681157645008, 40.87692646189576, 21.7125635062097, 19.196147087868898, 20.26522673179188, 44.96217801738796, 10.79374334198037, 19.79044558843039, 17.15692872138516, 31.163233900645146, 23.385915223851903, 15.94492695572195, 37.49711025657196, 16.522231884005496, 43.15419578812176, 67.941317438424, 18.996232782387143, 52.59463345854016, 9.695491402884981, 8.021152678921121, 162.03420414082146, 15.144969746786478, 25.376772134090878, 32.63925073252, 66.29821190418811, 24.584331991757256, 5.552799231645886, 18.914152796709537, 47.66441685327052, 56.31722799934217, 9.04291387621423, 48.078922358365915, 21.182913662354977, 66.95392803515648, 22.050534081751962, 6.159735534606223, 63.47692944670685, 63.85901176989141, 24.18009561916002, 86.19318221324427, 50.28889104843036, 23.377692493819747, 71.10331459439836, 45.47993596401015, 23.533488578799307, 5.50485000067981, 84.65787263906503, 6.294906858738427, 22.550875087350747, 148.45574477602892, 6.61481495908302, 5.225866495049125, 54.782771670473444, 36.371259731104495, 53.38378306408991, 33.572134407596764, 44.20567497854164, 8.752014537293874, 69.05784255787832, 9.92212084566423, 68.39287149658233, 29.279285753852534, 59.11915716784946, 8.312901114210655, 27.09311840637222, 30.510139957257078, 38.37815462185688, 46.85908422655499, 29.604688319304017, 26.5398582864595, 34.10258644624334, 51.13102976693821, 5.860830294680223, 12.03099797806035, 61.353446032548554, 11.032089622060422, 33.72989595489879, 22.077632460076714, 85.48472056996074, 61.031880035379615, 47.74733327678461, 68.95663159105413, 6.611281936652243, 13.82809125874559, 33.15912530034449, 18.681225115445265, 66.59810911958422, 47.91344870376788, 11.54554402044467, 134.97247913508664, 70.69617402777851, 9.93743176560146, 5.231710658163733, 48.18701037988071, 20.710108486083673, 8.471340235543742, 89.6073934919418, 50.6979825415193, 7.331116755972519, 10.887661350206061, 84.05265998559848, 56.24767023076758, 64.5970228038891, 20.41772431427777, 14.115733623160086, 56.28984325642311, 49.22839151426592, 33.331895065209544, 21.184603099096936, 57.7120252789811, 10.183974838878697, 57.14479226463135, 17.135529848502024, 89.24151816656115, 6.167570407620023, 28.58761211757154, 95.2363526992036, 82.25281693079036, 114.15998652432184, 7.99229395842423, 52.576349326284365, 29.97647289778849, 13.764908909382212, 143.09408913350003, 23.50971277822326, 12.702833532954896, 28.461404475462253, 14.423781326993078, 25.964357703084783, 86.39264088042212, 34.71323249308924, 52.724417096330065, 19.89401925460444, 38.17816589988053, 11.340351279634238, 9.843766986807358, 67.69862563149385, 6.388448125537193, 12.96456688504656, 49.685231051224356, 29.13228905579375, 24.411454515239512, 56.02145484019477, 83.32173563056554, 19.38947586017449, 31.630113351808312, 49.71047745601509, 34.83740995892152, 9.279312833136284, 210.30656194160144, 60.245818402915894, 32.69342576466862, 6.809054574910011, 48.07582299390018, 40.2274491570145, 64.69304146087518, 10.962758522730818, 126.29891496060662, 68.0857445225044, 105.03206410329781, 10.39296487403431, 12.24461907563439, 28.5358449987583, 133.0776069277155, 19.03386007845532, 76.68234046234053, 17.814845384404286, 44.729692768570324, 62.394748618148085, 52.87451947609929, 31.005092066605464, 31.74055407820253, 53.45085815549935, 18.274019775132857, 11.842629796198757, 212.31944139023244, 9.070747778197674, 6.418962902571224, 15.506957913449055, 20.74933184053627, 19.626063819134927, 8.885532056752508, 18.224736071472492, 87.71070543156726, 78.38518192793968, 7.481628809314587, 37.15129459077244, 5.772312097919878, 46.438975659106006, 28.181453211513936, 8.988137799891001, 14.187234379309723, 93.90173754727041, 77.54402088747821, 26.797902478133718, 92.77077148102337, 75.98690151254578, 16.670603616284126, 35.59117927165043, 49.735878967123696, 116.64092649473191, 70.66219707007858, 94.48126847277206, 37.829724091804394, 71.73728562304049, 31.391748317485835, 5.038082897115639, 17.06886729671141, 82.22413047592315, 9.700822548165235, 5.392274757232868, 58.41893798507412, 5.787333264433795, 49.95256155115221, 25.969483066107827, 56.229461168445084, 9.581092173649825, 20.108936420861934, 7.717630131549007, 103.70159787594285, 37.63786644034877, 13.120484570522995, 72.50780234391634, 23.20375204552916, 36.98675882194876, 5.23026584578654, 58.50379206194909, 7.666846806275249, 62.52710763326186, 43.26502790404158, 94.40828463269654, 68.4912797954715, 55.37681794644473, 106.81959873020185, 101.38483161717554, 23.770903763140037, 75.97922634566747, 60.166246253629424, 62.910906817071044, 14.826096492952551, 11.593589269946666, 17.200082483381003, 107.68177033621618, 70.63974835089302, 84.24089159094343, 5.260273304956913, 22.364832985686554, 38.75725264835084, 5.276026237275315, 13.606421938364067, 48.948521024430235, 19.251016079361122, 29.915814864662703, 30.834552166555195, 73.45648054612127, 23.630912172771016, 13.675603178008808, 5.800148722986262, 47.77567799799204, 71.28996020035629, 31.908372089471772, 5.983796692621629, 11.71224742685341, 12.143267587823807, 56.10718299469468, 8.525605829935401, 9.377490302755426, 14.325426932746716, 82.9734284991142, 100.20383494844589, 26.506598283177276, 71.1589599859469, 7.965808545708457, 52.807941324443796, 94.18908393099647, 12.696342618436546, 57.05906873542671, 17.956113181066797, 36.90353528887822, 41.8254722560166, 59.258410529584545, 59.42289987302515, 111.21137868496865, 36.44205788602268, 7.554835220916275, 71.42325143611144, 11.059923636670183, 12.773171497370956, 56.14841953645691, 11.48253276924374, 39.88814632068491, 40.18925291023055, 8.30040021040758, 28.381544742249144, 13.868581009098898, 85.86603594065306, 33.55957513130615, 28.45341597462962, 27.83903512862464, 17.667655413877092, 23.776526631989018, 8.360333868655554, 62.709389930305605, 6.26655154645157, 22.27757757612781, 70.0399318014986, 68.5210675792697, 28.841757109593978, 91.30002134033268, 6.21534588159137, 126.9850439349517, 6.275788493149919, 16.323538638350215, 73.36542248293013, 13.593066398291269, 22.091296148431933, 22.42941843474793, 43.200579841705746, 28.567808723946612, 45.62787987689328, 7.11203116481648, 9.540577043454496, 139.97914622211653, 65.60477951495419, 101.88081714742238, 154.67807806183473, 145.779168446874, 46.214435939755646, 18.81107621897719, 148.87730043385017, 22.463862681373893, 70.47328058474287, 18.533377153523883, 41.22741110958698, 144.34603095292061, 39.00195783112159, 5.362175297015721, 75.89133633591236, 11.451378390820242, 106.06877601845639, 101.50465249103252, 28.800665095392805, 86.09766457702892, 102.85189156761469, 73.52380322011616, 10.806739410879903, 13.292556295884069, 37.095107868691585, 85.84739285159833, 15.902527165624718, 143.36282586698977, 5.654769211686774, 38.511878763658, 5.62234910092532, 13.229407647417892, 33.794164264873615, 18.009136788270965, 8.260600381026661, 37.56921392151577, 17.81045255340166, 51.40232515631361, 38.030033394597304, 20.637252709806276, 57.42460970660756, 5.952130733893585, 85.34539606000013, 7.290477689417796, 5.663789066102479, 44.06570777793709, 7.129011975509389, 112.50731509978654, 28.09289364002951, 18.568794905212638, 60.72795750575287, 57.87098425824255, 27.42045821413039, 12.474616574564475, 9.551855313459914, 11.58094069777619, 23.04723265424576, 84.32199729925225, 48.68027555652283, 10.909385389357546, 39.79676729025465, 29.77893118213159, 60.837084992645146, 122.2942989574522, 36.07586173380176, 7.807339246778827, 26.977834888696066, 80.2264477891348, 41.73944668192701, 15.459360051316663, 17.513568855763218, 78.04961186418691, 57.66609007865429, 74.50608147638944, 29.463189527712235, 48.19276808229243, 25.44365693381543, 41.80921802825843, 10.756054607195848, 75.7069585904892, 11.715891185202267, 47.41891036643654, 159.8744024622895, 61.24962040878829, 70.22757986544958, 14.358807631702637, 31.998418242946105, 26.732648784589788, 5.115450393754683, 52.99319758895636, 19.68826258990269, 73.67255477074333, 18.425100548122632, 49.261799676830854, 14.823781334261561, 80.8133627202807, 63.850011145168374, 45.79306240468193, 61.10082758220658, 8.412133656099693, 43.24981629262145, 86.17149332472718, 68.1378343134298, 51.13104335299995, 18.328189345317128, 77.64289586157092, 17.615239473997633, 7.07421779218484, 7.349871272707814, 16.90234996702373, 35.38124072249089, 22.247347933239517, 6.403169088616316, 76.47473468312477, 60.90214080399811, 30.438773711193253, 36.633193173273355, 27.703755196521847, 24.65080499676305, 6.45372872846662, 61.38320786274022, 52.0508660054571, 8.349056105951414, 53.37544042574976, 87.0761657118189, 61.75955043455355, 86.54302812339006, 6.1391352460308815, 63.40791832594295, 5.985423272021066, 15.914228952487608, 117.66276601798702, 38.17847254478824, 53.01795477578187, 9.644392067372776, 26.91796179132261, 5.3460405493852425, 33.454670343792216, 26.78240053635652, 36.00667477128317, 82.87158430697932, 25.916308790906914, 6.006604282124312, 55.52470993752453, 42.547811292260334, 111.39239245594402, 77.20439911649098, 5.89352853202062, 8.446782347451817, 55.06862603066157, 13.752516477861178, 6.403445770811849, 72.24822708144457, 91.53851510443681, 12.977730149609284, 12.131737655161048, 42.994066305127234, 59.903031930434906, 45.54921824309408, 39.798217080735824, 5.471629986146339, 35.79182420010062, 73.97760251646733, 8.16897127284341, 54.91717753922219, 13.188517182788432, 97.17119401900746, 57.80091100841456, 5.101656396612419, 104.28529507369525, 69.91569652620228, 5.967686096080346, 77.88144941078856, 93.5368746883758, 16.565895448918933, 19.902544603526266, 9.007535923079582, 84.22694717349667, 32.73617733919908, 12.242587904299544, 19.20454553952512, 6.000100061920836, 71.68916829853538, 42.08782168047019, 39.737621835269564, 12.211418420929713, 13.932480769078493, 5.867946347823969, 15.976752159034135, 13.208194242543266, 55.37189919675984, 49.440394761154636, 54.93948095505759, 9.930782867177758, 11.550662822611935, 6.03166302622308, 130.87216446361015, 63.249448575323214, 64.52331692211644, 6.941179359808783, 40.55373328939922, 10.778763770526712, 9.035657773749591, 17.65337251827176, 57.82015770204899, 10.121908944534145, 119.65721908983613, 22.40853140288075, 45.86115606924314, 7.321723883128215, 61.50226545455984, 50.70066307242928, 70.4908310283232, 34.88884783700846, 28.333698763042733, 53.504678588549595, 89.55488627062957, 16.202203378101515, 27.115621173772066, 64.24943543085818, 79.57564473926226, 40.575587276236696, 16.94668856689321, 6.134975346618311, 72.32062591925435, 9.758619883417543, 6.462277523906464, 5.4155622476593095, 6.8572438724994305, 70.75439867978817, 66.83621859945471, 84.73850528430161, 5.353871165662623, 33.228765358364825, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([2475721.875, 2501693.325567847, 2542513.72207182, 2544467.1961923214, 2551098.4375, 2552109.370303865, 2560070.2551536644, 2571974.7772901687, 2572101.082922238, 2576087.887833539, 2693237.4212995344, 2812485.4237475996, 2813681.25, 2857781.4328261577, 2858642.373797615, 2934403.213129457, 2937007.7153511927, 2938772.113867795, 2939164.8865819927, 2939424.9800139633, 2942456.206315675, 3095648.3214727556, 3095738.7530678967, 5455164.220598791, 5598590.813603273, 5663571.355783874, 5666601.476481376, 5667873.654623698, 5721355.326379045, 5745439.0625, 5892037.019338637, 5895516.141112072, 5969357.969163293, 5976107.8125, 5981044.745830735, 5981933.669019902, 5990892.1875, 5991245.352519876, 5992992.02651566, 5995518.75, 6023780.424222801, 6045945.3125, 6065692.275398101, 6089439.184504322, 6091748.118920668, 6092548.892902318, 6092673.873895976, 6094055.503232935, 6094905.520220008, 6095579.6875, 6095681.25, 6096245.052851181, 6096938.614676321, 6099957.330671003, 6105973.479457578, 6109266.395346846, 6112695.3125, 6115828.2361564385, 6136856.686301559, 6152138.689674688, 6155113.757827766, 6164347.501007175, 6173008.015177782, 6177449.727548186, 6183885.9375, 6185460.9375, 6188521.604702648, 6206165.625, 6214834.0491690915, 6215617.507766625, 6215618.75, 6260893.75, 6294698.4375, 6295806.25, 6297160.073028465, 6319097.522050451, 6326481.25, 6329050.076586475, 6333308.453508724, 6352799.0957939215, 6363653.479838189, 6387559.375, 6389601.5625, 6393625.252982412, 6395805.654266094, 6397095.5188189605, 6401271.362749454, 6418452.958072978, 6419550.818801383, 6420220.3125, 6423221.928288925, 6428758.201760738, 6443315.76105444, 6443397.24646097, 6444968.75, 6457393.19802917, 6476104.6875, 6478554.69696543, 6480251.5625, 6485468.6455815695, 6485834.245571402, 6485845.15553485, 6485880.87671911, 6487637.019483978, 6489292.1875, 6489343.75, 6489551.641371465, 6489896.901035175, 6490073.4375, 6491078.392665375, 6491543.60042418, 6493196.880112341, 6493238.618773333, 6493404.295131867, 6495634.2471224405, 6495661.091738465, 6495840.625, 6495996.875, 6496201.397250775, 6496456.25, 6496496.202614305, 6496681.25, 6496823.293915534, 6497150.121440074, 6497224.46425427, 6497243.185794586, 6497266.653190286, 6497302.811169954, 6497578.125, 6497578.125, 6497584.375, 6497690.327897558, 6497718.335029311, 6497761.658678142, 6497837.2821003655, 6497905.449603142, 6498017.137483089, 6498082.8125, 6498117.1875, 6498218.4095994495, 6498278.177305267, 6498350.0, 6498457.8125, 6498466.222047161, 6498757.104696057, 6498794.27900381, 6498900.564289328, 6499045.3125, 6499087.647250591, 6499117.608685482, 6499315.508836033, 6499384.375, 6499478.125, 6499608.803197208, 6499640.530622681, 6499664.034615877, 6499710.578770557, 6499747.5974686565, 6500063.4699021615, 6500290.077837278, 6500453.125, 6500469.851094062, 6500582.709551837, 6500701.561727071, 6500702.796200559, 6500705.944690423, 6500882.882100721, 6501076.5625, 6501148.594918194, 6501150.850764981, 6501166.650960618, 6501206.70808304, 6501321.629942055, 6501366.091080984, 6501470.3125, 6502006.09536082, 6502056.209889112, 6502147.098608468, 6502616.031294284, 6502646.875, 6502765.834816486, 6503031.398966908, 6503078.425436656, 6503094.544286334, 6503226.343481056, 6503258.460002087, 6503445.3125, 6503887.5, 6504134.375, 6505375.0, 6506458.168724301, 6507257.8125, 6513499.510292055, 6520836.221165803, 6522090.792754632, 6527144.715512513, 6532001.5625, 6532346.875, 6534894.31149647, 6538801.985929415, 6547037.5, 6548150.0, 6553351.210834546, 6553832.169782726, 6568690.453353577, 6574560.44012954, 6580639.155611883, 6584035.9375, 6589802.408582715, 6590737.23998296, 6592303.125, 6592312.465723147, 6592560.214415239, 6593032.8125, 6599008.661822276, 6602292.91944136, 6602643.9277329, 6602649.572472268, 6602664.549368388, 6602778.428788527, 6603359.22377129, 6603768.019709632, 6603920.468873435, 6604507.8125, 6605909.955117468, 6607271.778476995, 6608507.30810061, 6608674.1910182955, 6609705.8269004235, 6611986.4778726315, 6612339.0625, 6615543.629526864, 6616040.203069881, 6616528.179946362, 6617184.679689537, 6617187.013866812, 6617252.178505613, 6621144.827275194, 6621524.1810897635, 6634059.161005534, 6634429.000928388, 6642179.204709209, 6675641.155474158, 6698747.652611837, 6707834.231924665, 6745912.5, 6746973.659242368, 6761110.9375, 6783793.105264586, 6784771.339382221, 6784824.899047947, 6788395.072993433, 6788540.35380011, 6789281.25, 6790752.580423226, 6793267.768812028, 6794292.1875, 6796433.78306543, 6800634.647253145, 6800887.5, 6800950.235543588, 6802153.125, 6804569.487318543, 6804744.709855544, 6806207.273797793, 6809631.949021172, 6810344.421490401, 6811304.6875, 6813462.197158804, 6814509.375, 6820203.125, 6827156.25, 6828835.9375, 6836120.787224682, 6842470.3125, 6846888.519764883, 6847648.361229616, 6852886.614488511, 6854657.418889897, 6858570.225852118, 6863117.1212623175, 6864848.4375, 6872538.470412886, 6872757.8125, 6873337.943732231, 6877960.702604246, 6888162.5, 6889336.359439166, 6889596.125537953, 6890440.943068438, 6890918.632817577, 6890923.0242117075, 6890993.517428329, 6891620.3125, 6893000.630741085, 6895177.98601803, 6895378.125, 6895991.323985746, 6898030.34653888, 6898345.375645895, 6902079.415067157, 6902815.0699109845, 6902829.624434429, 6905164.696383755, 6908819.896885858, 6909142.812668793, 6911007.12260618, 6924121.875, 6924856.600777094, 6930265.361530943, 6934503.979377426, 6935818.75, 6937926.5625, 6938298.932772195, 6939085.690310867, 6941598.091271598, 6944049.44724326, 6944220.30590582, 6945932.665363017, 6951547.183740613, 6953082.510612339, 6953321.255266722, 6956850.379953259, 6958297.790724413, 6964042.106518611, 6965350.205054483, 6965970.362073726, 6967695.715769138, 6968915.625, 6971853.125, 6972122.514153163, 6973558.061528781, 6974028.125, 6974875.0, 6975605.438010786, 6977971.415351194, 6978200.238425962, 6978788.37973055, 6981191.961091083, 6981926.5625, 6983369.462137077, 6983444.3015621, 6984719.813442475, 6985050.0, 6985326.850875732, 6985852.456685291, 6986151.695297128, 6986531.25, 6986798.4375, 6987810.221964895, 6988297.260558052, 6988493.564526619, 6992593.75, 6993812.661497565, 6993911.22031142, 6997441.390394316, 6997585.294299144, 7002283.039416075, 7002473.756716817, 7003656.139367637, 7006511.741951317, 7008903.389549644, 7009721.724189369, 7009876.602625531, 7011474.366723702, 7013195.111184541, 7015468.75, 7016865.983582413, 7019478.125, 7019573.943844382, 7019762.9089903785, 7019877.802191653, 7020704.135873788, 7020737.7083598785, 7021318.120679842, 7021499.908666325, 7021669.784193619, 7021932.667064256, 7022640.625, 7022950.0, 7023149.557077865, 7024022.077711029, 7024284.338044157, 7025469.974080141, 7026483.451509078, 7027782.792153723, 7030172.106789539, 7030252.605459808, 7030806.680854218, 7034821.6272368105, 7034863.446409828, 7036220.3125, 7036306.92955196, 7038509.375, 7038631.203629265, 7042993.75, 7043110.710126731, 7045725.297567225, 7048797.293332449, 7049250.007209842, 7068520.3125, 7074001.623192995, 7074555.861295158, 7074943.672638023, 7075084.6184802, 7075089.0625, 7075334.496128186, 7078375.0, 7085727.985419459, 7091492.1875, 7092558.94098538, 7092696.875, 7093770.6031128075, 7095225.37171692, 7098668.75, 7100320.067575276, 7105364.862321653, 7106182.823661936, 7107429.66995038, 7108095.3125, 7108482.783723677, 7130264.6530979, 7131843.534871102, 7132512.5, 7134652.954257326, 7150933.934481149, 7158978.125, 7163424.949359547, 7165795.3125, 7165820.3125, 7181420.147050841, 7182141.9627780635, 7184544.391174776, 7185079.46290031, 7185144.985204578, 7194376.722873407, 7195270.390750065, 7195322.4651406575, 7201619.5986448135, 7202784.450218533, 7204728.125, 7206190.595231793, 7206268.334148097, 7214428.016273854, 7215356.063143039, 7215880.097445482, 7216519.760781259, 7217189.992423228, 7219276.5625, 7219537.2752904575, 7219777.146543491, 7220049.373383829, 7220730.330796707, 7220837.821179818, 7222143.990502872, 7222651.5625, 7223128.485924342, 7223253.125, 7224321.875, 7225078.894569882, 7225760.9375, 7226733.2138365945, 7230482.274423317, 7231710.417764045, 7231812.552375375, 7232034.944608661, 7232056.25, 7232479.732908491, 7232530.490228016, 7232536.337206961, 7232846.070736778, 7233271.875, 7233371.256850438, 7233462.137904251, 7233984.376464557, 7234000.149774817, 7234045.699305203, 7234757.3666216545, 7235360.036804654, 7236523.712687598, 7236844.965836271, 7236868.402362531, 7237418.588204618, 7237809.375, 7239054.357723168, 7239304.6875, 7240540.625, 7240956.754973749, 7241049.404271249, 7241272.732693398, 7241823.653709287, 7242163.662379014, 7242564.0625, 7242621.081604345, 7242632.1087453645, 7242771.554579832, 7242817.1875, 7242908.590543072, 7243011.554211859, 7243160.9375, 7243369.537374971, 7243540.625, 7244033.437232485, 7244267.1875, 7244323.4375, 7244629.6875, 7244640.674449137, 7245181.577143042, 7245425.0, 7245764.516936658, 7246129.6875, 7246267.1875, 7246414.90143359, 7246468.75, 7246485.9375, 7246524.051222503, 7246598.94755674, 7246643.75, 7246692.125453525, 7247093.75, 7247099.668088111, 7247124.091511896, 7247143.256504355, 7247398.90654597, 7247575.0, 7247614.811491222, 7247974.673614974, 7248291.9936968265, 7248355.412869292, 7248377.433205133, 7248754.6875, 7248983.064325672, 7249191.612042324, 7249350.0, 7249389.701673022, 7249530.762782272, 7250143.75, 7250349.417755333, 7253025.333777518, 7254920.3125, 7255350.990084475, 7255380.429260208, 7258820.153299283, 7259457.02367947, 7259931.25, 7260750.0, 7261950.947489868, 7262490.39005379, 7265458.3946373435, 7270190.315593603, 7270360.376728535, 7272979.156008367, 7273417.1875, 7276155.5487882625, 7276517.005654827, 7276692.66445344, 7276750.366664183, 7277080.418545045, 7277083.432890829, 7277362.822007154, 7277571.238872257, 7277859.252367821, 7278268.148710838, 7278279.303586418, 7279248.018827853, 7279532.465282554, 7279757.247217778, 7280062.180893516, 7280291.910940663, 7280570.309272433, 7280684.232196492, 7282589.383528692, 7282877.13773002, 7283865.625, 7283930.863155805, 7284293.073223347, 7284345.3125, 7284554.819412981, 7284845.862076005, 7284981.25, 7285039.965484096, 7285205.98701659, 7288244.363230071, 7289385.9375, 7290059.012102631, 7294614.0625, 7297489.145703135, 7305548.074122016, 7315732.6177516095, 7336242.1875, 7389936.013621573, 7394603.06274598, 7404463.489971756, 7405410.9375, 7405923.328708275, 7406692.411445532, 7408717.1875, 7409566.948441551, 7410123.4375, 7410826.454344318, 7418402.606747534, 7427014.058128804, 7428006.25, 7428340.097909968, 7428472.488644801, 7428637.242899652, 7430669.816124767, 7431935.149722916, 7433045.3125, 7433081.84314709, 7437164.0625, 7437862.231024882, 7438060.9375, 7438172.072492389, 7445121.336587132, 7445398.4375, 7447067.385110087, 7450162.913822441, 7452377.883690522, 7453204.3622632325, 7456796.4261763375, 7463564.203342541, 7470210.8486835705, 7472486.602838516, 7484155.671006356, 7484381.809294938, 7486614.0625, 7488917.1875, 7489118.400769263, 7489357.484707303, 7489436.920509983, 7489889.0625, 7490033.276991874, 7492194.876578979, 7497777.911954541, 7501062.5, 7502939.0625, 7503564.744192223, 7504332.3157360535, 7504347.353513159, 7504376.95255269, 7505248.161762487, 7505743.479565787, 7505845.3125, 7506389.0625, 7506435.413067592, 7508051.5625, 7508643.75, 7511260.9375, 7511320.106107131, 7511773.695095283, 7512748.4375, 7515051.969308462, 7515418.586886571, 7515529.419483474, 7517232.445749784, 7517321.875, 7517581.10588243, 7519031.420942832, 7519239.34373713, 7520211.849067228, 7520864.368078121, 7521667.1875, 7522681.604351302, 7522908.798187294, 7522979.6875, 7523235.593436705, 7523470.3125, 7523524.459512805, 7523529.6875, 7523868.922510884, 7523950.0, 7524414.14988221, 7524741.326870026, 7525732.8125, 7526055.447290098, 7526160.287092335, 7527289.949907748, 7527367.296619046, 7527392.1875, 7527801.5625, 7528354.6875, 7528746.844386911, 7530909.653923115, 7530920.801022532, 7532552.510480646, 7532558.690744156, 7538973.4375, 7546080.219168259, 7549623.611629995, 7549757.8125, 7550249.504604328, 7550396.474276817, 7550942.83198075, 7552304.712358866, 7552662.5, 7563512.325998002, 7564200.3429835, 7566970.003060723, 7569752.747855975, 7571876.373799251, 7572004.259790965, 7586686.969140758, 7588732.8125, 7597789.558503885, 7601028.4693335835, 7615102.127704724, 7615298.4375, 7624683.238715801, 7640453.179006789, 7641324.82839448, 7645488.276394833, 7670242.895521141, 7670403.013927836, 7681135.094535235, 7689422.7773122415, 7698000.0, 7701205.562741638, 7704275.815258955, 7704732.616916402, 7705539.678354444, 7705831.25, 7707297.829459838, 7707721.650410596, 7707954.6875, 7708042.1875, 7708990.625, 7709271.739161717, 7709401.5625, 7709728.081197247, 7709886.704842842, 7709988.750462648, 7710278.3407351365, 7710779.6875, 7711137.547683005, 7711312.526048124, 7711642.1802102, 7711704.198998832, 7711876.5625, 7711976.518135254, 7712195.308867292, 7712424.964383554, 7712441.193975874, 7712459.226701849, 7712564.199418201, 7712632.958972458, 7712696.869878713, 7712717.588639805, 7712871.875, 7712921.875, 7712941.861584413, 7713039.0625, 7713041.765763023, 7713113.801309227, 7713165.692689488, 7713217.508287483, 7713270.3125, 7713288.657184239, 7713295.3585801, 7713309.433285537, 7713370.3125, 7713516.023105375, 7713714.0625, 7713724.964041235, 7713740.862437115, 7713792.1875, 7713834.375, 7713932.8125, 7714001.7644188, 7714044.062801513, 7714065.625, 7714106.535318779, 7714163.801793181, 7714315.217102965, 7714350.0, 7714517.89144752, 7714523.4375, 7714568.655233147, 7714584.375, 7714599.016894248, 7714615.625, 7714659.572654888, 7714744.972544676, 7714967.1875, 7715090.625, 7715145.3125, 7715207.5584058575, 7715629.6875, 7715727.909468726, 7715819.80022623, 7715835.361514507, 7716004.6875, 7716131.481184725, 7716258.791057453, 7716758.525901346, 7716827.360176563, 7716912.649149828, 7718891.651831168, 7723135.9375, 7746583.436756334, 7751115.575552048, 7751780.834550331, 7762584.967433354, 7762691.7729936, 7763289.0625, 7763838.472200844, 7764227.510513349, 7767814.207471461, 7775009.834002349, 7776059.981212359, 7828200.865485344, 7828304.6875, 7856070.341182858, 7878654.28940938, 7884048.415299598, 7893961.646619756, 7896748.4375, 7909892.1875, 7932111.006603031, 7942210.09409452, 7979797.124698154, 7983801.834324196, 7986503.392567864, 7995806.25, 8027159.856070696, 8039474.8556854455, 8056691.395210774, 8082662.5, 8099169.946046455, 8100712.264750876, 8103487.5, 8104967.718627781, 8105440.455862341, 8106827.941789029, 8108548.4375, 8108729.817038777, 8108992.7305935845, 8124481.603010692, 8125902.529608959, 8126198.34454431, 8126287.5, 8127375.110502568, 8132313.884402417, 8132687.5, 8133476.310963234, 8136710.9375, 8137065.971308921, 8140712.5, 8161566.931157898, 8168602.306368305, 8170229.6875, 8176156.088233025, 8181329.6875, 8182165.527361431, 8183513.344611942, 8190725.5730070425, 8206682.092646256, 8207340.161770047, 8209817.237910782, 8211509.375, 8214068.718765926, 8215207.115812236, 8216678.125, 8221778.125, 8228921.875, 8235039.292614673, 8239365.625, 8243643.227384273, 8244939.0625, 8245319.875888163, 8245960.048467617, 8247085.9375, 8249323.997738855, 8249368.567214469, 8250860.178081276, 8255537.934172892, 8255810.9375, 8256846.447425763, 8257013.505403137, 8257443.647868608, 8257708.096237758, 8258190.625, 8258261.86600772, 8259897.350125477, 8260029.454840733, 8262031.03381949, 8262151.314824452, 8262397.68974245, 8263009.491308662, 8263875.0, 8264156.443321288, 8264182.8125, 8265912.5, 8266184.851878817, 8267219.397488735, 8274842.701171266, 8276947.10876323, 8284558.560200045, 8286130.827115347, 8287733.400196359, 8289578.473330844, 8290670.225673487, 8291373.557211187, 8309914.185617483, 8309922.478055283, 8319585.059581039, 8344631.292829965, 8352105.208615898, 8352744.490590985, 8367083.942467579, 8386050.0, 8389534.270057797, 8394505.921120575, 8403057.270178419, 8416892.47864237, 8420190.625, 8434376.211163739, 8434658.819814147, 8436966.536379088, 8438745.3125, 8440763.430193696, 8440881.809614293, 8441270.114724945, 8442959.375, 8444228.125, 8444960.526935203, 8444970.540307453, 8445776.398668146, 8446803.125, 8447238.833280904, 8447614.0625, 8447760.386504184, 8448494.436316118, 8449507.8125, 8451428.286915675, 8452390.80255294, 8453590.625, 8453850.319113137, 8455343.75, 8456410.9375, 8456430.05706977, 8459000.886762116, 8460737.090421095, 8461815.68094164, 8468768.75, 8473278.737686215, 8480653.922770673, 8491102.234023664, 8493609.372838547, 8514367.1875, 8524060.9375, 8531233.410414154, 8552533.268052345, 8553575.703656213, 8559997.122452457, 8562480.706397377, 8562775.32035905, 8563672.093444169, 8564200.0, 8573705.320411803, 8574397.129729846, 8575235.376731772, 8581227.20030004, 8582903.03286334, 8591140.625, 8594908.641752215, 8604046.875, 8604829.452165432, 8618571.503223622, 8619269.789640104, 8622529.6875, 8628892.99465489, 8630218.75, 8634538.649619222, 8635825.818831284, 8635874.148259057, 8646362.4869102, 8649449.76104242, 8651395.3125, 8651951.394642416, 8660202.758108782, 8662813.513953516, 8667393.75, 8667495.608116202, 8667979.612012003, 8668637.5, 8669364.194766724, 8669500.0, 8669517.629929328, 8670884.81402192, 8672321.875, 8672331.715440758, 8672934.21486007, 8674637.939917628, 8676048.889567262, 8680059.375, 8688263.081860429, 8689323.157138916, 8690047.21962821, 8691842.121722812, ...], [94.63828981194638, 35.62067697784133, 7.034749311103715, 20.92140014953732, 71.52932664483959, 28.4324726441667, 7.582627346732937, 70.11560927090106, 24.66198655262216, 9.682380836778592, 26.86530269312819, 16.109338479286578, 55.15279243904005, 5.250291196237983, 24.337650011590192, 11.268310753798962, 46.367114723049895, 71.02967593027259, 19.404311382116102, 8.276036578127373, 7.587513855265588, 26.42436561959981, 23.63100268692102, 9.468760714119894, 25.918691208787855, 91.95513279455534, 26.931931793950817, 47.072393443626616, 5.311238320339312, 77.38374913700233, 53.82127253779131, 117.310001892293, 15.574264086664966, 71.20292030464192, 34.32493989095613, 12.795225752233202, 149.08720216594116, 7.617776607215282, 65.06161178328186, 76.4630647190804, 7.893361597964149, 32.35201282506759, 5.820512726263434, 8.352166506519033, 23.5162825118093, 79.3972670220042, 50.38154474583227, 7.927565037747199, 8.782182125101274, 59.65069169887097, 74.47097138801057, 7.5119512959208965, 87.3983596626389, 7.437793896901666, 6.4936886239456735, 7.907837467109689, 86.1746126510611, 11.306013130721833, 9.729740800830815, 30.723336719347298, 35.84103143748587, 20.701976549622835, 15.774715707785235, 53.560442091226264, 59.99722429875965, 52.86385765269655, 14.002485061151337, 54.43097810889062, 12.64209577575047, 16.32100276209094, 63.99338892107526, 35.18808182563273, 36.23362695044603, 60.96645497904241, 27.3141451654067, 12.316060947256846, 107.0384383412036, 15.241683645808068, 12.303044552955349, 18.228236971220724, 5.550553407415744, 62.7777484387483, 74.80467104155036, 83.16757869947999, 7.401102778365645, 11.466273631652703, 21.37175880778209, 70.71580313406614, 8.77287845343906, 60.099608343263284, 60.82453652006554, 5.731987697920555, 135.48751477552486, 21.519281252196315, 61.94487986368998, 13.18592868320007, 46.81824371936753, 124.88902457219123, 42.34205605730168, 5.930363432284358, 48.13825222813371, 71.03442279157308, 14.353526314734523, 58.24670998173609, 85.27546396484749, 56.00030857409974, 9.398995903331937, 99.92920695929871, 68.05468678119487, 27.403826802304927, 14.400481171113153, 67.66900852659684, 29.469879059703736, 29.37806705224527, 26.230154437132082, 11.377664670482002, 33.670994487090255, 63.62686901996466, 25.639446503437657, 52.39901968263287, 12.877480208645249, 62.69706217407367, 37.11266191409508, 5.823020769254312, 54.32745498343196, 26.165180493300763, 13.233051845708598, 44.30663767928958, 89.42702615989528, 90.90986506573917, 49.6920750307495, 23.787824648404168, 48.842867728100735, 18.65205698594395, 14.171296604697776, 59.37608842194709, 12.06393072723779, 40.87990877491192, 83.97021524178972, 5.2806870669461885, 8.314432269471512, 43.338725941738005, 45.51541963582433, 7.28776961372534, 7.365840241389726, 17.431175324363757, 24.998876792343246, 92.13284916168398, 27.54024093686536, 16.64717005166026, 26.422105271738353, 44.112118805023485, 37.77834613134714, 41.97804207305819, 10.983325171348145, 27.984679754712452, 10.60975374817287, 73.34700587613948, 56.659805103587644, 26.357224881461445, 45.09106815876713, 13.433003687606632, 71.74416804898081, 14.938564196609384, 13.820725264217927, 83.60465951491527, 9.390956165067248, 111.9175942321701, 22.4295988978714, 77.3742151076588, 6.034026167516536, 78.8932753209878, 9.132446252560992, 11.943760500475136, 92.92438977883359, 85.41232771089491, 27.755200145485464, 15.86828100253152, 9.700321142690226, 74.95443908525266, 45.923204462826234, 116.95812981292133, 5.6308840839469605, 5.429732511871141, 20.48062395123093, 6.158125479939599, 70.6574321664807, 47.59286198977416, 57.58821806717059, 48.301254370097325, 21.66687536898194, 60.717693928733816, 16.941825859424146, 113.10392590011217, 7.665059868312299, 13.068043576887229, 38.30631078815635, 86.3489168376222, 7.277312130467459, 16.845120193174022, 29.026104209128103, 61.583071427232255, 7.480812765702759, 7.386220137516083, 52.697739097037385, 25.878158660059086, 7.146144953103077, 48.43266179887958, 18.710576302664833, 24.27526709635719, 73.8316830865376, 14.812452002074723, 148.6669399650023, 40.81179966695318, 19.60105607749422, 22.003734908719252, 5.348049050049601, 22.247853532276654, 74.5773866494755, 7.203665756662357, 23.471713269741464, 8.781840284096761, 15.573023652461764, 35.62090343302329, 17.735100436256715, 13.785005930683353, 72.25971410886348, 10.061698546184811, 21.587541099844742, 61.18272609849082, 70.69741645773749, 26.351100745785022, 6.215322772774463, 5.710263886571116, 14.527987997038323, 21.63255344843262, 17.95706355751505, 66.85175760859822, 79.70257998862373, 24.91523868405752, 5.577157917246776, 13.373426416842227, 5.419148308796932, 21.032369554527236, 49.132072738969754, 55.33355444487685, 15.85987697367986, 103.88430986657457, 34.26012635272215, 29.00773368657775, 5.039846794088877, 7.518849909058594, 13.999628074846086, 73.7411535980399, 8.909798736976406, 35.66818330454848, 128.491809068154, 7.4023126215457635, 19.091767676661924, 96.20301741792548, 11.516979746873213, 64.35480988120716, 40.830163171238944, 31.189857302358742, 101.34580394325951, 6.911574270174373, 12.369151696245057, 33.14686046838753, 23.714517032028834, 50.210498047439245, 137.103945572885, 29.567607934921632, 61.82471838210812, 70.3355800504874, 54.92209415318199, 5.67306612117421, 14.658558665628519, 71.37492572492316, 5.328612621681583, 70.82315796359218, 53.40528009627704, 29.14413876048116, 42.23300609234106, 106.6132635331781, 11.900179616324293, 16.511038201607374, 29.540275392961636, 13.07642614872563, 45.8731891387169, 11.664137841129332, 26.405282303285794, 85.79860281905621, 24.652030141318498, 49.45801830734474, 124.39465350657832, 60.443417040234344, 37.95475686541371, 12.429730478269668, 12.121423756018066, 9.385373498138557, 13.99572789191421, 85.77507731182142, 27.336186587352767, 26.647727218660506, 22.378327841896525, 110.57755417369395, 21.851488898220424, 33.162308433412214, 16.471379483601467, 75.59114776714216, 7.9445348927869075, 33.155877754475235, 42.31139617181845, 93.50256965320709, 14.573692661036311, 95.27527666299574, 20.982486523793362, 73.23470416057972, 25.921700706395388, 13.80001366591036, 87.12425267953859, 20.376436003224626, 21.243781183291816, 28.588556862111, 27.019426990054516, 15.785263664373474, 7.621266604484321, 9.697373036216469, 51.18601176833797, 30.19023288649332, 99.13552474601472, 24.311334203758562, 48.96850323622301, 31.232973075672025, 6.1697851870806755, 27.88601833849751, 15.935449621133884, 40.32071024287313, 10.79134281951319, 74.9007390971252, 8.702852702040081, 5.178409287398053, 53.498205665101665, 41.381805454230765, 37.49283484650671, 52.66440102365558, 5.467495354832483, 57.66424857357481, 62.93475522726291, 12.772119322028171, 43.01588689856007, 25.332878399440972, 48.87921896246326, 8.373867127110698, 9.58256014381549, 50.05250243170234, 75.90595082674457, 15.883207057951367, 8.462920328328437, 5.699753060367361, 35.06712248307595, 5.103698853509026, 87.77310213047699, 9.365563608291632, 18.050625395018415, 25.098830246834524, 73.98943008576605, 6.126199687739799, 32.23193797509774, 12.023556291727093, 206.15617377953157, 71.21167976797707, 27.194013961709203, 95.86126723410234, 5.503297779562671, 14.60445237425658, 21.21530110620287, 14.414712306621853, 85.81196381030117, 65.35062014382754, 22.082027165941206, 22.953353864904642, 20.903393953272158, 5.910465940432148, 19.721564742162315, 8.275847101359698, 11.51042595847423, 10.402365017556482, 76.64910588438788, 24.441743629771786, 8.859662734672337, 31.540499045180844, 12.38681905420284, 61.073320427223734, 74.41265950200673, 41.02190567644645, 5.284115148082361, 28.093882373650985, 5.414710972237882, 24.88702091885483, 44.823896594737676, 8.318935708078318, 48.51398765467622, 6.748159509275234, 5.960893475895645, 91.40737999256122, 15.424207104548167, 32.72253695132811, 56.21235860492712, 83.15653771196499, 10.510925024126468, 57.510483797313256, 11.614514024134806, 16.576788148882923, 45.42236420871252, 22.414877101915206, 93.23106446611163, 28.508718359105792, 97.04239981404918, 54.18453123087832, 5.811854128005304, 113.58202970503453, 10.807310356484102, 28.977940109328653, 63.84880763424746, 13.491957436082876, 66.26474168050913, 6.479182089597198, 87.11391342366602, 56.78767637446422, 14.346288447219381, 29.67393461159651, 8.65747734269614, 24.764150777038772, 5.330830173632789, 11.387987960268863, 15.248392628872901, 5.562424232973692, 12.776172640511227, 11.247349459925587, 48.166038024532384, 6.757578093109765, 54.355980109966694, 14.542681157645008, 40.87692646189576, 21.7125635062097, 19.196147087868898, 20.26522673179188, 44.96217801738796, 10.79374334198037, 19.79044558843039, 17.15692872138516, 31.163233900645146, 23.385915223851903, 15.94492695572195, 37.49711025657196, 16.522231884005496, 43.15419578812176, 67.941317438424, 18.996232782387143, 52.59463345854016, 9.695491402884981, 8.021152678921121, 162.03420414082146, 15.144969746786478, 25.376772134090878, 32.63925073252, 66.29821190418811, 24.584331991757256, 5.552799231645886, 18.914152796709537, 47.66441685327052, 56.31722799934217, 9.04291387621423, 48.078922358365915, 21.182913662354977, 66.95392803515648, 22.050534081751962, 6.159735534606223, 63.47692944670685, 63.85901176989141, 24.18009561916002, 86.19318221324427, 50.28889104843036, 23.377692493819747, 71.10331459439836, 45.47993596401015, 23.533488578799307, 5.50485000067981, 84.65787263906503, 6.294906858738427, 22.550875087350747, 148.45574477602892, 6.61481495908302, 5.225866495049125, 54.782771670473444, 36.371259731104495, 53.38378306408991, 33.572134407596764, 44.20567497854164, 8.752014537293874, 69.05784255787832, 9.92212084566423, 68.39287149658233, 29.279285753852534, 59.11915716784946, 8.312901114210655, 27.09311840637222, 30.510139957257078, 38.37815462185688, 46.85908422655499, 29.604688319304017, 26.5398582864595, 34.10258644624334, 51.13102976693821, 5.860830294680223, 12.03099797806035, 61.353446032548554, 11.032089622060422, 33.72989595489879, 22.077632460076714, 85.48472056996074, 61.031880035379615, 47.74733327678461, 68.95663159105413, 6.611281936652243, 13.82809125874559, 33.15912530034449, 18.681225115445265, 66.59810911958422, 47.91344870376788, 11.54554402044467, 134.97247913508664, 70.69617402777851, 9.93743176560146, 5.231710658163733, 48.18701037988071, 20.710108486083673, 8.471340235543742, 89.6073934919418, 50.6979825415193, 7.331116755972519, 10.887661350206061, 84.05265998559848, 56.24767023076758, 64.5970228038891, 20.41772431427777, 14.115733623160086, 56.28984325642311, 49.22839151426592, 33.331895065209544, 21.184603099096936, 57.7120252789811, 10.183974838878697, 57.14479226463135, 17.135529848502024, 89.24151816656115, 6.167570407620023, 28.58761211757154, 95.2363526992036, 82.25281693079036, 114.15998652432184, 7.99229395842423, 52.576349326284365, 29.97647289778849, 13.764908909382212, 143.09408913350003, 23.50971277822326, 12.702833532954896, 28.461404475462253, 14.423781326993078, 25.964357703084783, 86.39264088042212, 34.71323249308924, 52.724417096330065, 19.89401925460444, 38.17816589988053, 11.340351279634238, 9.843766986807358, 67.69862563149385, 6.388448125537193, 12.96456688504656, 49.685231051224356, 29.13228905579375, 24.411454515239512, 56.02145484019477, 83.32173563056554, 19.38947586017449, 31.630113351808312, 49.71047745601509, 34.83740995892152, 9.279312833136284, 210.30656194160144, 60.245818402915894, 32.69342576466862, 6.809054574910011, 48.07582299390018, 40.2274491570145, 64.69304146087518, 10.962758522730818, 126.29891496060662, 68.0857445225044, 105.03206410329781, 10.39296487403431, 12.24461907563439, 28.5358449987583, 133.0776069277155, 19.03386007845532, 76.68234046234053, 17.814845384404286, 44.729692768570324, 62.394748618148085, 52.87451947609929, 31.005092066605464, 31.74055407820253, 53.45085815549935, 18.274019775132857, 11.842629796198757, 212.31944139023244, 9.070747778197674, 6.418962902571224, 15.506957913449055, 20.74933184053627, 19.626063819134927, 8.885532056752508, 18.224736071472492, 87.71070543156726, 78.38518192793968, 7.481628809314587, 37.15129459077244, 5.772312097919878, 46.438975659106006, 28.181453211513936, 8.988137799891001, 14.187234379309723, 93.90173754727041, 77.54402088747821, 26.797902478133718, 92.77077148102337, 75.98690151254578, 16.670603616284126, 35.59117927165043, 49.735878967123696, 116.64092649473191, 70.66219707007858, 94.48126847277206, 37.829724091804394, 71.73728562304049, 31.391748317485835, 5.038082897115639, 17.06886729671141, 82.22413047592315, 9.700822548165235, 5.392274757232868, 58.41893798507412, 5.787333264433795, 49.95256155115221, 25.969483066107827, 56.229461168445084, 9.581092173649825, 20.108936420861934, 7.717630131549007, 103.70159787594285, 37.63786644034877, 13.120484570522995, 72.50780234391634, 23.20375204552916, 36.98675882194876, 5.23026584578654, 58.50379206194909, 7.666846806275249, 62.52710763326186, 43.26502790404158, 94.40828463269654, 68.4912797954715, 55.37681794644473, 106.81959873020185, 101.38483161717554, 23.770903763140037, 75.97922634566747, 60.166246253629424, 62.910906817071044, 14.826096492952551, 11.593589269946666, 17.200082483381003, 107.68177033621618, 70.63974835089302, 84.24089159094343, 5.260273304956913, 22.364832985686554, 38.75725264835084, 5.276026237275315, 13.606421938364067, 48.948521024430235, 19.251016079361122, 29.915814864662703, 30.834552166555195, 73.45648054612127, 23.630912172771016, 13.675603178008808, 5.800148722986262, 47.77567799799204, 71.28996020035629, 31.908372089471772, 5.983796692621629, 11.71224742685341, 12.143267587823807, 56.10718299469468, 8.525605829935401, 9.377490302755426, 14.325426932746716, 82.9734284991142, 100.20383494844589, 26.506598283177276, 71.1589599859469, 7.965808545708457, 52.807941324443796, 94.18908393099647, 12.696342618436546, 57.05906873542671, 17.956113181066797, 36.90353528887822, 41.8254722560166, 59.258410529584545, 59.42289987302515, 111.21137868496865, 36.44205788602268, 7.554835220916275, 71.42325143611144, 11.059923636670183, 12.773171497370956, 56.14841953645691, 11.48253276924374, 39.88814632068491, 40.18925291023055, 8.30040021040758, 28.381544742249144, 13.868581009098898, 85.86603594065306, 33.55957513130615, 28.45341597462962, 27.83903512862464, 17.667655413877092, 23.776526631989018, 8.360333868655554, 62.709389930305605, 6.26655154645157, 22.27757757612781, 70.0399318014986, 68.5210675792697, 28.841757109593978, 91.30002134033268, 6.21534588159137, 126.9850439349517, 6.275788493149919, 16.323538638350215, 73.36542248293013, 13.593066398291269, 22.091296148431933, 22.42941843474793, 43.200579841705746, 28.567808723946612, 45.62787987689328, 7.11203116481648, 9.540577043454496, 139.97914622211653, 65.60477951495419, 101.88081714742238, 154.67807806183473, 145.779168446874, 46.214435939755646, 18.81107621897719, 148.87730043385017, 22.463862681373893, 70.47328058474287, 18.533377153523883, 41.22741110958698, 144.34603095292061, 39.00195783112159, 5.362175297015721, 75.89133633591236, 11.451378390820242, 106.06877601845639, 101.50465249103252, 28.800665095392805, 86.09766457702892, 102.85189156761469, 73.52380322011616, 10.806739410879903, 13.292556295884069, 37.095107868691585, 85.84739285159833, 15.902527165624718, 143.36282586698977, 5.654769211686774, 38.511878763658, 5.62234910092532, 13.229407647417892, 33.794164264873615, 18.009136788270965, 8.260600381026661, 37.56921392151577, 17.81045255340166, 51.40232515631361, 38.030033394597304, 20.637252709806276, 57.42460970660756, 5.952130733893585, 85.34539606000013, 7.290477689417796, 5.663789066102479, 44.06570777793709, 7.129011975509389, 112.50731509978654, 28.09289364002951, 18.568794905212638, 60.72795750575287, 57.87098425824255, 27.42045821413039, 12.474616574564475, 9.551855313459914, 11.58094069777619, 23.04723265424576, 84.32199729925225, 48.68027555652283, 10.909385389357546, 39.79676729025465, 29.77893118213159, 60.837084992645146, 122.2942989574522, 36.07586173380176, 7.807339246778827, 26.977834888696066, 80.2264477891348, 41.73944668192701, 15.459360051316663, 17.513568855763218, 78.04961186418691, 57.66609007865429, 74.50608147638944, 29.463189527712235, 48.19276808229243, 25.44365693381543, 41.80921802825843, 10.756054607195848, 75.7069585904892, 11.715891185202267, 47.41891036643654, 159.8744024622895, 61.24962040878829, 70.22757986544958, 14.358807631702637, 31.998418242946105, 26.732648784589788, 5.115450393754683, 52.99319758895636, 19.68826258990269, 73.67255477074333, 18.425100548122632, 49.261799676830854, 14.823781334261561, 80.8133627202807, 63.850011145168374, 45.79306240468193, 61.10082758220658, 8.412133656099693, 43.24981629262145, 86.17149332472718, 68.1378343134298, 51.13104335299995, 18.328189345317128, 77.64289586157092, 17.615239473997633, 7.07421779218484, 7.349871272707814, 16.90234996702373, 35.38124072249089, 22.247347933239517, 6.403169088616316, 76.47473468312477, 60.90214080399811, 30.438773711193253, 36.633193173273355, 27.703755196521847, 24.65080499676305, 6.45372872846662, 61.38320786274022, 52.0508660054571, 8.349056105951414, 53.37544042574976, 87.0761657118189, 61.75955043455355, 86.54302812339006, 6.1391352460308815, 63.40791832594295, 5.985423272021066, 15.914228952487608, 117.66276601798702, 38.17847254478824, 53.01795477578187, 9.644392067372776, 26.91796179132261, 5.3460405493852425, 33.454670343792216, 26.78240053635652, 36.00667477128317, 82.87158430697932, 25.916308790906914, 6.006604282124312, 55.52470993752453, 42.547811292260334, 111.39239245594402, 77.20439911649098, 5.89352853202062, 8.446782347451817, 55.06862603066157, 13.752516477861178, 6.403445770811849, 72.24822708144457, 91.53851510443681, 12.977730149609284, 12.131737655161048, 42.994066305127234, 59.903031930434906, 45.54921824309408, 39.798217080735824, 5.471629986146339, 35.79182420010062, 73.97760251646733, 8.16897127284341, 54.91717753922219, 13.188517182788432, 97.17119401900746, 57.80091100841456, 5.101656396612419, 104.28529507369525, 69.91569652620228, 5.967686096080346, 77.88144941078856, 93.5368746883758, 16.565895448918933, 19.902544603526266, 9.007535923079582, 84.22694717349667, 32.73617733919908, 12.242587904299544, 19.20454553952512, 6.000100061920836, 71.68916829853538, 42.08782168047019, 39.737621835269564, 12.211418420929713, 13.932480769078493, 5.867946347823969, 15.976752159034135, 13.208194242543266, 55.37189919675984, 49.440394761154636, 54.93948095505759, 9.930782867177758, 11.550662822611935, 6.03166302622308, 130.87216446361015, 63.249448575323214, 64.52331692211644, 6.941179359808783, 40.55373328939922, 10.778763770526712, 9.035657773749591, 17.65337251827176, 57.82015770204899, 10.121908944534145, 119.65721908983613, 22.40853140288075, 45.86115606924314, 7.321723883128215, 61.50226545455984, 50.70066307242928, 70.4908310283232, 34.88884783700846, 28.333698763042733, 53.504678588549595, 89.55488627062957, 16.202203378101515, 27.115621173772066, 64.24943543085818, 79.57564473926226, 40.575587276236696, 16.94668856689321, 6.134975346618311, 72.32062591925435, 9.758619883417543, 6.462277523906464, 5.4155622476593095, 6.8572438724994305, 70.75439867978817, 66.83621859945471, 84.73850528430161, 5.353871165662623, 33.228765358364825, ...])
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);
([2475721.875, 2501693.325567847, 2542513.72207182, 2544467.1961923214, 2551098.4375, 2552109.370303865, 2560070.2551536644, 2571974.7772901687, 2572101.082922238, 2576087.887833539, 2693237.4212995344, 2812485.4237475996, 2813681.25, 2857781.4328261577, 2858642.373797615, 2934403.213129457, 2937007.7153511927, 2938772.113867795, 2939164.8865819927, 2939424.9800139633, 2942456.206315675, 3095648.3214727556, 3095738.7530678967, 5455164.220598791, 5598590.813603273, 5663571.355783874, 5666601.476481376, 5667873.654623698, 5721355.326379045, 5745439.0625, 5892037.019338637, 5895516.141112072, 5969357.969163293, 5976107.8125, 5981044.745830735, 5981933.669019902, 5990892.1875, 5991245.352519876, 5992992.02651566, 5995518.75, 6023780.424222801, 6045945.3125, 6065692.275398101, 6089439.184504322, 6091748.118920668, 6092548.892902318, 6092673.873895976, 6094055.503232935, 6094905.520220008, 6095579.6875, 6095681.25, 6096245.052851181, 6096938.614676321, 6099957.330671003, 6105973.479457578, 6109266.395346846, 6112695.3125, 6115828.2361564385, 6136856.686301559, 6152138.689674688, 6155113.757827766, 6164347.501007175, 6173008.015177782, 6177449.727548186, 6183885.9375, 6185460.9375, 6188521.604702648, 6206165.625, 6214834.0491690915, 6215617.507766625, 6215618.75, 6260893.75, 6294698.4375, 6295806.25, 6297160.073028465, 6319097.522050451, 6326481.25, 6329050.076586475, 6333308.453508724, 6352799.0957939215, 6363653.479838189, 6387559.375, 6389601.5625, 6393625.252982412, 6395805.654266094, 6397095.5188189605, 6401271.362749454, 6418452.958072978, 6419550.818801383, 6420220.3125, 6423221.928288925, 6428758.201760738, 6443315.76105444, 6443397.24646097, 6444968.75, 6457393.19802917, 6476104.6875, 6478554.69696543, 6480251.5625, 6485468.6455815695, 6485834.245571402, 6485845.15553485, 6485880.87671911, 6487637.019483978, 6489292.1875, 6489343.75, 6489551.641371465, 6489896.901035175, 6490073.4375, 6491078.392665375, 6491543.60042418, 6493196.880112341, 6493238.618773333, 6493404.295131867, 6495634.2471224405, 6495661.091738465, 6495840.625, 6495996.875, 6496201.397250775, 6496456.25, 6496496.202614305, 6496681.25, 6496823.293915534, 6497150.121440074, 6497224.46425427, 6497243.185794586, 6497266.653190286, 6497302.811169954, 6497578.125, 6497578.125, 6497584.375, 6497690.327897558, 6497718.335029311, 6497761.658678142, 6497837.2821003655, 6497905.449603142, 6498017.137483089, 6498082.8125, 6498117.1875, 6498218.4095994495, 6498278.177305267, 6498350.0, 6498457.8125, 6498466.222047161, 6498757.104696057, 6498794.27900381, 6498900.564289328, 6499045.3125, 6499087.647250591, 6499117.608685482, 6499315.508836033, 6499384.375, 6499478.125, 6499608.803197208, 6499640.530622681, 6499664.034615877, 6499710.578770557, 6499747.5974686565, 6500063.4699021615, 6500290.077837278, 6500453.125, 6500469.851094062, 6500582.709551837, 6500701.561727071, 6500702.796200559, 6500705.944690423, 6500882.882100721, 6501076.5625, 6501148.594918194, 6501150.850764981, 6501166.650960618, 6501206.70808304, 6501321.629942055, 6501366.091080984, 6501470.3125, 6502006.09536082, 6502056.209889112, 6502147.098608468, 6502616.031294284, 6502646.875, 6502765.834816486, 6503031.398966908, 6503078.425436656, 6503094.544286334, 6503226.343481056, 6503258.460002087, 6503445.3125, 6503887.5, 6504134.375, 6505375.0, 6506458.168724301, 6507257.8125, 6513499.510292055, 6520836.221165803, 6522090.792754632, 6527144.715512513, 6532001.5625, 6532346.875, 6534894.31149647, 6538801.985929415, 6547037.5, 6548150.0, 6553351.210834546, 6553832.169782726, 6568690.453353577, 6574560.44012954, 6580639.155611883, 6584035.9375, 6589802.408582715, 6590737.23998296, 6592303.125, 6592312.465723147, 6592560.214415239, 6593032.8125, 6599008.661822276, 6602292.91944136, 6602643.9277329, 6602649.572472268, 6602664.549368388, 6602778.428788527, 6603359.22377129, 6603768.019709632, 6603920.468873435, 6604507.8125, 6605909.955117468, 6607271.778476995, 6608507.30810061, 6608674.1910182955, 6609705.8269004235, 6611986.4778726315, 6612339.0625, 6615543.629526864, 6616040.203069881, 6616528.179946362, 6617184.679689537, 6617187.013866812, 6617252.178505613, 6621144.827275194, 6621524.1810897635, 6634059.161005534, 6634429.000928388, 6642179.204709209, 6675641.155474158, 6698747.652611837, 6707834.231924665, 6745912.5, 6746973.659242368, 6761110.9375, 6783793.105264586, 6784771.339382221, 6784824.899047947, 6788395.072993433, 6788540.35380011, 6789281.25, 6790752.580423226, 6793267.768812028, 6794292.1875, 6796433.78306543, 6800634.647253145, 6800887.5, 6800950.235543588, 6802153.125, 6804569.487318543, 6804744.709855544, 6806207.273797793, 6809631.949021172, 6810344.421490401, 6811304.6875, 6813462.197158804, 6814509.375, 6820203.125, 6827156.25, 6828835.9375, 6836120.787224682, 6842470.3125, 6846888.519764883, 6847648.361229616, 6852886.614488511, 6854657.418889897, 6858570.225852118, 6863117.1212623175, 6864848.4375, 6872538.470412886, 6872757.8125, 6873337.943732231, 6877960.702604246, 6888162.5, 6889336.359439166, 6889596.125537953, 6890440.943068438, 6890918.632817577, 6890923.0242117075, 6890993.517428329, 6891620.3125, 6893000.630741085, 6895177.98601803, 6895378.125, 6895991.323985746, 6898030.34653888, 6898345.375645895, 6902079.415067157, 6902815.0699109845, 6902829.624434429, 6905164.696383755, 6908819.896885858, 6909142.812668793, 6911007.12260618, 6924121.875, 6924856.600777094, 6930265.361530943, 6934503.979377426, 6935818.75, 6937926.5625, 6938298.932772195, 6939085.690310867, 6941598.091271598, 6944049.44724326, 6944220.30590582, 6945932.665363017, 6951547.183740613, 6953082.510612339, 6953321.255266722, 6956850.379953259, 6958297.790724413, 6964042.106518611, 6965350.205054483, 6965970.362073726, 6967695.715769138, 6968915.625, 6971853.125, 6972122.514153163, 6973558.061528781, 6974028.125, 6974875.0, 6975605.438010786, 6977971.415351194, 6978200.238425962, 6978788.37973055, 6981191.961091083, 6981926.5625, 6983369.462137077, 6983444.3015621, 6984719.813442475, 6985050.0, 6985326.850875732, 6985852.456685291, 6986151.695297128, 6986531.25, 6986798.4375, 6987810.221964895, 6988297.260558052, 6988493.564526619, 6992593.75, 6993812.661497565, 6993911.22031142, 6997441.390394316, 6997585.294299144, 7002283.039416075, 7002473.756716817, 7003656.139367637, 7006511.741951317, 7008903.389549644, 7009721.724189369, 7009876.602625531, 7011474.366723702, 7013195.111184541, 7015468.75, 7016865.983582413, 7019478.125, 7019573.943844382, 7019762.9089903785, 7019877.802191653, 7020704.135873788, 7020737.7083598785, 7021318.120679842, 7021499.908666325, 7021669.784193619, 7021932.667064256, 7022640.625, 7022950.0, 7023149.557077865, 7024022.077711029, 7024284.338044157, 7025469.974080141, 7026483.451509078, 7027782.792153723, 7030172.106789539, 7030252.605459808, 7030806.680854218, 7034821.6272368105, 7034863.446409828, 7036220.3125, 7036306.92955196, 7038509.375, 7038631.203629265, 7042993.75, 7043110.710126731, 7045725.297567225, 7048797.293332449, 7049250.007209842, 7068520.3125, 7074001.623192995, 7074555.861295158, 7074943.672638023, 7075084.6184802, 7075089.0625, 7075334.496128186, 7078375.0, 7085727.985419459, 7091492.1875, 7092558.94098538, 7092696.875, 7093770.6031128075, 7095225.37171692, 7098668.75, 7100320.067575276, 7105364.862321653, 7106182.823661936, 7107429.66995038, 7108095.3125, 7108482.783723677, 7130264.6530979, 7131843.534871102, 7132512.5, 7134652.954257326, 7150933.934481149, 7158978.125, 7163424.949359547, 7165795.3125, 7165820.3125, 7181420.147050841, 7182141.9627780635, 7184544.391174776, 7185079.46290031, 7185144.985204578, 7194376.722873407, 7195270.390750065, 7195322.4651406575, 7201619.5986448135, 7202784.450218533, 7204728.125, 7206190.595231793, 7206268.334148097, 7214428.016273854, 7215356.063143039, 7215880.097445482, 7216519.760781259, 7217189.992423228, 7219276.5625, 7219537.2752904575, 7219777.146543491, 7220049.373383829, 7220730.330796707, 7220837.821179818, 7222143.990502872, 7222651.5625, 7223128.485924342, 7223253.125, 7224321.875, 7225078.894569882, 7225760.9375, 7226733.2138365945, 7230482.274423317, 7231710.417764045, 7231812.552375375, 7232034.944608661, 7232056.25, 7232479.732908491, 7232530.490228016, 7232536.337206961, 7232846.070736778, 7233271.875, 7233371.256850438, 7233462.137904251, 7233984.376464557, 7234000.149774817, 7234045.699305203, 7234757.3666216545, 7235360.036804654, 7236523.712687598, 7236844.965836271, 7236868.402362531, 7237418.588204618, 7237809.375, 7239054.357723168, 7239304.6875, 7240540.625, 7240956.754973749, 7241049.404271249, 7241272.732693398, 7241823.653709287, 7242163.662379014, 7242564.0625, 7242621.081604345, 7242632.1087453645, 7242771.554579832, 7242817.1875, 7242908.590543072, 7243011.554211859, 7243160.9375, 7243369.537374971, 7243540.625, 7244033.437232485, 7244267.1875, 7244323.4375, 7244629.6875, 7244640.674449137, 7245181.577143042, 7245425.0, 7245764.516936658, 7246129.6875, 7246267.1875, 7246414.90143359, 7246468.75, 7246485.9375, 7246524.051222503, 7246598.94755674, 7246643.75, 7246692.125453525, 7247093.75, 7247099.668088111, 7247124.091511896, 7247143.256504355, 7247398.90654597, 7247575.0, 7247614.811491222, 7247974.673614974, 7248291.9936968265, 7248355.412869292, 7248377.433205133, 7248754.6875, 7248983.064325672, 7249191.612042324, 7249350.0, 7249389.701673022, 7249530.762782272, 7250143.75, 7250349.417755333, 7253025.333777518, 7254920.3125, 7255350.990084475, 7255380.429260208, 7258820.153299283, 7259457.02367947, 7259931.25, 7260750.0, 7261950.947489868, 7262490.39005379, 7265458.3946373435, 7270190.315593603, 7270360.376728535, 7272979.156008367, 7273417.1875, 7276155.5487882625, 7276517.005654827, 7276692.66445344, 7276750.366664183, 7277080.418545045, 7277083.432890829, 7277362.822007154, 7277571.238872257, 7277859.252367821, 7278268.148710838, 7278279.303586418, 7279248.018827853, 7279532.465282554, 7279757.247217778, 7280062.180893516, 7280291.910940663, 7280570.309272433, 7280684.232196492, 7282589.383528692, 7282877.13773002, 7283865.625, 7283930.863155805, 7284293.073223347, 7284345.3125, 7284554.819412981, 7284845.862076005, 7284981.25, 7285039.965484096, 7285205.98701659, 7288244.363230071, 7289385.9375, 7290059.012102631, 7294614.0625, 7297489.145703135, 7305548.074122016, 7315732.6177516095, 7336242.1875, 7389936.013621573, 7394603.06274598, 7404463.489971756, 7405410.9375, 7405923.328708275, 7406692.411445532, 7408717.1875, 7409566.948441551, 7410123.4375, 7410826.454344318, 7418402.606747534, 7427014.058128804, 7428006.25, 7428340.097909968, 7428472.488644801, 7428637.242899652, 7430669.816124767, 7431935.149722916, 7433045.3125, 7433081.84314709, 7437164.0625, 7437862.231024882, 7438060.9375, 7438172.072492389, 7445121.336587132, 7445398.4375, 7447067.385110087, 7450162.913822441, 7452377.883690522, 7453204.3622632325, 7456796.4261763375, 7463564.203342541, 7470210.8486835705, 7472486.602838516, 7484155.671006356, 7484381.809294938, 7486614.0625, 7488917.1875, 7489118.400769263, 7489357.484707303, 7489436.920509983, 7489889.0625, 7490033.276991874, 7492194.876578979, 7497777.911954541, 7501062.5, 7502939.0625, 7503564.744192223, 7504332.3157360535, 7504347.353513159, 7504376.95255269, 7505248.161762487, 7505743.479565787, 7505845.3125, 7506389.0625, 7506435.413067592, 7508051.5625, 7508643.75, 7511260.9375, 7511320.106107131, 7511773.695095283, 7512748.4375, 7515051.969308462, 7515418.586886571, 7515529.419483474, 7517232.445749784, 7517321.875, 7517581.10588243, 7519031.420942832, 7519239.34373713, 7520211.849067228, 7520864.368078121, 7521667.1875, 7522681.604351302, 7522908.798187294, 7522979.6875, 7523235.593436705, 7523470.3125, 7523524.459512805, 7523529.6875, 7523868.922510884, 7523950.0, 7524414.14988221, 7524741.326870026, 7525732.8125, 7526055.447290098, 7526160.287092335, 7527289.949907748, 7527367.296619046, 7527392.1875, 7527801.5625, 7528354.6875, 7528746.844386911, 7530909.653923115, 7530920.801022532, 7532552.510480646, 7532558.690744156, 7538973.4375, 7546080.219168259, 7549623.611629995, 7549757.8125, 7550249.504604328, 7550396.474276817, 7550942.83198075, 7552304.712358866, 7552662.5, 7563512.325998002, 7564200.3429835, 7566970.003060723, 7569752.747855975, 7571876.373799251, 7572004.259790965, 7586686.969140758, 7588732.8125, 7597789.558503885, 7601028.4693335835, 7615102.127704724, 7615298.4375, 7624683.238715801, 7640453.179006789, 7641324.82839448, 7645488.276394833, 7670242.895521141, 7670403.013927836, 7681135.094535235, 7689422.7773122415, 7698000.0, 7701205.562741638, 7704275.815258955, 7704732.616916402, 7705539.678354444, 7705831.25, 7707297.829459838, 7707721.650410596, 7707954.6875, 7708042.1875, 7708990.625, 7709271.739161717, 7709401.5625, 7709728.081197247, 7709886.704842842, 7709988.750462648, 7710278.3407351365, 7710779.6875, 7711137.547683005, 7711312.526048124, 7711642.1802102, 7711704.198998832, 7711876.5625, 7711976.518135254, 7712195.308867292, 7712424.964383554, 7712441.193975874, 7712459.226701849, 7712564.199418201, 7712632.958972458, 7712696.869878713, 7712717.588639805, 7712871.875, 7712921.875, 7712941.861584413, 7713039.0625, 7713041.765763023, 7713113.801309227, 7713165.692689488, 7713217.508287483, 7713270.3125, 7713288.657184239, 7713295.3585801, 7713309.433285537, 7713370.3125, 7713516.023105375, 7713714.0625, 7713724.964041235, 7713740.862437115, 7713792.1875, 7713834.375, 7713932.8125, 7714001.7644188, 7714044.062801513, 7714065.625, 7714106.535318779, 7714163.801793181, 7714315.217102965, 7714350.0, 7714517.89144752, 7714523.4375, 7714568.655233147, 7714584.375, 7714599.016894248, 7714615.625, 7714659.572654888, 7714744.972544676, 7714967.1875, 7715090.625, 7715145.3125, 7715207.5584058575, 7715629.6875, 7715727.909468726, 7715819.80022623, 7715835.361514507, 7716004.6875, 7716131.481184725, 7716258.791057453, 7716758.525901346, 7716827.360176563, 7716912.649149828, 7718891.651831168, 7723135.9375, 7746583.436756334, 7751115.575552048, 7751780.834550331, 7762584.967433354, 7762691.7729936, 7763289.0625, 7763838.472200844, 7764227.510513349, 7767814.207471461, 7775009.834002349, 7776059.981212359, 7828200.865485344, 7828304.6875, 7856070.341182858, 7878654.28940938, 7884048.415299598, 7893961.646619756, 7896748.4375, 7909892.1875, 7932111.006603031, 7942210.09409452, 7979797.124698154, 7983801.834324196, 7986503.392567864, 7995806.25, 8027159.856070696, 8039474.8556854455, 8056691.395210774, 8082662.5, 8099169.946046455, 8100712.264750876, 8103487.5, 8104967.718627781, 8105440.455862341, 8106827.941789029, 8108548.4375, 8108729.817038777, 8108992.7305935845, 8124481.603010692, 8125902.529608959, 8126198.34454431, 8126287.5, 8127375.110502568, 8132313.884402417, 8132687.5, 8133476.310963234, 8136710.9375, 8137065.971308921, 8140712.5, 8161566.931157898, 8168602.306368305, 8170229.6875, 8176156.088233025, 8181329.6875, 8182165.527361431, 8183513.344611942, 8190725.5730070425, 8206682.092646256, 8207340.161770047, 8209817.237910782, 8211509.375, 8214068.718765926, 8215207.115812236, 8216678.125, 8221778.125, 8228921.875, 8235039.292614673, 8239365.625, 8243643.227384273, 8244939.0625, 8245319.875888163, 8245960.048467617, 8247085.9375, 8249323.997738855, 8249368.567214469, 8250860.178081276, 8255537.934172892, 8255810.9375, 8256846.447425763, 8257013.505403137, 8257443.647868608, 8257708.096237758, 8258190.625, 8258261.86600772, 8259897.350125477, 8260029.454840733, 8262031.03381949, 8262151.314824452, 8262397.68974245, 8263009.491308662, 8263875.0, 8264156.443321288, 8264182.8125, 8265912.5, 8266184.851878817, 8267219.397488735, 8274842.701171266, 8276947.10876323, 8284558.560200045, 8286130.827115347, 8287733.400196359, 8289578.473330844, 8290670.225673487, 8291373.557211187, 8309914.185617483, 8309922.478055283, 8319585.059581039, 8344631.292829965, 8352105.208615898, 8352744.490590985, 8367083.942467579, 8386050.0, 8389534.270057797, 8394505.921120575, 8403057.270178419, 8416892.47864237, 8420190.625, 8434376.211163739, 8434658.819814147, 8436966.536379088, 8438745.3125, 8440763.430193696, 8440881.809614293, 8441270.114724945, 8442959.375, 8444228.125, 8444960.526935203, 8444970.540307453, 8445776.398668146, 8446803.125, 8447238.833280904, 8447614.0625, 8447760.386504184, 8448494.436316118, 8449507.8125, 8451428.286915675, 8452390.80255294, 8453590.625, 8453850.319113137, 8455343.75, 8456410.9375, 8456430.05706977, 8459000.886762116, 8460737.090421095, 8461815.68094164, 8468768.75, 8473278.737686215, 8480653.922770673, 8491102.234023664, 8493609.372838547, 8514367.1875, 8524060.9375, 8531233.410414154, 8552533.268052345, 8553575.703656213, 8559997.122452457, 8562480.706397377, 8562775.32035905, 8563672.093444169, 8564200.0, 8573705.320411803, 8574397.129729846, 8575235.376731772, 8581227.20030004, 8582903.03286334, 8591140.625, 8594908.641752215, 8604046.875, 8604829.452165432, 8618571.503223622, 8619269.789640104, 8622529.6875, 8628892.99465489, 8630218.75, 8634538.649619222, 8635825.818831284, 8635874.148259057, 8646362.4869102, 8649449.76104242, 8651395.3125, 8651951.394642416, 8660202.758108782, 8662813.513953516, 8667393.75, 8667495.608116202, 8667979.612012003, 8668637.5, 8669364.194766724, 8669500.0, 8669517.629929328, 8670884.81402192, 8672321.875, 8672331.715440758, 8672934.21486007, 8674637.939917628, 8676048.889567262, 8680059.375, 8688263.081860429, 8689323.157138916, 8690047.21962821, 8691842.121722812, ...], [94.63828981194638, 35.62067697784133, 7.034749311103715, 20.92140014953732, 71.52932664483959, 28.4324726441667, 7.582627346732937, 70.11560927090106, 24.66198655262216, 9.682380836778592, 26.86530269312819, 16.109338479286578, 55.15279243904005, 5.250291196237983, 24.337650011590192, 11.268310753798962, 46.367114723049895, 71.02967593027259, 19.404311382116102, 8.276036578127373, 7.587513855265588, 26.42436561959981, 23.63100268692102, 9.468760714119894, 25.918691208787855, 91.95513279455534, 26.931931793950817, 47.072393443626616, 5.311238320339312, 77.38374913700233, 53.82127253779131, 117.310001892293, 15.574264086664966, 71.20292030464192, 34.32493989095613, 12.795225752233202, 149.08720216594116, 7.617776607215282, 65.06161178328186, 76.4630647190804, 7.893361597964149, 32.35201282506759, 5.820512726263434, 8.352166506519033, 23.5162825118093, 79.3972670220042, 50.38154474583227, 7.927565037747199, 8.782182125101274, 59.65069169887097, 74.47097138801057, 7.5119512959208965, 87.3983596626389, 7.437793896901666, 6.4936886239456735, 7.907837467109689, 86.1746126510611, 11.306013130721833, 9.729740800830815, 30.723336719347298, 35.84103143748587, 20.701976549622835, 15.774715707785235, 53.560442091226264, 59.99722429875965, 52.86385765269655, 14.002485061151337, 54.43097810889062, 12.64209577575047, 16.32100276209094, 63.99338892107526, 35.18808182563273, 36.23362695044603, 60.96645497904241, 27.3141451654067, 12.316060947256846, 107.0384383412036, 15.241683645808068, 12.303044552955349, 18.228236971220724, 5.550553407415744, 62.7777484387483, 74.80467104155036, 83.16757869947999, 7.401102778365645, 11.466273631652703, 21.37175880778209, 70.71580313406614, 8.77287845343906, 60.099608343263284, 60.82453652006554, 5.731987697920555, 135.48751477552486, 21.519281252196315, 61.94487986368998, 13.18592868320007, 46.81824371936753, 124.88902457219123, 42.34205605730168, 5.930363432284358, 48.13825222813371, 71.03442279157308, 14.353526314734523, 58.24670998173609, 85.27546396484749, 56.00030857409974, 9.398995903331937, 99.92920695929871, 68.05468678119487, 27.403826802304927, 14.400481171113153, 67.66900852659684, 29.469879059703736, 29.37806705224527, 26.230154437132082, 11.377664670482002, 33.670994487090255, 63.62686901996466, 25.639446503437657, 52.39901968263287, 12.877480208645249, 62.69706217407367, 37.11266191409508, 5.823020769254312, 54.32745498343196, 26.165180493300763, 13.233051845708598, 44.30663767928958, 89.42702615989528, 90.90986506573917, 49.6920750307495, 23.787824648404168, 48.842867728100735, 18.65205698594395, 14.171296604697776, 59.37608842194709, 12.06393072723779, 40.87990877491192, 83.97021524178972, 5.2806870669461885, 8.314432269471512, 43.338725941738005, 45.51541963582433, 7.28776961372534, 7.365840241389726, 17.431175324363757, 24.998876792343246, 92.13284916168398, 27.54024093686536, 16.64717005166026, 26.422105271738353, 44.112118805023485, 37.77834613134714, 41.97804207305819, 10.983325171348145, 27.984679754712452, 10.60975374817287, 73.34700587613948, 56.659805103587644, 26.357224881461445, 45.09106815876713, 13.433003687606632, 71.74416804898081, 14.938564196609384, 13.820725264217927, 83.60465951491527, 9.390956165067248, 111.9175942321701, 22.4295988978714, 77.3742151076588, 6.034026167516536, 78.8932753209878, 9.132446252560992, 11.943760500475136, 92.92438977883359, 85.41232771089491, 27.755200145485464, 15.86828100253152, 9.700321142690226, 74.95443908525266, 45.923204462826234, 116.95812981292133, 5.6308840839469605, 5.429732511871141, 20.48062395123093, 6.158125479939599, 70.6574321664807, 47.59286198977416, 57.58821806717059, 48.301254370097325, 21.66687536898194, 60.717693928733816, 16.941825859424146, 113.10392590011217, 7.665059868312299, 13.068043576887229, 38.30631078815635, 86.3489168376222, 7.277312130467459, 16.845120193174022, 29.026104209128103, 61.583071427232255, 7.480812765702759, 7.386220137516083, 52.697739097037385, 25.878158660059086, 7.146144953103077, 48.43266179887958, 18.710576302664833, 24.27526709635719, 73.8316830865376, 14.812452002074723, 148.6669399650023, 40.81179966695318, 19.60105607749422, 22.003734908719252, 5.348049050049601, 22.247853532276654, 74.5773866494755, 7.203665756662357, 23.471713269741464, 8.781840284096761, 15.573023652461764, 35.62090343302329, 17.735100436256715, 13.785005930683353, 72.25971410886348, 10.061698546184811, 21.587541099844742, 61.18272609849082, 70.69741645773749, 26.351100745785022, 6.215322772774463, 5.710263886571116, 14.527987997038323, 21.63255344843262, 17.95706355751505, 66.85175760859822, 79.70257998862373, 24.91523868405752, 5.577157917246776, 13.373426416842227, 5.419148308796932, 21.032369554527236, 49.132072738969754, 55.33355444487685, 15.85987697367986, 103.88430986657457, 34.26012635272215, 29.00773368657775, 5.039846794088877, 7.518849909058594, 13.999628074846086, 73.7411535980399, 8.909798736976406, 35.66818330454848, 128.491809068154, 7.4023126215457635, 19.091767676661924, 96.20301741792548, 11.516979746873213, 64.35480988120716, 40.830163171238944, 31.189857302358742, 101.34580394325951, 6.911574270174373, 12.369151696245057, 33.14686046838753, 23.714517032028834, 50.210498047439245, 137.103945572885, 29.567607934921632, 61.82471838210812, 70.3355800504874, 54.92209415318199, 5.67306612117421, 14.658558665628519, 71.37492572492316, 5.328612621681583, 70.82315796359218, 53.40528009627704, 29.14413876048116, 42.23300609234106, 106.6132635331781, 11.900179616324293, 16.511038201607374, 29.540275392961636, 13.07642614872563, 45.8731891387169, 11.664137841129332, 26.405282303285794, 85.79860281905621, 24.652030141318498, 49.45801830734474, 124.39465350657832, 60.443417040234344, 37.95475686541371, 12.429730478269668, 12.121423756018066, 9.385373498138557, 13.99572789191421, 85.77507731182142, 27.336186587352767, 26.647727218660506, 22.378327841896525, 110.57755417369395, 21.851488898220424, 33.162308433412214, 16.471379483601467, 75.59114776714216, 7.9445348927869075, 33.155877754475235, 42.31139617181845, 93.50256965320709, 14.573692661036311, 95.27527666299574, 20.982486523793362, 73.23470416057972, 25.921700706395388, 13.80001366591036, 87.12425267953859, 20.376436003224626, 21.243781183291816, 28.588556862111, 27.019426990054516, 15.785263664373474, 7.621266604484321, 9.697373036216469, 51.18601176833797, 30.19023288649332, 99.13552474601472, 24.311334203758562, 48.96850323622301, 31.232973075672025, 6.1697851870806755, 27.88601833849751, 15.935449621133884, 40.32071024287313, 10.79134281951319, 74.9007390971252, 8.702852702040081, 5.178409287398053, 53.498205665101665, 41.381805454230765, 37.49283484650671, 52.66440102365558, 5.467495354832483, 57.66424857357481, 62.93475522726291, 12.772119322028171, 43.01588689856007, 25.332878399440972, 48.87921896246326, 8.373867127110698, 9.58256014381549, 50.05250243170234, 75.90595082674457, 15.883207057951367, 8.462920328328437, 5.699753060367361, 35.06712248307595, 5.103698853509026, 87.77310213047699, 9.365563608291632, 18.050625395018415, 25.098830246834524, 73.98943008576605, 6.126199687739799, 32.23193797509774, 12.023556291727093, 206.15617377953157, 71.21167976797707, 27.194013961709203, 95.86126723410234, 5.503297779562671, 14.60445237425658, 21.21530110620287, 14.414712306621853, 85.81196381030117, 65.35062014382754, 22.082027165941206, 22.953353864904642, 20.903393953272158, 5.910465940432148, 19.721564742162315, 8.275847101359698, 11.51042595847423, 10.402365017556482, 76.64910588438788, 24.441743629771786, 8.859662734672337, 31.540499045180844, 12.38681905420284, 61.073320427223734, 74.41265950200673, 41.02190567644645, 5.284115148082361, 28.093882373650985, 5.414710972237882, 24.88702091885483, 44.823896594737676, 8.318935708078318, 48.51398765467622, 6.748159509275234, 5.960893475895645, 91.40737999256122, 15.424207104548167, 32.72253695132811, 56.21235860492712, 83.15653771196499, 10.510925024126468, 57.510483797313256, 11.614514024134806, 16.576788148882923, 45.42236420871252, 22.414877101915206, 93.23106446611163, 28.508718359105792, 97.04239981404918, 54.18453123087832, 5.811854128005304, 113.58202970503453, 10.807310356484102, 28.977940109328653, 63.84880763424746, 13.491957436082876, 66.26474168050913, 6.479182089597198, 87.11391342366602, 56.78767637446422, 14.346288447219381, 29.67393461159651, 8.65747734269614, 24.764150777038772, 5.330830173632789, 11.387987960268863, 15.248392628872901, 5.562424232973692, 12.776172640511227, 11.247349459925587, 48.166038024532384, 6.757578093109765, 54.355980109966694, 14.542681157645008, 40.87692646189576, 21.7125635062097, 19.196147087868898, 20.26522673179188, 44.96217801738796, 10.79374334198037, 19.79044558843039, 17.15692872138516, 31.163233900645146, 23.385915223851903, 15.94492695572195, 37.49711025657196, 16.522231884005496, 43.15419578812176, 67.941317438424, 18.996232782387143, 52.59463345854016, 9.695491402884981, 8.021152678921121, 162.03420414082146, 15.144969746786478, 25.376772134090878, 32.63925073252, 66.29821190418811, 24.584331991757256, 5.552799231645886, 18.914152796709537, 47.66441685327052, 56.31722799934217, 9.04291387621423, 48.078922358365915, 21.182913662354977, 66.95392803515648, 22.050534081751962, 6.159735534606223, 63.47692944670685, 63.85901176989141, 24.18009561916002, 86.19318221324427, 50.28889104843036, 23.377692493819747, 71.10331459439836, 45.47993596401015, 23.533488578799307, 5.50485000067981, 84.65787263906503, 6.294906858738427, 22.550875087350747, 148.45574477602892, 6.61481495908302, 5.225866495049125, 54.782771670473444, 36.371259731104495, 53.38378306408991, 33.572134407596764, 44.20567497854164, 8.752014537293874, 69.05784255787832, 9.92212084566423, 68.39287149658233, 29.279285753852534, 59.11915716784946, 8.312901114210655, 27.09311840637222, 30.510139957257078, 38.37815462185688, 46.85908422655499, 29.604688319304017, 26.5398582864595, 34.10258644624334, 51.13102976693821, 5.860830294680223, 12.03099797806035, 61.353446032548554, 11.032089622060422, 33.72989595489879, 22.077632460076714, 85.48472056996074, 61.031880035379615, 47.74733327678461, 68.95663159105413, 6.611281936652243, 13.82809125874559, 33.15912530034449, 18.681225115445265, 66.59810911958422, 47.91344870376788, 11.54554402044467, 134.97247913508664, 70.69617402777851, 9.93743176560146, 5.231710658163733, 48.18701037988071, 20.710108486083673, 8.471340235543742, 89.6073934919418, 50.6979825415193, 7.331116755972519, 10.887661350206061, 84.05265998559848, 56.24767023076758, 64.5970228038891, 20.41772431427777, 14.115733623160086, 56.28984325642311, 49.22839151426592, 33.331895065209544, 21.184603099096936, 57.7120252789811, 10.183974838878697, 57.14479226463135, 17.135529848502024, 89.24151816656115, 6.167570407620023, 28.58761211757154, 95.2363526992036, 82.25281693079036, 114.15998652432184, 7.99229395842423, 52.576349326284365, 29.97647289778849, 13.764908909382212, 143.09408913350003, 23.50971277822326, 12.702833532954896, 28.461404475462253, 14.423781326993078, 25.964357703084783, 86.39264088042212, 34.71323249308924, 52.724417096330065, 19.89401925460444, 38.17816589988053, 11.340351279634238, 9.843766986807358, 67.69862563149385, 6.388448125537193, 12.96456688504656, 49.685231051224356, 29.13228905579375, 24.411454515239512, 56.02145484019477, 83.32173563056554, 19.38947586017449, 31.630113351808312, 49.71047745601509, 34.83740995892152, 9.279312833136284, 210.30656194160144, 60.245818402915894, 32.69342576466862, 6.809054574910011, 48.07582299390018, 40.2274491570145, 64.69304146087518, 10.962758522730818, 126.29891496060662, 68.0857445225044, 105.03206410329781, 10.39296487403431, 12.24461907563439, 28.5358449987583, 133.0776069277155, 19.03386007845532, 76.68234046234053, 17.814845384404286, 44.729692768570324, 62.394748618148085, 52.87451947609929, 31.005092066605464, 31.74055407820253, 53.45085815549935, 18.274019775132857, 11.842629796198757, 212.31944139023244, 9.070747778197674, 6.418962902571224, 15.506957913449055, 20.74933184053627, 19.626063819134927, 8.885532056752508, 18.224736071472492, 87.71070543156726, 78.38518192793968, 7.481628809314587, 37.15129459077244, 5.772312097919878, 46.438975659106006, 28.181453211513936, 8.988137799891001, 14.187234379309723, 93.90173754727041, 77.54402088747821, 26.797902478133718, 92.77077148102337, 75.98690151254578, 16.670603616284126, 35.59117927165043, 49.735878967123696, 116.64092649473191, 70.66219707007858, 94.48126847277206, 37.829724091804394, 71.73728562304049, 31.391748317485835, 5.038082897115639, 17.06886729671141, 82.22413047592315, 9.700822548165235, 5.392274757232868, 58.41893798507412, 5.787333264433795, 49.95256155115221, 25.969483066107827, 56.229461168445084, 9.581092173649825, 20.108936420861934, 7.717630131549007, 103.70159787594285, 37.63786644034877, 13.120484570522995, 72.50780234391634, 23.20375204552916, 36.98675882194876, 5.23026584578654, 58.50379206194909, 7.666846806275249, 62.52710763326186, 43.26502790404158, 94.40828463269654, 68.4912797954715, 55.37681794644473, 106.81959873020185, 101.38483161717554, 23.770903763140037, 75.97922634566747, 60.166246253629424, 62.910906817071044, 14.826096492952551, 11.593589269946666, 17.200082483381003, 107.68177033621618, 70.63974835089302, 84.24089159094343, 5.260273304956913, 22.364832985686554, 38.75725264835084, 5.276026237275315, 13.606421938364067, 48.948521024430235, 19.251016079361122, 29.915814864662703, 30.834552166555195, 73.45648054612127, 23.630912172771016, 13.675603178008808, 5.800148722986262, 47.77567799799204, 71.28996020035629, 31.908372089471772, 5.983796692621629, 11.71224742685341, 12.143267587823807, 56.10718299469468, 8.525605829935401, 9.377490302755426, 14.325426932746716, 82.9734284991142, 100.20383494844589, 26.506598283177276, 71.1589599859469, 7.965808545708457, 52.807941324443796, 94.18908393099647, 12.696342618436546, 57.05906873542671, 17.956113181066797, 36.90353528887822, 41.8254722560166, 59.258410529584545, 59.42289987302515, 111.21137868496865, 36.44205788602268, 7.554835220916275, 71.42325143611144, 11.059923636670183, 12.773171497370956, 56.14841953645691, 11.48253276924374, 39.88814632068491, 40.18925291023055, 8.30040021040758, 28.381544742249144, 13.868581009098898, 85.86603594065306, 33.55957513130615, 28.45341597462962, 27.83903512862464, 17.667655413877092, 23.776526631989018, 8.360333868655554, 62.709389930305605, 6.26655154645157, 22.27757757612781, 70.0399318014986, 68.5210675792697, 28.841757109593978, 91.30002134033268, 6.21534588159137, 126.9850439349517, 6.275788493149919, 16.323538638350215, 73.36542248293013, 13.593066398291269, 22.091296148431933, 22.42941843474793, 43.200579841705746, 28.567808723946612, 45.62787987689328, 7.11203116481648, 9.540577043454496, 139.97914622211653, 65.60477951495419, 101.88081714742238, 154.67807806183473, 145.779168446874, 46.214435939755646, 18.81107621897719, 148.87730043385017, 22.463862681373893, 70.47328058474287, 18.533377153523883, 41.22741110958698, 144.34603095292061, 39.00195783112159, 5.362175297015721, 75.89133633591236, 11.451378390820242, 106.06877601845639, 101.50465249103252, 28.800665095392805, 86.09766457702892, 102.85189156761469, 73.52380322011616, 10.806739410879903, 13.292556295884069, 37.095107868691585, 85.84739285159833, 15.902527165624718, 143.36282586698977, 5.654769211686774, 38.511878763658, 5.62234910092532, 13.229407647417892, 33.794164264873615, 18.009136788270965, 8.260600381026661, 37.56921392151577, 17.81045255340166, 51.40232515631361, 38.030033394597304, 20.637252709806276, 57.42460970660756, 5.952130733893585, 85.34539606000013, 7.290477689417796, 5.663789066102479, 44.06570777793709, 7.129011975509389, 112.50731509978654, 28.09289364002951, 18.568794905212638, 60.72795750575287, 57.87098425824255, 27.42045821413039, 12.474616574564475, 9.551855313459914, 11.58094069777619, 23.04723265424576, 84.32199729925225, 48.68027555652283, 10.909385389357546, 39.79676729025465, 29.77893118213159, 60.837084992645146, 122.2942989574522, 36.07586173380176, 7.807339246778827, 26.977834888696066, 80.2264477891348, 41.73944668192701, 15.459360051316663, 17.513568855763218, 78.04961186418691, 57.66609007865429, 74.50608147638944, 29.463189527712235, 48.19276808229243, 25.44365693381543, 41.80921802825843, 10.756054607195848, 75.7069585904892, 11.715891185202267, 47.41891036643654, 159.8744024622895, 61.24962040878829, 70.22757986544958, 14.358807631702637, 31.998418242946105, 26.732648784589788, 5.115450393754683, 52.99319758895636, 19.68826258990269, 73.67255477074333, 18.425100548122632, 49.261799676830854, 14.823781334261561, 80.8133627202807, 63.850011145168374, 45.79306240468193, 61.10082758220658, 8.412133656099693, 43.24981629262145, 86.17149332472718, 68.1378343134298, 51.13104335299995, 18.328189345317128, 77.64289586157092, 17.615239473997633, 7.07421779218484, 7.349871272707814, 16.90234996702373, 35.38124072249089, 22.247347933239517, 6.403169088616316, 76.47473468312477, 60.90214080399811, 30.438773711193253, 36.633193173273355, 27.703755196521847, 24.65080499676305, 6.45372872846662, 61.38320786274022, 52.0508660054571, 8.349056105951414, 53.37544042574976, 87.0761657118189, 61.75955043455355, 86.54302812339006, 6.1391352460308815, 63.40791832594295, 5.985423272021066, 15.914228952487608, 117.66276601798702, 38.17847254478824, 53.01795477578187, 9.644392067372776, 26.91796179132261, 5.3460405493852425, 33.454670343792216, 26.78240053635652, 36.00667477128317, 82.87158430697932, 25.916308790906914, 6.006604282124312, 55.52470993752453, 42.547811292260334, 111.39239245594402, 77.20439911649098, 5.89352853202062, 8.446782347451817, 55.06862603066157, 13.752516477861178, 6.403445770811849, 72.24822708144457, 91.53851510443681, 12.977730149609284, 12.131737655161048, 42.994066305127234, 59.903031930434906, 45.54921824309408, 39.798217080735824, 5.471629986146339, 35.79182420010062, 73.97760251646733, 8.16897127284341, 54.91717753922219, 13.188517182788432, 97.17119401900746, 57.80091100841456, 5.101656396612419, 104.28529507369525, 69.91569652620228, 5.967686096080346, 77.88144941078856, 93.5368746883758, 16.565895448918933, 19.902544603526266, 9.007535923079582, 84.22694717349667, 32.73617733919908, 12.242587904299544, 19.20454553952512, 6.000100061920836, 71.68916829853538, 42.08782168047019, 39.737621835269564, 12.211418420929713, 13.932480769078493, 5.867946347823969, 15.976752159034135, 13.208194242543266, 55.37189919675984, 49.440394761154636, 54.93948095505759, 9.930782867177758, 11.550662822611935, 6.03166302622308, 130.87216446361015, 63.249448575323214, 64.52331692211644, 6.941179359808783, 40.55373328939922, 10.778763770526712, 9.035657773749591, 17.65337251827176, 57.82015770204899, 10.121908944534145, 119.65721908983613, 22.40853140288075, 45.86115606924314, 7.321723883128215, 61.50226545455984, 50.70066307242928, 70.4908310283232, 34.88884783700846, 28.333698763042733, 53.504678588549595, 89.55488627062957, 16.202203378101515, 27.115621173772066, 64.24943543085818, 79.57564473926226, 40.575587276236696, 16.94668856689321, 6.134975346618311, 72.32062591925435, 9.758619883417543, 6.462277523906464, 5.4155622476593095, 6.8572438724994305, 70.75439867978817, 66.83621859945471, 84.73850528430161, 5.353871165662623, 33.228765358364825, ...])
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)