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 = 46524
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);
([6991025.0, 7359436.641645924, 7367125.0, 7395671.875, 7426507.605997908, 7427639.985013132, 7489125.544346872, 7536690.348835942, 7691332.8125, 8298665.55618129, 8322290.041023292, 8329813.212467068, 8332731.380595084, 8338004.030794937, 8616080.897101987, 8656348.084710412, 8656349.867665414, 8659846.589747349, 8662846.508226244, 8685357.689218774, 8688548.573709078, 8703738.230213918, 8715658.774288043, 8718572.531941958, 8728733.574790174, 8775265.282257209, 8817605.699463705, 8827093.209275927, 8916764.816140117, 8942117.169895986, 8964040.625, 9005403.676214218, 9027018.396397328, 9042099.740358844, 9042148.243094133, 9043468.75, 9044017.1875, 9044190.625, 9044260.9375, 9046402.422558064, 9046685.361295393, 9049196.875, 9049287.370661693, 9049348.549600102, 9049462.5, 9049952.44486799, 9050058.617851116, 9050515.467876881, 9050535.409377988, 9050548.05225534, 9050654.077656247, 9050825.162603093, 9050978.125, 9051011.370798875, 9051128.125, 9051441.142336432, 9051763.949585354, 9053052.301644316, 9053582.241413983, 9054607.28080322, 9054885.194134999, 9054890.682825483, 9055842.1875, 9056920.3125, 9062237.04075822, 9069693.774568547, 9078654.952726241, 9083471.756585972, 9088008.236088036, 9088383.803875795, 9093736.188924493, 9095895.3125, 9098766.930500347, 9102003.125, 9108840.625, 9117747.044916527, 9133323.297440875, 9137578.007308438, 9138292.585793374, 9138309.143639963, 9139101.726481384, 9140078.304697154, 9140879.680265678, 9140957.8125, 9140959.342200773, 9141401.5625, 9141448.121850697, 9141461.269881517, 9142007.082202734, 9142042.90931233, 9142256.25, 9142310.9375, 9142372.364174357, 9142417.1875, 9142469.157655029, 9142571.807858596, 9142625.769402407, 9142680.643712692, 9142789.009384941, 9142873.075994214, 9143080.846333645, 9143115.158522578, 9143329.514848063, 9143478.125, 9143545.661078593, 9143740.625, 9143782.8125, 9144043.75, 9144262.5, 9144268.75, 9144662.5, 9144679.34441443, 9145195.919156745, 9145730.41710875, 9146295.354200024, 9146412.5, 9146515.461080005, 9146542.360435385, 9146650.63410333, 9148044.390273448, 9150939.805031378, 9151336.70436414, 9151857.360458009, 9151885.511914195, 9153604.302958455, 9159924.44504245, 9160357.145959621, 9160992.554107085, 9174020.3125, 9201096.671682363, 9210681.29521242, 9210767.579823835, 9216542.251347456, 9225810.403680863, 9232009.375, 9233590.248440983, 9236186.4906867, 9240084.108072065, 9246481.25, 9248374.549294034, 9249187.97615499, 9249539.194119278, 9249577.482406566, 9250019.201317972, 9250021.792629901, 9250434.000555111, 9250498.4372283, 9250925.0, 9251128.774177456, 9251637.629298048, 9252013.824143607, 9252126.009228807, 9252262.386137841, 9252829.6875, 9253207.8125, 9253491.173993357, 9253821.078456067, 9254137.5, 9254679.273247626, 9255073.4375, 9255462.634189762, 9255603.401970966, 9255632.864040444, 9255760.9375, 9256911.25994782, 9257153.125, 9259309.375, 9265380.02047092, 9266291.543427834, 9266986.35486185, 9269000.224783305, 9272538.07673117, 9272610.320409562, 9274199.18325397, 9275282.88907294, 9276422.194498455, 9277104.6875, 9277109.451586474, 9277140.625, 9279216.207149625, 9279770.896232245, 9279938.327323163, 9280523.790292656, 9280924.792011227, 9281360.085520545, 9281635.973152356, 9282050.438909074, 9282349.289997503, 9282735.805289872, 9282768.335382845, 9283258.640974328, 9284255.564649574, 9284471.772106836, 9284527.992488017, 9284787.331352895, 9285503.702966537, 9288098.513904298, 9288376.230361804, 9289330.281569805, 9290740.36502391, 9307329.6875, 9309688.442927467, 9310136.36784985, 9310145.246818865, 9311390.625, 9322431.575388512, 9322433.635968372, 9331257.77355589, 9334523.909779973, 9335608.826138059, 9336989.53651365, 9338864.920986315, 9340475.840180738, 9343420.879154759, 9369255.902876293, 9387546.415448966, 9404356.25, 9413737.987520527, 9413837.123261992, 9413981.63943173, 9439714.726851802, 9443267.1875, 9460854.097002005, 9465047.735211734, 9467646.613725113, 9469863.872813584, 9477886.841727873, 9478379.374445528, 9479737.5, 9483668.200538462, 9491249.185893519, 9491711.040144792, 9496352.796027802, 9497425.0, 9499108.838110829, 9501029.96075621, 9502503.993480546, 9503721.865259824, 9505665.718067525, 9506198.215060648, 9507062.959855929, 9507716.404671492, 9507720.3125, 9507793.75, 9508627.398245376, 9509646.77710927, 9510693.077088088, 9511236.035996275, 9511257.8125, 9511687.461864058, 9512113.705196042, 9513173.065358425, 9514918.75, 9515695.3125, 9516319.778320642, 9516574.375848217, 9517519.799718663, 9524212.044212772, 9527224.52907602, 9527735.412586104, 9528248.4375, 9530595.3125, 9531883.660584604, 9534951.482876867, 9535420.3125, 9535575.799222965, 9535843.488198064, 9536926.92097315, 9537598.507076161, 9537827.020931447, 9537933.988388197, 9537940.465784999, 9538295.243565291, 9540058.264496686, 9540505.618416946, 9540624.670912486, 9542050.0, 9543965.187756602, 9544565.949881257, 9544684.73223763, 9545794.691033032, 9546650.96416976, 9548890.625, 9550880.469432885, 9551970.05609465, 9552064.505957453, 9552339.863734374, 9553887.481219567, 9554478.125, 9558745.16650022, 9564839.078229263, 9564914.024213322, 9565401.611348629, 9566721.709584929, 9568341.092888445, 9568442.98832342, 9568747.49047531, 9568806.177032197, 9568821.945568714, 9569094.113232141, 9569587.831382114, 9574351.941250585, 9579302.549396705, 9580043.043936515, 9580303.125, 9583393.75, 9586416.413188875, 9587865.35146873, 9591603.125, 9593693.75, 9595519.965207687, 9595600.969457818, 9595903.125, 9597173.840571124, 9598679.491390835, 9600421.875, 9600442.1875, 9600509.885935472, 9600590.65255389, 9600657.738956429, 9600981.025899334, 9601214.068668352, 9601523.092764094, 9602269.590569492, 9603115.37103049, 9603132.570927383, 9603984.375, 9610990.523840921, 9611425.844080301, 9611432.458097182, 9611483.9481274, 9611807.8125, 9611816.966111757, 9612142.968130376, 9615532.326960934, 9620814.0625, 9621328.119028108, 9626001.147929778, 9627187.5, 9627198.383485071, 9627737.05224186, 9628224.984133493, 9628610.9375, 9628643.653291399, 9629206.25, 9630801.5625, 9632025.14638227, 9632141.985090405, 9632172.989861688, 9632174.95161647, 9632182.8125, 9632553.578837793, 9632681.25, 9632748.285365706, 9632922.228613855, 9633043.004601697, 9633294.06187485, 9633378.573197993, 9633578.125, 9633652.26484546, 9633882.225344257, 9634120.3125, 9634130.045057056, 9634136.905149287, 9634221.520053782, 9634293.75, 9634636.819267424, 9634659.006765557, 9634712.5, 9634810.208292427, 9634815.864490137, 9634846.875, 9634848.019102048, 9634953.692078477, 9635073.43023904, 9635131.382507347, 9635142.1875, 9635145.140030641, 9635153.47677373, 9635158.875223054, 9635168.75, 9635169.288455911, 9635171.875, 9635187.5, 9635271.875, 9635302.823802467, 9635322.899147304, 9635349.908371974, 9635367.1875, 9635441.623916915, 9635446.875, 9635467.1875, 9635500.174338967, 9635546.354241678, 9635557.8125, 9635582.977802515, 9635600.985871868, 9635681.203815894, 9635731.328058813, 9635748.4375, 9635753.125, 9635798.4375, 9635845.373201037, 9635854.6875, 9635935.070863014, 9635957.312301058, 9636006.25, 9636006.25, 9636028.85109569, 9636087.5, 9636296.132948522, 9636324.825615453, 9636439.82003866, 9636470.3125, 9636486.977773968, 9636489.962487591, 9636526.852436034, 9636534.689627087, 9636550.0, 9636566.201473111, 9636578.830207696, 9636633.766697207, 9636679.138256306, 9636697.752086226, 9636702.22185419, 9636733.318466363, 9636801.5625, 9636809.375, 9636815.625, 9636842.1875, 9636903.125, 9636913.750887971, 9636963.525339006, 9637025.84187317, 9637041.370478036, 9637053.595378473, 9637204.6875, 9637231.811046112, 9637280.329731634, 9637362.5, 9637367.1875, 9637395.3125, 9637448.978830881, 9637509.882824032, 9637526.249314515, 9637576.710257137, 9637580.647100644, 9637598.662263164, 9637670.23473922, 9637689.533393303, 9637768.257098563, 9637776.5625, 9637806.22635504, 9637926.5625, 9637937.68881517, 9637989.455063457, 9638075.828962684, 9638284.375, 9638296.875, 9638319.025904173, 9638379.50760236, 9638386.254537081, 9638405.549989428, 9638407.57988244, 9638541.805018043, 9638577.577999659, 9638659.375, 9638670.993339034, 9638687.885813762, 9638821.875, 9638876.5625, 9638893.748347959, 9638907.8125, 9639128.775178248, 9639128.976374444, 9639263.490149021, 9639285.904345794, 9639323.4375, 9639426.5625, 9639433.34798028, 9639439.790512068, 9639533.573091565, 9639580.454409719, 9639590.166653175, 9639689.996600717, 9639753.815359885, 9639884.144142475, 9639908.967222558, 9639975.78235916, 9640126.587913211, 9640151.5625, 9640174.276403146, 9640240.807114748, 9640267.1875, 9640343.498424223, 9640350.065452661, 9640385.498150108, 9640450.462337174, 9640453.605405, 9640488.176105263, 9640515.635532547, 9640801.520906381, 9640838.022304589, 9641031.24279905, 9641046.33295385, 9641107.8125, 9641123.604362514, 9641159.336051863, 9641185.30069302, 9641189.023464486, 9641249.691115221, 9641368.75, 9641374.819829486, 9641424.205316637, 9641579.6875, 9641627.586049499, 9641645.1271707, 9641685.508540642, 9641693.75, 9641727.065250715, 9641789.920852276, 9641815.625, 9641843.33996415, 9641855.38715915, 9641869.079045374, 9641918.918569932, 9641921.875, 9641921.875, 9641946.875, 9641978.848070145, 9641985.516462559, 9641997.855359871, 9642049.845404055, 9642090.889102096, 9642093.36776903, 9642101.222374761, 9642102.655041784, 9642125.0, 9642195.565696666, 9642206.25, 9642281.879535578, 9642285.532664087, 9642285.9375, 9642302.898063866, 9642317.770793606, 9642363.446756074, 9642377.611576, 9642436.402759092, 9642490.625, 9642501.027267912, 9642520.3125, 9642546.875, 9642559.152720522, 9642575.889150657, 9642627.184683798, 9642656.25, 9642679.6875, 9642688.240895968, 9642693.308368905, 9642698.104464388, 9642706.25, 9642725.0, 9642775.654315434, 9642776.170419728, 9642776.5625, 9642810.792435316, 9642821.250023844, 9642840.538388563, 9642863.735922754, 9642880.43158734, 9642886.260802656, 9642911.01290527, 9642990.625, 9643001.813778823, 9643003.125, 9643023.4375, 9643037.991963182, 9643046.287942624, 9643142.043199068, 9643151.960668689, 9643156.20404875, 9643200.0, 9643204.6875, 9643237.13110395, 9643251.361377316, 9643298.792831497, 9643360.9375, 9643384.337645441, 9643493.958475903, 9643507.8125, 9643518.725122187, 9643583.272136584, 9643628.125, 9643656.218979811, 9643663.301396666, 9643708.027354833, 9643737.246468436, 9643790.625, 9643815.29955854, 9643850.260521006, 9643866.18906723, 9643951.391561016, 9643959.110290289, 9643971.62811995, 9644006.25, 9644028.963679567, 9644085.530312866, 9644102.777951345, 9644109.21967539, 9644146.60272486, 9644212.5, 9644231.713210385, 9644263.47985673, 9644405.226107888, 9644422.585456511, 9644440.138617814, 9644471.441218812, 9644475.36081226, 9644557.112792954, 9644565.179153122, 9644590.967665907, 9644596.034844304, 9644629.6875, 9644634.204892546, 9644653.902324436, 9644687.029693276, 9644687.5, 9644691.17309673, 9644738.647924237, 9644776.30383717, 9644780.355548402, 9644871.701367902, 9644944.60889746, 9645034.326306218, 9645053.937074928, 9645055.650812572, 9645150.347033618, 9645185.80519752, 9645192.392898183, 9645195.788795436, 9645238.666742004, 9645252.963945366, 9645271.875, 9645281.384392696, 9645293.754473528, 9645364.0625, 9645434.665839676, 9645669.997363927, 9645744.180879613, 9645759.221523928, 9645765.625, 9645782.467132814, 9645782.868804641, 9645786.118872734, 9645819.181113565, 9645925.663292896, 9646055.694637164, 9646121.260375883, 9646171.537683364, 9646295.3125, 9646331.839086, 9646392.154986143, 9646451.5625, 9646500.0, 9646532.88490878, 9646568.04664878, 9646643.75, 9646812.5, 9646932.884887327, 9647642.1875, 9647947.908148745, 9647992.1875, 9648092.1875, 9648103.125, 9648213.117756777, 9648249.772743065, 9648360.9375, 9648364.0625, 9648371.274397824, 9648427.839102577, 9648492.816457747, 9648614.0625, 9648617.1875, 9648698.75251805, 9648865.625, 9648917.623319978, 9648975.297891574, 9648978.125, 9649053.872022942, 9649202.87947179, 9649225.302822484, 9649254.652977709, 9649398.4375, 9649469.470635604, 9649499.97447087, 9649562.452173004, 9649598.90668218, 9649651.5625, 9650145.381376348, 9650148.307766244, 9650607.610553613, 9650868.75, 9650967.458395656, 9651265.505342094, 9651279.820682919, 9651356.349772029, 9651572.830767173, 9651612.41599844, 9651843.71747412, 9651905.423469411, 9651976.855070142, 9652041.789401703, 9652143.71511772, 9652147.92767491, 9652575.0, 9652623.4375, 9652704.6875, 9652859.390363818, 9653328.907695921, 9653434.264693875, 9653442.339979474, 9653774.660810344, 9653966.388488695, 9654714.0625, 9654746.39005642, 9655232.676431408, 9655674.998623533, 9655934.375, 9655999.99535586, 9656002.68623046, 9656712.5, 9656845.3125, 9656914.437193787, 9657156.519259019, 9660195.257783215, 9660233.185203904, 9660249.967130719, 9661951.293601412, 9661951.653746918, 9662210.521203125, 9662868.77493339, 9663283.463164972, 9663360.906989435, 9664050.223159252, 9664665.646927496, 9664853.125, 9665331.25, 9665466.343761368, 9665467.1875, 9665474.723626977, 9666156.046742903, 9666473.191867629, 9666675.758368172, 9667210.9375, 9667917.037522117, 9668036.10262279, 9668164.0625, 9668714.177243544, 9669201.436383225, 9669828.605710426, 9669972.586182555, 9670263.593239713, 9670297.41909265, 9670589.0625, 9670592.722086607, 9670657.28539405, 9671499.284583539, 9671598.164098399, 9671646.875, 9672498.781136481, 9672503.125, 9672701.509282855, 9672950.25365081, 9673314.0625, 9673957.087686135, 9674068.75, 9674582.565980794, 9675195.3125, 9675363.46094711, 9675727.552033577, 9676234.178468501, 9676499.290073587, 9676738.797711277, 9676827.95035338, 9676973.201494025, 9680519.893527955, 9680932.887165044, 9681007.956692562, 9681120.3125, 9681132.325480966, 9681304.560098637, 9682068.409594439, 9682096.10915781, 9682347.920442984, 9682442.433985071, 9682710.9375, 9682721.574248608, 9682785.9375, 9682843.75, 9683036.509677237, 9683342.96193827, 9683463.71678712, 9683944.646278786, 9683945.3125, 9684038.43052468, 9684115.341023931, 9684314.980277367, 9684412.907767355, 9684450.0, 9684462.5, 9684517.1875, 9684707.8125, 9685150.460694743, 9685276.225585358, 9685775.807910562, 9685777.655635858, 9685841.63212596, 9685941.962329574, 9685962.47565214, 9685966.93982571, 9686125.961806595, 9686500.934383726, 9686748.4375, 9688887.363668129, 9689529.610422043, 9690591.058637984, 9690664.536477908, 9690678.57069941, 9690812.5, 9690831.068038318, 9691039.712792696, 9691723.396786759, 9691731.149857549, 9691751.022099856, 9692543.860276932, 9693819.249272237, 9694635.520609938, 9695049.317522144, 9696069.969667248, 9696414.024620447, 9696726.5625, 9696995.34316046, 9698305.569477238, 9699229.014225392, 9699332.355421027, 9700770.168480579, 9702340.438677158, 9703631.073447922, 9704225.674329663, 9704239.0625, 9704351.5625, 9705121.34426259, 9705126.538542736, 9709214.546655044, 9709979.579233848, 9710759.823798446, 9711257.390123233, 9711945.3125, 9712852.479371903, 9713635.22501502, 9715876.841580657, 9716997.532285841, 9717007.8125, 9717012.025069153, 9717823.85809692, 9718195.925457776, 9718696.056506956, 9720777.765566181, 9721215.625, 9734742.039423425, 9735834.007518303, 9741584.174027152, 9742037.72057174, 9742349.554174518, 9742562.178899767, 9742841.658370713, 9743077.192150969, 9744058.420115994, 9744371.875, 9744485.124036083, 9746295.714693444, 9746459.375, 9746915.625, 9747137.77535218, 9748697.836410007, 9749004.667476282, 9749524.551602809, 9749557.181568798, 9749707.549584655, 9749884.41942783, 9750073.017496143, 9750502.281502662, 9750595.365830885, 9752191.227667373, 9752415.240608528, 9752612.315787258, 9752910.1977428, 9753044.522758603, 9753615.501473613, 9757593.75, 9757596.875, 9758408.688558236, 9758611.085451964, 9758667.1875, 9759741.017694037, 9759748.399596922, 9759751.007022895, 9759866.436602281, 9761778.06502392, 9763332.497287337, 9763943.75, 9765541.029950885, 9767190.625, 9768256.25, 9768357.652694847, 9769057.450199023, 9771409.375, 9771790.625, 9772212.787306478, 9773835.62849395, 9774099.229164818, 9775816.081311114, 9776470.089194687, 9777502.874620551, 9779960.45539363, 9780485.9375, 9780586.599220037, 9780687.285135766, 9780793.558232754, 9781439.498496804, 9781752.680373719, 9782265.625, 9782978.822956873, 9783796.875, 9784244.891608816, 9790140.871966284, 9793355.702643381, 9796743.75, 9809816.982926596, 9822512.5, 9832892.881070245, 9845855.588965205, 9851558.702018242, 9852856.504544362, 9855545.3125, 9865128.125, 9878432.8125, 9887520.3125, 9898494.213823156, 9910998.287810616, 9912567.010939315, 9916965.675894529, 9917022.069588995, 9919925.0, 9939212.5, 9943049.498643428, 9943067.56290757, 9943856.550976483, 9946412.5, 9949541.456564313, 9949632.87216297, 9950668.70452473, 9950674.93235026, 9953002.013231328, 9953481.25, 9959494.338556586, 9961199.835414983, 9961848.67351128, 9962284.722107481, 9963346.871783152, 9963606.25, 9965392.910990942, 9966056.25, 9966107.8125, 9966586.474538464, 9967162.010399165, 9967923.675173173, 9969702.776079305, 9970020.81056682, 9971303.893524736, 9972079.6875, 9972609.146023655, 9973092.1875, 9973536.595152797, 9973668.75, 9974581.190804243, 9975349.473447692, 9975391.633343145, 9975651.5625, 9975654.361311082, 9975690.52745341, 9975697.742702289, 9976601.29881649, 9978273.895801581, 9978387.698656652, 9978694.589650473, 9980543.75, 9980707.482512144, 9981279.663467364, 9981282.8125, ...], [76.54737727244702, 10.007372227068414, 59.84326824869924, 59.95473627904815, 14.208800218622612, 33.28633280029103, 8.597062817054306, 7.050700707596102, 43.488129387463424, 5.702392154969599, 20.694386629314756, 5.426427835561646, 56.46806118805445, 12.91642366365063, 8.108377614308903, 71.03527396604304, 18.408488922020418, 30.219794570075695, 31.55877137600971, 26.305075508749276, 15.487398155640962, 20.833774310042923, 6.027781476801845, 15.28008749180048, 18.943403714157746, 29.818765928088418, 23.055200475644916, 21.374953087140263, 18.881122894191545, 66.74317594796099, 62.94695481312212, 9.845451451746149, 13.745711330789913, 30.17079358110376, 56.255488612564896, 38.93592050373183, 48.41225333493348, 56.82980264884122, 129.11888880814433, 61.12211831085776, 17.689290503768913, 44.327173776055, 10.93138676374985, 61.53395139912957, 33.53816394199613, 26.22512886290882, 7.923033263890262, 25.76516225837531, 21.217081401760712, 10.574587684967224, 20.46313134093078, 5.347524541407694, 80.16386768674465, 16.89767457945003, 99.17062890875874, 5.558726592579622, 26.47594973116062, 34.367109213411005, 20.812125325661928, 27.21746202152287, 7.354820026468756, 15.166590892421095, 87.37990465831588, 34.60429575686838, 59.83114111636335, 5.39941409578576, 16.63000107294008, 6.468687634368519, 8.524043547446563, 5.891165333949342, 28.559342680466386, 59.866885641450715, 6.713260748337217, 58.88182834523385, 29.81166761868034, 11.404106507936657, 45.0530228019517, 26.39688192637626, 97.98613763456088, 29.70571071990447, 22.897746890655938, 29.585557595820806, 25.711251570612017, 79.47550691641352, 19.45391327246367, 45.11699879773862, 23.552880760831968, 16.380265004170372, 19.467055822100864, 18.656462976769575, 64.17126567138715, 77.77935302796747, 11.989324163556484, 93.20984731245277, 89.59604102644697, 37.03994035769439, 17.147940674800438, 5.888289977272741, 48.46305111430507, 5.446461326783861, 13.597858556487493, 14.657979227368482, 6.460362880384456, 61.527256587648296, 16.460417698020027, 31.487524274353106, 81.12289285135236, 66.87955572575262, 29.888479277134095, 66.45034291699548, 33.78103603701278, 8.113114932642898, 23.749012959795614, 7.89031387513719, 22.812260154080384, 110.9239395269129, 25.659909494130105, 61.76204584606237, 29.645232193241675, 5.052501387119741, 97.14013350118358, 85.01969280441055, 21.98522973752223, 25.8444631129263, 22.727743588584378, 20.961845236765623, 58.204898718162255, 37.278053963824696, 63.284254062836894, 7.0690119626906, 9.36992767575231, 395.14911809999796, 15.190581492150669, 103.18080000066034, 39.08387185991225, 13.677332717810552, 17.57323119459794, 110.11747119375698, 65.23183047874332, 12.75933261295893, 41.656158066386844, 16.90219640990195, 20.17955900802355, 20.953544765053977, 26.99523795737194, 9.03366152590184, 67.84438592020072, 35.24319420118449, 18.168868667647423, 18.816688699185825, 14.104693469615093, 59.75384604996361, 6.4693892510547535, 108.79581581906403, 75.63989438398477, 7.273651845299965, 7.33848889808564, 59.184302064646154, 26.473376261001363, 56.31894253332133, 15.446465274815262, 57.77694327549415, 5.246590097257118, 73.93214870740778, 60.73536238984026, 149.50975282419478, 75.98203879231986, 11.691357244552455, 25.279761373945426, 22.13754227786937, 25.822140245894253, 12.16714819008595, 68.41815540767749, 66.72740300600425, 11.249542427788827, 36.34682233314287, 43.53717320913719, 15.241683645808068, 94.60198931252759, 17.747475641223765, 12.181724540746414, 34.46292948222634, 8.482387850241441, 25.00179448323744, 10.014328434070988, 13.875248474546392, 14.276807999985309, 19.626170986019556, 13.267924618707397, 13.566134853040063, 25.195166749447747, 15.842427611324812, 65.28098941269526, 8.217724195970716, 14.335440991257173, 16.81080108544249, 13.207455805162304, 13.810558076388306, 17.820528672492063, 63.67577078000065, 34.91563260442237, 5.375305051548255, 17.239950932128018, 22.095254891824524, 52.692468085199486, 11.677482745734148, 34.77195407601836, 84.17888880747964, 5.3059020312755925, 62.01565482689441, 36.90169344465715, 12.799996751974867, 47.8754692360106, 6.882165478227477, 10.625271025042123, 19.979388736133444, 44.20612183117504, 17.19446580232859, 5.156679492582803, 11.796343570411967, 79.8882478315679, 44.61928765729296, 5.376369669227889, 44.44025828250162, 16.94549867646001, 25.27012222005045, 10.234161888678091, 23.585408938041102, 33.03147794907859, 50.898919560522984, 83.94508428317118, 5.5380830421565, 55.868969879426565, 30.556143589076907, 99.04738883891463, 11.583488655194666, 85.03636211895586, 78.63153500848048, 19.616813133712732, 24.794747948783094, 43.59486575555584, 19.070176691279553, 55.42813613813491, 77.59644701799198, 23.878720038496713, 10.978068665798169, 42.801865910301174, 6.279723385258189, 55.14470611560307, 94.06726449245016, 176.17728461546704, 52.7666354606318, 55.40316363320604, 36.84841890254043, 10.384164590878322, 71.4004021704388, 6.665276942721877, 21.945783285719802, 13.40639010987153, 5.088263168968816, 114.12637375224863, 52.23128982447043, 6.945516906271109, 23.952118132152975, 52.815150360980546, 6.175351126984126, 24.251247883143645, 9.654094065395544, 15.213502623135641, 17.033519941682837, 22.572754554898353, 71.42342022641466, 34.10842164422898, 6.56035946231412, 34.89975234957556, 44.973874811974795, 85.46400487907513, 22.14283908206325, 16.343507197791663, 16.503706901799344, 17.171875043660133, 11.311307690954653, 57.64324977813528, 19.086832426140937, 36.63079090687986, 16.952231701528966, 95.26035073786775, 7.596459215357932, 38.54312629385926, 25.93967220198343, 15.001802854406844, 5.068200736877643, 15.131024728300021, 14.346404199820016, 95.95278161519232, 47.80594135092086, 9.912349660430278, 6.258023220263024, 16.79789822108009, 103.31034865729305, 166.8346107044157, 154.24122516870733, 13.123648249635707, 5.499766983205332, 62.848317233058694, 32.118832054025155, 26.427423897897036, 19.216846224416184, 53.152917270333916, 37.28438884515923, 9.054053208970425, 47.72237505716237, 58.598931562422706, 11.822156437733055, 20.193374689178587, 48.241488051945154, 122.3560947624028, 7.262566267463468, 6.769019984418622, 7.576853058206228, 50.52710134064347, 9.336624317066313, 13.77239097478178, 19.53224997990272, 60.56359930448285, 71.00982537931355, 39.69380856027087, 14.569464829533308, 16.79617071325278, 23.07983554321708, 6.214731615542634, 54.97574006832054, 56.1474402712147, 8.747562369096935, 13.36582638490767, 66.07779118068926, 36.415959955392, 22.389851201437466, 67.358007235088, 27.499593326179987, 44.52766384608884, 76.16050425857486, 63.16493106956769, 42.777054357871506, 157.67283512278442, 101.13791128266998, 24.87372992373699, 9.165924379793282, 70.4225180634285, 27.60244363074797, 32.26747878907563, 80.6494646551537, 36.960111707347025, 5.697143704486842, 16.485552971296727, 6.623290563310577, 11.652884418012777, 24.693543039672683, 71.22724956005428, 18.522442508825755, 6.398826794156139, 166.47724946585916, 141.3868824494744, 61.85842549066281, 26.363084461049716, 73.32956154061577, 5.3730726639326605, 22.916590097024685, 47.16737771301341, 140.5311840267264, 15.94030371876849, 67.59700370915334, 5.23358416626932, 12.147139729397331, 11.116376390780157, 21.101051462934898, 89.49101952505293, 25.528977826967054, 16.476355262930465, 19.897964133107656, 70.7904166463111, 55.48175439940769, 75.02865485485871, 56.85119936014388, 135.10337569006367, 227.41975321046584, 21.11885711887233, 37.881536028400994, 68.950909933702, 13.15521608517531, 41.44796938039265, 36.810919230412125, 97.7545251996449, 8.926744817952601, 72.17105277180694, 11.396304144253081, 91.57888192350737, 27.642861770181018, 6.277111167037117, 106.06088260558897, 30.012861189435874, 112.64867246034929, 5.166777686431874, 62.220673132125135, 61.427490388882994, 21.491115925654277, 30.909633209717096, 39.628150049520436, 106.20635542984932, 63.662159515205204, 11.967074298644864, 14.316038348087885, 10.066168171610238, 78.22644923275085, 21.274212410750177, 12.90195955843749, 24.6088837732724, 6.12144040747292, 49.954869836454186, 111.89701934005666, 18.541990173876414, 13.038904476606433, 43.6568991697813, 25.773032553122505, 12.342700269191551, 5.483910493314055, 77.25177747820653, 83.50483511598337, 52.5643109664412, 29.695930519272476, 59.450452364419405, 23.60353872991683, 13.225410153995018, 19.542458921219378, 18.822840571582223, 33.63013194069035, 42.96615854070459, 20.172878421767194, 44.4303054152505, 48.5331808528982, 33.347053168175016, 67.0438136047331, 73.73826065294669, 5.078248747023825, 23.200476849746806, 48.60168574114998, 86.83539776145057, 9.528970113130708, 79.58481925598755, 5.305857860363037, 5.897600138403436, 102.6104238909549, 28.065296538058394, 38.163910716058076, 130.57787293525428, 55.913834053732316, 19.347335711955033, 30.46781667244171, 39.16241026410627, 38.39137203811359, 17.00202605757562, 6.537965154652375, 12.809725938627656, 27.620666097452467, 10.57823333582126, 6.404631733800879, 51.4209276373361, 105.75314635689517, 28.469680947015107, 74.85077772280282, 60.67039397659419, 28.49252080644146, 60.874042166351856, 91.55961041442126, 10.1725088709612, 6.197496409892493, 108.49451631565967, 55.56363310694522, 59.76532162341762, 9.829315746749566, 39.80662725593411, 13.518099702693856, 33.18613772317434, 79.78678170212655, 12.987628749875583, 35.61653410950393, 9.143541645263662, 13.585923493520859, 27.3430174163115, 106.34774340478086, 238.7009426077393, 64.467087715795, 6.10724453257436, 41.69064298289528, 69.00361206140346, 19.684399171984303, 66.97384005869625, 40.390284678121404, 5.215836425414149, 7.311293815829928, 14.98180710100114, 16.848934567381793, 46.541656648401776, 34.82068252328827, 149.43294354366566, 50.02185459150413, 9.476596029797538, 67.32923287799, 57.58522972334201, 67.37303490612757, 22.401734309417208, 33.74895767203946, 39.72305538623579, 114.23636196036836, 47.927772824320094, 21.113152967649093, 40.83039721859363, 13.524913724061694, 54.68658073816167, 46.36820911769098, 6.947887885339308, 60.914338040797965, 31.253024373176867, 18.50414520410184, 16.363887252928563, 9.478125352742916, 28.875686177720542, 143.5878383768469, 46.60780024841014, 157.28930510193777, 203.51057516990133, 5.8902633945282075, 168.39684957816468, 9.565167328214976, 13.660590868194134, 14.207798419314202, 21.798110781218895, 47.73782938591293, 105.88143693623557, 69.47960724549021, 12.278443142246498, 7.018949280157769, 62.4668004922081, 40.544807547493804, 31.87489356358291, 55.89362385366026, 37.000368351505244, 131.48178504022292, 43.243032940004895, 5.673520596972104, 85.44701063361906, 40.41808353829924, 53.775076452132694, 7.9599424411146655, 17.996018862690544, 41.703976272174465, 30.980101234662325, 18.79032601631753, 13.488798876310309, 7.036574716699674, 46.95947168444343, 89.2073357006248, 24.706892770237438, 40.47493160550689, 44.775572688553545, 100.7494761509842, 25.578032676118205, 32.5919891988766, 16.54858235731358, 14.174030466604092, 27.262520341862466, 9.395986970475041, 49.266028304370884, 126.67237979647462, 57.52342346565955, 48.89423088269908, 25.181057401399055, 20.66649768641461, 14.418620147982145, 11.812857924624142, 7.586702024020897, 50.347700316346966, 127.83039071017848, 13.700047141049103, 14.173618008356135, 16.494151038542036, 40.836919200466625, 26.60654725790552, 24.763718126835833, 59.24682469431423, 11.08904256525405, 11.931142242424531, 120.69992126679489, 52.73310640789554, 78.94465674576918, 13.730002975999888, 14.05586601613641, 58.72823566463407, 53.055578505902325, 42.135033729503, 34.75338244453168, 62.882596223055174, 87.55165293214813, 14.07720762920776, 88.77735077800193, 12.752185248252593, 13.587635347630952, 93.9779399031143, 10.893304086963479, 117.68029629135094, 40.51139297133463, 9.756398494172632, 27.42999568225799, 39.667845724961865, 33.64802437133011, 13.363497397394376, 35.95039522005963, 16.521667869267027, 10.185719049759294, 13.476846613292564, 95.51182237320572, 18.660160920919964, 80.80083583106102, 7.542850005946999, 6.61626204129083, 132.6800013009323, 99.92498088063176, 53.07724212115031, 124.2832037640996, 250.83634289025377, 8.674549738414584, 25.5112948304176, 67.8739374003123, 77.2019874931255, 10.127495464647607, 5.504689988447135, 11.717228881726026, 120.20714193765103, 6.80521742391605, 17.521044747946647, 46.488584400246424, 32.98423546846536, 51.117406934549415, 15.479749136492718, 14.958587871212883, 130.6197235886739, 16.179455430175608, 23.55930574932759, 16.88475131929811, 44.96921159432331, 325.1099512463417, 23.188035034060842, 84.53930594246884, 43.09718703784028, 16.885999884313936, 44.31672535697214, 74.90113104239823, 7.986263724687552, 36.4362179338326, 33.47892367842051, 68.06278781895556, 40.469009435547584, 90.9167873137881, 39.79967621567718, 11.24280452086728, 10.181496578572485, 56.31588296893741, 33.29623560609611, 15.224785823253795, 39.358564548513826, 13.246372304228357, 80.59809461567478, 36.45426493764159, 56.814587379223255, 114.25120056634663, 10.79014558572004, 31.102610032175882, 159.35661730745085, 51.15994882500149, 6.707740775643875, 17.60819149244174, 60.840470401659935, 32.747348278104326, 107.56333731638861, 99.53367707369813, 16.91117021631013, 16.213070465804407, 48.76491894930436, 109.62272749514231, 26.429738619063478, 16.23668875059674, 11.074171605477915, 96.86000172883155, 18.648289887898315, 65.86416658710766, 6.261174623272057, 9.762350326567828, 42.47218503576836, 23.42482419125047, 64.12706547706526, 25.089617012993088, 42.41423794836021, 16.57394361992442, 46.246243289707834, 23.011664974332245, 15.335937264546693, 20.490597009719195, 17.835348617081486, 114.7024659782289, 12.512670124451649, 16.187686602085822, 29.123004184830812, 27.852786660505732, 21.395646441355126, 108.27261692690139, 58.46447381814506, 75.19566235527445, 19.32972486229119, 28.783259087986377, 33.50008439078784, 15.556386117320052, 70.43685919135193, 55.920969007133586, 77.37448337224441, 13.43333794139572, 54.885870257102034, 28.497971611431986, 78.94607260548581, 28.43349577063078, 39.79211792142495, 67.92675920694498, 76.32923215243456, 7.2235583140829265, 11.576381004314445, 46.81449204148896, 25.213848905969073, 8.269271649514321, 5.450342272793779, 5.712589917989299, 72.86905280251389, 20.51356897618944, 126.70013202737348, 11.080349380372887, 144.5823080031116, 5.94131738156509, 44.07160422038142, 56.341036935150626, 55.46527340779993, 36.28117794584076, 40.22451524636921, 23.76110719730044, 24.470976314953322, 18.915099145952883, 31.45100965724329, 32.81678361217256, 15.610587173386282, 102.47778057194812, 9.43034718092487, 7.558251528135736, 5.738050299695938, 18.582969606752336, 21.805325733980645, 9.838136305524614, 31.383137661327833, 5.644319550476528, 17.290972417063895, 11.627969619097906, 13.992665639356115, 41.16073963572252, 7.732440654182284, 44.77587682857013, 27.5141085264008, 8.425426955751865, 75.04227128299819, 19.509719377778918, 41.02688839997251, 9.131307412895588, 74.49786881326898, 13.684650880092452, 40.074600541316286, 15.337301032194041, 19.626773787712395, 49.452120203850505, 48.81032615063866, 24.60410734433664, 22.341361033609257, 91.7112509963686, 5.715996673263286, 45.18675872149984, 21.623577081901992, 26.237892778083065, 32.7455477466069, 73.57958360648126, 35.66853855860416, 6.813733731851538, 105.71614049547559, 13.907006821320266, 56.38012165378343, 85.2127710077626, 17.686965069154724, 28.856698930228383, 32.19433549182871, 40.193426239506444, 37.14472674614122, 12.978567831658422, 145.6355047555506, 19.410558140760955, 24.462531650462545, 84.45232991657414, 45.295599031745176, 54.33917925392207, 69.2067101480129, 11.933211266589936, 66.91294710327979, 32.43336774198289, 99.14068349334775, 5.323244524979932, 8.170987749488539, 28.051891382650634, 14.074654357600556, 229.34113265766533, 40.92755307567296, 60.9510801237936, 8.215774960125147, 27.087695769972054, 9.727116339142938, 5.73760217587041, 68.50421406323927, 60.75608583881082, 15.500363052511887, 43.97714570401605, 5.810973963575409, 14.573073900915864, 145.4473705006691, 7.150745008406867, 5.306762643683056, 31.55039931004319, 16.072783302404005, 10.631027638143657, 69.99237719750789, 46.438803226862575, 11.87858544259182, 8.81542303765768, 42.720082896075205, 109.08356092618186, 34.33304516053692, 7.073319507782739, 38.538939952485016, 38.181887508993526, 54.62785391177475, 48.02012782991397, 21.19186187200094, 11.090465405717731, 42.41341948914253, 53.69879656228301, 54.66561865960844, 115.30489663955827, 117.97251488869195, 50.89610170316895, 19.606528390183303, 24.612301422099314, 15.58634212157053, 72.81389038296297, 28.384748147898193, 29.373292035597196, 55.83950175627923, 89.30008365997116, 26.8419342471219, 43.696488883634906, 82.02916702112842, 73.61665362764141, 40.0157972610522, 29.44586352355066, 8.980885845189942, 29.372739793412933, 19.887477337001513, 19.70461283089104, 6.153650445864711, 39.869976427287796, 19.0852354534194, 67.59775722417265, 50.130334166809924, 43.17551370461124, 5.83463881939418, 37.91619406199497, 19.96593715340937, 10.492397860919828, 7.97891644048619, 24.23629410971238, 74.4240270943443, 59.59516753378352, 68.32497105225207, 11.212102310974885, 12.22142100217057, 36.77020840439451, 59.001517820183956, 12.714105886204282, 26.756806320217947, 7.559163059668951, 47.620045059822765, 86.60724541122659, 112.94489365747582, 11.367117661490896, 37.24751284010925, 88.51788752457324, 11.068974217081772, 20.956979822318687, 19.30889552439195, 14.717732362064295, 10.668335634502307, 37.765336610267724, 36.58928895156925, 42.16376148581463, 244.95691295635285, 29.10912593424638, 11.928896828021273, 72.13780458287168, 54.284116978893756, 16.75332312062467, 7.495172479120716, 64.02830653736885, 11.924647267271403, 104.98249480381061, 28.183172634238563, 75.0125285748923, 32.51284668156937, 18.250680509040013, 151.00895097236378, 14.257711248834438, 5.480796447158311, 28.1123693547272, 38.40938563744074, 6.602366345799629, 90.08449789629331, 30.414335382594743, 16.57585831188154, 105.85290529989581, 40.01740459906854, 25.051343305835832, 31.04333777231353, 88.11677215586326, 261.3800165864964, 55.38443965083681, 26.553733430467084, 88.3674439567594, 84.276933468247, 41.38667912243698, 45.770053687446975, 17.904012308185912, 25.881473176726335, 35.45915095397769, 8.313675832646096, 5.072451987510567, 76.34432662107886, 38.51677472708806, 31.161118125242034, 108.29726086378426, 11.633166353285144, 56.29419014718711, 7.358662689911592, 5.166753428574153, 101.60093275010792, 27.254297195553267, 59.41278643940839, 81.52693239947388, 96.659916174245, 25.649666816916593, 9.539268659047949, 55.34502895146997, 9.328684628229404, 133.40422107342323, 7.32557430988757, 45.84961137202531, 98.27815954278091, 121.7688021267481, 84.94442571160312, 91.6987253100736, 86.92507617002454, 17.253829433796543, 12.587098349967281, 59.446279333849546, 26.546018633898314, 46.74882317613334, 74.85119027121253, 51.81867586682957, 6.477851643083886, 40.492759687090896, 173.17438180632269, 88.63125949279757, 27.15862433047415, 6.254952226398432, 10.191417105190485, 74.69521249018649, 38.109111820733105, 5.348775316107049, 12.75451631991356, 105.19964164371339, 13.817103801791399, 44.34029429398012, 126.790537573985, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([6991025.0, 7359436.641645924, 7367125.0, 7395671.875, 7426507.605997908, 7427639.985013132, 7489125.544346872, 7536690.348835942, 7691332.8125, 8298665.55618129, 8322290.041023292, 8329813.212467068, 8332731.380595084, 8338004.030794937, 8616080.897101987, 8656348.084710412, 8656349.867665414, 8659846.589747349, 8662846.508226244, 8685357.689218774, 8688548.573709078, 8703738.230213918, 8715658.774288043, 8718572.531941958, 8728733.574790174, 8775265.282257209, 8817605.699463705, 8827093.209275927, 8916764.816140117, 8942117.169895986, 8964040.625, 9005403.676214218, 9027018.396397328, 9042099.740358844, 9042148.243094133, 9043468.75, 9044017.1875, 9044190.625, 9044260.9375, 9046402.422558064, 9046685.361295393, 9049196.875, 9049287.370661693, 9049348.549600102, 9049462.5, 9049952.44486799, 9050058.617851116, 9050515.467876881, 9050535.409377988, 9050548.05225534, 9050654.077656247, 9050825.162603093, 9050978.125, 9051011.370798875, 9051128.125, 9051441.142336432, 9051763.949585354, 9053052.301644316, 9053582.241413983, 9054607.28080322, 9054885.194134999, 9054890.682825483, 9055842.1875, 9056920.3125, 9062237.04075822, 9069693.774568547, 9078654.952726241, 9083471.756585972, 9088008.236088036, 9088383.803875795, 9093736.188924493, 9095895.3125, 9098766.930500347, 9102003.125, 9108840.625, 9117747.044916527, 9133323.297440875, 9137578.007308438, 9138292.585793374, 9138309.143639963, 9139101.726481384, 9140078.304697154, 9140879.680265678, 9140957.8125, 9140959.342200773, 9141401.5625, 9141448.121850697, 9141461.269881517, 9142007.082202734, 9142042.90931233, 9142256.25, 9142310.9375, 9142372.364174357, 9142417.1875, 9142469.157655029, 9142571.807858596, 9142625.769402407, 9142680.643712692, 9142789.009384941, 9142873.075994214, 9143080.846333645, 9143115.158522578, 9143329.514848063, 9143478.125, 9143545.661078593, 9143740.625, 9143782.8125, 9144043.75, 9144262.5, 9144268.75, 9144662.5, 9144679.34441443, 9145195.919156745, 9145730.41710875, 9146295.354200024, 9146412.5, 9146515.461080005, 9146542.360435385, 9146650.63410333, 9148044.390273448, 9150939.805031378, 9151336.70436414, 9151857.360458009, 9151885.511914195, 9153604.302958455, 9159924.44504245, 9160357.145959621, 9160992.554107085, 9174020.3125, 9201096.671682363, 9210681.29521242, 9210767.579823835, 9216542.251347456, 9225810.403680863, 9232009.375, 9233590.248440983, 9236186.4906867, 9240084.108072065, 9246481.25, 9248374.549294034, 9249187.97615499, 9249539.194119278, 9249577.482406566, 9250019.201317972, 9250021.792629901, 9250434.000555111, 9250498.4372283, 9250925.0, 9251128.774177456, 9251637.629298048, 9252013.824143607, 9252126.009228807, 9252262.386137841, 9252829.6875, 9253207.8125, 9253491.173993357, 9253821.078456067, 9254137.5, 9254679.273247626, 9255073.4375, 9255462.634189762, 9255603.401970966, 9255632.864040444, 9255760.9375, 9256911.25994782, 9257153.125, 9259309.375, 9265380.02047092, 9266291.543427834, 9266986.35486185, 9269000.224783305, 9272538.07673117, 9272610.320409562, 9274199.18325397, 9275282.88907294, 9276422.194498455, 9277104.6875, 9277109.451586474, 9277140.625, 9279216.207149625, 9279770.896232245, 9279938.327323163, 9280523.790292656, 9280924.792011227, 9281360.085520545, 9281635.973152356, 9282050.438909074, 9282349.289997503, 9282735.805289872, 9282768.335382845, 9283258.640974328, 9284255.564649574, 9284471.772106836, 9284527.992488017, 9284787.331352895, 9285503.702966537, 9288098.513904298, 9288376.230361804, 9289330.281569805, 9290740.36502391, 9307329.6875, 9309688.442927467, 9310136.36784985, 9310145.246818865, 9311390.625, 9322431.575388512, 9322433.635968372, 9331257.77355589, 9334523.909779973, 9335608.826138059, 9336989.53651365, 9338864.920986315, 9340475.840180738, 9343420.879154759, 9369255.902876293, 9387546.415448966, 9404356.25, 9413737.987520527, 9413837.123261992, 9413981.63943173, 9439714.726851802, 9443267.1875, 9460854.097002005, 9465047.735211734, 9467646.613725113, 9469863.872813584, 9477886.841727873, 9478379.374445528, 9479737.5, 9483668.200538462, 9491249.185893519, 9491711.040144792, 9496352.796027802, 9497425.0, 9499108.838110829, 9501029.96075621, 9502503.993480546, 9503721.865259824, 9505665.718067525, 9506198.215060648, 9507062.959855929, 9507716.404671492, 9507720.3125, 9507793.75, 9508627.398245376, 9509646.77710927, 9510693.077088088, 9511236.035996275, 9511257.8125, 9511687.461864058, 9512113.705196042, 9513173.065358425, 9514918.75, 9515695.3125, 9516319.778320642, 9516574.375848217, 9517519.799718663, 9524212.044212772, 9527224.52907602, 9527735.412586104, 9528248.4375, 9530595.3125, 9531883.660584604, 9534951.482876867, 9535420.3125, 9535575.799222965, 9535843.488198064, 9536926.92097315, 9537598.507076161, 9537827.020931447, 9537933.988388197, 9537940.465784999, 9538295.243565291, 9540058.264496686, 9540505.618416946, 9540624.670912486, 9542050.0, 9543965.187756602, 9544565.949881257, 9544684.73223763, 9545794.691033032, 9546650.96416976, 9548890.625, 9550880.469432885, 9551970.05609465, 9552064.505957453, 9552339.863734374, 9553887.481219567, 9554478.125, 9558745.16650022, 9564839.078229263, 9564914.024213322, 9565401.611348629, 9566721.709584929, 9568341.092888445, 9568442.98832342, 9568747.49047531, 9568806.177032197, 9568821.945568714, 9569094.113232141, 9569587.831382114, 9574351.941250585, 9579302.549396705, 9580043.043936515, 9580303.125, 9583393.75, 9586416.413188875, 9587865.35146873, 9591603.125, 9593693.75, 9595519.965207687, 9595600.969457818, 9595903.125, 9597173.840571124, 9598679.491390835, 9600421.875, 9600442.1875, 9600509.885935472, 9600590.65255389, 9600657.738956429, 9600981.025899334, 9601214.068668352, 9601523.092764094, 9602269.590569492, 9603115.37103049, 9603132.570927383, 9603984.375, 9610990.523840921, 9611425.844080301, 9611432.458097182, 9611483.9481274, 9611807.8125, 9611816.966111757, 9612142.968130376, 9615532.326960934, 9620814.0625, 9621328.119028108, 9626001.147929778, 9627187.5, 9627198.383485071, 9627737.05224186, 9628224.984133493, 9628610.9375, 9628643.653291399, 9629206.25, 9630801.5625, 9632025.14638227, 9632141.985090405, 9632172.989861688, 9632174.95161647, 9632182.8125, 9632553.578837793, 9632681.25, 9632748.285365706, 9632922.228613855, 9633043.004601697, 9633294.06187485, 9633378.573197993, 9633578.125, 9633652.26484546, 9633882.225344257, 9634120.3125, 9634130.045057056, 9634136.905149287, 9634221.520053782, 9634293.75, 9634636.819267424, 9634659.006765557, 9634712.5, 9634810.208292427, 9634815.864490137, 9634846.875, 9634848.019102048, 9634953.692078477, 9635073.43023904, 9635131.382507347, 9635142.1875, 9635145.140030641, 9635153.47677373, 9635158.875223054, 9635168.75, 9635169.288455911, 9635171.875, 9635187.5, 9635271.875, 9635302.823802467, 9635322.899147304, 9635349.908371974, 9635367.1875, 9635441.623916915, 9635446.875, 9635467.1875, 9635500.174338967, 9635546.354241678, 9635557.8125, 9635582.977802515, 9635600.985871868, 9635681.203815894, 9635731.328058813, 9635748.4375, 9635753.125, 9635798.4375, 9635845.373201037, 9635854.6875, 9635935.070863014, 9635957.312301058, 9636006.25, 9636006.25, 9636028.85109569, 9636087.5, 9636296.132948522, 9636324.825615453, 9636439.82003866, 9636470.3125, 9636486.977773968, 9636489.962487591, 9636526.852436034, 9636534.689627087, 9636550.0, 9636566.201473111, 9636578.830207696, 9636633.766697207, 9636679.138256306, 9636697.752086226, 9636702.22185419, 9636733.318466363, 9636801.5625, 9636809.375, 9636815.625, 9636842.1875, 9636903.125, 9636913.750887971, 9636963.525339006, 9637025.84187317, 9637041.370478036, 9637053.595378473, 9637204.6875, 9637231.811046112, 9637280.329731634, 9637362.5, 9637367.1875, 9637395.3125, 9637448.978830881, 9637509.882824032, 9637526.249314515, 9637576.710257137, 9637580.647100644, 9637598.662263164, 9637670.23473922, 9637689.533393303, 9637768.257098563, 9637776.5625, 9637806.22635504, 9637926.5625, 9637937.68881517, 9637989.455063457, 9638075.828962684, 9638284.375, 9638296.875, 9638319.025904173, 9638379.50760236, 9638386.254537081, 9638405.549989428, 9638407.57988244, 9638541.805018043, 9638577.577999659, 9638659.375, 9638670.993339034, 9638687.885813762, 9638821.875, 9638876.5625, 9638893.748347959, 9638907.8125, 9639128.775178248, 9639128.976374444, 9639263.490149021, 9639285.904345794, 9639323.4375, 9639426.5625, 9639433.34798028, 9639439.790512068, 9639533.573091565, 9639580.454409719, 9639590.166653175, 9639689.996600717, 9639753.815359885, 9639884.144142475, 9639908.967222558, 9639975.78235916, 9640126.587913211, 9640151.5625, 9640174.276403146, 9640240.807114748, 9640267.1875, 9640343.498424223, 9640350.065452661, 9640385.498150108, 9640450.462337174, 9640453.605405, 9640488.176105263, 9640515.635532547, 9640801.520906381, 9640838.022304589, 9641031.24279905, 9641046.33295385, 9641107.8125, 9641123.604362514, 9641159.336051863, 9641185.30069302, 9641189.023464486, 9641249.691115221, 9641368.75, 9641374.819829486, 9641424.205316637, 9641579.6875, 9641627.586049499, 9641645.1271707, 9641685.508540642, 9641693.75, 9641727.065250715, 9641789.920852276, 9641815.625, 9641843.33996415, 9641855.38715915, 9641869.079045374, 9641918.918569932, 9641921.875, 9641921.875, 9641946.875, 9641978.848070145, 9641985.516462559, 9641997.855359871, 9642049.845404055, 9642090.889102096, 9642093.36776903, 9642101.222374761, 9642102.655041784, 9642125.0, 9642195.565696666, 9642206.25, 9642281.879535578, 9642285.532664087, 9642285.9375, 9642302.898063866, 9642317.770793606, 9642363.446756074, 9642377.611576, 9642436.402759092, 9642490.625, 9642501.027267912, 9642520.3125, 9642546.875, 9642559.152720522, 9642575.889150657, 9642627.184683798, 9642656.25, 9642679.6875, 9642688.240895968, 9642693.308368905, 9642698.104464388, 9642706.25, 9642725.0, 9642775.654315434, 9642776.170419728, 9642776.5625, 9642810.792435316, 9642821.250023844, 9642840.538388563, 9642863.735922754, 9642880.43158734, 9642886.260802656, 9642911.01290527, 9642990.625, 9643001.813778823, 9643003.125, 9643023.4375, 9643037.991963182, 9643046.287942624, 9643142.043199068, 9643151.960668689, 9643156.20404875, 9643200.0, 9643204.6875, 9643237.13110395, 9643251.361377316, 9643298.792831497, 9643360.9375, 9643384.337645441, 9643493.958475903, 9643507.8125, 9643518.725122187, 9643583.272136584, 9643628.125, 9643656.218979811, 9643663.301396666, 9643708.027354833, 9643737.246468436, 9643790.625, 9643815.29955854, 9643850.260521006, 9643866.18906723, 9643951.391561016, 9643959.110290289, 9643971.62811995, 9644006.25, 9644028.963679567, 9644085.530312866, 9644102.777951345, 9644109.21967539, 9644146.60272486, 9644212.5, 9644231.713210385, 9644263.47985673, 9644405.226107888, 9644422.585456511, 9644440.138617814, 9644471.441218812, 9644475.36081226, 9644557.112792954, 9644565.179153122, 9644590.967665907, 9644596.034844304, 9644629.6875, 9644634.204892546, 9644653.902324436, 9644687.029693276, 9644687.5, 9644691.17309673, 9644738.647924237, 9644776.30383717, 9644780.355548402, 9644871.701367902, 9644944.60889746, 9645034.326306218, 9645053.937074928, 9645055.650812572, 9645150.347033618, 9645185.80519752, 9645192.392898183, 9645195.788795436, 9645238.666742004, 9645252.963945366, 9645271.875, 9645281.384392696, 9645293.754473528, 9645364.0625, 9645434.665839676, 9645669.997363927, 9645744.180879613, 9645759.221523928, 9645765.625, 9645782.467132814, 9645782.868804641, 9645786.118872734, 9645819.181113565, 9645925.663292896, 9646055.694637164, 9646121.260375883, 9646171.537683364, 9646295.3125, 9646331.839086, 9646392.154986143, 9646451.5625, 9646500.0, 9646532.88490878, 9646568.04664878, 9646643.75, 9646812.5, 9646932.884887327, 9647642.1875, 9647947.908148745, 9647992.1875, 9648092.1875, 9648103.125, 9648213.117756777, 9648249.772743065, 9648360.9375, 9648364.0625, 9648371.274397824, 9648427.839102577, 9648492.816457747, 9648614.0625, 9648617.1875, 9648698.75251805, 9648865.625, 9648917.623319978, 9648975.297891574, 9648978.125, 9649053.872022942, 9649202.87947179, 9649225.302822484, 9649254.652977709, 9649398.4375, 9649469.470635604, 9649499.97447087, 9649562.452173004, 9649598.90668218, 9649651.5625, 9650145.381376348, 9650148.307766244, 9650607.610553613, 9650868.75, 9650967.458395656, 9651265.505342094, 9651279.820682919, 9651356.349772029, 9651572.830767173, 9651612.41599844, 9651843.71747412, 9651905.423469411, 9651976.855070142, 9652041.789401703, 9652143.71511772, 9652147.92767491, 9652575.0, 9652623.4375, 9652704.6875, 9652859.390363818, 9653328.907695921, 9653434.264693875, 9653442.339979474, 9653774.660810344, 9653966.388488695, 9654714.0625, 9654746.39005642, 9655232.676431408, 9655674.998623533, 9655934.375, 9655999.99535586, 9656002.68623046, 9656712.5, 9656845.3125, 9656914.437193787, 9657156.519259019, 9660195.257783215, 9660233.185203904, 9660249.967130719, 9661951.293601412, 9661951.653746918, 9662210.521203125, 9662868.77493339, 9663283.463164972, 9663360.906989435, 9664050.223159252, 9664665.646927496, 9664853.125, 9665331.25, 9665466.343761368, 9665467.1875, 9665474.723626977, 9666156.046742903, 9666473.191867629, 9666675.758368172, 9667210.9375, 9667917.037522117, 9668036.10262279, 9668164.0625, 9668714.177243544, 9669201.436383225, 9669828.605710426, 9669972.586182555, 9670263.593239713, 9670297.41909265, 9670589.0625, 9670592.722086607, 9670657.28539405, 9671499.284583539, 9671598.164098399, 9671646.875, 9672498.781136481, 9672503.125, 9672701.509282855, 9672950.25365081, 9673314.0625, 9673957.087686135, 9674068.75, 9674582.565980794, 9675195.3125, 9675363.46094711, 9675727.552033577, 9676234.178468501, 9676499.290073587, 9676738.797711277, 9676827.95035338, 9676973.201494025, 9680519.893527955, 9680932.887165044, 9681007.956692562, 9681120.3125, 9681132.325480966, 9681304.560098637, 9682068.409594439, 9682096.10915781, 9682347.920442984, 9682442.433985071, 9682710.9375, 9682721.574248608, 9682785.9375, 9682843.75, 9683036.509677237, 9683342.96193827, 9683463.71678712, 9683944.646278786, 9683945.3125, 9684038.43052468, 9684115.341023931, 9684314.980277367, 9684412.907767355, 9684450.0, 9684462.5, 9684517.1875, 9684707.8125, 9685150.460694743, 9685276.225585358, 9685775.807910562, 9685777.655635858, 9685841.63212596, 9685941.962329574, 9685962.47565214, 9685966.93982571, 9686125.961806595, 9686500.934383726, 9686748.4375, 9688887.363668129, 9689529.610422043, 9690591.058637984, 9690664.536477908, 9690678.57069941, 9690812.5, 9690831.068038318, 9691039.712792696, 9691723.396786759, 9691731.149857549, 9691751.022099856, 9692543.860276932, 9693819.249272237, 9694635.520609938, 9695049.317522144, 9696069.969667248, 9696414.024620447, 9696726.5625, 9696995.34316046, 9698305.569477238, 9699229.014225392, 9699332.355421027, 9700770.168480579, 9702340.438677158, 9703631.073447922, 9704225.674329663, 9704239.0625, 9704351.5625, 9705121.34426259, 9705126.538542736, 9709214.546655044, 9709979.579233848, 9710759.823798446, 9711257.390123233, 9711945.3125, 9712852.479371903, 9713635.22501502, 9715876.841580657, 9716997.532285841, 9717007.8125, 9717012.025069153, 9717823.85809692, 9718195.925457776, 9718696.056506956, 9720777.765566181, 9721215.625, 9734742.039423425, 9735834.007518303, 9741584.174027152, 9742037.72057174, 9742349.554174518, 9742562.178899767, 9742841.658370713, 9743077.192150969, 9744058.420115994, 9744371.875, 9744485.124036083, 9746295.714693444, 9746459.375, 9746915.625, 9747137.77535218, 9748697.836410007, 9749004.667476282, 9749524.551602809, 9749557.181568798, 9749707.549584655, 9749884.41942783, 9750073.017496143, 9750502.281502662, 9750595.365830885, 9752191.227667373, 9752415.240608528, 9752612.315787258, 9752910.1977428, 9753044.522758603, 9753615.501473613, 9757593.75, 9757596.875, 9758408.688558236, 9758611.085451964, 9758667.1875, 9759741.017694037, 9759748.399596922, 9759751.007022895, 9759866.436602281, 9761778.06502392, 9763332.497287337, 9763943.75, 9765541.029950885, 9767190.625, 9768256.25, 9768357.652694847, 9769057.450199023, 9771409.375, 9771790.625, 9772212.787306478, 9773835.62849395, 9774099.229164818, 9775816.081311114, 9776470.089194687, 9777502.874620551, 9779960.45539363, 9780485.9375, 9780586.599220037, 9780687.285135766, 9780793.558232754, 9781439.498496804, 9781752.680373719, 9782265.625, 9782978.822956873, 9783796.875, 9784244.891608816, 9790140.871966284, 9793355.702643381, 9796743.75, 9809816.982926596, 9822512.5, 9832892.881070245, 9845855.588965205, 9851558.702018242, 9852856.504544362, 9855545.3125, 9865128.125, 9878432.8125, 9887520.3125, 9898494.213823156, 9910998.287810616, 9912567.010939315, 9916965.675894529, 9917022.069588995, 9919925.0, 9939212.5, 9943049.498643428, 9943067.56290757, 9943856.550976483, 9946412.5, 9949541.456564313, 9949632.87216297, 9950668.70452473, 9950674.93235026, 9953002.013231328, 9953481.25, 9959494.338556586, 9961199.835414983, 9961848.67351128, 9962284.722107481, 9963346.871783152, 9963606.25, 9965392.910990942, 9966056.25, 9966107.8125, 9966586.474538464, 9967162.010399165, 9967923.675173173, 9969702.776079305, 9970020.81056682, 9971303.893524736, 9972079.6875, 9972609.146023655, 9973092.1875, 9973536.595152797, 9973668.75, 9974581.190804243, 9975349.473447692, 9975391.633343145, 9975651.5625, 9975654.361311082, 9975690.52745341, 9975697.742702289, 9976601.29881649, 9978273.895801581, 9978387.698656652, 9978694.589650473, 9980543.75, 9980707.482512144, 9981279.663467364, 9981282.8125, ...], [76.54737727244702, 10.007372227068414, 59.84326824869924, 59.95473627904815, 14.208800218622612, 33.28633280029103, 8.597062817054306, 7.050700707596102, 43.488129387463424, 5.702392154969599, 20.694386629314756, 5.426427835561646, 56.46806118805445, 12.91642366365063, 8.108377614308903, 71.03527396604304, 18.408488922020418, 30.219794570075695, 31.55877137600971, 26.305075508749276, 15.487398155640962, 20.833774310042923, 6.027781476801845, 15.28008749180048, 18.943403714157746, 29.818765928088418, 23.055200475644916, 21.374953087140263, 18.881122894191545, 66.74317594796099, 62.94695481312212, 9.845451451746149, 13.745711330789913, 30.17079358110376, 56.255488612564896, 38.93592050373183, 48.41225333493348, 56.82980264884122, 129.11888880814433, 61.12211831085776, 17.689290503768913, 44.327173776055, 10.93138676374985, 61.53395139912957, 33.53816394199613, 26.22512886290882, 7.923033263890262, 25.76516225837531, 21.217081401760712, 10.574587684967224, 20.46313134093078, 5.347524541407694, 80.16386768674465, 16.89767457945003, 99.17062890875874, 5.558726592579622, 26.47594973116062, 34.367109213411005, 20.812125325661928, 27.21746202152287, 7.354820026468756, 15.166590892421095, 87.37990465831588, 34.60429575686838, 59.83114111636335, 5.39941409578576, 16.63000107294008, 6.468687634368519, 8.524043547446563, 5.891165333949342, 28.559342680466386, 59.866885641450715, 6.713260748337217, 58.88182834523385, 29.81166761868034, 11.404106507936657, 45.0530228019517, 26.39688192637626, 97.98613763456088, 29.70571071990447, 22.897746890655938, 29.585557595820806, 25.711251570612017, 79.47550691641352, 19.45391327246367, 45.11699879773862, 23.552880760831968, 16.380265004170372, 19.467055822100864, 18.656462976769575, 64.17126567138715, 77.77935302796747, 11.989324163556484, 93.20984731245277, 89.59604102644697, 37.03994035769439, 17.147940674800438, 5.888289977272741, 48.46305111430507, 5.446461326783861, 13.597858556487493, 14.657979227368482, 6.460362880384456, 61.527256587648296, 16.460417698020027, 31.487524274353106, 81.12289285135236, 66.87955572575262, 29.888479277134095, 66.45034291699548, 33.78103603701278, 8.113114932642898, 23.749012959795614, 7.89031387513719, 22.812260154080384, 110.9239395269129, 25.659909494130105, 61.76204584606237, 29.645232193241675, 5.052501387119741, 97.14013350118358, 85.01969280441055, 21.98522973752223, 25.8444631129263, 22.727743588584378, 20.961845236765623, 58.204898718162255, 37.278053963824696, 63.284254062836894, 7.0690119626906, 9.36992767575231, 395.14911809999796, 15.190581492150669, 103.18080000066034, 39.08387185991225, 13.677332717810552, 17.57323119459794, 110.11747119375698, 65.23183047874332, 12.75933261295893, 41.656158066386844, 16.90219640990195, 20.17955900802355, 20.953544765053977, 26.99523795737194, 9.03366152590184, 67.84438592020072, 35.24319420118449, 18.168868667647423, 18.816688699185825, 14.104693469615093, 59.75384604996361, 6.4693892510547535, 108.79581581906403, 75.63989438398477, 7.273651845299965, 7.33848889808564, 59.184302064646154, 26.473376261001363, 56.31894253332133, 15.446465274815262, 57.77694327549415, 5.246590097257118, 73.93214870740778, 60.73536238984026, 149.50975282419478, 75.98203879231986, 11.691357244552455, 25.279761373945426, 22.13754227786937, 25.822140245894253, 12.16714819008595, 68.41815540767749, 66.72740300600425, 11.249542427788827, 36.34682233314287, 43.53717320913719, 15.241683645808068, 94.60198931252759, 17.747475641223765, 12.181724540746414, 34.46292948222634, 8.482387850241441, 25.00179448323744, 10.014328434070988, 13.875248474546392, 14.276807999985309, 19.626170986019556, 13.267924618707397, 13.566134853040063, 25.195166749447747, 15.842427611324812, 65.28098941269526, 8.217724195970716, 14.335440991257173, 16.81080108544249, 13.207455805162304, 13.810558076388306, 17.820528672492063, 63.67577078000065, 34.91563260442237, 5.375305051548255, 17.239950932128018, 22.095254891824524, 52.692468085199486, 11.677482745734148, 34.77195407601836, 84.17888880747964, 5.3059020312755925, 62.01565482689441, 36.90169344465715, 12.799996751974867, 47.8754692360106, 6.882165478227477, 10.625271025042123, 19.979388736133444, 44.20612183117504, 17.19446580232859, 5.156679492582803, 11.796343570411967, 79.8882478315679, 44.61928765729296, 5.376369669227889, 44.44025828250162, 16.94549867646001, 25.27012222005045, 10.234161888678091, 23.585408938041102, 33.03147794907859, 50.898919560522984, 83.94508428317118, 5.5380830421565, 55.868969879426565, 30.556143589076907, 99.04738883891463, 11.583488655194666, 85.03636211895586, 78.63153500848048, 19.616813133712732, 24.794747948783094, 43.59486575555584, 19.070176691279553, 55.42813613813491, 77.59644701799198, 23.878720038496713, 10.978068665798169, 42.801865910301174, 6.279723385258189, 55.14470611560307, 94.06726449245016, 176.17728461546704, 52.7666354606318, 55.40316363320604, 36.84841890254043, 10.384164590878322, 71.4004021704388, 6.665276942721877, 21.945783285719802, 13.40639010987153, 5.088263168968816, 114.12637375224863, 52.23128982447043, 6.945516906271109, 23.952118132152975, 52.815150360980546, 6.175351126984126, 24.251247883143645, 9.654094065395544, 15.213502623135641, 17.033519941682837, 22.572754554898353, 71.42342022641466, 34.10842164422898, 6.56035946231412, 34.89975234957556, 44.973874811974795, 85.46400487907513, 22.14283908206325, 16.343507197791663, 16.503706901799344, 17.171875043660133, 11.311307690954653, 57.64324977813528, 19.086832426140937, 36.63079090687986, 16.952231701528966, 95.26035073786775, 7.596459215357932, 38.54312629385926, 25.93967220198343, 15.001802854406844, 5.068200736877643, 15.131024728300021, 14.346404199820016, 95.95278161519232, 47.80594135092086, 9.912349660430278, 6.258023220263024, 16.79789822108009, 103.31034865729305, 166.8346107044157, 154.24122516870733, 13.123648249635707, 5.499766983205332, 62.848317233058694, 32.118832054025155, 26.427423897897036, 19.216846224416184, 53.152917270333916, 37.28438884515923, 9.054053208970425, 47.72237505716237, 58.598931562422706, 11.822156437733055, 20.193374689178587, 48.241488051945154, 122.3560947624028, 7.262566267463468, 6.769019984418622, 7.576853058206228, 50.52710134064347, 9.336624317066313, 13.77239097478178, 19.53224997990272, 60.56359930448285, 71.00982537931355, 39.69380856027087, 14.569464829533308, 16.79617071325278, 23.07983554321708, 6.214731615542634, 54.97574006832054, 56.1474402712147, 8.747562369096935, 13.36582638490767, 66.07779118068926, 36.415959955392, 22.389851201437466, 67.358007235088, 27.499593326179987, 44.52766384608884, 76.16050425857486, 63.16493106956769, 42.777054357871506, 157.67283512278442, 101.13791128266998, 24.87372992373699, 9.165924379793282, 70.4225180634285, 27.60244363074797, 32.26747878907563, 80.6494646551537, 36.960111707347025, 5.697143704486842, 16.485552971296727, 6.623290563310577, 11.652884418012777, 24.693543039672683, 71.22724956005428, 18.522442508825755, 6.398826794156139, 166.47724946585916, 141.3868824494744, 61.85842549066281, 26.363084461049716, 73.32956154061577, 5.3730726639326605, 22.916590097024685, 47.16737771301341, 140.5311840267264, 15.94030371876849, 67.59700370915334, 5.23358416626932, 12.147139729397331, 11.116376390780157, 21.101051462934898, 89.49101952505293, 25.528977826967054, 16.476355262930465, 19.897964133107656, 70.7904166463111, 55.48175439940769, 75.02865485485871, 56.85119936014388, 135.10337569006367, 227.41975321046584, 21.11885711887233, 37.881536028400994, 68.950909933702, 13.15521608517531, 41.44796938039265, 36.810919230412125, 97.7545251996449, 8.926744817952601, 72.17105277180694, 11.396304144253081, 91.57888192350737, 27.642861770181018, 6.277111167037117, 106.06088260558897, 30.012861189435874, 112.64867246034929, 5.166777686431874, 62.220673132125135, 61.427490388882994, 21.491115925654277, 30.909633209717096, 39.628150049520436, 106.20635542984932, 63.662159515205204, 11.967074298644864, 14.316038348087885, 10.066168171610238, 78.22644923275085, 21.274212410750177, 12.90195955843749, 24.6088837732724, 6.12144040747292, 49.954869836454186, 111.89701934005666, 18.541990173876414, 13.038904476606433, 43.6568991697813, 25.773032553122505, 12.342700269191551, 5.483910493314055, 77.25177747820653, 83.50483511598337, 52.5643109664412, 29.695930519272476, 59.450452364419405, 23.60353872991683, 13.225410153995018, 19.542458921219378, 18.822840571582223, 33.63013194069035, 42.96615854070459, 20.172878421767194, 44.4303054152505, 48.5331808528982, 33.347053168175016, 67.0438136047331, 73.73826065294669, 5.078248747023825, 23.200476849746806, 48.60168574114998, 86.83539776145057, 9.528970113130708, 79.58481925598755, 5.305857860363037, 5.897600138403436, 102.6104238909549, 28.065296538058394, 38.163910716058076, 130.57787293525428, 55.913834053732316, 19.347335711955033, 30.46781667244171, 39.16241026410627, 38.39137203811359, 17.00202605757562, 6.537965154652375, 12.809725938627656, 27.620666097452467, 10.57823333582126, 6.404631733800879, 51.4209276373361, 105.75314635689517, 28.469680947015107, 74.85077772280282, 60.67039397659419, 28.49252080644146, 60.874042166351856, 91.55961041442126, 10.1725088709612, 6.197496409892493, 108.49451631565967, 55.56363310694522, 59.76532162341762, 9.829315746749566, 39.80662725593411, 13.518099702693856, 33.18613772317434, 79.78678170212655, 12.987628749875583, 35.61653410950393, 9.143541645263662, 13.585923493520859, 27.3430174163115, 106.34774340478086, 238.7009426077393, 64.467087715795, 6.10724453257436, 41.69064298289528, 69.00361206140346, 19.684399171984303, 66.97384005869625, 40.390284678121404, 5.215836425414149, 7.311293815829928, 14.98180710100114, 16.848934567381793, 46.541656648401776, 34.82068252328827, 149.43294354366566, 50.02185459150413, 9.476596029797538, 67.32923287799, 57.58522972334201, 67.37303490612757, 22.401734309417208, 33.74895767203946, 39.72305538623579, 114.23636196036836, 47.927772824320094, 21.113152967649093, 40.83039721859363, 13.524913724061694, 54.68658073816167, 46.36820911769098, 6.947887885339308, 60.914338040797965, 31.253024373176867, 18.50414520410184, 16.363887252928563, 9.478125352742916, 28.875686177720542, 143.5878383768469, 46.60780024841014, 157.28930510193777, 203.51057516990133, 5.8902633945282075, 168.39684957816468, 9.565167328214976, 13.660590868194134, 14.207798419314202, 21.798110781218895, 47.73782938591293, 105.88143693623557, 69.47960724549021, 12.278443142246498, 7.018949280157769, 62.4668004922081, 40.544807547493804, 31.87489356358291, 55.89362385366026, 37.000368351505244, 131.48178504022292, 43.243032940004895, 5.673520596972104, 85.44701063361906, 40.41808353829924, 53.775076452132694, 7.9599424411146655, 17.996018862690544, 41.703976272174465, 30.980101234662325, 18.79032601631753, 13.488798876310309, 7.036574716699674, 46.95947168444343, 89.2073357006248, 24.706892770237438, 40.47493160550689, 44.775572688553545, 100.7494761509842, 25.578032676118205, 32.5919891988766, 16.54858235731358, 14.174030466604092, 27.262520341862466, 9.395986970475041, 49.266028304370884, 126.67237979647462, 57.52342346565955, 48.89423088269908, 25.181057401399055, 20.66649768641461, 14.418620147982145, 11.812857924624142, 7.586702024020897, 50.347700316346966, 127.83039071017848, 13.700047141049103, 14.173618008356135, 16.494151038542036, 40.836919200466625, 26.60654725790552, 24.763718126835833, 59.24682469431423, 11.08904256525405, 11.931142242424531, 120.69992126679489, 52.73310640789554, 78.94465674576918, 13.730002975999888, 14.05586601613641, 58.72823566463407, 53.055578505902325, 42.135033729503, 34.75338244453168, 62.882596223055174, 87.55165293214813, 14.07720762920776, 88.77735077800193, 12.752185248252593, 13.587635347630952, 93.9779399031143, 10.893304086963479, 117.68029629135094, 40.51139297133463, 9.756398494172632, 27.42999568225799, 39.667845724961865, 33.64802437133011, 13.363497397394376, 35.95039522005963, 16.521667869267027, 10.185719049759294, 13.476846613292564, 95.51182237320572, 18.660160920919964, 80.80083583106102, 7.542850005946999, 6.61626204129083, 132.6800013009323, 99.92498088063176, 53.07724212115031, 124.2832037640996, 250.83634289025377, 8.674549738414584, 25.5112948304176, 67.8739374003123, 77.2019874931255, 10.127495464647607, 5.504689988447135, 11.717228881726026, 120.20714193765103, 6.80521742391605, 17.521044747946647, 46.488584400246424, 32.98423546846536, 51.117406934549415, 15.479749136492718, 14.958587871212883, 130.6197235886739, 16.179455430175608, 23.55930574932759, 16.88475131929811, 44.96921159432331, 325.1099512463417, 23.188035034060842, 84.53930594246884, 43.09718703784028, 16.885999884313936, 44.31672535697214, 74.90113104239823, 7.986263724687552, 36.4362179338326, 33.47892367842051, 68.06278781895556, 40.469009435547584, 90.9167873137881, 39.79967621567718, 11.24280452086728, 10.181496578572485, 56.31588296893741, 33.29623560609611, 15.224785823253795, 39.358564548513826, 13.246372304228357, 80.59809461567478, 36.45426493764159, 56.814587379223255, 114.25120056634663, 10.79014558572004, 31.102610032175882, 159.35661730745085, 51.15994882500149, 6.707740775643875, 17.60819149244174, 60.840470401659935, 32.747348278104326, 107.56333731638861, 99.53367707369813, 16.91117021631013, 16.213070465804407, 48.76491894930436, 109.62272749514231, 26.429738619063478, 16.23668875059674, 11.074171605477915, 96.86000172883155, 18.648289887898315, 65.86416658710766, 6.261174623272057, 9.762350326567828, 42.47218503576836, 23.42482419125047, 64.12706547706526, 25.089617012993088, 42.41423794836021, 16.57394361992442, 46.246243289707834, 23.011664974332245, 15.335937264546693, 20.490597009719195, 17.835348617081486, 114.7024659782289, 12.512670124451649, 16.187686602085822, 29.123004184830812, 27.852786660505732, 21.395646441355126, 108.27261692690139, 58.46447381814506, 75.19566235527445, 19.32972486229119, 28.783259087986377, 33.50008439078784, 15.556386117320052, 70.43685919135193, 55.920969007133586, 77.37448337224441, 13.43333794139572, 54.885870257102034, 28.497971611431986, 78.94607260548581, 28.43349577063078, 39.79211792142495, 67.92675920694498, 76.32923215243456, 7.2235583140829265, 11.576381004314445, 46.81449204148896, 25.213848905969073, 8.269271649514321, 5.450342272793779, 5.712589917989299, 72.86905280251389, 20.51356897618944, 126.70013202737348, 11.080349380372887, 144.5823080031116, 5.94131738156509, 44.07160422038142, 56.341036935150626, 55.46527340779993, 36.28117794584076, 40.22451524636921, 23.76110719730044, 24.470976314953322, 18.915099145952883, 31.45100965724329, 32.81678361217256, 15.610587173386282, 102.47778057194812, 9.43034718092487, 7.558251528135736, 5.738050299695938, 18.582969606752336, 21.805325733980645, 9.838136305524614, 31.383137661327833, 5.644319550476528, 17.290972417063895, 11.627969619097906, 13.992665639356115, 41.16073963572252, 7.732440654182284, 44.77587682857013, 27.5141085264008, 8.425426955751865, 75.04227128299819, 19.509719377778918, 41.02688839997251, 9.131307412895588, 74.49786881326898, 13.684650880092452, 40.074600541316286, 15.337301032194041, 19.626773787712395, 49.452120203850505, 48.81032615063866, 24.60410734433664, 22.341361033609257, 91.7112509963686, 5.715996673263286, 45.18675872149984, 21.623577081901992, 26.237892778083065, 32.7455477466069, 73.57958360648126, 35.66853855860416, 6.813733731851538, 105.71614049547559, 13.907006821320266, 56.38012165378343, 85.2127710077626, 17.686965069154724, 28.856698930228383, 32.19433549182871, 40.193426239506444, 37.14472674614122, 12.978567831658422, 145.6355047555506, 19.410558140760955, 24.462531650462545, 84.45232991657414, 45.295599031745176, 54.33917925392207, 69.2067101480129, 11.933211266589936, 66.91294710327979, 32.43336774198289, 99.14068349334775, 5.323244524979932, 8.170987749488539, 28.051891382650634, 14.074654357600556, 229.34113265766533, 40.92755307567296, 60.9510801237936, 8.215774960125147, 27.087695769972054, 9.727116339142938, 5.73760217587041, 68.50421406323927, 60.75608583881082, 15.500363052511887, 43.97714570401605, 5.810973963575409, 14.573073900915864, 145.4473705006691, 7.150745008406867, 5.306762643683056, 31.55039931004319, 16.072783302404005, 10.631027638143657, 69.99237719750789, 46.438803226862575, 11.87858544259182, 8.81542303765768, 42.720082896075205, 109.08356092618186, 34.33304516053692, 7.073319507782739, 38.538939952485016, 38.181887508993526, 54.62785391177475, 48.02012782991397, 21.19186187200094, 11.090465405717731, 42.41341948914253, 53.69879656228301, 54.66561865960844, 115.30489663955827, 117.97251488869195, 50.89610170316895, 19.606528390183303, 24.612301422099314, 15.58634212157053, 72.81389038296297, 28.384748147898193, 29.373292035597196, 55.83950175627923, 89.30008365997116, 26.8419342471219, 43.696488883634906, 82.02916702112842, 73.61665362764141, 40.0157972610522, 29.44586352355066, 8.980885845189942, 29.372739793412933, 19.887477337001513, 19.70461283089104, 6.153650445864711, 39.869976427287796, 19.0852354534194, 67.59775722417265, 50.130334166809924, 43.17551370461124, 5.83463881939418, 37.91619406199497, 19.96593715340937, 10.492397860919828, 7.97891644048619, 24.23629410971238, 74.4240270943443, 59.59516753378352, 68.32497105225207, 11.212102310974885, 12.22142100217057, 36.77020840439451, 59.001517820183956, 12.714105886204282, 26.756806320217947, 7.559163059668951, 47.620045059822765, 86.60724541122659, 112.94489365747582, 11.367117661490896, 37.24751284010925, 88.51788752457324, 11.068974217081772, 20.956979822318687, 19.30889552439195, 14.717732362064295, 10.668335634502307, 37.765336610267724, 36.58928895156925, 42.16376148581463, 244.95691295635285, 29.10912593424638, 11.928896828021273, 72.13780458287168, 54.284116978893756, 16.75332312062467, 7.495172479120716, 64.02830653736885, 11.924647267271403, 104.98249480381061, 28.183172634238563, 75.0125285748923, 32.51284668156937, 18.250680509040013, 151.00895097236378, 14.257711248834438, 5.480796447158311, 28.1123693547272, 38.40938563744074, 6.602366345799629, 90.08449789629331, 30.414335382594743, 16.57585831188154, 105.85290529989581, 40.01740459906854, 25.051343305835832, 31.04333777231353, 88.11677215586326, 261.3800165864964, 55.38443965083681, 26.553733430467084, 88.3674439567594, 84.276933468247, 41.38667912243698, 45.770053687446975, 17.904012308185912, 25.881473176726335, 35.45915095397769, 8.313675832646096, 5.072451987510567, 76.34432662107886, 38.51677472708806, 31.161118125242034, 108.29726086378426, 11.633166353285144, 56.29419014718711, 7.358662689911592, 5.166753428574153, 101.60093275010792, 27.254297195553267, 59.41278643940839, 81.52693239947388, 96.659916174245, 25.649666816916593, 9.539268659047949, 55.34502895146997, 9.328684628229404, 133.40422107342323, 7.32557430988757, 45.84961137202531, 98.27815954278091, 121.7688021267481, 84.94442571160312, 91.6987253100736, 86.92507617002454, 17.253829433796543, 12.587098349967281, 59.446279333849546, 26.546018633898314, 46.74882317613334, 74.85119027121253, 51.81867586682957, 6.477851643083886, 40.492759687090896, 173.17438180632269, 88.63125949279757, 27.15862433047415, 6.254952226398432, 10.191417105190485, 74.69521249018649, 38.109111820733105, 5.348775316107049, 12.75451631991356, 105.19964164371339, 13.817103801791399, 44.34029429398012, 126.790537573985, ...])
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);
([6991025.0, 7359436.641645924, 7367125.0, 7395671.875, 7426507.605997908, 7427639.985013132, 7489125.544346872, 7536690.348835942, 7691332.8125, 8298665.55618129, 8322290.041023292, 8329813.212467068, 8332731.380595084, 8338004.030794937, 8616080.897101987, 8656348.084710412, 8656349.867665414, 8659846.589747349, 8662846.508226244, 8685357.689218774, 8688548.573709078, 8703738.230213918, 8715658.774288043, 8718572.531941958, 8728733.574790174, 8775265.282257209, 8817605.699463705, 8827093.209275927, 8916764.816140117, 8942117.169895986, 8964040.625, 9005403.676214218, 9027018.396397328, 9042099.740358844, 9042148.243094133, 9043468.75, 9044017.1875, 9044190.625, 9044260.9375, 9046402.422558064, 9046685.361295393, 9049196.875, 9049287.370661693, 9049348.549600102, 9049462.5, 9049952.44486799, 9050058.617851116, 9050515.467876881, 9050535.409377988, 9050548.05225534, 9050654.077656247, 9050825.162603093, 9050978.125, 9051011.370798875, 9051128.125, 9051441.142336432, 9051763.949585354, 9053052.301644316, 9053582.241413983, 9054607.28080322, 9054885.194134999, 9054890.682825483, 9055842.1875, 9056920.3125, 9062237.04075822, 9069693.774568547, 9078654.952726241, 9083471.756585972, 9088008.236088036, 9088383.803875795, 9093736.188924493, 9095895.3125, 9098766.930500347, 9102003.125, 9108840.625, 9117747.044916527, 9133323.297440875, 9137578.007308438, 9138292.585793374, 9138309.143639963, 9139101.726481384, 9140078.304697154, 9140879.680265678, 9140957.8125, 9140959.342200773, 9141401.5625, 9141448.121850697, 9141461.269881517, 9142007.082202734, 9142042.90931233, 9142256.25, 9142310.9375, 9142372.364174357, 9142417.1875, 9142469.157655029, 9142571.807858596, 9142625.769402407, 9142680.643712692, 9142789.009384941, 9142873.075994214, 9143080.846333645, 9143115.158522578, 9143329.514848063, 9143478.125, 9143545.661078593, 9143740.625, 9143782.8125, 9144043.75, 9144262.5, 9144268.75, 9144662.5, 9144679.34441443, 9145195.919156745, 9145730.41710875, 9146295.354200024, 9146412.5, 9146515.461080005, 9146542.360435385, 9146650.63410333, 9148044.390273448, 9150939.805031378, 9151336.70436414, 9151857.360458009, 9151885.511914195, 9153604.302958455, 9159924.44504245, 9160357.145959621, 9160992.554107085, 9174020.3125, 9201096.671682363, 9210681.29521242, 9210767.579823835, 9216542.251347456, 9225810.403680863, 9232009.375, 9233590.248440983, 9236186.4906867, 9240084.108072065, 9246481.25, 9248374.549294034, 9249187.97615499, 9249539.194119278, 9249577.482406566, 9250019.201317972, 9250021.792629901, 9250434.000555111, 9250498.4372283, 9250925.0, 9251128.774177456, 9251637.629298048, 9252013.824143607, 9252126.009228807, 9252262.386137841, 9252829.6875, 9253207.8125, 9253491.173993357, 9253821.078456067, 9254137.5, 9254679.273247626, 9255073.4375, 9255462.634189762, 9255603.401970966, 9255632.864040444, 9255760.9375, 9256911.25994782, 9257153.125, 9259309.375, 9265380.02047092, 9266291.543427834, 9266986.35486185, 9269000.224783305, 9272538.07673117, 9272610.320409562, 9274199.18325397, 9275282.88907294, 9276422.194498455, 9277104.6875, 9277109.451586474, 9277140.625, 9279216.207149625, 9279770.896232245, 9279938.327323163, 9280523.790292656, 9280924.792011227, 9281360.085520545, 9281635.973152356, 9282050.438909074, 9282349.289997503, 9282735.805289872, 9282768.335382845, 9283258.640974328, 9284255.564649574, 9284471.772106836, 9284527.992488017, 9284787.331352895, 9285503.702966537, 9288098.513904298, 9288376.230361804, 9289330.281569805, 9290740.36502391, 9307329.6875, 9309688.442927467, 9310136.36784985, 9310145.246818865, 9311390.625, 9322431.575388512, 9322433.635968372, 9331257.77355589, 9334523.909779973, 9335608.826138059, 9336989.53651365, 9338864.920986315, 9340475.840180738, 9343420.879154759, 9369255.902876293, 9387546.415448966, 9404356.25, 9413737.987520527, 9413837.123261992, 9413981.63943173, 9439714.726851802, 9443267.1875, 9460854.097002005, 9465047.735211734, 9467646.613725113, 9469863.872813584, 9477886.841727873, 9478379.374445528, 9479737.5, 9483668.200538462, 9491249.185893519, 9491711.040144792, 9496352.796027802, 9497425.0, 9499108.838110829, 9501029.96075621, 9502503.993480546, 9503721.865259824, 9505665.718067525, 9506198.215060648, 9507062.959855929, 9507716.404671492, 9507720.3125, 9507793.75, 9508627.398245376, 9509646.77710927, 9510693.077088088, 9511236.035996275, 9511257.8125, 9511687.461864058, 9512113.705196042, 9513173.065358425, 9514918.75, 9515695.3125, 9516319.778320642, 9516574.375848217, 9517519.799718663, 9524212.044212772, 9527224.52907602, 9527735.412586104, 9528248.4375, 9530595.3125, 9531883.660584604, 9534951.482876867, 9535420.3125, 9535575.799222965, 9535843.488198064, 9536926.92097315, 9537598.507076161, 9537827.020931447, 9537933.988388197, 9537940.465784999, 9538295.243565291, 9540058.264496686, 9540505.618416946, 9540624.670912486, 9542050.0, 9543965.187756602, 9544565.949881257, 9544684.73223763, 9545794.691033032, 9546650.96416976, 9548890.625, 9550880.469432885, 9551970.05609465, 9552064.505957453, 9552339.863734374, 9553887.481219567, 9554478.125, 9558745.16650022, 9564839.078229263, 9564914.024213322, 9565401.611348629, 9566721.709584929, 9568341.092888445, 9568442.98832342, 9568747.49047531, 9568806.177032197, 9568821.945568714, 9569094.113232141, 9569587.831382114, 9574351.941250585, 9579302.549396705, 9580043.043936515, 9580303.125, 9583393.75, 9586416.413188875, 9587865.35146873, 9591603.125, 9593693.75, 9595519.965207687, 9595600.969457818, 9595903.125, 9597173.840571124, 9598679.491390835, 9600421.875, 9600442.1875, 9600509.885935472, 9600590.65255389, 9600657.738956429, 9600981.025899334, 9601214.068668352, 9601523.092764094, 9602269.590569492, 9603115.37103049, 9603132.570927383, 9603984.375, 9610990.523840921, 9611425.844080301, 9611432.458097182, 9611483.9481274, 9611807.8125, 9611816.966111757, 9612142.968130376, 9615532.326960934, 9620814.0625, 9621328.119028108, 9626001.147929778, 9627187.5, 9627198.383485071, 9627737.05224186, 9628224.984133493, 9628610.9375, 9628643.653291399, 9629206.25, 9630801.5625, 9632025.14638227, 9632141.985090405, 9632172.989861688, 9632174.95161647, 9632182.8125, 9632553.578837793, 9632681.25, 9632748.285365706, 9632922.228613855, 9633043.004601697, 9633294.06187485, 9633378.573197993, 9633578.125, 9633652.26484546, 9633882.225344257, 9634120.3125, 9634130.045057056, 9634136.905149287, 9634221.520053782, 9634293.75, 9634636.819267424, 9634659.006765557, 9634712.5, 9634810.208292427, 9634815.864490137, 9634846.875, 9634848.019102048, 9634953.692078477, 9635073.43023904, 9635131.382507347, 9635142.1875, 9635145.140030641, 9635153.47677373, 9635158.875223054, 9635168.75, 9635169.288455911, 9635171.875, 9635187.5, 9635271.875, 9635302.823802467, 9635322.899147304, 9635349.908371974, 9635367.1875, 9635441.623916915, 9635446.875, 9635467.1875, 9635500.174338967, 9635546.354241678, 9635557.8125, 9635582.977802515, 9635600.985871868, 9635681.203815894, 9635731.328058813, 9635748.4375, 9635753.125, 9635798.4375, 9635845.373201037, 9635854.6875, 9635935.070863014, 9635957.312301058, 9636006.25, 9636006.25, 9636028.85109569, 9636087.5, 9636296.132948522, 9636324.825615453, 9636439.82003866, 9636470.3125, 9636486.977773968, 9636489.962487591, 9636526.852436034, 9636534.689627087, 9636550.0, 9636566.201473111, 9636578.830207696, 9636633.766697207, 9636679.138256306, 9636697.752086226, 9636702.22185419, 9636733.318466363, 9636801.5625, 9636809.375, 9636815.625, 9636842.1875, 9636903.125, 9636913.750887971, 9636963.525339006, 9637025.84187317, 9637041.370478036, 9637053.595378473, 9637204.6875, 9637231.811046112, 9637280.329731634, 9637362.5, 9637367.1875, 9637395.3125, 9637448.978830881, 9637509.882824032, 9637526.249314515, 9637576.710257137, 9637580.647100644, 9637598.662263164, 9637670.23473922, 9637689.533393303, 9637768.257098563, 9637776.5625, 9637806.22635504, 9637926.5625, 9637937.68881517, 9637989.455063457, 9638075.828962684, 9638284.375, 9638296.875, 9638319.025904173, 9638379.50760236, 9638386.254537081, 9638405.549989428, 9638407.57988244, 9638541.805018043, 9638577.577999659, 9638659.375, 9638670.993339034, 9638687.885813762, 9638821.875, 9638876.5625, 9638893.748347959, 9638907.8125, 9639128.775178248, 9639128.976374444, 9639263.490149021, 9639285.904345794, 9639323.4375, 9639426.5625, 9639433.34798028, 9639439.790512068, 9639533.573091565, 9639580.454409719, 9639590.166653175, 9639689.996600717, 9639753.815359885, 9639884.144142475, 9639908.967222558, 9639975.78235916, 9640126.587913211, 9640151.5625, 9640174.276403146, 9640240.807114748, 9640267.1875, 9640343.498424223, 9640350.065452661, 9640385.498150108, 9640450.462337174, 9640453.605405, 9640488.176105263, 9640515.635532547, 9640801.520906381, 9640838.022304589, 9641031.24279905, 9641046.33295385, 9641107.8125, 9641123.604362514, 9641159.336051863, 9641185.30069302, 9641189.023464486, 9641249.691115221, 9641368.75, 9641374.819829486, 9641424.205316637, 9641579.6875, 9641627.586049499, 9641645.1271707, 9641685.508540642, 9641693.75, 9641727.065250715, 9641789.920852276, 9641815.625, 9641843.33996415, 9641855.38715915, 9641869.079045374, 9641918.918569932, 9641921.875, 9641921.875, 9641946.875, 9641978.848070145, 9641985.516462559, 9641997.855359871, 9642049.845404055, 9642090.889102096, 9642093.36776903, 9642101.222374761, 9642102.655041784, 9642125.0, 9642195.565696666, 9642206.25, 9642281.879535578, 9642285.532664087, 9642285.9375, 9642302.898063866, 9642317.770793606, 9642363.446756074, 9642377.611576, 9642436.402759092, 9642490.625, 9642501.027267912, 9642520.3125, 9642546.875, 9642559.152720522, 9642575.889150657, 9642627.184683798, 9642656.25, 9642679.6875, 9642688.240895968, 9642693.308368905, 9642698.104464388, 9642706.25, 9642725.0, 9642775.654315434, 9642776.170419728, 9642776.5625, 9642810.792435316, 9642821.250023844, 9642840.538388563, 9642863.735922754, 9642880.43158734, 9642886.260802656, 9642911.01290527, 9642990.625, 9643001.813778823, 9643003.125, 9643023.4375, 9643037.991963182, 9643046.287942624, 9643142.043199068, 9643151.960668689, 9643156.20404875, 9643200.0, 9643204.6875, 9643237.13110395, 9643251.361377316, 9643298.792831497, 9643360.9375, 9643384.337645441, 9643493.958475903, 9643507.8125, 9643518.725122187, 9643583.272136584, 9643628.125, 9643656.218979811, 9643663.301396666, 9643708.027354833, 9643737.246468436, 9643790.625, 9643815.29955854, 9643850.260521006, 9643866.18906723, 9643951.391561016, 9643959.110290289, 9643971.62811995, 9644006.25, 9644028.963679567, 9644085.530312866, 9644102.777951345, 9644109.21967539, 9644146.60272486, 9644212.5, 9644231.713210385, 9644263.47985673, 9644405.226107888, 9644422.585456511, 9644440.138617814, 9644471.441218812, 9644475.36081226, 9644557.112792954, 9644565.179153122, 9644590.967665907, 9644596.034844304, 9644629.6875, 9644634.204892546, 9644653.902324436, 9644687.029693276, 9644687.5, 9644691.17309673, 9644738.647924237, 9644776.30383717, 9644780.355548402, 9644871.701367902, 9644944.60889746, 9645034.326306218, 9645053.937074928, 9645055.650812572, 9645150.347033618, 9645185.80519752, 9645192.392898183, 9645195.788795436, 9645238.666742004, 9645252.963945366, 9645271.875, 9645281.384392696, 9645293.754473528, 9645364.0625, 9645434.665839676, 9645669.997363927, 9645744.180879613, 9645759.221523928, 9645765.625, 9645782.467132814, 9645782.868804641, 9645786.118872734, 9645819.181113565, 9645925.663292896, 9646055.694637164, 9646121.260375883, 9646171.537683364, 9646295.3125, 9646331.839086, 9646392.154986143, 9646451.5625, 9646500.0, 9646532.88490878, 9646568.04664878, 9646643.75, 9646812.5, 9646932.884887327, 9647642.1875, 9647947.908148745, 9647992.1875, 9648092.1875, 9648103.125, 9648213.117756777, 9648249.772743065, 9648360.9375, 9648364.0625, 9648371.274397824, 9648427.839102577, 9648492.816457747, 9648614.0625, 9648617.1875, 9648698.75251805, 9648865.625, 9648917.623319978, 9648975.297891574, 9648978.125, 9649053.872022942, 9649202.87947179, 9649225.302822484, 9649254.652977709, 9649398.4375, 9649469.470635604, 9649499.97447087, 9649562.452173004, 9649598.90668218, 9649651.5625, 9650145.381376348, 9650148.307766244, 9650607.610553613, 9650868.75, 9650967.458395656, 9651265.505342094, 9651279.820682919, 9651356.349772029, 9651572.830767173, 9651612.41599844, 9651843.71747412, 9651905.423469411, 9651976.855070142, 9652041.789401703, 9652143.71511772, 9652147.92767491, 9652575.0, 9652623.4375, 9652704.6875, 9652859.390363818, 9653328.907695921, 9653434.264693875, 9653442.339979474, 9653774.660810344, 9653966.388488695, 9654714.0625, 9654746.39005642, 9655232.676431408, 9655674.998623533, 9655934.375, 9655999.99535586, 9656002.68623046, 9656712.5, 9656845.3125, 9656914.437193787, 9657156.519259019, 9660195.257783215, 9660233.185203904, 9660249.967130719, 9661951.293601412, 9661951.653746918, 9662210.521203125, 9662868.77493339, 9663283.463164972, 9663360.906989435, 9664050.223159252, 9664665.646927496, 9664853.125, 9665331.25, 9665466.343761368, 9665467.1875, 9665474.723626977, 9666156.046742903, 9666473.191867629, 9666675.758368172, 9667210.9375, 9667917.037522117, 9668036.10262279, 9668164.0625, 9668714.177243544, 9669201.436383225, 9669828.605710426, 9669972.586182555, 9670263.593239713, 9670297.41909265, 9670589.0625, 9670592.722086607, 9670657.28539405, 9671499.284583539, 9671598.164098399, 9671646.875, 9672498.781136481, 9672503.125, 9672701.509282855, 9672950.25365081, 9673314.0625, 9673957.087686135, 9674068.75, 9674582.565980794, 9675195.3125, 9675363.46094711, 9675727.552033577, 9676234.178468501, 9676499.290073587, 9676738.797711277, 9676827.95035338, 9676973.201494025, 9680519.893527955, 9680932.887165044, 9681007.956692562, 9681120.3125, 9681132.325480966, 9681304.560098637, 9682068.409594439, 9682096.10915781, 9682347.920442984, 9682442.433985071, 9682710.9375, 9682721.574248608, 9682785.9375, 9682843.75, 9683036.509677237, 9683342.96193827, 9683463.71678712, 9683944.646278786, 9683945.3125, 9684038.43052468, 9684115.341023931, 9684314.980277367, 9684412.907767355, 9684450.0, 9684462.5, 9684517.1875, 9684707.8125, 9685150.460694743, 9685276.225585358, 9685775.807910562, 9685777.655635858, 9685841.63212596, 9685941.962329574, 9685962.47565214, 9685966.93982571, 9686125.961806595, 9686500.934383726, 9686748.4375, 9688887.363668129, 9689529.610422043, 9690591.058637984, 9690664.536477908, 9690678.57069941, 9690812.5, 9690831.068038318, 9691039.712792696, 9691723.396786759, 9691731.149857549, 9691751.022099856, 9692543.860276932, 9693819.249272237, 9694635.520609938, 9695049.317522144, 9696069.969667248, 9696414.024620447, 9696726.5625, 9696995.34316046, 9698305.569477238, 9699229.014225392, 9699332.355421027, 9700770.168480579, 9702340.438677158, 9703631.073447922, 9704225.674329663, 9704239.0625, 9704351.5625, 9705121.34426259, 9705126.538542736, 9709214.546655044, 9709979.579233848, 9710759.823798446, 9711257.390123233, 9711945.3125, 9712852.479371903, 9713635.22501502, 9715876.841580657, 9716997.532285841, 9717007.8125, 9717012.025069153, 9717823.85809692, 9718195.925457776, 9718696.056506956, 9720777.765566181, 9721215.625, 9734742.039423425, 9735834.007518303, 9741584.174027152, 9742037.72057174, 9742349.554174518, 9742562.178899767, 9742841.658370713, 9743077.192150969, 9744058.420115994, 9744371.875, 9744485.124036083, 9746295.714693444, 9746459.375, 9746915.625, 9747137.77535218, 9748697.836410007, 9749004.667476282, 9749524.551602809, 9749557.181568798, 9749707.549584655, 9749884.41942783, 9750073.017496143, 9750502.281502662, 9750595.365830885, 9752191.227667373, 9752415.240608528, 9752612.315787258, 9752910.1977428, 9753044.522758603, 9753615.501473613, 9757593.75, 9757596.875, 9758408.688558236, 9758611.085451964, 9758667.1875, 9759741.017694037, 9759748.399596922, 9759751.007022895, 9759866.436602281, 9761778.06502392, 9763332.497287337, 9763943.75, 9765541.029950885, 9767190.625, 9768256.25, 9768357.652694847, 9769057.450199023, 9771409.375, 9771790.625, 9772212.787306478, 9773835.62849395, 9774099.229164818, 9775816.081311114, 9776470.089194687, 9777502.874620551, 9779960.45539363, 9780485.9375, 9780586.599220037, 9780687.285135766, 9780793.558232754, 9781439.498496804, 9781752.680373719, 9782265.625, 9782978.822956873, 9783796.875, 9784244.891608816, 9790140.871966284, 9793355.702643381, 9796743.75, 9809816.982926596, 9822512.5, 9832892.881070245, 9845855.588965205, 9851558.702018242, 9852856.504544362, 9855545.3125, 9865128.125, 9878432.8125, 9887520.3125, 9898494.213823156, 9910998.287810616, 9912567.010939315, 9916965.675894529, 9917022.069588995, 9919925.0, 9939212.5, 9943049.498643428, 9943067.56290757, 9943856.550976483, 9946412.5, 9949541.456564313, 9949632.87216297, 9950668.70452473, 9950674.93235026, 9953002.013231328, 9953481.25, 9959494.338556586, 9961199.835414983, 9961848.67351128, 9962284.722107481, 9963346.871783152, 9963606.25, 9965392.910990942, 9966056.25, 9966107.8125, 9966586.474538464, 9967162.010399165, 9967923.675173173, 9969702.776079305, 9970020.81056682, 9971303.893524736, 9972079.6875, 9972609.146023655, 9973092.1875, 9973536.595152797, 9973668.75, 9974581.190804243, 9975349.473447692, 9975391.633343145, 9975651.5625, 9975654.361311082, 9975690.52745341, 9975697.742702289, 9976601.29881649, 9978273.895801581, 9978387.698656652, 9978694.589650473, 9980543.75, 9980707.482512144, 9981279.663467364, 9981282.8125, ...], [76.54737727244702, 10.007372227068414, 59.84326824869924, 59.95473627904815, 14.208800218622612, 33.28633280029103, 8.597062817054306, 7.050700707596102, 43.488129387463424, 5.702392154969599, 20.694386629314756, 5.426427835561646, 56.46806118805445, 12.91642366365063, 8.108377614308903, 71.03527396604304, 18.408488922020418, 30.219794570075695, 31.55877137600971, 26.305075508749276, 15.487398155640962, 20.833774310042923, 6.027781476801845, 15.28008749180048, 18.943403714157746, 29.818765928088418, 23.055200475644916, 21.374953087140263, 18.881122894191545, 66.74317594796099, 62.94695481312212, 9.845451451746149, 13.745711330789913, 30.17079358110376, 56.255488612564896, 38.93592050373183, 48.41225333493348, 56.82980264884122, 129.11888880814433, 61.12211831085776, 17.689290503768913, 44.327173776055, 10.93138676374985, 61.53395139912957, 33.53816394199613, 26.22512886290882, 7.923033263890262, 25.76516225837531, 21.217081401760712, 10.574587684967224, 20.46313134093078, 5.347524541407694, 80.16386768674465, 16.89767457945003, 99.17062890875874, 5.558726592579622, 26.47594973116062, 34.367109213411005, 20.812125325661928, 27.21746202152287, 7.354820026468756, 15.166590892421095, 87.37990465831588, 34.60429575686838, 59.83114111636335, 5.39941409578576, 16.63000107294008, 6.468687634368519, 8.524043547446563, 5.891165333949342, 28.559342680466386, 59.866885641450715, 6.713260748337217, 58.88182834523385, 29.81166761868034, 11.404106507936657, 45.0530228019517, 26.39688192637626, 97.98613763456088, 29.70571071990447, 22.897746890655938, 29.585557595820806, 25.711251570612017, 79.47550691641352, 19.45391327246367, 45.11699879773862, 23.552880760831968, 16.380265004170372, 19.467055822100864, 18.656462976769575, 64.17126567138715, 77.77935302796747, 11.989324163556484, 93.20984731245277, 89.59604102644697, 37.03994035769439, 17.147940674800438, 5.888289977272741, 48.46305111430507, 5.446461326783861, 13.597858556487493, 14.657979227368482, 6.460362880384456, 61.527256587648296, 16.460417698020027, 31.487524274353106, 81.12289285135236, 66.87955572575262, 29.888479277134095, 66.45034291699548, 33.78103603701278, 8.113114932642898, 23.749012959795614, 7.89031387513719, 22.812260154080384, 110.9239395269129, 25.659909494130105, 61.76204584606237, 29.645232193241675, 5.052501387119741, 97.14013350118358, 85.01969280441055, 21.98522973752223, 25.8444631129263, 22.727743588584378, 20.961845236765623, 58.204898718162255, 37.278053963824696, 63.284254062836894, 7.0690119626906, 9.36992767575231, 395.14911809999796, 15.190581492150669, 103.18080000066034, 39.08387185991225, 13.677332717810552, 17.57323119459794, 110.11747119375698, 65.23183047874332, 12.75933261295893, 41.656158066386844, 16.90219640990195, 20.17955900802355, 20.953544765053977, 26.99523795737194, 9.03366152590184, 67.84438592020072, 35.24319420118449, 18.168868667647423, 18.816688699185825, 14.104693469615093, 59.75384604996361, 6.4693892510547535, 108.79581581906403, 75.63989438398477, 7.273651845299965, 7.33848889808564, 59.184302064646154, 26.473376261001363, 56.31894253332133, 15.446465274815262, 57.77694327549415, 5.246590097257118, 73.93214870740778, 60.73536238984026, 149.50975282419478, 75.98203879231986, 11.691357244552455, 25.279761373945426, 22.13754227786937, 25.822140245894253, 12.16714819008595, 68.41815540767749, 66.72740300600425, 11.249542427788827, 36.34682233314287, 43.53717320913719, 15.241683645808068, 94.60198931252759, 17.747475641223765, 12.181724540746414, 34.46292948222634, 8.482387850241441, 25.00179448323744, 10.014328434070988, 13.875248474546392, 14.276807999985309, 19.626170986019556, 13.267924618707397, 13.566134853040063, 25.195166749447747, 15.842427611324812, 65.28098941269526, 8.217724195970716, 14.335440991257173, 16.81080108544249, 13.207455805162304, 13.810558076388306, 17.820528672492063, 63.67577078000065, 34.91563260442237, 5.375305051548255, 17.239950932128018, 22.095254891824524, 52.692468085199486, 11.677482745734148, 34.77195407601836, 84.17888880747964, 5.3059020312755925, 62.01565482689441, 36.90169344465715, 12.799996751974867, 47.8754692360106, 6.882165478227477, 10.625271025042123, 19.979388736133444, 44.20612183117504, 17.19446580232859, 5.156679492582803, 11.796343570411967, 79.8882478315679, 44.61928765729296, 5.376369669227889, 44.44025828250162, 16.94549867646001, 25.27012222005045, 10.234161888678091, 23.585408938041102, 33.03147794907859, 50.898919560522984, 83.94508428317118, 5.5380830421565, 55.868969879426565, 30.556143589076907, 99.04738883891463, 11.583488655194666, 85.03636211895586, 78.63153500848048, 19.616813133712732, 24.794747948783094, 43.59486575555584, 19.070176691279553, 55.42813613813491, 77.59644701799198, 23.878720038496713, 10.978068665798169, 42.801865910301174, 6.279723385258189, 55.14470611560307, 94.06726449245016, 176.17728461546704, 52.7666354606318, 55.40316363320604, 36.84841890254043, 10.384164590878322, 71.4004021704388, 6.665276942721877, 21.945783285719802, 13.40639010987153, 5.088263168968816, 114.12637375224863, 52.23128982447043, 6.945516906271109, 23.952118132152975, 52.815150360980546, 6.175351126984126, 24.251247883143645, 9.654094065395544, 15.213502623135641, 17.033519941682837, 22.572754554898353, 71.42342022641466, 34.10842164422898, 6.56035946231412, 34.89975234957556, 44.973874811974795, 85.46400487907513, 22.14283908206325, 16.343507197791663, 16.503706901799344, 17.171875043660133, 11.311307690954653, 57.64324977813528, 19.086832426140937, 36.63079090687986, 16.952231701528966, 95.26035073786775, 7.596459215357932, 38.54312629385926, 25.93967220198343, 15.001802854406844, 5.068200736877643, 15.131024728300021, 14.346404199820016, 95.95278161519232, 47.80594135092086, 9.912349660430278, 6.258023220263024, 16.79789822108009, 103.31034865729305, 166.8346107044157, 154.24122516870733, 13.123648249635707, 5.499766983205332, 62.848317233058694, 32.118832054025155, 26.427423897897036, 19.216846224416184, 53.152917270333916, 37.28438884515923, 9.054053208970425, 47.72237505716237, 58.598931562422706, 11.822156437733055, 20.193374689178587, 48.241488051945154, 122.3560947624028, 7.262566267463468, 6.769019984418622, 7.576853058206228, 50.52710134064347, 9.336624317066313, 13.77239097478178, 19.53224997990272, 60.56359930448285, 71.00982537931355, 39.69380856027087, 14.569464829533308, 16.79617071325278, 23.07983554321708, 6.214731615542634, 54.97574006832054, 56.1474402712147, 8.747562369096935, 13.36582638490767, 66.07779118068926, 36.415959955392, 22.389851201437466, 67.358007235088, 27.499593326179987, 44.52766384608884, 76.16050425857486, 63.16493106956769, 42.777054357871506, 157.67283512278442, 101.13791128266998, 24.87372992373699, 9.165924379793282, 70.4225180634285, 27.60244363074797, 32.26747878907563, 80.6494646551537, 36.960111707347025, 5.697143704486842, 16.485552971296727, 6.623290563310577, 11.652884418012777, 24.693543039672683, 71.22724956005428, 18.522442508825755, 6.398826794156139, 166.47724946585916, 141.3868824494744, 61.85842549066281, 26.363084461049716, 73.32956154061577, 5.3730726639326605, 22.916590097024685, 47.16737771301341, 140.5311840267264, 15.94030371876849, 67.59700370915334, 5.23358416626932, 12.147139729397331, 11.116376390780157, 21.101051462934898, 89.49101952505293, 25.528977826967054, 16.476355262930465, 19.897964133107656, 70.7904166463111, 55.48175439940769, 75.02865485485871, 56.85119936014388, 135.10337569006367, 227.41975321046584, 21.11885711887233, 37.881536028400994, 68.950909933702, 13.15521608517531, 41.44796938039265, 36.810919230412125, 97.7545251996449, 8.926744817952601, 72.17105277180694, 11.396304144253081, 91.57888192350737, 27.642861770181018, 6.277111167037117, 106.06088260558897, 30.012861189435874, 112.64867246034929, 5.166777686431874, 62.220673132125135, 61.427490388882994, 21.491115925654277, 30.909633209717096, 39.628150049520436, 106.20635542984932, 63.662159515205204, 11.967074298644864, 14.316038348087885, 10.066168171610238, 78.22644923275085, 21.274212410750177, 12.90195955843749, 24.6088837732724, 6.12144040747292, 49.954869836454186, 111.89701934005666, 18.541990173876414, 13.038904476606433, 43.6568991697813, 25.773032553122505, 12.342700269191551, 5.483910493314055, 77.25177747820653, 83.50483511598337, 52.5643109664412, 29.695930519272476, 59.450452364419405, 23.60353872991683, 13.225410153995018, 19.542458921219378, 18.822840571582223, 33.63013194069035, 42.96615854070459, 20.172878421767194, 44.4303054152505, 48.5331808528982, 33.347053168175016, 67.0438136047331, 73.73826065294669, 5.078248747023825, 23.200476849746806, 48.60168574114998, 86.83539776145057, 9.528970113130708, 79.58481925598755, 5.305857860363037, 5.897600138403436, 102.6104238909549, 28.065296538058394, 38.163910716058076, 130.57787293525428, 55.913834053732316, 19.347335711955033, 30.46781667244171, 39.16241026410627, 38.39137203811359, 17.00202605757562, 6.537965154652375, 12.809725938627656, 27.620666097452467, 10.57823333582126, 6.404631733800879, 51.4209276373361, 105.75314635689517, 28.469680947015107, 74.85077772280282, 60.67039397659419, 28.49252080644146, 60.874042166351856, 91.55961041442126, 10.1725088709612, 6.197496409892493, 108.49451631565967, 55.56363310694522, 59.76532162341762, 9.829315746749566, 39.80662725593411, 13.518099702693856, 33.18613772317434, 79.78678170212655, 12.987628749875583, 35.61653410950393, 9.143541645263662, 13.585923493520859, 27.3430174163115, 106.34774340478086, 238.7009426077393, 64.467087715795, 6.10724453257436, 41.69064298289528, 69.00361206140346, 19.684399171984303, 66.97384005869625, 40.390284678121404, 5.215836425414149, 7.311293815829928, 14.98180710100114, 16.848934567381793, 46.541656648401776, 34.82068252328827, 149.43294354366566, 50.02185459150413, 9.476596029797538, 67.32923287799, 57.58522972334201, 67.37303490612757, 22.401734309417208, 33.74895767203946, 39.72305538623579, 114.23636196036836, 47.927772824320094, 21.113152967649093, 40.83039721859363, 13.524913724061694, 54.68658073816167, 46.36820911769098, 6.947887885339308, 60.914338040797965, 31.253024373176867, 18.50414520410184, 16.363887252928563, 9.478125352742916, 28.875686177720542, 143.5878383768469, 46.60780024841014, 157.28930510193777, 203.51057516990133, 5.8902633945282075, 168.39684957816468, 9.565167328214976, 13.660590868194134, 14.207798419314202, 21.798110781218895, 47.73782938591293, 105.88143693623557, 69.47960724549021, 12.278443142246498, 7.018949280157769, 62.4668004922081, 40.544807547493804, 31.87489356358291, 55.89362385366026, 37.000368351505244, 131.48178504022292, 43.243032940004895, 5.673520596972104, 85.44701063361906, 40.41808353829924, 53.775076452132694, 7.9599424411146655, 17.996018862690544, 41.703976272174465, 30.980101234662325, 18.79032601631753, 13.488798876310309, 7.036574716699674, 46.95947168444343, 89.2073357006248, 24.706892770237438, 40.47493160550689, 44.775572688553545, 100.7494761509842, 25.578032676118205, 32.5919891988766, 16.54858235731358, 14.174030466604092, 27.262520341862466, 9.395986970475041, 49.266028304370884, 126.67237979647462, 57.52342346565955, 48.89423088269908, 25.181057401399055, 20.66649768641461, 14.418620147982145, 11.812857924624142, 7.586702024020897, 50.347700316346966, 127.83039071017848, 13.700047141049103, 14.173618008356135, 16.494151038542036, 40.836919200466625, 26.60654725790552, 24.763718126835833, 59.24682469431423, 11.08904256525405, 11.931142242424531, 120.69992126679489, 52.73310640789554, 78.94465674576918, 13.730002975999888, 14.05586601613641, 58.72823566463407, 53.055578505902325, 42.135033729503, 34.75338244453168, 62.882596223055174, 87.55165293214813, 14.07720762920776, 88.77735077800193, 12.752185248252593, 13.587635347630952, 93.9779399031143, 10.893304086963479, 117.68029629135094, 40.51139297133463, 9.756398494172632, 27.42999568225799, 39.667845724961865, 33.64802437133011, 13.363497397394376, 35.95039522005963, 16.521667869267027, 10.185719049759294, 13.476846613292564, 95.51182237320572, 18.660160920919964, 80.80083583106102, 7.542850005946999, 6.61626204129083, 132.6800013009323, 99.92498088063176, 53.07724212115031, 124.2832037640996, 250.83634289025377, 8.674549738414584, 25.5112948304176, 67.8739374003123, 77.2019874931255, 10.127495464647607, 5.504689988447135, 11.717228881726026, 120.20714193765103, 6.80521742391605, 17.521044747946647, 46.488584400246424, 32.98423546846536, 51.117406934549415, 15.479749136492718, 14.958587871212883, 130.6197235886739, 16.179455430175608, 23.55930574932759, 16.88475131929811, 44.96921159432331, 325.1099512463417, 23.188035034060842, 84.53930594246884, 43.09718703784028, 16.885999884313936, 44.31672535697214, 74.90113104239823, 7.986263724687552, 36.4362179338326, 33.47892367842051, 68.06278781895556, 40.469009435547584, 90.9167873137881, 39.79967621567718, 11.24280452086728, 10.181496578572485, 56.31588296893741, 33.29623560609611, 15.224785823253795, 39.358564548513826, 13.246372304228357, 80.59809461567478, 36.45426493764159, 56.814587379223255, 114.25120056634663, 10.79014558572004, 31.102610032175882, 159.35661730745085, 51.15994882500149, 6.707740775643875, 17.60819149244174, 60.840470401659935, 32.747348278104326, 107.56333731638861, 99.53367707369813, 16.91117021631013, 16.213070465804407, 48.76491894930436, 109.62272749514231, 26.429738619063478, 16.23668875059674, 11.074171605477915, 96.86000172883155, 18.648289887898315, 65.86416658710766, 6.261174623272057, 9.762350326567828, 42.47218503576836, 23.42482419125047, 64.12706547706526, 25.089617012993088, 42.41423794836021, 16.57394361992442, 46.246243289707834, 23.011664974332245, 15.335937264546693, 20.490597009719195, 17.835348617081486, 114.7024659782289, 12.512670124451649, 16.187686602085822, 29.123004184830812, 27.852786660505732, 21.395646441355126, 108.27261692690139, 58.46447381814506, 75.19566235527445, 19.32972486229119, 28.783259087986377, 33.50008439078784, 15.556386117320052, 70.43685919135193, 55.920969007133586, 77.37448337224441, 13.43333794139572, 54.885870257102034, 28.497971611431986, 78.94607260548581, 28.43349577063078, 39.79211792142495, 67.92675920694498, 76.32923215243456, 7.2235583140829265, 11.576381004314445, 46.81449204148896, 25.213848905969073, 8.269271649514321, 5.450342272793779, 5.712589917989299, 72.86905280251389, 20.51356897618944, 126.70013202737348, 11.080349380372887, 144.5823080031116, 5.94131738156509, 44.07160422038142, 56.341036935150626, 55.46527340779993, 36.28117794584076, 40.22451524636921, 23.76110719730044, 24.470976314953322, 18.915099145952883, 31.45100965724329, 32.81678361217256, 15.610587173386282, 102.47778057194812, 9.43034718092487, 7.558251528135736, 5.738050299695938, 18.582969606752336, 21.805325733980645, 9.838136305524614, 31.383137661327833, 5.644319550476528, 17.290972417063895, 11.627969619097906, 13.992665639356115, 41.16073963572252, 7.732440654182284, 44.77587682857013, 27.5141085264008, 8.425426955751865, 75.04227128299819, 19.509719377778918, 41.02688839997251, 9.131307412895588, 74.49786881326898, 13.684650880092452, 40.074600541316286, 15.337301032194041, 19.626773787712395, 49.452120203850505, 48.81032615063866, 24.60410734433664, 22.341361033609257, 91.7112509963686, 5.715996673263286, 45.18675872149984, 21.623577081901992, 26.237892778083065, 32.7455477466069, 73.57958360648126, 35.66853855860416, 6.813733731851538, 105.71614049547559, 13.907006821320266, 56.38012165378343, 85.2127710077626, 17.686965069154724, 28.856698930228383, 32.19433549182871, 40.193426239506444, 37.14472674614122, 12.978567831658422, 145.6355047555506, 19.410558140760955, 24.462531650462545, 84.45232991657414, 45.295599031745176, 54.33917925392207, 69.2067101480129, 11.933211266589936, 66.91294710327979, 32.43336774198289, 99.14068349334775, 5.323244524979932, 8.170987749488539, 28.051891382650634, 14.074654357600556, 229.34113265766533, 40.92755307567296, 60.9510801237936, 8.215774960125147, 27.087695769972054, 9.727116339142938, 5.73760217587041, 68.50421406323927, 60.75608583881082, 15.500363052511887, 43.97714570401605, 5.810973963575409, 14.573073900915864, 145.4473705006691, 7.150745008406867, 5.306762643683056, 31.55039931004319, 16.072783302404005, 10.631027638143657, 69.99237719750789, 46.438803226862575, 11.87858544259182, 8.81542303765768, 42.720082896075205, 109.08356092618186, 34.33304516053692, 7.073319507782739, 38.538939952485016, 38.181887508993526, 54.62785391177475, 48.02012782991397, 21.19186187200094, 11.090465405717731, 42.41341948914253, 53.69879656228301, 54.66561865960844, 115.30489663955827, 117.97251488869195, 50.89610170316895, 19.606528390183303, 24.612301422099314, 15.58634212157053, 72.81389038296297, 28.384748147898193, 29.373292035597196, 55.83950175627923, 89.30008365997116, 26.8419342471219, 43.696488883634906, 82.02916702112842, 73.61665362764141, 40.0157972610522, 29.44586352355066, 8.980885845189942, 29.372739793412933, 19.887477337001513, 19.70461283089104, 6.153650445864711, 39.869976427287796, 19.0852354534194, 67.59775722417265, 50.130334166809924, 43.17551370461124, 5.83463881939418, 37.91619406199497, 19.96593715340937, 10.492397860919828, 7.97891644048619, 24.23629410971238, 74.4240270943443, 59.59516753378352, 68.32497105225207, 11.212102310974885, 12.22142100217057, 36.77020840439451, 59.001517820183956, 12.714105886204282, 26.756806320217947, 7.559163059668951, 47.620045059822765, 86.60724541122659, 112.94489365747582, 11.367117661490896, 37.24751284010925, 88.51788752457324, 11.068974217081772, 20.956979822318687, 19.30889552439195, 14.717732362064295, 10.668335634502307, 37.765336610267724, 36.58928895156925, 42.16376148581463, 244.95691295635285, 29.10912593424638, 11.928896828021273, 72.13780458287168, 54.284116978893756, 16.75332312062467, 7.495172479120716, 64.02830653736885, 11.924647267271403, 104.98249480381061, 28.183172634238563, 75.0125285748923, 32.51284668156937, 18.250680509040013, 151.00895097236378, 14.257711248834438, 5.480796447158311, 28.1123693547272, 38.40938563744074, 6.602366345799629, 90.08449789629331, 30.414335382594743, 16.57585831188154, 105.85290529989581, 40.01740459906854, 25.051343305835832, 31.04333777231353, 88.11677215586326, 261.3800165864964, 55.38443965083681, 26.553733430467084, 88.3674439567594, 84.276933468247, 41.38667912243698, 45.770053687446975, 17.904012308185912, 25.881473176726335, 35.45915095397769, 8.313675832646096, 5.072451987510567, 76.34432662107886, 38.51677472708806, 31.161118125242034, 108.29726086378426, 11.633166353285144, 56.29419014718711, 7.358662689911592, 5.166753428574153, 101.60093275010792, 27.254297195553267, 59.41278643940839, 81.52693239947388, 96.659916174245, 25.649666816916593, 9.539268659047949, 55.34502895146997, 9.328684628229404, 133.40422107342323, 7.32557430988757, 45.84961137202531, 98.27815954278091, 121.7688021267481, 84.94442571160312, 91.6987253100736, 86.92507617002454, 17.253829433796543, 12.587098349967281, 59.446279333849546, 26.546018633898314, 46.74882317613334, 74.85119027121253, 51.81867586682957, 6.477851643083886, 40.492759687090896, 173.17438180632269, 88.63125949279757, 27.15862433047415, 6.254952226398432, 10.191417105190485, 74.69521249018649, 38.109111820733105, 5.348775316107049, 12.75451631991356, 105.19964164371339, 13.817103801791399, 44.34029429398012, 126.790537573985, ...])
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)