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 = 45418
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);
([4829563.275391486, 5784031.25, 5852665.16641451, 5877575.262456552, 5880946.759894085, 5885027.71713615, 5905712.456418668, 5926273.4375, 5936325.0, 5963176.96994904, 5969664.0625, 5981818.673401122, 5991108.880144907, 6003881.12138258, 6005885.9375, 6006290.625, 6072422.173131524, 6072921.875, 6074096.954395922, 6078629.6875, 6102676.5625, 6105199.508939471, 6109629.7020206, 6110945.47789075, 6113020.3125, 6113085.9375, 6119700.445925793, 6120234.309107502, 6132357.693881452, 6132499.867429469, 6134390.625, 6134411.161466264, 6134834.375, 6134870.611778371, 6135009.33134382, 6145825.560630322, 6181405.507079655, 6190551.5625, 6208270.3125, 6218732.767647064, 6220633.54940755, 6220945.3125, 6221732.8125, 6222226.507510906, 6222360.9375, 6222736.958772159, 6223132.620973488, 6223193.396530905, 6253445.3125, 6254767.1875, 6264001.5625, 6268026.339797792, 6284777.689870097, 6286265.625, 6286330.719036249, 6287949.639027723, 6288852.756925729, 6289214.759657681, 6289718.139386893, 6289743.3143155975, 6291706.482347624, 6292604.7082798015, 6293009.9621170135, 6293013.528987155, 6296096.164768344, 6296379.608827499, 6316229.468924911, 6316627.353018747, 6316796.201668733, 6322059.461709139, 6322506.180372887, 6323077.843535469, 6323714.285898136, 6325264.0625, 6327840.625, 6327880.702792013, 6328001.5625, 6328391.815618493, 6329464.914496754, 6329767.817681145, 6335671.875, 6342412.5, 6358387.5, 6359682.412803022, 6359770.542715669, 6359829.381352584, 6360509.980721212, 6360554.6875, 6361717.088631997, 6363963.330417913, 6364044.820550537, 6368107.8125, 6368360.8003601935, 6368700.445703281, 6369073.478350365, 6369337.5, 6369694.855611287, 6369748.339526789, 6370949.764752988, 6376209.056483933, 6376253.125, 6383406.25, 6398065.097460012, 6399377.511217786, 6401120.3125, 6401123.239004873, 6404121.536918046, 6404521.875, 6405564.043536754, 6405640.500439194, 6405963.328155884, 6413121.816295115, 6414363.44776692, 6414371.0196612915, 6414898.4375, 6416809.375, 6426540.625, 6427714.694878498, 6430198.4375, 6430247.405950009, 6431083.701927037, 6445511.7719812915, 6445796.668840306, 6451126.301503449, 6452088.381670156, 6454448.4375, 6454619.1414764915, 6454960.9375, 6455271.875, 6455635.986368492, 6456906.715799211, 6457024.131676883, 6457785.9375, 6457960.804948767, 6459190.625, 6459359.50665739, 6460154.50389221, 6460177.2732351115, 6465028.7891382575, 6466830.272689876, 6476971.875, 6477202.684846763, 6477944.841121431, 6483953.516586021, 6485687.737212061, 6487990.652514326, 6493443.7104047835, 6496867.117914344, 6515300.964494732, 6522805.218981268, 6524006.024817706, 6525372.340671767, 6528868.652239526, 6529992.1875, 6529995.427499421, 6530008.425143466, 6539021.441197745, 6547830.6709506195, 6548284.665664493, 6548591.041019531, 6548959.877457996, 6549104.6875, 6549615.83875925, 6552313.243798232, 6560162.996956506, 6568645.3125, 6573570.3125, 6573634.884797465, 6597349.236814463, 6598880.940501419, 6602647.774460934, 6610583.939987613, 6610834.375, 6611003.125, 6611321.419941795, 6611392.1875, 6611793.71565019, 6619004.315442307, 6621624.560779661, 6633096.875, 6646517.4149229275, 6676130.027197803, 6677444.130479346, 6679550.0, 6680756.746793245, 6681159.850814507, 6682944.0292351255, 6682945.3125, 6683037.985170861, 6683050.0, 6683092.776926821, 6683307.749408901, 6683332.7640967695, 6683342.24083003, 6683348.352402229, 6683606.7387621375, 6685893.75, 6686140.628066331, 6686906.631961402, 6687017.1875, 6687305.99293336, 6687424.602731289, 6687775.585340878, 6688639.167389976, 6689746.292379198, 6690196.769725078, 6690589.616064252, 6691740.304243837, 6692433.581796977, 6694450.0, 6707940.458307624, 6710670.3125, 6710904.223766053, 6711443.77404319, 6711683.535951015, 6712221.46766104, 6712314.015757211, 6712695.3125, 6713521.875, 6713746.875, 6715631.063394546, 6715675.822324603, 6716392.134940088, 6716563.115021683, 6716750.857325037, 6719367.082453721, 6722484.375, 6722843.917151549, 6722948.4375, 6727819.379338353, 6728857.102537498, 6736896.49884817, 6746646.459181628, 6753545.291553946, 6761664.0625, 6762527.933803698, 6764905.142036515, 6765284.375, 6765412.632414518, 6766007.743934292, 6770852.834317705, 6776970.409465477, 6783582.8125, 6785098.476517447, 6785652.890975399, 6788324.89810175, 6796877.183135303, 6805389.932711973, 6806104.6875, 6806390.07132438, 6806995.3125, 6807084.375, 6807086.468497832, 6807459.61100703, 6807858.1307084635, 6808014.0625, 6808771.875, 6808874.174013925, 6809079.494543522, 6810089.0625, 6810510.9375, 6814029.6850535665, 6814541.538268752, 6818035.486375008, 6819387.161732161, 6824813.98390435, 6825663.046413249, 6837605.701483291, 6837624.7128067, 6842582.8125, 6843896.54693619, 6846127.32291144, 6847465.312287486, 6853336.797480767, 6853626.5625, 6862196.875, 6862607.8125, 6863767.1875, 6864421.875, 6877032.994592153, 6877760.323655369, 6877841.74101965, 6879778.666738645, 6881530.103832967, 6881622.929984646, 6883704.124175519, 6887953.1697603725, 6896079.498203431, 6896753.044010786, 6897335.9375, 6897851.5625, 6898141.310035901, 6898340.625, 6899406.25, 6900129.9568009935, 6900727.89134024, 6900787.217656203, 6900876.1002888, 6900912.5, 6900969.282014194, 6902262.206571191, 6902529.6875, 6902915.4715786725, 6904150.101457876, 6904509.157572918, 6904796.730865335, 6904860.564076106, 6905190.119091132, 6905215.187641475, 6906292.1875, 6906292.454701907, 6906296.611320767, 6906419.2980255475, 6906617.532206571, 6906873.4375, 6907180.762208071, 6908645.512319641, 6908756.723591535, 6909153.593946224, 6909222.829090232, 6910213.503447513, 6910665.399647896, 6912347.797611064, 6914642.995743018, 6941662.5, 6953156.6137268655, 6967531.25, 6967976.5625, 6968247.738952293, 6968303.125, 6968705.791693311, 6968770.668864776, 6968988.443533512, 6971483.052854737, 6991737.5, 6991741.326276047, 6991882.8125, 6992162.815783981, 6994006.25, 6994951.019983993, 6994953.931047703, 6995115.475995337, 7000751.5625, 7007868.313955568, 7010078.045107639, 7011782.30126326, 7012298.4375, 7012750.947395427, 7012888.015223602, 7013536.809839766, 7014102.555703038, 7015456.6852803035, 7019623.063265006, 7025572.275289964, 7028575.981716948, 7029781.25, 7034738.024000622, 7036240.625, 7036255.688687543, 7036260.963960036, 7044164.0625, 7048070.319773122, 7048094.596588171, 7049857.434530868, 7050728.125, 7054616.642103965, 7058489.0625, 7080339.0625, 7082091.506846437, 7089195.875342465, 7089561.376182481, 7089718.451658896, 7090250.0, 7091051.5625, 7091302.282905115, 7091832.650219134, 7093272.15281644, 7093664.953419035, 7093984.375, 7094154.637763347, 7094293.675538697, 7097596.875, 7098390.122432097, 7111050.722952179, 7118948.634386731, 7126162.5, 7136054.357634006, 7140315.7287242925, 7141262.5, 7141939.63568731, 7142276.336827621, 7147940.625, 7148122.732289716, 7149595.4736483805, 7150614.08420691, 7150990.569543048, 7151650.912628727, 7160594.254120805, 7160609.021025946, 7164668.803902699, 7169088.011113166, 7170673.867068534, 7170689.413636675, 7173922.884883208, 7179342.1875, 7179871.588890043, 7180808.587292011, 7183273.376110953, 7184022.214718508, 7184113.037357853, 7185052.703531367, 7193655.5797794275, 7199217.1875, 7200021.565826534, 7201814.0625, 7204821.854771209, 7207787.944226826, 7209065.998726095, 7211719.075750418, 7212914.0625, 7217261.790886313, 7217529.682314888, 7221121.875, 7221431.25, 7221860.686094151, 7222528.125, 7222675.770108293, 7222678.125, 7222709.180110512, 7222960.79736889, 7223051.5625, 7224036.851207268, 7224227.071727569, 7224406.213158744, 7225775.0, 7226786.250658378, 7236501.436813405, 7241698.4375, 7242339.993856262, 7271158.688392343, 7271762.436329466, 7272406.096766226, 7279464.0625, 7279948.4198401235, 7280232.662164716, 7280282.988031428, 7280312.14016323, 7280376.037460322, 7281435.9375, 7282006.25, 7282223.52636914, 7283009.080025999, 7283370.3125, 7285101.5625, 7288476.5625, 7290190.625, 7290668.911792363, 7291148.420913686, 7291436.875454339, 7291667.059598346, 7292713.606995777, 7294519.726980764, 7317081.185514873, 7324781.324462273, 7325790.357201688, 7326547.619073969, 7326664.0625, 7326702.296794209, 7343167.769530133, 7345299.654053681, 7345955.496840732, 7345976.5625, 7346063.421575237, 7346192.1875, 7346473.4375, 7346872.356504945, 7347355.159461135, 7348557.8125, 7353610.9375, 7355658.065130761, 7371479.907646951, 7380381.25, 7380757.8125, 7389878.125, 7390509.375, 7391529.6875, 7398014.0625, 7399274.765595088, 7412046.875, 7429113.270970214, 7431001.117239089, 7431141.280255832, 7431151.140175196, 7431196.626345047, 7431230.5895778425, 7431246.339908621, 7431313.677642472, 7431372.2510819025, 7431392.962422858, 7432853.125, 7433006.25, 7433846.875, 7434274.742374087, 7435000.0, 7440246.1539225215, 7441193.455626268, 7445246.875, 7445925.0, 7453685.614082647, 7456004.6875, 7458598.4375, 7462636.669749881, 7463374.126388245, 7464304.116114695, 7464400.0, 7467455.003627812, 7470161.46758238, 7470932.675313468, 7471998.73355873, 7477195.3125, 7477203.849850157, 7478101.320649925, 7479171.77140641, 7480110.857850872, 7480581.310853675, 7481635.670095201, 7482294.100241474, 7483251.292756611, 7483493.990420503, 7487812.5, 7487929.587736116, 7487930.212345291, 7488654.6875, 7488656.123161486, 7488656.289053231, 7489670.896828602, 7489865.088871031, 7490142.248791026, 7495258.160427595, 7496794.024710595, 7504384.375, 7508385.330070611, 7508645.370169438, 7508842.1875, 7512284.352028226, 7513357.777626946, 7514489.0625, 7516285.763939612, 7517534.375, 7524714.486962717, 7538395.3125, 7538409.755979842, 7563145.3125, 7566861.130870493, 7568573.133319981, 7579808.8429646315, 7581890.493746843, 7582142.1875, 7582677.44549114, 7584718.968916131, 7594279.677754374, 7596262.540107686, 7596782.294674629, 7597720.867105627, 7601718.75, 7603372.7836658, 7603446.586217999, 7605426.5625, 7606665.625, 7607905.376955435, 7610505.910283094, 7611020.235976877, 7614525.92142694, 7618635.764671765, 7640093.75, 7640096.875, 7640229.285271922, 7645231.701874234, 7653587.5, 7654621.1085633375, 7654816.026513627, 7654934.375, 7655109.099827274, 7655523.4375, 7655668.578836941, 7656589.266057933, 7657208.442321939, 7674710.961905064, 7678639.0625, 7678787.971326056, 7685792.1875, 7702687.109220289, 7713698.4375, 7716268.953797337, 7717745.915080608, 7718085.998965441, 7719010.9375, 7719309.375, 7720357.411687026, 7720364.044458711, 7720462.5, 7722075.0, 7722902.906389812, 7722929.961072789, 7722950.250800844, 7723709.361017629, 7724093.383212513, 7724310.9375, 7724609.150330483, 7724876.5625, 7725124.372444613, 7725896.830900453, 7727293.129987251, 7727447.861875952, 7727488.85959269, 7728930.2439079555, 7729126.537446719, 7732370.7909333445, 7733227.018857111, 7737493.24767257, 7738245.350239928, 7738627.92474719, 7758689.554723859, 7759303.776265598, 7759777.326790949, 7760081.185695622, 7761694.770598259, 7761716.997380577, 7762016.937027098, 7762491.553589235, 7762651.5625, 7762755.803755674, 7762891.5892264, 7764859.116436623, 7764934.944427773, 7765684.375, 7765909.375, 7767153.332152882, 7767176.5625, 7767992.5955096, 7768096.433728375, 7768432.214846583, 7768736.932277259, 7769204.6875, 7769723.4375, 7769835.453625977, 7769847.786604729, 7770182.921635475, 7770268.75, 7771245.510528065, 7771802.65157965, 7772723.87444709, 7773046.636975324, 7773723.891529922, 7774313.812640778, 7777046.875, 7777087.986123869, 7777185.5897192275, 7777239.49364389, 7777707.26674633, 7778011.46592914, 7778345.609766135, 7778561.927364219, 7778841.088585288, 7779303.125, 7780615.169748535, 7782209.094062439, 7782505.948113544, 7782651.5625, 7783510.910338618, 7785543.411631286, 7785548.4375, 7785595.3125, 7786150.0, 7786197.6454811795, 7787100.467756698, 7787948.891342433, 7788557.8125, 7791998.4375, 7792027.391489582, 7794973.405968152, 7795149.819193635, 7795528.761402274, 7797159.375, 7797595.03175474, 7798853.125, 7799507.206563103, 7799563.506235372, 7800056.105097739, 7800176.371129373, 7800557.8125, 7801509.59849675, 7802587.456803809, 7803783.880119918, 7805832.3215635875, 7805833.440393571, 7806004.47754561, 7812958.406847769, 7824442.1875, 7824799.639164276, 7827396.875, 7828348.211192468, 7828665.625, 7828667.543889133, 7829215.625, 7830435.69797104, 7833646.584076002, 7835915.625, 7836141.621864343, 7837028.776072924, 7837029.796570372, 7837304.37784032, 7837556.115844552, 7838856.8881472545, 7845637.5, 7846050.064583855, 7846304.7724548355, 7846401.456223967, 7846424.244622026, 7846459.127345238, 7846514.789931804, 7848864.0625, 7851362.101054459, 7855743.75, 7856665.8969867565, 7856727.902759606, 7857062.993335847, 7858144.670223239, 7858653.125, 7858660.938106156, 7858757.536365766, 7860480.147598401, 7860573.181828572, 7877085.138025822, 7890466.990681692, 7891492.1875, 7896263.83401994, 7896618.75, 7899534.333899743, 7925055.182003609, 7925130.877560948, 7927418.126098473, 7928164.0625, 7928809.543626911, 7928992.1875, 7929000.0, 7929249.683315273, 7929473.4375, 7929634.049839032, 7929984.375, 7930225.143655689, 7931216.427547204, 7932722.404524765, 7933228.125, 7934655.825431393, 7935076.5625, 7935372.666875339, 7935410.624552019, 7936198.4375, 7937667.396835655, 7938434.081020451, 7938504.4494759375, 7938631.768911142, 7939496.875, 7940084.375, 7940139.0625, 7940710.860754379, 7942196.201815876, 7942284.848979176, 7946404.117052707, 7949035.965021876, 7950000.888876959, 7955601.5625, 7959291.443740348, 7967062.5, 7969360.9375, 7969897.662134566, 7970653.527410399, 7970967.8580829445, 7972499.69798809, 7973139.715771642, 7973177.564204766, 7978078.950498801, 7981163.1892215805, 7985357.539887277, 7985554.487750282, 8001546.875, 8006666.280071947, 8007057.509508092, 8009214.0625, 8009906.25, 8014398.507086615, 8016435.9375, 8036520.3125, 8037342.1875, 8039682.8125, 8039684.199565075, 8039766.040945215, 8040084.235956204, 8041270.3125, 8052166.82267145, 8052791.186916363, 8054847.753326863, 8055797.888028809, 8056049.212419731, 8058443.310177404, 8063291.82799741, 8063951.362333238, 8070582.8125, 8071681.144505958, 8072812.067419493, 8076158.137933041, 8100947.23556124, 8101521.130185235, 8101581.168350663, 8107055.451184765, 8123725.0, 8131678.538401413, 8133644.925153703, 8134056.25, 8135209.277239032, 8135971.875, 8139721.75044481, 8143226.4095413545, 8143456.25, 8165541.863443556, 8168963.862484749, 8169604.6875, 8169635.9375, 8169674.778152444, 8169699.548203861, 8169968.812873343, 8170101.5625, 8170714.520741703, 8171044.473237339, 8171926.236964797, 8172260.533280122, 8172421.592303531, 8172425.0, 8173134.129052149, 8173265.42154464, 8173340.625, 8173443.75, 8174065.321792499, 8174250.32883207, 8174900.0, 8175195.3125, 8175207.693435242, 8175822.961354331, 8175885.937175764, 8176137.933371077, 8176446.875, 8176535.553587028, 8177568.75, 8177628.844891973, 8179120.3125, 8181738.928826199, 8182104.654616695, 8182176.5625, 8182370.715284013, 8182745.969675194, 8183844.686547683, 8184189.399089888, 8186912.893715647, 8187395.749613826, 8188126.3985771295, 8188239.6713448055, 8189435.130347578, 8189905.212061559, 8189928.125, 8190586.575838526, 8190650.0, 8190709.48398818, 8190710.610692703, 8191623.087281599, 8191651.164239043, 8191675.0, 8192221.124269434, 8192258.575745806, 8192362.446520999, 8192553.125, 8192894.843293206, 8193256.25, 8194898.4375, 8196368.640543257, 8196843.75, 8199384.97231707, 8201380.977336554, 8202410.604330108, 8202583.432446061, 8204879.341039106, 8205204.334119442, 8206387.118650758, 8206529.531844554, 8207566.7460479885, 8222159.375, 8224310.910091141, 8227204.654823673, 8231852.319711725, 8232526.5625, 8233217.587794896, 8257209.371213877, 8263690.018501424, 8264141.703404339, 8272729.6875, 8272737.109565418, 8274256.738082783, 8279566.209870496, 8280170.3125, 8281252.170647338, 8284553.125, 8286203.125, 8286223.4375, 8288725.288598479, 8291134.724056463, 8296403.125, 8296851.850311527, 8296898.129784107, 8297453.915283271, 8297506.25, 8297737.385057327, 8299541.99405332, 8302085.751808091, 8305198.133686782, 8309365.526818381, 8312246.410052971, 8312423.4375, 8312523.698890681, 8312960.1434758, 8313201.5625, 8313229.6875, 8313324.178340981, 8313328.125, 8313580.606459594, 8313602.063482313, 8313811.972498053, 8314735.772163252, 8315212.035069287, 8315296.172145769, 8315722.622438678, 8315824.897370684, 8316445.3125, 8317947.059739111, 8317987.229431591, 8318282.3876891155, 8320374.553395063, 8320387.0414596405, 8325673.4375, 8327087.485948694, 8329132.046124508, 8330119.930024422, 8330990.625, 8335905.581119341, 8336669.379245459, 8338742.1875, 8339526.252535126, 8340540.756335185, 8340607.8125, 8340716.96733412, 8340911.223303687, 8341155.594184165, 8341157.8125, 8341225.0, 8341292.1875, 8341447.168773384, 8341502.928410274, 8341834.17029861, 8342053.04675272, 8342876.5625, 8343018.7825000845, 8343355.242740558, 8343398.4375, 8343495.3125, 8343559.375, 8343580.259196465, 8343621.135582982, 8344533.025968135, 8345123.782625339, 8345469.788383033, 8346934.540030398, 8348888.988927052, 8355362.159533816, 8358408.504339007, 8359741.6592492005, 8361764.905691982, 8369529.305623271, 8371875.64710423, 8372642.178028684, 8373508.592111637, 8378704.636206134, 8390403.461171025, 8395805.914027156, 8397695.545951776, 8397909.041599894, 8398961.669484777, 8398996.875, 8398998.4375, 8399514.0625, 8399742.1875, 8399777.589833288, ...], [6.615921595458925, 46.04901873423071, 30.471670040464673, 7.701004580393041, 159.21909551141565, 13.585672966635073, 7.587550748848871, 46.27490202389174, 31.286270171246365, 59.80544447458807, 51.56630449779512, 55.1726778299287, 115.53019041793179, 26.218142297298858, 41.31184946289767, 36.68875081493237, 16.21421761518542, 70.99990185112632, 15.25301848211503, 55.86120106681246, 32.46377541177143, 54.68776200006721, 115.06080657640763, 112.22910266898177, 50.70460702280959, 39.53574246368398, 16.96555967992087, 197.42895621619957, 33.57937802861328, 59.293090650899465, 38.237562567216756, 17.512406046072204, 65.28369191822057, 58.77169179603207, 14.777682987196238, 5.560922745187271, 8.773397648970573, 63.74033537596611, 72.09866271241168, 71.85448326793835, 28.529022383339004, 45.978242016407115, 57.8928816168089, 45.49478389301125, 54.044519992868594, 21.09145843303051, 81.55066720886633, 13.746112135233147, 63.71223241916056, 95.44358203696834, 31.038429845624734, 7.064115221564328, 23.899538954844175, 76.28090389220941, 21.189682862787013, 36.29688913165737, 56.07555373103813, 23.165331867700413, 106.54920046539462, 23.703593249085415, 11.511399503152184, 20.232191300498215, 64.96095158188109, 8.917654787479888, 15.768886769888642, 223.75847662461035, 46.812474068603116, 10.10309880225106, 19.92233202991462, 26.78198593676835, 21.78619050201306, 13.96725379313037, 35.29065517169636, 60.14125212290387, 89.76438909041465, 21.034756211240474, 45.66921518331801, 22.874018873149545, 36.969321720211774, 18.04677666216225, 56.211628211615974, 65.35908674046505, 32.27208384627488, 22.555643677828535, 213.06658731214011, 9.085292819110606, 132.2480444416788, 45.432556064970385, 38.3535678744797, 19.453220746460776, 5.676148370667549, 30.640110382610132, 9.21807464959561, 220.56569479642738, 248.92365040611602, 70.65649074838504, 51.28486746716284, 95.1679988749912, 138.35146457464978, 43.381894913913825, 53.49985213285212, 40.2727835758076, 6.662567317452112, 20.428493245908886, 39.63400821027849, 139.1537645333696, 23.276187817195076, 46.75989909743021, 7.5963933704067275, 137.10863501317783, 19.43572288339347, 119.23920714160825, 93.14401864240313, 132.0329096537462, 129.97518909040934, 68.2318256574461, 58.81296693545993, 143.22797629782593, 32.9951983040478, 27.182719779541397, 6.636181891954714, 12.36780607642149, 31.180104346829772, 24.262078720646734, 25.728106200375606, 98.46081872315114, 16.677948738500017, 79.54379748587809, 61.247278355814984, 11.204960297653056, 91.02857956109352, 151.7325139127499, 44.44722941856618, 90.52548225353122, 111.27496262331893, 23.14915025211662, 5.60396663477241, 8.701947018983706, 43.58594853909895, 17.766032570869438, 40.02704959329066, 5.7821150292957455, 13.405122925077592, 11.800408771179043, 18.20816464901571, 6.270680873674227, 43.876633706533525, 8.250118896827423, 67.86431851305211, 17.445588148517903, 23.597906095226143, 8.549204493237832, 67.77497833889717, 67.08342059892519, 129.1531027478947, 50.22508240711591, 73.15344476321893, 279.2070147873617, 16.178622792424505, 93.4699626287897, 12.015781160915548, 56.99784009680758, 11.479114813916247, 18.8109036415249, 77.76179503969186, 73.7071582658813, 28.80408618129916, 5.985066348729761, 31.791209613756696, 96.81635812053963, 92.2215846620312, 40.74208560935139, 53.97706935479597, 74.6825664876927, 13.450839685163759, 32.224353104597135, 11.074436982404343, 118.00785647007801, 22.121621378900986, 55.821722430118996, 11.502817798274426, 7.73090189012828, 8.498579519915019, 50.21840130395633, 58.283341534903535, 17.129209899178754, 6.117626683920456, 68.73716388009987, 17.18131409475017, 217.17512581794247, 110.9708495081589, 101.0619249455685, 5.459692846202101, 6.093662684075334, 102.92109793972176, 17.66669364687053, 33.02406788610198, 12.913356764298866, 34.72196025232191, 46.47567979447504, 58.35029221118096, 95.38319976232818, 97.80616249628568, 21.72848537717809, 30.20963043434039, 26.603587777501776, 24.015509335630114, 72.1975763210334, 5.183673783425494, 99.46257063665455, 95.71331846391156, 162.98861350283426, 10.4727636498614, 9.351816129570132, 47.79693483784314, 13.587194999351228, 27.6325817176008, 124.89333706806435, 70.66226355855078, 63.371163652342304, 14.274960181365023, 127.54266286100977, 110.47617636962863, 143.38972066992207, 19.66451377304875, 21.728476240910563, 67.18075145889824, 82.01281772974063, 42.94318220971764, 12.278021571091784, 12.78557992227672, 7.472629154878283, 13.562668230687793, 11.095123851690337, 31.33873115402008, 53.32905431983373, 17.012275178836255, 128.80732267048475, 45.276728383638854, 6.749894725631768, 23.870496592849303, 13.476141107670168, 71.88660681901688, 15.092340772757733, 72.63271346687675, 6.254409531227571, 24.617966791169366, 12.828558179525084, 34.9783670880211, 21.400869454088443, 192.4576748654743, 109.12789205948371, 6.874357814058779, 25.060899163916726, 7.207689051289168, 61.79320823560277, 75.27476782155084, 25.869119733180913, 27.288605842877004, 46.436319111582165, 33.41633654239737, 55.934417444594565, 8.83679933001993, 8.977014871720085, 29.76274111247144, 21.00595929193682, 45.87323231760237, 45.71838409467, 6.442994234691207, 53.356146620377956, 136.0610987204569, 18.929831445198005, 10.671734566600206, 271.52140097533544, 44.474802606049245, 40.243082269836776, 69.34003989713756, 50.50312233472377, 79.12971938871843, 18.67370956685007, 41.59225698039136, 42.13189334426934, 31.581841479016866, 22.973759788010653, 13.305510267506149, 60.24500700400043, 15.114904418686171, 52.1005191527361, 113.88845985177399, 45.282667366900355, 55.64759794809253, 9.98662047425488, 54.33614510875477, 80.4234084320101, 201.8873417808062, 26.012408155040973, 23.978925971110527, 21.87853229529336, 99.50223862088004, 12.075309587485714, 6.706306359977762, 78.17953129780203, 38.66117553813959, 81.03022257473935, 7.065446033248626, 9.21243196956543, 99.30907010346282, 13.309892116495515, 22.545355433550558, 42.80114205056099, 16.068153620767532, 14.023486434644939, 15.035300759298407, 8.477682705325908, 52.49920549531612, 21.615752866295328, 87.337587666458, 30.07287780652607, 26.1292258232724, 20.475780065593636, 55.32002770450418, 14.146927942764739, 6.962824759998074, 19.283417747103993, 70.14904921297676, 7.740311330709804, 29.084839752130634, 63.20516819205644, 18.63816130159592, 96.58003841285802, 23.347973671950264, 106.49507391275463, 15.574239716081092, 75.25469195019137, 70.24081140878624, 38.955346620717634, 67.75759416172072, 98.88956920850512, 86.94959830983063, 6.985787454133705, 6.374707070285069, 245.6499231337503, 118.83682418904405, 18.441895619328232, 27.038432217486545, 19.6686300482342, 76.2613570871234, 23.558331842797294, 17.351582666510105, 27.205083583646307, 87.4544885851892, 16.908278859884888, 73.32487404959912, 23.440949552107586, 20.723399194759793, 59.97758506908652, 8.584582192497349, 46.16813471773744, 13.161204766488277, 11.16931895578395, 99.27600890695184, 14.969303808483083, 88.60547654550712, 22.803392568890583, 28.62259560729139, 21.051896116167963, 65.85812608005936, 61.47306652515462, 12.857088639681548, 154.22672851619387, 7.241748859270691, 23.771954918966415, 29.638127644661097, 61.53832586319256, 18.646690090420552, 56.73199979704646, 6.3029483632021615, 59.19099021337436, 40.591112584867204, 27.57764728599733, 109.17172777586859, 115.32160359420331, 21.467522227264702, 27.22756135385268, 15.749095849048402, 31.504005209895187, 91.9183021616575, 41.18418013115381, 101.83034073510805, 12.159790448193094, 10.792383027853331, 38.52296231952939, 10.179344845371443, 5.953563241743354, 5.941298125948779, 34.29728495967605, 124.11711113654337, 17.28815479073361, 10.616102601579527, 15.151020087594905, 113.57257032517282, 54.53491372983792, 6.54358072812988, 20.983800819267124, 39.499960460499295, 53.74811189507884, 89.55627318633049, 14.712574238182874, 16.41644106934092, 5.419421879753739, 27.56842319820626, 19.947983123639887, 70.15368504701031, 23.634266342380418, 53.42292394635817, 8.275908893620226, 11.901138690640622, 9.668751793640558, 9.622918557814643, 51.5350690156542, 12.787634001703065, 29.94516851491272, 53.32598918212835, 63.39356831412457, 24.069495431141995, 79.27881932437288, 10.080187546079353, 49.797134406108434, 35.155588170949365, 48.46441511012821, 62.37804529626467, 20.12699945916786, 12.02933459756053, 27.816129277408653, 134.57958984589845, 7.720569699444161, 20.19029151654676, 53.46767907731688, 26.253886365855383, 19.81379465066738, 27.325346319937754, 25.825859277379607, 38.74755331675503, 14.40518718084343, 5.802939854566194, 18.995366063476737, 37.12575995276217, 158.47603108447083, 50.90410056553892, 72.23101124941756, 7.63569952468811, 14.57715002862793, 53.92539059451171, 50.93199343683928, 58.196849799750474, 49.33925311156436, 109.37236861389431, 25.51828891865034, 31.96328030289791, 36.775995017510525, 10.483283795289113, 27.441332516780726, 19.81581179602535, 20.845724491928735, 24.170977148972714, 12.531073006904423, 89.27361801526686, 18.74373545807358, 8.620372910986083, 31.24371565123527, 6.93660892964393, 51.28193014682232, 82.66658118545674, 82.98839261859158, 50.340796738082076, 97.73570112435613, 90.00635127369422, 58.84587923849411, 45.51534163151066, 5.472715224725018, 15.852701678510028, 33.04196332744419, 35.20357511510811, 32.97724131622849, 61.986473382205105, 90.4801842326493, 88.90933084397864, 24.6264206630286, 43.677309051087114, 47.6383413106616, 68.92352149733657, 24.926489997711823, 21.21898641365735, 110.30455823090558, 143.530843646109, 135.66954442856297, 22.724122221966887, 25.69111762213229, 19.03532394283127, 52.466462252386115, 49.87679758106616, 106.8550412317434, 10.747561333227203, 39.89122357606424, 15.529051569359519, 7.500128164433063, 63.58718042374891, 87.30029559384965, 23.456156191336316, 48.798334636805585, 72.20913793938078, 26.729052375740284, 72.40027540626683, 13.13469989196333, 69.79366878252775, 9.613820366443827, 20.32557568734414, 37.714157251111494, 52.24512823393332, 67.13326129593845, 18.6776057701417, 24.52307555005197, 7.566194503230728, 27.04268135470079, 6.775716649831879, 32.400087192706714, 16.468707037518207, 22.69676916897803, 20.57075241954908, 96.57269042155889, 9.248448125764968, 12.060786254897844, 29.51469545516117, 14.479138222253038, 11.189303162094978, 129.86715786622855, 55.086598800845685, 6.77580484741661, 62.205747277424884, 17.613000659132176, 31.484737475751732, 75.95947254935606, 87.30017391978599, 45.750964275875695, 131.1717010341998, 33.252008361316555, 40.64869340480117, 19.248910406688914, 55.63026278932316, 39.008275155219394, 89.9127542628259, 6.128634551840097, 29.637425354155358, 233.83587502671776, 5.9133463229823, 31.30926499433407, 48.90049408449051, 56.27083305359869, 19.87164011282675, 15.84717223709272, 38.365458419850846, 22.510972328863065, 124.29343906153385, 27.735330239298186, 58.74911220701429, 29.183943465063876, 5.063682313876876, 65.02434957950743, 36.205950689408695, 7.873209294109014, 23.256332905241603, 106.73752614390688, 20.192502662848774, 9.189421024331857, 38.02240866873009, 59.610154810774134, 74.02458874112341, 125.81322841127155, 30.068285963786714, 53.73463268263541, 16.729977695039487, 56.9758408787069, 25.07161931287385, 46.96257597631339, 6.070478808840589, 6.519481279532551, 151.4747967831168, 15.03535322695651, 106.94812718604412, 18.407247493215742, 34.32790079690741, 93.13092427783019, 54.045708507159645, 87.47414081094246, 36.54736452220787, 24.155274091755842, 100.67372195832004, 149.16033321536207, 63.50125449049673, 14.873187485204278, 45.283857639420425, 43.10611938637128, 24.849206750137736, 5.473632394301578, 11.543739427009399, 29.071584095573755, 9.039394394121599, 101.56422264073193, 7.063619239766715, 48.79734616235266, 40.90398689346274, 34.43254918863867, 12.831259533920303, 72.07586214951304, 7.069115805267488, 16.12489369204605, 5.531865860865016, 17.143751182484696, 24.453189798775007, 80.1230657768877, 29.813332859161406, 5.038185370276188, 17.220872664177733, 26.970188994995738, 140.27439500542118, 37.870294858762456, 39.9290749008223, 46.01548596461572, 151.4342253479283, 83.71544231885387, 37.877724487620995, 102.0179729379201, 66.2127096884581, 9.121941299326808, 46.794491298755794, 50.29507294942233, 56.56396422661884, 25.762335713221354, 78.8082126741242, 16.913671048208208, 31.239382062514935, 222.873914198792, 13.144318825147614, 248.93308131460736, 37.32468675052477, 62.617436582310646, 94.7920592015629, 11.30268777135066, 45.00656949683236, 53.63724324185493, 30.10425130079611, 11.887046983953283, 14.105766279964765, 17.00951720594161, 10.758398437079718, 100.5357603296317, 205.3113012901242, 23.58240981365493, 15.91014676967966, 79.32092313688347, 26.357131187648115, 6.305500839934124, 20.797880817759534, 11.938868909434998, 48.01330407875653, 166.37176537264415, 15.87273850531879, 56.689340956725545, 47.585533883160664, 27.998385461613903, 23.272702383254053, 88.47760058234608, 76.35262381471293, 30.746382632237058, 25.559126275130076, 25.2057864883402, 5.258027469277334, 112.46691270202986, 55.94388632157073, 12.728990830236928, 8.269972848532051, 16.06653263054025, 78.9601160088496, 79.42420346215633, 103.90572394114022, 108.39588283659354, 66.498968561201, 7.413717949664389, 25.957044947537614, 14.50115650539513, 44.951864002319766, 11.495990793136107, 11.060853029618123, 146.30722215136024, 21.583993352427512, 11.074654383266797, 24.973385382205723, 17.822241676189485, 36.96454154571927, 23.003556869200043, 50.74271678740235, 27.761946908670183, 50.2387422213891, 9.65209762762269, 85.59939270050529, 53.8680608998132, 23.867371469676588, 56.41494517662295, 30.896185232595446, 6.15852718631398, 19.32784739486573, 23.628131878590835, 36.33495164173729, 28.93843060635281, 108.72548871566566, 96.74152404223656, 81.80790715659428, 23.93290308977274, 65.62721130249716, 6.236407942798981, 7.326768134212051, 37.151834691340206, 61.298787886620964, 53.13449775040834, 16.090514565425583, 48.503979215413835, 60.864376312378184, 33.302480298844564, 70.51570903878347, 11.128654396129518, 21.957226266845048, 6.56171831189055, 33.45883725761947, 25.12465463691627, 112.33090458519852, 61.253157696683196, 15.711215891434655, 48.287224027214876, 58.71794580173002, 8.566617674061908, 34.32271158370012, 10.274958671366381, 58.96936443962413, 159.20088590181535, 129.793617557817, 145.6953467345743, 6.438568147521686, 73.31224922789045, 22.405856491728898, 50.08249867509986, 62.1675984292753, 19.240416371740086, 5.559344068414433, 178.77200504115382, 86.97059242588276, 44.623617366454965, 46.020916975024406, 28.878545757234022, 76.3569077208931, 9.514911126625922, 60.81026137336214, 14.105768262375518, 162.75903602928162, 35.0028088520813, 115.77739319153744, 66.81710723472652, 27.093527110057856, 98.51360699536541, 17.11903875539803, 74.27304480818579, 15.04745790959005, 42.39289172627759, 41.03857142319955, 41.136801127323196, 68.98429022124527, 39.34225936965843, 29.802100519136285, 16.734647602518354, 30.341095782812992, 13.903095533755007, 9.952461357200725, 13.162570054191619, 19.415220764411234, 34.87941254810365, 24.106995660080724, 70.54719931926768, 74.25797117222601, 53.90366062049505, 171.85829163170555, 95.60291092202041, 122.5300484209981, 20.74675189984509, 28.859589030737666, 97.6254079912573, 66.87000064671217, 76.74413943280426, 25.48393564188606, 35.69989529242254, 14.436763257512434, 41.07234367369748, 31.012627321839126, 9.856481156086017, 138.34823627353975, 21.935084680358003, 94.97489422198657, 62.35433230985588, 23.019313561504354, 25.11562530495677, 60.005171543673164, 26.1271604062325, 123.14622092759167, 16.346203772267547, 11.742288458030375, 7.928418517046093, 41.18162910447454, 12.575947536533205, 62.619783772018785, 16.7921700860662, 24.596296089465664, 81.48656044440266, 71.3375275833536, 47.20606509449461, 44.75636799526164, 9.205332335210324, 69.94487734424925, 46.54712401164016, 36.483264653250345, 53.48403969104525, 45.18183445059125, 24.8031456408016, 85.11639748685946, 62.032111042662564, 41.05636161491554, 35.498163536090985, 18.66637304552442, 77.17154753327048, 102.79225147256935, 44.02976937743463, 49.50589818573629, 68.44932118584367, 14.218873990291279, 40.94760643400274, 46.677271735753905, 67.76954310158821, 16.36284161568143, 42.26101850128135, 74.55684442694505, 30.689110814604202, 49.44490586693565, 43.85121250402318, 16.89806068144621, 75.16760350876402, 22.734951708331067, 78.03453438055298, 10.02458589934364, 267.69451549773873, 96.39655204593552, 11.076694161223923, 88.38947853202721, 66.2370596303024, 33.259452886796666, 5.11734605540927, 119.05465887559036, 37.45130912007442, 95.47717367479538, 25.65986518374542, 9.905371979097865, 27.141119403399586, 108.50642719499612, 89.61984756442114, 7.300009496867544, 53.321821010705314, 15.373856727203357, 8.121000169752334, 105.67052067207251, 72.50356497996238, 28.539471713866302, 64.54291365288387, 24.918196741224126, 14.741516500990237, 61.82679208162614, 21.80587896417856, 96.87179243959046, 59.2028328129636, 26.61046924617326, 38.63220866076312, 92.44667649911368, 113.98262905666384, 9.064729345468557, 12.25799699503466, 10.62615954710691, 33.023011887615866, 35.34824272577383, 152.90491461937, 8.984085270438806, 55.47389059781948, 122.22483377493803, 33.38375582706544, 12.561081320694448, 32.93611640068184, 13.207844024625707, 28.45039234848353, 5.888272733619658, 21.65323532803485, 31.78732246106116, 13.636482239679049, 51.03068426109491, 17.76408074434253, 36.48197936981194, 24.242880127595583, 50.721271948619766, 96.55442605958217, 56.051447056632576, 7.711064045991557, 64.22496686778541, 101.82186612655117, 16.16507916088388, 10.678538373058501, 39.144888024686225, 28.91984083887973, 14.520782405421338, 25.21442639310977, 10.849354652218716, 48.95031326840579, 52.55155680087012, 70.09445905799667, 72.90140596956053, 7.191901411028121, 12.58698545438932, 38.89819194400821, 53.50683986733115, 18.789936716968725, 59.79758531055017, 14.765319697000017, 15.225798960466147, 15.464153238892335, 87.15120975276596, 65.18774904751456, 6.630856093507591, 21.46326405123235, 10.970992297313424, 52.335905828927125, 32.450790017198315, 10.729583300617328, 22.277441313107854, 19.2649012669885, 24.707079111291076, 154.39491825583113, 14.888221532068817, 15.876517851387783, 12.677818690534046, 85.19917767219025, 32.35833767186267, 38.00939343784934, 141.5202807340253, 13.87849163627709, 49.20312126203337, 52.80984583487421, 14.163873459948192, 22.171817802899895, 6.022455815375605, 43.478232438507334, 69.19135267068714, 65.00226572492463, 21.473023818756147, 5.4533914820715506, 25.049482248903942, 27.067201900344223, 30.826294826446485, 61.93856480459965, 6.3399938122321435, 82.95236480387365, 50.36108992505172, 29.25100078910037, 9.866599287803124, 19.396628510152254, 145.10580148262386, 11.713707487163997, 32.632960735557035, 39.659697225703994, 53.64093346347454, 37.43722061829379, 26.24308164928832, 47.92529026508322, 20.413766837351446, 10.579032560333594, 12.316177000252878, 16.943191207666864, 32.43309815042983, 9.28840467257266, 9.632806707056238, 21.08225058269141, 32.372663818006146, 13.4117684456264, 10.037876935291594, 45.02973272043927, 42.34094953627559, 135.55088367299416, 29.394623543154665, 21.149322806400676, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([4829563.275391486, 5784031.25, 5852665.16641451, 5877575.262456552, 5880946.759894085, 5885027.71713615, 5905712.456418668, 5926273.4375, 5936325.0, 5963176.96994904, 5969664.0625, 5981818.673401122, 5991108.880144907, 6003881.12138258, 6005885.9375, 6006290.625, 6072422.173131524, 6072921.875, 6074096.954395922, 6078629.6875, 6102676.5625, 6105199.508939471, 6109629.7020206, 6110945.47789075, 6113020.3125, 6113085.9375, 6119700.445925793, 6120234.309107502, 6132357.693881452, 6132499.867429469, 6134390.625, 6134411.161466264, 6134834.375, 6134870.611778371, 6135009.33134382, 6145825.560630322, 6181405.507079655, 6190551.5625, 6208270.3125, 6218732.767647064, 6220633.54940755, 6220945.3125, 6221732.8125, 6222226.507510906, 6222360.9375, 6222736.958772159, 6223132.620973488, 6223193.396530905, 6253445.3125, 6254767.1875, 6264001.5625, 6268026.339797792, 6284777.689870097, 6286265.625, 6286330.719036249, 6287949.639027723, 6288852.756925729, 6289214.759657681, 6289718.139386893, 6289743.3143155975, 6291706.482347624, 6292604.7082798015, 6293009.9621170135, 6293013.528987155, 6296096.164768344, 6296379.608827499, 6316229.468924911, 6316627.353018747, 6316796.201668733, 6322059.461709139, 6322506.180372887, 6323077.843535469, 6323714.285898136, 6325264.0625, 6327840.625, 6327880.702792013, 6328001.5625, 6328391.815618493, 6329464.914496754, 6329767.817681145, 6335671.875, 6342412.5, 6358387.5, 6359682.412803022, 6359770.542715669, 6359829.381352584, 6360509.980721212, 6360554.6875, 6361717.088631997, 6363963.330417913, 6364044.820550537, 6368107.8125, 6368360.8003601935, 6368700.445703281, 6369073.478350365, 6369337.5, 6369694.855611287, 6369748.339526789, 6370949.764752988, 6376209.056483933, 6376253.125, 6383406.25, 6398065.097460012, 6399377.511217786, 6401120.3125, 6401123.239004873, 6404121.536918046, 6404521.875, 6405564.043536754, 6405640.500439194, 6405963.328155884, 6413121.816295115, 6414363.44776692, 6414371.0196612915, 6414898.4375, 6416809.375, 6426540.625, 6427714.694878498, 6430198.4375, 6430247.405950009, 6431083.701927037, 6445511.7719812915, 6445796.668840306, 6451126.301503449, 6452088.381670156, 6454448.4375, 6454619.1414764915, 6454960.9375, 6455271.875, 6455635.986368492, 6456906.715799211, 6457024.131676883, 6457785.9375, 6457960.804948767, 6459190.625, 6459359.50665739, 6460154.50389221, 6460177.2732351115, 6465028.7891382575, 6466830.272689876, 6476971.875, 6477202.684846763, 6477944.841121431, 6483953.516586021, 6485687.737212061, 6487990.652514326, 6493443.7104047835, 6496867.117914344, 6515300.964494732, 6522805.218981268, 6524006.024817706, 6525372.340671767, 6528868.652239526, 6529992.1875, 6529995.427499421, 6530008.425143466, 6539021.441197745, 6547830.6709506195, 6548284.665664493, 6548591.041019531, 6548959.877457996, 6549104.6875, 6549615.83875925, 6552313.243798232, 6560162.996956506, 6568645.3125, 6573570.3125, 6573634.884797465, 6597349.236814463, 6598880.940501419, 6602647.774460934, 6610583.939987613, 6610834.375, 6611003.125, 6611321.419941795, 6611392.1875, 6611793.71565019, 6619004.315442307, 6621624.560779661, 6633096.875, 6646517.4149229275, 6676130.027197803, 6677444.130479346, 6679550.0, 6680756.746793245, 6681159.850814507, 6682944.0292351255, 6682945.3125, 6683037.985170861, 6683050.0, 6683092.776926821, 6683307.749408901, 6683332.7640967695, 6683342.24083003, 6683348.352402229, 6683606.7387621375, 6685893.75, 6686140.628066331, 6686906.631961402, 6687017.1875, 6687305.99293336, 6687424.602731289, 6687775.585340878, 6688639.167389976, 6689746.292379198, 6690196.769725078, 6690589.616064252, 6691740.304243837, 6692433.581796977, 6694450.0, 6707940.458307624, 6710670.3125, 6710904.223766053, 6711443.77404319, 6711683.535951015, 6712221.46766104, 6712314.015757211, 6712695.3125, 6713521.875, 6713746.875, 6715631.063394546, 6715675.822324603, 6716392.134940088, 6716563.115021683, 6716750.857325037, 6719367.082453721, 6722484.375, 6722843.917151549, 6722948.4375, 6727819.379338353, 6728857.102537498, 6736896.49884817, 6746646.459181628, 6753545.291553946, 6761664.0625, 6762527.933803698, 6764905.142036515, 6765284.375, 6765412.632414518, 6766007.743934292, 6770852.834317705, 6776970.409465477, 6783582.8125, 6785098.476517447, 6785652.890975399, 6788324.89810175, 6796877.183135303, 6805389.932711973, 6806104.6875, 6806390.07132438, 6806995.3125, 6807084.375, 6807086.468497832, 6807459.61100703, 6807858.1307084635, 6808014.0625, 6808771.875, 6808874.174013925, 6809079.494543522, 6810089.0625, 6810510.9375, 6814029.6850535665, 6814541.538268752, 6818035.486375008, 6819387.161732161, 6824813.98390435, 6825663.046413249, 6837605.701483291, 6837624.7128067, 6842582.8125, 6843896.54693619, 6846127.32291144, 6847465.312287486, 6853336.797480767, 6853626.5625, 6862196.875, 6862607.8125, 6863767.1875, 6864421.875, 6877032.994592153, 6877760.323655369, 6877841.74101965, 6879778.666738645, 6881530.103832967, 6881622.929984646, 6883704.124175519, 6887953.1697603725, 6896079.498203431, 6896753.044010786, 6897335.9375, 6897851.5625, 6898141.310035901, 6898340.625, 6899406.25, 6900129.9568009935, 6900727.89134024, 6900787.217656203, 6900876.1002888, 6900912.5, 6900969.282014194, 6902262.206571191, 6902529.6875, 6902915.4715786725, 6904150.101457876, 6904509.157572918, 6904796.730865335, 6904860.564076106, 6905190.119091132, 6905215.187641475, 6906292.1875, 6906292.454701907, 6906296.611320767, 6906419.2980255475, 6906617.532206571, 6906873.4375, 6907180.762208071, 6908645.512319641, 6908756.723591535, 6909153.593946224, 6909222.829090232, 6910213.503447513, 6910665.399647896, 6912347.797611064, 6914642.995743018, 6941662.5, 6953156.6137268655, 6967531.25, 6967976.5625, 6968247.738952293, 6968303.125, 6968705.791693311, 6968770.668864776, 6968988.443533512, 6971483.052854737, 6991737.5, 6991741.326276047, 6991882.8125, 6992162.815783981, 6994006.25, 6994951.019983993, 6994953.931047703, 6995115.475995337, 7000751.5625, 7007868.313955568, 7010078.045107639, 7011782.30126326, 7012298.4375, 7012750.947395427, 7012888.015223602, 7013536.809839766, 7014102.555703038, 7015456.6852803035, 7019623.063265006, 7025572.275289964, 7028575.981716948, 7029781.25, 7034738.024000622, 7036240.625, 7036255.688687543, 7036260.963960036, 7044164.0625, 7048070.319773122, 7048094.596588171, 7049857.434530868, 7050728.125, 7054616.642103965, 7058489.0625, 7080339.0625, 7082091.506846437, 7089195.875342465, 7089561.376182481, 7089718.451658896, 7090250.0, 7091051.5625, 7091302.282905115, 7091832.650219134, 7093272.15281644, 7093664.953419035, 7093984.375, 7094154.637763347, 7094293.675538697, 7097596.875, 7098390.122432097, 7111050.722952179, 7118948.634386731, 7126162.5, 7136054.357634006, 7140315.7287242925, 7141262.5, 7141939.63568731, 7142276.336827621, 7147940.625, 7148122.732289716, 7149595.4736483805, 7150614.08420691, 7150990.569543048, 7151650.912628727, 7160594.254120805, 7160609.021025946, 7164668.803902699, 7169088.011113166, 7170673.867068534, 7170689.413636675, 7173922.884883208, 7179342.1875, 7179871.588890043, 7180808.587292011, 7183273.376110953, 7184022.214718508, 7184113.037357853, 7185052.703531367, 7193655.5797794275, 7199217.1875, 7200021.565826534, 7201814.0625, 7204821.854771209, 7207787.944226826, 7209065.998726095, 7211719.075750418, 7212914.0625, 7217261.790886313, 7217529.682314888, 7221121.875, 7221431.25, 7221860.686094151, 7222528.125, 7222675.770108293, 7222678.125, 7222709.180110512, 7222960.79736889, 7223051.5625, 7224036.851207268, 7224227.071727569, 7224406.213158744, 7225775.0, 7226786.250658378, 7236501.436813405, 7241698.4375, 7242339.993856262, 7271158.688392343, 7271762.436329466, 7272406.096766226, 7279464.0625, 7279948.4198401235, 7280232.662164716, 7280282.988031428, 7280312.14016323, 7280376.037460322, 7281435.9375, 7282006.25, 7282223.52636914, 7283009.080025999, 7283370.3125, 7285101.5625, 7288476.5625, 7290190.625, 7290668.911792363, 7291148.420913686, 7291436.875454339, 7291667.059598346, 7292713.606995777, 7294519.726980764, 7317081.185514873, 7324781.324462273, 7325790.357201688, 7326547.619073969, 7326664.0625, 7326702.296794209, 7343167.769530133, 7345299.654053681, 7345955.496840732, 7345976.5625, 7346063.421575237, 7346192.1875, 7346473.4375, 7346872.356504945, 7347355.159461135, 7348557.8125, 7353610.9375, 7355658.065130761, 7371479.907646951, 7380381.25, 7380757.8125, 7389878.125, 7390509.375, 7391529.6875, 7398014.0625, 7399274.765595088, 7412046.875, 7429113.270970214, 7431001.117239089, 7431141.280255832, 7431151.140175196, 7431196.626345047, 7431230.5895778425, 7431246.339908621, 7431313.677642472, 7431372.2510819025, 7431392.962422858, 7432853.125, 7433006.25, 7433846.875, 7434274.742374087, 7435000.0, 7440246.1539225215, 7441193.455626268, 7445246.875, 7445925.0, 7453685.614082647, 7456004.6875, 7458598.4375, 7462636.669749881, 7463374.126388245, 7464304.116114695, 7464400.0, 7467455.003627812, 7470161.46758238, 7470932.675313468, 7471998.73355873, 7477195.3125, 7477203.849850157, 7478101.320649925, 7479171.77140641, 7480110.857850872, 7480581.310853675, 7481635.670095201, 7482294.100241474, 7483251.292756611, 7483493.990420503, 7487812.5, 7487929.587736116, 7487930.212345291, 7488654.6875, 7488656.123161486, 7488656.289053231, 7489670.896828602, 7489865.088871031, 7490142.248791026, 7495258.160427595, 7496794.024710595, 7504384.375, 7508385.330070611, 7508645.370169438, 7508842.1875, 7512284.352028226, 7513357.777626946, 7514489.0625, 7516285.763939612, 7517534.375, 7524714.486962717, 7538395.3125, 7538409.755979842, 7563145.3125, 7566861.130870493, 7568573.133319981, 7579808.8429646315, 7581890.493746843, 7582142.1875, 7582677.44549114, 7584718.968916131, 7594279.677754374, 7596262.540107686, 7596782.294674629, 7597720.867105627, 7601718.75, 7603372.7836658, 7603446.586217999, 7605426.5625, 7606665.625, 7607905.376955435, 7610505.910283094, 7611020.235976877, 7614525.92142694, 7618635.764671765, 7640093.75, 7640096.875, 7640229.285271922, 7645231.701874234, 7653587.5, 7654621.1085633375, 7654816.026513627, 7654934.375, 7655109.099827274, 7655523.4375, 7655668.578836941, 7656589.266057933, 7657208.442321939, 7674710.961905064, 7678639.0625, 7678787.971326056, 7685792.1875, 7702687.109220289, 7713698.4375, 7716268.953797337, 7717745.915080608, 7718085.998965441, 7719010.9375, 7719309.375, 7720357.411687026, 7720364.044458711, 7720462.5, 7722075.0, 7722902.906389812, 7722929.961072789, 7722950.250800844, 7723709.361017629, 7724093.383212513, 7724310.9375, 7724609.150330483, 7724876.5625, 7725124.372444613, 7725896.830900453, 7727293.129987251, 7727447.861875952, 7727488.85959269, 7728930.2439079555, 7729126.537446719, 7732370.7909333445, 7733227.018857111, 7737493.24767257, 7738245.350239928, 7738627.92474719, 7758689.554723859, 7759303.776265598, 7759777.326790949, 7760081.185695622, 7761694.770598259, 7761716.997380577, 7762016.937027098, 7762491.553589235, 7762651.5625, 7762755.803755674, 7762891.5892264, 7764859.116436623, 7764934.944427773, 7765684.375, 7765909.375, 7767153.332152882, 7767176.5625, 7767992.5955096, 7768096.433728375, 7768432.214846583, 7768736.932277259, 7769204.6875, 7769723.4375, 7769835.453625977, 7769847.786604729, 7770182.921635475, 7770268.75, 7771245.510528065, 7771802.65157965, 7772723.87444709, 7773046.636975324, 7773723.891529922, 7774313.812640778, 7777046.875, 7777087.986123869, 7777185.5897192275, 7777239.49364389, 7777707.26674633, 7778011.46592914, 7778345.609766135, 7778561.927364219, 7778841.088585288, 7779303.125, 7780615.169748535, 7782209.094062439, 7782505.948113544, 7782651.5625, 7783510.910338618, 7785543.411631286, 7785548.4375, 7785595.3125, 7786150.0, 7786197.6454811795, 7787100.467756698, 7787948.891342433, 7788557.8125, 7791998.4375, 7792027.391489582, 7794973.405968152, 7795149.819193635, 7795528.761402274, 7797159.375, 7797595.03175474, 7798853.125, 7799507.206563103, 7799563.506235372, 7800056.105097739, 7800176.371129373, 7800557.8125, 7801509.59849675, 7802587.456803809, 7803783.880119918, 7805832.3215635875, 7805833.440393571, 7806004.47754561, 7812958.406847769, 7824442.1875, 7824799.639164276, 7827396.875, 7828348.211192468, 7828665.625, 7828667.543889133, 7829215.625, 7830435.69797104, 7833646.584076002, 7835915.625, 7836141.621864343, 7837028.776072924, 7837029.796570372, 7837304.37784032, 7837556.115844552, 7838856.8881472545, 7845637.5, 7846050.064583855, 7846304.7724548355, 7846401.456223967, 7846424.244622026, 7846459.127345238, 7846514.789931804, 7848864.0625, 7851362.101054459, 7855743.75, 7856665.8969867565, 7856727.902759606, 7857062.993335847, 7858144.670223239, 7858653.125, 7858660.938106156, 7858757.536365766, 7860480.147598401, 7860573.181828572, 7877085.138025822, 7890466.990681692, 7891492.1875, 7896263.83401994, 7896618.75, 7899534.333899743, 7925055.182003609, 7925130.877560948, 7927418.126098473, 7928164.0625, 7928809.543626911, 7928992.1875, 7929000.0, 7929249.683315273, 7929473.4375, 7929634.049839032, 7929984.375, 7930225.143655689, 7931216.427547204, 7932722.404524765, 7933228.125, 7934655.825431393, 7935076.5625, 7935372.666875339, 7935410.624552019, 7936198.4375, 7937667.396835655, 7938434.081020451, 7938504.4494759375, 7938631.768911142, 7939496.875, 7940084.375, 7940139.0625, 7940710.860754379, 7942196.201815876, 7942284.848979176, 7946404.117052707, 7949035.965021876, 7950000.888876959, 7955601.5625, 7959291.443740348, 7967062.5, 7969360.9375, 7969897.662134566, 7970653.527410399, 7970967.8580829445, 7972499.69798809, 7973139.715771642, 7973177.564204766, 7978078.950498801, 7981163.1892215805, 7985357.539887277, 7985554.487750282, 8001546.875, 8006666.280071947, 8007057.509508092, 8009214.0625, 8009906.25, 8014398.507086615, 8016435.9375, 8036520.3125, 8037342.1875, 8039682.8125, 8039684.199565075, 8039766.040945215, 8040084.235956204, 8041270.3125, 8052166.82267145, 8052791.186916363, 8054847.753326863, 8055797.888028809, 8056049.212419731, 8058443.310177404, 8063291.82799741, 8063951.362333238, 8070582.8125, 8071681.144505958, 8072812.067419493, 8076158.137933041, 8100947.23556124, 8101521.130185235, 8101581.168350663, 8107055.451184765, 8123725.0, 8131678.538401413, 8133644.925153703, 8134056.25, 8135209.277239032, 8135971.875, 8139721.75044481, 8143226.4095413545, 8143456.25, 8165541.863443556, 8168963.862484749, 8169604.6875, 8169635.9375, 8169674.778152444, 8169699.548203861, 8169968.812873343, 8170101.5625, 8170714.520741703, 8171044.473237339, 8171926.236964797, 8172260.533280122, 8172421.592303531, 8172425.0, 8173134.129052149, 8173265.42154464, 8173340.625, 8173443.75, 8174065.321792499, 8174250.32883207, 8174900.0, 8175195.3125, 8175207.693435242, 8175822.961354331, 8175885.937175764, 8176137.933371077, 8176446.875, 8176535.553587028, 8177568.75, 8177628.844891973, 8179120.3125, 8181738.928826199, 8182104.654616695, 8182176.5625, 8182370.715284013, 8182745.969675194, 8183844.686547683, 8184189.399089888, 8186912.893715647, 8187395.749613826, 8188126.3985771295, 8188239.6713448055, 8189435.130347578, 8189905.212061559, 8189928.125, 8190586.575838526, 8190650.0, 8190709.48398818, 8190710.610692703, 8191623.087281599, 8191651.164239043, 8191675.0, 8192221.124269434, 8192258.575745806, 8192362.446520999, 8192553.125, 8192894.843293206, 8193256.25, 8194898.4375, 8196368.640543257, 8196843.75, 8199384.97231707, 8201380.977336554, 8202410.604330108, 8202583.432446061, 8204879.341039106, 8205204.334119442, 8206387.118650758, 8206529.531844554, 8207566.7460479885, 8222159.375, 8224310.910091141, 8227204.654823673, 8231852.319711725, 8232526.5625, 8233217.587794896, 8257209.371213877, 8263690.018501424, 8264141.703404339, 8272729.6875, 8272737.109565418, 8274256.738082783, 8279566.209870496, 8280170.3125, 8281252.170647338, 8284553.125, 8286203.125, 8286223.4375, 8288725.288598479, 8291134.724056463, 8296403.125, 8296851.850311527, 8296898.129784107, 8297453.915283271, 8297506.25, 8297737.385057327, 8299541.99405332, 8302085.751808091, 8305198.133686782, 8309365.526818381, 8312246.410052971, 8312423.4375, 8312523.698890681, 8312960.1434758, 8313201.5625, 8313229.6875, 8313324.178340981, 8313328.125, 8313580.606459594, 8313602.063482313, 8313811.972498053, 8314735.772163252, 8315212.035069287, 8315296.172145769, 8315722.622438678, 8315824.897370684, 8316445.3125, 8317947.059739111, 8317987.229431591, 8318282.3876891155, 8320374.553395063, 8320387.0414596405, 8325673.4375, 8327087.485948694, 8329132.046124508, 8330119.930024422, 8330990.625, 8335905.581119341, 8336669.379245459, 8338742.1875, 8339526.252535126, 8340540.756335185, 8340607.8125, 8340716.96733412, 8340911.223303687, 8341155.594184165, 8341157.8125, 8341225.0, 8341292.1875, 8341447.168773384, 8341502.928410274, 8341834.17029861, 8342053.04675272, 8342876.5625, 8343018.7825000845, 8343355.242740558, 8343398.4375, 8343495.3125, 8343559.375, 8343580.259196465, 8343621.135582982, 8344533.025968135, 8345123.782625339, 8345469.788383033, 8346934.540030398, 8348888.988927052, 8355362.159533816, 8358408.504339007, 8359741.6592492005, 8361764.905691982, 8369529.305623271, 8371875.64710423, 8372642.178028684, 8373508.592111637, 8378704.636206134, 8390403.461171025, 8395805.914027156, 8397695.545951776, 8397909.041599894, 8398961.669484777, 8398996.875, 8398998.4375, 8399514.0625, 8399742.1875, 8399777.589833288, ...], [6.615921595458925, 46.04901873423071, 30.471670040464673, 7.701004580393041, 159.21909551141565, 13.585672966635073, 7.587550748848871, 46.27490202389174, 31.286270171246365, 59.80544447458807, 51.56630449779512, 55.1726778299287, 115.53019041793179, 26.218142297298858, 41.31184946289767, 36.68875081493237, 16.21421761518542, 70.99990185112632, 15.25301848211503, 55.86120106681246, 32.46377541177143, 54.68776200006721, 115.06080657640763, 112.22910266898177, 50.70460702280959, 39.53574246368398, 16.96555967992087, 197.42895621619957, 33.57937802861328, 59.293090650899465, 38.237562567216756, 17.512406046072204, 65.28369191822057, 58.77169179603207, 14.777682987196238, 5.560922745187271, 8.773397648970573, 63.74033537596611, 72.09866271241168, 71.85448326793835, 28.529022383339004, 45.978242016407115, 57.8928816168089, 45.49478389301125, 54.044519992868594, 21.09145843303051, 81.55066720886633, 13.746112135233147, 63.71223241916056, 95.44358203696834, 31.038429845624734, 7.064115221564328, 23.899538954844175, 76.28090389220941, 21.189682862787013, 36.29688913165737, 56.07555373103813, 23.165331867700413, 106.54920046539462, 23.703593249085415, 11.511399503152184, 20.232191300498215, 64.96095158188109, 8.917654787479888, 15.768886769888642, 223.75847662461035, 46.812474068603116, 10.10309880225106, 19.92233202991462, 26.78198593676835, 21.78619050201306, 13.96725379313037, 35.29065517169636, 60.14125212290387, 89.76438909041465, 21.034756211240474, 45.66921518331801, 22.874018873149545, 36.969321720211774, 18.04677666216225, 56.211628211615974, 65.35908674046505, 32.27208384627488, 22.555643677828535, 213.06658731214011, 9.085292819110606, 132.2480444416788, 45.432556064970385, 38.3535678744797, 19.453220746460776, 5.676148370667549, 30.640110382610132, 9.21807464959561, 220.56569479642738, 248.92365040611602, 70.65649074838504, 51.28486746716284, 95.1679988749912, 138.35146457464978, 43.381894913913825, 53.49985213285212, 40.2727835758076, 6.662567317452112, 20.428493245908886, 39.63400821027849, 139.1537645333696, 23.276187817195076, 46.75989909743021, 7.5963933704067275, 137.10863501317783, 19.43572288339347, 119.23920714160825, 93.14401864240313, 132.0329096537462, 129.97518909040934, 68.2318256574461, 58.81296693545993, 143.22797629782593, 32.9951983040478, 27.182719779541397, 6.636181891954714, 12.36780607642149, 31.180104346829772, 24.262078720646734, 25.728106200375606, 98.46081872315114, 16.677948738500017, 79.54379748587809, 61.247278355814984, 11.204960297653056, 91.02857956109352, 151.7325139127499, 44.44722941856618, 90.52548225353122, 111.27496262331893, 23.14915025211662, 5.60396663477241, 8.701947018983706, 43.58594853909895, 17.766032570869438, 40.02704959329066, 5.7821150292957455, 13.405122925077592, 11.800408771179043, 18.20816464901571, 6.270680873674227, 43.876633706533525, 8.250118896827423, 67.86431851305211, 17.445588148517903, 23.597906095226143, 8.549204493237832, 67.77497833889717, 67.08342059892519, 129.1531027478947, 50.22508240711591, 73.15344476321893, 279.2070147873617, 16.178622792424505, 93.4699626287897, 12.015781160915548, 56.99784009680758, 11.479114813916247, 18.8109036415249, 77.76179503969186, 73.7071582658813, 28.80408618129916, 5.985066348729761, 31.791209613756696, 96.81635812053963, 92.2215846620312, 40.74208560935139, 53.97706935479597, 74.6825664876927, 13.450839685163759, 32.224353104597135, 11.074436982404343, 118.00785647007801, 22.121621378900986, 55.821722430118996, 11.502817798274426, 7.73090189012828, 8.498579519915019, 50.21840130395633, 58.283341534903535, 17.129209899178754, 6.117626683920456, 68.73716388009987, 17.18131409475017, 217.17512581794247, 110.9708495081589, 101.0619249455685, 5.459692846202101, 6.093662684075334, 102.92109793972176, 17.66669364687053, 33.02406788610198, 12.913356764298866, 34.72196025232191, 46.47567979447504, 58.35029221118096, 95.38319976232818, 97.80616249628568, 21.72848537717809, 30.20963043434039, 26.603587777501776, 24.015509335630114, 72.1975763210334, 5.183673783425494, 99.46257063665455, 95.71331846391156, 162.98861350283426, 10.4727636498614, 9.351816129570132, 47.79693483784314, 13.587194999351228, 27.6325817176008, 124.89333706806435, 70.66226355855078, 63.371163652342304, 14.274960181365023, 127.54266286100977, 110.47617636962863, 143.38972066992207, 19.66451377304875, 21.728476240910563, 67.18075145889824, 82.01281772974063, 42.94318220971764, 12.278021571091784, 12.78557992227672, 7.472629154878283, 13.562668230687793, 11.095123851690337, 31.33873115402008, 53.32905431983373, 17.012275178836255, 128.80732267048475, 45.276728383638854, 6.749894725631768, 23.870496592849303, 13.476141107670168, 71.88660681901688, 15.092340772757733, 72.63271346687675, 6.254409531227571, 24.617966791169366, 12.828558179525084, 34.9783670880211, 21.400869454088443, 192.4576748654743, 109.12789205948371, 6.874357814058779, 25.060899163916726, 7.207689051289168, 61.79320823560277, 75.27476782155084, 25.869119733180913, 27.288605842877004, 46.436319111582165, 33.41633654239737, 55.934417444594565, 8.83679933001993, 8.977014871720085, 29.76274111247144, 21.00595929193682, 45.87323231760237, 45.71838409467, 6.442994234691207, 53.356146620377956, 136.0610987204569, 18.929831445198005, 10.671734566600206, 271.52140097533544, 44.474802606049245, 40.243082269836776, 69.34003989713756, 50.50312233472377, 79.12971938871843, 18.67370956685007, 41.59225698039136, 42.13189334426934, 31.581841479016866, 22.973759788010653, 13.305510267506149, 60.24500700400043, 15.114904418686171, 52.1005191527361, 113.88845985177399, 45.282667366900355, 55.64759794809253, 9.98662047425488, 54.33614510875477, 80.4234084320101, 201.8873417808062, 26.012408155040973, 23.978925971110527, 21.87853229529336, 99.50223862088004, 12.075309587485714, 6.706306359977762, 78.17953129780203, 38.66117553813959, 81.03022257473935, 7.065446033248626, 9.21243196956543, 99.30907010346282, 13.309892116495515, 22.545355433550558, 42.80114205056099, 16.068153620767532, 14.023486434644939, 15.035300759298407, 8.477682705325908, 52.49920549531612, 21.615752866295328, 87.337587666458, 30.07287780652607, 26.1292258232724, 20.475780065593636, 55.32002770450418, 14.146927942764739, 6.962824759998074, 19.283417747103993, 70.14904921297676, 7.740311330709804, 29.084839752130634, 63.20516819205644, 18.63816130159592, 96.58003841285802, 23.347973671950264, 106.49507391275463, 15.574239716081092, 75.25469195019137, 70.24081140878624, 38.955346620717634, 67.75759416172072, 98.88956920850512, 86.94959830983063, 6.985787454133705, 6.374707070285069, 245.6499231337503, 118.83682418904405, 18.441895619328232, 27.038432217486545, 19.6686300482342, 76.2613570871234, 23.558331842797294, 17.351582666510105, 27.205083583646307, 87.4544885851892, 16.908278859884888, 73.32487404959912, 23.440949552107586, 20.723399194759793, 59.97758506908652, 8.584582192497349, 46.16813471773744, 13.161204766488277, 11.16931895578395, 99.27600890695184, 14.969303808483083, 88.60547654550712, 22.803392568890583, 28.62259560729139, 21.051896116167963, 65.85812608005936, 61.47306652515462, 12.857088639681548, 154.22672851619387, 7.241748859270691, 23.771954918966415, 29.638127644661097, 61.53832586319256, 18.646690090420552, 56.73199979704646, 6.3029483632021615, 59.19099021337436, 40.591112584867204, 27.57764728599733, 109.17172777586859, 115.32160359420331, 21.467522227264702, 27.22756135385268, 15.749095849048402, 31.504005209895187, 91.9183021616575, 41.18418013115381, 101.83034073510805, 12.159790448193094, 10.792383027853331, 38.52296231952939, 10.179344845371443, 5.953563241743354, 5.941298125948779, 34.29728495967605, 124.11711113654337, 17.28815479073361, 10.616102601579527, 15.151020087594905, 113.57257032517282, 54.53491372983792, 6.54358072812988, 20.983800819267124, 39.499960460499295, 53.74811189507884, 89.55627318633049, 14.712574238182874, 16.41644106934092, 5.419421879753739, 27.56842319820626, 19.947983123639887, 70.15368504701031, 23.634266342380418, 53.42292394635817, 8.275908893620226, 11.901138690640622, 9.668751793640558, 9.622918557814643, 51.5350690156542, 12.787634001703065, 29.94516851491272, 53.32598918212835, 63.39356831412457, 24.069495431141995, 79.27881932437288, 10.080187546079353, 49.797134406108434, 35.155588170949365, 48.46441511012821, 62.37804529626467, 20.12699945916786, 12.02933459756053, 27.816129277408653, 134.57958984589845, 7.720569699444161, 20.19029151654676, 53.46767907731688, 26.253886365855383, 19.81379465066738, 27.325346319937754, 25.825859277379607, 38.74755331675503, 14.40518718084343, 5.802939854566194, 18.995366063476737, 37.12575995276217, 158.47603108447083, 50.90410056553892, 72.23101124941756, 7.63569952468811, 14.57715002862793, 53.92539059451171, 50.93199343683928, 58.196849799750474, 49.33925311156436, 109.37236861389431, 25.51828891865034, 31.96328030289791, 36.775995017510525, 10.483283795289113, 27.441332516780726, 19.81581179602535, 20.845724491928735, 24.170977148972714, 12.531073006904423, 89.27361801526686, 18.74373545807358, 8.620372910986083, 31.24371565123527, 6.93660892964393, 51.28193014682232, 82.66658118545674, 82.98839261859158, 50.340796738082076, 97.73570112435613, 90.00635127369422, 58.84587923849411, 45.51534163151066, 5.472715224725018, 15.852701678510028, 33.04196332744419, 35.20357511510811, 32.97724131622849, 61.986473382205105, 90.4801842326493, 88.90933084397864, 24.6264206630286, 43.677309051087114, 47.6383413106616, 68.92352149733657, 24.926489997711823, 21.21898641365735, 110.30455823090558, 143.530843646109, 135.66954442856297, 22.724122221966887, 25.69111762213229, 19.03532394283127, 52.466462252386115, 49.87679758106616, 106.8550412317434, 10.747561333227203, 39.89122357606424, 15.529051569359519, 7.500128164433063, 63.58718042374891, 87.30029559384965, 23.456156191336316, 48.798334636805585, 72.20913793938078, 26.729052375740284, 72.40027540626683, 13.13469989196333, 69.79366878252775, 9.613820366443827, 20.32557568734414, 37.714157251111494, 52.24512823393332, 67.13326129593845, 18.6776057701417, 24.52307555005197, 7.566194503230728, 27.04268135470079, 6.775716649831879, 32.400087192706714, 16.468707037518207, 22.69676916897803, 20.57075241954908, 96.57269042155889, 9.248448125764968, 12.060786254897844, 29.51469545516117, 14.479138222253038, 11.189303162094978, 129.86715786622855, 55.086598800845685, 6.77580484741661, 62.205747277424884, 17.613000659132176, 31.484737475751732, 75.95947254935606, 87.30017391978599, 45.750964275875695, 131.1717010341998, 33.252008361316555, 40.64869340480117, 19.248910406688914, 55.63026278932316, 39.008275155219394, 89.9127542628259, 6.128634551840097, 29.637425354155358, 233.83587502671776, 5.9133463229823, 31.30926499433407, 48.90049408449051, 56.27083305359869, 19.87164011282675, 15.84717223709272, 38.365458419850846, 22.510972328863065, 124.29343906153385, 27.735330239298186, 58.74911220701429, 29.183943465063876, 5.063682313876876, 65.02434957950743, 36.205950689408695, 7.873209294109014, 23.256332905241603, 106.73752614390688, 20.192502662848774, 9.189421024331857, 38.02240866873009, 59.610154810774134, 74.02458874112341, 125.81322841127155, 30.068285963786714, 53.73463268263541, 16.729977695039487, 56.9758408787069, 25.07161931287385, 46.96257597631339, 6.070478808840589, 6.519481279532551, 151.4747967831168, 15.03535322695651, 106.94812718604412, 18.407247493215742, 34.32790079690741, 93.13092427783019, 54.045708507159645, 87.47414081094246, 36.54736452220787, 24.155274091755842, 100.67372195832004, 149.16033321536207, 63.50125449049673, 14.873187485204278, 45.283857639420425, 43.10611938637128, 24.849206750137736, 5.473632394301578, 11.543739427009399, 29.071584095573755, 9.039394394121599, 101.56422264073193, 7.063619239766715, 48.79734616235266, 40.90398689346274, 34.43254918863867, 12.831259533920303, 72.07586214951304, 7.069115805267488, 16.12489369204605, 5.531865860865016, 17.143751182484696, 24.453189798775007, 80.1230657768877, 29.813332859161406, 5.038185370276188, 17.220872664177733, 26.970188994995738, 140.27439500542118, 37.870294858762456, 39.9290749008223, 46.01548596461572, 151.4342253479283, 83.71544231885387, 37.877724487620995, 102.0179729379201, 66.2127096884581, 9.121941299326808, 46.794491298755794, 50.29507294942233, 56.56396422661884, 25.762335713221354, 78.8082126741242, 16.913671048208208, 31.239382062514935, 222.873914198792, 13.144318825147614, 248.93308131460736, 37.32468675052477, 62.617436582310646, 94.7920592015629, 11.30268777135066, 45.00656949683236, 53.63724324185493, 30.10425130079611, 11.887046983953283, 14.105766279964765, 17.00951720594161, 10.758398437079718, 100.5357603296317, 205.3113012901242, 23.58240981365493, 15.91014676967966, 79.32092313688347, 26.357131187648115, 6.305500839934124, 20.797880817759534, 11.938868909434998, 48.01330407875653, 166.37176537264415, 15.87273850531879, 56.689340956725545, 47.585533883160664, 27.998385461613903, 23.272702383254053, 88.47760058234608, 76.35262381471293, 30.746382632237058, 25.559126275130076, 25.2057864883402, 5.258027469277334, 112.46691270202986, 55.94388632157073, 12.728990830236928, 8.269972848532051, 16.06653263054025, 78.9601160088496, 79.42420346215633, 103.90572394114022, 108.39588283659354, 66.498968561201, 7.413717949664389, 25.957044947537614, 14.50115650539513, 44.951864002319766, 11.495990793136107, 11.060853029618123, 146.30722215136024, 21.583993352427512, 11.074654383266797, 24.973385382205723, 17.822241676189485, 36.96454154571927, 23.003556869200043, 50.74271678740235, 27.761946908670183, 50.2387422213891, 9.65209762762269, 85.59939270050529, 53.8680608998132, 23.867371469676588, 56.41494517662295, 30.896185232595446, 6.15852718631398, 19.32784739486573, 23.628131878590835, 36.33495164173729, 28.93843060635281, 108.72548871566566, 96.74152404223656, 81.80790715659428, 23.93290308977274, 65.62721130249716, 6.236407942798981, 7.326768134212051, 37.151834691340206, 61.298787886620964, 53.13449775040834, 16.090514565425583, 48.503979215413835, 60.864376312378184, 33.302480298844564, 70.51570903878347, 11.128654396129518, 21.957226266845048, 6.56171831189055, 33.45883725761947, 25.12465463691627, 112.33090458519852, 61.253157696683196, 15.711215891434655, 48.287224027214876, 58.71794580173002, 8.566617674061908, 34.32271158370012, 10.274958671366381, 58.96936443962413, 159.20088590181535, 129.793617557817, 145.6953467345743, 6.438568147521686, 73.31224922789045, 22.405856491728898, 50.08249867509986, 62.1675984292753, 19.240416371740086, 5.559344068414433, 178.77200504115382, 86.97059242588276, 44.623617366454965, 46.020916975024406, 28.878545757234022, 76.3569077208931, 9.514911126625922, 60.81026137336214, 14.105768262375518, 162.75903602928162, 35.0028088520813, 115.77739319153744, 66.81710723472652, 27.093527110057856, 98.51360699536541, 17.11903875539803, 74.27304480818579, 15.04745790959005, 42.39289172627759, 41.03857142319955, 41.136801127323196, 68.98429022124527, 39.34225936965843, 29.802100519136285, 16.734647602518354, 30.341095782812992, 13.903095533755007, 9.952461357200725, 13.162570054191619, 19.415220764411234, 34.87941254810365, 24.106995660080724, 70.54719931926768, 74.25797117222601, 53.90366062049505, 171.85829163170555, 95.60291092202041, 122.5300484209981, 20.74675189984509, 28.859589030737666, 97.6254079912573, 66.87000064671217, 76.74413943280426, 25.48393564188606, 35.69989529242254, 14.436763257512434, 41.07234367369748, 31.012627321839126, 9.856481156086017, 138.34823627353975, 21.935084680358003, 94.97489422198657, 62.35433230985588, 23.019313561504354, 25.11562530495677, 60.005171543673164, 26.1271604062325, 123.14622092759167, 16.346203772267547, 11.742288458030375, 7.928418517046093, 41.18162910447454, 12.575947536533205, 62.619783772018785, 16.7921700860662, 24.596296089465664, 81.48656044440266, 71.3375275833536, 47.20606509449461, 44.75636799526164, 9.205332335210324, 69.94487734424925, 46.54712401164016, 36.483264653250345, 53.48403969104525, 45.18183445059125, 24.8031456408016, 85.11639748685946, 62.032111042662564, 41.05636161491554, 35.498163536090985, 18.66637304552442, 77.17154753327048, 102.79225147256935, 44.02976937743463, 49.50589818573629, 68.44932118584367, 14.218873990291279, 40.94760643400274, 46.677271735753905, 67.76954310158821, 16.36284161568143, 42.26101850128135, 74.55684442694505, 30.689110814604202, 49.44490586693565, 43.85121250402318, 16.89806068144621, 75.16760350876402, 22.734951708331067, 78.03453438055298, 10.02458589934364, 267.69451549773873, 96.39655204593552, 11.076694161223923, 88.38947853202721, 66.2370596303024, 33.259452886796666, 5.11734605540927, 119.05465887559036, 37.45130912007442, 95.47717367479538, 25.65986518374542, 9.905371979097865, 27.141119403399586, 108.50642719499612, 89.61984756442114, 7.300009496867544, 53.321821010705314, 15.373856727203357, 8.121000169752334, 105.67052067207251, 72.50356497996238, 28.539471713866302, 64.54291365288387, 24.918196741224126, 14.741516500990237, 61.82679208162614, 21.80587896417856, 96.87179243959046, 59.2028328129636, 26.61046924617326, 38.63220866076312, 92.44667649911368, 113.98262905666384, 9.064729345468557, 12.25799699503466, 10.62615954710691, 33.023011887615866, 35.34824272577383, 152.90491461937, 8.984085270438806, 55.47389059781948, 122.22483377493803, 33.38375582706544, 12.561081320694448, 32.93611640068184, 13.207844024625707, 28.45039234848353, 5.888272733619658, 21.65323532803485, 31.78732246106116, 13.636482239679049, 51.03068426109491, 17.76408074434253, 36.48197936981194, 24.242880127595583, 50.721271948619766, 96.55442605958217, 56.051447056632576, 7.711064045991557, 64.22496686778541, 101.82186612655117, 16.16507916088388, 10.678538373058501, 39.144888024686225, 28.91984083887973, 14.520782405421338, 25.21442639310977, 10.849354652218716, 48.95031326840579, 52.55155680087012, 70.09445905799667, 72.90140596956053, 7.191901411028121, 12.58698545438932, 38.89819194400821, 53.50683986733115, 18.789936716968725, 59.79758531055017, 14.765319697000017, 15.225798960466147, 15.464153238892335, 87.15120975276596, 65.18774904751456, 6.630856093507591, 21.46326405123235, 10.970992297313424, 52.335905828927125, 32.450790017198315, 10.729583300617328, 22.277441313107854, 19.2649012669885, 24.707079111291076, 154.39491825583113, 14.888221532068817, 15.876517851387783, 12.677818690534046, 85.19917767219025, 32.35833767186267, 38.00939343784934, 141.5202807340253, 13.87849163627709, 49.20312126203337, 52.80984583487421, 14.163873459948192, 22.171817802899895, 6.022455815375605, 43.478232438507334, 69.19135267068714, 65.00226572492463, 21.473023818756147, 5.4533914820715506, 25.049482248903942, 27.067201900344223, 30.826294826446485, 61.93856480459965, 6.3399938122321435, 82.95236480387365, 50.36108992505172, 29.25100078910037, 9.866599287803124, 19.396628510152254, 145.10580148262386, 11.713707487163997, 32.632960735557035, 39.659697225703994, 53.64093346347454, 37.43722061829379, 26.24308164928832, 47.92529026508322, 20.413766837351446, 10.579032560333594, 12.316177000252878, 16.943191207666864, 32.43309815042983, 9.28840467257266, 9.632806707056238, 21.08225058269141, 32.372663818006146, 13.4117684456264, 10.037876935291594, 45.02973272043927, 42.34094953627559, 135.55088367299416, 29.394623543154665, 21.149322806400676, ...])
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);
([4829563.275391486, 5784031.25, 5852665.16641451, 5877575.262456552, 5880946.759894085, 5885027.71713615, 5905712.456418668, 5926273.4375, 5936325.0, 5963176.96994904, 5969664.0625, 5981818.673401122, 5991108.880144907, 6003881.12138258, 6005885.9375, 6006290.625, 6072422.173131524, 6072921.875, 6074096.954395922, 6078629.6875, 6102676.5625, 6105199.508939471, 6109629.7020206, 6110945.47789075, 6113020.3125, 6113085.9375, 6119700.445925793, 6120234.309107502, 6132357.693881452, 6132499.867429469, 6134390.625, 6134411.161466264, 6134834.375, 6134870.611778371, 6135009.33134382, 6145825.560630322, 6181405.507079655, 6190551.5625, 6208270.3125, 6218732.767647064, 6220633.54940755, 6220945.3125, 6221732.8125, 6222226.507510906, 6222360.9375, 6222736.958772159, 6223132.620973488, 6223193.396530905, 6253445.3125, 6254767.1875, 6264001.5625, 6268026.339797792, 6284777.689870097, 6286265.625, 6286330.719036249, 6287949.639027723, 6288852.756925729, 6289214.759657681, 6289718.139386893, 6289743.3143155975, 6291706.482347624, 6292604.7082798015, 6293009.9621170135, 6293013.528987155, 6296096.164768344, 6296379.608827499, 6316229.468924911, 6316627.353018747, 6316796.201668733, 6322059.461709139, 6322506.180372887, 6323077.843535469, 6323714.285898136, 6325264.0625, 6327840.625, 6327880.702792013, 6328001.5625, 6328391.815618493, 6329464.914496754, 6329767.817681145, 6335671.875, 6342412.5, 6358387.5, 6359682.412803022, 6359770.542715669, 6359829.381352584, 6360509.980721212, 6360554.6875, 6361717.088631997, 6363963.330417913, 6364044.820550537, 6368107.8125, 6368360.8003601935, 6368700.445703281, 6369073.478350365, 6369337.5, 6369694.855611287, 6369748.339526789, 6370949.764752988, 6376209.056483933, 6376253.125, 6383406.25, 6398065.097460012, 6399377.511217786, 6401120.3125, 6401123.239004873, 6404121.536918046, 6404521.875, 6405564.043536754, 6405640.500439194, 6405963.328155884, 6413121.816295115, 6414363.44776692, 6414371.0196612915, 6414898.4375, 6416809.375, 6426540.625, 6427714.694878498, 6430198.4375, 6430247.405950009, 6431083.701927037, 6445511.7719812915, 6445796.668840306, 6451126.301503449, 6452088.381670156, 6454448.4375, 6454619.1414764915, 6454960.9375, 6455271.875, 6455635.986368492, 6456906.715799211, 6457024.131676883, 6457785.9375, 6457960.804948767, 6459190.625, 6459359.50665739, 6460154.50389221, 6460177.2732351115, 6465028.7891382575, 6466830.272689876, 6476971.875, 6477202.684846763, 6477944.841121431, 6483953.516586021, 6485687.737212061, 6487990.652514326, 6493443.7104047835, 6496867.117914344, 6515300.964494732, 6522805.218981268, 6524006.024817706, 6525372.340671767, 6528868.652239526, 6529992.1875, 6529995.427499421, 6530008.425143466, 6539021.441197745, 6547830.6709506195, 6548284.665664493, 6548591.041019531, 6548959.877457996, 6549104.6875, 6549615.83875925, 6552313.243798232, 6560162.996956506, 6568645.3125, 6573570.3125, 6573634.884797465, 6597349.236814463, 6598880.940501419, 6602647.774460934, 6610583.939987613, 6610834.375, 6611003.125, 6611321.419941795, 6611392.1875, 6611793.71565019, 6619004.315442307, 6621624.560779661, 6633096.875, 6646517.4149229275, 6676130.027197803, 6677444.130479346, 6679550.0, 6680756.746793245, 6681159.850814507, 6682944.0292351255, 6682945.3125, 6683037.985170861, 6683050.0, 6683092.776926821, 6683307.749408901, 6683332.7640967695, 6683342.24083003, 6683348.352402229, 6683606.7387621375, 6685893.75, 6686140.628066331, 6686906.631961402, 6687017.1875, 6687305.99293336, 6687424.602731289, 6687775.585340878, 6688639.167389976, 6689746.292379198, 6690196.769725078, 6690589.616064252, 6691740.304243837, 6692433.581796977, 6694450.0, 6707940.458307624, 6710670.3125, 6710904.223766053, 6711443.77404319, 6711683.535951015, 6712221.46766104, 6712314.015757211, 6712695.3125, 6713521.875, 6713746.875, 6715631.063394546, 6715675.822324603, 6716392.134940088, 6716563.115021683, 6716750.857325037, 6719367.082453721, 6722484.375, 6722843.917151549, 6722948.4375, 6727819.379338353, 6728857.102537498, 6736896.49884817, 6746646.459181628, 6753545.291553946, 6761664.0625, 6762527.933803698, 6764905.142036515, 6765284.375, 6765412.632414518, 6766007.743934292, 6770852.834317705, 6776970.409465477, 6783582.8125, 6785098.476517447, 6785652.890975399, 6788324.89810175, 6796877.183135303, 6805389.932711973, 6806104.6875, 6806390.07132438, 6806995.3125, 6807084.375, 6807086.468497832, 6807459.61100703, 6807858.1307084635, 6808014.0625, 6808771.875, 6808874.174013925, 6809079.494543522, 6810089.0625, 6810510.9375, 6814029.6850535665, 6814541.538268752, 6818035.486375008, 6819387.161732161, 6824813.98390435, 6825663.046413249, 6837605.701483291, 6837624.7128067, 6842582.8125, 6843896.54693619, 6846127.32291144, 6847465.312287486, 6853336.797480767, 6853626.5625, 6862196.875, 6862607.8125, 6863767.1875, 6864421.875, 6877032.994592153, 6877760.323655369, 6877841.74101965, 6879778.666738645, 6881530.103832967, 6881622.929984646, 6883704.124175519, 6887953.1697603725, 6896079.498203431, 6896753.044010786, 6897335.9375, 6897851.5625, 6898141.310035901, 6898340.625, 6899406.25, 6900129.9568009935, 6900727.89134024, 6900787.217656203, 6900876.1002888, 6900912.5, 6900969.282014194, 6902262.206571191, 6902529.6875, 6902915.4715786725, 6904150.101457876, 6904509.157572918, 6904796.730865335, 6904860.564076106, 6905190.119091132, 6905215.187641475, 6906292.1875, 6906292.454701907, 6906296.611320767, 6906419.2980255475, 6906617.532206571, 6906873.4375, 6907180.762208071, 6908645.512319641, 6908756.723591535, 6909153.593946224, 6909222.829090232, 6910213.503447513, 6910665.399647896, 6912347.797611064, 6914642.995743018, 6941662.5, 6953156.6137268655, 6967531.25, 6967976.5625, 6968247.738952293, 6968303.125, 6968705.791693311, 6968770.668864776, 6968988.443533512, 6971483.052854737, 6991737.5, 6991741.326276047, 6991882.8125, 6992162.815783981, 6994006.25, 6994951.019983993, 6994953.931047703, 6995115.475995337, 7000751.5625, 7007868.313955568, 7010078.045107639, 7011782.30126326, 7012298.4375, 7012750.947395427, 7012888.015223602, 7013536.809839766, 7014102.555703038, 7015456.6852803035, 7019623.063265006, 7025572.275289964, 7028575.981716948, 7029781.25, 7034738.024000622, 7036240.625, 7036255.688687543, 7036260.963960036, 7044164.0625, 7048070.319773122, 7048094.596588171, 7049857.434530868, 7050728.125, 7054616.642103965, 7058489.0625, 7080339.0625, 7082091.506846437, 7089195.875342465, 7089561.376182481, 7089718.451658896, 7090250.0, 7091051.5625, 7091302.282905115, 7091832.650219134, 7093272.15281644, 7093664.953419035, 7093984.375, 7094154.637763347, 7094293.675538697, 7097596.875, 7098390.122432097, 7111050.722952179, 7118948.634386731, 7126162.5, 7136054.357634006, 7140315.7287242925, 7141262.5, 7141939.63568731, 7142276.336827621, 7147940.625, 7148122.732289716, 7149595.4736483805, 7150614.08420691, 7150990.569543048, 7151650.912628727, 7160594.254120805, 7160609.021025946, 7164668.803902699, 7169088.011113166, 7170673.867068534, 7170689.413636675, 7173922.884883208, 7179342.1875, 7179871.588890043, 7180808.587292011, 7183273.376110953, 7184022.214718508, 7184113.037357853, 7185052.703531367, 7193655.5797794275, 7199217.1875, 7200021.565826534, 7201814.0625, 7204821.854771209, 7207787.944226826, 7209065.998726095, 7211719.075750418, 7212914.0625, 7217261.790886313, 7217529.682314888, 7221121.875, 7221431.25, 7221860.686094151, 7222528.125, 7222675.770108293, 7222678.125, 7222709.180110512, 7222960.79736889, 7223051.5625, 7224036.851207268, 7224227.071727569, 7224406.213158744, 7225775.0, 7226786.250658378, 7236501.436813405, 7241698.4375, 7242339.993856262, 7271158.688392343, 7271762.436329466, 7272406.096766226, 7279464.0625, 7279948.4198401235, 7280232.662164716, 7280282.988031428, 7280312.14016323, 7280376.037460322, 7281435.9375, 7282006.25, 7282223.52636914, 7283009.080025999, 7283370.3125, 7285101.5625, 7288476.5625, 7290190.625, 7290668.911792363, 7291148.420913686, 7291436.875454339, 7291667.059598346, 7292713.606995777, 7294519.726980764, 7317081.185514873, 7324781.324462273, 7325790.357201688, 7326547.619073969, 7326664.0625, 7326702.296794209, 7343167.769530133, 7345299.654053681, 7345955.496840732, 7345976.5625, 7346063.421575237, 7346192.1875, 7346473.4375, 7346872.356504945, 7347355.159461135, 7348557.8125, 7353610.9375, 7355658.065130761, 7371479.907646951, 7380381.25, 7380757.8125, 7389878.125, 7390509.375, 7391529.6875, 7398014.0625, 7399274.765595088, 7412046.875, 7429113.270970214, 7431001.117239089, 7431141.280255832, 7431151.140175196, 7431196.626345047, 7431230.5895778425, 7431246.339908621, 7431313.677642472, 7431372.2510819025, 7431392.962422858, 7432853.125, 7433006.25, 7433846.875, 7434274.742374087, 7435000.0, 7440246.1539225215, 7441193.455626268, 7445246.875, 7445925.0, 7453685.614082647, 7456004.6875, 7458598.4375, 7462636.669749881, 7463374.126388245, 7464304.116114695, 7464400.0, 7467455.003627812, 7470161.46758238, 7470932.675313468, 7471998.73355873, 7477195.3125, 7477203.849850157, 7478101.320649925, 7479171.77140641, 7480110.857850872, 7480581.310853675, 7481635.670095201, 7482294.100241474, 7483251.292756611, 7483493.990420503, 7487812.5, 7487929.587736116, 7487930.212345291, 7488654.6875, 7488656.123161486, 7488656.289053231, 7489670.896828602, 7489865.088871031, 7490142.248791026, 7495258.160427595, 7496794.024710595, 7504384.375, 7508385.330070611, 7508645.370169438, 7508842.1875, 7512284.352028226, 7513357.777626946, 7514489.0625, 7516285.763939612, 7517534.375, 7524714.486962717, 7538395.3125, 7538409.755979842, 7563145.3125, 7566861.130870493, 7568573.133319981, 7579808.8429646315, 7581890.493746843, 7582142.1875, 7582677.44549114, 7584718.968916131, 7594279.677754374, 7596262.540107686, 7596782.294674629, 7597720.867105627, 7601718.75, 7603372.7836658, 7603446.586217999, 7605426.5625, 7606665.625, 7607905.376955435, 7610505.910283094, 7611020.235976877, 7614525.92142694, 7618635.764671765, 7640093.75, 7640096.875, 7640229.285271922, 7645231.701874234, 7653587.5, 7654621.1085633375, 7654816.026513627, 7654934.375, 7655109.099827274, 7655523.4375, 7655668.578836941, 7656589.266057933, 7657208.442321939, 7674710.961905064, 7678639.0625, 7678787.971326056, 7685792.1875, 7702687.109220289, 7713698.4375, 7716268.953797337, 7717745.915080608, 7718085.998965441, 7719010.9375, 7719309.375, 7720357.411687026, 7720364.044458711, 7720462.5, 7722075.0, 7722902.906389812, 7722929.961072789, 7722950.250800844, 7723709.361017629, 7724093.383212513, 7724310.9375, 7724609.150330483, 7724876.5625, 7725124.372444613, 7725896.830900453, 7727293.129987251, 7727447.861875952, 7727488.85959269, 7728930.2439079555, 7729126.537446719, 7732370.7909333445, 7733227.018857111, 7737493.24767257, 7738245.350239928, 7738627.92474719, 7758689.554723859, 7759303.776265598, 7759777.326790949, 7760081.185695622, 7761694.770598259, 7761716.997380577, 7762016.937027098, 7762491.553589235, 7762651.5625, 7762755.803755674, 7762891.5892264, 7764859.116436623, 7764934.944427773, 7765684.375, 7765909.375, 7767153.332152882, 7767176.5625, 7767992.5955096, 7768096.433728375, 7768432.214846583, 7768736.932277259, 7769204.6875, 7769723.4375, 7769835.453625977, 7769847.786604729, 7770182.921635475, 7770268.75, 7771245.510528065, 7771802.65157965, 7772723.87444709, 7773046.636975324, 7773723.891529922, 7774313.812640778, 7777046.875, 7777087.986123869, 7777185.5897192275, 7777239.49364389, 7777707.26674633, 7778011.46592914, 7778345.609766135, 7778561.927364219, 7778841.088585288, 7779303.125, 7780615.169748535, 7782209.094062439, 7782505.948113544, 7782651.5625, 7783510.910338618, 7785543.411631286, 7785548.4375, 7785595.3125, 7786150.0, 7786197.6454811795, 7787100.467756698, 7787948.891342433, 7788557.8125, 7791998.4375, 7792027.391489582, 7794973.405968152, 7795149.819193635, 7795528.761402274, 7797159.375, 7797595.03175474, 7798853.125, 7799507.206563103, 7799563.506235372, 7800056.105097739, 7800176.371129373, 7800557.8125, 7801509.59849675, 7802587.456803809, 7803783.880119918, 7805832.3215635875, 7805833.440393571, 7806004.47754561, 7812958.406847769, 7824442.1875, 7824799.639164276, 7827396.875, 7828348.211192468, 7828665.625, 7828667.543889133, 7829215.625, 7830435.69797104, 7833646.584076002, 7835915.625, 7836141.621864343, 7837028.776072924, 7837029.796570372, 7837304.37784032, 7837556.115844552, 7838856.8881472545, 7845637.5, 7846050.064583855, 7846304.7724548355, 7846401.456223967, 7846424.244622026, 7846459.127345238, 7846514.789931804, 7848864.0625, 7851362.101054459, 7855743.75, 7856665.8969867565, 7856727.902759606, 7857062.993335847, 7858144.670223239, 7858653.125, 7858660.938106156, 7858757.536365766, 7860480.147598401, 7860573.181828572, 7877085.138025822, 7890466.990681692, 7891492.1875, 7896263.83401994, 7896618.75, 7899534.333899743, 7925055.182003609, 7925130.877560948, 7927418.126098473, 7928164.0625, 7928809.543626911, 7928992.1875, 7929000.0, 7929249.683315273, 7929473.4375, 7929634.049839032, 7929984.375, 7930225.143655689, 7931216.427547204, 7932722.404524765, 7933228.125, 7934655.825431393, 7935076.5625, 7935372.666875339, 7935410.624552019, 7936198.4375, 7937667.396835655, 7938434.081020451, 7938504.4494759375, 7938631.768911142, 7939496.875, 7940084.375, 7940139.0625, 7940710.860754379, 7942196.201815876, 7942284.848979176, 7946404.117052707, 7949035.965021876, 7950000.888876959, 7955601.5625, 7959291.443740348, 7967062.5, 7969360.9375, 7969897.662134566, 7970653.527410399, 7970967.8580829445, 7972499.69798809, 7973139.715771642, 7973177.564204766, 7978078.950498801, 7981163.1892215805, 7985357.539887277, 7985554.487750282, 8001546.875, 8006666.280071947, 8007057.509508092, 8009214.0625, 8009906.25, 8014398.507086615, 8016435.9375, 8036520.3125, 8037342.1875, 8039682.8125, 8039684.199565075, 8039766.040945215, 8040084.235956204, 8041270.3125, 8052166.82267145, 8052791.186916363, 8054847.753326863, 8055797.888028809, 8056049.212419731, 8058443.310177404, 8063291.82799741, 8063951.362333238, 8070582.8125, 8071681.144505958, 8072812.067419493, 8076158.137933041, 8100947.23556124, 8101521.130185235, 8101581.168350663, 8107055.451184765, 8123725.0, 8131678.538401413, 8133644.925153703, 8134056.25, 8135209.277239032, 8135971.875, 8139721.75044481, 8143226.4095413545, 8143456.25, 8165541.863443556, 8168963.862484749, 8169604.6875, 8169635.9375, 8169674.778152444, 8169699.548203861, 8169968.812873343, 8170101.5625, 8170714.520741703, 8171044.473237339, 8171926.236964797, 8172260.533280122, 8172421.592303531, 8172425.0, 8173134.129052149, 8173265.42154464, 8173340.625, 8173443.75, 8174065.321792499, 8174250.32883207, 8174900.0, 8175195.3125, 8175207.693435242, 8175822.961354331, 8175885.937175764, 8176137.933371077, 8176446.875, 8176535.553587028, 8177568.75, 8177628.844891973, 8179120.3125, 8181738.928826199, 8182104.654616695, 8182176.5625, 8182370.715284013, 8182745.969675194, 8183844.686547683, 8184189.399089888, 8186912.893715647, 8187395.749613826, 8188126.3985771295, 8188239.6713448055, 8189435.130347578, 8189905.212061559, 8189928.125, 8190586.575838526, 8190650.0, 8190709.48398818, 8190710.610692703, 8191623.087281599, 8191651.164239043, 8191675.0, 8192221.124269434, 8192258.575745806, 8192362.446520999, 8192553.125, 8192894.843293206, 8193256.25, 8194898.4375, 8196368.640543257, 8196843.75, 8199384.97231707, 8201380.977336554, 8202410.604330108, 8202583.432446061, 8204879.341039106, 8205204.334119442, 8206387.118650758, 8206529.531844554, 8207566.7460479885, 8222159.375, 8224310.910091141, 8227204.654823673, 8231852.319711725, 8232526.5625, 8233217.587794896, 8257209.371213877, 8263690.018501424, 8264141.703404339, 8272729.6875, 8272737.109565418, 8274256.738082783, 8279566.209870496, 8280170.3125, 8281252.170647338, 8284553.125, 8286203.125, 8286223.4375, 8288725.288598479, 8291134.724056463, 8296403.125, 8296851.850311527, 8296898.129784107, 8297453.915283271, 8297506.25, 8297737.385057327, 8299541.99405332, 8302085.751808091, 8305198.133686782, 8309365.526818381, 8312246.410052971, 8312423.4375, 8312523.698890681, 8312960.1434758, 8313201.5625, 8313229.6875, 8313324.178340981, 8313328.125, 8313580.606459594, 8313602.063482313, 8313811.972498053, 8314735.772163252, 8315212.035069287, 8315296.172145769, 8315722.622438678, 8315824.897370684, 8316445.3125, 8317947.059739111, 8317987.229431591, 8318282.3876891155, 8320374.553395063, 8320387.0414596405, 8325673.4375, 8327087.485948694, 8329132.046124508, 8330119.930024422, 8330990.625, 8335905.581119341, 8336669.379245459, 8338742.1875, 8339526.252535126, 8340540.756335185, 8340607.8125, 8340716.96733412, 8340911.223303687, 8341155.594184165, 8341157.8125, 8341225.0, 8341292.1875, 8341447.168773384, 8341502.928410274, 8341834.17029861, 8342053.04675272, 8342876.5625, 8343018.7825000845, 8343355.242740558, 8343398.4375, 8343495.3125, 8343559.375, 8343580.259196465, 8343621.135582982, 8344533.025968135, 8345123.782625339, 8345469.788383033, 8346934.540030398, 8348888.988927052, 8355362.159533816, 8358408.504339007, 8359741.6592492005, 8361764.905691982, 8369529.305623271, 8371875.64710423, 8372642.178028684, 8373508.592111637, 8378704.636206134, 8390403.461171025, 8395805.914027156, 8397695.545951776, 8397909.041599894, 8398961.669484777, 8398996.875, 8398998.4375, 8399514.0625, 8399742.1875, 8399777.589833288, ...], [6.615921595458925, 46.04901873423071, 30.471670040464673, 7.701004580393041, 159.21909551141565, 13.585672966635073, 7.587550748848871, 46.27490202389174, 31.286270171246365, 59.80544447458807, 51.56630449779512, 55.1726778299287, 115.53019041793179, 26.218142297298858, 41.31184946289767, 36.68875081493237, 16.21421761518542, 70.99990185112632, 15.25301848211503, 55.86120106681246, 32.46377541177143, 54.68776200006721, 115.06080657640763, 112.22910266898177, 50.70460702280959, 39.53574246368398, 16.96555967992087, 197.42895621619957, 33.57937802861328, 59.293090650899465, 38.237562567216756, 17.512406046072204, 65.28369191822057, 58.77169179603207, 14.777682987196238, 5.560922745187271, 8.773397648970573, 63.74033537596611, 72.09866271241168, 71.85448326793835, 28.529022383339004, 45.978242016407115, 57.8928816168089, 45.49478389301125, 54.044519992868594, 21.09145843303051, 81.55066720886633, 13.746112135233147, 63.71223241916056, 95.44358203696834, 31.038429845624734, 7.064115221564328, 23.899538954844175, 76.28090389220941, 21.189682862787013, 36.29688913165737, 56.07555373103813, 23.165331867700413, 106.54920046539462, 23.703593249085415, 11.511399503152184, 20.232191300498215, 64.96095158188109, 8.917654787479888, 15.768886769888642, 223.75847662461035, 46.812474068603116, 10.10309880225106, 19.92233202991462, 26.78198593676835, 21.78619050201306, 13.96725379313037, 35.29065517169636, 60.14125212290387, 89.76438909041465, 21.034756211240474, 45.66921518331801, 22.874018873149545, 36.969321720211774, 18.04677666216225, 56.211628211615974, 65.35908674046505, 32.27208384627488, 22.555643677828535, 213.06658731214011, 9.085292819110606, 132.2480444416788, 45.432556064970385, 38.3535678744797, 19.453220746460776, 5.676148370667549, 30.640110382610132, 9.21807464959561, 220.56569479642738, 248.92365040611602, 70.65649074838504, 51.28486746716284, 95.1679988749912, 138.35146457464978, 43.381894913913825, 53.49985213285212, 40.2727835758076, 6.662567317452112, 20.428493245908886, 39.63400821027849, 139.1537645333696, 23.276187817195076, 46.75989909743021, 7.5963933704067275, 137.10863501317783, 19.43572288339347, 119.23920714160825, 93.14401864240313, 132.0329096537462, 129.97518909040934, 68.2318256574461, 58.81296693545993, 143.22797629782593, 32.9951983040478, 27.182719779541397, 6.636181891954714, 12.36780607642149, 31.180104346829772, 24.262078720646734, 25.728106200375606, 98.46081872315114, 16.677948738500017, 79.54379748587809, 61.247278355814984, 11.204960297653056, 91.02857956109352, 151.7325139127499, 44.44722941856618, 90.52548225353122, 111.27496262331893, 23.14915025211662, 5.60396663477241, 8.701947018983706, 43.58594853909895, 17.766032570869438, 40.02704959329066, 5.7821150292957455, 13.405122925077592, 11.800408771179043, 18.20816464901571, 6.270680873674227, 43.876633706533525, 8.250118896827423, 67.86431851305211, 17.445588148517903, 23.597906095226143, 8.549204493237832, 67.77497833889717, 67.08342059892519, 129.1531027478947, 50.22508240711591, 73.15344476321893, 279.2070147873617, 16.178622792424505, 93.4699626287897, 12.015781160915548, 56.99784009680758, 11.479114813916247, 18.8109036415249, 77.76179503969186, 73.7071582658813, 28.80408618129916, 5.985066348729761, 31.791209613756696, 96.81635812053963, 92.2215846620312, 40.74208560935139, 53.97706935479597, 74.6825664876927, 13.450839685163759, 32.224353104597135, 11.074436982404343, 118.00785647007801, 22.121621378900986, 55.821722430118996, 11.502817798274426, 7.73090189012828, 8.498579519915019, 50.21840130395633, 58.283341534903535, 17.129209899178754, 6.117626683920456, 68.73716388009987, 17.18131409475017, 217.17512581794247, 110.9708495081589, 101.0619249455685, 5.459692846202101, 6.093662684075334, 102.92109793972176, 17.66669364687053, 33.02406788610198, 12.913356764298866, 34.72196025232191, 46.47567979447504, 58.35029221118096, 95.38319976232818, 97.80616249628568, 21.72848537717809, 30.20963043434039, 26.603587777501776, 24.015509335630114, 72.1975763210334, 5.183673783425494, 99.46257063665455, 95.71331846391156, 162.98861350283426, 10.4727636498614, 9.351816129570132, 47.79693483784314, 13.587194999351228, 27.6325817176008, 124.89333706806435, 70.66226355855078, 63.371163652342304, 14.274960181365023, 127.54266286100977, 110.47617636962863, 143.38972066992207, 19.66451377304875, 21.728476240910563, 67.18075145889824, 82.01281772974063, 42.94318220971764, 12.278021571091784, 12.78557992227672, 7.472629154878283, 13.562668230687793, 11.095123851690337, 31.33873115402008, 53.32905431983373, 17.012275178836255, 128.80732267048475, 45.276728383638854, 6.749894725631768, 23.870496592849303, 13.476141107670168, 71.88660681901688, 15.092340772757733, 72.63271346687675, 6.254409531227571, 24.617966791169366, 12.828558179525084, 34.9783670880211, 21.400869454088443, 192.4576748654743, 109.12789205948371, 6.874357814058779, 25.060899163916726, 7.207689051289168, 61.79320823560277, 75.27476782155084, 25.869119733180913, 27.288605842877004, 46.436319111582165, 33.41633654239737, 55.934417444594565, 8.83679933001993, 8.977014871720085, 29.76274111247144, 21.00595929193682, 45.87323231760237, 45.71838409467, 6.442994234691207, 53.356146620377956, 136.0610987204569, 18.929831445198005, 10.671734566600206, 271.52140097533544, 44.474802606049245, 40.243082269836776, 69.34003989713756, 50.50312233472377, 79.12971938871843, 18.67370956685007, 41.59225698039136, 42.13189334426934, 31.581841479016866, 22.973759788010653, 13.305510267506149, 60.24500700400043, 15.114904418686171, 52.1005191527361, 113.88845985177399, 45.282667366900355, 55.64759794809253, 9.98662047425488, 54.33614510875477, 80.4234084320101, 201.8873417808062, 26.012408155040973, 23.978925971110527, 21.87853229529336, 99.50223862088004, 12.075309587485714, 6.706306359977762, 78.17953129780203, 38.66117553813959, 81.03022257473935, 7.065446033248626, 9.21243196956543, 99.30907010346282, 13.309892116495515, 22.545355433550558, 42.80114205056099, 16.068153620767532, 14.023486434644939, 15.035300759298407, 8.477682705325908, 52.49920549531612, 21.615752866295328, 87.337587666458, 30.07287780652607, 26.1292258232724, 20.475780065593636, 55.32002770450418, 14.146927942764739, 6.962824759998074, 19.283417747103993, 70.14904921297676, 7.740311330709804, 29.084839752130634, 63.20516819205644, 18.63816130159592, 96.58003841285802, 23.347973671950264, 106.49507391275463, 15.574239716081092, 75.25469195019137, 70.24081140878624, 38.955346620717634, 67.75759416172072, 98.88956920850512, 86.94959830983063, 6.985787454133705, 6.374707070285069, 245.6499231337503, 118.83682418904405, 18.441895619328232, 27.038432217486545, 19.6686300482342, 76.2613570871234, 23.558331842797294, 17.351582666510105, 27.205083583646307, 87.4544885851892, 16.908278859884888, 73.32487404959912, 23.440949552107586, 20.723399194759793, 59.97758506908652, 8.584582192497349, 46.16813471773744, 13.161204766488277, 11.16931895578395, 99.27600890695184, 14.969303808483083, 88.60547654550712, 22.803392568890583, 28.62259560729139, 21.051896116167963, 65.85812608005936, 61.47306652515462, 12.857088639681548, 154.22672851619387, 7.241748859270691, 23.771954918966415, 29.638127644661097, 61.53832586319256, 18.646690090420552, 56.73199979704646, 6.3029483632021615, 59.19099021337436, 40.591112584867204, 27.57764728599733, 109.17172777586859, 115.32160359420331, 21.467522227264702, 27.22756135385268, 15.749095849048402, 31.504005209895187, 91.9183021616575, 41.18418013115381, 101.83034073510805, 12.159790448193094, 10.792383027853331, 38.52296231952939, 10.179344845371443, 5.953563241743354, 5.941298125948779, 34.29728495967605, 124.11711113654337, 17.28815479073361, 10.616102601579527, 15.151020087594905, 113.57257032517282, 54.53491372983792, 6.54358072812988, 20.983800819267124, 39.499960460499295, 53.74811189507884, 89.55627318633049, 14.712574238182874, 16.41644106934092, 5.419421879753739, 27.56842319820626, 19.947983123639887, 70.15368504701031, 23.634266342380418, 53.42292394635817, 8.275908893620226, 11.901138690640622, 9.668751793640558, 9.622918557814643, 51.5350690156542, 12.787634001703065, 29.94516851491272, 53.32598918212835, 63.39356831412457, 24.069495431141995, 79.27881932437288, 10.080187546079353, 49.797134406108434, 35.155588170949365, 48.46441511012821, 62.37804529626467, 20.12699945916786, 12.02933459756053, 27.816129277408653, 134.57958984589845, 7.720569699444161, 20.19029151654676, 53.46767907731688, 26.253886365855383, 19.81379465066738, 27.325346319937754, 25.825859277379607, 38.74755331675503, 14.40518718084343, 5.802939854566194, 18.995366063476737, 37.12575995276217, 158.47603108447083, 50.90410056553892, 72.23101124941756, 7.63569952468811, 14.57715002862793, 53.92539059451171, 50.93199343683928, 58.196849799750474, 49.33925311156436, 109.37236861389431, 25.51828891865034, 31.96328030289791, 36.775995017510525, 10.483283795289113, 27.441332516780726, 19.81581179602535, 20.845724491928735, 24.170977148972714, 12.531073006904423, 89.27361801526686, 18.74373545807358, 8.620372910986083, 31.24371565123527, 6.93660892964393, 51.28193014682232, 82.66658118545674, 82.98839261859158, 50.340796738082076, 97.73570112435613, 90.00635127369422, 58.84587923849411, 45.51534163151066, 5.472715224725018, 15.852701678510028, 33.04196332744419, 35.20357511510811, 32.97724131622849, 61.986473382205105, 90.4801842326493, 88.90933084397864, 24.6264206630286, 43.677309051087114, 47.6383413106616, 68.92352149733657, 24.926489997711823, 21.21898641365735, 110.30455823090558, 143.530843646109, 135.66954442856297, 22.724122221966887, 25.69111762213229, 19.03532394283127, 52.466462252386115, 49.87679758106616, 106.8550412317434, 10.747561333227203, 39.89122357606424, 15.529051569359519, 7.500128164433063, 63.58718042374891, 87.30029559384965, 23.456156191336316, 48.798334636805585, 72.20913793938078, 26.729052375740284, 72.40027540626683, 13.13469989196333, 69.79366878252775, 9.613820366443827, 20.32557568734414, 37.714157251111494, 52.24512823393332, 67.13326129593845, 18.6776057701417, 24.52307555005197, 7.566194503230728, 27.04268135470079, 6.775716649831879, 32.400087192706714, 16.468707037518207, 22.69676916897803, 20.57075241954908, 96.57269042155889, 9.248448125764968, 12.060786254897844, 29.51469545516117, 14.479138222253038, 11.189303162094978, 129.86715786622855, 55.086598800845685, 6.77580484741661, 62.205747277424884, 17.613000659132176, 31.484737475751732, 75.95947254935606, 87.30017391978599, 45.750964275875695, 131.1717010341998, 33.252008361316555, 40.64869340480117, 19.248910406688914, 55.63026278932316, 39.008275155219394, 89.9127542628259, 6.128634551840097, 29.637425354155358, 233.83587502671776, 5.9133463229823, 31.30926499433407, 48.90049408449051, 56.27083305359869, 19.87164011282675, 15.84717223709272, 38.365458419850846, 22.510972328863065, 124.29343906153385, 27.735330239298186, 58.74911220701429, 29.183943465063876, 5.063682313876876, 65.02434957950743, 36.205950689408695, 7.873209294109014, 23.256332905241603, 106.73752614390688, 20.192502662848774, 9.189421024331857, 38.02240866873009, 59.610154810774134, 74.02458874112341, 125.81322841127155, 30.068285963786714, 53.73463268263541, 16.729977695039487, 56.9758408787069, 25.07161931287385, 46.96257597631339, 6.070478808840589, 6.519481279532551, 151.4747967831168, 15.03535322695651, 106.94812718604412, 18.407247493215742, 34.32790079690741, 93.13092427783019, 54.045708507159645, 87.47414081094246, 36.54736452220787, 24.155274091755842, 100.67372195832004, 149.16033321536207, 63.50125449049673, 14.873187485204278, 45.283857639420425, 43.10611938637128, 24.849206750137736, 5.473632394301578, 11.543739427009399, 29.071584095573755, 9.039394394121599, 101.56422264073193, 7.063619239766715, 48.79734616235266, 40.90398689346274, 34.43254918863867, 12.831259533920303, 72.07586214951304, 7.069115805267488, 16.12489369204605, 5.531865860865016, 17.143751182484696, 24.453189798775007, 80.1230657768877, 29.813332859161406, 5.038185370276188, 17.220872664177733, 26.970188994995738, 140.27439500542118, 37.870294858762456, 39.9290749008223, 46.01548596461572, 151.4342253479283, 83.71544231885387, 37.877724487620995, 102.0179729379201, 66.2127096884581, 9.121941299326808, 46.794491298755794, 50.29507294942233, 56.56396422661884, 25.762335713221354, 78.8082126741242, 16.913671048208208, 31.239382062514935, 222.873914198792, 13.144318825147614, 248.93308131460736, 37.32468675052477, 62.617436582310646, 94.7920592015629, 11.30268777135066, 45.00656949683236, 53.63724324185493, 30.10425130079611, 11.887046983953283, 14.105766279964765, 17.00951720594161, 10.758398437079718, 100.5357603296317, 205.3113012901242, 23.58240981365493, 15.91014676967966, 79.32092313688347, 26.357131187648115, 6.305500839934124, 20.797880817759534, 11.938868909434998, 48.01330407875653, 166.37176537264415, 15.87273850531879, 56.689340956725545, 47.585533883160664, 27.998385461613903, 23.272702383254053, 88.47760058234608, 76.35262381471293, 30.746382632237058, 25.559126275130076, 25.2057864883402, 5.258027469277334, 112.46691270202986, 55.94388632157073, 12.728990830236928, 8.269972848532051, 16.06653263054025, 78.9601160088496, 79.42420346215633, 103.90572394114022, 108.39588283659354, 66.498968561201, 7.413717949664389, 25.957044947537614, 14.50115650539513, 44.951864002319766, 11.495990793136107, 11.060853029618123, 146.30722215136024, 21.583993352427512, 11.074654383266797, 24.973385382205723, 17.822241676189485, 36.96454154571927, 23.003556869200043, 50.74271678740235, 27.761946908670183, 50.2387422213891, 9.65209762762269, 85.59939270050529, 53.8680608998132, 23.867371469676588, 56.41494517662295, 30.896185232595446, 6.15852718631398, 19.32784739486573, 23.628131878590835, 36.33495164173729, 28.93843060635281, 108.72548871566566, 96.74152404223656, 81.80790715659428, 23.93290308977274, 65.62721130249716, 6.236407942798981, 7.326768134212051, 37.151834691340206, 61.298787886620964, 53.13449775040834, 16.090514565425583, 48.503979215413835, 60.864376312378184, 33.302480298844564, 70.51570903878347, 11.128654396129518, 21.957226266845048, 6.56171831189055, 33.45883725761947, 25.12465463691627, 112.33090458519852, 61.253157696683196, 15.711215891434655, 48.287224027214876, 58.71794580173002, 8.566617674061908, 34.32271158370012, 10.274958671366381, 58.96936443962413, 159.20088590181535, 129.793617557817, 145.6953467345743, 6.438568147521686, 73.31224922789045, 22.405856491728898, 50.08249867509986, 62.1675984292753, 19.240416371740086, 5.559344068414433, 178.77200504115382, 86.97059242588276, 44.623617366454965, 46.020916975024406, 28.878545757234022, 76.3569077208931, 9.514911126625922, 60.81026137336214, 14.105768262375518, 162.75903602928162, 35.0028088520813, 115.77739319153744, 66.81710723472652, 27.093527110057856, 98.51360699536541, 17.11903875539803, 74.27304480818579, 15.04745790959005, 42.39289172627759, 41.03857142319955, 41.136801127323196, 68.98429022124527, 39.34225936965843, 29.802100519136285, 16.734647602518354, 30.341095782812992, 13.903095533755007, 9.952461357200725, 13.162570054191619, 19.415220764411234, 34.87941254810365, 24.106995660080724, 70.54719931926768, 74.25797117222601, 53.90366062049505, 171.85829163170555, 95.60291092202041, 122.5300484209981, 20.74675189984509, 28.859589030737666, 97.6254079912573, 66.87000064671217, 76.74413943280426, 25.48393564188606, 35.69989529242254, 14.436763257512434, 41.07234367369748, 31.012627321839126, 9.856481156086017, 138.34823627353975, 21.935084680358003, 94.97489422198657, 62.35433230985588, 23.019313561504354, 25.11562530495677, 60.005171543673164, 26.1271604062325, 123.14622092759167, 16.346203772267547, 11.742288458030375, 7.928418517046093, 41.18162910447454, 12.575947536533205, 62.619783772018785, 16.7921700860662, 24.596296089465664, 81.48656044440266, 71.3375275833536, 47.20606509449461, 44.75636799526164, 9.205332335210324, 69.94487734424925, 46.54712401164016, 36.483264653250345, 53.48403969104525, 45.18183445059125, 24.8031456408016, 85.11639748685946, 62.032111042662564, 41.05636161491554, 35.498163536090985, 18.66637304552442, 77.17154753327048, 102.79225147256935, 44.02976937743463, 49.50589818573629, 68.44932118584367, 14.218873990291279, 40.94760643400274, 46.677271735753905, 67.76954310158821, 16.36284161568143, 42.26101850128135, 74.55684442694505, 30.689110814604202, 49.44490586693565, 43.85121250402318, 16.89806068144621, 75.16760350876402, 22.734951708331067, 78.03453438055298, 10.02458589934364, 267.69451549773873, 96.39655204593552, 11.076694161223923, 88.38947853202721, 66.2370596303024, 33.259452886796666, 5.11734605540927, 119.05465887559036, 37.45130912007442, 95.47717367479538, 25.65986518374542, 9.905371979097865, 27.141119403399586, 108.50642719499612, 89.61984756442114, 7.300009496867544, 53.321821010705314, 15.373856727203357, 8.121000169752334, 105.67052067207251, 72.50356497996238, 28.539471713866302, 64.54291365288387, 24.918196741224126, 14.741516500990237, 61.82679208162614, 21.80587896417856, 96.87179243959046, 59.2028328129636, 26.61046924617326, 38.63220866076312, 92.44667649911368, 113.98262905666384, 9.064729345468557, 12.25799699503466, 10.62615954710691, 33.023011887615866, 35.34824272577383, 152.90491461937, 8.984085270438806, 55.47389059781948, 122.22483377493803, 33.38375582706544, 12.561081320694448, 32.93611640068184, 13.207844024625707, 28.45039234848353, 5.888272733619658, 21.65323532803485, 31.78732246106116, 13.636482239679049, 51.03068426109491, 17.76408074434253, 36.48197936981194, 24.242880127595583, 50.721271948619766, 96.55442605958217, 56.051447056632576, 7.711064045991557, 64.22496686778541, 101.82186612655117, 16.16507916088388, 10.678538373058501, 39.144888024686225, 28.91984083887973, 14.520782405421338, 25.21442639310977, 10.849354652218716, 48.95031326840579, 52.55155680087012, 70.09445905799667, 72.90140596956053, 7.191901411028121, 12.58698545438932, 38.89819194400821, 53.50683986733115, 18.789936716968725, 59.79758531055017, 14.765319697000017, 15.225798960466147, 15.464153238892335, 87.15120975276596, 65.18774904751456, 6.630856093507591, 21.46326405123235, 10.970992297313424, 52.335905828927125, 32.450790017198315, 10.729583300617328, 22.277441313107854, 19.2649012669885, 24.707079111291076, 154.39491825583113, 14.888221532068817, 15.876517851387783, 12.677818690534046, 85.19917767219025, 32.35833767186267, 38.00939343784934, 141.5202807340253, 13.87849163627709, 49.20312126203337, 52.80984583487421, 14.163873459948192, 22.171817802899895, 6.022455815375605, 43.478232438507334, 69.19135267068714, 65.00226572492463, 21.473023818756147, 5.4533914820715506, 25.049482248903942, 27.067201900344223, 30.826294826446485, 61.93856480459965, 6.3399938122321435, 82.95236480387365, 50.36108992505172, 29.25100078910037, 9.866599287803124, 19.396628510152254, 145.10580148262386, 11.713707487163997, 32.632960735557035, 39.659697225703994, 53.64093346347454, 37.43722061829379, 26.24308164928832, 47.92529026508322, 20.413766837351446, 10.579032560333594, 12.316177000252878, 16.943191207666864, 32.43309815042983, 9.28840467257266, 9.632806707056238, 21.08225058269141, 32.372663818006146, 13.4117684456264, 10.037876935291594, 45.02973272043927, 42.34094953627559, 135.55088367299416, 29.394623543154665, 21.149322806400676, ...])
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)