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 = 48201
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);
([9585913.554592524, 9602737.116957165, 9602745.40493423, 9602755.704669293, 9653624.362895925, 9670079.6875, 9708601.431861065, 9962352.49544745, 9982630.055141915, 10072225.0, 10125358.084922463, 10181411.320156008, 10261656.13482226, 10294257.336945763, 10319070.114545131, 10365156.25, 10416006.25, 10416054.6875, 10444634.64256571, 10460357.459552411, 10551746.681633402, 10554573.924353706, 10563518.75, 10563520.283305943, 10614524.059227854, 10622501.5625, 10646606.30889825, 10660670.587990873, 10698507.127479037, 10708523.4375, 10721571.490829425, 10735707.338553462, 10803977.631483357, 10804653.198563209, 10804752.96362076, 10821959.934300592, 10822998.765933184, 10824027.32861478, 10840498.387900528, 10896345.532027015, 10896798.4375, 10899434.375, 10902504.6875, 10905117.1875, 10921343.1493629, 10926922.975069879, 10951473.364146102, 10968382.8125, 10969376.5625, 10969638.120071506, 10969654.659033123, 10971038.917787094, 10981859.696412953, 11013429.188483339, 11044719.418903507, 11046953.125, 11049994.143674644, 11050839.875715485, 11088491.613270806, 11090623.854068827, 11110186.256951679, 11116860.751477158, 11146422.007832777, 11166119.749098696, 11167653.329668589, 11170364.634325748, 11171559.759774188, 11210505.13911432, 11226505.091876255, 11227785.681579446, 11237716.281136245, 11237809.285674892, 11240494.351545904, 11245732.8125, 11269994.163865766, 11273601.5625, 11273602.810567914, 11281893.75, 11282707.8125, 11291027.007266099, 11329094.149480855, 11335351.695308657, 11335663.886211231, 11341007.756280921, 11342544.337463642, 11345730.775899524, 11350124.497215202, 11350588.17241443, 11350947.58739331, 11351771.875, 11354482.8125, 11359365.55409558, 11375446.2991029, 11381131.25, 11381403.125, 11381501.265771402, 11382659.375, 11386294.969637258, 11387204.403768396, 11388086.188439606, 11389465.549569387, 11389916.154849328, 11392907.414864836, 11393912.235056557, 11394590.625, 11394590.625, 11399282.8125, 11405634.259390956, 11419584.375, 11420434.375, 11427934.388293207, 11436106.25, 11439769.75639038, 11440522.566750955, 11444420.669607723, 11447606.24964999, 11447630.29697176, 11447633.158552391, 11456740.963109367, 11457735.02998483, 11468300.0, 11468946.175427532, 11478633.967895776, 11478648.67298909, 11478852.273639234, 11480423.353110306, 11480428.23131706, 11481103.819332952, 11484526.213068957, 11488103.125, 11488504.697837206, 11565870.707217976, 11588614.0625, 11589051.62939442, 11592330.22370931, 11593603.125, 11595004.6875, 11596509.324935988, 11599943.0405107, 11612784.447009651, 11617267.023226663, 11625771.882267086, 11629750.925239509, 11641019.545219095, 11652528.807772188, 11654653.838280616, 11655467.1875, 11656751.221783966, 11659592.1875, 11661706.25, 11663316.544198874, 11668416.601211714, 11668497.81776678, 11671340.625, 11675313.640317133, 11686088.139206158, 11689138.981068995, 11689648.4375, 11689698.415866567, 11693426.5625, 11695206.25, 11714687.5, 11716133.63174156, 11717887.23809222, 11718975.547268715, 11722852.660776451, 11723263.845657706, 11732829.6875, 11735096.875, 11742035.159393517, 11759228.125, 11771088.741800675, 11792530.416111656, 11800523.465053972, 11803700.0, 11811727.53482169, 11812351.788034193, 11816703.125, 11818432.8125, 11821919.176668564, 11834759.989227155, 11852751.08177289, 11856253.972525887, 11856271.380350016, 11856396.002291061, 11858847.596677182, 11861674.801103259, 11863733.029468548, 11863818.75, 11868494.542694347, 11870170.3125, 11871190.589821473, 11872306.926371885, 11872937.5, 11876976.5625, 11877027.623406764, 11879628.835925352, 11883109.375, 11887609.963372609, 11887614.915216874, 11888858.135426138, 11891714.0625, 11895262.5, 11895946.875, 11896333.497453125, 11897323.4375, 11901324.841611765, 11901699.457510134, 11902037.367157081, 11902159.261936003, 11902523.4375, 11916976.960234044, 11920827.457780046, 11924592.1875, 11953867.789419739, 11961556.25, 11964343.75, 11966382.8125, 11967533.384190064, 11967535.815970015, 11968323.246686902, 11969822.50973259, 11969854.81961435, 11969863.892989326, 11970950.0, 11971701.2210171, 11995518.901725663, 11998289.860413231, 12002532.582174748, 12003198.4375, 12005485.9375, 12007362.5, 12008220.970860597, 12009035.662214916, 12009063.92571097, 12009339.0625, 12010262.503971012, 12011443.879354797, 12011466.961839708, 12011486.748790799, 12011864.0625, 12012960.217579905, 12019651.5625, 12019737.557797324, 12019794.664316779, 12020809.375, 12021198.4375, 12021607.684967255, 12022721.757272825, 12023739.080395944, 12023848.4375, 12024463.582261933, 12024622.836514335, 12024975.170169704, 12026128.125, 12026421.875, 12026774.98831638, 12027067.347950943, 12027137.5, 12027568.029197149, 12029079.067212254, 12031841.883410946, 12034154.556320006, 12037069.781989397, 12037449.927548068, 12037850.0, 12041665.625, 12042977.971810002, 12050203.194132308, 12051295.3125, 12051299.479249982, 12061074.057358548, 12062303.125, 12063600.143876474, 12066232.654302118, 12067121.875, 12069333.891966049, 12083271.334571447, 12125252.962454343, 12137040.212491738, 12150986.031550756, 12155645.539550288, 12157802.732179888, 12160078.125, 12161380.18124791, 12196030.86486795, 12199146.640876891, 12199273.606009314, 12199985.9375, 12202890.625, 12203275.229176767, 12212041.826500822, 12212857.45701288, 12216167.164168507, 12217383.80179578, 12219714.0625, 12221764.0625, 12223408.948749077, 12223912.919230431, 12226295.0574389, 12227056.25, 12227070.3125, 12227839.0625, 12229036.488077544, 12230914.903188892, 12232165.827572152, 12237200.358843546, 12238245.111703254, 12239738.510425514, 12241191.1997676, 12241554.6875, 12245479.6875, 12246251.316407882, 12247192.1875, 12250608.024698183, 12251295.617092233, 12261756.25, 12262743.299105147, 12267403.125, 12268437.5, 12269292.621022463, 12270970.3125, 12270980.494417107, 12272561.243492626, 12273485.094398657, 12273510.84070966, 12274024.814894099, 12274124.84936228, 12274237.685652738, 12274778.268777207, 12275071.875, 12275076.876243798, 12275104.857320141, 12275278.125, 12275991.133479485, 12276128.556765975, 12276500.628262773, 12276814.0625, 12277253.0526521, 12277775.814946651, 12277991.983012347, 12278066.198717551, 12278193.75, 12278584.05685028, 12278812.5, 12281874.134803448, 12283645.295884594, 12284563.539118478, 12284699.701095866, 12286126.88670391, 12288292.1875, 12290153.69654929, 12291293.79696287, 12292175.291912725, 12292192.671153251, 12294819.871933378, 12294927.27746396, 12295496.09442526, 12296310.384893797, 12297200.366491577, 12298086.813247055, 12298089.017957645, 12299013.161663854, 12300198.670720315, 12303287.116779624, 12305003.077479633, 12307348.4375, 12307731.25, 12308964.761800965, 12311704.64249283, 12314781.590247875, 12320316.659576472, 12322371.740794325, 12322777.446319306, 12331671.046086142, 12332249.347113179, 12332291.203438375, 12338572.79294961, 12340460.868470281, 12343610.9375, 12344064.747343423, 12345839.27268254, 12345958.265011763, 12346381.25, 12347496.875, 12348687.5, 12351865.443392586, 12355067.173325367, 12357167.1875, 12362906.25, 12397535.694968909, 12400795.525971713, 12401251.82293633, 12407568.471087689, 12409294.054729091, 12419591.254472682, 12420368.017410299, 12420384.89644092, 12420992.721854895, 12427621.875, 12428798.4375, 12434786.183516642, 12434814.0625, 12435501.217193866, 12446906.96753736, 12453998.37909512, 12462798.4375, 12468070.3125, 12475487.5, 12489404.060185425, 12489432.288513236, 12489815.625, 12492097.116540713, 12503392.1875, 12503686.564080661, 12504070.249334618, 12504071.188461008, 12504939.046572465, 12507746.018941788, 12508065.625, 12510612.092459867, 12511293.75, 12511308.554233827, 12514559.765913265, 12515087.806820022, 12516357.275555667, 12516420.3125, 12516872.59565744, 12517621.615290703, 12517630.555315, 12517943.75, 12520732.636078771, 12525096.875, 12527085.9375, 12527286.521319646, 12530488.672438165, 12530862.055977777, 12531274.045582773, 12533277.238973519, 12534159.375, 12534651.718819331, 12537309.375, 12539199.625710094, 12541208.53560716, 12541310.51348494, 12541740.085902488, 12542269.39675168, 12543029.6875, 12545770.147962475, 12546423.4375, 12546450.764887648, 12548094.131442362, 12548534.287703142, 12552283.649577346, 12552853.332778476, 12553098.630855788, 12553767.1875, 12553857.90071344, 12554321.307204636, 12554685.9375, 12555290.490402885, 12556009.28357395, 12557035.020737093, 12557581.25, 12557587.1848315, 12557782.356286904, 12558623.850936377, 12559238.67302628, 12560264.865840364, 12560694.928040255, 12560837.5, 12560957.8125, 12561371.875, 12561599.499192413, 12562218.75, 12562743.690566177, 12563320.856244106, 12563361.269539017, 12563782.8125, 12564214.951108234, 12564395.3125, 12564846.875, 12564850.0, 12564860.026841605, 12565097.382870829, 12565186.59248483, 12565345.3125, 12565585.9375, 12565787.213617535, 12565799.460999506, 12565906.25, 12565920.866168885, 12566159.267673781, 12566374.654615888, 12566378.217120066, 12566383.199054662, 12566398.849886486, 12566439.174011622, 12566717.986109842, 12566767.1875, 12566833.832584422, 12567055.530986117, 12567530.71407363, 12567806.25, 12568915.625, 12569840.204309316, 12569887.991165113, 12570685.662770307, 12571123.260631656, 12571301.517209405, 12571532.614571186, 12571702.394585406, 12572026.557147479, 12572757.8125, 12574315.135912778, 12574584.767230269, 12575872.666051038, 12576114.632346584, 12576363.56765715, 12576555.584846446, 12577079.940997638, 12577100.143474136, 12577298.585607946, 12578515.66660715, 12578594.78869967, 12578695.232200524, 12582846.875, 12582871.490050314, 12583984.484205112, 12585777.301909948, 12585856.103689373, 12585991.701435518, 12586093.75, 12586606.25, 12588831.25, 12593689.520237327, 12593884.375, 12594581.25, 12596305.587854711, 12598146.875, 12598264.0625, 12598363.492157476, 12598488.815894118, 12598500.0, 12598623.417939737, 12598896.898149576, 12599872.66294351, 12600032.321300456, 12600748.870017445, 12600749.615621379, 12600960.9375, 12602065.280425735, 12602136.455916855, 12602159.95772341, 12606468.332134528, 12607585.089221882, 12607681.06176516, 12607713.377857585, 12607750.077894341, 12607770.3125, 12607776.933868999, 12607810.9375, 12607832.161416214, 12608357.59168592, 12608525.0, 12608861.337554822, 12609212.5, 12609339.816973738, 12610612.0514722, 12611340.77324544, 12612551.5625, 12612559.375, 12612667.955992393, 12612845.196471224, 12612855.371432357, 12612900.0, 12612921.108624507, 12612996.535063297, 12613321.710768305, 12613368.241892409, 12613623.206339885, 12613640.53590713, 12614239.0625, 12614278.125, 12614326.55496331, 12614431.037637042, 12614544.771346273, 12615429.277014457, 12615616.358112441, 12615629.6875, 12616629.172607632, 12618592.1875, 12630354.436871143, 12633422.99513182, 12638255.817658054, 12638357.622297753, 12639057.010427572, 12640442.1875, 12641277.17772679, 12642233.352791868, 12642471.274775244, 12642638.898329934, 12642639.142640058, 12642987.5, 12644956.625803104, 12644995.228345865, 12645058.199051866, 12645125.0, 12647300.469796672, 12648601.417629387, 12649344.590240614, 12649778.125, 12649787.380250571, 12650475.249077355, 12653521.413753213, 12654230.136161543, 12659570.175321989, 12659934.375, 12660258.532407451, 12661648.4375, 12661903.125, 12662826.470366288, 12664373.851936027, 12665119.37794621, 12668747.300971927, 12669265.59649185, 12672032.888180641, 12673533.817947978, 12674497.22585237, 12677477.238702742, 12677853.961522356, 12678325.0, 12678949.74081686, 12679733.993428988, 12680534.117530508, 12680793.303783115, 12680883.069601588, 12682079.182727369, 12684415.97487246, 12716396.582852893, 12718427.56422827, 12718534.375, 12720960.793007987, 12721112.239501394, 12722779.6875, 12724231.25, 12724406.14491415, 12724450.413098447, 12726046.875, 12726746.875, 12727129.79162686, 12727607.705491459, 12727637.304197133, 12727837.97183646, 12728891.832654236, 12729406.25, 12730798.525784904, 12731779.445606593, 12731875.0, 12732007.8125, 12732134.375, 12732737.5, 12733198.290931314, 12733432.8125, 12733491.031961955, 12733921.854585988, 12734149.685913594, 12734787.919234034, 12734844.326661572, 12734925.0, 12735060.244181974, 12735209.297848335, 12735262.046916496, 12735278.125, 12735278.36968213, 12735521.401215596, 12735941.711325534, 12736322.331254765, 12738234.813639637, 12738980.238403847, 12739820.222600874, 12743975.477669895, 12748415.930750206, 12750571.759081595, 12750800.88087787, 12754647.439927727, 12754705.549170883, 12755213.284406917, 12755462.5, 12756902.512479983, 12756903.746422095, 12757423.31412765, 12757704.008390395, 12757914.0625, 12757942.1875, 12758563.72396043, 12758679.841460807, 12759202.246897798, 12759240.082954317, 12759539.0625, 12761695.660424149, 12762498.4375, 12762945.7618363, 12763590.560261557, 12763736.062135125, 12764286.554636238, 12765949.757733082, 12773176.043475013, 12773785.8101029, 12773947.77389074, 12774718.739844332, 12775726.445949148, 12776355.63359916, 12777870.3125, 12778432.8125, 12779337.956418833, 12779871.875, 12780852.646523586, 12782245.352626726, 12782477.730951319, 12785056.25, 12785618.75, 12786303.484577015, 12786357.839328505, 12786611.548401069, 12787417.054507352, 12787798.4375, 12787815.625, 12788256.153260445, 12788348.803620042, 12788369.568653267, 12788549.3643448, 12788945.3125, 12789070.3125, 12789967.1875, 12790223.4375, 12790337.5, 12790517.949104892, 12791177.125915814, 12791736.04079888, 12792240.625, 12792242.1875, 12792512.5, 12792599.544183942, 12793247.452777795, 12793411.44416368, 12793609.10739204, 12793654.6875, 12793786.348936448, 12793990.884718517, 12794194.758201087, 12794455.608428502, 12794560.9375, 12794567.1875, 12794697.802019393, 12794909.375, 12794933.812719187, 12795554.615887757, 12795849.973398212, 12796257.800425239, 12797784.067102868, 12797804.6064247, 12798249.274333622, 12798473.112796066, 12798590.625, 12798679.643106448, 12799182.495723197, 12799441.985367028, 12799752.68963571, 12800129.088498084, 12800398.171859002, 12801118.135366367, 12801689.78154347, 12801814.0625, 12807232.8125, 12807935.9375, 12808087.999506585, 12808303.125, 12810735.9375, 12810744.171485431, 12811382.749467317, 12811836.505170796, 12812520.135132886, 12814981.467821836, 12816093.325916128, 12817727.249817444, 12817934.375, 12819028.125, 12819308.568099586, 12819314.327558981, 12819505.492720047, 12819823.410711346, 12820372.415641544, 12820539.045238724, 12820660.05557706, 12820670.3125, 12820683.153196247, 12820719.609966017, 12820879.6875, 12820962.5, 12820987.5, 12821189.237299174, 12821671.849143555, 12821719.501169285, 12821794.222963236, 12821858.186105832, 12823638.568997752, 12824106.25, 12825214.0625, 12825554.99498678, 12826405.9709865, 12827289.0625, 12827470.3125, 12827734.372721517, 12828171.875, 12828192.838319167, 12829678.125, 12829913.908919962, 12830015.625, 12833509.019852765, 12833623.4375, 12833635.9375, 12835411.311764823, 12836066.989646522, 12836728.196074268, 12836891.008538365, 12837285.946831169, 12838381.278069125, 12840151.5625, 12843634.297919732, 12843893.484587267, 12845480.881421125, 12846572.51861035, 12851204.20855404, 12852211.768178225, 12858311.444566827, 12860661.072184753, 12860840.100305978, 12861307.8125, 12861456.25, 12862084.019509992, 12862268.75, 12862334.452497298, 12862551.5625, 12863050.0, 12864245.854225785, 12865700.0, 12866120.816726094, 12866154.6875, 12866373.483124586, 12866373.949835755, 12866550.82633467, 12866555.514506917, 12866898.313053127, 12867096.401299022, 12867410.56213719, 12867542.1875, 12867556.25, 12867624.175635662, 12867998.590088062, 12868153.199832635, 12868284.118317837, 12868306.122309035, 12868328.445456402, 12868360.493522083, 12868626.5625, 12868892.1875, 12868916.484032696, 12868947.15666616, 12869155.629525453, 12869196.875, 12869225.535707526, 12869423.4375, 12869468.75, 12869471.13030648, 12869528.57084487, 12869655.216045856, 12869848.493412042, 12870240.427512838, 12870402.768463785, 12870419.80634187, 12870426.5625, 12870762.812257264, 12870797.68604847, 12870903.124137456, 12871242.132677842, 12871327.719274746, 12871659.665674238, 12871969.38278206, 12871989.0625, 12872141.514391765, 12872855.463158384, 12873925.52145124, 12885209.054268446, 12885656.25, 12885801.681647766, 12886835.9375, 12889961.026589472, 12894151.39625418, 12895014.899745515, 12895462.653340952, 12899772.684823923, 12900411.304356677, 12900412.921939287, 12902916.929614922, 12904515.593607, 12914444.114972064, 12914723.4375, 12915386.502013767, 12920279.70159071, 12927196.142763307, 12929811.084217073, 12931317.083093124, 12939809.678036083, 12941425.277057044, 12941469.690184465, 12947059.939703384, 12949857.8125, 12950150.58590521, 12950912.899366291, 12951817.1875, 12954471.630817546, 12954471.992237061, 12955643.76598869, 12956360.06920359, 12957603.960833712, 12957925.0, 12958060.835644526, 12958143.75, 12958585.733271157, 12959160.488743497, 12959201.256301928, 12959810.9375, 12959883.667511726, 12960166.734620195, 12960221.356405728, 12960332.503976569, 12960743.782420773, 12961568.510342026, 12962714.778708778, 12963045.3125, 12967784.858834643, 12968072.722830396, 12968157.024628289, 12969404.356224664, 12970295.55905936, 12971085.9375, 12982481.25, 12987101.5625, 12992840.711809784, 12997477.339944474, 12997763.829245945, 12998053.125, 12998489.0625, 12999903.01604979, 13001148.120815355, 13001370.251617843, 13004064.474173725, 13004084.375, 13006172.309693629, 13009105.509636384, 13010436.830093706, 13011785.227117788, 13013809.375, 13015979.6875, 13016850.356364777, 13016916.80615257, 13018606.602159355, 13019446.875, 13019693.369364766, 13020565.571774526, 13020568.27582105, 13020612.853055306, 13020893.472592782, 13021070.3125, 13021653.58541689, 13022574.744017132, 13023707.493389921, 13023769.400260001, 13024322.026568409, 13024431.25, 13024510.9375, 13025459.123303778, 13025714.375431824, 13025823.4375, 13026644.131801642, 13031231.396947121, 13031354.538674632, 13037761.653048422, 13041384.375, 13041681.19421764, 13047786.66097366, 13050005.160242466, 13051420.618921284, 13051423.4375, 13052221.875, 13054321.768469818, 13054574.344297942, 13055237.5, 13055360.852232529, ...], [8.935940052096337, 44.44322652068546, 11.275327981059617, 7.417231040746301, 7.976142915931769, 58.43295017874761, 26.185388737604825, 7.979536457603981, 16.55613177393724, 87.40523396269661, 25.09222877198046, 16.632585775493265, 40.55818114870256, 19.58844226382955, 60.901579567416974, 60.33871161911052, 52.74781433175159, 76.64884772107425, 9.568378517633091, 39.68052464643962, 85.94355985971285, 39.36015663978411, 81.80904655796913, 23.57404167893465, 9.918945629729903, 31.41241763157859, 15.17085685653908, 16.106944428797338, 8.81236684676192, 111.75990455751283, 26.241232332198372, 21.756994995800348, 13.343837568506748, 15.229512419891835, 10.884494172421059, 24.195594996622606, 35.70254696785311, 18.971111447108147, 43.503344667257856, 26.063528012376764, 69.75173892984827, 51.05913144407161, 48.23838699585025, 98.13025453893545, 18.567598178302685, 6.416964879730655, 41.82353708218961, 49.688479181591994, 72.08730074628447, 17.98267518748344, 9.3074482586884, 65.61630670886684, 21.663021811270813, 87.84483478758966, 91.06340896267113, 49.36580453986856, 16.689305785325942, 7.3529933741550515, 38.2020991907812, 25.935686468111697, 8.463055867645112, 52.07496282283623, 15.473188484517546, 7.411429239096413, 15.783549716331324, 50.671154174069315, 92.98219349139623, 5.9797240113595365, 8.512656889023862, 7.513225950153435, 12.335715807264474, 6.473179314063944, 31.329571942925018, 75.36725545975284, 85.65049769245417, 91.22700439544519, 119.31881541223058, 70.76581229909438, 41.714171917732884, 7.772433406834217, 24.175145718877108, 54.61573195299233, 14.309615363783807, 7.583029978168139, 20.746536876624464, 70.00713180843746, 6.995272707328001, 189.1808996679256, 34.97264472476522, 44.80699276927231, 71.08871029148568, 6.080756687858978, 6.400451074633035, 40.27261987942456, 37.69877561416826, 12.597261161198844, 75.41027424769631, 13.778046596367842, 30.207799492750105, 11.543983717246899, 9.268426476101856, 17.436090639388325, 38.59708367449717, 6.711740787894656, 46.26986116289657, 41.09362197987393, 64.4706481415096, 73.1000745464092, 32.988495968998095, 35.045174017264316, 7.124950426670974, 67.22351545831356, 6.9825576940473955, 77.7596650858677, 9.652785849062376, 31.71253986221565, 31.18009450362809, 16.44784641661644, 148.06005850442187, 25.608215134952864, 46.20340219491623, 33.25253493743395, 120.92928840499071, 5.627206169346645, 12.45679967275969, 26.960151861694147, 100.28658928122834, 31.58094362534189, 10.622179924820344, 73.04440525518811, 6.765572067682818, 9.689057140345883, 44.439448539276334, 11.233902080162288, 36.671289794185206, 98.3458842234609, 64.631209927725, 64.3949910307379, 28.256376921185847, 98.6293929997267, 7.5448841070444095, 11.139084756436638, 12.965211035924476, 84.225753291356, 12.393898103211535, 6.165553865521484, 39.05283847891534, 23.24421991280431, 69.5528430461778, 205.1301853281634, 12.949995487532522, 20.673451261145495, 5.08645092303069, 58.526008465452925, 22.30615483996454, 12.299169296490275, 61.81203274765354, 142.73377361969307, 35.712492115731266, 72.63199365616825, 86.67915836375428, 72.83015380979701, 22.761458627336303, 66.88954009147541, 6.146921402890075, 97.82135012922686, 24.87444787693881, 74.70505634129346, 94.36487532455727, 8.750045345041823, 68.87459424704828, 18.903334254258922, 38.778201882052024, 5.534419318899557, 61.65166021124054, 112.81177272372189, 7.686898522328469, 43.884379269437474, 48.00551868246261, 80.20408389342356, 262.9571099079507, 21.68753644238402, 66.15545037633294, 21.546636026498273, 159.7624929702232, 18.65552380883137, 14.233985138312926, 80.9669185884513, 42.34120755189602, 97.59950280994634, 78.50939402399703, 8.268061530892547, 18.347484614852196, 57.011158963683975, 41.27348419371819, 5.153842132846884, 5.36688732469088, 32.79997922594276, 85.35853636315143, 8.795617205334455, 25.75159208103001, 87.12401077141372, 48.319302682023704, 52.49205409473274, 54.20521537493848, 42.63730066805793, 14.370322715296382, 81.64441800338916, 14.458247458753483, 7.092044393458784, 53.89631126742215, 80.5072658432511, 217.40420193615157, 62.96748523774882, 257.02932002205443, 79.55283713149218, 68.17929772521015, 36.33484438959783, 5.8575270811037745, 14.49767981552056, 121.26971722242818, 82.63859118581125, 15.4701695544546, 70.45933367086587, 79.5139789072565, 5.685364408185756, 15.553171039451597, 8.758988957760755, 84.50789060160061, 47.65460606267874, 109.01716034983286, 59.868082936574396, 44.94058774358109, 6.233033504272852, 8.215541810092034, 50.87348802014628, 6.2677002065284215, 16.880288082118014, 23.564995368714413, 8.767874286431093, 70.17652842032267, 68.89898431788376, 64.81172870212251, 5.5358922188873345, 71.83959811820688, 63.277896380452596, 82.76683761627258, 28.362203160597904, 26.396294548334275, 32.61178239488618, 76.70809691797461, 6.671274110743737, 26.952468122595754, 15.632369473437864, 89.3072064889143, 94.89530825810027, 28.295759354659463, 54.048301161156964, 81.40776846346985, 73.78993368019263, 156.42520092182795, 36.32933346785118, 6.466722371833583, 21.51280023805745, 27.16913626156522, 45.40793402300139, 62.13348472506344, 25.826544396973304, 5.4011234875858065, 72.56458759046625, 21.288575299710725, 9.916972015816704, 55.66767340451677, 11.360296979980427, 82.47996054206334, 86.73075959641342, 34.256229922360575, 21.09906625667165, 25.68110825999829, 167.83040827684272, 25.544158206495, 5.407225470129807, 22.633334145838234, 31.273157329616676, 27.027457590648922, 35.63421156390356, 9.140985562568053, 7.665343276357363, 96.10848950222821, 33.62703581198353, 98.2377233661374, 75.79140422508112, 55.57003769400919, 28.071279618640858, 78.90886693872933, 48.96582525506672, 38.44374298397095, 47.6833159399262, 11.852970435668773, 64.94715386909233, 54.39866350721504, 31.428707013321272, 43.9183158662439, 8.6008994636074, 19.533184411188223, 7.175739690778539, 51.221768962160226, 14.227681294850614, 13.185653584475496, 25.394553470822377, 81.45873921930624, 57.832443122175775, 10.763667998926712, 28.538900394921427, 27.399755327151716, 11.639696424038705, 51.95324037092699, 76.04332556921011, 80.31505886087768, 46.18230911854244, 30.236432893892676, 91.04832620948174, 26.080883745610333, 16.25192290496429, 13.693321942043164, 26.747076969530664, 6.069059062241769, 43.36105279291712, 5.169707984864355, 11.36013101194169, 113.26384110394868, 38.791482644620636, 11.403943340116449, 69.06941979523398, 9.801844665736862, 52.49129369956126, 45.443968010615436, 60.00754909497412, 14.672741652985902, 125.34391468150217, 60.468490911553204, 15.363508281382884, 75.28641691444547, 13.853302164466298, 46.50744099979276, 62.42593928565063, 14.878555217034886, 73.19182944329411, 5.687995407484441, 11.675319854711558, 127.18973786764917, 17.68317307070412, 45.325453752326375, 23.322605344795946, 34.62703018460701, 36.152231557767685, 16.29776200818338, 31.3757522517732, 20.983900280219693, 9.661789528049534, 44.865147518543395, 7.10979184640635, 18.804355250926214, 8.413882781660604, 65.25673755644664, 97.64803448526331, 51.810791082164684, 60.769472022964905, 6.359786711845216, 14.772693894909633, 8.475092837647518, 13.25021516616568, 13.519909252823785, 91.24905637910808, 7.892017181388625, 12.925960238007107, 7.826763694628829, 33.26738743054604, 22.857519850553246, 45.23040541686516, 221.75785447143488, 15.808088705304566, 149.29965985113935, 38.974153448028254, 68.92059964916982, 102.3819632372648, 10.855231661231391, 6.086626419029237, 67.02141690409942, 73.56718335477458, 24.513675009437485, 15.822776825855316, 16.036680986227793, 24.023897589438697, 16.245846295889713, 8.650085109745307, 12.602840693385193, 63.27259216308576, 18.67365523976529, 38.15749354549191, 73.20204326281215, 26.31107635336245, 51.14014226235689, 119.50296282437932, 8.706344851026534, 27.42004505900951, 118.77985909235201, 29.003790697358966, 78.29162286652912, 20.310604049453495, 63.36042971834639, 102.85130405254087, 142.96098112636284, 40.561866518487804, 18.023878402401976, 14.706096887884645, 6.019501030371557, 6.760330920085929, 6.36077798866443, 66.03820774816329, 38.66084561617304, 29.415088681149644, 89.71750046579598, 22.22182991476822, 7.7181113816570015, 29.314842411165607, 136.74323168558308, 18.648441468580017, 69.15973761638948, 12.822703951762824, 42.18485514632349, 33.30972350275011, 51.685190358425736, 38.86179650927905, 79.81495465078649, 178.12466200518062, 33.53531926435092, 21.040636516222314, 18.391121136154673, 102.65335981976251, 15.572792147680824, 122.85668682979623, 13.684047285473822, 36.405528780109115, 36.8851054815345, 49.16514317994589, 9.945500851109593, 29.642386114737235, 14.68613703800847, 51.74744454316581, 28.10667093183781, 11.781306021534757, 62.20039073991099, 7.360370241007484, 104.2499854101193, 51.01909270825123, 84.704838400606, 5.293819908144972, 13.144127890467777, 71.22981657217903, 26.121539496799883, 14.604122320905548, 18.146595970190152, 85.6966852764982, 39.34417512811194, 17.58327327487643, 79.24020621761386, 22.671379713725152, 112.91467250214772, 124.65186447995096, 42.389092232082405, 40.52876604732606, 52.09351501043149, 21.48504790950122, 79.14843185356924, 50.316368094605025, 27.861914618056673, 73.52132329370343, 71.47266105595118, 6.020716116343068, 101.23125108862305, 71.19631983420255, 94.9248155409537, 18.186165605483865, 7.797869618714471, 25.250028184563014, 82.11591511205, 31.863919652235158, 83.21166743055667, 8.913754858342134, 30.989500129989363, 49.22611544444382, 26.56917214394613, 23.187831186850563, 5.465734375342589, 6.317304140276667, 7.234245828198578, 5.167966778513769, 14.585345908245557, 69.39596335291905, 94.36565304246912, 7.362357655281642, 21.14204860759137, 48.026715763904036, 57.535059682424865, 79.67342633323808, 19.969842437877254, 24.078992490383417, 25.462232859630102, 42.74628371514005, 91.46343772643166, 12.947990095732447, 169.96757223913923, 63.901988311666955, 6.669640307547697, 9.686642719886471, 51.65663169261004, 17.67290173414079, 22.968137334694486, 40.99433275580416, 16.004577949485522, 73.58788087123128, 92.93654036412403, 199.66340617607824, 21.258919927244843, 163.96678513060687, 86.33145397238563, 18.41276629358312, 15.374752437057982, 5.36791347756093, 275.88077378198113, 13.364374861336916, 33.723432514888614, 51.80172507967361, 87.46061047299753, 6.858465573503268, 39.99913451221442, 56.80210698190832, 20.014968474075026, 71.94390581467488, 49.60687949436607, 8.891607533835082, 51.12408256658485, 37.84122205294573, 193.10398471839764, 15.030485045655364, 6.618134169098748, 35.20685746577995, 55.057574357733756, 22.37624782274877, 58.22273147542901, 48.270430100520535, 37.996445720731806, 81.00042569268001, 30.03196815796388, 18.851983727660283, 14.269508858757533, 24.16544095948548, 229.36641995464197, 47.15492958166474, 7.743314825073365, 85.26989289955489, 121.41238964725864, 24.2445328580309, 56.90211614694026, 6.31910109015161, 72.8326839808496, 56.88146939423114, 27.362229601425305, 15.53835139977295, 34.85617768131891, 35.43564651260393, 6.171835869842396, 29.540366991403285, 45.124653107291536, 56.24003521267823, 24.229380093122163, 80.98232339504135, 25.655107462607663, 28.278615908675086, 24.671792990286686, 10.991247061190302, 57.31965869857464, 66.73699552900247, 87.55338393385783, 7.528194000288891, 8.019737355125892, 87.11314180741576, 8.71644799909001, 172.73342040751942, 5.324582442936122, 60.36443265265215, 24.40256311356364, 22.08794102641682, 13.51524538755822, 32.93750941959298, 81.92225317187906, 196.55854058100755, 17.25984094422114, 20.660194729063612, 73.2555713454166, 68.26745853176806, 6.277376860447933, 94.84957374342454, 11.770728280216813, 6.746821344730813, 27.930274471346223, 44.457330295520805, 11.951054965284117, 25.957546336625008, 32.12660401146596, 57.34727716363975, 27.074162646411445, 15.984218467395026, 73.40668562551556, 7.244606363004726, 14.647725647711637, 100.60346180940033, 114.66056830325205, 64.11349917787308, 126.0358335655515, 76.8841829602863, 20.613363415112218, 5.861951347682387, 265.1682628235744, 71.23590910642878, 15.23803403805432, 119.00393703491493, 86.19637294680768, 5.18141487294445, 12.747010554241543, 69.40242970723044, 90.40321769574345, 13.662535776096647, 73.59105769987927, 22.046934682053998, 9.558689033991062, 7.430332790787886, 23.951808790715713, 23.851572444456625, 27.592435289330563, 49.1529240114108, 14.417961927400345, 5.237912498441554, 42.4307818452698, 28.63707001045069, 155.34751047310402, 29.479473522671565, 73.2849508919538, 43.13994733113267, 9.421028090911289, 13.082237190167763, 32.44349337054887, 36.040602506231686, 23.074563283794035, 85.25427531753468, 9.407185600915478, 264.1805531318463, 62.98214933258917, 193.3734569982374, 54.64141649141741, 77.93959519837617, 85.75844369386876, 82.16931515861614, 16.75840401651315, 38.3210291479571, 13.865790670369098, 6.554881272412893, 47.609114392259656, 31.13861920871187, 19.759509014354567, 27.086402836215722, 21.97424234699254, 113.45905094173533, 9.547235439455154, 21.758662678702386, 31.162052878309275, 11.924537311028395, 5.304831588344275, 24.564050017605844, 26.864987600932306, 7.252944911720924, 96.65152071304188, 90.53678468371292, 97.73599337812448, 8.60976217997779, 6.9486551300191195, 40.20538294236777, 42.113551407040674, 8.862139586537728, 12.261137244384523, 9.229218950765384, 15.16293307569951, 75.10797917072455, 29.477455065162545, 23.270626305504706, 16.648154283395016, 6.001308603155305, 27.02694368151551, 74.83964177870175, 6.543050462414721, 153.9922313198407, 5.023271149090043, 33.180321218238866, 26.962282523430684, 13.50590736526824, 76.13224549631754, 21.305392230248952, 80.35280163603169, 8.826951940699143, 91.6503411650755, 34.41518108075207, 359.21250299888067, 121.19976070351836, 81.32305545094853, 9.749645494666291, 70.37512271679016, 5.676968455247532, 21.030391603975406, 32.987245838848786, 44.20720397294062, 76.68113085543854, 84.20436064008021, 78.52546262884465, 17.92504510999389, 5.039309856581959, 39.443541790037806, 106.60975310385975, 6.472032637940052, 7.74125132179539, 19.362656066344506, 7.976793529016554, 51.389980782959, 31.938958475164643, 36.26936296494772, 63.59031500510242, 46.30745455653099, 6.368468492534012, 6.881454275621544, 15.350417530953306, 200.3778577846102, 85.54763969708999, 70.0089709992471, 21.945480328662402, 17.72088081872085, 87.92770164555756, 10.733686670031474, 67.32825772902807, 11.838076567990479, 16.03335170635083, 20.968017200103727, 109.69709979710238, 73.9405592305634, 56.8501313792373, 20.2402964142965, 31.36254355273943, 20.893527802980667, 147.94954955748423, 54.17410065575153, 8.280202295297507, 10.678291327115689, 122.04939936685136, 56.25104294076293, 103.47014679146288, 66.68983280560911, 27.67587004001858, 68.7928118731055, 12.25198516448998, 6.679594419498023, 12.137436685333398, 26.905351437399993, 5.887609042740777, 41.16009805937756, 120.38250135410391, 30.835113124632684, 99.08736929977238, 17.26197622422324, 112.86626983781292, 43.87406100088905, 8.522794326324881, 19.342699775687073, 6.882388660027847, 61.58722489714853, 36.318190033322, 27.328260178057608, 37.45575711882842, 51.23363619730858, 35.218269214719, 20.86787547828967, 16.05816668695206, 26.918619856077587, 6.482900058283324, 45.341275451678, 6.4843887746583, 55.205585237074466, 52.05469256452202, 5.728789416129064, 30.09060422108556, 65.42864090295653, 64.14442232863394, 44.751833374658034, 44.191963894079734, 91.65484090926256, 27.172818424144992, 7.251588718721217, 154.55442285066346, 6.206798372562375, 70.58669570717848, 189.31076974871655, 114.53465079825116, 22.60288137758441, 65.97479061316831, 37.200916337892366, 9.329477330896374, 70.54191611440807, 40.45716022578077, 81.29983294759204, 8.206997783844773, 79.67741854606307, 62.811036306013435, 43.19867154026024, 59.61750484134751, 9.669270976825292, 155.0674547558749, 7.629147916189123, 11.785245240182434, 14.977195141831716, 6.7691233194749545, 78.93695740756986, 27.08765519350237, 10.736732800645653, 13.700989685471963, 6.592948638636062, 66.99073670813878, 10.148716691904998, 6.86914453283645, 26.061979781916243, 90.66802747781549, 63.12935565977257, 68.58353120335909, 32.859622835494115, 130.50279590014915, 31.633106641821502, 28.581787580791655, 41.5915298331685, 6.146305834577782, 64.9129884487596, 7.796390258687633, 31.028664479186926, 106.63643094253906, 21.84652386016895, 33.07969859881986, 5.431059710373697, 26.286026781493607, 5.779742590479982, 9.032975243860463, 61.318280484503326, 43.50785106338199, 5.182916317721356, 82.8042170370272, 146.99254988657609, 24.320299908978704, 14.476167087745493, 11.66848589808424, 87.93769501870028, 45.21068127125628, 88.00044596148655, 10.18136217390339, 6.117888123091395, 6.394034843998667, 36.74115702400812, 29.875490397543487, 95.57073754193196, 76.04517229876298, 12.7023808309337, 16.96512229067219, 90.2937930884242, 8.316367527057437, 7.533338253146028, 6.0517910819256855, 23.295979522394187, 61.98397604743194, 9.61016958281436, 19.304689271909425, 48.60105140713537, 72.23998277025834, 60.97390174530979, 6.822958886339188, 18.063365618323555, 87.64968466460914, 78.6344874290354, 10.086399624533026, 8.583023524714418, 23.489488340684368, 72.78728113953278, 15.111790675809452, 50.32449292073183, 11.2698744481705, 49.641942066274595, 8.785215536289638, 68.36500790055716, 6.176566891582664, 16.552159378410533, 21.751624476598685, 49.794824231143636, 40.32370249391014, 11.750496225902447, 87.42070070997931, 11.158228772285803, 44.97054280706908, 19.452023508574122, 13.875330356965033, 88.35858391489106, 9.601492283907485, 82.39010181472224, 37.72479537066435, 62.7116012778387, 43.154967762719565, 20.374631896170662, 58.80122122387226, 29.62262061167872, 10.766342610936151, 11.316037559684494, 98.28507824704832, 18.46713056548022, 6.179556630717204, 44.8771045791323, 95.60563982512637, 58.83281009034772, 25.05635526903306, 7.008280690716157, 5.7916663672529065, 36.35576335949576, 102.13691803550181, 248.527087083899, 10.403544817973826, 103.2821004608279, 106.59267169335384, 14.100486291904222, 39.093961093072906, 63.61838014829647, 6.330325978324182, 12.774207124462475, 10.085245649120964, 21.792053935133435, 108.21305367059227, 34.353366287750056, 74.29724879596245, 28.722522195625505, 11.266162391385333, 12.607727802056873, 5.5218660722109645, 88.6196517212679, 88.80282188428487, 141.67066161600772, 10.666336195897465, 14.714424085039509, 21.62992572379278, 68.4111673164934, 17.448823185916478, 47.191182950646365, 12.883614351536252, 40.1373148757352, 42.763057147800396, 36.15057500433004, 93.43121268091663, 34.079003525672256, 9.648050208076477, 34.923090821886746, 30.61273723288304, 59.35803012153174, 34.666087042814745, 11.728362928909554, 24.043687759672654, 71.34374172854362, 11.988094750255113, 58.84335888684433, 75.75217430813004, 23.632960652159667, 15.552500565718988, 44.52361230985607, 67.57488195005858, 7.0568237049361615, 21.428282128537433, 89.1759374803058, 36.64054873075258, 9.458824895606032, 62.9400774820045, 71.91304888856297, 41.673059260747685, 14.73307203920438, 74.13278343225704, 38.05353614640873, 11.643004154028652, 28.7277923741204, 71.93288656086814, 123.10498795221534, 47.37631536206419, 35.99328073595714, 14.626173391873497, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([9585913.554592524, 9602737.116957165, 9602745.40493423, 9602755.704669293, 9653624.362895925, 9670079.6875, 9708601.431861065, 9962352.49544745, 9982630.055141915, 10072225.0, 10125358.084922463, 10181411.320156008, 10261656.13482226, 10294257.336945763, 10319070.114545131, 10365156.25, 10416006.25, 10416054.6875, 10444634.64256571, 10460357.459552411, 10551746.681633402, 10554573.924353706, 10563518.75, 10563520.283305943, 10614524.059227854, 10622501.5625, 10646606.30889825, 10660670.587990873, 10698507.127479037, 10708523.4375, 10721571.490829425, 10735707.338553462, 10803977.631483357, 10804653.198563209, 10804752.96362076, 10821959.934300592, 10822998.765933184, 10824027.32861478, 10840498.387900528, 10896345.532027015, 10896798.4375, 10899434.375, 10902504.6875, 10905117.1875, 10921343.1493629, 10926922.975069879, 10951473.364146102, 10968382.8125, 10969376.5625, 10969638.120071506, 10969654.659033123, 10971038.917787094, 10981859.696412953, 11013429.188483339, 11044719.418903507, 11046953.125, 11049994.143674644, 11050839.875715485, 11088491.613270806, 11090623.854068827, 11110186.256951679, 11116860.751477158, 11146422.007832777, 11166119.749098696, 11167653.329668589, 11170364.634325748, 11171559.759774188, 11210505.13911432, 11226505.091876255, 11227785.681579446, 11237716.281136245, 11237809.285674892, 11240494.351545904, 11245732.8125, 11269994.163865766, 11273601.5625, 11273602.810567914, 11281893.75, 11282707.8125, 11291027.007266099, 11329094.149480855, 11335351.695308657, 11335663.886211231, 11341007.756280921, 11342544.337463642, 11345730.775899524, 11350124.497215202, 11350588.17241443, 11350947.58739331, 11351771.875, 11354482.8125, 11359365.55409558, 11375446.2991029, 11381131.25, 11381403.125, 11381501.265771402, 11382659.375, 11386294.969637258, 11387204.403768396, 11388086.188439606, 11389465.549569387, 11389916.154849328, 11392907.414864836, 11393912.235056557, 11394590.625, 11394590.625, 11399282.8125, 11405634.259390956, 11419584.375, 11420434.375, 11427934.388293207, 11436106.25, 11439769.75639038, 11440522.566750955, 11444420.669607723, 11447606.24964999, 11447630.29697176, 11447633.158552391, 11456740.963109367, 11457735.02998483, 11468300.0, 11468946.175427532, 11478633.967895776, 11478648.67298909, 11478852.273639234, 11480423.353110306, 11480428.23131706, 11481103.819332952, 11484526.213068957, 11488103.125, 11488504.697837206, 11565870.707217976, 11588614.0625, 11589051.62939442, 11592330.22370931, 11593603.125, 11595004.6875, 11596509.324935988, 11599943.0405107, 11612784.447009651, 11617267.023226663, 11625771.882267086, 11629750.925239509, 11641019.545219095, 11652528.807772188, 11654653.838280616, 11655467.1875, 11656751.221783966, 11659592.1875, 11661706.25, 11663316.544198874, 11668416.601211714, 11668497.81776678, 11671340.625, 11675313.640317133, 11686088.139206158, 11689138.981068995, 11689648.4375, 11689698.415866567, 11693426.5625, 11695206.25, 11714687.5, 11716133.63174156, 11717887.23809222, 11718975.547268715, 11722852.660776451, 11723263.845657706, 11732829.6875, 11735096.875, 11742035.159393517, 11759228.125, 11771088.741800675, 11792530.416111656, 11800523.465053972, 11803700.0, 11811727.53482169, 11812351.788034193, 11816703.125, 11818432.8125, 11821919.176668564, 11834759.989227155, 11852751.08177289, 11856253.972525887, 11856271.380350016, 11856396.002291061, 11858847.596677182, 11861674.801103259, 11863733.029468548, 11863818.75, 11868494.542694347, 11870170.3125, 11871190.589821473, 11872306.926371885, 11872937.5, 11876976.5625, 11877027.623406764, 11879628.835925352, 11883109.375, 11887609.963372609, 11887614.915216874, 11888858.135426138, 11891714.0625, 11895262.5, 11895946.875, 11896333.497453125, 11897323.4375, 11901324.841611765, 11901699.457510134, 11902037.367157081, 11902159.261936003, 11902523.4375, 11916976.960234044, 11920827.457780046, 11924592.1875, 11953867.789419739, 11961556.25, 11964343.75, 11966382.8125, 11967533.384190064, 11967535.815970015, 11968323.246686902, 11969822.50973259, 11969854.81961435, 11969863.892989326, 11970950.0, 11971701.2210171, 11995518.901725663, 11998289.860413231, 12002532.582174748, 12003198.4375, 12005485.9375, 12007362.5, 12008220.970860597, 12009035.662214916, 12009063.92571097, 12009339.0625, 12010262.503971012, 12011443.879354797, 12011466.961839708, 12011486.748790799, 12011864.0625, 12012960.217579905, 12019651.5625, 12019737.557797324, 12019794.664316779, 12020809.375, 12021198.4375, 12021607.684967255, 12022721.757272825, 12023739.080395944, 12023848.4375, 12024463.582261933, 12024622.836514335, 12024975.170169704, 12026128.125, 12026421.875, 12026774.98831638, 12027067.347950943, 12027137.5, 12027568.029197149, 12029079.067212254, 12031841.883410946, 12034154.556320006, 12037069.781989397, 12037449.927548068, 12037850.0, 12041665.625, 12042977.971810002, 12050203.194132308, 12051295.3125, 12051299.479249982, 12061074.057358548, 12062303.125, 12063600.143876474, 12066232.654302118, 12067121.875, 12069333.891966049, 12083271.334571447, 12125252.962454343, 12137040.212491738, 12150986.031550756, 12155645.539550288, 12157802.732179888, 12160078.125, 12161380.18124791, 12196030.86486795, 12199146.640876891, 12199273.606009314, 12199985.9375, 12202890.625, 12203275.229176767, 12212041.826500822, 12212857.45701288, 12216167.164168507, 12217383.80179578, 12219714.0625, 12221764.0625, 12223408.948749077, 12223912.919230431, 12226295.0574389, 12227056.25, 12227070.3125, 12227839.0625, 12229036.488077544, 12230914.903188892, 12232165.827572152, 12237200.358843546, 12238245.111703254, 12239738.510425514, 12241191.1997676, 12241554.6875, 12245479.6875, 12246251.316407882, 12247192.1875, 12250608.024698183, 12251295.617092233, 12261756.25, 12262743.299105147, 12267403.125, 12268437.5, 12269292.621022463, 12270970.3125, 12270980.494417107, 12272561.243492626, 12273485.094398657, 12273510.84070966, 12274024.814894099, 12274124.84936228, 12274237.685652738, 12274778.268777207, 12275071.875, 12275076.876243798, 12275104.857320141, 12275278.125, 12275991.133479485, 12276128.556765975, 12276500.628262773, 12276814.0625, 12277253.0526521, 12277775.814946651, 12277991.983012347, 12278066.198717551, 12278193.75, 12278584.05685028, 12278812.5, 12281874.134803448, 12283645.295884594, 12284563.539118478, 12284699.701095866, 12286126.88670391, 12288292.1875, 12290153.69654929, 12291293.79696287, 12292175.291912725, 12292192.671153251, 12294819.871933378, 12294927.27746396, 12295496.09442526, 12296310.384893797, 12297200.366491577, 12298086.813247055, 12298089.017957645, 12299013.161663854, 12300198.670720315, 12303287.116779624, 12305003.077479633, 12307348.4375, 12307731.25, 12308964.761800965, 12311704.64249283, 12314781.590247875, 12320316.659576472, 12322371.740794325, 12322777.446319306, 12331671.046086142, 12332249.347113179, 12332291.203438375, 12338572.79294961, 12340460.868470281, 12343610.9375, 12344064.747343423, 12345839.27268254, 12345958.265011763, 12346381.25, 12347496.875, 12348687.5, 12351865.443392586, 12355067.173325367, 12357167.1875, 12362906.25, 12397535.694968909, 12400795.525971713, 12401251.82293633, 12407568.471087689, 12409294.054729091, 12419591.254472682, 12420368.017410299, 12420384.89644092, 12420992.721854895, 12427621.875, 12428798.4375, 12434786.183516642, 12434814.0625, 12435501.217193866, 12446906.96753736, 12453998.37909512, 12462798.4375, 12468070.3125, 12475487.5, 12489404.060185425, 12489432.288513236, 12489815.625, 12492097.116540713, 12503392.1875, 12503686.564080661, 12504070.249334618, 12504071.188461008, 12504939.046572465, 12507746.018941788, 12508065.625, 12510612.092459867, 12511293.75, 12511308.554233827, 12514559.765913265, 12515087.806820022, 12516357.275555667, 12516420.3125, 12516872.59565744, 12517621.615290703, 12517630.555315, 12517943.75, 12520732.636078771, 12525096.875, 12527085.9375, 12527286.521319646, 12530488.672438165, 12530862.055977777, 12531274.045582773, 12533277.238973519, 12534159.375, 12534651.718819331, 12537309.375, 12539199.625710094, 12541208.53560716, 12541310.51348494, 12541740.085902488, 12542269.39675168, 12543029.6875, 12545770.147962475, 12546423.4375, 12546450.764887648, 12548094.131442362, 12548534.287703142, 12552283.649577346, 12552853.332778476, 12553098.630855788, 12553767.1875, 12553857.90071344, 12554321.307204636, 12554685.9375, 12555290.490402885, 12556009.28357395, 12557035.020737093, 12557581.25, 12557587.1848315, 12557782.356286904, 12558623.850936377, 12559238.67302628, 12560264.865840364, 12560694.928040255, 12560837.5, 12560957.8125, 12561371.875, 12561599.499192413, 12562218.75, 12562743.690566177, 12563320.856244106, 12563361.269539017, 12563782.8125, 12564214.951108234, 12564395.3125, 12564846.875, 12564850.0, 12564860.026841605, 12565097.382870829, 12565186.59248483, 12565345.3125, 12565585.9375, 12565787.213617535, 12565799.460999506, 12565906.25, 12565920.866168885, 12566159.267673781, 12566374.654615888, 12566378.217120066, 12566383.199054662, 12566398.849886486, 12566439.174011622, 12566717.986109842, 12566767.1875, 12566833.832584422, 12567055.530986117, 12567530.71407363, 12567806.25, 12568915.625, 12569840.204309316, 12569887.991165113, 12570685.662770307, 12571123.260631656, 12571301.517209405, 12571532.614571186, 12571702.394585406, 12572026.557147479, 12572757.8125, 12574315.135912778, 12574584.767230269, 12575872.666051038, 12576114.632346584, 12576363.56765715, 12576555.584846446, 12577079.940997638, 12577100.143474136, 12577298.585607946, 12578515.66660715, 12578594.78869967, 12578695.232200524, 12582846.875, 12582871.490050314, 12583984.484205112, 12585777.301909948, 12585856.103689373, 12585991.701435518, 12586093.75, 12586606.25, 12588831.25, 12593689.520237327, 12593884.375, 12594581.25, 12596305.587854711, 12598146.875, 12598264.0625, 12598363.492157476, 12598488.815894118, 12598500.0, 12598623.417939737, 12598896.898149576, 12599872.66294351, 12600032.321300456, 12600748.870017445, 12600749.615621379, 12600960.9375, 12602065.280425735, 12602136.455916855, 12602159.95772341, 12606468.332134528, 12607585.089221882, 12607681.06176516, 12607713.377857585, 12607750.077894341, 12607770.3125, 12607776.933868999, 12607810.9375, 12607832.161416214, 12608357.59168592, 12608525.0, 12608861.337554822, 12609212.5, 12609339.816973738, 12610612.0514722, 12611340.77324544, 12612551.5625, 12612559.375, 12612667.955992393, 12612845.196471224, 12612855.371432357, 12612900.0, 12612921.108624507, 12612996.535063297, 12613321.710768305, 12613368.241892409, 12613623.206339885, 12613640.53590713, 12614239.0625, 12614278.125, 12614326.55496331, 12614431.037637042, 12614544.771346273, 12615429.277014457, 12615616.358112441, 12615629.6875, 12616629.172607632, 12618592.1875, 12630354.436871143, 12633422.99513182, 12638255.817658054, 12638357.622297753, 12639057.010427572, 12640442.1875, 12641277.17772679, 12642233.352791868, 12642471.274775244, 12642638.898329934, 12642639.142640058, 12642987.5, 12644956.625803104, 12644995.228345865, 12645058.199051866, 12645125.0, 12647300.469796672, 12648601.417629387, 12649344.590240614, 12649778.125, 12649787.380250571, 12650475.249077355, 12653521.413753213, 12654230.136161543, 12659570.175321989, 12659934.375, 12660258.532407451, 12661648.4375, 12661903.125, 12662826.470366288, 12664373.851936027, 12665119.37794621, 12668747.300971927, 12669265.59649185, 12672032.888180641, 12673533.817947978, 12674497.22585237, 12677477.238702742, 12677853.961522356, 12678325.0, 12678949.74081686, 12679733.993428988, 12680534.117530508, 12680793.303783115, 12680883.069601588, 12682079.182727369, 12684415.97487246, 12716396.582852893, 12718427.56422827, 12718534.375, 12720960.793007987, 12721112.239501394, 12722779.6875, 12724231.25, 12724406.14491415, 12724450.413098447, 12726046.875, 12726746.875, 12727129.79162686, 12727607.705491459, 12727637.304197133, 12727837.97183646, 12728891.832654236, 12729406.25, 12730798.525784904, 12731779.445606593, 12731875.0, 12732007.8125, 12732134.375, 12732737.5, 12733198.290931314, 12733432.8125, 12733491.031961955, 12733921.854585988, 12734149.685913594, 12734787.919234034, 12734844.326661572, 12734925.0, 12735060.244181974, 12735209.297848335, 12735262.046916496, 12735278.125, 12735278.36968213, 12735521.401215596, 12735941.711325534, 12736322.331254765, 12738234.813639637, 12738980.238403847, 12739820.222600874, 12743975.477669895, 12748415.930750206, 12750571.759081595, 12750800.88087787, 12754647.439927727, 12754705.549170883, 12755213.284406917, 12755462.5, 12756902.512479983, 12756903.746422095, 12757423.31412765, 12757704.008390395, 12757914.0625, 12757942.1875, 12758563.72396043, 12758679.841460807, 12759202.246897798, 12759240.082954317, 12759539.0625, 12761695.660424149, 12762498.4375, 12762945.7618363, 12763590.560261557, 12763736.062135125, 12764286.554636238, 12765949.757733082, 12773176.043475013, 12773785.8101029, 12773947.77389074, 12774718.739844332, 12775726.445949148, 12776355.63359916, 12777870.3125, 12778432.8125, 12779337.956418833, 12779871.875, 12780852.646523586, 12782245.352626726, 12782477.730951319, 12785056.25, 12785618.75, 12786303.484577015, 12786357.839328505, 12786611.548401069, 12787417.054507352, 12787798.4375, 12787815.625, 12788256.153260445, 12788348.803620042, 12788369.568653267, 12788549.3643448, 12788945.3125, 12789070.3125, 12789967.1875, 12790223.4375, 12790337.5, 12790517.949104892, 12791177.125915814, 12791736.04079888, 12792240.625, 12792242.1875, 12792512.5, 12792599.544183942, 12793247.452777795, 12793411.44416368, 12793609.10739204, 12793654.6875, 12793786.348936448, 12793990.884718517, 12794194.758201087, 12794455.608428502, 12794560.9375, 12794567.1875, 12794697.802019393, 12794909.375, 12794933.812719187, 12795554.615887757, 12795849.973398212, 12796257.800425239, 12797784.067102868, 12797804.6064247, 12798249.274333622, 12798473.112796066, 12798590.625, 12798679.643106448, 12799182.495723197, 12799441.985367028, 12799752.68963571, 12800129.088498084, 12800398.171859002, 12801118.135366367, 12801689.78154347, 12801814.0625, 12807232.8125, 12807935.9375, 12808087.999506585, 12808303.125, 12810735.9375, 12810744.171485431, 12811382.749467317, 12811836.505170796, 12812520.135132886, 12814981.467821836, 12816093.325916128, 12817727.249817444, 12817934.375, 12819028.125, 12819308.568099586, 12819314.327558981, 12819505.492720047, 12819823.410711346, 12820372.415641544, 12820539.045238724, 12820660.05557706, 12820670.3125, 12820683.153196247, 12820719.609966017, 12820879.6875, 12820962.5, 12820987.5, 12821189.237299174, 12821671.849143555, 12821719.501169285, 12821794.222963236, 12821858.186105832, 12823638.568997752, 12824106.25, 12825214.0625, 12825554.99498678, 12826405.9709865, 12827289.0625, 12827470.3125, 12827734.372721517, 12828171.875, 12828192.838319167, 12829678.125, 12829913.908919962, 12830015.625, 12833509.019852765, 12833623.4375, 12833635.9375, 12835411.311764823, 12836066.989646522, 12836728.196074268, 12836891.008538365, 12837285.946831169, 12838381.278069125, 12840151.5625, 12843634.297919732, 12843893.484587267, 12845480.881421125, 12846572.51861035, 12851204.20855404, 12852211.768178225, 12858311.444566827, 12860661.072184753, 12860840.100305978, 12861307.8125, 12861456.25, 12862084.019509992, 12862268.75, 12862334.452497298, 12862551.5625, 12863050.0, 12864245.854225785, 12865700.0, 12866120.816726094, 12866154.6875, 12866373.483124586, 12866373.949835755, 12866550.82633467, 12866555.514506917, 12866898.313053127, 12867096.401299022, 12867410.56213719, 12867542.1875, 12867556.25, 12867624.175635662, 12867998.590088062, 12868153.199832635, 12868284.118317837, 12868306.122309035, 12868328.445456402, 12868360.493522083, 12868626.5625, 12868892.1875, 12868916.484032696, 12868947.15666616, 12869155.629525453, 12869196.875, 12869225.535707526, 12869423.4375, 12869468.75, 12869471.13030648, 12869528.57084487, 12869655.216045856, 12869848.493412042, 12870240.427512838, 12870402.768463785, 12870419.80634187, 12870426.5625, 12870762.812257264, 12870797.68604847, 12870903.124137456, 12871242.132677842, 12871327.719274746, 12871659.665674238, 12871969.38278206, 12871989.0625, 12872141.514391765, 12872855.463158384, 12873925.52145124, 12885209.054268446, 12885656.25, 12885801.681647766, 12886835.9375, 12889961.026589472, 12894151.39625418, 12895014.899745515, 12895462.653340952, 12899772.684823923, 12900411.304356677, 12900412.921939287, 12902916.929614922, 12904515.593607, 12914444.114972064, 12914723.4375, 12915386.502013767, 12920279.70159071, 12927196.142763307, 12929811.084217073, 12931317.083093124, 12939809.678036083, 12941425.277057044, 12941469.690184465, 12947059.939703384, 12949857.8125, 12950150.58590521, 12950912.899366291, 12951817.1875, 12954471.630817546, 12954471.992237061, 12955643.76598869, 12956360.06920359, 12957603.960833712, 12957925.0, 12958060.835644526, 12958143.75, 12958585.733271157, 12959160.488743497, 12959201.256301928, 12959810.9375, 12959883.667511726, 12960166.734620195, 12960221.356405728, 12960332.503976569, 12960743.782420773, 12961568.510342026, 12962714.778708778, 12963045.3125, 12967784.858834643, 12968072.722830396, 12968157.024628289, 12969404.356224664, 12970295.55905936, 12971085.9375, 12982481.25, 12987101.5625, 12992840.711809784, 12997477.339944474, 12997763.829245945, 12998053.125, 12998489.0625, 12999903.01604979, 13001148.120815355, 13001370.251617843, 13004064.474173725, 13004084.375, 13006172.309693629, 13009105.509636384, 13010436.830093706, 13011785.227117788, 13013809.375, 13015979.6875, 13016850.356364777, 13016916.80615257, 13018606.602159355, 13019446.875, 13019693.369364766, 13020565.571774526, 13020568.27582105, 13020612.853055306, 13020893.472592782, 13021070.3125, 13021653.58541689, 13022574.744017132, 13023707.493389921, 13023769.400260001, 13024322.026568409, 13024431.25, 13024510.9375, 13025459.123303778, 13025714.375431824, 13025823.4375, 13026644.131801642, 13031231.396947121, 13031354.538674632, 13037761.653048422, 13041384.375, 13041681.19421764, 13047786.66097366, 13050005.160242466, 13051420.618921284, 13051423.4375, 13052221.875, 13054321.768469818, 13054574.344297942, 13055237.5, 13055360.852232529, ...], [8.935940052096337, 44.44322652068546, 11.275327981059617, 7.417231040746301, 7.976142915931769, 58.43295017874761, 26.185388737604825, 7.979536457603981, 16.55613177393724, 87.40523396269661, 25.09222877198046, 16.632585775493265, 40.55818114870256, 19.58844226382955, 60.901579567416974, 60.33871161911052, 52.74781433175159, 76.64884772107425, 9.568378517633091, 39.68052464643962, 85.94355985971285, 39.36015663978411, 81.80904655796913, 23.57404167893465, 9.918945629729903, 31.41241763157859, 15.17085685653908, 16.106944428797338, 8.81236684676192, 111.75990455751283, 26.241232332198372, 21.756994995800348, 13.343837568506748, 15.229512419891835, 10.884494172421059, 24.195594996622606, 35.70254696785311, 18.971111447108147, 43.503344667257856, 26.063528012376764, 69.75173892984827, 51.05913144407161, 48.23838699585025, 98.13025453893545, 18.567598178302685, 6.416964879730655, 41.82353708218961, 49.688479181591994, 72.08730074628447, 17.98267518748344, 9.3074482586884, 65.61630670886684, 21.663021811270813, 87.84483478758966, 91.06340896267113, 49.36580453986856, 16.689305785325942, 7.3529933741550515, 38.2020991907812, 25.935686468111697, 8.463055867645112, 52.07496282283623, 15.473188484517546, 7.411429239096413, 15.783549716331324, 50.671154174069315, 92.98219349139623, 5.9797240113595365, 8.512656889023862, 7.513225950153435, 12.335715807264474, 6.473179314063944, 31.329571942925018, 75.36725545975284, 85.65049769245417, 91.22700439544519, 119.31881541223058, 70.76581229909438, 41.714171917732884, 7.772433406834217, 24.175145718877108, 54.61573195299233, 14.309615363783807, 7.583029978168139, 20.746536876624464, 70.00713180843746, 6.995272707328001, 189.1808996679256, 34.97264472476522, 44.80699276927231, 71.08871029148568, 6.080756687858978, 6.400451074633035, 40.27261987942456, 37.69877561416826, 12.597261161198844, 75.41027424769631, 13.778046596367842, 30.207799492750105, 11.543983717246899, 9.268426476101856, 17.436090639388325, 38.59708367449717, 6.711740787894656, 46.26986116289657, 41.09362197987393, 64.4706481415096, 73.1000745464092, 32.988495968998095, 35.045174017264316, 7.124950426670974, 67.22351545831356, 6.9825576940473955, 77.7596650858677, 9.652785849062376, 31.71253986221565, 31.18009450362809, 16.44784641661644, 148.06005850442187, 25.608215134952864, 46.20340219491623, 33.25253493743395, 120.92928840499071, 5.627206169346645, 12.45679967275969, 26.960151861694147, 100.28658928122834, 31.58094362534189, 10.622179924820344, 73.04440525518811, 6.765572067682818, 9.689057140345883, 44.439448539276334, 11.233902080162288, 36.671289794185206, 98.3458842234609, 64.631209927725, 64.3949910307379, 28.256376921185847, 98.6293929997267, 7.5448841070444095, 11.139084756436638, 12.965211035924476, 84.225753291356, 12.393898103211535, 6.165553865521484, 39.05283847891534, 23.24421991280431, 69.5528430461778, 205.1301853281634, 12.949995487532522, 20.673451261145495, 5.08645092303069, 58.526008465452925, 22.30615483996454, 12.299169296490275, 61.81203274765354, 142.73377361969307, 35.712492115731266, 72.63199365616825, 86.67915836375428, 72.83015380979701, 22.761458627336303, 66.88954009147541, 6.146921402890075, 97.82135012922686, 24.87444787693881, 74.70505634129346, 94.36487532455727, 8.750045345041823, 68.87459424704828, 18.903334254258922, 38.778201882052024, 5.534419318899557, 61.65166021124054, 112.81177272372189, 7.686898522328469, 43.884379269437474, 48.00551868246261, 80.20408389342356, 262.9571099079507, 21.68753644238402, 66.15545037633294, 21.546636026498273, 159.7624929702232, 18.65552380883137, 14.233985138312926, 80.9669185884513, 42.34120755189602, 97.59950280994634, 78.50939402399703, 8.268061530892547, 18.347484614852196, 57.011158963683975, 41.27348419371819, 5.153842132846884, 5.36688732469088, 32.79997922594276, 85.35853636315143, 8.795617205334455, 25.75159208103001, 87.12401077141372, 48.319302682023704, 52.49205409473274, 54.20521537493848, 42.63730066805793, 14.370322715296382, 81.64441800338916, 14.458247458753483, 7.092044393458784, 53.89631126742215, 80.5072658432511, 217.40420193615157, 62.96748523774882, 257.02932002205443, 79.55283713149218, 68.17929772521015, 36.33484438959783, 5.8575270811037745, 14.49767981552056, 121.26971722242818, 82.63859118581125, 15.4701695544546, 70.45933367086587, 79.5139789072565, 5.685364408185756, 15.553171039451597, 8.758988957760755, 84.50789060160061, 47.65460606267874, 109.01716034983286, 59.868082936574396, 44.94058774358109, 6.233033504272852, 8.215541810092034, 50.87348802014628, 6.2677002065284215, 16.880288082118014, 23.564995368714413, 8.767874286431093, 70.17652842032267, 68.89898431788376, 64.81172870212251, 5.5358922188873345, 71.83959811820688, 63.277896380452596, 82.76683761627258, 28.362203160597904, 26.396294548334275, 32.61178239488618, 76.70809691797461, 6.671274110743737, 26.952468122595754, 15.632369473437864, 89.3072064889143, 94.89530825810027, 28.295759354659463, 54.048301161156964, 81.40776846346985, 73.78993368019263, 156.42520092182795, 36.32933346785118, 6.466722371833583, 21.51280023805745, 27.16913626156522, 45.40793402300139, 62.13348472506344, 25.826544396973304, 5.4011234875858065, 72.56458759046625, 21.288575299710725, 9.916972015816704, 55.66767340451677, 11.360296979980427, 82.47996054206334, 86.73075959641342, 34.256229922360575, 21.09906625667165, 25.68110825999829, 167.83040827684272, 25.544158206495, 5.407225470129807, 22.633334145838234, 31.273157329616676, 27.027457590648922, 35.63421156390356, 9.140985562568053, 7.665343276357363, 96.10848950222821, 33.62703581198353, 98.2377233661374, 75.79140422508112, 55.57003769400919, 28.071279618640858, 78.90886693872933, 48.96582525506672, 38.44374298397095, 47.6833159399262, 11.852970435668773, 64.94715386909233, 54.39866350721504, 31.428707013321272, 43.9183158662439, 8.6008994636074, 19.533184411188223, 7.175739690778539, 51.221768962160226, 14.227681294850614, 13.185653584475496, 25.394553470822377, 81.45873921930624, 57.832443122175775, 10.763667998926712, 28.538900394921427, 27.399755327151716, 11.639696424038705, 51.95324037092699, 76.04332556921011, 80.31505886087768, 46.18230911854244, 30.236432893892676, 91.04832620948174, 26.080883745610333, 16.25192290496429, 13.693321942043164, 26.747076969530664, 6.069059062241769, 43.36105279291712, 5.169707984864355, 11.36013101194169, 113.26384110394868, 38.791482644620636, 11.403943340116449, 69.06941979523398, 9.801844665736862, 52.49129369956126, 45.443968010615436, 60.00754909497412, 14.672741652985902, 125.34391468150217, 60.468490911553204, 15.363508281382884, 75.28641691444547, 13.853302164466298, 46.50744099979276, 62.42593928565063, 14.878555217034886, 73.19182944329411, 5.687995407484441, 11.675319854711558, 127.18973786764917, 17.68317307070412, 45.325453752326375, 23.322605344795946, 34.62703018460701, 36.152231557767685, 16.29776200818338, 31.3757522517732, 20.983900280219693, 9.661789528049534, 44.865147518543395, 7.10979184640635, 18.804355250926214, 8.413882781660604, 65.25673755644664, 97.64803448526331, 51.810791082164684, 60.769472022964905, 6.359786711845216, 14.772693894909633, 8.475092837647518, 13.25021516616568, 13.519909252823785, 91.24905637910808, 7.892017181388625, 12.925960238007107, 7.826763694628829, 33.26738743054604, 22.857519850553246, 45.23040541686516, 221.75785447143488, 15.808088705304566, 149.29965985113935, 38.974153448028254, 68.92059964916982, 102.3819632372648, 10.855231661231391, 6.086626419029237, 67.02141690409942, 73.56718335477458, 24.513675009437485, 15.822776825855316, 16.036680986227793, 24.023897589438697, 16.245846295889713, 8.650085109745307, 12.602840693385193, 63.27259216308576, 18.67365523976529, 38.15749354549191, 73.20204326281215, 26.31107635336245, 51.14014226235689, 119.50296282437932, 8.706344851026534, 27.42004505900951, 118.77985909235201, 29.003790697358966, 78.29162286652912, 20.310604049453495, 63.36042971834639, 102.85130405254087, 142.96098112636284, 40.561866518487804, 18.023878402401976, 14.706096887884645, 6.019501030371557, 6.760330920085929, 6.36077798866443, 66.03820774816329, 38.66084561617304, 29.415088681149644, 89.71750046579598, 22.22182991476822, 7.7181113816570015, 29.314842411165607, 136.74323168558308, 18.648441468580017, 69.15973761638948, 12.822703951762824, 42.18485514632349, 33.30972350275011, 51.685190358425736, 38.86179650927905, 79.81495465078649, 178.12466200518062, 33.53531926435092, 21.040636516222314, 18.391121136154673, 102.65335981976251, 15.572792147680824, 122.85668682979623, 13.684047285473822, 36.405528780109115, 36.8851054815345, 49.16514317994589, 9.945500851109593, 29.642386114737235, 14.68613703800847, 51.74744454316581, 28.10667093183781, 11.781306021534757, 62.20039073991099, 7.360370241007484, 104.2499854101193, 51.01909270825123, 84.704838400606, 5.293819908144972, 13.144127890467777, 71.22981657217903, 26.121539496799883, 14.604122320905548, 18.146595970190152, 85.6966852764982, 39.34417512811194, 17.58327327487643, 79.24020621761386, 22.671379713725152, 112.91467250214772, 124.65186447995096, 42.389092232082405, 40.52876604732606, 52.09351501043149, 21.48504790950122, 79.14843185356924, 50.316368094605025, 27.861914618056673, 73.52132329370343, 71.47266105595118, 6.020716116343068, 101.23125108862305, 71.19631983420255, 94.9248155409537, 18.186165605483865, 7.797869618714471, 25.250028184563014, 82.11591511205, 31.863919652235158, 83.21166743055667, 8.913754858342134, 30.989500129989363, 49.22611544444382, 26.56917214394613, 23.187831186850563, 5.465734375342589, 6.317304140276667, 7.234245828198578, 5.167966778513769, 14.585345908245557, 69.39596335291905, 94.36565304246912, 7.362357655281642, 21.14204860759137, 48.026715763904036, 57.535059682424865, 79.67342633323808, 19.969842437877254, 24.078992490383417, 25.462232859630102, 42.74628371514005, 91.46343772643166, 12.947990095732447, 169.96757223913923, 63.901988311666955, 6.669640307547697, 9.686642719886471, 51.65663169261004, 17.67290173414079, 22.968137334694486, 40.99433275580416, 16.004577949485522, 73.58788087123128, 92.93654036412403, 199.66340617607824, 21.258919927244843, 163.96678513060687, 86.33145397238563, 18.41276629358312, 15.374752437057982, 5.36791347756093, 275.88077378198113, 13.364374861336916, 33.723432514888614, 51.80172507967361, 87.46061047299753, 6.858465573503268, 39.99913451221442, 56.80210698190832, 20.014968474075026, 71.94390581467488, 49.60687949436607, 8.891607533835082, 51.12408256658485, 37.84122205294573, 193.10398471839764, 15.030485045655364, 6.618134169098748, 35.20685746577995, 55.057574357733756, 22.37624782274877, 58.22273147542901, 48.270430100520535, 37.996445720731806, 81.00042569268001, 30.03196815796388, 18.851983727660283, 14.269508858757533, 24.16544095948548, 229.36641995464197, 47.15492958166474, 7.743314825073365, 85.26989289955489, 121.41238964725864, 24.2445328580309, 56.90211614694026, 6.31910109015161, 72.8326839808496, 56.88146939423114, 27.362229601425305, 15.53835139977295, 34.85617768131891, 35.43564651260393, 6.171835869842396, 29.540366991403285, 45.124653107291536, 56.24003521267823, 24.229380093122163, 80.98232339504135, 25.655107462607663, 28.278615908675086, 24.671792990286686, 10.991247061190302, 57.31965869857464, 66.73699552900247, 87.55338393385783, 7.528194000288891, 8.019737355125892, 87.11314180741576, 8.71644799909001, 172.73342040751942, 5.324582442936122, 60.36443265265215, 24.40256311356364, 22.08794102641682, 13.51524538755822, 32.93750941959298, 81.92225317187906, 196.55854058100755, 17.25984094422114, 20.660194729063612, 73.2555713454166, 68.26745853176806, 6.277376860447933, 94.84957374342454, 11.770728280216813, 6.746821344730813, 27.930274471346223, 44.457330295520805, 11.951054965284117, 25.957546336625008, 32.12660401146596, 57.34727716363975, 27.074162646411445, 15.984218467395026, 73.40668562551556, 7.244606363004726, 14.647725647711637, 100.60346180940033, 114.66056830325205, 64.11349917787308, 126.0358335655515, 76.8841829602863, 20.613363415112218, 5.861951347682387, 265.1682628235744, 71.23590910642878, 15.23803403805432, 119.00393703491493, 86.19637294680768, 5.18141487294445, 12.747010554241543, 69.40242970723044, 90.40321769574345, 13.662535776096647, 73.59105769987927, 22.046934682053998, 9.558689033991062, 7.430332790787886, 23.951808790715713, 23.851572444456625, 27.592435289330563, 49.1529240114108, 14.417961927400345, 5.237912498441554, 42.4307818452698, 28.63707001045069, 155.34751047310402, 29.479473522671565, 73.2849508919538, 43.13994733113267, 9.421028090911289, 13.082237190167763, 32.44349337054887, 36.040602506231686, 23.074563283794035, 85.25427531753468, 9.407185600915478, 264.1805531318463, 62.98214933258917, 193.3734569982374, 54.64141649141741, 77.93959519837617, 85.75844369386876, 82.16931515861614, 16.75840401651315, 38.3210291479571, 13.865790670369098, 6.554881272412893, 47.609114392259656, 31.13861920871187, 19.759509014354567, 27.086402836215722, 21.97424234699254, 113.45905094173533, 9.547235439455154, 21.758662678702386, 31.162052878309275, 11.924537311028395, 5.304831588344275, 24.564050017605844, 26.864987600932306, 7.252944911720924, 96.65152071304188, 90.53678468371292, 97.73599337812448, 8.60976217997779, 6.9486551300191195, 40.20538294236777, 42.113551407040674, 8.862139586537728, 12.261137244384523, 9.229218950765384, 15.16293307569951, 75.10797917072455, 29.477455065162545, 23.270626305504706, 16.648154283395016, 6.001308603155305, 27.02694368151551, 74.83964177870175, 6.543050462414721, 153.9922313198407, 5.023271149090043, 33.180321218238866, 26.962282523430684, 13.50590736526824, 76.13224549631754, 21.305392230248952, 80.35280163603169, 8.826951940699143, 91.6503411650755, 34.41518108075207, 359.21250299888067, 121.19976070351836, 81.32305545094853, 9.749645494666291, 70.37512271679016, 5.676968455247532, 21.030391603975406, 32.987245838848786, 44.20720397294062, 76.68113085543854, 84.20436064008021, 78.52546262884465, 17.92504510999389, 5.039309856581959, 39.443541790037806, 106.60975310385975, 6.472032637940052, 7.74125132179539, 19.362656066344506, 7.976793529016554, 51.389980782959, 31.938958475164643, 36.26936296494772, 63.59031500510242, 46.30745455653099, 6.368468492534012, 6.881454275621544, 15.350417530953306, 200.3778577846102, 85.54763969708999, 70.0089709992471, 21.945480328662402, 17.72088081872085, 87.92770164555756, 10.733686670031474, 67.32825772902807, 11.838076567990479, 16.03335170635083, 20.968017200103727, 109.69709979710238, 73.9405592305634, 56.8501313792373, 20.2402964142965, 31.36254355273943, 20.893527802980667, 147.94954955748423, 54.17410065575153, 8.280202295297507, 10.678291327115689, 122.04939936685136, 56.25104294076293, 103.47014679146288, 66.68983280560911, 27.67587004001858, 68.7928118731055, 12.25198516448998, 6.679594419498023, 12.137436685333398, 26.905351437399993, 5.887609042740777, 41.16009805937756, 120.38250135410391, 30.835113124632684, 99.08736929977238, 17.26197622422324, 112.86626983781292, 43.87406100088905, 8.522794326324881, 19.342699775687073, 6.882388660027847, 61.58722489714853, 36.318190033322, 27.328260178057608, 37.45575711882842, 51.23363619730858, 35.218269214719, 20.86787547828967, 16.05816668695206, 26.918619856077587, 6.482900058283324, 45.341275451678, 6.4843887746583, 55.205585237074466, 52.05469256452202, 5.728789416129064, 30.09060422108556, 65.42864090295653, 64.14442232863394, 44.751833374658034, 44.191963894079734, 91.65484090926256, 27.172818424144992, 7.251588718721217, 154.55442285066346, 6.206798372562375, 70.58669570717848, 189.31076974871655, 114.53465079825116, 22.60288137758441, 65.97479061316831, 37.200916337892366, 9.329477330896374, 70.54191611440807, 40.45716022578077, 81.29983294759204, 8.206997783844773, 79.67741854606307, 62.811036306013435, 43.19867154026024, 59.61750484134751, 9.669270976825292, 155.0674547558749, 7.629147916189123, 11.785245240182434, 14.977195141831716, 6.7691233194749545, 78.93695740756986, 27.08765519350237, 10.736732800645653, 13.700989685471963, 6.592948638636062, 66.99073670813878, 10.148716691904998, 6.86914453283645, 26.061979781916243, 90.66802747781549, 63.12935565977257, 68.58353120335909, 32.859622835494115, 130.50279590014915, 31.633106641821502, 28.581787580791655, 41.5915298331685, 6.146305834577782, 64.9129884487596, 7.796390258687633, 31.028664479186926, 106.63643094253906, 21.84652386016895, 33.07969859881986, 5.431059710373697, 26.286026781493607, 5.779742590479982, 9.032975243860463, 61.318280484503326, 43.50785106338199, 5.182916317721356, 82.8042170370272, 146.99254988657609, 24.320299908978704, 14.476167087745493, 11.66848589808424, 87.93769501870028, 45.21068127125628, 88.00044596148655, 10.18136217390339, 6.117888123091395, 6.394034843998667, 36.74115702400812, 29.875490397543487, 95.57073754193196, 76.04517229876298, 12.7023808309337, 16.96512229067219, 90.2937930884242, 8.316367527057437, 7.533338253146028, 6.0517910819256855, 23.295979522394187, 61.98397604743194, 9.61016958281436, 19.304689271909425, 48.60105140713537, 72.23998277025834, 60.97390174530979, 6.822958886339188, 18.063365618323555, 87.64968466460914, 78.6344874290354, 10.086399624533026, 8.583023524714418, 23.489488340684368, 72.78728113953278, 15.111790675809452, 50.32449292073183, 11.2698744481705, 49.641942066274595, 8.785215536289638, 68.36500790055716, 6.176566891582664, 16.552159378410533, 21.751624476598685, 49.794824231143636, 40.32370249391014, 11.750496225902447, 87.42070070997931, 11.158228772285803, 44.97054280706908, 19.452023508574122, 13.875330356965033, 88.35858391489106, 9.601492283907485, 82.39010181472224, 37.72479537066435, 62.7116012778387, 43.154967762719565, 20.374631896170662, 58.80122122387226, 29.62262061167872, 10.766342610936151, 11.316037559684494, 98.28507824704832, 18.46713056548022, 6.179556630717204, 44.8771045791323, 95.60563982512637, 58.83281009034772, 25.05635526903306, 7.008280690716157, 5.7916663672529065, 36.35576335949576, 102.13691803550181, 248.527087083899, 10.403544817973826, 103.2821004608279, 106.59267169335384, 14.100486291904222, 39.093961093072906, 63.61838014829647, 6.330325978324182, 12.774207124462475, 10.085245649120964, 21.792053935133435, 108.21305367059227, 34.353366287750056, 74.29724879596245, 28.722522195625505, 11.266162391385333, 12.607727802056873, 5.5218660722109645, 88.6196517212679, 88.80282188428487, 141.67066161600772, 10.666336195897465, 14.714424085039509, 21.62992572379278, 68.4111673164934, 17.448823185916478, 47.191182950646365, 12.883614351536252, 40.1373148757352, 42.763057147800396, 36.15057500433004, 93.43121268091663, 34.079003525672256, 9.648050208076477, 34.923090821886746, 30.61273723288304, 59.35803012153174, 34.666087042814745, 11.728362928909554, 24.043687759672654, 71.34374172854362, 11.988094750255113, 58.84335888684433, 75.75217430813004, 23.632960652159667, 15.552500565718988, 44.52361230985607, 67.57488195005858, 7.0568237049361615, 21.428282128537433, 89.1759374803058, 36.64054873075258, 9.458824895606032, 62.9400774820045, 71.91304888856297, 41.673059260747685, 14.73307203920438, 74.13278343225704, 38.05353614640873, 11.643004154028652, 28.7277923741204, 71.93288656086814, 123.10498795221534, 47.37631536206419, 35.99328073595714, 14.626173391873497, ...])
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);
([9585913.554592524, 9602737.116957165, 9602745.40493423, 9602755.704669293, 9653624.362895925, 9670079.6875, 9708601.431861065, 9962352.49544745, 9982630.055141915, 10072225.0, 10125358.084922463, 10181411.320156008, 10261656.13482226, 10294257.336945763, 10319070.114545131, 10365156.25, 10416006.25, 10416054.6875, 10444634.64256571, 10460357.459552411, 10551746.681633402, 10554573.924353706, 10563518.75, 10563520.283305943, 10614524.059227854, 10622501.5625, 10646606.30889825, 10660670.587990873, 10698507.127479037, 10708523.4375, 10721571.490829425, 10735707.338553462, 10803977.631483357, 10804653.198563209, 10804752.96362076, 10821959.934300592, 10822998.765933184, 10824027.32861478, 10840498.387900528, 10896345.532027015, 10896798.4375, 10899434.375, 10902504.6875, 10905117.1875, 10921343.1493629, 10926922.975069879, 10951473.364146102, 10968382.8125, 10969376.5625, 10969638.120071506, 10969654.659033123, 10971038.917787094, 10981859.696412953, 11013429.188483339, 11044719.418903507, 11046953.125, 11049994.143674644, 11050839.875715485, 11088491.613270806, 11090623.854068827, 11110186.256951679, 11116860.751477158, 11146422.007832777, 11166119.749098696, 11167653.329668589, 11170364.634325748, 11171559.759774188, 11210505.13911432, 11226505.091876255, 11227785.681579446, 11237716.281136245, 11237809.285674892, 11240494.351545904, 11245732.8125, 11269994.163865766, 11273601.5625, 11273602.810567914, 11281893.75, 11282707.8125, 11291027.007266099, 11329094.149480855, 11335351.695308657, 11335663.886211231, 11341007.756280921, 11342544.337463642, 11345730.775899524, 11350124.497215202, 11350588.17241443, 11350947.58739331, 11351771.875, 11354482.8125, 11359365.55409558, 11375446.2991029, 11381131.25, 11381403.125, 11381501.265771402, 11382659.375, 11386294.969637258, 11387204.403768396, 11388086.188439606, 11389465.549569387, 11389916.154849328, 11392907.414864836, 11393912.235056557, 11394590.625, 11394590.625, 11399282.8125, 11405634.259390956, 11419584.375, 11420434.375, 11427934.388293207, 11436106.25, 11439769.75639038, 11440522.566750955, 11444420.669607723, 11447606.24964999, 11447630.29697176, 11447633.158552391, 11456740.963109367, 11457735.02998483, 11468300.0, 11468946.175427532, 11478633.967895776, 11478648.67298909, 11478852.273639234, 11480423.353110306, 11480428.23131706, 11481103.819332952, 11484526.213068957, 11488103.125, 11488504.697837206, 11565870.707217976, 11588614.0625, 11589051.62939442, 11592330.22370931, 11593603.125, 11595004.6875, 11596509.324935988, 11599943.0405107, 11612784.447009651, 11617267.023226663, 11625771.882267086, 11629750.925239509, 11641019.545219095, 11652528.807772188, 11654653.838280616, 11655467.1875, 11656751.221783966, 11659592.1875, 11661706.25, 11663316.544198874, 11668416.601211714, 11668497.81776678, 11671340.625, 11675313.640317133, 11686088.139206158, 11689138.981068995, 11689648.4375, 11689698.415866567, 11693426.5625, 11695206.25, 11714687.5, 11716133.63174156, 11717887.23809222, 11718975.547268715, 11722852.660776451, 11723263.845657706, 11732829.6875, 11735096.875, 11742035.159393517, 11759228.125, 11771088.741800675, 11792530.416111656, 11800523.465053972, 11803700.0, 11811727.53482169, 11812351.788034193, 11816703.125, 11818432.8125, 11821919.176668564, 11834759.989227155, 11852751.08177289, 11856253.972525887, 11856271.380350016, 11856396.002291061, 11858847.596677182, 11861674.801103259, 11863733.029468548, 11863818.75, 11868494.542694347, 11870170.3125, 11871190.589821473, 11872306.926371885, 11872937.5, 11876976.5625, 11877027.623406764, 11879628.835925352, 11883109.375, 11887609.963372609, 11887614.915216874, 11888858.135426138, 11891714.0625, 11895262.5, 11895946.875, 11896333.497453125, 11897323.4375, 11901324.841611765, 11901699.457510134, 11902037.367157081, 11902159.261936003, 11902523.4375, 11916976.960234044, 11920827.457780046, 11924592.1875, 11953867.789419739, 11961556.25, 11964343.75, 11966382.8125, 11967533.384190064, 11967535.815970015, 11968323.246686902, 11969822.50973259, 11969854.81961435, 11969863.892989326, 11970950.0, 11971701.2210171, 11995518.901725663, 11998289.860413231, 12002532.582174748, 12003198.4375, 12005485.9375, 12007362.5, 12008220.970860597, 12009035.662214916, 12009063.92571097, 12009339.0625, 12010262.503971012, 12011443.879354797, 12011466.961839708, 12011486.748790799, 12011864.0625, 12012960.217579905, 12019651.5625, 12019737.557797324, 12019794.664316779, 12020809.375, 12021198.4375, 12021607.684967255, 12022721.757272825, 12023739.080395944, 12023848.4375, 12024463.582261933, 12024622.836514335, 12024975.170169704, 12026128.125, 12026421.875, 12026774.98831638, 12027067.347950943, 12027137.5, 12027568.029197149, 12029079.067212254, 12031841.883410946, 12034154.556320006, 12037069.781989397, 12037449.927548068, 12037850.0, 12041665.625, 12042977.971810002, 12050203.194132308, 12051295.3125, 12051299.479249982, 12061074.057358548, 12062303.125, 12063600.143876474, 12066232.654302118, 12067121.875, 12069333.891966049, 12083271.334571447, 12125252.962454343, 12137040.212491738, 12150986.031550756, 12155645.539550288, 12157802.732179888, 12160078.125, 12161380.18124791, 12196030.86486795, 12199146.640876891, 12199273.606009314, 12199985.9375, 12202890.625, 12203275.229176767, 12212041.826500822, 12212857.45701288, 12216167.164168507, 12217383.80179578, 12219714.0625, 12221764.0625, 12223408.948749077, 12223912.919230431, 12226295.0574389, 12227056.25, 12227070.3125, 12227839.0625, 12229036.488077544, 12230914.903188892, 12232165.827572152, 12237200.358843546, 12238245.111703254, 12239738.510425514, 12241191.1997676, 12241554.6875, 12245479.6875, 12246251.316407882, 12247192.1875, 12250608.024698183, 12251295.617092233, 12261756.25, 12262743.299105147, 12267403.125, 12268437.5, 12269292.621022463, 12270970.3125, 12270980.494417107, 12272561.243492626, 12273485.094398657, 12273510.84070966, 12274024.814894099, 12274124.84936228, 12274237.685652738, 12274778.268777207, 12275071.875, 12275076.876243798, 12275104.857320141, 12275278.125, 12275991.133479485, 12276128.556765975, 12276500.628262773, 12276814.0625, 12277253.0526521, 12277775.814946651, 12277991.983012347, 12278066.198717551, 12278193.75, 12278584.05685028, 12278812.5, 12281874.134803448, 12283645.295884594, 12284563.539118478, 12284699.701095866, 12286126.88670391, 12288292.1875, 12290153.69654929, 12291293.79696287, 12292175.291912725, 12292192.671153251, 12294819.871933378, 12294927.27746396, 12295496.09442526, 12296310.384893797, 12297200.366491577, 12298086.813247055, 12298089.017957645, 12299013.161663854, 12300198.670720315, 12303287.116779624, 12305003.077479633, 12307348.4375, 12307731.25, 12308964.761800965, 12311704.64249283, 12314781.590247875, 12320316.659576472, 12322371.740794325, 12322777.446319306, 12331671.046086142, 12332249.347113179, 12332291.203438375, 12338572.79294961, 12340460.868470281, 12343610.9375, 12344064.747343423, 12345839.27268254, 12345958.265011763, 12346381.25, 12347496.875, 12348687.5, 12351865.443392586, 12355067.173325367, 12357167.1875, 12362906.25, 12397535.694968909, 12400795.525971713, 12401251.82293633, 12407568.471087689, 12409294.054729091, 12419591.254472682, 12420368.017410299, 12420384.89644092, 12420992.721854895, 12427621.875, 12428798.4375, 12434786.183516642, 12434814.0625, 12435501.217193866, 12446906.96753736, 12453998.37909512, 12462798.4375, 12468070.3125, 12475487.5, 12489404.060185425, 12489432.288513236, 12489815.625, 12492097.116540713, 12503392.1875, 12503686.564080661, 12504070.249334618, 12504071.188461008, 12504939.046572465, 12507746.018941788, 12508065.625, 12510612.092459867, 12511293.75, 12511308.554233827, 12514559.765913265, 12515087.806820022, 12516357.275555667, 12516420.3125, 12516872.59565744, 12517621.615290703, 12517630.555315, 12517943.75, 12520732.636078771, 12525096.875, 12527085.9375, 12527286.521319646, 12530488.672438165, 12530862.055977777, 12531274.045582773, 12533277.238973519, 12534159.375, 12534651.718819331, 12537309.375, 12539199.625710094, 12541208.53560716, 12541310.51348494, 12541740.085902488, 12542269.39675168, 12543029.6875, 12545770.147962475, 12546423.4375, 12546450.764887648, 12548094.131442362, 12548534.287703142, 12552283.649577346, 12552853.332778476, 12553098.630855788, 12553767.1875, 12553857.90071344, 12554321.307204636, 12554685.9375, 12555290.490402885, 12556009.28357395, 12557035.020737093, 12557581.25, 12557587.1848315, 12557782.356286904, 12558623.850936377, 12559238.67302628, 12560264.865840364, 12560694.928040255, 12560837.5, 12560957.8125, 12561371.875, 12561599.499192413, 12562218.75, 12562743.690566177, 12563320.856244106, 12563361.269539017, 12563782.8125, 12564214.951108234, 12564395.3125, 12564846.875, 12564850.0, 12564860.026841605, 12565097.382870829, 12565186.59248483, 12565345.3125, 12565585.9375, 12565787.213617535, 12565799.460999506, 12565906.25, 12565920.866168885, 12566159.267673781, 12566374.654615888, 12566378.217120066, 12566383.199054662, 12566398.849886486, 12566439.174011622, 12566717.986109842, 12566767.1875, 12566833.832584422, 12567055.530986117, 12567530.71407363, 12567806.25, 12568915.625, 12569840.204309316, 12569887.991165113, 12570685.662770307, 12571123.260631656, 12571301.517209405, 12571532.614571186, 12571702.394585406, 12572026.557147479, 12572757.8125, 12574315.135912778, 12574584.767230269, 12575872.666051038, 12576114.632346584, 12576363.56765715, 12576555.584846446, 12577079.940997638, 12577100.143474136, 12577298.585607946, 12578515.66660715, 12578594.78869967, 12578695.232200524, 12582846.875, 12582871.490050314, 12583984.484205112, 12585777.301909948, 12585856.103689373, 12585991.701435518, 12586093.75, 12586606.25, 12588831.25, 12593689.520237327, 12593884.375, 12594581.25, 12596305.587854711, 12598146.875, 12598264.0625, 12598363.492157476, 12598488.815894118, 12598500.0, 12598623.417939737, 12598896.898149576, 12599872.66294351, 12600032.321300456, 12600748.870017445, 12600749.615621379, 12600960.9375, 12602065.280425735, 12602136.455916855, 12602159.95772341, 12606468.332134528, 12607585.089221882, 12607681.06176516, 12607713.377857585, 12607750.077894341, 12607770.3125, 12607776.933868999, 12607810.9375, 12607832.161416214, 12608357.59168592, 12608525.0, 12608861.337554822, 12609212.5, 12609339.816973738, 12610612.0514722, 12611340.77324544, 12612551.5625, 12612559.375, 12612667.955992393, 12612845.196471224, 12612855.371432357, 12612900.0, 12612921.108624507, 12612996.535063297, 12613321.710768305, 12613368.241892409, 12613623.206339885, 12613640.53590713, 12614239.0625, 12614278.125, 12614326.55496331, 12614431.037637042, 12614544.771346273, 12615429.277014457, 12615616.358112441, 12615629.6875, 12616629.172607632, 12618592.1875, 12630354.436871143, 12633422.99513182, 12638255.817658054, 12638357.622297753, 12639057.010427572, 12640442.1875, 12641277.17772679, 12642233.352791868, 12642471.274775244, 12642638.898329934, 12642639.142640058, 12642987.5, 12644956.625803104, 12644995.228345865, 12645058.199051866, 12645125.0, 12647300.469796672, 12648601.417629387, 12649344.590240614, 12649778.125, 12649787.380250571, 12650475.249077355, 12653521.413753213, 12654230.136161543, 12659570.175321989, 12659934.375, 12660258.532407451, 12661648.4375, 12661903.125, 12662826.470366288, 12664373.851936027, 12665119.37794621, 12668747.300971927, 12669265.59649185, 12672032.888180641, 12673533.817947978, 12674497.22585237, 12677477.238702742, 12677853.961522356, 12678325.0, 12678949.74081686, 12679733.993428988, 12680534.117530508, 12680793.303783115, 12680883.069601588, 12682079.182727369, 12684415.97487246, 12716396.582852893, 12718427.56422827, 12718534.375, 12720960.793007987, 12721112.239501394, 12722779.6875, 12724231.25, 12724406.14491415, 12724450.413098447, 12726046.875, 12726746.875, 12727129.79162686, 12727607.705491459, 12727637.304197133, 12727837.97183646, 12728891.832654236, 12729406.25, 12730798.525784904, 12731779.445606593, 12731875.0, 12732007.8125, 12732134.375, 12732737.5, 12733198.290931314, 12733432.8125, 12733491.031961955, 12733921.854585988, 12734149.685913594, 12734787.919234034, 12734844.326661572, 12734925.0, 12735060.244181974, 12735209.297848335, 12735262.046916496, 12735278.125, 12735278.36968213, 12735521.401215596, 12735941.711325534, 12736322.331254765, 12738234.813639637, 12738980.238403847, 12739820.222600874, 12743975.477669895, 12748415.930750206, 12750571.759081595, 12750800.88087787, 12754647.439927727, 12754705.549170883, 12755213.284406917, 12755462.5, 12756902.512479983, 12756903.746422095, 12757423.31412765, 12757704.008390395, 12757914.0625, 12757942.1875, 12758563.72396043, 12758679.841460807, 12759202.246897798, 12759240.082954317, 12759539.0625, 12761695.660424149, 12762498.4375, 12762945.7618363, 12763590.560261557, 12763736.062135125, 12764286.554636238, 12765949.757733082, 12773176.043475013, 12773785.8101029, 12773947.77389074, 12774718.739844332, 12775726.445949148, 12776355.63359916, 12777870.3125, 12778432.8125, 12779337.956418833, 12779871.875, 12780852.646523586, 12782245.352626726, 12782477.730951319, 12785056.25, 12785618.75, 12786303.484577015, 12786357.839328505, 12786611.548401069, 12787417.054507352, 12787798.4375, 12787815.625, 12788256.153260445, 12788348.803620042, 12788369.568653267, 12788549.3643448, 12788945.3125, 12789070.3125, 12789967.1875, 12790223.4375, 12790337.5, 12790517.949104892, 12791177.125915814, 12791736.04079888, 12792240.625, 12792242.1875, 12792512.5, 12792599.544183942, 12793247.452777795, 12793411.44416368, 12793609.10739204, 12793654.6875, 12793786.348936448, 12793990.884718517, 12794194.758201087, 12794455.608428502, 12794560.9375, 12794567.1875, 12794697.802019393, 12794909.375, 12794933.812719187, 12795554.615887757, 12795849.973398212, 12796257.800425239, 12797784.067102868, 12797804.6064247, 12798249.274333622, 12798473.112796066, 12798590.625, 12798679.643106448, 12799182.495723197, 12799441.985367028, 12799752.68963571, 12800129.088498084, 12800398.171859002, 12801118.135366367, 12801689.78154347, 12801814.0625, 12807232.8125, 12807935.9375, 12808087.999506585, 12808303.125, 12810735.9375, 12810744.171485431, 12811382.749467317, 12811836.505170796, 12812520.135132886, 12814981.467821836, 12816093.325916128, 12817727.249817444, 12817934.375, 12819028.125, 12819308.568099586, 12819314.327558981, 12819505.492720047, 12819823.410711346, 12820372.415641544, 12820539.045238724, 12820660.05557706, 12820670.3125, 12820683.153196247, 12820719.609966017, 12820879.6875, 12820962.5, 12820987.5, 12821189.237299174, 12821671.849143555, 12821719.501169285, 12821794.222963236, 12821858.186105832, 12823638.568997752, 12824106.25, 12825214.0625, 12825554.99498678, 12826405.9709865, 12827289.0625, 12827470.3125, 12827734.372721517, 12828171.875, 12828192.838319167, 12829678.125, 12829913.908919962, 12830015.625, 12833509.019852765, 12833623.4375, 12833635.9375, 12835411.311764823, 12836066.989646522, 12836728.196074268, 12836891.008538365, 12837285.946831169, 12838381.278069125, 12840151.5625, 12843634.297919732, 12843893.484587267, 12845480.881421125, 12846572.51861035, 12851204.20855404, 12852211.768178225, 12858311.444566827, 12860661.072184753, 12860840.100305978, 12861307.8125, 12861456.25, 12862084.019509992, 12862268.75, 12862334.452497298, 12862551.5625, 12863050.0, 12864245.854225785, 12865700.0, 12866120.816726094, 12866154.6875, 12866373.483124586, 12866373.949835755, 12866550.82633467, 12866555.514506917, 12866898.313053127, 12867096.401299022, 12867410.56213719, 12867542.1875, 12867556.25, 12867624.175635662, 12867998.590088062, 12868153.199832635, 12868284.118317837, 12868306.122309035, 12868328.445456402, 12868360.493522083, 12868626.5625, 12868892.1875, 12868916.484032696, 12868947.15666616, 12869155.629525453, 12869196.875, 12869225.535707526, 12869423.4375, 12869468.75, 12869471.13030648, 12869528.57084487, 12869655.216045856, 12869848.493412042, 12870240.427512838, 12870402.768463785, 12870419.80634187, 12870426.5625, 12870762.812257264, 12870797.68604847, 12870903.124137456, 12871242.132677842, 12871327.719274746, 12871659.665674238, 12871969.38278206, 12871989.0625, 12872141.514391765, 12872855.463158384, 12873925.52145124, 12885209.054268446, 12885656.25, 12885801.681647766, 12886835.9375, 12889961.026589472, 12894151.39625418, 12895014.899745515, 12895462.653340952, 12899772.684823923, 12900411.304356677, 12900412.921939287, 12902916.929614922, 12904515.593607, 12914444.114972064, 12914723.4375, 12915386.502013767, 12920279.70159071, 12927196.142763307, 12929811.084217073, 12931317.083093124, 12939809.678036083, 12941425.277057044, 12941469.690184465, 12947059.939703384, 12949857.8125, 12950150.58590521, 12950912.899366291, 12951817.1875, 12954471.630817546, 12954471.992237061, 12955643.76598869, 12956360.06920359, 12957603.960833712, 12957925.0, 12958060.835644526, 12958143.75, 12958585.733271157, 12959160.488743497, 12959201.256301928, 12959810.9375, 12959883.667511726, 12960166.734620195, 12960221.356405728, 12960332.503976569, 12960743.782420773, 12961568.510342026, 12962714.778708778, 12963045.3125, 12967784.858834643, 12968072.722830396, 12968157.024628289, 12969404.356224664, 12970295.55905936, 12971085.9375, 12982481.25, 12987101.5625, 12992840.711809784, 12997477.339944474, 12997763.829245945, 12998053.125, 12998489.0625, 12999903.01604979, 13001148.120815355, 13001370.251617843, 13004064.474173725, 13004084.375, 13006172.309693629, 13009105.509636384, 13010436.830093706, 13011785.227117788, 13013809.375, 13015979.6875, 13016850.356364777, 13016916.80615257, 13018606.602159355, 13019446.875, 13019693.369364766, 13020565.571774526, 13020568.27582105, 13020612.853055306, 13020893.472592782, 13021070.3125, 13021653.58541689, 13022574.744017132, 13023707.493389921, 13023769.400260001, 13024322.026568409, 13024431.25, 13024510.9375, 13025459.123303778, 13025714.375431824, 13025823.4375, 13026644.131801642, 13031231.396947121, 13031354.538674632, 13037761.653048422, 13041384.375, 13041681.19421764, 13047786.66097366, 13050005.160242466, 13051420.618921284, 13051423.4375, 13052221.875, 13054321.768469818, 13054574.344297942, 13055237.5, 13055360.852232529, ...], [8.935940052096337, 44.44322652068546, 11.275327981059617, 7.417231040746301, 7.976142915931769, 58.43295017874761, 26.185388737604825, 7.979536457603981, 16.55613177393724, 87.40523396269661, 25.09222877198046, 16.632585775493265, 40.55818114870256, 19.58844226382955, 60.901579567416974, 60.33871161911052, 52.74781433175159, 76.64884772107425, 9.568378517633091, 39.68052464643962, 85.94355985971285, 39.36015663978411, 81.80904655796913, 23.57404167893465, 9.918945629729903, 31.41241763157859, 15.17085685653908, 16.106944428797338, 8.81236684676192, 111.75990455751283, 26.241232332198372, 21.756994995800348, 13.343837568506748, 15.229512419891835, 10.884494172421059, 24.195594996622606, 35.70254696785311, 18.971111447108147, 43.503344667257856, 26.063528012376764, 69.75173892984827, 51.05913144407161, 48.23838699585025, 98.13025453893545, 18.567598178302685, 6.416964879730655, 41.82353708218961, 49.688479181591994, 72.08730074628447, 17.98267518748344, 9.3074482586884, 65.61630670886684, 21.663021811270813, 87.84483478758966, 91.06340896267113, 49.36580453986856, 16.689305785325942, 7.3529933741550515, 38.2020991907812, 25.935686468111697, 8.463055867645112, 52.07496282283623, 15.473188484517546, 7.411429239096413, 15.783549716331324, 50.671154174069315, 92.98219349139623, 5.9797240113595365, 8.512656889023862, 7.513225950153435, 12.335715807264474, 6.473179314063944, 31.329571942925018, 75.36725545975284, 85.65049769245417, 91.22700439544519, 119.31881541223058, 70.76581229909438, 41.714171917732884, 7.772433406834217, 24.175145718877108, 54.61573195299233, 14.309615363783807, 7.583029978168139, 20.746536876624464, 70.00713180843746, 6.995272707328001, 189.1808996679256, 34.97264472476522, 44.80699276927231, 71.08871029148568, 6.080756687858978, 6.400451074633035, 40.27261987942456, 37.69877561416826, 12.597261161198844, 75.41027424769631, 13.778046596367842, 30.207799492750105, 11.543983717246899, 9.268426476101856, 17.436090639388325, 38.59708367449717, 6.711740787894656, 46.26986116289657, 41.09362197987393, 64.4706481415096, 73.1000745464092, 32.988495968998095, 35.045174017264316, 7.124950426670974, 67.22351545831356, 6.9825576940473955, 77.7596650858677, 9.652785849062376, 31.71253986221565, 31.18009450362809, 16.44784641661644, 148.06005850442187, 25.608215134952864, 46.20340219491623, 33.25253493743395, 120.92928840499071, 5.627206169346645, 12.45679967275969, 26.960151861694147, 100.28658928122834, 31.58094362534189, 10.622179924820344, 73.04440525518811, 6.765572067682818, 9.689057140345883, 44.439448539276334, 11.233902080162288, 36.671289794185206, 98.3458842234609, 64.631209927725, 64.3949910307379, 28.256376921185847, 98.6293929997267, 7.5448841070444095, 11.139084756436638, 12.965211035924476, 84.225753291356, 12.393898103211535, 6.165553865521484, 39.05283847891534, 23.24421991280431, 69.5528430461778, 205.1301853281634, 12.949995487532522, 20.673451261145495, 5.08645092303069, 58.526008465452925, 22.30615483996454, 12.299169296490275, 61.81203274765354, 142.73377361969307, 35.712492115731266, 72.63199365616825, 86.67915836375428, 72.83015380979701, 22.761458627336303, 66.88954009147541, 6.146921402890075, 97.82135012922686, 24.87444787693881, 74.70505634129346, 94.36487532455727, 8.750045345041823, 68.87459424704828, 18.903334254258922, 38.778201882052024, 5.534419318899557, 61.65166021124054, 112.81177272372189, 7.686898522328469, 43.884379269437474, 48.00551868246261, 80.20408389342356, 262.9571099079507, 21.68753644238402, 66.15545037633294, 21.546636026498273, 159.7624929702232, 18.65552380883137, 14.233985138312926, 80.9669185884513, 42.34120755189602, 97.59950280994634, 78.50939402399703, 8.268061530892547, 18.347484614852196, 57.011158963683975, 41.27348419371819, 5.153842132846884, 5.36688732469088, 32.79997922594276, 85.35853636315143, 8.795617205334455, 25.75159208103001, 87.12401077141372, 48.319302682023704, 52.49205409473274, 54.20521537493848, 42.63730066805793, 14.370322715296382, 81.64441800338916, 14.458247458753483, 7.092044393458784, 53.89631126742215, 80.5072658432511, 217.40420193615157, 62.96748523774882, 257.02932002205443, 79.55283713149218, 68.17929772521015, 36.33484438959783, 5.8575270811037745, 14.49767981552056, 121.26971722242818, 82.63859118581125, 15.4701695544546, 70.45933367086587, 79.5139789072565, 5.685364408185756, 15.553171039451597, 8.758988957760755, 84.50789060160061, 47.65460606267874, 109.01716034983286, 59.868082936574396, 44.94058774358109, 6.233033504272852, 8.215541810092034, 50.87348802014628, 6.2677002065284215, 16.880288082118014, 23.564995368714413, 8.767874286431093, 70.17652842032267, 68.89898431788376, 64.81172870212251, 5.5358922188873345, 71.83959811820688, 63.277896380452596, 82.76683761627258, 28.362203160597904, 26.396294548334275, 32.61178239488618, 76.70809691797461, 6.671274110743737, 26.952468122595754, 15.632369473437864, 89.3072064889143, 94.89530825810027, 28.295759354659463, 54.048301161156964, 81.40776846346985, 73.78993368019263, 156.42520092182795, 36.32933346785118, 6.466722371833583, 21.51280023805745, 27.16913626156522, 45.40793402300139, 62.13348472506344, 25.826544396973304, 5.4011234875858065, 72.56458759046625, 21.288575299710725, 9.916972015816704, 55.66767340451677, 11.360296979980427, 82.47996054206334, 86.73075959641342, 34.256229922360575, 21.09906625667165, 25.68110825999829, 167.83040827684272, 25.544158206495, 5.407225470129807, 22.633334145838234, 31.273157329616676, 27.027457590648922, 35.63421156390356, 9.140985562568053, 7.665343276357363, 96.10848950222821, 33.62703581198353, 98.2377233661374, 75.79140422508112, 55.57003769400919, 28.071279618640858, 78.90886693872933, 48.96582525506672, 38.44374298397095, 47.6833159399262, 11.852970435668773, 64.94715386909233, 54.39866350721504, 31.428707013321272, 43.9183158662439, 8.6008994636074, 19.533184411188223, 7.175739690778539, 51.221768962160226, 14.227681294850614, 13.185653584475496, 25.394553470822377, 81.45873921930624, 57.832443122175775, 10.763667998926712, 28.538900394921427, 27.399755327151716, 11.639696424038705, 51.95324037092699, 76.04332556921011, 80.31505886087768, 46.18230911854244, 30.236432893892676, 91.04832620948174, 26.080883745610333, 16.25192290496429, 13.693321942043164, 26.747076969530664, 6.069059062241769, 43.36105279291712, 5.169707984864355, 11.36013101194169, 113.26384110394868, 38.791482644620636, 11.403943340116449, 69.06941979523398, 9.801844665736862, 52.49129369956126, 45.443968010615436, 60.00754909497412, 14.672741652985902, 125.34391468150217, 60.468490911553204, 15.363508281382884, 75.28641691444547, 13.853302164466298, 46.50744099979276, 62.42593928565063, 14.878555217034886, 73.19182944329411, 5.687995407484441, 11.675319854711558, 127.18973786764917, 17.68317307070412, 45.325453752326375, 23.322605344795946, 34.62703018460701, 36.152231557767685, 16.29776200818338, 31.3757522517732, 20.983900280219693, 9.661789528049534, 44.865147518543395, 7.10979184640635, 18.804355250926214, 8.413882781660604, 65.25673755644664, 97.64803448526331, 51.810791082164684, 60.769472022964905, 6.359786711845216, 14.772693894909633, 8.475092837647518, 13.25021516616568, 13.519909252823785, 91.24905637910808, 7.892017181388625, 12.925960238007107, 7.826763694628829, 33.26738743054604, 22.857519850553246, 45.23040541686516, 221.75785447143488, 15.808088705304566, 149.29965985113935, 38.974153448028254, 68.92059964916982, 102.3819632372648, 10.855231661231391, 6.086626419029237, 67.02141690409942, 73.56718335477458, 24.513675009437485, 15.822776825855316, 16.036680986227793, 24.023897589438697, 16.245846295889713, 8.650085109745307, 12.602840693385193, 63.27259216308576, 18.67365523976529, 38.15749354549191, 73.20204326281215, 26.31107635336245, 51.14014226235689, 119.50296282437932, 8.706344851026534, 27.42004505900951, 118.77985909235201, 29.003790697358966, 78.29162286652912, 20.310604049453495, 63.36042971834639, 102.85130405254087, 142.96098112636284, 40.561866518487804, 18.023878402401976, 14.706096887884645, 6.019501030371557, 6.760330920085929, 6.36077798866443, 66.03820774816329, 38.66084561617304, 29.415088681149644, 89.71750046579598, 22.22182991476822, 7.7181113816570015, 29.314842411165607, 136.74323168558308, 18.648441468580017, 69.15973761638948, 12.822703951762824, 42.18485514632349, 33.30972350275011, 51.685190358425736, 38.86179650927905, 79.81495465078649, 178.12466200518062, 33.53531926435092, 21.040636516222314, 18.391121136154673, 102.65335981976251, 15.572792147680824, 122.85668682979623, 13.684047285473822, 36.405528780109115, 36.8851054815345, 49.16514317994589, 9.945500851109593, 29.642386114737235, 14.68613703800847, 51.74744454316581, 28.10667093183781, 11.781306021534757, 62.20039073991099, 7.360370241007484, 104.2499854101193, 51.01909270825123, 84.704838400606, 5.293819908144972, 13.144127890467777, 71.22981657217903, 26.121539496799883, 14.604122320905548, 18.146595970190152, 85.6966852764982, 39.34417512811194, 17.58327327487643, 79.24020621761386, 22.671379713725152, 112.91467250214772, 124.65186447995096, 42.389092232082405, 40.52876604732606, 52.09351501043149, 21.48504790950122, 79.14843185356924, 50.316368094605025, 27.861914618056673, 73.52132329370343, 71.47266105595118, 6.020716116343068, 101.23125108862305, 71.19631983420255, 94.9248155409537, 18.186165605483865, 7.797869618714471, 25.250028184563014, 82.11591511205, 31.863919652235158, 83.21166743055667, 8.913754858342134, 30.989500129989363, 49.22611544444382, 26.56917214394613, 23.187831186850563, 5.465734375342589, 6.317304140276667, 7.234245828198578, 5.167966778513769, 14.585345908245557, 69.39596335291905, 94.36565304246912, 7.362357655281642, 21.14204860759137, 48.026715763904036, 57.535059682424865, 79.67342633323808, 19.969842437877254, 24.078992490383417, 25.462232859630102, 42.74628371514005, 91.46343772643166, 12.947990095732447, 169.96757223913923, 63.901988311666955, 6.669640307547697, 9.686642719886471, 51.65663169261004, 17.67290173414079, 22.968137334694486, 40.99433275580416, 16.004577949485522, 73.58788087123128, 92.93654036412403, 199.66340617607824, 21.258919927244843, 163.96678513060687, 86.33145397238563, 18.41276629358312, 15.374752437057982, 5.36791347756093, 275.88077378198113, 13.364374861336916, 33.723432514888614, 51.80172507967361, 87.46061047299753, 6.858465573503268, 39.99913451221442, 56.80210698190832, 20.014968474075026, 71.94390581467488, 49.60687949436607, 8.891607533835082, 51.12408256658485, 37.84122205294573, 193.10398471839764, 15.030485045655364, 6.618134169098748, 35.20685746577995, 55.057574357733756, 22.37624782274877, 58.22273147542901, 48.270430100520535, 37.996445720731806, 81.00042569268001, 30.03196815796388, 18.851983727660283, 14.269508858757533, 24.16544095948548, 229.36641995464197, 47.15492958166474, 7.743314825073365, 85.26989289955489, 121.41238964725864, 24.2445328580309, 56.90211614694026, 6.31910109015161, 72.8326839808496, 56.88146939423114, 27.362229601425305, 15.53835139977295, 34.85617768131891, 35.43564651260393, 6.171835869842396, 29.540366991403285, 45.124653107291536, 56.24003521267823, 24.229380093122163, 80.98232339504135, 25.655107462607663, 28.278615908675086, 24.671792990286686, 10.991247061190302, 57.31965869857464, 66.73699552900247, 87.55338393385783, 7.528194000288891, 8.019737355125892, 87.11314180741576, 8.71644799909001, 172.73342040751942, 5.324582442936122, 60.36443265265215, 24.40256311356364, 22.08794102641682, 13.51524538755822, 32.93750941959298, 81.92225317187906, 196.55854058100755, 17.25984094422114, 20.660194729063612, 73.2555713454166, 68.26745853176806, 6.277376860447933, 94.84957374342454, 11.770728280216813, 6.746821344730813, 27.930274471346223, 44.457330295520805, 11.951054965284117, 25.957546336625008, 32.12660401146596, 57.34727716363975, 27.074162646411445, 15.984218467395026, 73.40668562551556, 7.244606363004726, 14.647725647711637, 100.60346180940033, 114.66056830325205, 64.11349917787308, 126.0358335655515, 76.8841829602863, 20.613363415112218, 5.861951347682387, 265.1682628235744, 71.23590910642878, 15.23803403805432, 119.00393703491493, 86.19637294680768, 5.18141487294445, 12.747010554241543, 69.40242970723044, 90.40321769574345, 13.662535776096647, 73.59105769987927, 22.046934682053998, 9.558689033991062, 7.430332790787886, 23.951808790715713, 23.851572444456625, 27.592435289330563, 49.1529240114108, 14.417961927400345, 5.237912498441554, 42.4307818452698, 28.63707001045069, 155.34751047310402, 29.479473522671565, 73.2849508919538, 43.13994733113267, 9.421028090911289, 13.082237190167763, 32.44349337054887, 36.040602506231686, 23.074563283794035, 85.25427531753468, 9.407185600915478, 264.1805531318463, 62.98214933258917, 193.3734569982374, 54.64141649141741, 77.93959519837617, 85.75844369386876, 82.16931515861614, 16.75840401651315, 38.3210291479571, 13.865790670369098, 6.554881272412893, 47.609114392259656, 31.13861920871187, 19.759509014354567, 27.086402836215722, 21.97424234699254, 113.45905094173533, 9.547235439455154, 21.758662678702386, 31.162052878309275, 11.924537311028395, 5.304831588344275, 24.564050017605844, 26.864987600932306, 7.252944911720924, 96.65152071304188, 90.53678468371292, 97.73599337812448, 8.60976217997779, 6.9486551300191195, 40.20538294236777, 42.113551407040674, 8.862139586537728, 12.261137244384523, 9.229218950765384, 15.16293307569951, 75.10797917072455, 29.477455065162545, 23.270626305504706, 16.648154283395016, 6.001308603155305, 27.02694368151551, 74.83964177870175, 6.543050462414721, 153.9922313198407, 5.023271149090043, 33.180321218238866, 26.962282523430684, 13.50590736526824, 76.13224549631754, 21.305392230248952, 80.35280163603169, 8.826951940699143, 91.6503411650755, 34.41518108075207, 359.21250299888067, 121.19976070351836, 81.32305545094853, 9.749645494666291, 70.37512271679016, 5.676968455247532, 21.030391603975406, 32.987245838848786, 44.20720397294062, 76.68113085543854, 84.20436064008021, 78.52546262884465, 17.92504510999389, 5.039309856581959, 39.443541790037806, 106.60975310385975, 6.472032637940052, 7.74125132179539, 19.362656066344506, 7.976793529016554, 51.389980782959, 31.938958475164643, 36.26936296494772, 63.59031500510242, 46.30745455653099, 6.368468492534012, 6.881454275621544, 15.350417530953306, 200.3778577846102, 85.54763969708999, 70.0089709992471, 21.945480328662402, 17.72088081872085, 87.92770164555756, 10.733686670031474, 67.32825772902807, 11.838076567990479, 16.03335170635083, 20.968017200103727, 109.69709979710238, 73.9405592305634, 56.8501313792373, 20.2402964142965, 31.36254355273943, 20.893527802980667, 147.94954955748423, 54.17410065575153, 8.280202295297507, 10.678291327115689, 122.04939936685136, 56.25104294076293, 103.47014679146288, 66.68983280560911, 27.67587004001858, 68.7928118731055, 12.25198516448998, 6.679594419498023, 12.137436685333398, 26.905351437399993, 5.887609042740777, 41.16009805937756, 120.38250135410391, 30.835113124632684, 99.08736929977238, 17.26197622422324, 112.86626983781292, 43.87406100088905, 8.522794326324881, 19.342699775687073, 6.882388660027847, 61.58722489714853, 36.318190033322, 27.328260178057608, 37.45575711882842, 51.23363619730858, 35.218269214719, 20.86787547828967, 16.05816668695206, 26.918619856077587, 6.482900058283324, 45.341275451678, 6.4843887746583, 55.205585237074466, 52.05469256452202, 5.728789416129064, 30.09060422108556, 65.42864090295653, 64.14442232863394, 44.751833374658034, 44.191963894079734, 91.65484090926256, 27.172818424144992, 7.251588718721217, 154.55442285066346, 6.206798372562375, 70.58669570717848, 189.31076974871655, 114.53465079825116, 22.60288137758441, 65.97479061316831, 37.200916337892366, 9.329477330896374, 70.54191611440807, 40.45716022578077, 81.29983294759204, 8.206997783844773, 79.67741854606307, 62.811036306013435, 43.19867154026024, 59.61750484134751, 9.669270976825292, 155.0674547558749, 7.629147916189123, 11.785245240182434, 14.977195141831716, 6.7691233194749545, 78.93695740756986, 27.08765519350237, 10.736732800645653, 13.700989685471963, 6.592948638636062, 66.99073670813878, 10.148716691904998, 6.86914453283645, 26.061979781916243, 90.66802747781549, 63.12935565977257, 68.58353120335909, 32.859622835494115, 130.50279590014915, 31.633106641821502, 28.581787580791655, 41.5915298331685, 6.146305834577782, 64.9129884487596, 7.796390258687633, 31.028664479186926, 106.63643094253906, 21.84652386016895, 33.07969859881986, 5.431059710373697, 26.286026781493607, 5.779742590479982, 9.032975243860463, 61.318280484503326, 43.50785106338199, 5.182916317721356, 82.8042170370272, 146.99254988657609, 24.320299908978704, 14.476167087745493, 11.66848589808424, 87.93769501870028, 45.21068127125628, 88.00044596148655, 10.18136217390339, 6.117888123091395, 6.394034843998667, 36.74115702400812, 29.875490397543487, 95.57073754193196, 76.04517229876298, 12.7023808309337, 16.96512229067219, 90.2937930884242, 8.316367527057437, 7.533338253146028, 6.0517910819256855, 23.295979522394187, 61.98397604743194, 9.61016958281436, 19.304689271909425, 48.60105140713537, 72.23998277025834, 60.97390174530979, 6.822958886339188, 18.063365618323555, 87.64968466460914, 78.6344874290354, 10.086399624533026, 8.583023524714418, 23.489488340684368, 72.78728113953278, 15.111790675809452, 50.32449292073183, 11.2698744481705, 49.641942066274595, 8.785215536289638, 68.36500790055716, 6.176566891582664, 16.552159378410533, 21.751624476598685, 49.794824231143636, 40.32370249391014, 11.750496225902447, 87.42070070997931, 11.158228772285803, 44.97054280706908, 19.452023508574122, 13.875330356965033, 88.35858391489106, 9.601492283907485, 82.39010181472224, 37.72479537066435, 62.7116012778387, 43.154967762719565, 20.374631896170662, 58.80122122387226, 29.62262061167872, 10.766342610936151, 11.316037559684494, 98.28507824704832, 18.46713056548022, 6.179556630717204, 44.8771045791323, 95.60563982512637, 58.83281009034772, 25.05635526903306, 7.008280690716157, 5.7916663672529065, 36.35576335949576, 102.13691803550181, 248.527087083899, 10.403544817973826, 103.2821004608279, 106.59267169335384, 14.100486291904222, 39.093961093072906, 63.61838014829647, 6.330325978324182, 12.774207124462475, 10.085245649120964, 21.792053935133435, 108.21305367059227, 34.353366287750056, 74.29724879596245, 28.722522195625505, 11.266162391385333, 12.607727802056873, 5.5218660722109645, 88.6196517212679, 88.80282188428487, 141.67066161600772, 10.666336195897465, 14.714424085039509, 21.62992572379278, 68.4111673164934, 17.448823185916478, 47.191182950646365, 12.883614351536252, 40.1373148757352, 42.763057147800396, 36.15057500433004, 93.43121268091663, 34.079003525672256, 9.648050208076477, 34.923090821886746, 30.61273723288304, 59.35803012153174, 34.666087042814745, 11.728362928909554, 24.043687759672654, 71.34374172854362, 11.988094750255113, 58.84335888684433, 75.75217430813004, 23.632960652159667, 15.552500565718988, 44.52361230985607, 67.57488195005858, 7.0568237049361615, 21.428282128537433, 89.1759374803058, 36.64054873075258, 9.458824895606032, 62.9400774820045, 71.91304888856297, 41.673059260747685, 14.73307203920438, 74.13278343225704, 38.05353614640873, 11.643004154028652, 28.7277923741204, 71.93288656086814, 123.10498795221534, 47.37631536206419, 35.99328073595714, 14.626173391873497, ...])
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)