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 = 48183
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);
([5693966.576729372, 5711855.517602496, 5756509.048982791, 6038970.406516704, 8193601.5625, 8299505.881349147, 8299591.046681513, 8299674.96190397, 8299723.968444661, 8300324.662278611, 8300370.195787429, 8304203.390321785, 8314488.9119001785, 8391835.714874037, 8406987.279900331, 8424596.681157658, 8433721.464762932, 8446257.412197335, 8447895.114048135, 8458621.875, 8459647.154188853, 8461429.6875, 8468305.821044067, 8477035.490661083, 8478329.952172657, 8479440.625, 8482034.375, 8489348.4375, 8490632.8125, 8510416.470363885, 8518015.625, 8522036.327209597, 8522932.770396192, 8523163.254315332, 8523457.902759941, 8523559.326412493, 8523779.6875, 8523812.693711648, 8523875.879921917, 8523877.505900413, 8523956.25, 8524186.204318507, 8524296.827513685, 8524524.87097086, 8524754.987975828, 8524808.827352304, 8524904.719478313, 8524948.299007831, 8525690.436621223, 8525901.315641323, 8526111.415263847, 8526470.3125, 8527136.708009526, 8527623.4375, 8527669.502754368, 8527740.576001376, 8527776.274427177, 8528031.222414337, 8528329.391046412, 8549303.125, 8566442.53704641, 8566723.36592782, 8570410.90089778, 8572203.717622915, 8573624.922365472, 8574114.0625, 8577035.9375, 8589731.40879698, 8602999.912935335, 8618770.164835762, 8621992.711106122, 8636029.6875, 8636395.3125, 8636617.1875, 8650660.02454006, 8672555.402223712, 8674602.087049251, 8697437.5, 8698245.547274187, 8701079.50420487, 8704792.1875, 8717862.91294355, 8726640.625, 8727901.814019714, 8728875.0, 8729041.13619525, 8729165.521078205, 8729440.625, 8729621.875, 8729698.584399186, 8729725.982412841, 8729818.75, 8729828.125, 8729893.75, 8729895.277756922, 8729953.751256559, 8730003.027662357, 8730205.609678172, 8730272.298148999, 8730296.719317308, 8730424.106135255, 8730512.47634813, 8730533.393020192, 8730711.70376513, 8730913.306884946, 8730975.0, 8730984.375, 8731007.53316188, 8731077.732160565, 8731086.866020428, 8731089.762969207, 8731152.946893727, 8731189.0625, 8731359.294453507, 8731398.293877894, 8731426.312059417, 8731575.045221942, 8731785.829921465, 8732177.67952238, 8732228.125, 8732237.346938446, 8732370.3125, 8732671.625231285, 8732878.125, 8732992.66464521, 8733042.1875, 8733845.261146614, 8733941.08757258, 8734057.8125, 8734064.970220841, 8734266.869695472, 8734273.162412675, 8734279.475981362, 8734476.434714388, 8734491.654266525, 8734830.319843974, 8734833.940857846, 8735339.0625, 8735469.47235229, 8735504.6875, 8735510.57346196, 8735741.778293366, 8735786.632662727, 8735807.158400923, 8736047.821111344, 8736059.282067668, 8736221.875, 8737707.8125, 8737947.364213875, 8738263.893163688, 8738369.878514906, 8738553.038153568, 8747173.275188092, 8748793.832251264, 8749094.89665928, 8750001.6833457, 8750523.321801238, 8750530.151512152, 8751379.166916091, 8752264.517569086, 8752422.816081699, 8764661.155557603, 8764831.25, 8764934.056462271, 8765207.8125, 8765481.709371546, 8765495.257789724, 8765523.037262047, 8765827.087696066, 8765831.25, 8765868.75, 8765870.60498722, 8765886.596160527, 8765925.0, 8765927.205392433, 8766015.24153599, 8766090.71995625, 8766107.334022928, 8766145.13624792, 8766208.971418675, 8766239.330175778, 8766274.628520919, 8766504.6875, 8766539.0625, 8766552.037547834, 8766570.3125, 8766680.98674149, 8767012.5, 8767131.155275567, 8767172.888055656, 8767307.217873763, 8767421.605858674, 8767490.588977115, 8767504.6875, 8767517.455115667, 8767852.796315059, 8767950.0, 8768324.328549433, 8768332.955655213, 8768389.157881627, 8768553.564065149, 8768663.4856837, 8768907.515771203, 8769002.613618506, 8769184.375, 8769713.659527306, 8770092.1875, 8770237.918231577, 8770479.346601162, 8770540.625, 8770847.36702888, 8771075.469535822, 8771142.1875, 8771255.030569421, 8771295.17922939, 8771697.707068685, 8771953.125, 8771968.752133505, 8771980.142930303, 8772230.910412159, 8772668.99655966, 8772672.067151055, 8772706.416934414, 8773544.577043576, 8774070.25119079, 8775266.47349532, 8776118.347527431, 8798751.764898341, 8801767.778990189, 8801802.49399143, 8802040.28643789, 8802100.0, 8802139.62875339, 8802568.75, 8802715.9422874, 8802945.596838495, 8803993.75, 8805291.183087261, 8805371.875, 8806149.367095461, 8807202.258183448, 8819196.875, 8830425.961543644, 8832297.71052863, 8842463.251691505, 8847883.2578902, 8856290.46349935, 8856708.521029755, 8856909.139309974, 8856920.45953993, 8863663.204338688, 8867240.625, 8867442.210858606, 8867567.1875, 8867907.001096204, 8869529.6875, 8871146.187221475, 8873738.214931052, 8873792.651550865, 8874535.656799125, 8876159.577230208, 8876479.9937504, 8876757.982295588, 8876826.211233458, 8876834.43160386, 8877053.325544747, 8877121.52680021, 8877175.0, 8877217.1875, 8877292.46058141, 8877466.176788459, 8877503.125, 8877527.253585737, 8877623.573806925, 8877650.0, 8877927.313630234, 8878293.868964612, 8878440.3925356, 8880402.984265594, 8882044.617761167, 8882125.0, 8884521.977515563, 8884846.73283343, 8885640.831365557, 8885860.438379634, 8886770.966240847, 8886988.74884769, 8888715.832888398, 8888787.892367974, 8888887.5, 8889214.0625, 8889268.4708464, 8889336.648776956, 8889731.25, 8890076.5625, 8891701.238188675, 8891719.383712837, 8892301.792518457, 8892444.4591041, 8892453.541770982, 8892674.789189124, 8892808.76923302, 8892828.060878038, 8894265.98755796, 8894506.837947635, 8895135.109643403, 8896694.65806923, 8896712.5, 8896873.317399215, 8896977.9578261, 8897171.875, 8897175.674101079, 8897329.169598224, 8897387.165350027, 8897397.464133307, 8897883.873449337, 8897979.1472258, 8898179.853321144, 8898316.088871522, 8898809.375, 8898846.302603442, 8898917.773928028, 8898967.661009053, 8899404.740883665, 8899466.296242403, 8899684.833385654, 8899706.25, 8899769.303252516, 8899784.872869754, 8899940.073562661, 8900021.312534519, 8900259.375, 8900273.082985895, 8900349.563692035, 8900643.863304073, 8900713.51469877, 8900720.259268707, 8900736.880373921, 8900980.387049297, 8900996.854750758, 8901066.884122485, 8901235.291552061, 8901339.480509812, 8901352.287776917, 8901357.8125, 8901464.0625, 8901484.096454725, 8901704.680763554, 8901931.806696018, 8901981.25, 8902168.75, 8902211.250903817, 8902368.75, 8902590.625, 8902632.8125, 8902633.794936841, 8902673.479770739, 8902834.375, 8902844.26462626, 8902865.625, 8902884.366308251, 8903084.61450674, 8903087.5, 8903203.491906663, 8903242.858727138, 8903267.082278673, 8903275.690276382, 8903324.874633672, 8903455.554682879, 8903542.558934316, 8903582.8125, 8903803.125, 8903808.716300454, 8903846.875, 8903881.712843869, 8904021.875, 8904217.1875, 8904526.5625, 8904558.369834602, 8904826.292879874, 8904955.273201486, 8905367.962088695, 8905389.0625, 8905479.073446454, 8905578.125, 8905862.50753306, 8905981.719878096, 8906276.5625, 8906283.878115062, 8906364.750766223, 8906540.229686854, 8906609.375, 8906611.888978453, 8907370.3125, 8909342.538728788, 8909458.343284357, 8909462.14608181, 8909585.804670231, 8909668.697556738, 8909752.838547783, 8910003.076522518, 8910004.824464481, 8910404.315150732, 8910448.390565112, 8910583.19743249, 8910631.814574338, 8910642.362331936, 8910717.377883084, 8910719.606111906, 8910737.957048, 8910747.406851763, 8910758.528817056, 8910804.6875, 8910846.579046894, 8910871.822604338, 8910876.5625, 8910934.250100339, 8910936.127050666, 8910968.75, 8910983.847196616, 8911003.125, 8911018.75, 8911024.549875062, 8911054.6875, 8911056.25, 8911075.061180148, 8911080.182013385, 8911162.5, 8911174.35016536, 8911213.44541589, 8911232.26227484, 8911276.29410625, 8911343.6978208, 8911406.25, 8911432.66920971, 8911443.657152347, 8911490.625, 8911517.72225273, 8911551.215427263, 8911602.723546974, 8911607.721028745, 8911670.3125, 8911703.125, 8911715.625, 8911776.5625, 8911793.602425212, 8911803.125, 8911915.449321294, 8911934.40176533, 8911982.8125, 8911990.809508966, 8911996.537550038, 8912020.3125, 8912025.975813262, 8912061.183961952, 8912100.0, 8912173.4375, 8912180.716607766, 8912230.863996902, 8912234.249479078, 8912243.75, 8912248.707822073, 8912250.258172832, 8912270.111260131, 8912292.141160829, 8912345.3125, 8912353.31698459, 8912354.48496719, 8912354.6875, 8912355.481115652, 8912383.302424511, 8912389.897899149, 8912404.242557986, 8912405.444954643, 8912415.915287042, 8912442.602514382, 8912443.975877412, 8912487.5, 8912507.268638402, 8912517.81407478, 8912537.5, 8912579.362678422, 8912587.611100651, 8912621.624833321, 8912673.377559042, 8912676.5625, 8912678.125, 8912759.375, 8912793.827531016, 8912815.625, 8912833.943799252, 8912842.514840282, 8912848.244525924, 8912850.0, 8912851.745162154, 8912862.782801205, 8912871.010950169, 8912884.53967868, 8912901.5625, 8912913.514715496, 8912917.248134313, 8912940.341086188, 8912948.4375, 8912975.591059536, 8912986.354401534, 8912995.562914867, 8913026.472190317, 8913028.859757554, 8913042.250398716, 8913043.965169284, 8913051.066215834, 8913058.214934958, 8913071.875, 8913078.067488817, 8913087.5, 8913111.020567881, 8913138.201904412, 8913151.5625, 8913170.3125, 8913232.8125, 8913245.751386173, 8913254.452887177, 8913274.249802766, 8913315.612578971, 8913317.1875, 8913320.183849968, 8913329.825070357, 8913335.776025705, 8913340.625, 8913345.09171743, 8913358.42595175, 8913384.734745484, 8913385.9375, 8913387.5, 8913402.391468333, 8913459.405814404, 8913499.619158244, 8913514.0625, 8913514.538258443, 8913576.029532237, 8913592.828332525, 8913593.75, 8913600.56196527, 8913610.920687208, 8913619.03494106, 8913630.46126563, 8913639.130699286, 8913649.246240009, 8913667.1875, 8913670.844552293, 8913693.640461178, 8913695.220457764, 8913703.43117582, 8913739.972447507, 8913771.873616287, 8913785.35334893, 8913865.253011268, 8913905.258164894, 8913908.24802545, 8913908.571746342, 8913974.288804123, 8913982.25890505, 8913988.356636144, 8914040.885964695, 8914045.196345156, 8914059.293875739, 8914075.715591393, 8914129.485082362, 8914163.132091746, 8914165.377975194, 8914179.388733396, 8914182.332945393, 8914195.3125, 8914216.138496049, 8914241.840201233, 8914285.986114407, 8914286.418137265, 8914299.886147885, 8914315.625, 8914454.6555649, 8914456.439110106, 8914517.862748384, 8914578.923692204, 8914590.148056855, 8914615.625, 8914673.4375, 8914743.75, 8914769.691984622, 8914812.351810584, 8914901.705053953, 8914912.172941403, 8915054.6875, 8915254.971697642, 8915425.56873794, 8915539.0625, 8915604.842691105, 8915698.4375, 8915737.5, 8915846.652465863, 8915858.837048415, 8915886.041146168, 8916110.062803501, 8916148.7132344, 8916179.78552855, 8916245.434218852, 8916360.9375, 8916434.600072248, 8916482.002077244, 8916528.063839722, 8916675.0, 8917099.89942056, 8917292.1875, 8919013.04933707, 8919521.064815607, 8924706.25, 8925347.062741267, 8926134.253722318, 8929186.788010826, 8929530.801730929, 8930785.274098322, 8934204.6875, 8934521.83480907, 8937257.667195493, 8937268.75, 8937331.53692646, 8937455.151482062, 8937516.608278649, 8937682.8125, 8937767.902498733, 8937790.443405002, 8937886.210502166, 8937910.9375, 8938010.223902851, 8938016.125466885, 8938024.152525902, 8938045.3125, 8938057.8125, 8938062.022451067, 8938079.6875, 8938169.802366106, 8938223.426236192, 8938235.314685337, 8938235.528483517, 8938237.5, 8938245.104391087, 8938246.735743197, 8938267.1875, 8938272.88540344, 8938404.6875, 8938460.619062612, 8938524.099654324, 8938540.238412153, 8938570.77531353, 8938593.925875667, 8938639.63551548, 8938792.818511546, 8938840.625, 8938863.453656895, 8939010.703022016, 8939345.21361989, 8939683.932948785, 8939688.336462865, 8939693.187437894, 8940175.972050639, 8940203.578974308, 8940309.016858546, 8940403.125, 8940408.412946612, 8940429.258122504, 8940434.559651822, 8940506.25, 8941023.122463489, 8941058.765366768, 8941113.392059786, 8941263.290385114, 8941346.666701889, 8941392.1875, 8941421.256425394, 8941435.839509798, 8941454.042872768, 8941693.75, 8941764.15899433, 8941945.051042292, 8941992.1875, 8942163.204393307, 8942222.26480721, 8942253.549673393, 8942403.656572394, 8942556.25, 8942664.0625, 8942861.560172075, 8942866.523687012, 8942929.488314964, 8943023.950224672, 8943034.504745811, 8943304.6875, 8943502.206681695, 8943515.625, 8943578.104740694, 8943607.8125, 8943677.140403537, 8943690.452930132, 8943718.19260107, 8943829.545132471, 8943863.744294569, 8943891.789296443, 8943918.89364948, 8943945.3125, 8944303.125, 8944835.9375, 8944836.10848006, 8944839.206275612, 8944853.764118837, 8944876.602504348, 8944948.325196596, 8944995.3125, 8945190.036378216, 8945197.63184975, 8946039.121542519, 8946079.737901889, 8946312.538653722, 8946424.500506433, 8946424.711419646, 8952547.129024059, 8953059.375, 8953631.944762204, 8954082.8125, 8954430.839715455, 8956096.256708134, 8956638.233126396, 8957276.5625, 8957825.963415064, 8958040.625, 8962173.128431315, 8966137.5, 8967184.375, 8968163.559782624, 8968935.424567195, 8969143.34022867, 8970325.999486577, 8970773.4375, 8971135.9375, 8971711.45572996, 8975047.500236727, 8977490.266867299, 8978385.188486729, 8978495.131314497, 8980633.937450875, 8981205.949433088, 8981713.04170028, 8988407.491692215, 8989989.3409923, 8991457.8125, 8991505.950342922, 8991677.97068343, 8992082.8125, 8992107.15811934, 8992178.255910765, 8992202.809133202, 8992548.4375, 8995347.693947017, 8997275.0, 9000979.6875, 9001644.495313954, 9001750.849638464, 9001885.414782222, 9002340.625, 9002869.975988695, 9007410.284662008, 9009391.251378145, 9009725.0, 9010615.063512532, 9012771.519307468, 9012902.205727797, 9015258.56046403, 9015567.699230582, 9015571.546097526, 9016681.79063763, 9016707.038761381, 9016909.53072232, 9016917.1875, 9017539.0625, 9018572.283148687, 9019512.5, 9019546.875, 9019551.832708154, 9019924.666948704, 9020284.546961877, 9020435.365564825, 9020481.25, 9021073.4375, 9022532.540088678, 9023223.421227755, 9023346.304645061, 9023804.880437842, 9024245.182786323, 9024307.8125, 9024412.22976469, 9025046.689098822, 9025402.35658516, 9027809.547296284, 9032047.895640712, 9032866.149787512, 9034539.379583871, 9035582.360780451, 9036716.001435736, 9038414.302486464, 9039164.0625, 9043917.037557784, 9043929.085699476, 9044217.1875, 9045104.051775632, 9050102.524965126, 9058895.315289367, 9063110.9375, 9066848.384184428, 9067887.5, 9069165.249207355, 9070554.466202028, 9071374.240159862, 9072615.61393129, 9075743.75, 9075749.172969032, 9077715.625, 9078477.944019627, 9079545.574449157, 9080191.1002652, 9081072.40025465, 9081334.771674586, 9081646.598169813, 9081931.08713961, 9082113.323532905, 9082114.012387233, 9083281.25, 9083340.625, 9085316.830423595, 9085440.719474558, 9086618.75, 9087693.862223975, 9087963.574730273, 9088013.75101018, 9088098.963676417, 9088182.786120702, 9088282.8125, 9088544.420213403, 9088887.78932635, 9088895.732536918, 9089110.554697607, 9089231.25, 9089322.506445508, 9089859.002501562, 9091918.75, 9093641.476973247, 9094560.9375, 9094570.09761227, 9094801.5625, 9094984.92993468, 9095312.5, 9095834.375, 9096720.3125, 9097714.008603003, 9097716.466322035, 9098435.006437914, 9101919.198526107, 9102104.278155314, 9102416.6795969, 9104297.797332931, 9106010.9375, 9107843.56395688, 9108354.578914363, 9108704.6875, 9108762.727119872, 9108943.473634822, 9108972.333093757, 9108985.434526354, 9109036.993713025, 9109142.911965832, 9109583.804191032, 9110345.3125, 9110436.323639689, 9110448.29400164, 9110669.926613286, 9110808.302250054, 9111164.0625, 9113195.469442343, 9113881.25, 9114104.00088642, 9114248.78782307, 9114697.902033644, 9114806.25, 9115036.322922813, 9115219.33609346, 9115338.463117186, 9116775.75764056, 9116901.441382252, 9116960.503164943, 9116990.625, 9116995.356367944, 9117010.361937525, 9117062.1551469, 9117069.100554034, 9117201.07415515, 9117237.153551375, 9117279.291626679, 9117326.259784777, 9117372.130446725, 9117372.368114127, 9117425.389586044, 9117727.629369073, 9117813.068600034, 9117839.0625, 9117914.949124817, 9118042.429837538, 9118076.659341648, 9118122.20507705, 9118180.299837414, 9118251.287659409, 9118270.565417584, 9118381.644869002, 9118441.207158873, 9118576.683068398, 9118637.045747003, 9118660.335825507, 9118736.799658136, 9118764.783631267, 9118900.991962463, 9118909.518768953, 9119015.711489936, 9119078.92249654, 9119082.17334022, 9119099.708957748, 9119110.906150665, 9119167.113775682, 9119290.625, 9119341.293954263, 9119415.270242017, 9119447.374179572, 9119473.469883326, 9119479.088242192, 9119493.75, 9119517.17751655, 9119522.48755112, 9119541.307695882, 9119543.75, 9119544.980048234, 9119553.996337352, 9119555.874154765, 9119568.578239547, 9119592.1875, 9119623.256821215, 9119623.4375, 9119640.263707984, 9119642.599020885, 9119690.516767796, 9119692.722858287, 9119718.75, 9119745.46774973, 9119753.287212208, 9119768.404556364, 9119790.003890865, 9119797.064369032, 9119821.875, 9119842.349513566, 9119854.631059786, 9119878.449823301, 9119886.985060392, 9119887.898946647, 9119900.0, 9119923.633457161, 9119956.25, 9119957.920487836, 9119977.612023413, 9120012.448989859, 9120017.286516286, 9120029.739130767, 9120044.664831677, 9120070.003055934, 9120075.367768092, 9120133.397610314, 9120137.5, 9120142.1875, 9120147.57417828, 9120148.4375, 9120153.744053794, 9120159.409251733, 9120181.570958033, 9120192.270888528, 9120192.339819642, 9120201.339679774, 9120209.395663848, 9120211.910055172, 9120221.875, 9120223.500758143, 9120224.694874207, 9120231.25, 9120233.998202078, 9120241.003812846, 9120248.002796827, 9120259.375, 9120263.375170287, ...], [86.32629304811815, 12.731648254088693, 93.4792909028595, 8.336928656591418, 80.64134233877282, 5.787197672772443, 11.857666547240754, 119.92149803608154, 10.279313306626658, 5.035898261767191, 63.51717614667029, 22.33847496380285, 21.909836843273272, 63.02744854287985, 24.827988759211802, 28.97815686128202, 115.37900554358353, 77.98152312105383, 6.456425727195389, 41.14655292599896, 5.834930750689552, 54.03514798105648, 57.648825044114, 50.898185625560615, 16.05636806157924, 76.96251746055255, 38.237357801354385, 39.81182641431049, 84.50394230591186, 67.26599837461765, 64.04144112253668, 16.668834972373386, 9.296053973421195, 5.570845136969469, 15.297072452918997, 14.75949504234891, 124.26243201293164, 5.348603580337416, 33.7893572009137, 57.17602246745483, 38.77859819660975, 16.06636556043924, 64.67229029253171, 35.456609380213735, 11.632263090059922, 85.54426137957516, 26.282109564472982, 10.917921501126733, 51.58503545392037, 93.88948633880315, 86.10665550977603, 49.784590336768666, 19.00307966127016, 76.36692509719293, 6.923707366093429, 14.757981602913233, 56.2421189056851, 7.593290798513048, 82.2027702525541, 37.92684673082977, 11.72187093397409, 69.11013161231939, 69.34279242767705, 17.811618973348853, 11.008489228130381, 41.26019255535498, 105.2008061944304, 5.716939355461981, 10.994292548546346, 10.904484493412433, 12.058281372274296, 47.028783943632, 74.08899170772902, 47.27811549447343, 12.321436983289825, 32.50529660072973, 5.853839403506904, 54.967702167978125, 19.76675881139795, 14.286053750846964, 60.3654626977064, 5.356273709851804, 87.93188753875117, 21.1161075558296, 56.99025060632623, 56.447685649364374, 8.232375802302359, 71.41802780246621, 101.31151353400386, 8.365818386760933, 35.91016493625514, 62.1467947306359, 77.48328713794996, 28.55327069025285, 8.268289663551158, 26.906774285583303, 26.73776534057085, 12.957493224800231, 16.843633413352546, 70.36658008601907, 8.674924061608195, 192.44815382618987, 34.02550959637559, 46.43678816051242, 7.9237020766794375, 41.17072529349949, 72.83652495347239, 52.88735901043214, 5.785474267275609, 20.253173505360163, 10.003367811591053, 25.443525742378178, 34.03903672406221, 14.643141306143068, 18.48442880918751, 14.065771898756516, 5.817333897163053, 24.035432780926428, 19.576006037269064, 52.98255195608986, 145.9931741213168, 39.5851101585007, 36.9798942187466, 96.70798106941533, 11.965522535498572, 55.45847032529733, 7.108017529483708, 11.936885785551416, 90.97441904918135, 10.238282323423954, 71.76716369503775, 24.074269585564142, 24.950833033454646, 50.17084841593537, 13.23593968352853, 33.95583182334439, 29.288978595494456, 40.72721222015031, 65.99695562809237, 82.84131772294577, 43.13077972169293, 9.00781121919189, 6.601880231765513, 25.352200328285633, 20.405651730858267, 26.812936058286162, 51.82889199799007, 37.29838231190133, 68.36445196026264, 25.57677269135911, 8.989557914782782, 24.188899935707653, 25.684717983698697, 9.401933283849893, 13.562603760786443, 5.294834748825472, 63.752195800929805, 6.859818959758111, 10.401063769233819, 17.01517586792489, 73.961172959502, 11.486554433433172, 51.71701763552106, 44.93791941305054, 34.20285571458529, 75.76277751970558, 27.486956749176528, 7.0200710824619605, 17.40908513766856, 32.72054982524623, 55.72259657717137, 16.187291915861245, 29.653563516508374, 45.75293191716801, 5.1444839052194276, 10.576936932989014, 5.537706884539399, 31.560344544443424, 5.454252115165973, 45.31022674263407, 5.724008047461137, 47.82160305225335, 60.12704177133894, 33.51581707075953, 8.554851479816266, 36.717777080293956, 8.152101128848225, 36.373827543006264, 26.78229546686368, 74.17915427363846, 20.598379770780873, 10.731560672574124, 44.739016749013715, 30.89427951055401, 11.573462901980403, 6.0545730543030185, 58.25312036269033, 130.7668307782747, 21.434600717819336, 62.586211878002075, 16.928584578508673, 20.759578518940998, 74.15850542853102, 7.4281902909829824, 39.30963609642622, 52.34891838716345, 53.523510991898064, 8.520862582224797, 13.783983475769876, 104.11086275072316, 11.994994124426796, 87.73497094022855, 46.41770214306948, 27.904812217539536, 26.142895679247367, 31.214372102598137, 37.09432415147896, 8.287705881447437, 17.75451640011653, 9.059871579791308, 5.472449613526861, 6.291784394986265, 11.399061737931794, 12.724348186256396, 48.887320602375866, 7.941941557843275, 95.94788881052561, 15.77347680869734, 8.62626481405186, 58.493149052199286, 10.636767471580342, 99.64512263465662, 84.60299720784366, 31.73891037930189, 14.649214838359756, 13.539991062657377, 33.81733182997703, 17.602394626349167, 66.68507026279705, 6.392252846171324, 18.477151912583565, 39.275771279793695, 38.24730678610748, 14.315578882230891, 12.548445703200837, 21.57965982960278, 10.884317757765395, 6.913713039586009, 6.237872901558678, 6.793221340609293, 16.59435538394915, 42.60887378341531, 5.1659059478396, 30.148839931421232, 39.0250946822341, 30.154785773676938, 19.804295050565006, 7.884042291985602, 23.675615183793294, 13.969654864563314, 7.678056040745847, 7.7178906304599195, 6.514041710666857, 5.516271920606113, 11.217350124424229, 9.506934026815765, 23.153981102910855, 134.5955041227523, 46.02412863275528, 13.948144067321, 57.14943983541218, 89.82545063511361, 8.689292753569019, 33.27615996735022, 35.63185243976052, 69.2407940290165, 22.948587624502792, 30.707135630317435, 14.430921609386912, 25.27416896274604, 31.15667089783021, 20.80856669868359, 62.8556946644179, 13.977326374014172, 8.942248775657546, 18.198522848921375, 13.867126789796384, 5.170231612248528, 23.452937866058942, 52.387108159493145, 32.48603890686702, 31.361415638211135, 49.39238663461972, 73.97701396001582, 33.95101731915368, 8.122212137028654, 55.880561737604054, 5.831197982172365, 5.868379549395365, 6.132539251696594, 10.813443700109564, 15.463150233919162, 27.317263885634343, 16.530458539192697, 58.01306629667002, 7.328955250217951, 8.83323323680104, 41.3535874360381, 14.5026833042337, 89.43717287884195, 45.73185926498337, 20.595661159455524, 10.404408826565769, 26.84727973020795, 67.46693652034722, 5.153843096989404, 21.10053623227879, 7.165734058493912, 9.757056777570398, 66.08329427177472, 5.671272480084325, 17.773604663631836, 9.766670907309171, 15.148963230951468, 162.98140015414782, 11.928697746747115, 28.74700920000079, 101.05037100442402, 89.39318657629133, 13.187344824184727, 6.0314977323610695, 64.16225507776251, 8.107598525210188, 8.987854058368377, 5.949333839107215, 26.35871532947141, 40.25777416184714, 5.435785477640946, 34.5684256685237, 28.130270977005708, 23.707694254576847, 20.151075128414405, 8.520730989366275, 40.8676736560104, 35.05512778704141, 85.04474201295662, 8.144573142942962, 13.19958671899558, 37.8780456838134, 98.02383624256615, 40.21369070506749, 11.655659254859957, 72.38565318361766, 64.46856374453424, 94.82776560234552, 21.319532148948753, 54.90271041592854, 67.43781559305395, 17.348154378412634, 43.650288260408864, 9.32406460838579, 15.940379483597791, 73.94925919476967, 16.384271126462966, 6.0000722465881875, 14.555069025138618, 12.410443040857805, 63.825819338463134, 45.19909898497706, 6.315295397180431, 34.49816343967881, 96.64923031090893, 33.85317898294559, 38.77493429593942, 11.150169781838992, 43.189040325175746, 56.36271646391959, 105.93562158964083, 5.989457028277796, 14.004629925600298, 8.62265757683642, 19.03287754883274, 108.05834825609524, 92.80830663188831, 70.5558090244628, 127.27397884391914, 17.09636949586293, 47.54682996200312, 8.943856468416326, 25.249677347721587, 21.10413169824789, 38.07129570657964, 13.031932114511275, 60.29615794637108, 7.216944692121101, 12.072814206049335, 23.085607307622023, 26.15000232663016, 55.26317943281016, 133.7093076754192, 14.759900148667523, 5.824184451739421, 79.1147324244776, 36.65351255252582, 11.78786765784109, 17.641197688166486, 30.23913813529662, 11.438924686692902, 51.778409741181356, 25.66046487331962, 19.000556016373405, 5.493375203510571, 139.23672619490029, 104.99335388773711, 14.74549293218268, 90.03153481432513, 56.77746930728054, 8.389424669352685, 68.92482630592549, 77.47043682304268, 33.46490183337377, 66.19895984522188, 25.624723785601567, 49.19636171721354, 62.65208578098219, 15.179942256597437, 17.233766502074566, 40.95696779009227, 87.92348139508836, 13.016424573178787, 8.015571159306171, 36.595054285947235, 22.67294906930811, 71.83419635412764, 27.64513034203547, 14.599045625583067, 50.90686215981907, 7.80881990173171, 30.871584067383957, 13.604296930289387, 145.46366057758098, 87.04176141928161, 71.99917544655077, 55.70333965728351, 37.60511676181397, 25.22782008243316, 40.780532134795834, 36.305072199487846, 8.30078217636784, 63.939916939086594, 18.968317821871874, 23.283873932649737, 34.37041377511289, 96.23337242077645, 37.16729403392038, 44.50306811675319, 45.032187787748214, 33.4349222379386, 109.60161388905149, 26.26850412175023, 68.37613192364356, 62.07570421504875, 11.5567407427913, 14.226212249421222, 27.640007597270877, 80.15358691270322, 27.398947682353793, 51.878096122417325, 35.91300340864769, 86.24260793069372, 17.207949428339848, 19.49189628125538, 13.479409381884873, 6.1705765446146215, 41.14919799600331, 16.800656657071272, 24.038554720773167, 55.838533505098, 21.066438444398493, 74.95664688624527, 73.24540394400802, 24.32869625496562, 17.807489606260596, 34.67115845366882, 8.255131875254534, 57.525078061209946, 70.23059454656175, 70.21439027681332, 14.060066087796177, 65.68970369335042, 18.731376489639636, 7.2102427570223755, 71.727178498108, 75.59493206000657, 13.927860863227487, 8.442011904436054, 18.495925853021543, 102.79615196236118, 83.55420745811634, 13.197053387464157, 12.45253044542736, 13.959560887798396, 76.88147873964928, 9.886741418992731, 26.594264347412377, 94.8917365001042, 56.12296138639546, 70.7415364005611, 11.227465700682595, 15.830372225230448, 21.53024791440377, 9.696560670146207, 65.20471144580985, 11.038987464408192, 68.7559326611156, 65.24001464975491, 12.436214677815606, 80.74517107534035, 47.62835014441879, 32.296144742857955, 42.975680480847984, 5.919231161983186, 25.5749408327198, 5.705967955873726, 115.93424788857682, 15.888648101700378, 15.493137570604496, 6.071466749858465, 43.20765006916199, 7.06459935859991, 58.413269745753595, 6.837516982977437, 54.77737930485334, 117.07459187132983, 6.941114085230653, 11.176215729125234, 13.664685844560514, 51.05051317102088, 28.759915692919314, 8.91804252644634, 33.04627058121936, 58.4600243097056, 17.62556404327267, 14.877811831835603, 8.443234665134106, 24.979651601006484, 8.322974550337083, 5.7602370064233845, 57.30899515664613, 29.030838398345132, 65.27472994761797, 26.82818567222651, 74.97377970993827, 15.801728039500848, 24.291843372319597, 13.10133697843818, 58.197729828102666, 17.67783610421461, 16.90959209211741, 15.874343972830218, 12.78259701301912, 6.657799097808926, 8.798259924914321, 29.429528520878627, 36.72409647314858, 43.01641167233351, 18.613360190229027, 10.825398829122445, 9.929913201525382, 12.825575598071781, 86.84919662648922, 13.382392122933036, 37.523033078532556, 12.037905188206276, 5.157351377127541, 11.204554081932097, 180.46635957398203, 10.954292723413545, 49.11834878338134, 81.96575143339594, 52.93479663650518, 12.377377870217776, 7.920132594215448, 7.4393873910605635, 35.50501722794181, 116.66247595560071, 36.498449052135065, 63.27378309678789, 14.405242327529141, 10.214619106086964, 23.41115134687187, 41.51411231154487, 28.93857808358944, 26.154603460011838, 38.570824966560686, 13.844280719935252, 49.29068529014698, 29.602507151746437, 6.719877952556158, 21.279814308826005, 109.60705550460011, 24.284555573934156, 16.10808797282248, 23.953779393837713, 92.76998771829358, 30.81819264278499, 5.626618217945062, 18.86992673505975, 128.15702912970465, 88.83302633929443, 14.571522256625414, 71.70627339392207, 12.110630101512058, 7.900060015148668, 73.08412488829092, 17.206081144309262, 31.470962478186777, 7.94282974531565, 31.105205457816506, 12.899748998391162, 74.06706795261277, 27.753712557513683, 25.95067451245426, 99.45057134331455, 16.160883854219975, 7.780139290569777, 20.737623868580723, 29.19870565002725, 18.60926738615318, 6.2445245750335365, 27.426287418713883, 81.60654019434088, 19.597744747441325, 9.793745297293622, 91.60175015321904, 69.25199445308546, 45.78085888848693, 71.47703194510787, 62.96180473335348, 51.19664440628973, 93.93012690256198, 17.26396782187695, 13.582332409718463, 46.82566760823311, 25.000055835651832, 26.0468508974969, 39.352876804249654, 10.36203677689324, 91.29487360225154, 13.852419260971734, 6.3546456994638145, 18.562513094980723, 53.092296848061984, 15.65709779984499, 9.867966730558726, 6.590776558745178, 71.9494283888126, 38.76601922578387, 19.6373154154253, 26.71156392069873, 10.500558818673527, 10.15534710483323, 29.585605119868465, 46.213002312535934, 5.979940030122842, 23.035428690237786, 111.4572150068178, 5.421935599713886, 22.227764493039945, 34.69830832331165, 59.548988326781846, 23.56055263477693, 20.46498704640544, 54.54971672017497, 19.149420039414096, 24.997318421771833, 98.01397790663192, 10.281332123410568, 26.726673031821228, 16.467709657172986, 87.16887726376673, 11.28195940164632, 7.511333224868771, 99.3340601554236, 12.441752297996734, 6.843906447823716, 16.851720085870742, 8.589218253075053, 83.34593854422738, 89.86718765456756, 9.919943069414693, 8.826812719825918, 6.456314056255383, 5.259725638785315, 40.97964139636665, 35.15129492434815, 6.157752106666367, 57.69103020233657, 65.80361019269726, 95.7835962331614, 22.412380329828935, 58.52789672698978, 20.939007470196376, 25.997274497168753, 35.865504108952784, 37.59796276818661, 10.838464214988873, 56.75131726514654, 64.1917240666282, 43.05730573477425, 15.800331343095415, 15.519375124971397, 54.12249471457576, 17.98014021896834, 26.486107973267625, 62.73884644789402, 94.71233309099412, 7.9020125472836815, 11.221265424788193, 8.313411747426468, 80.49567763465447, 21.498153661857895, 85.84084541678372, 129.08702360810867, 30.722800267592767, 24.53598476903392, 56.25224819068706, 89.97223181027256, 20.389013892529185, 45.58132544563237, 59.98095552039328, 14.197338705184421, 62.70342743982113, 23.63558884356649, 72.28658384983751, 58.6855698871619, 13.318609940003055, 8.032758797563421, 56.87480683681045, 31.24037049428282, 68.27402027363081, 63.70024228619396, 28.87233551791537, 18.01535087571923, 19.13039262336812, 10.1291005039772, 10.855839335716244, 13.500401581971271, 13.90757951864131, 45.74375281428284, 13.845150348024182, 48.74521708491783, 61.28992458377873, 9.090258481443115, 10.894773156797077, 72.67934845716825, 76.58480689080649, 15.465115572430072, 9.077876032693757, 65.27318201461786, 19.364904155618362, 144.50451537159407, 30.79089040237222, 12.533895927821703, 60.8673024409936, 29.222286691737366, 68.41781439210583, 57.64964988725032, 71.24628966655993, 85.72797531163556, 32.85042326678894, 19.558471934067175, 8.107030630571229, 37.43949401608624, 124.28872402633992, 12.034358026244378, 8.119983415158117, 17.223884460783005, 45.03642594427974, 5.4044607045665725, 35.67753327652664, 64.92927811150655, 11.831811527145764, 45.252458508569674, 51.11965067160443, 16.082192710008908, 83.2895647551614, 7.167400991768096, 32.99866503843761, 42.02900719815628, 68.51216154429417, 20.393090407903784, 28.206821604496103, 40.59107022193571, 8.391311228058948, 31.583851583959948, 39.36738112969781, 34.27020087318171, 25.326488881282717, 10.107120964426132, 11.408137454192913, 159.26735832121489, 17.40671938254708, 60.76059863702193, 13.460248808439097, 8.496206863112302, 15.942569042873425, 141.25151777636123, 36.35810502534788, 86.8175167781222, 71.92825039120979, 19.055254793688416, 7.399734349412257, 8.28805294056416, 38.11134391584593, 6.0825723596861145, 85.58415328028984, 10.587078199021304, 14.160169461893974, 19.241264497216328, 14.899487852251296, 41.65644880824964, 18.752004545882095, 43.584575816575786, 10.856134824713426, 17.730030099245518, 11.961815998546411, 17.40942443376605, 7.75329831616737, 19.76445559179887, 38.03298853711607, 12.715985648424171, 27.570764285242532, 74.54912964149428, 33.63809280511317, 37.15654614587978, 53.25793748012183, 61.02702294284236, 7.151267746885671, 13.359667145428736, 32.04807486675588, 17.414765402791993, 11.086723088977406, 112.63793002374494, 18.306632179995383, 68.32677617839295, 16.827156726329004, 13.658907528346067, 45.51686690666733, 8.651329574317128, 13.689355267414134, 75.24536068902906, 27.61284512214966, 114.25011766488879, 24.902426582932577, 45.21103965657119, 17.583618770928616, 70.93198911133248, 63.36148840229533, 47.727624437134956, 27.50173789490918, 28.45873436547393, 18.054787487164727, 6.136017906752474, 31.06259257353466, 69.09718406186684, 60.06356736150458, 92.08446233405195, 25.32436972584457, 34.1952371259607, 57.44408819481689, 23.627524206948124, 23.714838641978, 7.7777743227890195, 13.31790928941386, 18.42060586382113, 44.398012804803116, 10.339099087982358, 122.95591266152357, 53.37751690915484, 22.084298368483882, 53.24696591058287, 17.206969971241264, 32.49726208256763, 34.573332747141045, 109.35473880267048, 16.31526231649831, 57.43340611315162, 13.22995035750946, 31.004353510124854, 6.129118342692217, 69.78554059879023, 78.28129431846374, 104.7977631152165, 26.34051835191846, 22.17414532908335, 39.332902466538265, 30.488319227177232, 6.9779494869691305, 13.77203735410684, 16.470266391843456, 10.441517028833339, 23.017777005805904, 10.560601762916987, 84.40746496690882, 21.755650011157805, 20.898653339755395, 15.656165533361271, 21.53679505620013, 5.486712460607875, 35.538280530194804, 5.76560841706106, 25.11207084961337, 15.323934871485697, 16.368947184823558, 38.81335570859558, 17.141143025055136, 11.547467736753656, 21.118101673844514, 8.620452983302204, 15.42187529812675, 8.060131230713635, 35.72349316091117, 43.72329001188888, 24.194665816123376, 13.136924503596449, 6.285535038687943, 8.332850422019188, 39.23187891813414, 20.208821410257073, 13.93724105732761, 27.919187083120384, 7.10220569949558, 66.11174456212811, 30.408584955877753, 23.07560787573189, 5.642270033971371, 8.303776732135173, 77.39687081422974, 40.08546236806364, 5.532596209311074, 88.6121043429071, 7.8703460257303055, 77.39284856355236, 6.698901813924749, 8.808200760165832, 68.0186862305669, 60.28504929272765, 62.385828789609434, 11.439430646073687, 61.91641313857363, 6.051316940736755, 6.553595491987867, 14.544425189997254, 9.829191008230165, 28.871932657222946, 14.767104684774912, 9.472435389020582, 13.770255895841627, 20.36444851817196, 49.078548834329055, 35.586137419553246, 11.390752991720692, 9.28413143177634, 35.809891781622106, 21.345353068157987, 8.509450021475683, 77.43880043547257, 11.448466955839729, 63.79645343520495, 23.182551629195792, 21.364621250232215, 14.750582958870913, 11.286084934317806, 15.037593792109071, 105.97446784353559, 23.630851748815573, 7.221603146527441, 17.76554629443609, 31.311892928356407, 37.765671104066485, 8.694495483216858, 57.7489195747286, 92.82435632153334, 5.343096735361452, 16.32436922142292, 15.26916741392611, 31.196507727675908, 10.796414269669068, 9.348936957562708, 20.640444095595367, 56.57320400575333, 15.188229072963228, 55.87728995681246, 48.940998986368946, 10.585747382754182, 6.128398684462652, 13.508508416842332, 104.81333975938075, 19.807935014622203, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([5693966.576729372, 5711855.517602496, 5756509.048982791, 6038970.406516704, 8193601.5625, 8299505.881349147, 8299591.046681513, 8299674.96190397, 8299723.968444661, 8300324.662278611, 8300370.195787429, 8304203.390321785, 8314488.9119001785, 8391835.714874037, 8406987.279900331, 8424596.681157658, 8433721.464762932, 8446257.412197335, 8447895.114048135, 8458621.875, 8459647.154188853, 8461429.6875, 8468305.821044067, 8477035.490661083, 8478329.952172657, 8479440.625, 8482034.375, 8489348.4375, 8490632.8125, 8510416.470363885, 8518015.625, 8522036.327209597, 8522932.770396192, 8523163.254315332, 8523457.902759941, 8523559.326412493, 8523779.6875, 8523812.693711648, 8523875.879921917, 8523877.505900413, 8523956.25, 8524186.204318507, 8524296.827513685, 8524524.87097086, 8524754.987975828, 8524808.827352304, 8524904.719478313, 8524948.299007831, 8525690.436621223, 8525901.315641323, 8526111.415263847, 8526470.3125, 8527136.708009526, 8527623.4375, 8527669.502754368, 8527740.576001376, 8527776.274427177, 8528031.222414337, 8528329.391046412, 8549303.125, 8566442.53704641, 8566723.36592782, 8570410.90089778, 8572203.717622915, 8573624.922365472, 8574114.0625, 8577035.9375, 8589731.40879698, 8602999.912935335, 8618770.164835762, 8621992.711106122, 8636029.6875, 8636395.3125, 8636617.1875, 8650660.02454006, 8672555.402223712, 8674602.087049251, 8697437.5, 8698245.547274187, 8701079.50420487, 8704792.1875, 8717862.91294355, 8726640.625, 8727901.814019714, 8728875.0, 8729041.13619525, 8729165.521078205, 8729440.625, 8729621.875, 8729698.584399186, 8729725.982412841, 8729818.75, 8729828.125, 8729893.75, 8729895.277756922, 8729953.751256559, 8730003.027662357, 8730205.609678172, 8730272.298148999, 8730296.719317308, 8730424.106135255, 8730512.47634813, 8730533.393020192, 8730711.70376513, 8730913.306884946, 8730975.0, 8730984.375, 8731007.53316188, 8731077.732160565, 8731086.866020428, 8731089.762969207, 8731152.946893727, 8731189.0625, 8731359.294453507, 8731398.293877894, 8731426.312059417, 8731575.045221942, 8731785.829921465, 8732177.67952238, 8732228.125, 8732237.346938446, 8732370.3125, 8732671.625231285, 8732878.125, 8732992.66464521, 8733042.1875, 8733845.261146614, 8733941.08757258, 8734057.8125, 8734064.970220841, 8734266.869695472, 8734273.162412675, 8734279.475981362, 8734476.434714388, 8734491.654266525, 8734830.319843974, 8734833.940857846, 8735339.0625, 8735469.47235229, 8735504.6875, 8735510.57346196, 8735741.778293366, 8735786.632662727, 8735807.158400923, 8736047.821111344, 8736059.282067668, 8736221.875, 8737707.8125, 8737947.364213875, 8738263.893163688, 8738369.878514906, 8738553.038153568, 8747173.275188092, 8748793.832251264, 8749094.89665928, 8750001.6833457, 8750523.321801238, 8750530.151512152, 8751379.166916091, 8752264.517569086, 8752422.816081699, 8764661.155557603, 8764831.25, 8764934.056462271, 8765207.8125, 8765481.709371546, 8765495.257789724, 8765523.037262047, 8765827.087696066, 8765831.25, 8765868.75, 8765870.60498722, 8765886.596160527, 8765925.0, 8765927.205392433, 8766015.24153599, 8766090.71995625, 8766107.334022928, 8766145.13624792, 8766208.971418675, 8766239.330175778, 8766274.628520919, 8766504.6875, 8766539.0625, 8766552.037547834, 8766570.3125, 8766680.98674149, 8767012.5, 8767131.155275567, 8767172.888055656, 8767307.217873763, 8767421.605858674, 8767490.588977115, 8767504.6875, 8767517.455115667, 8767852.796315059, 8767950.0, 8768324.328549433, 8768332.955655213, 8768389.157881627, 8768553.564065149, 8768663.4856837, 8768907.515771203, 8769002.613618506, 8769184.375, 8769713.659527306, 8770092.1875, 8770237.918231577, 8770479.346601162, 8770540.625, 8770847.36702888, 8771075.469535822, 8771142.1875, 8771255.030569421, 8771295.17922939, 8771697.707068685, 8771953.125, 8771968.752133505, 8771980.142930303, 8772230.910412159, 8772668.99655966, 8772672.067151055, 8772706.416934414, 8773544.577043576, 8774070.25119079, 8775266.47349532, 8776118.347527431, 8798751.764898341, 8801767.778990189, 8801802.49399143, 8802040.28643789, 8802100.0, 8802139.62875339, 8802568.75, 8802715.9422874, 8802945.596838495, 8803993.75, 8805291.183087261, 8805371.875, 8806149.367095461, 8807202.258183448, 8819196.875, 8830425.961543644, 8832297.71052863, 8842463.251691505, 8847883.2578902, 8856290.46349935, 8856708.521029755, 8856909.139309974, 8856920.45953993, 8863663.204338688, 8867240.625, 8867442.210858606, 8867567.1875, 8867907.001096204, 8869529.6875, 8871146.187221475, 8873738.214931052, 8873792.651550865, 8874535.656799125, 8876159.577230208, 8876479.9937504, 8876757.982295588, 8876826.211233458, 8876834.43160386, 8877053.325544747, 8877121.52680021, 8877175.0, 8877217.1875, 8877292.46058141, 8877466.176788459, 8877503.125, 8877527.253585737, 8877623.573806925, 8877650.0, 8877927.313630234, 8878293.868964612, 8878440.3925356, 8880402.984265594, 8882044.617761167, 8882125.0, 8884521.977515563, 8884846.73283343, 8885640.831365557, 8885860.438379634, 8886770.966240847, 8886988.74884769, 8888715.832888398, 8888787.892367974, 8888887.5, 8889214.0625, 8889268.4708464, 8889336.648776956, 8889731.25, 8890076.5625, 8891701.238188675, 8891719.383712837, 8892301.792518457, 8892444.4591041, 8892453.541770982, 8892674.789189124, 8892808.76923302, 8892828.060878038, 8894265.98755796, 8894506.837947635, 8895135.109643403, 8896694.65806923, 8896712.5, 8896873.317399215, 8896977.9578261, 8897171.875, 8897175.674101079, 8897329.169598224, 8897387.165350027, 8897397.464133307, 8897883.873449337, 8897979.1472258, 8898179.853321144, 8898316.088871522, 8898809.375, 8898846.302603442, 8898917.773928028, 8898967.661009053, 8899404.740883665, 8899466.296242403, 8899684.833385654, 8899706.25, 8899769.303252516, 8899784.872869754, 8899940.073562661, 8900021.312534519, 8900259.375, 8900273.082985895, 8900349.563692035, 8900643.863304073, 8900713.51469877, 8900720.259268707, 8900736.880373921, 8900980.387049297, 8900996.854750758, 8901066.884122485, 8901235.291552061, 8901339.480509812, 8901352.287776917, 8901357.8125, 8901464.0625, 8901484.096454725, 8901704.680763554, 8901931.806696018, 8901981.25, 8902168.75, 8902211.250903817, 8902368.75, 8902590.625, 8902632.8125, 8902633.794936841, 8902673.479770739, 8902834.375, 8902844.26462626, 8902865.625, 8902884.366308251, 8903084.61450674, 8903087.5, 8903203.491906663, 8903242.858727138, 8903267.082278673, 8903275.690276382, 8903324.874633672, 8903455.554682879, 8903542.558934316, 8903582.8125, 8903803.125, 8903808.716300454, 8903846.875, 8903881.712843869, 8904021.875, 8904217.1875, 8904526.5625, 8904558.369834602, 8904826.292879874, 8904955.273201486, 8905367.962088695, 8905389.0625, 8905479.073446454, 8905578.125, 8905862.50753306, 8905981.719878096, 8906276.5625, 8906283.878115062, 8906364.750766223, 8906540.229686854, 8906609.375, 8906611.888978453, 8907370.3125, 8909342.538728788, 8909458.343284357, 8909462.14608181, 8909585.804670231, 8909668.697556738, 8909752.838547783, 8910003.076522518, 8910004.824464481, 8910404.315150732, 8910448.390565112, 8910583.19743249, 8910631.814574338, 8910642.362331936, 8910717.377883084, 8910719.606111906, 8910737.957048, 8910747.406851763, 8910758.528817056, 8910804.6875, 8910846.579046894, 8910871.822604338, 8910876.5625, 8910934.250100339, 8910936.127050666, 8910968.75, 8910983.847196616, 8911003.125, 8911018.75, 8911024.549875062, 8911054.6875, 8911056.25, 8911075.061180148, 8911080.182013385, 8911162.5, 8911174.35016536, 8911213.44541589, 8911232.26227484, 8911276.29410625, 8911343.6978208, 8911406.25, 8911432.66920971, 8911443.657152347, 8911490.625, 8911517.72225273, 8911551.215427263, 8911602.723546974, 8911607.721028745, 8911670.3125, 8911703.125, 8911715.625, 8911776.5625, 8911793.602425212, 8911803.125, 8911915.449321294, 8911934.40176533, 8911982.8125, 8911990.809508966, 8911996.537550038, 8912020.3125, 8912025.975813262, 8912061.183961952, 8912100.0, 8912173.4375, 8912180.716607766, 8912230.863996902, 8912234.249479078, 8912243.75, 8912248.707822073, 8912250.258172832, 8912270.111260131, 8912292.141160829, 8912345.3125, 8912353.31698459, 8912354.48496719, 8912354.6875, 8912355.481115652, 8912383.302424511, 8912389.897899149, 8912404.242557986, 8912405.444954643, 8912415.915287042, 8912442.602514382, 8912443.975877412, 8912487.5, 8912507.268638402, 8912517.81407478, 8912537.5, 8912579.362678422, 8912587.611100651, 8912621.624833321, 8912673.377559042, 8912676.5625, 8912678.125, 8912759.375, 8912793.827531016, 8912815.625, 8912833.943799252, 8912842.514840282, 8912848.244525924, 8912850.0, 8912851.745162154, 8912862.782801205, 8912871.010950169, 8912884.53967868, 8912901.5625, 8912913.514715496, 8912917.248134313, 8912940.341086188, 8912948.4375, 8912975.591059536, 8912986.354401534, 8912995.562914867, 8913026.472190317, 8913028.859757554, 8913042.250398716, 8913043.965169284, 8913051.066215834, 8913058.214934958, 8913071.875, 8913078.067488817, 8913087.5, 8913111.020567881, 8913138.201904412, 8913151.5625, 8913170.3125, 8913232.8125, 8913245.751386173, 8913254.452887177, 8913274.249802766, 8913315.612578971, 8913317.1875, 8913320.183849968, 8913329.825070357, 8913335.776025705, 8913340.625, 8913345.09171743, 8913358.42595175, 8913384.734745484, 8913385.9375, 8913387.5, 8913402.391468333, 8913459.405814404, 8913499.619158244, 8913514.0625, 8913514.538258443, 8913576.029532237, 8913592.828332525, 8913593.75, 8913600.56196527, 8913610.920687208, 8913619.03494106, 8913630.46126563, 8913639.130699286, 8913649.246240009, 8913667.1875, 8913670.844552293, 8913693.640461178, 8913695.220457764, 8913703.43117582, 8913739.972447507, 8913771.873616287, 8913785.35334893, 8913865.253011268, 8913905.258164894, 8913908.24802545, 8913908.571746342, 8913974.288804123, 8913982.25890505, 8913988.356636144, 8914040.885964695, 8914045.196345156, 8914059.293875739, 8914075.715591393, 8914129.485082362, 8914163.132091746, 8914165.377975194, 8914179.388733396, 8914182.332945393, 8914195.3125, 8914216.138496049, 8914241.840201233, 8914285.986114407, 8914286.418137265, 8914299.886147885, 8914315.625, 8914454.6555649, 8914456.439110106, 8914517.862748384, 8914578.923692204, 8914590.148056855, 8914615.625, 8914673.4375, 8914743.75, 8914769.691984622, 8914812.351810584, 8914901.705053953, 8914912.172941403, 8915054.6875, 8915254.971697642, 8915425.56873794, 8915539.0625, 8915604.842691105, 8915698.4375, 8915737.5, 8915846.652465863, 8915858.837048415, 8915886.041146168, 8916110.062803501, 8916148.7132344, 8916179.78552855, 8916245.434218852, 8916360.9375, 8916434.600072248, 8916482.002077244, 8916528.063839722, 8916675.0, 8917099.89942056, 8917292.1875, 8919013.04933707, 8919521.064815607, 8924706.25, 8925347.062741267, 8926134.253722318, 8929186.788010826, 8929530.801730929, 8930785.274098322, 8934204.6875, 8934521.83480907, 8937257.667195493, 8937268.75, 8937331.53692646, 8937455.151482062, 8937516.608278649, 8937682.8125, 8937767.902498733, 8937790.443405002, 8937886.210502166, 8937910.9375, 8938010.223902851, 8938016.125466885, 8938024.152525902, 8938045.3125, 8938057.8125, 8938062.022451067, 8938079.6875, 8938169.802366106, 8938223.426236192, 8938235.314685337, 8938235.528483517, 8938237.5, 8938245.104391087, 8938246.735743197, 8938267.1875, 8938272.88540344, 8938404.6875, 8938460.619062612, 8938524.099654324, 8938540.238412153, 8938570.77531353, 8938593.925875667, 8938639.63551548, 8938792.818511546, 8938840.625, 8938863.453656895, 8939010.703022016, 8939345.21361989, 8939683.932948785, 8939688.336462865, 8939693.187437894, 8940175.972050639, 8940203.578974308, 8940309.016858546, 8940403.125, 8940408.412946612, 8940429.258122504, 8940434.559651822, 8940506.25, 8941023.122463489, 8941058.765366768, 8941113.392059786, 8941263.290385114, 8941346.666701889, 8941392.1875, 8941421.256425394, 8941435.839509798, 8941454.042872768, 8941693.75, 8941764.15899433, 8941945.051042292, 8941992.1875, 8942163.204393307, 8942222.26480721, 8942253.549673393, 8942403.656572394, 8942556.25, 8942664.0625, 8942861.560172075, 8942866.523687012, 8942929.488314964, 8943023.950224672, 8943034.504745811, 8943304.6875, 8943502.206681695, 8943515.625, 8943578.104740694, 8943607.8125, 8943677.140403537, 8943690.452930132, 8943718.19260107, 8943829.545132471, 8943863.744294569, 8943891.789296443, 8943918.89364948, 8943945.3125, 8944303.125, 8944835.9375, 8944836.10848006, 8944839.206275612, 8944853.764118837, 8944876.602504348, 8944948.325196596, 8944995.3125, 8945190.036378216, 8945197.63184975, 8946039.121542519, 8946079.737901889, 8946312.538653722, 8946424.500506433, 8946424.711419646, 8952547.129024059, 8953059.375, 8953631.944762204, 8954082.8125, 8954430.839715455, 8956096.256708134, 8956638.233126396, 8957276.5625, 8957825.963415064, 8958040.625, 8962173.128431315, 8966137.5, 8967184.375, 8968163.559782624, 8968935.424567195, 8969143.34022867, 8970325.999486577, 8970773.4375, 8971135.9375, 8971711.45572996, 8975047.500236727, 8977490.266867299, 8978385.188486729, 8978495.131314497, 8980633.937450875, 8981205.949433088, 8981713.04170028, 8988407.491692215, 8989989.3409923, 8991457.8125, 8991505.950342922, 8991677.97068343, 8992082.8125, 8992107.15811934, 8992178.255910765, 8992202.809133202, 8992548.4375, 8995347.693947017, 8997275.0, 9000979.6875, 9001644.495313954, 9001750.849638464, 9001885.414782222, 9002340.625, 9002869.975988695, 9007410.284662008, 9009391.251378145, 9009725.0, 9010615.063512532, 9012771.519307468, 9012902.205727797, 9015258.56046403, 9015567.699230582, 9015571.546097526, 9016681.79063763, 9016707.038761381, 9016909.53072232, 9016917.1875, 9017539.0625, 9018572.283148687, 9019512.5, 9019546.875, 9019551.832708154, 9019924.666948704, 9020284.546961877, 9020435.365564825, 9020481.25, 9021073.4375, 9022532.540088678, 9023223.421227755, 9023346.304645061, 9023804.880437842, 9024245.182786323, 9024307.8125, 9024412.22976469, 9025046.689098822, 9025402.35658516, 9027809.547296284, 9032047.895640712, 9032866.149787512, 9034539.379583871, 9035582.360780451, 9036716.001435736, 9038414.302486464, 9039164.0625, 9043917.037557784, 9043929.085699476, 9044217.1875, 9045104.051775632, 9050102.524965126, 9058895.315289367, 9063110.9375, 9066848.384184428, 9067887.5, 9069165.249207355, 9070554.466202028, 9071374.240159862, 9072615.61393129, 9075743.75, 9075749.172969032, 9077715.625, 9078477.944019627, 9079545.574449157, 9080191.1002652, 9081072.40025465, 9081334.771674586, 9081646.598169813, 9081931.08713961, 9082113.323532905, 9082114.012387233, 9083281.25, 9083340.625, 9085316.830423595, 9085440.719474558, 9086618.75, 9087693.862223975, 9087963.574730273, 9088013.75101018, 9088098.963676417, 9088182.786120702, 9088282.8125, 9088544.420213403, 9088887.78932635, 9088895.732536918, 9089110.554697607, 9089231.25, 9089322.506445508, 9089859.002501562, 9091918.75, 9093641.476973247, 9094560.9375, 9094570.09761227, 9094801.5625, 9094984.92993468, 9095312.5, 9095834.375, 9096720.3125, 9097714.008603003, 9097716.466322035, 9098435.006437914, 9101919.198526107, 9102104.278155314, 9102416.6795969, 9104297.797332931, 9106010.9375, 9107843.56395688, 9108354.578914363, 9108704.6875, 9108762.727119872, 9108943.473634822, 9108972.333093757, 9108985.434526354, 9109036.993713025, 9109142.911965832, 9109583.804191032, 9110345.3125, 9110436.323639689, 9110448.29400164, 9110669.926613286, 9110808.302250054, 9111164.0625, 9113195.469442343, 9113881.25, 9114104.00088642, 9114248.78782307, 9114697.902033644, 9114806.25, 9115036.322922813, 9115219.33609346, 9115338.463117186, 9116775.75764056, 9116901.441382252, 9116960.503164943, 9116990.625, 9116995.356367944, 9117010.361937525, 9117062.1551469, 9117069.100554034, 9117201.07415515, 9117237.153551375, 9117279.291626679, 9117326.259784777, 9117372.130446725, 9117372.368114127, 9117425.389586044, 9117727.629369073, 9117813.068600034, 9117839.0625, 9117914.949124817, 9118042.429837538, 9118076.659341648, 9118122.20507705, 9118180.299837414, 9118251.287659409, 9118270.565417584, 9118381.644869002, 9118441.207158873, 9118576.683068398, 9118637.045747003, 9118660.335825507, 9118736.799658136, 9118764.783631267, 9118900.991962463, 9118909.518768953, 9119015.711489936, 9119078.92249654, 9119082.17334022, 9119099.708957748, 9119110.906150665, 9119167.113775682, 9119290.625, 9119341.293954263, 9119415.270242017, 9119447.374179572, 9119473.469883326, 9119479.088242192, 9119493.75, 9119517.17751655, 9119522.48755112, 9119541.307695882, 9119543.75, 9119544.980048234, 9119553.996337352, 9119555.874154765, 9119568.578239547, 9119592.1875, 9119623.256821215, 9119623.4375, 9119640.263707984, 9119642.599020885, 9119690.516767796, 9119692.722858287, 9119718.75, 9119745.46774973, 9119753.287212208, 9119768.404556364, 9119790.003890865, 9119797.064369032, 9119821.875, 9119842.349513566, 9119854.631059786, 9119878.449823301, 9119886.985060392, 9119887.898946647, 9119900.0, 9119923.633457161, 9119956.25, 9119957.920487836, 9119977.612023413, 9120012.448989859, 9120017.286516286, 9120029.739130767, 9120044.664831677, 9120070.003055934, 9120075.367768092, 9120133.397610314, 9120137.5, 9120142.1875, 9120147.57417828, 9120148.4375, 9120153.744053794, 9120159.409251733, 9120181.570958033, 9120192.270888528, 9120192.339819642, 9120201.339679774, 9120209.395663848, 9120211.910055172, 9120221.875, 9120223.500758143, 9120224.694874207, 9120231.25, 9120233.998202078, 9120241.003812846, 9120248.002796827, 9120259.375, 9120263.375170287, ...], [86.32629304811815, 12.731648254088693, 93.4792909028595, 8.336928656591418, 80.64134233877282, 5.787197672772443, 11.857666547240754, 119.92149803608154, 10.279313306626658, 5.035898261767191, 63.51717614667029, 22.33847496380285, 21.909836843273272, 63.02744854287985, 24.827988759211802, 28.97815686128202, 115.37900554358353, 77.98152312105383, 6.456425727195389, 41.14655292599896, 5.834930750689552, 54.03514798105648, 57.648825044114, 50.898185625560615, 16.05636806157924, 76.96251746055255, 38.237357801354385, 39.81182641431049, 84.50394230591186, 67.26599837461765, 64.04144112253668, 16.668834972373386, 9.296053973421195, 5.570845136969469, 15.297072452918997, 14.75949504234891, 124.26243201293164, 5.348603580337416, 33.7893572009137, 57.17602246745483, 38.77859819660975, 16.06636556043924, 64.67229029253171, 35.456609380213735, 11.632263090059922, 85.54426137957516, 26.282109564472982, 10.917921501126733, 51.58503545392037, 93.88948633880315, 86.10665550977603, 49.784590336768666, 19.00307966127016, 76.36692509719293, 6.923707366093429, 14.757981602913233, 56.2421189056851, 7.593290798513048, 82.2027702525541, 37.92684673082977, 11.72187093397409, 69.11013161231939, 69.34279242767705, 17.811618973348853, 11.008489228130381, 41.26019255535498, 105.2008061944304, 5.716939355461981, 10.994292548546346, 10.904484493412433, 12.058281372274296, 47.028783943632, 74.08899170772902, 47.27811549447343, 12.321436983289825, 32.50529660072973, 5.853839403506904, 54.967702167978125, 19.76675881139795, 14.286053750846964, 60.3654626977064, 5.356273709851804, 87.93188753875117, 21.1161075558296, 56.99025060632623, 56.447685649364374, 8.232375802302359, 71.41802780246621, 101.31151353400386, 8.365818386760933, 35.91016493625514, 62.1467947306359, 77.48328713794996, 28.55327069025285, 8.268289663551158, 26.906774285583303, 26.73776534057085, 12.957493224800231, 16.843633413352546, 70.36658008601907, 8.674924061608195, 192.44815382618987, 34.02550959637559, 46.43678816051242, 7.9237020766794375, 41.17072529349949, 72.83652495347239, 52.88735901043214, 5.785474267275609, 20.253173505360163, 10.003367811591053, 25.443525742378178, 34.03903672406221, 14.643141306143068, 18.48442880918751, 14.065771898756516, 5.817333897163053, 24.035432780926428, 19.576006037269064, 52.98255195608986, 145.9931741213168, 39.5851101585007, 36.9798942187466, 96.70798106941533, 11.965522535498572, 55.45847032529733, 7.108017529483708, 11.936885785551416, 90.97441904918135, 10.238282323423954, 71.76716369503775, 24.074269585564142, 24.950833033454646, 50.17084841593537, 13.23593968352853, 33.95583182334439, 29.288978595494456, 40.72721222015031, 65.99695562809237, 82.84131772294577, 43.13077972169293, 9.00781121919189, 6.601880231765513, 25.352200328285633, 20.405651730858267, 26.812936058286162, 51.82889199799007, 37.29838231190133, 68.36445196026264, 25.57677269135911, 8.989557914782782, 24.188899935707653, 25.684717983698697, 9.401933283849893, 13.562603760786443, 5.294834748825472, 63.752195800929805, 6.859818959758111, 10.401063769233819, 17.01517586792489, 73.961172959502, 11.486554433433172, 51.71701763552106, 44.93791941305054, 34.20285571458529, 75.76277751970558, 27.486956749176528, 7.0200710824619605, 17.40908513766856, 32.72054982524623, 55.72259657717137, 16.187291915861245, 29.653563516508374, 45.75293191716801, 5.1444839052194276, 10.576936932989014, 5.537706884539399, 31.560344544443424, 5.454252115165973, 45.31022674263407, 5.724008047461137, 47.82160305225335, 60.12704177133894, 33.51581707075953, 8.554851479816266, 36.717777080293956, 8.152101128848225, 36.373827543006264, 26.78229546686368, 74.17915427363846, 20.598379770780873, 10.731560672574124, 44.739016749013715, 30.89427951055401, 11.573462901980403, 6.0545730543030185, 58.25312036269033, 130.7668307782747, 21.434600717819336, 62.586211878002075, 16.928584578508673, 20.759578518940998, 74.15850542853102, 7.4281902909829824, 39.30963609642622, 52.34891838716345, 53.523510991898064, 8.520862582224797, 13.783983475769876, 104.11086275072316, 11.994994124426796, 87.73497094022855, 46.41770214306948, 27.904812217539536, 26.142895679247367, 31.214372102598137, 37.09432415147896, 8.287705881447437, 17.75451640011653, 9.059871579791308, 5.472449613526861, 6.291784394986265, 11.399061737931794, 12.724348186256396, 48.887320602375866, 7.941941557843275, 95.94788881052561, 15.77347680869734, 8.62626481405186, 58.493149052199286, 10.636767471580342, 99.64512263465662, 84.60299720784366, 31.73891037930189, 14.649214838359756, 13.539991062657377, 33.81733182997703, 17.602394626349167, 66.68507026279705, 6.392252846171324, 18.477151912583565, 39.275771279793695, 38.24730678610748, 14.315578882230891, 12.548445703200837, 21.57965982960278, 10.884317757765395, 6.913713039586009, 6.237872901558678, 6.793221340609293, 16.59435538394915, 42.60887378341531, 5.1659059478396, 30.148839931421232, 39.0250946822341, 30.154785773676938, 19.804295050565006, 7.884042291985602, 23.675615183793294, 13.969654864563314, 7.678056040745847, 7.7178906304599195, 6.514041710666857, 5.516271920606113, 11.217350124424229, 9.506934026815765, 23.153981102910855, 134.5955041227523, 46.02412863275528, 13.948144067321, 57.14943983541218, 89.82545063511361, 8.689292753569019, 33.27615996735022, 35.63185243976052, 69.2407940290165, 22.948587624502792, 30.707135630317435, 14.430921609386912, 25.27416896274604, 31.15667089783021, 20.80856669868359, 62.8556946644179, 13.977326374014172, 8.942248775657546, 18.198522848921375, 13.867126789796384, 5.170231612248528, 23.452937866058942, 52.387108159493145, 32.48603890686702, 31.361415638211135, 49.39238663461972, 73.97701396001582, 33.95101731915368, 8.122212137028654, 55.880561737604054, 5.831197982172365, 5.868379549395365, 6.132539251696594, 10.813443700109564, 15.463150233919162, 27.317263885634343, 16.530458539192697, 58.01306629667002, 7.328955250217951, 8.83323323680104, 41.3535874360381, 14.5026833042337, 89.43717287884195, 45.73185926498337, 20.595661159455524, 10.404408826565769, 26.84727973020795, 67.46693652034722, 5.153843096989404, 21.10053623227879, 7.165734058493912, 9.757056777570398, 66.08329427177472, 5.671272480084325, 17.773604663631836, 9.766670907309171, 15.148963230951468, 162.98140015414782, 11.928697746747115, 28.74700920000079, 101.05037100442402, 89.39318657629133, 13.187344824184727, 6.0314977323610695, 64.16225507776251, 8.107598525210188, 8.987854058368377, 5.949333839107215, 26.35871532947141, 40.25777416184714, 5.435785477640946, 34.5684256685237, 28.130270977005708, 23.707694254576847, 20.151075128414405, 8.520730989366275, 40.8676736560104, 35.05512778704141, 85.04474201295662, 8.144573142942962, 13.19958671899558, 37.8780456838134, 98.02383624256615, 40.21369070506749, 11.655659254859957, 72.38565318361766, 64.46856374453424, 94.82776560234552, 21.319532148948753, 54.90271041592854, 67.43781559305395, 17.348154378412634, 43.650288260408864, 9.32406460838579, 15.940379483597791, 73.94925919476967, 16.384271126462966, 6.0000722465881875, 14.555069025138618, 12.410443040857805, 63.825819338463134, 45.19909898497706, 6.315295397180431, 34.49816343967881, 96.64923031090893, 33.85317898294559, 38.77493429593942, 11.150169781838992, 43.189040325175746, 56.36271646391959, 105.93562158964083, 5.989457028277796, 14.004629925600298, 8.62265757683642, 19.03287754883274, 108.05834825609524, 92.80830663188831, 70.5558090244628, 127.27397884391914, 17.09636949586293, 47.54682996200312, 8.943856468416326, 25.249677347721587, 21.10413169824789, 38.07129570657964, 13.031932114511275, 60.29615794637108, 7.216944692121101, 12.072814206049335, 23.085607307622023, 26.15000232663016, 55.26317943281016, 133.7093076754192, 14.759900148667523, 5.824184451739421, 79.1147324244776, 36.65351255252582, 11.78786765784109, 17.641197688166486, 30.23913813529662, 11.438924686692902, 51.778409741181356, 25.66046487331962, 19.000556016373405, 5.493375203510571, 139.23672619490029, 104.99335388773711, 14.74549293218268, 90.03153481432513, 56.77746930728054, 8.389424669352685, 68.92482630592549, 77.47043682304268, 33.46490183337377, 66.19895984522188, 25.624723785601567, 49.19636171721354, 62.65208578098219, 15.179942256597437, 17.233766502074566, 40.95696779009227, 87.92348139508836, 13.016424573178787, 8.015571159306171, 36.595054285947235, 22.67294906930811, 71.83419635412764, 27.64513034203547, 14.599045625583067, 50.90686215981907, 7.80881990173171, 30.871584067383957, 13.604296930289387, 145.46366057758098, 87.04176141928161, 71.99917544655077, 55.70333965728351, 37.60511676181397, 25.22782008243316, 40.780532134795834, 36.305072199487846, 8.30078217636784, 63.939916939086594, 18.968317821871874, 23.283873932649737, 34.37041377511289, 96.23337242077645, 37.16729403392038, 44.50306811675319, 45.032187787748214, 33.4349222379386, 109.60161388905149, 26.26850412175023, 68.37613192364356, 62.07570421504875, 11.5567407427913, 14.226212249421222, 27.640007597270877, 80.15358691270322, 27.398947682353793, 51.878096122417325, 35.91300340864769, 86.24260793069372, 17.207949428339848, 19.49189628125538, 13.479409381884873, 6.1705765446146215, 41.14919799600331, 16.800656657071272, 24.038554720773167, 55.838533505098, 21.066438444398493, 74.95664688624527, 73.24540394400802, 24.32869625496562, 17.807489606260596, 34.67115845366882, 8.255131875254534, 57.525078061209946, 70.23059454656175, 70.21439027681332, 14.060066087796177, 65.68970369335042, 18.731376489639636, 7.2102427570223755, 71.727178498108, 75.59493206000657, 13.927860863227487, 8.442011904436054, 18.495925853021543, 102.79615196236118, 83.55420745811634, 13.197053387464157, 12.45253044542736, 13.959560887798396, 76.88147873964928, 9.886741418992731, 26.594264347412377, 94.8917365001042, 56.12296138639546, 70.7415364005611, 11.227465700682595, 15.830372225230448, 21.53024791440377, 9.696560670146207, 65.20471144580985, 11.038987464408192, 68.7559326611156, 65.24001464975491, 12.436214677815606, 80.74517107534035, 47.62835014441879, 32.296144742857955, 42.975680480847984, 5.919231161983186, 25.5749408327198, 5.705967955873726, 115.93424788857682, 15.888648101700378, 15.493137570604496, 6.071466749858465, 43.20765006916199, 7.06459935859991, 58.413269745753595, 6.837516982977437, 54.77737930485334, 117.07459187132983, 6.941114085230653, 11.176215729125234, 13.664685844560514, 51.05051317102088, 28.759915692919314, 8.91804252644634, 33.04627058121936, 58.4600243097056, 17.62556404327267, 14.877811831835603, 8.443234665134106, 24.979651601006484, 8.322974550337083, 5.7602370064233845, 57.30899515664613, 29.030838398345132, 65.27472994761797, 26.82818567222651, 74.97377970993827, 15.801728039500848, 24.291843372319597, 13.10133697843818, 58.197729828102666, 17.67783610421461, 16.90959209211741, 15.874343972830218, 12.78259701301912, 6.657799097808926, 8.798259924914321, 29.429528520878627, 36.72409647314858, 43.01641167233351, 18.613360190229027, 10.825398829122445, 9.929913201525382, 12.825575598071781, 86.84919662648922, 13.382392122933036, 37.523033078532556, 12.037905188206276, 5.157351377127541, 11.204554081932097, 180.46635957398203, 10.954292723413545, 49.11834878338134, 81.96575143339594, 52.93479663650518, 12.377377870217776, 7.920132594215448, 7.4393873910605635, 35.50501722794181, 116.66247595560071, 36.498449052135065, 63.27378309678789, 14.405242327529141, 10.214619106086964, 23.41115134687187, 41.51411231154487, 28.93857808358944, 26.154603460011838, 38.570824966560686, 13.844280719935252, 49.29068529014698, 29.602507151746437, 6.719877952556158, 21.279814308826005, 109.60705550460011, 24.284555573934156, 16.10808797282248, 23.953779393837713, 92.76998771829358, 30.81819264278499, 5.626618217945062, 18.86992673505975, 128.15702912970465, 88.83302633929443, 14.571522256625414, 71.70627339392207, 12.110630101512058, 7.900060015148668, 73.08412488829092, 17.206081144309262, 31.470962478186777, 7.94282974531565, 31.105205457816506, 12.899748998391162, 74.06706795261277, 27.753712557513683, 25.95067451245426, 99.45057134331455, 16.160883854219975, 7.780139290569777, 20.737623868580723, 29.19870565002725, 18.60926738615318, 6.2445245750335365, 27.426287418713883, 81.60654019434088, 19.597744747441325, 9.793745297293622, 91.60175015321904, 69.25199445308546, 45.78085888848693, 71.47703194510787, 62.96180473335348, 51.19664440628973, 93.93012690256198, 17.26396782187695, 13.582332409718463, 46.82566760823311, 25.000055835651832, 26.0468508974969, 39.352876804249654, 10.36203677689324, 91.29487360225154, 13.852419260971734, 6.3546456994638145, 18.562513094980723, 53.092296848061984, 15.65709779984499, 9.867966730558726, 6.590776558745178, 71.9494283888126, 38.76601922578387, 19.6373154154253, 26.71156392069873, 10.500558818673527, 10.15534710483323, 29.585605119868465, 46.213002312535934, 5.979940030122842, 23.035428690237786, 111.4572150068178, 5.421935599713886, 22.227764493039945, 34.69830832331165, 59.548988326781846, 23.56055263477693, 20.46498704640544, 54.54971672017497, 19.149420039414096, 24.997318421771833, 98.01397790663192, 10.281332123410568, 26.726673031821228, 16.467709657172986, 87.16887726376673, 11.28195940164632, 7.511333224868771, 99.3340601554236, 12.441752297996734, 6.843906447823716, 16.851720085870742, 8.589218253075053, 83.34593854422738, 89.86718765456756, 9.919943069414693, 8.826812719825918, 6.456314056255383, 5.259725638785315, 40.97964139636665, 35.15129492434815, 6.157752106666367, 57.69103020233657, 65.80361019269726, 95.7835962331614, 22.412380329828935, 58.52789672698978, 20.939007470196376, 25.997274497168753, 35.865504108952784, 37.59796276818661, 10.838464214988873, 56.75131726514654, 64.1917240666282, 43.05730573477425, 15.800331343095415, 15.519375124971397, 54.12249471457576, 17.98014021896834, 26.486107973267625, 62.73884644789402, 94.71233309099412, 7.9020125472836815, 11.221265424788193, 8.313411747426468, 80.49567763465447, 21.498153661857895, 85.84084541678372, 129.08702360810867, 30.722800267592767, 24.53598476903392, 56.25224819068706, 89.97223181027256, 20.389013892529185, 45.58132544563237, 59.98095552039328, 14.197338705184421, 62.70342743982113, 23.63558884356649, 72.28658384983751, 58.6855698871619, 13.318609940003055, 8.032758797563421, 56.87480683681045, 31.24037049428282, 68.27402027363081, 63.70024228619396, 28.87233551791537, 18.01535087571923, 19.13039262336812, 10.1291005039772, 10.855839335716244, 13.500401581971271, 13.90757951864131, 45.74375281428284, 13.845150348024182, 48.74521708491783, 61.28992458377873, 9.090258481443115, 10.894773156797077, 72.67934845716825, 76.58480689080649, 15.465115572430072, 9.077876032693757, 65.27318201461786, 19.364904155618362, 144.50451537159407, 30.79089040237222, 12.533895927821703, 60.8673024409936, 29.222286691737366, 68.41781439210583, 57.64964988725032, 71.24628966655993, 85.72797531163556, 32.85042326678894, 19.558471934067175, 8.107030630571229, 37.43949401608624, 124.28872402633992, 12.034358026244378, 8.119983415158117, 17.223884460783005, 45.03642594427974, 5.4044607045665725, 35.67753327652664, 64.92927811150655, 11.831811527145764, 45.252458508569674, 51.11965067160443, 16.082192710008908, 83.2895647551614, 7.167400991768096, 32.99866503843761, 42.02900719815628, 68.51216154429417, 20.393090407903784, 28.206821604496103, 40.59107022193571, 8.391311228058948, 31.583851583959948, 39.36738112969781, 34.27020087318171, 25.326488881282717, 10.107120964426132, 11.408137454192913, 159.26735832121489, 17.40671938254708, 60.76059863702193, 13.460248808439097, 8.496206863112302, 15.942569042873425, 141.25151777636123, 36.35810502534788, 86.8175167781222, 71.92825039120979, 19.055254793688416, 7.399734349412257, 8.28805294056416, 38.11134391584593, 6.0825723596861145, 85.58415328028984, 10.587078199021304, 14.160169461893974, 19.241264497216328, 14.899487852251296, 41.65644880824964, 18.752004545882095, 43.584575816575786, 10.856134824713426, 17.730030099245518, 11.961815998546411, 17.40942443376605, 7.75329831616737, 19.76445559179887, 38.03298853711607, 12.715985648424171, 27.570764285242532, 74.54912964149428, 33.63809280511317, 37.15654614587978, 53.25793748012183, 61.02702294284236, 7.151267746885671, 13.359667145428736, 32.04807486675588, 17.414765402791993, 11.086723088977406, 112.63793002374494, 18.306632179995383, 68.32677617839295, 16.827156726329004, 13.658907528346067, 45.51686690666733, 8.651329574317128, 13.689355267414134, 75.24536068902906, 27.61284512214966, 114.25011766488879, 24.902426582932577, 45.21103965657119, 17.583618770928616, 70.93198911133248, 63.36148840229533, 47.727624437134956, 27.50173789490918, 28.45873436547393, 18.054787487164727, 6.136017906752474, 31.06259257353466, 69.09718406186684, 60.06356736150458, 92.08446233405195, 25.32436972584457, 34.1952371259607, 57.44408819481689, 23.627524206948124, 23.714838641978, 7.7777743227890195, 13.31790928941386, 18.42060586382113, 44.398012804803116, 10.339099087982358, 122.95591266152357, 53.37751690915484, 22.084298368483882, 53.24696591058287, 17.206969971241264, 32.49726208256763, 34.573332747141045, 109.35473880267048, 16.31526231649831, 57.43340611315162, 13.22995035750946, 31.004353510124854, 6.129118342692217, 69.78554059879023, 78.28129431846374, 104.7977631152165, 26.34051835191846, 22.17414532908335, 39.332902466538265, 30.488319227177232, 6.9779494869691305, 13.77203735410684, 16.470266391843456, 10.441517028833339, 23.017777005805904, 10.560601762916987, 84.40746496690882, 21.755650011157805, 20.898653339755395, 15.656165533361271, 21.53679505620013, 5.486712460607875, 35.538280530194804, 5.76560841706106, 25.11207084961337, 15.323934871485697, 16.368947184823558, 38.81335570859558, 17.141143025055136, 11.547467736753656, 21.118101673844514, 8.620452983302204, 15.42187529812675, 8.060131230713635, 35.72349316091117, 43.72329001188888, 24.194665816123376, 13.136924503596449, 6.285535038687943, 8.332850422019188, 39.23187891813414, 20.208821410257073, 13.93724105732761, 27.919187083120384, 7.10220569949558, 66.11174456212811, 30.408584955877753, 23.07560787573189, 5.642270033971371, 8.303776732135173, 77.39687081422974, 40.08546236806364, 5.532596209311074, 88.6121043429071, 7.8703460257303055, 77.39284856355236, 6.698901813924749, 8.808200760165832, 68.0186862305669, 60.28504929272765, 62.385828789609434, 11.439430646073687, 61.91641313857363, 6.051316940736755, 6.553595491987867, 14.544425189997254, 9.829191008230165, 28.871932657222946, 14.767104684774912, 9.472435389020582, 13.770255895841627, 20.36444851817196, 49.078548834329055, 35.586137419553246, 11.390752991720692, 9.28413143177634, 35.809891781622106, 21.345353068157987, 8.509450021475683, 77.43880043547257, 11.448466955839729, 63.79645343520495, 23.182551629195792, 21.364621250232215, 14.750582958870913, 11.286084934317806, 15.037593792109071, 105.97446784353559, 23.630851748815573, 7.221603146527441, 17.76554629443609, 31.311892928356407, 37.765671104066485, 8.694495483216858, 57.7489195747286, 92.82435632153334, 5.343096735361452, 16.32436922142292, 15.26916741392611, 31.196507727675908, 10.796414269669068, 9.348936957562708, 20.640444095595367, 56.57320400575333, 15.188229072963228, 55.87728995681246, 48.940998986368946, 10.585747382754182, 6.128398684462652, 13.508508416842332, 104.81333975938075, 19.807935014622203, ...])
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);
([5693966.576729372, 5711855.517602496, 5756509.048982791, 6038970.406516704, 8193601.5625, 8299505.881349147, 8299591.046681513, 8299674.96190397, 8299723.968444661, 8300324.662278611, 8300370.195787429, 8304203.390321785, 8314488.9119001785, 8391835.714874037, 8406987.279900331, 8424596.681157658, 8433721.464762932, 8446257.412197335, 8447895.114048135, 8458621.875, 8459647.154188853, 8461429.6875, 8468305.821044067, 8477035.490661083, 8478329.952172657, 8479440.625, 8482034.375, 8489348.4375, 8490632.8125, 8510416.470363885, 8518015.625, 8522036.327209597, 8522932.770396192, 8523163.254315332, 8523457.902759941, 8523559.326412493, 8523779.6875, 8523812.693711648, 8523875.879921917, 8523877.505900413, 8523956.25, 8524186.204318507, 8524296.827513685, 8524524.87097086, 8524754.987975828, 8524808.827352304, 8524904.719478313, 8524948.299007831, 8525690.436621223, 8525901.315641323, 8526111.415263847, 8526470.3125, 8527136.708009526, 8527623.4375, 8527669.502754368, 8527740.576001376, 8527776.274427177, 8528031.222414337, 8528329.391046412, 8549303.125, 8566442.53704641, 8566723.36592782, 8570410.90089778, 8572203.717622915, 8573624.922365472, 8574114.0625, 8577035.9375, 8589731.40879698, 8602999.912935335, 8618770.164835762, 8621992.711106122, 8636029.6875, 8636395.3125, 8636617.1875, 8650660.02454006, 8672555.402223712, 8674602.087049251, 8697437.5, 8698245.547274187, 8701079.50420487, 8704792.1875, 8717862.91294355, 8726640.625, 8727901.814019714, 8728875.0, 8729041.13619525, 8729165.521078205, 8729440.625, 8729621.875, 8729698.584399186, 8729725.982412841, 8729818.75, 8729828.125, 8729893.75, 8729895.277756922, 8729953.751256559, 8730003.027662357, 8730205.609678172, 8730272.298148999, 8730296.719317308, 8730424.106135255, 8730512.47634813, 8730533.393020192, 8730711.70376513, 8730913.306884946, 8730975.0, 8730984.375, 8731007.53316188, 8731077.732160565, 8731086.866020428, 8731089.762969207, 8731152.946893727, 8731189.0625, 8731359.294453507, 8731398.293877894, 8731426.312059417, 8731575.045221942, 8731785.829921465, 8732177.67952238, 8732228.125, 8732237.346938446, 8732370.3125, 8732671.625231285, 8732878.125, 8732992.66464521, 8733042.1875, 8733845.261146614, 8733941.08757258, 8734057.8125, 8734064.970220841, 8734266.869695472, 8734273.162412675, 8734279.475981362, 8734476.434714388, 8734491.654266525, 8734830.319843974, 8734833.940857846, 8735339.0625, 8735469.47235229, 8735504.6875, 8735510.57346196, 8735741.778293366, 8735786.632662727, 8735807.158400923, 8736047.821111344, 8736059.282067668, 8736221.875, 8737707.8125, 8737947.364213875, 8738263.893163688, 8738369.878514906, 8738553.038153568, 8747173.275188092, 8748793.832251264, 8749094.89665928, 8750001.6833457, 8750523.321801238, 8750530.151512152, 8751379.166916091, 8752264.517569086, 8752422.816081699, 8764661.155557603, 8764831.25, 8764934.056462271, 8765207.8125, 8765481.709371546, 8765495.257789724, 8765523.037262047, 8765827.087696066, 8765831.25, 8765868.75, 8765870.60498722, 8765886.596160527, 8765925.0, 8765927.205392433, 8766015.24153599, 8766090.71995625, 8766107.334022928, 8766145.13624792, 8766208.971418675, 8766239.330175778, 8766274.628520919, 8766504.6875, 8766539.0625, 8766552.037547834, 8766570.3125, 8766680.98674149, 8767012.5, 8767131.155275567, 8767172.888055656, 8767307.217873763, 8767421.605858674, 8767490.588977115, 8767504.6875, 8767517.455115667, 8767852.796315059, 8767950.0, 8768324.328549433, 8768332.955655213, 8768389.157881627, 8768553.564065149, 8768663.4856837, 8768907.515771203, 8769002.613618506, 8769184.375, 8769713.659527306, 8770092.1875, 8770237.918231577, 8770479.346601162, 8770540.625, 8770847.36702888, 8771075.469535822, 8771142.1875, 8771255.030569421, 8771295.17922939, 8771697.707068685, 8771953.125, 8771968.752133505, 8771980.142930303, 8772230.910412159, 8772668.99655966, 8772672.067151055, 8772706.416934414, 8773544.577043576, 8774070.25119079, 8775266.47349532, 8776118.347527431, 8798751.764898341, 8801767.778990189, 8801802.49399143, 8802040.28643789, 8802100.0, 8802139.62875339, 8802568.75, 8802715.9422874, 8802945.596838495, 8803993.75, 8805291.183087261, 8805371.875, 8806149.367095461, 8807202.258183448, 8819196.875, 8830425.961543644, 8832297.71052863, 8842463.251691505, 8847883.2578902, 8856290.46349935, 8856708.521029755, 8856909.139309974, 8856920.45953993, 8863663.204338688, 8867240.625, 8867442.210858606, 8867567.1875, 8867907.001096204, 8869529.6875, 8871146.187221475, 8873738.214931052, 8873792.651550865, 8874535.656799125, 8876159.577230208, 8876479.9937504, 8876757.982295588, 8876826.211233458, 8876834.43160386, 8877053.325544747, 8877121.52680021, 8877175.0, 8877217.1875, 8877292.46058141, 8877466.176788459, 8877503.125, 8877527.253585737, 8877623.573806925, 8877650.0, 8877927.313630234, 8878293.868964612, 8878440.3925356, 8880402.984265594, 8882044.617761167, 8882125.0, 8884521.977515563, 8884846.73283343, 8885640.831365557, 8885860.438379634, 8886770.966240847, 8886988.74884769, 8888715.832888398, 8888787.892367974, 8888887.5, 8889214.0625, 8889268.4708464, 8889336.648776956, 8889731.25, 8890076.5625, 8891701.238188675, 8891719.383712837, 8892301.792518457, 8892444.4591041, 8892453.541770982, 8892674.789189124, 8892808.76923302, 8892828.060878038, 8894265.98755796, 8894506.837947635, 8895135.109643403, 8896694.65806923, 8896712.5, 8896873.317399215, 8896977.9578261, 8897171.875, 8897175.674101079, 8897329.169598224, 8897387.165350027, 8897397.464133307, 8897883.873449337, 8897979.1472258, 8898179.853321144, 8898316.088871522, 8898809.375, 8898846.302603442, 8898917.773928028, 8898967.661009053, 8899404.740883665, 8899466.296242403, 8899684.833385654, 8899706.25, 8899769.303252516, 8899784.872869754, 8899940.073562661, 8900021.312534519, 8900259.375, 8900273.082985895, 8900349.563692035, 8900643.863304073, 8900713.51469877, 8900720.259268707, 8900736.880373921, 8900980.387049297, 8900996.854750758, 8901066.884122485, 8901235.291552061, 8901339.480509812, 8901352.287776917, 8901357.8125, 8901464.0625, 8901484.096454725, 8901704.680763554, 8901931.806696018, 8901981.25, 8902168.75, 8902211.250903817, 8902368.75, 8902590.625, 8902632.8125, 8902633.794936841, 8902673.479770739, 8902834.375, 8902844.26462626, 8902865.625, 8902884.366308251, 8903084.61450674, 8903087.5, 8903203.491906663, 8903242.858727138, 8903267.082278673, 8903275.690276382, 8903324.874633672, 8903455.554682879, 8903542.558934316, 8903582.8125, 8903803.125, 8903808.716300454, 8903846.875, 8903881.712843869, 8904021.875, 8904217.1875, 8904526.5625, 8904558.369834602, 8904826.292879874, 8904955.273201486, 8905367.962088695, 8905389.0625, 8905479.073446454, 8905578.125, 8905862.50753306, 8905981.719878096, 8906276.5625, 8906283.878115062, 8906364.750766223, 8906540.229686854, 8906609.375, 8906611.888978453, 8907370.3125, 8909342.538728788, 8909458.343284357, 8909462.14608181, 8909585.804670231, 8909668.697556738, 8909752.838547783, 8910003.076522518, 8910004.824464481, 8910404.315150732, 8910448.390565112, 8910583.19743249, 8910631.814574338, 8910642.362331936, 8910717.377883084, 8910719.606111906, 8910737.957048, 8910747.406851763, 8910758.528817056, 8910804.6875, 8910846.579046894, 8910871.822604338, 8910876.5625, 8910934.250100339, 8910936.127050666, 8910968.75, 8910983.847196616, 8911003.125, 8911018.75, 8911024.549875062, 8911054.6875, 8911056.25, 8911075.061180148, 8911080.182013385, 8911162.5, 8911174.35016536, 8911213.44541589, 8911232.26227484, 8911276.29410625, 8911343.6978208, 8911406.25, 8911432.66920971, 8911443.657152347, 8911490.625, 8911517.72225273, 8911551.215427263, 8911602.723546974, 8911607.721028745, 8911670.3125, 8911703.125, 8911715.625, 8911776.5625, 8911793.602425212, 8911803.125, 8911915.449321294, 8911934.40176533, 8911982.8125, 8911990.809508966, 8911996.537550038, 8912020.3125, 8912025.975813262, 8912061.183961952, 8912100.0, 8912173.4375, 8912180.716607766, 8912230.863996902, 8912234.249479078, 8912243.75, 8912248.707822073, 8912250.258172832, 8912270.111260131, 8912292.141160829, 8912345.3125, 8912353.31698459, 8912354.48496719, 8912354.6875, 8912355.481115652, 8912383.302424511, 8912389.897899149, 8912404.242557986, 8912405.444954643, 8912415.915287042, 8912442.602514382, 8912443.975877412, 8912487.5, 8912507.268638402, 8912517.81407478, 8912537.5, 8912579.362678422, 8912587.611100651, 8912621.624833321, 8912673.377559042, 8912676.5625, 8912678.125, 8912759.375, 8912793.827531016, 8912815.625, 8912833.943799252, 8912842.514840282, 8912848.244525924, 8912850.0, 8912851.745162154, 8912862.782801205, 8912871.010950169, 8912884.53967868, 8912901.5625, 8912913.514715496, 8912917.248134313, 8912940.341086188, 8912948.4375, 8912975.591059536, 8912986.354401534, 8912995.562914867, 8913026.472190317, 8913028.859757554, 8913042.250398716, 8913043.965169284, 8913051.066215834, 8913058.214934958, 8913071.875, 8913078.067488817, 8913087.5, 8913111.020567881, 8913138.201904412, 8913151.5625, 8913170.3125, 8913232.8125, 8913245.751386173, 8913254.452887177, 8913274.249802766, 8913315.612578971, 8913317.1875, 8913320.183849968, 8913329.825070357, 8913335.776025705, 8913340.625, 8913345.09171743, 8913358.42595175, 8913384.734745484, 8913385.9375, 8913387.5, 8913402.391468333, 8913459.405814404, 8913499.619158244, 8913514.0625, 8913514.538258443, 8913576.029532237, 8913592.828332525, 8913593.75, 8913600.56196527, 8913610.920687208, 8913619.03494106, 8913630.46126563, 8913639.130699286, 8913649.246240009, 8913667.1875, 8913670.844552293, 8913693.640461178, 8913695.220457764, 8913703.43117582, 8913739.972447507, 8913771.873616287, 8913785.35334893, 8913865.253011268, 8913905.258164894, 8913908.24802545, 8913908.571746342, 8913974.288804123, 8913982.25890505, 8913988.356636144, 8914040.885964695, 8914045.196345156, 8914059.293875739, 8914075.715591393, 8914129.485082362, 8914163.132091746, 8914165.377975194, 8914179.388733396, 8914182.332945393, 8914195.3125, 8914216.138496049, 8914241.840201233, 8914285.986114407, 8914286.418137265, 8914299.886147885, 8914315.625, 8914454.6555649, 8914456.439110106, 8914517.862748384, 8914578.923692204, 8914590.148056855, 8914615.625, 8914673.4375, 8914743.75, 8914769.691984622, 8914812.351810584, 8914901.705053953, 8914912.172941403, 8915054.6875, 8915254.971697642, 8915425.56873794, 8915539.0625, 8915604.842691105, 8915698.4375, 8915737.5, 8915846.652465863, 8915858.837048415, 8915886.041146168, 8916110.062803501, 8916148.7132344, 8916179.78552855, 8916245.434218852, 8916360.9375, 8916434.600072248, 8916482.002077244, 8916528.063839722, 8916675.0, 8917099.89942056, 8917292.1875, 8919013.04933707, 8919521.064815607, 8924706.25, 8925347.062741267, 8926134.253722318, 8929186.788010826, 8929530.801730929, 8930785.274098322, 8934204.6875, 8934521.83480907, 8937257.667195493, 8937268.75, 8937331.53692646, 8937455.151482062, 8937516.608278649, 8937682.8125, 8937767.902498733, 8937790.443405002, 8937886.210502166, 8937910.9375, 8938010.223902851, 8938016.125466885, 8938024.152525902, 8938045.3125, 8938057.8125, 8938062.022451067, 8938079.6875, 8938169.802366106, 8938223.426236192, 8938235.314685337, 8938235.528483517, 8938237.5, 8938245.104391087, 8938246.735743197, 8938267.1875, 8938272.88540344, 8938404.6875, 8938460.619062612, 8938524.099654324, 8938540.238412153, 8938570.77531353, 8938593.925875667, 8938639.63551548, 8938792.818511546, 8938840.625, 8938863.453656895, 8939010.703022016, 8939345.21361989, 8939683.932948785, 8939688.336462865, 8939693.187437894, 8940175.972050639, 8940203.578974308, 8940309.016858546, 8940403.125, 8940408.412946612, 8940429.258122504, 8940434.559651822, 8940506.25, 8941023.122463489, 8941058.765366768, 8941113.392059786, 8941263.290385114, 8941346.666701889, 8941392.1875, 8941421.256425394, 8941435.839509798, 8941454.042872768, 8941693.75, 8941764.15899433, 8941945.051042292, 8941992.1875, 8942163.204393307, 8942222.26480721, 8942253.549673393, 8942403.656572394, 8942556.25, 8942664.0625, 8942861.560172075, 8942866.523687012, 8942929.488314964, 8943023.950224672, 8943034.504745811, 8943304.6875, 8943502.206681695, 8943515.625, 8943578.104740694, 8943607.8125, 8943677.140403537, 8943690.452930132, 8943718.19260107, 8943829.545132471, 8943863.744294569, 8943891.789296443, 8943918.89364948, 8943945.3125, 8944303.125, 8944835.9375, 8944836.10848006, 8944839.206275612, 8944853.764118837, 8944876.602504348, 8944948.325196596, 8944995.3125, 8945190.036378216, 8945197.63184975, 8946039.121542519, 8946079.737901889, 8946312.538653722, 8946424.500506433, 8946424.711419646, 8952547.129024059, 8953059.375, 8953631.944762204, 8954082.8125, 8954430.839715455, 8956096.256708134, 8956638.233126396, 8957276.5625, 8957825.963415064, 8958040.625, 8962173.128431315, 8966137.5, 8967184.375, 8968163.559782624, 8968935.424567195, 8969143.34022867, 8970325.999486577, 8970773.4375, 8971135.9375, 8971711.45572996, 8975047.500236727, 8977490.266867299, 8978385.188486729, 8978495.131314497, 8980633.937450875, 8981205.949433088, 8981713.04170028, 8988407.491692215, 8989989.3409923, 8991457.8125, 8991505.950342922, 8991677.97068343, 8992082.8125, 8992107.15811934, 8992178.255910765, 8992202.809133202, 8992548.4375, 8995347.693947017, 8997275.0, 9000979.6875, 9001644.495313954, 9001750.849638464, 9001885.414782222, 9002340.625, 9002869.975988695, 9007410.284662008, 9009391.251378145, 9009725.0, 9010615.063512532, 9012771.519307468, 9012902.205727797, 9015258.56046403, 9015567.699230582, 9015571.546097526, 9016681.79063763, 9016707.038761381, 9016909.53072232, 9016917.1875, 9017539.0625, 9018572.283148687, 9019512.5, 9019546.875, 9019551.832708154, 9019924.666948704, 9020284.546961877, 9020435.365564825, 9020481.25, 9021073.4375, 9022532.540088678, 9023223.421227755, 9023346.304645061, 9023804.880437842, 9024245.182786323, 9024307.8125, 9024412.22976469, 9025046.689098822, 9025402.35658516, 9027809.547296284, 9032047.895640712, 9032866.149787512, 9034539.379583871, 9035582.360780451, 9036716.001435736, 9038414.302486464, 9039164.0625, 9043917.037557784, 9043929.085699476, 9044217.1875, 9045104.051775632, 9050102.524965126, 9058895.315289367, 9063110.9375, 9066848.384184428, 9067887.5, 9069165.249207355, 9070554.466202028, 9071374.240159862, 9072615.61393129, 9075743.75, 9075749.172969032, 9077715.625, 9078477.944019627, 9079545.574449157, 9080191.1002652, 9081072.40025465, 9081334.771674586, 9081646.598169813, 9081931.08713961, 9082113.323532905, 9082114.012387233, 9083281.25, 9083340.625, 9085316.830423595, 9085440.719474558, 9086618.75, 9087693.862223975, 9087963.574730273, 9088013.75101018, 9088098.963676417, 9088182.786120702, 9088282.8125, 9088544.420213403, 9088887.78932635, 9088895.732536918, 9089110.554697607, 9089231.25, 9089322.506445508, 9089859.002501562, 9091918.75, 9093641.476973247, 9094560.9375, 9094570.09761227, 9094801.5625, 9094984.92993468, 9095312.5, 9095834.375, 9096720.3125, 9097714.008603003, 9097716.466322035, 9098435.006437914, 9101919.198526107, 9102104.278155314, 9102416.6795969, 9104297.797332931, 9106010.9375, 9107843.56395688, 9108354.578914363, 9108704.6875, 9108762.727119872, 9108943.473634822, 9108972.333093757, 9108985.434526354, 9109036.993713025, 9109142.911965832, 9109583.804191032, 9110345.3125, 9110436.323639689, 9110448.29400164, 9110669.926613286, 9110808.302250054, 9111164.0625, 9113195.469442343, 9113881.25, 9114104.00088642, 9114248.78782307, 9114697.902033644, 9114806.25, 9115036.322922813, 9115219.33609346, 9115338.463117186, 9116775.75764056, 9116901.441382252, 9116960.503164943, 9116990.625, 9116995.356367944, 9117010.361937525, 9117062.1551469, 9117069.100554034, 9117201.07415515, 9117237.153551375, 9117279.291626679, 9117326.259784777, 9117372.130446725, 9117372.368114127, 9117425.389586044, 9117727.629369073, 9117813.068600034, 9117839.0625, 9117914.949124817, 9118042.429837538, 9118076.659341648, 9118122.20507705, 9118180.299837414, 9118251.287659409, 9118270.565417584, 9118381.644869002, 9118441.207158873, 9118576.683068398, 9118637.045747003, 9118660.335825507, 9118736.799658136, 9118764.783631267, 9118900.991962463, 9118909.518768953, 9119015.711489936, 9119078.92249654, 9119082.17334022, 9119099.708957748, 9119110.906150665, 9119167.113775682, 9119290.625, 9119341.293954263, 9119415.270242017, 9119447.374179572, 9119473.469883326, 9119479.088242192, 9119493.75, 9119517.17751655, 9119522.48755112, 9119541.307695882, 9119543.75, 9119544.980048234, 9119553.996337352, 9119555.874154765, 9119568.578239547, 9119592.1875, 9119623.256821215, 9119623.4375, 9119640.263707984, 9119642.599020885, 9119690.516767796, 9119692.722858287, 9119718.75, 9119745.46774973, 9119753.287212208, 9119768.404556364, 9119790.003890865, 9119797.064369032, 9119821.875, 9119842.349513566, 9119854.631059786, 9119878.449823301, 9119886.985060392, 9119887.898946647, 9119900.0, 9119923.633457161, 9119956.25, 9119957.920487836, 9119977.612023413, 9120012.448989859, 9120017.286516286, 9120029.739130767, 9120044.664831677, 9120070.003055934, 9120075.367768092, 9120133.397610314, 9120137.5, 9120142.1875, 9120147.57417828, 9120148.4375, 9120153.744053794, 9120159.409251733, 9120181.570958033, 9120192.270888528, 9120192.339819642, 9120201.339679774, 9120209.395663848, 9120211.910055172, 9120221.875, 9120223.500758143, 9120224.694874207, 9120231.25, 9120233.998202078, 9120241.003812846, 9120248.002796827, 9120259.375, 9120263.375170287, ...], [86.32629304811815, 12.731648254088693, 93.4792909028595, 8.336928656591418, 80.64134233877282, 5.787197672772443, 11.857666547240754, 119.92149803608154, 10.279313306626658, 5.035898261767191, 63.51717614667029, 22.33847496380285, 21.909836843273272, 63.02744854287985, 24.827988759211802, 28.97815686128202, 115.37900554358353, 77.98152312105383, 6.456425727195389, 41.14655292599896, 5.834930750689552, 54.03514798105648, 57.648825044114, 50.898185625560615, 16.05636806157924, 76.96251746055255, 38.237357801354385, 39.81182641431049, 84.50394230591186, 67.26599837461765, 64.04144112253668, 16.668834972373386, 9.296053973421195, 5.570845136969469, 15.297072452918997, 14.75949504234891, 124.26243201293164, 5.348603580337416, 33.7893572009137, 57.17602246745483, 38.77859819660975, 16.06636556043924, 64.67229029253171, 35.456609380213735, 11.632263090059922, 85.54426137957516, 26.282109564472982, 10.917921501126733, 51.58503545392037, 93.88948633880315, 86.10665550977603, 49.784590336768666, 19.00307966127016, 76.36692509719293, 6.923707366093429, 14.757981602913233, 56.2421189056851, 7.593290798513048, 82.2027702525541, 37.92684673082977, 11.72187093397409, 69.11013161231939, 69.34279242767705, 17.811618973348853, 11.008489228130381, 41.26019255535498, 105.2008061944304, 5.716939355461981, 10.994292548546346, 10.904484493412433, 12.058281372274296, 47.028783943632, 74.08899170772902, 47.27811549447343, 12.321436983289825, 32.50529660072973, 5.853839403506904, 54.967702167978125, 19.76675881139795, 14.286053750846964, 60.3654626977064, 5.356273709851804, 87.93188753875117, 21.1161075558296, 56.99025060632623, 56.447685649364374, 8.232375802302359, 71.41802780246621, 101.31151353400386, 8.365818386760933, 35.91016493625514, 62.1467947306359, 77.48328713794996, 28.55327069025285, 8.268289663551158, 26.906774285583303, 26.73776534057085, 12.957493224800231, 16.843633413352546, 70.36658008601907, 8.674924061608195, 192.44815382618987, 34.02550959637559, 46.43678816051242, 7.9237020766794375, 41.17072529349949, 72.83652495347239, 52.88735901043214, 5.785474267275609, 20.253173505360163, 10.003367811591053, 25.443525742378178, 34.03903672406221, 14.643141306143068, 18.48442880918751, 14.065771898756516, 5.817333897163053, 24.035432780926428, 19.576006037269064, 52.98255195608986, 145.9931741213168, 39.5851101585007, 36.9798942187466, 96.70798106941533, 11.965522535498572, 55.45847032529733, 7.108017529483708, 11.936885785551416, 90.97441904918135, 10.238282323423954, 71.76716369503775, 24.074269585564142, 24.950833033454646, 50.17084841593537, 13.23593968352853, 33.95583182334439, 29.288978595494456, 40.72721222015031, 65.99695562809237, 82.84131772294577, 43.13077972169293, 9.00781121919189, 6.601880231765513, 25.352200328285633, 20.405651730858267, 26.812936058286162, 51.82889199799007, 37.29838231190133, 68.36445196026264, 25.57677269135911, 8.989557914782782, 24.188899935707653, 25.684717983698697, 9.401933283849893, 13.562603760786443, 5.294834748825472, 63.752195800929805, 6.859818959758111, 10.401063769233819, 17.01517586792489, 73.961172959502, 11.486554433433172, 51.71701763552106, 44.93791941305054, 34.20285571458529, 75.76277751970558, 27.486956749176528, 7.0200710824619605, 17.40908513766856, 32.72054982524623, 55.72259657717137, 16.187291915861245, 29.653563516508374, 45.75293191716801, 5.1444839052194276, 10.576936932989014, 5.537706884539399, 31.560344544443424, 5.454252115165973, 45.31022674263407, 5.724008047461137, 47.82160305225335, 60.12704177133894, 33.51581707075953, 8.554851479816266, 36.717777080293956, 8.152101128848225, 36.373827543006264, 26.78229546686368, 74.17915427363846, 20.598379770780873, 10.731560672574124, 44.739016749013715, 30.89427951055401, 11.573462901980403, 6.0545730543030185, 58.25312036269033, 130.7668307782747, 21.434600717819336, 62.586211878002075, 16.928584578508673, 20.759578518940998, 74.15850542853102, 7.4281902909829824, 39.30963609642622, 52.34891838716345, 53.523510991898064, 8.520862582224797, 13.783983475769876, 104.11086275072316, 11.994994124426796, 87.73497094022855, 46.41770214306948, 27.904812217539536, 26.142895679247367, 31.214372102598137, 37.09432415147896, 8.287705881447437, 17.75451640011653, 9.059871579791308, 5.472449613526861, 6.291784394986265, 11.399061737931794, 12.724348186256396, 48.887320602375866, 7.941941557843275, 95.94788881052561, 15.77347680869734, 8.62626481405186, 58.493149052199286, 10.636767471580342, 99.64512263465662, 84.60299720784366, 31.73891037930189, 14.649214838359756, 13.539991062657377, 33.81733182997703, 17.602394626349167, 66.68507026279705, 6.392252846171324, 18.477151912583565, 39.275771279793695, 38.24730678610748, 14.315578882230891, 12.548445703200837, 21.57965982960278, 10.884317757765395, 6.913713039586009, 6.237872901558678, 6.793221340609293, 16.59435538394915, 42.60887378341531, 5.1659059478396, 30.148839931421232, 39.0250946822341, 30.154785773676938, 19.804295050565006, 7.884042291985602, 23.675615183793294, 13.969654864563314, 7.678056040745847, 7.7178906304599195, 6.514041710666857, 5.516271920606113, 11.217350124424229, 9.506934026815765, 23.153981102910855, 134.5955041227523, 46.02412863275528, 13.948144067321, 57.14943983541218, 89.82545063511361, 8.689292753569019, 33.27615996735022, 35.63185243976052, 69.2407940290165, 22.948587624502792, 30.707135630317435, 14.430921609386912, 25.27416896274604, 31.15667089783021, 20.80856669868359, 62.8556946644179, 13.977326374014172, 8.942248775657546, 18.198522848921375, 13.867126789796384, 5.170231612248528, 23.452937866058942, 52.387108159493145, 32.48603890686702, 31.361415638211135, 49.39238663461972, 73.97701396001582, 33.95101731915368, 8.122212137028654, 55.880561737604054, 5.831197982172365, 5.868379549395365, 6.132539251696594, 10.813443700109564, 15.463150233919162, 27.317263885634343, 16.530458539192697, 58.01306629667002, 7.328955250217951, 8.83323323680104, 41.3535874360381, 14.5026833042337, 89.43717287884195, 45.73185926498337, 20.595661159455524, 10.404408826565769, 26.84727973020795, 67.46693652034722, 5.153843096989404, 21.10053623227879, 7.165734058493912, 9.757056777570398, 66.08329427177472, 5.671272480084325, 17.773604663631836, 9.766670907309171, 15.148963230951468, 162.98140015414782, 11.928697746747115, 28.74700920000079, 101.05037100442402, 89.39318657629133, 13.187344824184727, 6.0314977323610695, 64.16225507776251, 8.107598525210188, 8.987854058368377, 5.949333839107215, 26.35871532947141, 40.25777416184714, 5.435785477640946, 34.5684256685237, 28.130270977005708, 23.707694254576847, 20.151075128414405, 8.520730989366275, 40.8676736560104, 35.05512778704141, 85.04474201295662, 8.144573142942962, 13.19958671899558, 37.8780456838134, 98.02383624256615, 40.21369070506749, 11.655659254859957, 72.38565318361766, 64.46856374453424, 94.82776560234552, 21.319532148948753, 54.90271041592854, 67.43781559305395, 17.348154378412634, 43.650288260408864, 9.32406460838579, 15.940379483597791, 73.94925919476967, 16.384271126462966, 6.0000722465881875, 14.555069025138618, 12.410443040857805, 63.825819338463134, 45.19909898497706, 6.315295397180431, 34.49816343967881, 96.64923031090893, 33.85317898294559, 38.77493429593942, 11.150169781838992, 43.189040325175746, 56.36271646391959, 105.93562158964083, 5.989457028277796, 14.004629925600298, 8.62265757683642, 19.03287754883274, 108.05834825609524, 92.80830663188831, 70.5558090244628, 127.27397884391914, 17.09636949586293, 47.54682996200312, 8.943856468416326, 25.249677347721587, 21.10413169824789, 38.07129570657964, 13.031932114511275, 60.29615794637108, 7.216944692121101, 12.072814206049335, 23.085607307622023, 26.15000232663016, 55.26317943281016, 133.7093076754192, 14.759900148667523, 5.824184451739421, 79.1147324244776, 36.65351255252582, 11.78786765784109, 17.641197688166486, 30.23913813529662, 11.438924686692902, 51.778409741181356, 25.66046487331962, 19.000556016373405, 5.493375203510571, 139.23672619490029, 104.99335388773711, 14.74549293218268, 90.03153481432513, 56.77746930728054, 8.389424669352685, 68.92482630592549, 77.47043682304268, 33.46490183337377, 66.19895984522188, 25.624723785601567, 49.19636171721354, 62.65208578098219, 15.179942256597437, 17.233766502074566, 40.95696779009227, 87.92348139508836, 13.016424573178787, 8.015571159306171, 36.595054285947235, 22.67294906930811, 71.83419635412764, 27.64513034203547, 14.599045625583067, 50.90686215981907, 7.80881990173171, 30.871584067383957, 13.604296930289387, 145.46366057758098, 87.04176141928161, 71.99917544655077, 55.70333965728351, 37.60511676181397, 25.22782008243316, 40.780532134795834, 36.305072199487846, 8.30078217636784, 63.939916939086594, 18.968317821871874, 23.283873932649737, 34.37041377511289, 96.23337242077645, 37.16729403392038, 44.50306811675319, 45.032187787748214, 33.4349222379386, 109.60161388905149, 26.26850412175023, 68.37613192364356, 62.07570421504875, 11.5567407427913, 14.226212249421222, 27.640007597270877, 80.15358691270322, 27.398947682353793, 51.878096122417325, 35.91300340864769, 86.24260793069372, 17.207949428339848, 19.49189628125538, 13.479409381884873, 6.1705765446146215, 41.14919799600331, 16.800656657071272, 24.038554720773167, 55.838533505098, 21.066438444398493, 74.95664688624527, 73.24540394400802, 24.32869625496562, 17.807489606260596, 34.67115845366882, 8.255131875254534, 57.525078061209946, 70.23059454656175, 70.21439027681332, 14.060066087796177, 65.68970369335042, 18.731376489639636, 7.2102427570223755, 71.727178498108, 75.59493206000657, 13.927860863227487, 8.442011904436054, 18.495925853021543, 102.79615196236118, 83.55420745811634, 13.197053387464157, 12.45253044542736, 13.959560887798396, 76.88147873964928, 9.886741418992731, 26.594264347412377, 94.8917365001042, 56.12296138639546, 70.7415364005611, 11.227465700682595, 15.830372225230448, 21.53024791440377, 9.696560670146207, 65.20471144580985, 11.038987464408192, 68.7559326611156, 65.24001464975491, 12.436214677815606, 80.74517107534035, 47.62835014441879, 32.296144742857955, 42.975680480847984, 5.919231161983186, 25.5749408327198, 5.705967955873726, 115.93424788857682, 15.888648101700378, 15.493137570604496, 6.071466749858465, 43.20765006916199, 7.06459935859991, 58.413269745753595, 6.837516982977437, 54.77737930485334, 117.07459187132983, 6.941114085230653, 11.176215729125234, 13.664685844560514, 51.05051317102088, 28.759915692919314, 8.91804252644634, 33.04627058121936, 58.4600243097056, 17.62556404327267, 14.877811831835603, 8.443234665134106, 24.979651601006484, 8.322974550337083, 5.7602370064233845, 57.30899515664613, 29.030838398345132, 65.27472994761797, 26.82818567222651, 74.97377970993827, 15.801728039500848, 24.291843372319597, 13.10133697843818, 58.197729828102666, 17.67783610421461, 16.90959209211741, 15.874343972830218, 12.78259701301912, 6.657799097808926, 8.798259924914321, 29.429528520878627, 36.72409647314858, 43.01641167233351, 18.613360190229027, 10.825398829122445, 9.929913201525382, 12.825575598071781, 86.84919662648922, 13.382392122933036, 37.523033078532556, 12.037905188206276, 5.157351377127541, 11.204554081932097, 180.46635957398203, 10.954292723413545, 49.11834878338134, 81.96575143339594, 52.93479663650518, 12.377377870217776, 7.920132594215448, 7.4393873910605635, 35.50501722794181, 116.66247595560071, 36.498449052135065, 63.27378309678789, 14.405242327529141, 10.214619106086964, 23.41115134687187, 41.51411231154487, 28.93857808358944, 26.154603460011838, 38.570824966560686, 13.844280719935252, 49.29068529014698, 29.602507151746437, 6.719877952556158, 21.279814308826005, 109.60705550460011, 24.284555573934156, 16.10808797282248, 23.953779393837713, 92.76998771829358, 30.81819264278499, 5.626618217945062, 18.86992673505975, 128.15702912970465, 88.83302633929443, 14.571522256625414, 71.70627339392207, 12.110630101512058, 7.900060015148668, 73.08412488829092, 17.206081144309262, 31.470962478186777, 7.94282974531565, 31.105205457816506, 12.899748998391162, 74.06706795261277, 27.753712557513683, 25.95067451245426, 99.45057134331455, 16.160883854219975, 7.780139290569777, 20.737623868580723, 29.19870565002725, 18.60926738615318, 6.2445245750335365, 27.426287418713883, 81.60654019434088, 19.597744747441325, 9.793745297293622, 91.60175015321904, 69.25199445308546, 45.78085888848693, 71.47703194510787, 62.96180473335348, 51.19664440628973, 93.93012690256198, 17.26396782187695, 13.582332409718463, 46.82566760823311, 25.000055835651832, 26.0468508974969, 39.352876804249654, 10.36203677689324, 91.29487360225154, 13.852419260971734, 6.3546456994638145, 18.562513094980723, 53.092296848061984, 15.65709779984499, 9.867966730558726, 6.590776558745178, 71.9494283888126, 38.76601922578387, 19.6373154154253, 26.71156392069873, 10.500558818673527, 10.15534710483323, 29.585605119868465, 46.213002312535934, 5.979940030122842, 23.035428690237786, 111.4572150068178, 5.421935599713886, 22.227764493039945, 34.69830832331165, 59.548988326781846, 23.56055263477693, 20.46498704640544, 54.54971672017497, 19.149420039414096, 24.997318421771833, 98.01397790663192, 10.281332123410568, 26.726673031821228, 16.467709657172986, 87.16887726376673, 11.28195940164632, 7.511333224868771, 99.3340601554236, 12.441752297996734, 6.843906447823716, 16.851720085870742, 8.589218253075053, 83.34593854422738, 89.86718765456756, 9.919943069414693, 8.826812719825918, 6.456314056255383, 5.259725638785315, 40.97964139636665, 35.15129492434815, 6.157752106666367, 57.69103020233657, 65.80361019269726, 95.7835962331614, 22.412380329828935, 58.52789672698978, 20.939007470196376, 25.997274497168753, 35.865504108952784, 37.59796276818661, 10.838464214988873, 56.75131726514654, 64.1917240666282, 43.05730573477425, 15.800331343095415, 15.519375124971397, 54.12249471457576, 17.98014021896834, 26.486107973267625, 62.73884644789402, 94.71233309099412, 7.9020125472836815, 11.221265424788193, 8.313411747426468, 80.49567763465447, 21.498153661857895, 85.84084541678372, 129.08702360810867, 30.722800267592767, 24.53598476903392, 56.25224819068706, 89.97223181027256, 20.389013892529185, 45.58132544563237, 59.98095552039328, 14.197338705184421, 62.70342743982113, 23.63558884356649, 72.28658384983751, 58.6855698871619, 13.318609940003055, 8.032758797563421, 56.87480683681045, 31.24037049428282, 68.27402027363081, 63.70024228619396, 28.87233551791537, 18.01535087571923, 19.13039262336812, 10.1291005039772, 10.855839335716244, 13.500401581971271, 13.90757951864131, 45.74375281428284, 13.845150348024182, 48.74521708491783, 61.28992458377873, 9.090258481443115, 10.894773156797077, 72.67934845716825, 76.58480689080649, 15.465115572430072, 9.077876032693757, 65.27318201461786, 19.364904155618362, 144.50451537159407, 30.79089040237222, 12.533895927821703, 60.8673024409936, 29.222286691737366, 68.41781439210583, 57.64964988725032, 71.24628966655993, 85.72797531163556, 32.85042326678894, 19.558471934067175, 8.107030630571229, 37.43949401608624, 124.28872402633992, 12.034358026244378, 8.119983415158117, 17.223884460783005, 45.03642594427974, 5.4044607045665725, 35.67753327652664, 64.92927811150655, 11.831811527145764, 45.252458508569674, 51.11965067160443, 16.082192710008908, 83.2895647551614, 7.167400991768096, 32.99866503843761, 42.02900719815628, 68.51216154429417, 20.393090407903784, 28.206821604496103, 40.59107022193571, 8.391311228058948, 31.583851583959948, 39.36738112969781, 34.27020087318171, 25.326488881282717, 10.107120964426132, 11.408137454192913, 159.26735832121489, 17.40671938254708, 60.76059863702193, 13.460248808439097, 8.496206863112302, 15.942569042873425, 141.25151777636123, 36.35810502534788, 86.8175167781222, 71.92825039120979, 19.055254793688416, 7.399734349412257, 8.28805294056416, 38.11134391584593, 6.0825723596861145, 85.58415328028984, 10.587078199021304, 14.160169461893974, 19.241264497216328, 14.899487852251296, 41.65644880824964, 18.752004545882095, 43.584575816575786, 10.856134824713426, 17.730030099245518, 11.961815998546411, 17.40942443376605, 7.75329831616737, 19.76445559179887, 38.03298853711607, 12.715985648424171, 27.570764285242532, 74.54912964149428, 33.63809280511317, 37.15654614587978, 53.25793748012183, 61.02702294284236, 7.151267746885671, 13.359667145428736, 32.04807486675588, 17.414765402791993, 11.086723088977406, 112.63793002374494, 18.306632179995383, 68.32677617839295, 16.827156726329004, 13.658907528346067, 45.51686690666733, 8.651329574317128, 13.689355267414134, 75.24536068902906, 27.61284512214966, 114.25011766488879, 24.902426582932577, 45.21103965657119, 17.583618770928616, 70.93198911133248, 63.36148840229533, 47.727624437134956, 27.50173789490918, 28.45873436547393, 18.054787487164727, 6.136017906752474, 31.06259257353466, 69.09718406186684, 60.06356736150458, 92.08446233405195, 25.32436972584457, 34.1952371259607, 57.44408819481689, 23.627524206948124, 23.714838641978, 7.7777743227890195, 13.31790928941386, 18.42060586382113, 44.398012804803116, 10.339099087982358, 122.95591266152357, 53.37751690915484, 22.084298368483882, 53.24696591058287, 17.206969971241264, 32.49726208256763, 34.573332747141045, 109.35473880267048, 16.31526231649831, 57.43340611315162, 13.22995035750946, 31.004353510124854, 6.129118342692217, 69.78554059879023, 78.28129431846374, 104.7977631152165, 26.34051835191846, 22.17414532908335, 39.332902466538265, 30.488319227177232, 6.9779494869691305, 13.77203735410684, 16.470266391843456, 10.441517028833339, 23.017777005805904, 10.560601762916987, 84.40746496690882, 21.755650011157805, 20.898653339755395, 15.656165533361271, 21.53679505620013, 5.486712460607875, 35.538280530194804, 5.76560841706106, 25.11207084961337, 15.323934871485697, 16.368947184823558, 38.81335570859558, 17.141143025055136, 11.547467736753656, 21.118101673844514, 8.620452983302204, 15.42187529812675, 8.060131230713635, 35.72349316091117, 43.72329001188888, 24.194665816123376, 13.136924503596449, 6.285535038687943, 8.332850422019188, 39.23187891813414, 20.208821410257073, 13.93724105732761, 27.919187083120384, 7.10220569949558, 66.11174456212811, 30.408584955877753, 23.07560787573189, 5.642270033971371, 8.303776732135173, 77.39687081422974, 40.08546236806364, 5.532596209311074, 88.6121043429071, 7.8703460257303055, 77.39284856355236, 6.698901813924749, 8.808200760165832, 68.0186862305669, 60.28504929272765, 62.385828789609434, 11.439430646073687, 61.91641313857363, 6.051316940736755, 6.553595491987867, 14.544425189997254, 9.829191008230165, 28.871932657222946, 14.767104684774912, 9.472435389020582, 13.770255895841627, 20.36444851817196, 49.078548834329055, 35.586137419553246, 11.390752991720692, 9.28413143177634, 35.809891781622106, 21.345353068157987, 8.509450021475683, 77.43880043547257, 11.448466955839729, 63.79645343520495, 23.182551629195792, 21.364621250232215, 14.750582958870913, 11.286084934317806, 15.037593792109071, 105.97446784353559, 23.630851748815573, 7.221603146527441, 17.76554629443609, 31.311892928356407, 37.765671104066485, 8.694495483216858, 57.7489195747286, 92.82435632153334, 5.343096735361452, 16.32436922142292, 15.26916741392611, 31.196507727675908, 10.796414269669068, 9.348936957562708, 20.640444095595367, 56.57320400575333, 15.188229072963228, 55.87728995681246, 48.940998986368946, 10.585747382754182, 6.128398684462652, 13.508508416842332, 104.81333975938075, 19.807935014622203, ...])
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)