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 = 45335
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);
([3742281.25, 3841076.5625, 3842689.0625, 3850396.225977746, 3850442.8617954263, 3859218.4695062307, 3869695.5912366663, 3871373.4375, 3872574.470445902, 3886861.588010299, 3887576.5625, 3893359.375, 3894129.154408936, 3946407.8125, 3957814.299695451, 3980312.5, 4000419.1748095015, 4010926.663119367, 4027265.988025546, 4041305.6510792063, 4054830.597852648, 4064184.5554089407, 4067775.0, 4069543.75, 4073409.699294325, 4073769.526664126, 4080938.075121898, 4081221.521358434, 4155718.75, 4157049.281509615, 4168650.837884007, 4174223.0092066503, 4180532.5370363607, 4180605.972592883, 4180606.18297079, 4181140.0764553705, 4182043.77873015, 4182046.875, 4182484.375, 4192362.362235218, 4218896.765273707, 4224967.513971303, 4242657.311237734, 4287730.051826863, 4294387.5, 4306491.872871427, 4309171.875, 4309396.259551121, 4309464.0625, 4309593.75, 4310968.5587885715, 4310969.668600751, 4311115.587500625, 4312352.913659848, 4312368.705556818, 4312476.157722978, 4312602.707440947, 4312738.711936766, 4313070.3125, 4313235.9375, 4313328.010692734, 4313842.641296687, 4313849.761214485, 4314097.861905212, 4314162.037955434, 4314388.552345522, 4314886.566146589, 4315346.875, 4315470.530096403, 4315690.625, 4315699.040052259, 4315741.277526843, 4316215.244788431, 4316303.125, 4316863.652116689, 4317685.9375, 4323207.567090118, 4334410.217131453, 4334527.897897256, 4342504.371661661, 4348734.763417732, 4352475.369382235, 4354431.494746405, 4355550.358307899, 4355587.372586394, 4356040.625, 4356547.073101623, 4356832.619065465, 4356985.406563573, 4357010.76590341, 4357220.3125, 4357280.684375141, 4357364.333377612, 4357412.59555053, 4357428.616051975, 4358407.8125, 4358946.861840404, 4359003.125, 4359100.004395225, 4360111.445113283, 4360248.4375, 4360841.314863519, 4361146.282595023, 4361844.750395852, 4362796.875, 4363346.059852322, 4364362.235264393, 4364719.645814049, 4365094.206355314, 4388860.5968857715, 4430146.802933144, 4452007.3007315025, 4455442.714395244, 4456473.4375, 4457038.571117539, 4463174.937173746, 4463624.963053664, 4464317.1875, 4501890.363488401, 4504230.072509468, 4507541.446335484, 4514157.692963202, 4529316.890597198, 4537653.654750701, 4568240.701625599, 4568481.604233804, 4569010.450875823, 4572138.037863508, 4572703.7116417885, 4573120.3125, 4573880.472163372, 4574175.0, 4574319.819033519, 4575009.341375994, 4576217.598691668, 4576219.4412121875, 4576772.588262243, 4576836.645237029, 4576902.018375514, 4577490.279334735, 4577773.4375, 4577981.441467073, 4578288.962849595, 4579628.080435213, 4579832.777992932, 4579899.365070721, 4579985.135128091, 4580771.217745239, 4581241.00009942, 4583067.308411301, 4615531.15665781, 4615853.990519977, 4656766.391449449, 4786753.390727147, 4978414.825926727, 4980322.737093254, 5706007.8125, 5779276.9675266, 5812459.476536679, 5848022.177664558, 5849812.820805383, 5852077.49374393, 5852319.075949933, 5911459.725099966, 5913341.634440234, 5913349.027192822, 5913499.238392245, 5913817.143671814, 5913855.899426698, 5947945.731919545, 5950159.526636956, 5951075.839347472, 5954626.478991461, 5958127.107555602, 5960261.867404976, 5963738.088527461, 5982373.362680895, 5982718.694987278, 5982720.988201848, 5984963.174169677, 6000563.350609411, 6003299.953095974, 6003528.473207436, 6004125.0, 6005263.510165386, 6006062.5, 6006768.75, 6010410.423186357, 6014629.331720389, 6030157.81872467, 6031096.719144997, 6032451.5625, 6032595.3125, 6036872.318597627, 6107367.1875, 6108707.767098166, 6109512.084846616, 6109685.59593328, 6109698.311521328, 6109929.599449044, 6110050.784388985, 6110157.048594847, 6110341.796839984, 6110401.53826671, 6110506.25, 6110879.293617796, 6110908.977257851, 6111023.57041097, 6111323.1221843995, 6111395.139673504, 6111411.677347914, 6111811.61381643, 6111849.042158332, 6111863.462918776, 6111865.726651731, 6112161.879800221, 6112252.420711906, 6112680.25866146, 6112740.625, 6112796.726616268, 6112938.875382202, 6113079.355553011, 6113252.087182034, 6113517.1875, 6113921.4307583785, 6114017.9484035, 6114540.826606573, 6114821.277088915, 6115901.349747423, 6116483.423073937, 6122779.6875, 6122963.943778385, 6125692.1875, 6147003.125, 6149023.411171405, 6149031.271865481, 6149160.9375, 6152319.008380422, 6153149.270237985, 6153770.3125, 6153789.0625, 6154298.4375, 6156207.371939795, 6158815.920688178, 6159264.042563982, 6172628.443584199, 6192010.9375, 6192548.025993502, 6194240.239146353, 6197239.206087264, 6197369.04536971, 6198794.283285669, 6201417.1875, 6203776.5625, 6204637.5, 6206689.781322557, 6219426.526081494, 6226229.6875, 6255031.25, 6255687.666967655, 6256633.453996913, 6260590.7161780335, 6262060.278549962, 6264170.3125, 6264637.9423918985, 6267014.985435143, 6288824.753291793, 6290051.662110813, 6292319.355050155, 6293530.796072256, 6302079.402771176, 6312371.875, 6405340.684970619, 6406786.373450038, 6413427.936128023, 6419281.25, 6422736.675578407, 6424221.845229763, 6424934.986265929, 6430058.745595178, 6430502.374406298, 6430600.0, 6430815.364307517, 6431040.763367477, 6431222.072587474, 6433090.010727836, 6433414.0625, 6438583.024464117, 6439371.606606542, 6439869.336216109, 6440241.946846246, 6440952.228597408, 6441206.69081912, 6442420.047546484, 6443535.9375, 6443559.299714291, 6444234.61399295, 6444457.099916707, 6444471.630292093, 6444734.158055882, 6444809.375, 6444985.529482277, 6445628.125, 6446088.7144313175, 6446243.75, 6452701.235728923, 6452883.394755547, 6452905.121952698, 6453716.177622506, 6454017.164794182, 6454191.408209777, 6454938.870808518, 6455118.75, 6455665.852927133, 6455690.571026504, 6455784.375, 6455815.526418703, 6456011.061800009, 6456070.930141667, 6456315.543427361, 6456354.577441093, 6456363.5087459525, 6456399.900682473, 6456784.375, 6456818.441378654, 6456847.181064744, 6456854.106761772, 6456906.326062732, 6456973.133722553, 6457082.411038921, 6457463.792303633, 6457595.3125, 6457784.172014771, 6457968.48641139, 6458012.264997029, 6458095.3125, 6458395.3125, 6458440.614120083, 6458446.043769075, 6458450.12048404, 6458456.25, 6458542.160841935, 6458550.0, 6458561.126361491, 6458565.90572359, 6458583.116918147, 6458709.375, 6458814.976089762, 6458900.467264279, 6458949.399167623, 6458959.435929933, 6458961.455378502, 6459013.739977914, 6459106.110092688, 6459125.0, 6459174.202507632, 6459254.550836273, 6459262.345572151, 6459273.4375, 6459284.512761313, 6459291.812064162, 6459309.072252802, 6459407.769939635, 6459424.266760403, 6459514.0625, 6459514.274141043, 6459627.278063056, 6459637.273706816, 6459640.295961078, 6459659.472413173, 6459682.941100303, 6459683.879413091, 6459695.3125, 6459717.873339803, 6459726.785609205, 6459760.626609958, 6459773.4375, 6459779.6875, 6459803.762161967, 6459811.755792606, 6459906.25, 6459912.592928621, 6459926.228896374, 6459945.3125, 6459956.544438144, 6459993.75, 6459998.4375, 6460028.125, 6460028.633420315, 6460069.0788693875, 6460074.030380226, 6460123.1719175605, 6460129.119916432, 6460129.6875, 6460140.354303274, 6460146.045128943, 6460166.283317989, 6460200.965741668, 6460215.657053247, 6460215.8333528275, 6460256.705085795, 6460267.615941037, 6460290.717684924, 6460297.585477096, 6460363.318648493, 6460419.954480338, 6460422.766257318, 6460489.0625, 6460492.324525027, 6460545.3125, 6460595.3125, 6460603.125, 6460639.860171577, 6460643.75, 6460822.847721441, 6460823.4375, 6460849.7080491055, 6460889.176721604, 6460895.3125, 6460945.056060905, 6460989.0625, 6460994.938055399, 6461003.125, 6461035.061115243, 6461051.5625, 6461096.875, 6461096.990623171, 6461100.0, 6461203.125, 6461256.25, 6461283.126803023, 6461312.573244347, 6461382.754102134, 6461398.4375, 6461526.5625, 6461608.108315525, 6461611.991594532, 6461645.1791006485, 6461648.4375, 6461656.779811485, 6461657.289360027, 6461683.097163626, 6461705.480649722, 6461826.491078326, 6461890.625, 6461924.8370500095, 6461973.352191168, 6462010.9375, 6462070.755102411, 6462077.405389721, 6462157.1736105485, 6462257.818766193, 6462354.469569704, 6462397.333818243, 6462404.453948951, 6462521.917584789, 6462582.8125, 6462597.299000506, 6462726.889482139, 6462729.6875, 6463112.353725825, 6463132.571319136, 6463144.981340191, 6463307.2444918305, 6463324.277721669, 6463488.615383673, 6463639.0625, 6463667.857905095, 6463910.835983718, 6464014.0625, 6464094.394193367, 6464108.756114009, 6464155.182290494, 6464192.1875, 6464250.0, 6464267.1875, 6464523.092384338, 6464778.390452036, 6466621.691675598, 6467793.641765642, 6468867.957990715, 6470199.391328196, 6477437.5, 6480295.3125, 6480546.529989837, 6480859.375, 6481020.141416952, 6482319.210684138, 6482501.436159337, 6483624.190478756, 6483690.445363745, 6483881.25, 6483970.724767388, 6484070.049035001, 6484198.734187286, 6484497.378149925, 6484626.564477175, 6484776.3102604095, 6484776.477205999, 6484859.74351422, 6485033.271214511, 6485111.309837194, 6485721.406173165, 6485786.547061994, 6485832.741389003, 6485959.348780259, 6485987.516467695, 6486102.2851920845, 6486247.6227106005, 6486251.9926036345, 6486409.375, 6486481.306946098, 6486494.901798415, 6486501.187398667, 6486650.0, 6486844.019614787, 6486868.746970923, 6487048.3026117515, 6487067.948392882, 6487134.375, 6487190.546335058, 6487201.5625, 6487210.390406121, 6487457.4085769085, 6487460.804935353, 6487494.575941377, 6487906.25, 6487926.921810328, 6488123.4375, 6488343.75, 6488396.875, 6488767.176158664, 6488861.73379858, 6488918.571501935, 6488951.800358803, 6488979.20502026, 6489058.13740072, 6489071.024135161, 6489275.176878658, 6489296.875, 6489321.875, 6489353.020864302, 6489620.303011623, 6489808.662830295, 6489857.885570171, 6490237.36926561, 6490323.9393247925, 6490376.834961837, 6490386.653224677, 6490495.523365727, 6490550.076588067, 6490636.383159679, 6490754.268063899, 6490899.53593568, 6490936.801242986, 6490979.176109241, 6491258.259661577, 6491278.13229489, 6491503.492148776, 6491512.997647366, 6491631.089706529, 6491736.682138019, 6491871.875, 6492015.6882172795, 6492117.309566932, 6492187.5, 6492396.875, 6492482.8125, 6492628.125, 6492681.25, 6492875.0, 6493258.758078389, 6493673.541467762, 6494587.834820894, 6494673.392873543, 6495085.15779378, 6495202.763910185, 6498714.358069682, 6498727.224433218, 6500100.169733669, 6501341.535203816, 6501903.014609517, 6501998.649908883, 6502202.421403444, 6506471.949422285, 6506756.148344878, 6507224.075543885, 6507564.0625, 6508121.3121934105, 6509427.162837192, 6509653.125, 6509804.842795816, 6509851.5625, 6509976.912274905, 6510196.069393747, 6510696.551244359, 6510910.512923041, 6511518.312448865, 6511668.177664417, 6511684.274632478, 6511711.029180783, 6511735.3782114405, 6511768.358337127, 6511777.517688033, 6511893.837472328, 6512020.079339214, 6512181.080646118, 6512301.62296847, 6512390.222630272, 6512481.25, 6512540.83655026, 6512601.2506338665, 6512607.8125, 6512662.5, 6512855.346489274, 6512888.554991227, 6512982.8125, 6513107.573296679, 6513423.4375, 6513443.245874698, 6513577.757147306, 6513807.8125, 6513845.3125, 6514602.634132298, 6514829.651674432, 6515701.494519731, 6515706.477686246, 6518236.007770894, 6522190.000545659, 6525744.932608631, 6526420.3125, 6526426.402401696, 6526481.208022063, 6528994.811089937, 6530093.069170146, 6530240.619815753, 6530413.788294725, 6530436.6807586, 6530441.648464145, 6530514.885558615, 6531593.75, 6531698.986198892, 6533009.855625221, 6533416.151933203, 6533595.484018867, 6533634.30014241, 6533759.941529293, 6534119.853089697, 6534121.875, 6535668.837887712, 6535778.107480196, 6536231.734404961, 6536956.25, 6536965.625, 6537551.139168921, 6539628.125, 6540156.25, 6540398.834837879, 6544441.5531052565, 6544731.24001993, 6544856.955758795, 6545330.985761278, 6545668.074172321, 6545757.278450354, 6546207.1959001, 6546323.270625797, 6546435.277024414, 6546576.5625, 6546596.875, 6546598.1965730665, 6546652.322072064, 6546969.356586175, 6546985.646878443, 6547251.526210174, 6547401.189067756, 6547808.656277563, 6547840.625, 6547987.5, 6548023.4375, 6548639.0625, 6549267.1875, 6549612.303770775, 6550105.220771441, 6550249.937724004, 6550257.399682257, 6550447.98101129, 6550845.3125, 6551032.733268545, 6551061.842933424, 6551126.404680911, 6551345.3125, 6551404.0455591455, 6551429.6875, 6551468.75, 6551561.447728393, 6551821.875, 6551852.188977371, 6552408.860288487, 6552464.883334382, 6552493.903052968, 6552496.19604256, 6552793.75, 6552988.547362627, 6553029.4378973525, 6553215.467297775, 6553264.0625, 6553276.820964291, 6553460.9375, 6553529.262922143, 6553610.634810602, 6553678.125, 6553857.711790483, 6554029.6875, 6554048.4375, 6554121.972890074, 6554147.791882208, 6554912.5, 6554932.8125, 6555016.918733177, 6555075.824436067, 6555514.064795549, 6556403.125, 6558042.138379851, 6558705.59841443, 6558931.629595125, 6559731.25, 6560392.1875, 6560723.97334637, 6560799.504775758, 6561059.522809162, 6562421.102949192, 6563028.125, 6564098.867687523, 6566716.625818055, 6566900.0, 6567628.125, 6567722.423497622, 6567952.53546125, 6568255.73382552, 6568649.250463956, 6568781.688582923, 6568913.717935686, 6568960.251136759, 6568997.903448407, 6568999.696447897, 6569281.024202175, 6569301.5625, 6569604.470213731, 6569620.78941108, 6570412.000936063, 6570529.566825911, 6570905.398932521, 6571201.070196165, 6571573.894750934, 6571678.125, 6571960.9375, 6572042.1875, 6572159.375, 6572331.25, 6572441.647690703, 6572734.375, 6573013.681742416, 6573135.9375, 6573462.048219088, 6573507.8125, 6573551.966379349, 6574157.780666321, 6574466.274404873, 6575309.375, 6575820.118695556, 6576012.326741388, 6576262.406679953, 6576345.3125, 6576562.5, 6576593.132455754, 6577038.727572715, 6577057.668759819, 6577495.3125, 6577509.375, 6577691.926351361, 6577728.125, 6577750.509836568, 6578675.923849565, 6578701.251615551, 6578763.340048512, 6579350.678677193, 6580760.644777897, 6580814.662291387, 6580815.5917887, 6581323.4375, 6581420.559199896, 6581664.3752964055, 6582936.619089355, 6585001.5625, 6586004.731070302, 6586639.2405472575, 6587932.382687584, 6592042.115733991, 6592678.5449923845, 6594095.3125, 6595007.612387174, 6595867.074652555, 6596185.9375, 6596231.628505615, 6596240.55314591, 6597727.398278984, 6597751.5625, 6598274.79948984, 6598739.085131996, 6599112.070675889, 6599435.750970738, 6599754.169031346, 6600202.722828163, 6600509.375, 6600521.7420338215, 6600571.875, 6600846.875, 6601548.311043503, 6601856.25, 6602203.705776997, 6602429.525641968, 6602559.178693391, 6603127.964635536, 6603316.623437793, 6603500.0, 6603749.8806454325, 6603754.5101015065, 6603765.739480744, 6603767.594669753, 6603790.625, 6603943.239187327, 6605600.832220147, 6606543.75, 6607467.820139323, 6608823.4375, 6612082.629238196, 6613246.875, 6614572.400873794, 6615459.375, 6615563.7452119095, 6615614.0625, 6617000.583885085, 6617714.226735076, 6617723.967346414, 6618054.81434519, 6618819.688128542, 6619215.625, 6619227.438837558, 6619695.118583643, 6619770.867560833, 6619995.772438321, 6620314.0625, 6620367.936495915, 6620801.358090468, 6620979.031273045, 6621159.375, 6621413.475941975, 6621764.526557733, 6621788.794452993, 6621825.680496959, 6621949.778511895, 6621953.125, 6622056.015231268, 6622164.092253164, 6622167.496962676, 6622675.0, 6622915.625, 6623009.860857778, 6623143.141832959, 6623176.40786082, 6623176.5625, 6623214.177638245, 6623369.523158061, 6623415.993072268, 6623859.302103462, 6623879.892210206, 6623950.459291948, 6624033.149537646, 6624294.3393509975, 6624943.172386106, 6625179.6875, 6625353.766906047, 6625399.656447054, 6625903.517334366, 6625932.886320279, 6626034.535545078, 6626385.9375, 6626458.549364489, 6626535.474179976, 6626731.768336244, 6626818.62469802, 6626889.226948804, 6627074.864350237, 6627082.181756053, 6627089.558814185, 6627526.5625, 6627623.13953825, 6627632.895842273, 6627670.3125, 6627691.746317052, 6627902.135908771, 6628116.718211636, 6628719.786835985, 6629787.5, 6629857.105116232, 6630531.25, 6631612.5, 6632271.688229001, 6633213.259440431, 6633556.182828802, 6633666.9563176185, 6633881.472899059, 6634565.49105358, 6634591.024727946, 6634624.292502254, 6634650.3470691815, 6634993.699243125, 6635204.6875, 6635674.331278929, 6635764.975285423, 6636039.0625, 6636135.9375, 6636214.317565423, 6636696.3314474905, 6637232.8125, 6637543.75, 6638052.983360068, 6638701.894444749, 6640120.545245667, 6640565.272333097, 6640984.375, 6641360.754951169, 6641701.5625, 6642117.106639157, 6642235.9375, 6642592.541607904, 6643110.286800277, 6644058.964535277, 6645595.922922877, 6646726.069659805, 6646897.357370909, 6646934.951364624, 6647533.617325617, 6654319.11852635, 6656031.918728051, 6658168.686947281, 6658837.258002808, 6659833.2882127175, 6659841.351118365, 6659848.737980235, 6659849.188865171, 6660407.08902962, 6660652.91664984, 6664006.25, 6664571.658507552, 6665395.946024086, 6666201.7386761, 6667134.375, 6671892.1875, 6672339.834670165, 6673165.625, 6679957.8125, 6683368.75, 6683415.119720161, 6683464.0625, 6686203.009929334, 6687655.039358671, 6689064.058881475, 6689642.1875, 6690853.117104713, 6691690.262586425, 6691703.619807972, 6692424.931035026, 6694606.25, 6697196.747954771, 6697384.375, 6698107.8125, 6698124.978152859, 6698199.381665019, 6698440.625, 6699463.51204825, 6699800.3323962735, 6701856.938983698, 6702199.067423807, 6704693.75, 6705181.876777931, 6705723.360094172, 6705777.855819101, 6707207.779525147, 6708617.395353539, 6709067.989368683, 6709145.3125, 6709472.744187381, 6709501.5625, 6709525.051413255, 6709654.057216915, 6710501.852698586, 6710674.742015047, 6710689.137418699, 6710976.5625, ...], [34.75728050881255, 60.043021243731594, 76.21876373665884, 57.31872636959169, 12.375290262974275, 13.970306247484745, 44.25471691496446, 60.30993866842195, 7.422314257470292, 55.894574171223496, 84.16946292262743, 63.12799747135561, 34.472360787750205, 32.073130950748705, 15.929841861865949, 69.29671175630818, 24.652805304876814, 13.456416318519857, 11.746871854965605, 8.871599156831138, 5.320060804544255, 31.845355277903053, 45.741141577081464, 49.36566879036779, 27.576315369790077, 29.3369441937759, 37.72636354910517, 113.42520042274262, 51.007692637231024, 162.36269502777924, 15.28277289017484, 36.446506365681984, 42.21876936335581, 24.04368907802162, 27.265347926629833, 114.77280846028674, 13.506275179344772, 41.50291040420244, 29.6140006531901, 82.68238655420492, 26.52903970793932, 11.67946086135777, 37.035972925971514, 7.740546948555318, 50.19319707263238, 10.6691293740477, 71.25687079701483, 20.41387997313264, 56.46428343090273, 48.93029759408264, 51.6708848756709, 52.20205240219489, 27.803839857530253, 5.79850665925842, 27.674953888275486, 22.498674928819458, 108.00012186741696, 7.4811821442826085, 142.30731034985553, 79.16371589187507, 26.452840536009663, 17.00824784132602, 14.10330599629311, 40.041561988293076, 21.265872277963293, 21.392398463188297, 18.037007868505682, 47.429185894342574, 69.55960236245323, 32.70317859462259, 17.873000094988573, 5.49048851563926, 13.666544631201457, 29.451886649779883, 13.578374199255725, 72.31588395290937, 62.340854920842226, 10.161859189192176, 14.141221065844105, 9.077897715093927, 16.662179949039675, 17.18397195200484, 33.668909077080016, 9.653935703157059, 81.72913213049027, 37.34430244187601, 21.066042711522268, 14.252152523198657, 21.18994587449594, 5.126851711126982, 33.366999160047115, 53.45562758209349, 17.309453671905235, 15.318654954237397, 11.993052743065215, 31.122813884708137, 52.70935175251867, 39.13038529802221, 5.5332938937878025, 27.787594666244782, 63.816609175773564, 12.40953100994924, 13.07990001487359, 42.5177097394285, 60.773064020637534, 12.538540660051448, 5.124884324811263, 29.591474442851272, 17.776524624344944, 66.21583864700779, 97.51810640750524, 58.133559147019106, 6.8734625565390415, 68.09705284222979, 53.41543636803823, 27.34047771066798, 27.814166198950588, 61.465115688189925, 10.742153232646373, 8.501240862769562, 147.42934359835323, 10.945865926885583, 13.918968512698186, 27.61349296774209, 140.740005927306, 30.620049649270758, 21.627577057576836, 12.087200113670077, 68.25392082183268, 44.677026760055284, 43.185499449808624, 59.63511980091163, 8.94631715270018, 27.87639250939779, 46.88515171801275, 18.44691662299937, 18.597288977593614, 5.753331063271669, 11.923797322251854, 40.48544074246157, 46.11957262669428, 22.3507496716322, 26.69850206498198, 5.396773091150229, 27.859820848650603, 88.83140395222676, 129.57983023191497, 6.639020734560345, 16.593987294551056, 19.190517387024954, 73.9867275133036, 98.26653492836157, 24.20160511754052, 41.975113132862234, 115.2466418632402, 71.12638680914415, 37.318983334635384, 9.699085346754064, 12.623038294335952, 8.453390328438944, 6.829288713498234, 20.276591246211403, 53.36696148825443, 5.173596177024704, 45.25831842684228, 12.194177387369608, 19.227968363266594, 32.003101577809716, 13.052289774296185, 11.853332555568542, 9.462998714146975, 65.27378850815103, 56.027003386857075, 12.101870429131928, 74.45431218829552, 74.93665450835672, 6.7486608783299245, 78.92939196208582, 19.6066766829425, 34.63844798758501, 99.60365178931318, 27.629616573950496, 8.479718483055148, 38.93022020825977, 64.21376861765899, 76.17405301393852, 44.422130492868305, 21.35149254116212, 12.150884690481341, 14.96528814551546, 32.23422642876534, 50.266201147758686, 65.12504702467315, 22.435436411730628, 107.54722496795935, 8.262713124068942, 15.748940698651484, 23.233918816362124, 32.64969815082942, 10.992811218009752, 12.62386053837074, 19.21072259433825, 13.635821499758263, 28.054075350548693, 90.50478263644438, 74.40426273398444, 9.016305194570261, 15.473517164721484, 91.68390428193375, 38.37531041957558, 12.521466651486424, 7.867648012994392, 12.22561829006625, 6.649430849759929, 5.94830712825754, 67.41003901139109, 10.180412016626763, 58.989656764404586, 78.00562968798597, 41.423417980258016, 25.308338902634123, 13.811139749466623, 7.266560727165524, 60.07022472091545, 10.497739500006015, 10.0699143899492, 6.804434465897073, 7.400409917669024, 8.17718583092713, 14.042752304290307, 92.47707431620881, 5.456693843208103, 39.05416756784433, 31.282542114893047, 55.060184514375976, 11.162056820060391, 47.390062434324975, 16.027150576753368, 62.7388383266228, 30.16789898656513, 41.01098587257961, 53.6767791020115, 22.10726985617108, 8.449386835153309, 33.55710855399028, 5.967638394719932, 57.71363367791475, 19.35827596721421, 13.649929216545026, 102.23263776972954, 150.68001524855237, 17.456105390257733, 46.56687581479501, 117.98651246532563, 185.72146030334878, 34.30545090271757, 11.07125550756212, 68.09474280203146, 28.89034347034891, 24.10732694975387, 5.311322641356928, 11.952752471589154, 6.638716153270117, 66.85076307941307, 9.73575131668892, 10.25629703116849, 14.077760239618586, 15.335276267623744, 7.290134013721513, 21.965346113870368, 13.957003752201304, 64.73539341399459, 8.318547457711297, 36.636674133286725, 14.267378861780596, 89.69287362323658, 25.719507899029693, 5.531637440253056, 17.927328723445374, 17.56208152413039, 35.0074295399904, 110.12840890645775, 10.652655855601878, 23.89900902217624, 27.250537058369662, 8.860923667097202, 47.298992555122034, 6.806574448600824, 40.77204740623925, 7.284575715366791, 126.1473414408934, 6.35519017379136, 16.93801690678376, 7.51013943837564, 86.1064318724448, 8.24716223283241, 5.251883813286098, 12.779244065367289, 13.908172942876792, 44.21794377023226, 62.05576096652636, 13.585226872925803, 39.75100395658224, 23.15555459050593, 46.39830717215289, 37.53603217655224, 17.748121306303883, 14.401480743554771, 124.76132503557423, 14.855666011414772, 24.55358420421193, 41.8785704655297, 59.01446934749074, 15.887777321200344, 37.54455007590947, 95.40008849922314, 59.23492744552397, 15.43743794364342, 7.293861721455527, 27.009122072794096, 26.523489379265243, 37.304941691993825, 298.1996200403016, 83.69464220933186, 10.677304350781409, 8.45534439869927, 6.196512388666576, 17.097926815316345, 23.702609633383396, 18.77779500295562, 36.24264269325287, 63.84362710568228, 16.55226970342387, 32.28811832108996, 14.115549659796436, 71.9813151816471, 43.66033144286757, 21.25159611839139, 55.15278893309112, 5.043580172012688, 42.204846380649414, 5.531788138766734, 36.4391039163522, 20.652684552108624, 16.131564937192387, 22.360409015076854, 51.405532356801636, 12.935914853106713, 97.36206770561508, 13.058120380096195, 30.917507507031445, 79.07001200491028, 171.03626353347542, 9.215840571329055, 84.19645324813838, 18.963079790569473, 26.08835113336846, 14.383853829115164, 57.97754814857306, 11.350087525434734, 42.202894652576404, 70.25464521018085, 81.41110437104226, 12.729637343775494, 28.89668041453392, 21.78788045753856, 35.8100228384581, 9.147118869527622, 118.37343291631882, 122.16649652027391, 9.442561849391915, 36.554615103697294, 41.42970657968028, 18.41075837039152, 223.3705999410558, 32.560891130584444, 68.09614724097455, 65.38523179261331, 49.361453912304746, 15.277816253317592, 48.02082196508548, 15.30794848672923, 23.330786830017153, 77.67009437281048, 69.62327420023354, 150.8655241141464, 80.00275497918028, 60.51435478902637, 7.7980927588195055, 116.23037312239332, 24.038885040897714, 14.017437620580168, 13.144684747228723, 38.07085785024869, 7.052066497475176, 24.98520660015289, 18.228394377497352, 13.068635710492801, 41.860341413588955, 17.888877064613357, 8.54284695223699, 40.7054025604953, 89.59831321085778, 5.654596980201828, 78.79356392209283, 54.520735686320435, 12.880306976007637, 71.49597233614128, 5.133441509038018, 41.05634453424471, 64.98306878705867, 78.70104208523382, 6.012018192934871, 61.211896307700826, 13.08670993844667, 63.69775874149511, 10.700101401194924, 6.281738113308045, 48.657309019250995, 24.3235901390758, 59.96139572492982, 21.23692378574806, 104.36564974636434, 59.48037123571926, 58.720362205658894, 37.44107324443698, 11.31337411415452, 54.05473934561637, 152.41444057942638, 78.23581874802956, 280.37034426843496, 15.228230311128511, 35.2251565606255, 93.2367468224952, 33.425281672582194, 16.20315453476299, 5.896320508411563, 10.925406204574218, 72.35715347305458, 18.862261787076225, 29.14702877909978, 11.603849829121517, 133.5882049963701, 7.102802786451617, 91.10841437160214, 9.19731837515446, 65.53983626627605, 38.7511889491268, 23.666713973486907, 6.18036937165157, 29.70902218505438, 14.965447126540955, 24.85890656039564, 108.19179840611781, 141.14719436034102, 23.244110528348045, 59.54871441911121, 23.969565416739385, 38.26847365605597, 49.866292521901435, 25.93533314660728, 7.518275329254359, 47.857406276966394, 7.409953638793582, 130.29622471791404, 15.87162292999599, 89.65099319029535, 9.97083510815003, 69.86400268790518, 54.50957453817796, 59.57175463355637, 5.503779488928168, 12.000487537551548, 154.51402449516016, 78.11642810723092, 63.28278801330302, 10.62796364491818, 36.76549808844182, 19.752293722748178, 45.969980903246054, 19.002942532030325, 6.395729779690488, 70.04488277563682, 73.55406055805852, 125.46150043661791, 71.80077068668699, 18.321097900195547, 6.137353343383759, 92.06908935448315, 7.334530384709254, 36.21215158556144, 53.59557046627946, 16.786210380393722, 30.16284078508802, 5.965666105504209, 5.739545969224978, 129.56217867971085, 15.968050505389343, 26.94447668740881, 58.68064352754914, 17.03506668241701, 5.8420534556931925, 177.46876397676866, 12.235975147454168, 70.4160751162766, 23.684071596073473, 31.106833454864805, 48.20171934753368, 39.008641785968855, 84.87603238692829, 68.35420571851874, 8.316922709243514, 5.904419752945261, 13.681645067275067, 47.939592422987474, 24.62700497391404, 7.120655632468808, 26.116857973117042, 6.925555041007176, 38.195155606037055, 27.0598907937722, 74.80565685479307, 67.99237491875061, 50.63287740152118, 26.15427847733943, 49.71027860434864, 52.606600299418865, 11.739964036263798, 52.75853638907816, 53.47755575400481, 32.038921090795185, 64.65973135953782, 6.01188755669647, 25.43761202153211, 15.93286425485957, 51.01398717305117, 27.756911760320197, 39.1658878645807, 95.67746919896516, 90.04899025492017, 29.99886347362427, 26.62274718957931, 38.03808528169173, 85.30904129450133, 15.22753009539112, 14.465573726108898, 17.27511522762074, 8.436114006571469, 18.614280947760072, 15.81113645351415, 15.24169006509921, 64.56355811105257, 22.336264211891145, 6.674266160431385, 19.71578724617775, 10.412544502897255, 25.95377836060962, 21.39816790248344, 33.711373418324754, 37.94445301862433, 25.715938890427324, 25.566673424833677, 47.9723045334778, 19.664096729299267, 15.428119671343543, 32.84031687402522, 33.209743972232324, 113.44699835979739, 53.66882747046042, 95.87591675779882, 78.96287442351894, 10.2833126490708, 16.011932642679863, 39.56733240277195, 16.132357159407057, 26.931345001519226, 26.219325360144385, 16.201981401995173, 5.566092464553174, 15.630484237607593, 28.91965690004407, 26.517959136061958, 11.47678078156026, 12.801009503458905, 30.965950047985263, 8.233542137321544, 23.961136683857177, 49.12156923373548, 28.257803666694855, 28.5010692253178, 119.38465625971912, 15.211038407945903, 63.07746535231526, 16.46638007937006, 18.904486768669983, 112.89317521091014, 19.859560121731654, 22.139532949042277, 116.93436107337862, 106.54782610554442, 37.17244849705157, 10.353200107950213, 72.3346034109681, 50.09273547853225, 63.29985075178484, 7.061480558911275, 45.7533674035151, 19.363815185702634, 59.49810681015465, 50.569612340357914, 85.44956259140216, 54.86755108844456, 31.85895617839189, 86.70650056327729, 20.781485304720512, 13.305528208963445, 55.472665112795546, 49.665098382907786, 70.73018311689731, 18.408493788509656, 82.63690576198361, 54.37601650806006, 83.38892686503088, 10.438331925089237, 17.021030452732152, 10.532521825265029, 15.886688116757394, 6.095437383363998, 64.23410313342507, 52.775856180959366, 68.91323249196827, 36.22607187834371, 6.755154836455105, 5.509230519674753, 65.52435694774285, 47.31776939490385, 13.990126696043086, 20.81511793661057, 63.423514038482296, 61.26765061188439, 62.319676735777016, 17.54663633265508, 6.329893636694809, 12.065010484880272, 39.255739619415436, 100.14730625306349, 8.610753597726996, 7.005705591181649, 77.19088432988671, 164.4993083253098, 7.596913336310933, 21.211931758612984, 52.1826088023242, 113.79509370462138, 13.541046069195993, 79.97629805571623, 99.5873838409964, 11.811284408518821, 38.3600187797095, 28.216412500211806, 67.11011681962708, 14.021707471313862, 10.213539533251769, 8.02300660794704, 26.84938459260207, 34.55131169764649, 7.965680058207681, 28.614923963990268, 48.996170352776495, 14.09638804770321, 10.068431460359875, 30.775104167265948, 23.871282065581955, 8.267479439851819, 5.445963482084494, 55.78183884914864, 40.70045740251018, 41.266970175260134, 77.86451547518735, 65.36922475681007, 35.46667659723244, 10.83424176469332, 17.456022396674534, 57.23956194339054, 22.40922914082664, 21.938414580602476, 33.38425763411918, 5.339214020838933, 18.50412744971794, 6.071839755327518, 120.18135423766707, 20.18511213114208, 32.58688162569964, 39.49552291805275, 17.32296941025311, 51.89993545493263, 17.6109818854872, 18.886329654241404, 8.77423494894902, 8.369207326570494, 19.876151531757156, 35.70549278394144, 13.28477864838016, 89.51156555730502, 6.0718516836418095, 77.30382128377117, 51.37564230557423, 85.41257293141558, 10.523141867245169, 22.459362948011783, 59.179910472818584, 23.375498265020347, 59.05595188541909, 39.75018247500096, 5.294120620555605, 32.461733541143495, 55.44806949532287, 35.61960928927591, 14.007333811567397, 28.536964960048728, 87.0708461178854, 64.21558431750151, 14.757534317597823, 30.09784954132062, 64.4928761934825, 60.74554113245856, 71.97865974848266, 7.809266860393541, 113.02998788500165, 34.449967103916805, 27.86522416638773, 82.56256228859307, 68.37062504692439, 21.473776583525655, 50.435452628328264, 67.79797995613208, 7.814445664507101, 27.512948730619257, 21.333254426502087, 23.098159496638537, 18.816201881151514, 86.65237628398516, 98.8750588310481, 13.233744281759783, 13.898320773022176, 55.49657052404159, 45.48796269587338, 91.37980068871374, 5.358533656943986, 13.328610421467257, 48.1390324769055, 18.58468919602053, 8.94715465095213, 29.005182408318298, 74.04735739836332, 99.31836136986729, 77.95189377346423, 53.998307808067544, 81.9743920217113, 64.80106539333804, 52.44546268793201, 22.771221401561025, 91.65684609239, 21.987986130303803, 30.06308630245915, 9.697967446348166, 41.00482044668548, 47.90626684295697, 77.13059692727373, 25.209142746942106, 104.85946432635629, 45.50595184048019, 54.4556658759776, 74.64956905291697, 10.282566488688843, 8.117062715312429, 5.803420728368729, 81.4036312123686, 84.97047895150133, 19.034291031698203, 72.2526377774623, 43.56225129597095, 25.649176382907118, 40.82948369960163, 90.4392665181627, 53.83509435121425, 14.043796825447219, 12.215365799924243, 27.884145439075443, 32.09218630798974, 7.187847572433601, 9.610677810025326, 101.33339219805703, 101.58337981233231, 17.74478795473171, 15.666537440915388, 13.522473538454754, 7.102713482422973, 17.4963629943914, 52.61949858355797, 86.52485149055417, 86.66694823704785, 60.183470632299276, 11.775793715064504, 5.243138684647047, 37.54329558777116, 42.21588536295852, 14.228631612718095, 92.87452954998992, 38.2765723832872, 82.27250462134626, 21.310822924247695, 22.527845478738772, 30.747137160266398, 36.234698200049266, 86.39117404866268, 36.92524380358281, 161.63559698181342, 39.11019671673403, 52.11004068463362, 41.45788817678193, 25.172264068091835, 25.71483923523693, 20.56490342805664, 54.7124992596147, 23.84259402219124, 25.454217385013063, 15.396580244650005, 16.75949076927464, 39.8367334362746, 21.385911940046476, 128.674806784003, 86.33965338391154, 5.7482396233533075, 52.29984657741957, 25.365972237372265, 31.171988392877882, 17.413011444801995, 68.84812826950105, 9.07679339578403, 46.563870136987916, 8.621526933987065, 11.394501542170353, 17.436073687751477, 9.441011486802939, 11.19682476151117, 31.0334477975595, 139.68765457291812, 96.21704379404629, 6.87962153430421, 8.545758815203948, 178.32740671666627, 8.726799419074608, 98.1011239936943, 12.91761664129084, 45.63844561812611, 20.67101179272474, 5.849133453650391, 24.16766194862578, 5.751480014799854, 24.808249669776018, 84.25657239872058, 39.15397989274833, 29.788616954768457, 85.73786023425336, 51.81465997618129, 34.00040727347964, 23.492386953817675, 13.039252912776954, 6.247856539376924, 68.65841905198229, 82.28361853893762, 6.928344576754311, 5.477789541101911, 33.3858217795868, 70.75383437502002, 5.416327476800588, 11.698820284581691, 17.791514412606414, 52.20247987414055, 47.031979868490296, 18.121878283905623, 7.483533479919954, 24.325212203758944, 9.394612264759484, 84.90353756263798, 82.20217486719397, 27.748326013128114, 219.93580923838144, 6.571535262493998, 38.29329429066172, 46.54850554369861, 63.70643945003948, 62.7036224280407, 17.243926146725336, 58.13931310328665, 13.915674245931836, 24.293981874114714, 38.9546181607742, 101.37388948794289, 17.694408215128398, 121.01995669397897, 15.5076691812895, 79.21627606286994, 21.190873463770828, 69.27427827334607, 83.17164706837717, 139.90632975980267, 6.925225099750191, 11.024312363935238, 24.671480946130526, 62.03908516069828, 158.74068191637346, 14.87073188103929, 5.115664174585969, 57.27004822889152, 11.049286647723667, 30.510980147783588, 63.694742944173264, 75.45463411434126, 58.6826485400392, 75.41147066877332, 16.01181616184353, 71.32013340340622, 118.14319195923439, 75.42195928041338, 26.008850089536775, 77.53038585243694, 7.689644338505787, 39.25866130472084, 36.02870025803651, 31.836503826877525, 88.34682717685281, 27.021529133628007, 100.46029320342605, 75.45333873921942, 25.501109024654898, 22.600838403607494, 5.994388152529491, 50.36652496339615, 17.16567711613567, 7.281676672476523, 26.808573222496726, 119.84015302423543, 9.969031354632387, 27.336416994335742, 14.09293420158647, 17.1286453708604, 92.29007158791336, 16.22545804565718, 6.007623498883553, 19.520209077065044, 10.816944119252467, 59.39184855950417, 5.284446473717761, 12.28697829447504, 24.02860476128661, 67.77893471957879, 69.8131969803846, 24.51678527982085, 46.596340108568974, 95.65804571224764, 72.43861964245626, 13.305950936613396, 81.78037099566109, 26.440193078812502, 17.497273614985417, 28.453695540062792, 62.21680280914976, 28.369686673982844, 22.984942100181737, 12.00052232856402, 14.685005042302912, 91.85345358433746, 171.27152017569782, 47.09115890852053, 40.7791180181911, 30.343022229203946, 272.21617625334505, 37.57653765819857, 63.535978862134925, 16.380337550249646, 79.9664079083062, 28.383894688095836, 62.08901005827121, 18.025131010884586, 27.08194567862295, 24.152560809008463, 27.88858952053491, 15.797711023865775, 26.29665562478092, 55.74341814353428, 12.826054787626802, 49.300203286128394, 15.141161877175229, 6.9650723207784, 31.10629039113671, 100.40107665743102, 21.65413586512285, 34.03378034838173, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([3742281.25, 3841076.5625, 3842689.0625, 3850396.225977746, 3850442.8617954263, 3859218.4695062307, 3869695.5912366663, 3871373.4375, 3872574.470445902, 3886861.588010299, 3887576.5625, 3893359.375, 3894129.154408936, 3946407.8125, 3957814.299695451, 3980312.5, 4000419.1748095015, 4010926.663119367, 4027265.988025546, 4041305.6510792063, 4054830.597852648, 4064184.5554089407, 4067775.0, 4069543.75, 4073409.699294325, 4073769.526664126, 4080938.075121898, 4081221.521358434, 4155718.75, 4157049.281509615, 4168650.837884007, 4174223.0092066503, 4180532.5370363607, 4180605.972592883, 4180606.18297079, 4181140.0764553705, 4182043.77873015, 4182046.875, 4182484.375, 4192362.362235218, 4218896.765273707, 4224967.513971303, 4242657.311237734, 4287730.051826863, 4294387.5, 4306491.872871427, 4309171.875, 4309396.259551121, 4309464.0625, 4309593.75, 4310968.5587885715, 4310969.668600751, 4311115.587500625, 4312352.913659848, 4312368.705556818, 4312476.157722978, 4312602.707440947, 4312738.711936766, 4313070.3125, 4313235.9375, 4313328.010692734, 4313842.641296687, 4313849.761214485, 4314097.861905212, 4314162.037955434, 4314388.552345522, 4314886.566146589, 4315346.875, 4315470.530096403, 4315690.625, 4315699.040052259, 4315741.277526843, 4316215.244788431, 4316303.125, 4316863.652116689, 4317685.9375, 4323207.567090118, 4334410.217131453, 4334527.897897256, 4342504.371661661, 4348734.763417732, 4352475.369382235, 4354431.494746405, 4355550.358307899, 4355587.372586394, 4356040.625, 4356547.073101623, 4356832.619065465, 4356985.406563573, 4357010.76590341, 4357220.3125, 4357280.684375141, 4357364.333377612, 4357412.59555053, 4357428.616051975, 4358407.8125, 4358946.861840404, 4359003.125, 4359100.004395225, 4360111.445113283, 4360248.4375, 4360841.314863519, 4361146.282595023, 4361844.750395852, 4362796.875, 4363346.059852322, 4364362.235264393, 4364719.645814049, 4365094.206355314, 4388860.5968857715, 4430146.802933144, 4452007.3007315025, 4455442.714395244, 4456473.4375, 4457038.571117539, 4463174.937173746, 4463624.963053664, 4464317.1875, 4501890.363488401, 4504230.072509468, 4507541.446335484, 4514157.692963202, 4529316.890597198, 4537653.654750701, 4568240.701625599, 4568481.604233804, 4569010.450875823, 4572138.037863508, 4572703.7116417885, 4573120.3125, 4573880.472163372, 4574175.0, 4574319.819033519, 4575009.341375994, 4576217.598691668, 4576219.4412121875, 4576772.588262243, 4576836.645237029, 4576902.018375514, 4577490.279334735, 4577773.4375, 4577981.441467073, 4578288.962849595, 4579628.080435213, 4579832.777992932, 4579899.365070721, 4579985.135128091, 4580771.217745239, 4581241.00009942, 4583067.308411301, 4615531.15665781, 4615853.990519977, 4656766.391449449, 4786753.390727147, 4978414.825926727, 4980322.737093254, 5706007.8125, 5779276.9675266, 5812459.476536679, 5848022.177664558, 5849812.820805383, 5852077.49374393, 5852319.075949933, 5911459.725099966, 5913341.634440234, 5913349.027192822, 5913499.238392245, 5913817.143671814, 5913855.899426698, 5947945.731919545, 5950159.526636956, 5951075.839347472, 5954626.478991461, 5958127.107555602, 5960261.867404976, 5963738.088527461, 5982373.362680895, 5982718.694987278, 5982720.988201848, 5984963.174169677, 6000563.350609411, 6003299.953095974, 6003528.473207436, 6004125.0, 6005263.510165386, 6006062.5, 6006768.75, 6010410.423186357, 6014629.331720389, 6030157.81872467, 6031096.719144997, 6032451.5625, 6032595.3125, 6036872.318597627, 6107367.1875, 6108707.767098166, 6109512.084846616, 6109685.59593328, 6109698.311521328, 6109929.599449044, 6110050.784388985, 6110157.048594847, 6110341.796839984, 6110401.53826671, 6110506.25, 6110879.293617796, 6110908.977257851, 6111023.57041097, 6111323.1221843995, 6111395.139673504, 6111411.677347914, 6111811.61381643, 6111849.042158332, 6111863.462918776, 6111865.726651731, 6112161.879800221, 6112252.420711906, 6112680.25866146, 6112740.625, 6112796.726616268, 6112938.875382202, 6113079.355553011, 6113252.087182034, 6113517.1875, 6113921.4307583785, 6114017.9484035, 6114540.826606573, 6114821.277088915, 6115901.349747423, 6116483.423073937, 6122779.6875, 6122963.943778385, 6125692.1875, 6147003.125, 6149023.411171405, 6149031.271865481, 6149160.9375, 6152319.008380422, 6153149.270237985, 6153770.3125, 6153789.0625, 6154298.4375, 6156207.371939795, 6158815.920688178, 6159264.042563982, 6172628.443584199, 6192010.9375, 6192548.025993502, 6194240.239146353, 6197239.206087264, 6197369.04536971, 6198794.283285669, 6201417.1875, 6203776.5625, 6204637.5, 6206689.781322557, 6219426.526081494, 6226229.6875, 6255031.25, 6255687.666967655, 6256633.453996913, 6260590.7161780335, 6262060.278549962, 6264170.3125, 6264637.9423918985, 6267014.985435143, 6288824.753291793, 6290051.662110813, 6292319.355050155, 6293530.796072256, 6302079.402771176, 6312371.875, 6405340.684970619, 6406786.373450038, 6413427.936128023, 6419281.25, 6422736.675578407, 6424221.845229763, 6424934.986265929, 6430058.745595178, 6430502.374406298, 6430600.0, 6430815.364307517, 6431040.763367477, 6431222.072587474, 6433090.010727836, 6433414.0625, 6438583.024464117, 6439371.606606542, 6439869.336216109, 6440241.946846246, 6440952.228597408, 6441206.69081912, 6442420.047546484, 6443535.9375, 6443559.299714291, 6444234.61399295, 6444457.099916707, 6444471.630292093, 6444734.158055882, 6444809.375, 6444985.529482277, 6445628.125, 6446088.7144313175, 6446243.75, 6452701.235728923, 6452883.394755547, 6452905.121952698, 6453716.177622506, 6454017.164794182, 6454191.408209777, 6454938.870808518, 6455118.75, 6455665.852927133, 6455690.571026504, 6455784.375, 6455815.526418703, 6456011.061800009, 6456070.930141667, 6456315.543427361, 6456354.577441093, 6456363.5087459525, 6456399.900682473, 6456784.375, 6456818.441378654, 6456847.181064744, 6456854.106761772, 6456906.326062732, 6456973.133722553, 6457082.411038921, 6457463.792303633, 6457595.3125, 6457784.172014771, 6457968.48641139, 6458012.264997029, 6458095.3125, 6458395.3125, 6458440.614120083, 6458446.043769075, 6458450.12048404, 6458456.25, 6458542.160841935, 6458550.0, 6458561.126361491, 6458565.90572359, 6458583.116918147, 6458709.375, 6458814.976089762, 6458900.467264279, 6458949.399167623, 6458959.435929933, 6458961.455378502, 6459013.739977914, 6459106.110092688, 6459125.0, 6459174.202507632, 6459254.550836273, 6459262.345572151, 6459273.4375, 6459284.512761313, 6459291.812064162, 6459309.072252802, 6459407.769939635, 6459424.266760403, 6459514.0625, 6459514.274141043, 6459627.278063056, 6459637.273706816, 6459640.295961078, 6459659.472413173, 6459682.941100303, 6459683.879413091, 6459695.3125, 6459717.873339803, 6459726.785609205, 6459760.626609958, 6459773.4375, 6459779.6875, 6459803.762161967, 6459811.755792606, 6459906.25, 6459912.592928621, 6459926.228896374, 6459945.3125, 6459956.544438144, 6459993.75, 6459998.4375, 6460028.125, 6460028.633420315, 6460069.0788693875, 6460074.030380226, 6460123.1719175605, 6460129.119916432, 6460129.6875, 6460140.354303274, 6460146.045128943, 6460166.283317989, 6460200.965741668, 6460215.657053247, 6460215.8333528275, 6460256.705085795, 6460267.615941037, 6460290.717684924, 6460297.585477096, 6460363.318648493, 6460419.954480338, 6460422.766257318, 6460489.0625, 6460492.324525027, 6460545.3125, 6460595.3125, 6460603.125, 6460639.860171577, 6460643.75, 6460822.847721441, 6460823.4375, 6460849.7080491055, 6460889.176721604, 6460895.3125, 6460945.056060905, 6460989.0625, 6460994.938055399, 6461003.125, 6461035.061115243, 6461051.5625, 6461096.875, 6461096.990623171, 6461100.0, 6461203.125, 6461256.25, 6461283.126803023, 6461312.573244347, 6461382.754102134, 6461398.4375, 6461526.5625, 6461608.108315525, 6461611.991594532, 6461645.1791006485, 6461648.4375, 6461656.779811485, 6461657.289360027, 6461683.097163626, 6461705.480649722, 6461826.491078326, 6461890.625, 6461924.8370500095, 6461973.352191168, 6462010.9375, 6462070.755102411, 6462077.405389721, 6462157.1736105485, 6462257.818766193, 6462354.469569704, 6462397.333818243, 6462404.453948951, 6462521.917584789, 6462582.8125, 6462597.299000506, 6462726.889482139, 6462729.6875, 6463112.353725825, 6463132.571319136, 6463144.981340191, 6463307.2444918305, 6463324.277721669, 6463488.615383673, 6463639.0625, 6463667.857905095, 6463910.835983718, 6464014.0625, 6464094.394193367, 6464108.756114009, 6464155.182290494, 6464192.1875, 6464250.0, 6464267.1875, 6464523.092384338, 6464778.390452036, 6466621.691675598, 6467793.641765642, 6468867.957990715, 6470199.391328196, 6477437.5, 6480295.3125, 6480546.529989837, 6480859.375, 6481020.141416952, 6482319.210684138, 6482501.436159337, 6483624.190478756, 6483690.445363745, 6483881.25, 6483970.724767388, 6484070.049035001, 6484198.734187286, 6484497.378149925, 6484626.564477175, 6484776.3102604095, 6484776.477205999, 6484859.74351422, 6485033.271214511, 6485111.309837194, 6485721.406173165, 6485786.547061994, 6485832.741389003, 6485959.348780259, 6485987.516467695, 6486102.2851920845, 6486247.6227106005, 6486251.9926036345, 6486409.375, 6486481.306946098, 6486494.901798415, 6486501.187398667, 6486650.0, 6486844.019614787, 6486868.746970923, 6487048.3026117515, 6487067.948392882, 6487134.375, 6487190.546335058, 6487201.5625, 6487210.390406121, 6487457.4085769085, 6487460.804935353, 6487494.575941377, 6487906.25, 6487926.921810328, 6488123.4375, 6488343.75, 6488396.875, 6488767.176158664, 6488861.73379858, 6488918.571501935, 6488951.800358803, 6488979.20502026, 6489058.13740072, 6489071.024135161, 6489275.176878658, 6489296.875, 6489321.875, 6489353.020864302, 6489620.303011623, 6489808.662830295, 6489857.885570171, 6490237.36926561, 6490323.9393247925, 6490376.834961837, 6490386.653224677, 6490495.523365727, 6490550.076588067, 6490636.383159679, 6490754.268063899, 6490899.53593568, 6490936.801242986, 6490979.176109241, 6491258.259661577, 6491278.13229489, 6491503.492148776, 6491512.997647366, 6491631.089706529, 6491736.682138019, 6491871.875, 6492015.6882172795, 6492117.309566932, 6492187.5, 6492396.875, 6492482.8125, 6492628.125, 6492681.25, 6492875.0, 6493258.758078389, 6493673.541467762, 6494587.834820894, 6494673.392873543, 6495085.15779378, 6495202.763910185, 6498714.358069682, 6498727.224433218, 6500100.169733669, 6501341.535203816, 6501903.014609517, 6501998.649908883, 6502202.421403444, 6506471.949422285, 6506756.148344878, 6507224.075543885, 6507564.0625, 6508121.3121934105, 6509427.162837192, 6509653.125, 6509804.842795816, 6509851.5625, 6509976.912274905, 6510196.069393747, 6510696.551244359, 6510910.512923041, 6511518.312448865, 6511668.177664417, 6511684.274632478, 6511711.029180783, 6511735.3782114405, 6511768.358337127, 6511777.517688033, 6511893.837472328, 6512020.079339214, 6512181.080646118, 6512301.62296847, 6512390.222630272, 6512481.25, 6512540.83655026, 6512601.2506338665, 6512607.8125, 6512662.5, 6512855.346489274, 6512888.554991227, 6512982.8125, 6513107.573296679, 6513423.4375, 6513443.245874698, 6513577.757147306, 6513807.8125, 6513845.3125, 6514602.634132298, 6514829.651674432, 6515701.494519731, 6515706.477686246, 6518236.007770894, 6522190.000545659, 6525744.932608631, 6526420.3125, 6526426.402401696, 6526481.208022063, 6528994.811089937, 6530093.069170146, 6530240.619815753, 6530413.788294725, 6530436.6807586, 6530441.648464145, 6530514.885558615, 6531593.75, 6531698.986198892, 6533009.855625221, 6533416.151933203, 6533595.484018867, 6533634.30014241, 6533759.941529293, 6534119.853089697, 6534121.875, 6535668.837887712, 6535778.107480196, 6536231.734404961, 6536956.25, 6536965.625, 6537551.139168921, 6539628.125, 6540156.25, 6540398.834837879, 6544441.5531052565, 6544731.24001993, 6544856.955758795, 6545330.985761278, 6545668.074172321, 6545757.278450354, 6546207.1959001, 6546323.270625797, 6546435.277024414, 6546576.5625, 6546596.875, 6546598.1965730665, 6546652.322072064, 6546969.356586175, 6546985.646878443, 6547251.526210174, 6547401.189067756, 6547808.656277563, 6547840.625, 6547987.5, 6548023.4375, 6548639.0625, 6549267.1875, 6549612.303770775, 6550105.220771441, 6550249.937724004, 6550257.399682257, 6550447.98101129, 6550845.3125, 6551032.733268545, 6551061.842933424, 6551126.404680911, 6551345.3125, 6551404.0455591455, 6551429.6875, 6551468.75, 6551561.447728393, 6551821.875, 6551852.188977371, 6552408.860288487, 6552464.883334382, 6552493.903052968, 6552496.19604256, 6552793.75, 6552988.547362627, 6553029.4378973525, 6553215.467297775, 6553264.0625, 6553276.820964291, 6553460.9375, 6553529.262922143, 6553610.634810602, 6553678.125, 6553857.711790483, 6554029.6875, 6554048.4375, 6554121.972890074, 6554147.791882208, 6554912.5, 6554932.8125, 6555016.918733177, 6555075.824436067, 6555514.064795549, 6556403.125, 6558042.138379851, 6558705.59841443, 6558931.629595125, 6559731.25, 6560392.1875, 6560723.97334637, 6560799.504775758, 6561059.522809162, 6562421.102949192, 6563028.125, 6564098.867687523, 6566716.625818055, 6566900.0, 6567628.125, 6567722.423497622, 6567952.53546125, 6568255.73382552, 6568649.250463956, 6568781.688582923, 6568913.717935686, 6568960.251136759, 6568997.903448407, 6568999.696447897, 6569281.024202175, 6569301.5625, 6569604.470213731, 6569620.78941108, 6570412.000936063, 6570529.566825911, 6570905.398932521, 6571201.070196165, 6571573.894750934, 6571678.125, 6571960.9375, 6572042.1875, 6572159.375, 6572331.25, 6572441.647690703, 6572734.375, 6573013.681742416, 6573135.9375, 6573462.048219088, 6573507.8125, 6573551.966379349, 6574157.780666321, 6574466.274404873, 6575309.375, 6575820.118695556, 6576012.326741388, 6576262.406679953, 6576345.3125, 6576562.5, 6576593.132455754, 6577038.727572715, 6577057.668759819, 6577495.3125, 6577509.375, 6577691.926351361, 6577728.125, 6577750.509836568, 6578675.923849565, 6578701.251615551, 6578763.340048512, 6579350.678677193, 6580760.644777897, 6580814.662291387, 6580815.5917887, 6581323.4375, 6581420.559199896, 6581664.3752964055, 6582936.619089355, 6585001.5625, 6586004.731070302, 6586639.2405472575, 6587932.382687584, 6592042.115733991, 6592678.5449923845, 6594095.3125, 6595007.612387174, 6595867.074652555, 6596185.9375, 6596231.628505615, 6596240.55314591, 6597727.398278984, 6597751.5625, 6598274.79948984, 6598739.085131996, 6599112.070675889, 6599435.750970738, 6599754.169031346, 6600202.722828163, 6600509.375, 6600521.7420338215, 6600571.875, 6600846.875, 6601548.311043503, 6601856.25, 6602203.705776997, 6602429.525641968, 6602559.178693391, 6603127.964635536, 6603316.623437793, 6603500.0, 6603749.8806454325, 6603754.5101015065, 6603765.739480744, 6603767.594669753, 6603790.625, 6603943.239187327, 6605600.832220147, 6606543.75, 6607467.820139323, 6608823.4375, 6612082.629238196, 6613246.875, 6614572.400873794, 6615459.375, 6615563.7452119095, 6615614.0625, 6617000.583885085, 6617714.226735076, 6617723.967346414, 6618054.81434519, 6618819.688128542, 6619215.625, 6619227.438837558, 6619695.118583643, 6619770.867560833, 6619995.772438321, 6620314.0625, 6620367.936495915, 6620801.358090468, 6620979.031273045, 6621159.375, 6621413.475941975, 6621764.526557733, 6621788.794452993, 6621825.680496959, 6621949.778511895, 6621953.125, 6622056.015231268, 6622164.092253164, 6622167.496962676, 6622675.0, 6622915.625, 6623009.860857778, 6623143.141832959, 6623176.40786082, 6623176.5625, 6623214.177638245, 6623369.523158061, 6623415.993072268, 6623859.302103462, 6623879.892210206, 6623950.459291948, 6624033.149537646, 6624294.3393509975, 6624943.172386106, 6625179.6875, 6625353.766906047, 6625399.656447054, 6625903.517334366, 6625932.886320279, 6626034.535545078, 6626385.9375, 6626458.549364489, 6626535.474179976, 6626731.768336244, 6626818.62469802, 6626889.226948804, 6627074.864350237, 6627082.181756053, 6627089.558814185, 6627526.5625, 6627623.13953825, 6627632.895842273, 6627670.3125, 6627691.746317052, 6627902.135908771, 6628116.718211636, 6628719.786835985, 6629787.5, 6629857.105116232, 6630531.25, 6631612.5, 6632271.688229001, 6633213.259440431, 6633556.182828802, 6633666.9563176185, 6633881.472899059, 6634565.49105358, 6634591.024727946, 6634624.292502254, 6634650.3470691815, 6634993.699243125, 6635204.6875, 6635674.331278929, 6635764.975285423, 6636039.0625, 6636135.9375, 6636214.317565423, 6636696.3314474905, 6637232.8125, 6637543.75, 6638052.983360068, 6638701.894444749, 6640120.545245667, 6640565.272333097, 6640984.375, 6641360.754951169, 6641701.5625, 6642117.106639157, 6642235.9375, 6642592.541607904, 6643110.286800277, 6644058.964535277, 6645595.922922877, 6646726.069659805, 6646897.357370909, 6646934.951364624, 6647533.617325617, 6654319.11852635, 6656031.918728051, 6658168.686947281, 6658837.258002808, 6659833.2882127175, 6659841.351118365, 6659848.737980235, 6659849.188865171, 6660407.08902962, 6660652.91664984, 6664006.25, 6664571.658507552, 6665395.946024086, 6666201.7386761, 6667134.375, 6671892.1875, 6672339.834670165, 6673165.625, 6679957.8125, 6683368.75, 6683415.119720161, 6683464.0625, 6686203.009929334, 6687655.039358671, 6689064.058881475, 6689642.1875, 6690853.117104713, 6691690.262586425, 6691703.619807972, 6692424.931035026, 6694606.25, 6697196.747954771, 6697384.375, 6698107.8125, 6698124.978152859, 6698199.381665019, 6698440.625, 6699463.51204825, 6699800.3323962735, 6701856.938983698, 6702199.067423807, 6704693.75, 6705181.876777931, 6705723.360094172, 6705777.855819101, 6707207.779525147, 6708617.395353539, 6709067.989368683, 6709145.3125, 6709472.744187381, 6709501.5625, 6709525.051413255, 6709654.057216915, 6710501.852698586, 6710674.742015047, 6710689.137418699, 6710976.5625, ...], [34.75728050881255, 60.043021243731594, 76.21876373665884, 57.31872636959169, 12.375290262974275, 13.970306247484745, 44.25471691496446, 60.30993866842195, 7.422314257470292, 55.894574171223496, 84.16946292262743, 63.12799747135561, 34.472360787750205, 32.073130950748705, 15.929841861865949, 69.29671175630818, 24.652805304876814, 13.456416318519857, 11.746871854965605, 8.871599156831138, 5.320060804544255, 31.845355277903053, 45.741141577081464, 49.36566879036779, 27.576315369790077, 29.3369441937759, 37.72636354910517, 113.42520042274262, 51.007692637231024, 162.36269502777924, 15.28277289017484, 36.446506365681984, 42.21876936335581, 24.04368907802162, 27.265347926629833, 114.77280846028674, 13.506275179344772, 41.50291040420244, 29.6140006531901, 82.68238655420492, 26.52903970793932, 11.67946086135777, 37.035972925971514, 7.740546948555318, 50.19319707263238, 10.6691293740477, 71.25687079701483, 20.41387997313264, 56.46428343090273, 48.93029759408264, 51.6708848756709, 52.20205240219489, 27.803839857530253, 5.79850665925842, 27.674953888275486, 22.498674928819458, 108.00012186741696, 7.4811821442826085, 142.30731034985553, 79.16371589187507, 26.452840536009663, 17.00824784132602, 14.10330599629311, 40.041561988293076, 21.265872277963293, 21.392398463188297, 18.037007868505682, 47.429185894342574, 69.55960236245323, 32.70317859462259, 17.873000094988573, 5.49048851563926, 13.666544631201457, 29.451886649779883, 13.578374199255725, 72.31588395290937, 62.340854920842226, 10.161859189192176, 14.141221065844105, 9.077897715093927, 16.662179949039675, 17.18397195200484, 33.668909077080016, 9.653935703157059, 81.72913213049027, 37.34430244187601, 21.066042711522268, 14.252152523198657, 21.18994587449594, 5.126851711126982, 33.366999160047115, 53.45562758209349, 17.309453671905235, 15.318654954237397, 11.993052743065215, 31.122813884708137, 52.70935175251867, 39.13038529802221, 5.5332938937878025, 27.787594666244782, 63.816609175773564, 12.40953100994924, 13.07990001487359, 42.5177097394285, 60.773064020637534, 12.538540660051448, 5.124884324811263, 29.591474442851272, 17.776524624344944, 66.21583864700779, 97.51810640750524, 58.133559147019106, 6.8734625565390415, 68.09705284222979, 53.41543636803823, 27.34047771066798, 27.814166198950588, 61.465115688189925, 10.742153232646373, 8.501240862769562, 147.42934359835323, 10.945865926885583, 13.918968512698186, 27.61349296774209, 140.740005927306, 30.620049649270758, 21.627577057576836, 12.087200113670077, 68.25392082183268, 44.677026760055284, 43.185499449808624, 59.63511980091163, 8.94631715270018, 27.87639250939779, 46.88515171801275, 18.44691662299937, 18.597288977593614, 5.753331063271669, 11.923797322251854, 40.48544074246157, 46.11957262669428, 22.3507496716322, 26.69850206498198, 5.396773091150229, 27.859820848650603, 88.83140395222676, 129.57983023191497, 6.639020734560345, 16.593987294551056, 19.190517387024954, 73.9867275133036, 98.26653492836157, 24.20160511754052, 41.975113132862234, 115.2466418632402, 71.12638680914415, 37.318983334635384, 9.699085346754064, 12.623038294335952, 8.453390328438944, 6.829288713498234, 20.276591246211403, 53.36696148825443, 5.173596177024704, 45.25831842684228, 12.194177387369608, 19.227968363266594, 32.003101577809716, 13.052289774296185, 11.853332555568542, 9.462998714146975, 65.27378850815103, 56.027003386857075, 12.101870429131928, 74.45431218829552, 74.93665450835672, 6.7486608783299245, 78.92939196208582, 19.6066766829425, 34.63844798758501, 99.60365178931318, 27.629616573950496, 8.479718483055148, 38.93022020825977, 64.21376861765899, 76.17405301393852, 44.422130492868305, 21.35149254116212, 12.150884690481341, 14.96528814551546, 32.23422642876534, 50.266201147758686, 65.12504702467315, 22.435436411730628, 107.54722496795935, 8.262713124068942, 15.748940698651484, 23.233918816362124, 32.64969815082942, 10.992811218009752, 12.62386053837074, 19.21072259433825, 13.635821499758263, 28.054075350548693, 90.50478263644438, 74.40426273398444, 9.016305194570261, 15.473517164721484, 91.68390428193375, 38.37531041957558, 12.521466651486424, 7.867648012994392, 12.22561829006625, 6.649430849759929, 5.94830712825754, 67.41003901139109, 10.180412016626763, 58.989656764404586, 78.00562968798597, 41.423417980258016, 25.308338902634123, 13.811139749466623, 7.266560727165524, 60.07022472091545, 10.497739500006015, 10.0699143899492, 6.804434465897073, 7.400409917669024, 8.17718583092713, 14.042752304290307, 92.47707431620881, 5.456693843208103, 39.05416756784433, 31.282542114893047, 55.060184514375976, 11.162056820060391, 47.390062434324975, 16.027150576753368, 62.7388383266228, 30.16789898656513, 41.01098587257961, 53.6767791020115, 22.10726985617108, 8.449386835153309, 33.55710855399028, 5.967638394719932, 57.71363367791475, 19.35827596721421, 13.649929216545026, 102.23263776972954, 150.68001524855237, 17.456105390257733, 46.56687581479501, 117.98651246532563, 185.72146030334878, 34.30545090271757, 11.07125550756212, 68.09474280203146, 28.89034347034891, 24.10732694975387, 5.311322641356928, 11.952752471589154, 6.638716153270117, 66.85076307941307, 9.73575131668892, 10.25629703116849, 14.077760239618586, 15.335276267623744, 7.290134013721513, 21.965346113870368, 13.957003752201304, 64.73539341399459, 8.318547457711297, 36.636674133286725, 14.267378861780596, 89.69287362323658, 25.719507899029693, 5.531637440253056, 17.927328723445374, 17.56208152413039, 35.0074295399904, 110.12840890645775, 10.652655855601878, 23.89900902217624, 27.250537058369662, 8.860923667097202, 47.298992555122034, 6.806574448600824, 40.77204740623925, 7.284575715366791, 126.1473414408934, 6.35519017379136, 16.93801690678376, 7.51013943837564, 86.1064318724448, 8.24716223283241, 5.251883813286098, 12.779244065367289, 13.908172942876792, 44.21794377023226, 62.05576096652636, 13.585226872925803, 39.75100395658224, 23.15555459050593, 46.39830717215289, 37.53603217655224, 17.748121306303883, 14.401480743554771, 124.76132503557423, 14.855666011414772, 24.55358420421193, 41.8785704655297, 59.01446934749074, 15.887777321200344, 37.54455007590947, 95.40008849922314, 59.23492744552397, 15.43743794364342, 7.293861721455527, 27.009122072794096, 26.523489379265243, 37.304941691993825, 298.1996200403016, 83.69464220933186, 10.677304350781409, 8.45534439869927, 6.196512388666576, 17.097926815316345, 23.702609633383396, 18.77779500295562, 36.24264269325287, 63.84362710568228, 16.55226970342387, 32.28811832108996, 14.115549659796436, 71.9813151816471, 43.66033144286757, 21.25159611839139, 55.15278893309112, 5.043580172012688, 42.204846380649414, 5.531788138766734, 36.4391039163522, 20.652684552108624, 16.131564937192387, 22.360409015076854, 51.405532356801636, 12.935914853106713, 97.36206770561508, 13.058120380096195, 30.917507507031445, 79.07001200491028, 171.03626353347542, 9.215840571329055, 84.19645324813838, 18.963079790569473, 26.08835113336846, 14.383853829115164, 57.97754814857306, 11.350087525434734, 42.202894652576404, 70.25464521018085, 81.41110437104226, 12.729637343775494, 28.89668041453392, 21.78788045753856, 35.8100228384581, 9.147118869527622, 118.37343291631882, 122.16649652027391, 9.442561849391915, 36.554615103697294, 41.42970657968028, 18.41075837039152, 223.3705999410558, 32.560891130584444, 68.09614724097455, 65.38523179261331, 49.361453912304746, 15.277816253317592, 48.02082196508548, 15.30794848672923, 23.330786830017153, 77.67009437281048, 69.62327420023354, 150.8655241141464, 80.00275497918028, 60.51435478902637, 7.7980927588195055, 116.23037312239332, 24.038885040897714, 14.017437620580168, 13.144684747228723, 38.07085785024869, 7.052066497475176, 24.98520660015289, 18.228394377497352, 13.068635710492801, 41.860341413588955, 17.888877064613357, 8.54284695223699, 40.7054025604953, 89.59831321085778, 5.654596980201828, 78.79356392209283, 54.520735686320435, 12.880306976007637, 71.49597233614128, 5.133441509038018, 41.05634453424471, 64.98306878705867, 78.70104208523382, 6.012018192934871, 61.211896307700826, 13.08670993844667, 63.69775874149511, 10.700101401194924, 6.281738113308045, 48.657309019250995, 24.3235901390758, 59.96139572492982, 21.23692378574806, 104.36564974636434, 59.48037123571926, 58.720362205658894, 37.44107324443698, 11.31337411415452, 54.05473934561637, 152.41444057942638, 78.23581874802956, 280.37034426843496, 15.228230311128511, 35.2251565606255, 93.2367468224952, 33.425281672582194, 16.20315453476299, 5.896320508411563, 10.925406204574218, 72.35715347305458, 18.862261787076225, 29.14702877909978, 11.603849829121517, 133.5882049963701, 7.102802786451617, 91.10841437160214, 9.19731837515446, 65.53983626627605, 38.7511889491268, 23.666713973486907, 6.18036937165157, 29.70902218505438, 14.965447126540955, 24.85890656039564, 108.19179840611781, 141.14719436034102, 23.244110528348045, 59.54871441911121, 23.969565416739385, 38.26847365605597, 49.866292521901435, 25.93533314660728, 7.518275329254359, 47.857406276966394, 7.409953638793582, 130.29622471791404, 15.87162292999599, 89.65099319029535, 9.97083510815003, 69.86400268790518, 54.50957453817796, 59.57175463355637, 5.503779488928168, 12.000487537551548, 154.51402449516016, 78.11642810723092, 63.28278801330302, 10.62796364491818, 36.76549808844182, 19.752293722748178, 45.969980903246054, 19.002942532030325, 6.395729779690488, 70.04488277563682, 73.55406055805852, 125.46150043661791, 71.80077068668699, 18.321097900195547, 6.137353343383759, 92.06908935448315, 7.334530384709254, 36.21215158556144, 53.59557046627946, 16.786210380393722, 30.16284078508802, 5.965666105504209, 5.739545969224978, 129.56217867971085, 15.968050505389343, 26.94447668740881, 58.68064352754914, 17.03506668241701, 5.8420534556931925, 177.46876397676866, 12.235975147454168, 70.4160751162766, 23.684071596073473, 31.106833454864805, 48.20171934753368, 39.008641785968855, 84.87603238692829, 68.35420571851874, 8.316922709243514, 5.904419752945261, 13.681645067275067, 47.939592422987474, 24.62700497391404, 7.120655632468808, 26.116857973117042, 6.925555041007176, 38.195155606037055, 27.0598907937722, 74.80565685479307, 67.99237491875061, 50.63287740152118, 26.15427847733943, 49.71027860434864, 52.606600299418865, 11.739964036263798, 52.75853638907816, 53.47755575400481, 32.038921090795185, 64.65973135953782, 6.01188755669647, 25.43761202153211, 15.93286425485957, 51.01398717305117, 27.756911760320197, 39.1658878645807, 95.67746919896516, 90.04899025492017, 29.99886347362427, 26.62274718957931, 38.03808528169173, 85.30904129450133, 15.22753009539112, 14.465573726108898, 17.27511522762074, 8.436114006571469, 18.614280947760072, 15.81113645351415, 15.24169006509921, 64.56355811105257, 22.336264211891145, 6.674266160431385, 19.71578724617775, 10.412544502897255, 25.95377836060962, 21.39816790248344, 33.711373418324754, 37.94445301862433, 25.715938890427324, 25.566673424833677, 47.9723045334778, 19.664096729299267, 15.428119671343543, 32.84031687402522, 33.209743972232324, 113.44699835979739, 53.66882747046042, 95.87591675779882, 78.96287442351894, 10.2833126490708, 16.011932642679863, 39.56733240277195, 16.132357159407057, 26.931345001519226, 26.219325360144385, 16.201981401995173, 5.566092464553174, 15.630484237607593, 28.91965690004407, 26.517959136061958, 11.47678078156026, 12.801009503458905, 30.965950047985263, 8.233542137321544, 23.961136683857177, 49.12156923373548, 28.257803666694855, 28.5010692253178, 119.38465625971912, 15.211038407945903, 63.07746535231526, 16.46638007937006, 18.904486768669983, 112.89317521091014, 19.859560121731654, 22.139532949042277, 116.93436107337862, 106.54782610554442, 37.17244849705157, 10.353200107950213, 72.3346034109681, 50.09273547853225, 63.29985075178484, 7.061480558911275, 45.7533674035151, 19.363815185702634, 59.49810681015465, 50.569612340357914, 85.44956259140216, 54.86755108844456, 31.85895617839189, 86.70650056327729, 20.781485304720512, 13.305528208963445, 55.472665112795546, 49.665098382907786, 70.73018311689731, 18.408493788509656, 82.63690576198361, 54.37601650806006, 83.38892686503088, 10.438331925089237, 17.021030452732152, 10.532521825265029, 15.886688116757394, 6.095437383363998, 64.23410313342507, 52.775856180959366, 68.91323249196827, 36.22607187834371, 6.755154836455105, 5.509230519674753, 65.52435694774285, 47.31776939490385, 13.990126696043086, 20.81511793661057, 63.423514038482296, 61.26765061188439, 62.319676735777016, 17.54663633265508, 6.329893636694809, 12.065010484880272, 39.255739619415436, 100.14730625306349, 8.610753597726996, 7.005705591181649, 77.19088432988671, 164.4993083253098, 7.596913336310933, 21.211931758612984, 52.1826088023242, 113.79509370462138, 13.541046069195993, 79.97629805571623, 99.5873838409964, 11.811284408518821, 38.3600187797095, 28.216412500211806, 67.11011681962708, 14.021707471313862, 10.213539533251769, 8.02300660794704, 26.84938459260207, 34.55131169764649, 7.965680058207681, 28.614923963990268, 48.996170352776495, 14.09638804770321, 10.068431460359875, 30.775104167265948, 23.871282065581955, 8.267479439851819, 5.445963482084494, 55.78183884914864, 40.70045740251018, 41.266970175260134, 77.86451547518735, 65.36922475681007, 35.46667659723244, 10.83424176469332, 17.456022396674534, 57.23956194339054, 22.40922914082664, 21.938414580602476, 33.38425763411918, 5.339214020838933, 18.50412744971794, 6.071839755327518, 120.18135423766707, 20.18511213114208, 32.58688162569964, 39.49552291805275, 17.32296941025311, 51.89993545493263, 17.6109818854872, 18.886329654241404, 8.77423494894902, 8.369207326570494, 19.876151531757156, 35.70549278394144, 13.28477864838016, 89.51156555730502, 6.0718516836418095, 77.30382128377117, 51.37564230557423, 85.41257293141558, 10.523141867245169, 22.459362948011783, 59.179910472818584, 23.375498265020347, 59.05595188541909, 39.75018247500096, 5.294120620555605, 32.461733541143495, 55.44806949532287, 35.61960928927591, 14.007333811567397, 28.536964960048728, 87.0708461178854, 64.21558431750151, 14.757534317597823, 30.09784954132062, 64.4928761934825, 60.74554113245856, 71.97865974848266, 7.809266860393541, 113.02998788500165, 34.449967103916805, 27.86522416638773, 82.56256228859307, 68.37062504692439, 21.473776583525655, 50.435452628328264, 67.79797995613208, 7.814445664507101, 27.512948730619257, 21.333254426502087, 23.098159496638537, 18.816201881151514, 86.65237628398516, 98.8750588310481, 13.233744281759783, 13.898320773022176, 55.49657052404159, 45.48796269587338, 91.37980068871374, 5.358533656943986, 13.328610421467257, 48.1390324769055, 18.58468919602053, 8.94715465095213, 29.005182408318298, 74.04735739836332, 99.31836136986729, 77.95189377346423, 53.998307808067544, 81.9743920217113, 64.80106539333804, 52.44546268793201, 22.771221401561025, 91.65684609239, 21.987986130303803, 30.06308630245915, 9.697967446348166, 41.00482044668548, 47.90626684295697, 77.13059692727373, 25.209142746942106, 104.85946432635629, 45.50595184048019, 54.4556658759776, 74.64956905291697, 10.282566488688843, 8.117062715312429, 5.803420728368729, 81.4036312123686, 84.97047895150133, 19.034291031698203, 72.2526377774623, 43.56225129597095, 25.649176382907118, 40.82948369960163, 90.4392665181627, 53.83509435121425, 14.043796825447219, 12.215365799924243, 27.884145439075443, 32.09218630798974, 7.187847572433601, 9.610677810025326, 101.33339219805703, 101.58337981233231, 17.74478795473171, 15.666537440915388, 13.522473538454754, 7.102713482422973, 17.4963629943914, 52.61949858355797, 86.52485149055417, 86.66694823704785, 60.183470632299276, 11.775793715064504, 5.243138684647047, 37.54329558777116, 42.21588536295852, 14.228631612718095, 92.87452954998992, 38.2765723832872, 82.27250462134626, 21.310822924247695, 22.527845478738772, 30.747137160266398, 36.234698200049266, 86.39117404866268, 36.92524380358281, 161.63559698181342, 39.11019671673403, 52.11004068463362, 41.45788817678193, 25.172264068091835, 25.71483923523693, 20.56490342805664, 54.7124992596147, 23.84259402219124, 25.454217385013063, 15.396580244650005, 16.75949076927464, 39.8367334362746, 21.385911940046476, 128.674806784003, 86.33965338391154, 5.7482396233533075, 52.29984657741957, 25.365972237372265, 31.171988392877882, 17.413011444801995, 68.84812826950105, 9.07679339578403, 46.563870136987916, 8.621526933987065, 11.394501542170353, 17.436073687751477, 9.441011486802939, 11.19682476151117, 31.0334477975595, 139.68765457291812, 96.21704379404629, 6.87962153430421, 8.545758815203948, 178.32740671666627, 8.726799419074608, 98.1011239936943, 12.91761664129084, 45.63844561812611, 20.67101179272474, 5.849133453650391, 24.16766194862578, 5.751480014799854, 24.808249669776018, 84.25657239872058, 39.15397989274833, 29.788616954768457, 85.73786023425336, 51.81465997618129, 34.00040727347964, 23.492386953817675, 13.039252912776954, 6.247856539376924, 68.65841905198229, 82.28361853893762, 6.928344576754311, 5.477789541101911, 33.3858217795868, 70.75383437502002, 5.416327476800588, 11.698820284581691, 17.791514412606414, 52.20247987414055, 47.031979868490296, 18.121878283905623, 7.483533479919954, 24.325212203758944, 9.394612264759484, 84.90353756263798, 82.20217486719397, 27.748326013128114, 219.93580923838144, 6.571535262493998, 38.29329429066172, 46.54850554369861, 63.70643945003948, 62.7036224280407, 17.243926146725336, 58.13931310328665, 13.915674245931836, 24.293981874114714, 38.9546181607742, 101.37388948794289, 17.694408215128398, 121.01995669397897, 15.5076691812895, 79.21627606286994, 21.190873463770828, 69.27427827334607, 83.17164706837717, 139.90632975980267, 6.925225099750191, 11.024312363935238, 24.671480946130526, 62.03908516069828, 158.74068191637346, 14.87073188103929, 5.115664174585969, 57.27004822889152, 11.049286647723667, 30.510980147783588, 63.694742944173264, 75.45463411434126, 58.6826485400392, 75.41147066877332, 16.01181616184353, 71.32013340340622, 118.14319195923439, 75.42195928041338, 26.008850089536775, 77.53038585243694, 7.689644338505787, 39.25866130472084, 36.02870025803651, 31.836503826877525, 88.34682717685281, 27.021529133628007, 100.46029320342605, 75.45333873921942, 25.501109024654898, 22.600838403607494, 5.994388152529491, 50.36652496339615, 17.16567711613567, 7.281676672476523, 26.808573222496726, 119.84015302423543, 9.969031354632387, 27.336416994335742, 14.09293420158647, 17.1286453708604, 92.29007158791336, 16.22545804565718, 6.007623498883553, 19.520209077065044, 10.816944119252467, 59.39184855950417, 5.284446473717761, 12.28697829447504, 24.02860476128661, 67.77893471957879, 69.8131969803846, 24.51678527982085, 46.596340108568974, 95.65804571224764, 72.43861964245626, 13.305950936613396, 81.78037099566109, 26.440193078812502, 17.497273614985417, 28.453695540062792, 62.21680280914976, 28.369686673982844, 22.984942100181737, 12.00052232856402, 14.685005042302912, 91.85345358433746, 171.27152017569782, 47.09115890852053, 40.7791180181911, 30.343022229203946, 272.21617625334505, 37.57653765819857, 63.535978862134925, 16.380337550249646, 79.9664079083062, 28.383894688095836, 62.08901005827121, 18.025131010884586, 27.08194567862295, 24.152560809008463, 27.88858952053491, 15.797711023865775, 26.29665562478092, 55.74341814353428, 12.826054787626802, 49.300203286128394, 15.141161877175229, 6.9650723207784, 31.10629039113671, 100.40107665743102, 21.65413586512285, 34.03378034838173, ...])
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);
([3742281.25, 3841076.5625, 3842689.0625, 3850396.225977746, 3850442.8617954263, 3859218.4695062307, 3869695.5912366663, 3871373.4375, 3872574.470445902, 3886861.588010299, 3887576.5625, 3893359.375, 3894129.154408936, 3946407.8125, 3957814.299695451, 3980312.5, 4000419.1748095015, 4010926.663119367, 4027265.988025546, 4041305.6510792063, 4054830.597852648, 4064184.5554089407, 4067775.0, 4069543.75, 4073409.699294325, 4073769.526664126, 4080938.075121898, 4081221.521358434, 4155718.75, 4157049.281509615, 4168650.837884007, 4174223.0092066503, 4180532.5370363607, 4180605.972592883, 4180606.18297079, 4181140.0764553705, 4182043.77873015, 4182046.875, 4182484.375, 4192362.362235218, 4218896.765273707, 4224967.513971303, 4242657.311237734, 4287730.051826863, 4294387.5, 4306491.872871427, 4309171.875, 4309396.259551121, 4309464.0625, 4309593.75, 4310968.5587885715, 4310969.668600751, 4311115.587500625, 4312352.913659848, 4312368.705556818, 4312476.157722978, 4312602.707440947, 4312738.711936766, 4313070.3125, 4313235.9375, 4313328.010692734, 4313842.641296687, 4313849.761214485, 4314097.861905212, 4314162.037955434, 4314388.552345522, 4314886.566146589, 4315346.875, 4315470.530096403, 4315690.625, 4315699.040052259, 4315741.277526843, 4316215.244788431, 4316303.125, 4316863.652116689, 4317685.9375, 4323207.567090118, 4334410.217131453, 4334527.897897256, 4342504.371661661, 4348734.763417732, 4352475.369382235, 4354431.494746405, 4355550.358307899, 4355587.372586394, 4356040.625, 4356547.073101623, 4356832.619065465, 4356985.406563573, 4357010.76590341, 4357220.3125, 4357280.684375141, 4357364.333377612, 4357412.59555053, 4357428.616051975, 4358407.8125, 4358946.861840404, 4359003.125, 4359100.004395225, 4360111.445113283, 4360248.4375, 4360841.314863519, 4361146.282595023, 4361844.750395852, 4362796.875, 4363346.059852322, 4364362.235264393, 4364719.645814049, 4365094.206355314, 4388860.5968857715, 4430146.802933144, 4452007.3007315025, 4455442.714395244, 4456473.4375, 4457038.571117539, 4463174.937173746, 4463624.963053664, 4464317.1875, 4501890.363488401, 4504230.072509468, 4507541.446335484, 4514157.692963202, 4529316.890597198, 4537653.654750701, 4568240.701625599, 4568481.604233804, 4569010.450875823, 4572138.037863508, 4572703.7116417885, 4573120.3125, 4573880.472163372, 4574175.0, 4574319.819033519, 4575009.341375994, 4576217.598691668, 4576219.4412121875, 4576772.588262243, 4576836.645237029, 4576902.018375514, 4577490.279334735, 4577773.4375, 4577981.441467073, 4578288.962849595, 4579628.080435213, 4579832.777992932, 4579899.365070721, 4579985.135128091, 4580771.217745239, 4581241.00009942, 4583067.308411301, 4615531.15665781, 4615853.990519977, 4656766.391449449, 4786753.390727147, 4978414.825926727, 4980322.737093254, 5706007.8125, 5779276.9675266, 5812459.476536679, 5848022.177664558, 5849812.820805383, 5852077.49374393, 5852319.075949933, 5911459.725099966, 5913341.634440234, 5913349.027192822, 5913499.238392245, 5913817.143671814, 5913855.899426698, 5947945.731919545, 5950159.526636956, 5951075.839347472, 5954626.478991461, 5958127.107555602, 5960261.867404976, 5963738.088527461, 5982373.362680895, 5982718.694987278, 5982720.988201848, 5984963.174169677, 6000563.350609411, 6003299.953095974, 6003528.473207436, 6004125.0, 6005263.510165386, 6006062.5, 6006768.75, 6010410.423186357, 6014629.331720389, 6030157.81872467, 6031096.719144997, 6032451.5625, 6032595.3125, 6036872.318597627, 6107367.1875, 6108707.767098166, 6109512.084846616, 6109685.59593328, 6109698.311521328, 6109929.599449044, 6110050.784388985, 6110157.048594847, 6110341.796839984, 6110401.53826671, 6110506.25, 6110879.293617796, 6110908.977257851, 6111023.57041097, 6111323.1221843995, 6111395.139673504, 6111411.677347914, 6111811.61381643, 6111849.042158332, 6111863.462918776, 6111865.726651731, 6112161.879800221, 6112252.420711906, 6112680.25866146, 6112740.625, 6112796.726616268, 6112938.875382202, 6113079.355553011, 6113252.087182034, 6113517.1875, 6113921.4307583785, 6114017.9484035, 6114540.826606573, 6114821.277088915, 6115901.349747423, 6116483.423073937, 6122779.6875, 6122963.943778385, 6125692.1875, 6147003.125, 6149023.411171405, 6149031.271865481, 6149160.9375, 6152319.008380422, 6153149.270237985, 6153770.3125, 6153789.0625, 6154298.4375, 6156207.371939795, 6158815.920688178, 6159264.042563982, 6172628.443584199, 6192010.9375, 6192548.025993502, 6194240.239146353, 6197239.206087264, 6197369.04536971, 6198794.283285669, 6201417.1875, 6203776.5625, 6204637.5, 6206689.781322557, 6219426.526081494, 6226229.6875, 6255031.25, 6255687.666967655, 6256633.453996913, 6260590.7161780335, 6262060.278549962, 6264170.3125, 6264637.9423918985, 6267014.985435143, 6288824.753291793, 6290051.662110813, 6292319.355050155, 6293530.796072256, 6302079.402771176, 6312371.875, 6405340.684970619, 6406786.373450038, 6413427.936128023, 6419281.25, 6422736.675578407, 6424221.845229763, 6424934.986265929, 6430058.745595178, 6430502.374406298, 6430600.0, 6430815.364307517, 6431040.763367477, 6431222.072587474, 6433090.010727836, 6433414.0625, 6438583.024464117, 6439371.606606542, 6439869.336216109, 6440241.946846246, 6440952.228597408, 6441206.69081912, 6442420.047546484, 6443535.9375, 6443559.299714291, 6444234.61399295, 6444457.099916707, 6444471.630292093, 6444734.158055882, 6444809.375, 6444985.529482277, 6445628.125, 6446088.7144313175, 6446243.75, 6452701.235728923, 6452883.394755547, 6452905.121952698, 6453716.177622506, 6454017.164794182, 6454191.408209777, 6454938.870808518, 6455118.75, 6455665.852927133, 6455690.571026504, 6455784.375, 6455815.526418703, 6456011.061800009, 6456070.930141667, 6456315.543427361, 6456354.577441093, 6456363.5087459525, 6456399.900682473, 6456784.375, 6456818.441378654, 6456847.181064744, 6456854.106761772, 6456906.326062732, 6456973.133722553, 6457082.411038921, 6457463.792303633, 6457595.3125, 6457784.172014771, 6457968.48641139, 6458012.264997029, 6458095.3125, 6458395.3125, 6458440.614120083, 6458446.043769075, 6458450.12048404, 6458456.25, 6458542.160841935, 6458550.0, 6458561.126361491, 6458565.90572359, 6458583.116918147, 6458709.375, 6458814.976089762, 6458900.467264279, 6458949.399167623, 6458959.435929933, 6458961.455378502, 6459013.739977914, 6459106.110092688, 6459125.0, 6459174.202507632, 6459254.550836273, 6459262.345572151, 6459273.4375, 6459284.512761313, 6459291.812064162, 6459309.072252802, 6459407.769939635, 6459424.266760403, 6459514.0625, 6459514.274141043, 6459627.278063056, 6459637.273706816, 6459640.295961078, 6459659.472413173, 6459682.941100303, 6459683.879413091, 6459695.3125, 6459717.873339803, 6459726.785609205, 6459760.626609958, 6459773.4375, 6459779.6875, 6459803.762161967, 6459811.755792606, 6459906.25, 6459912.592928621, 6459926.228896374, 6459945.3125, 6459956.544438144, 6459993.75, 6459998.4375, 6460028.125, 6460028.633420315, 6460069.0788693875, 6460074.030380226, 6460123.1719175605, 6460129.119916432, 6460129.6875, 6460140.354303274, 6460146.045128943, 6460166.283317989, 6460200.965741668, 6460215.657053247, 6460215.8333528275, 6460256.705085795, 6460267.615941037, 6460290.717684924, 6460297.585477096, 6460363.318648493, 6460419.954480338, 6460422.766257318, 6460489.0625, 6460492.324525027, 6460545.3125, 6460595.3125, 6460603.125, 6460639.860171577, 6460643.75, 6460822.847721441, 6460823.4375, 6460849.7080491055, 6460889.176721604, 6460895.3125, 6460945.056060905, 6460989.0625, 6460994.938055399, 6461003.125, 6461035.061115243, 6461051.5625, 6461096.875, 6461096.990623171, 6461100.0, 6461203.125, 6461256.25, 6461283.126803023, 6461312.573244347, 6461382.754102134, 6461398.4375, 6461526.5625, 6461608.108315525, 6461611.991594532, 6461645.1791006485, 6461648.4375, 6461656.779811485, 6461657.289360027, 6461683.097163626, 6461705.480649722, 6461826.491078326, 6461890.625, 6461924.8370500095, 6461973.352191168, 6462010.9375, 6462070.755102411, 6462077.405389721, 6462157.1736105485, 6462257.818766193, 6462354.469569704, 6462397.333818243, 6462404.453948951, 6462521.917584789, 6462582.8125, 6462597.299000506, 6462726.889482139, 6462729.6875, 6463112.353725825, 6463132.571319136, 6463144.981340191, 6463307.2444918305, 6463324.277721669, 6463488.615383673, 6463639.0625, 6463667.857905095, 6463910.835983718, 6464014.0625, 6464094.394193367, 6464108.756114009, 6464155.182290494, 6464192.1875, 6464250.0, 6464267.1875, 6464523.092384338, 6464778.390452036, 6466621.691675598, 6467793.641765642, 6468867.957990715, 6470199.391328196, 6477437.5, 6480295.3125, 6480546.529989837, 6480859.375, 6481020.141416952, 6482319.210684138, 6482501.436159337, 6483624.190478756, 6483690.445363745, 6483881.25, 6483970.724767388, 6484070.049035001, 6484198.734187286, 6484497.378149925, 6484626.564477175, 6484776.3102604095, 6484776.477205999, 6484859.74351422, 6485033.271214511, 6485111.309837194, 6485721.406173165, 6485786.547061994, 6485832.741389003, 6485959.348780259, 6485987.516467695, 6486102.2851920845, 6486247.6227106005, 6486251.9926036345, 6486409.375, 6486481.306946098, 6486494.901798415, 6486501.187398667, 6486650.0, 6486844.019614787, 6486868.746970923, 6487048.3026117515, 6487067.948392882, 6487134.375, 6487190.546335058, 6487201.5625, 6487210.390406121, 6487457.4085769085, 6487460.804935353, 6487494.575941377, 6487906.25, 6487926.921810328, 6488123.4375, 6488343.75, 6488396.875, 6488767.176158664, 6488861.73379858, 6488918.571501935, 6488951.800358803, 6488979.20502026, 6489058.13740072, 6489071.024135161, 6489275.176878658, 6489296.875, 6489321.875, 6489353.020864302, 6489620.303011623, 6489808.662830295, 6489857.885570171, 6490237.36926561, 6490323.9393247925, 6490376.834961837, 6490386.653224677, 6490495.523365727, 6490550.076588067, 6490636.383159679, 6490754.268063899, 6490899.53593568, 6490936.801242986, 6490979.176109241, 6491258.259661577, 6491278.13229489, 6491503.492148776, 6491512.997647366, 6491631.089706529, 6491736.682138019, 6491871.875, 6492015.6882172795, 6492117.309566932, 6492187.5, 6492396.875, 6492482.8125, 6492628.125, 6492681.25, 6492875.0, 6493258.758078389, 6493673.541467762, 6494587.834820894, 6494673.392873543, 6495085.15779378, 6495202.763910185, 6498714.358069682, 6498727.224433218, 6500100.169733669, 6501341.535203816, 6501903.014609517, 6501998.649908883, 6502202.421403444, 6506471.949422285, 6506756.148344878, 6507224.075543885, 6507564.0625, 6508121.3121934105, 6509427.162837192, 6509653.125, 6509804.842795816, 6509851.5625, 6509976.912274905, 6510196.069393747, 6510696.551244359, 6510910.512923041, 6511518.312448865, 6511668.177664417, 6511684.274632478, 6511711.029180783, 6511735.3782114405, 6511768.358337127, 6511777.517688033, 6511893.837472328, 6512020.079339214, 6512181.080646118, 6512301.62296847, 6512390.222630272, 6512481.25, 6512540.83655026, 6512601.2506338665, 6512607.8125, 6512662.5, 6512855.346489274, 6512888.554991227, 6512982.8125, 6513107.573296679, 6513423.4375, 6513443.245874698, 6513577.757147306, 6513807.8125, 6513845.3125, 6514602.634132298, 6514829.651674432, 6515701.494519731, 6515706.477686246, 6518236.007770894, 6522190.000545659, 6525744.932608631, 6526420.3125, 6526426.402401696, 6526481.208022063, 6528994.811089937, 6530093.069170146, 6530240.619815753, 6530413.788294725, 6530436.6807586, 6530441.648464145, 6530514.885558615, 6531593.75, 6531698.986198892, 6533009.855625221, 6533416.151933203, 6533595.484018867, 6533634.30014241, 6533759.941529293, 6534119.853089697, 6534121.875, 6535668.837887712, 6535778.107480196, 6536231.734404961, 6536956.25, 6536965.625, 6537551.139168921, 6539628.125, 6540156.25, 6540398.834837879, 6544441.5531052565, 6544731.24001993, 6544856.955758795, 6545330.985761278, 6545668.074172321, 6545757.278450354, 6546207.1959001, 6546323.270625797, 6546435.277024414, 6546576.5625, 6546596.875, 6546598.1965730665, 6546652.322072064, 6546969.356586175, 6546985.646878443, 6547251.526210174, 6547401.189067756, 6547808.656277563, 6547840.625, 6547987.5, 6548023.4375, 6548639.0625, 6549267.1875, 6549612.303770775, 6550105.220771441, 6550249.937724004, 6550257.399682257, 6550447.98101129, 6550845.3125, 6551032.733268545, 6551061.842933424, 6551126.404680911, 6551345.3125, 6551404.0455591455, 6551429.6875, 6551468.75, 6551561.447728393, 6551821.875, 6551852.188977371, 6552408.860288487, 6552464.883334382, 6552493.903052968, 6552496.19604256, 6552793.75, 6552988.547362627, 6553029.4378973525, 6553215.467297775, 6553264.0625, 6553276.820964291, 6553460.9375, 6553529.262922143, 6553610.634810602, 6553678.125, 6553857.711790483, 6554029.6875, 6554048.4375, 6554121.972890074, 6554147.791882208, 6554912.5, 6554932.8125, 6555016.918733177, 6555075.824436067, 6555514.064795549, 6556403.125, 6558042.138379851, 6558705.59841443, 6558931.629595125, 6559731.25, 6560392.1875, 6560723.97334637, 6560799.504775758, 6561059.522809162, 6562421.102949192, 6563028.125, 6564098.867687523, 6566716.625818055, 6566900.0, 6567628.125, 6567722.423497622, 6567952.53546125, 6568255.73382552, 6568649.250463956, 6568781.688582923, 6568913.717935686, 6568960.251136759, 6568997.903448407, 6568999.696447897, 6569281.024202175, 6569301.5625, 6569604.470213731, 6569620.78941108, 6570412.000936063, 6570529.566825911, 6570905.398932521, 6571201.070196165, 6571573.894750934, 6571678.125, 6571960.9375, 6572042.1875, 6572159.375, 6572331.25, 6572441.647690703, 6572734.375, 6573013.681742416, 6573135.9375, 6573462.048219088, 6573507.8125, 6573551.966379349, 6574157.780666321, 6574466.274404873, 6575309.375, 6575820.118695556, 6576012.326741388, 6576262.406679953, 6576345.3125, 6576562.5, 6576593.132455754, 6577038.727572715, 6577057.668759819, 6577495.3125, 6577509.375, 6577691.926351361, 6577728.125, 6577750.509836568, 6578675.923849565, 6578701.251615551, 6578763.340048512, 6579350.678677193, 6580760.644777897, 6580814.662291387, 6580815.5917887, 6581323.4375, 6581420.559199896, 6581664.3752964055, 6582936.619089355, 6585001.5625, 6586004.731070302, 6586639.2405472575, 6587932.382687584, 6592042.115733991, 6592678.5449923845, 6594095.3125, 6595007.612387174, 6595867.074652555, 6596185.9375, 6596231.628505615, 6596240.55314591, 6597727.398278984, 6597751.5625, 6598274.79948984, 6598739.085131996, 6599112.070675889, 6599435.750970738, 6599754.169031346, 6600202.722828163, 6600509.375, 6600521.7420338215, 6600571.875, 6600846.875, 6601548.311043503, 6601856.25, 6602203.705776997, 6602429.525641968, 6602559.178693391, 6603127.964635536, 6603316.623437793, 6603500.0, 6603749.8806454325, 6603754.5101015065, 6603765.739480744, 6603767.594669753, 6603790.625, 6603943.239187327, 6605600.832220147, 6606543.75, 6607467.820139323, 6608823.4375, 6612082.629238196, 6613246.875, 6614572.400873794, 6615459.375, 6615563.7452119095, 6615614.0625, 6617000.583885085, 6617714.226735076, 6617723.967346414, 6618054.81434519, 6618819.688128542, 6619215.625, 6619227.438837558, 6619695.118583643, 6619770.867560833, 6619995.772438321, 6620314.0625, 6620367.936495915, 6620801.358090468, 6620979.031273045, 6621159.375, 6621413.475941975, 6621764.526557733, 6621788.794452993, 6621825.680496959, 6621949.778511895, 6621953.125, 6622056.015231268, 6622164.092253164, 6622167.496962676, 6622675.0, 6622915.625, 6623009.860857778, 6623143.141832959, 6623176.40786082, 6623176.5625, 6623214.177638245, 6623369.523158061, 6623415.993072268, 6623859.302103462, 6623879.892210206, 6623950.459291948, 6624033.149537646, 6624294.3393509975, 6624943.172386106, 6625179.6875, 6625353.766906047, 6625399.656447054, 6625903.517334366, 6625932.886320279, 6626034.535545078, 6626385.9375, 6626458.549364489, 6626535.474179976, 6626731.768336244, 6626818.62469802, 6626889.226948804, 6627074.864350237, 6627082.181756053, 6627089.558814185, 6627526.5625, 6627623.13953825, 6627632.895842273, 6627670.3125, 6627691.746317052, 6627902.135908771, 6628116.718211636, 6628719.786835985, 6629787.5, 6629857.105116232, 6630531.25, 6631612.5, 6632271.688229001, 6633213.259440431, 6633556.182828802, 6633666.9563176185, 6633881.472899059, 6634565.49105358, 6634591.024727946, 6634624.292502254, 6634650.3470691815, 6634993.699243125, 6635204.6875, 6635674.331278929, 6635764.975285423, 6636039.0625, 6636135.9375, 6636214.317565423, 6636696.3314474905, 6637232.8125, 6637543.75, 6638052.983360068, 6638701.894444749, 6640120.545245667, 6640565.272333097, 6640984.375, 6641360.754951169, 6641701.5625, 6642117.106639157, 6642235.9375, 6642592.541607904, 6643110.286800277, 6644058.964535277, 6645595.922922877, 6646726.069659805, 6646897.357370909, 6646934.951364624, 6647533.617325617, 6654319.11852635, 6656031.918728051, 6658168.686947281, 6658837.258002808, 6659833.2882127175, 6659841.351118365, 6659848.737980235, 6659849.188865171, 6660407.08902962, 6660652.91664984, 6664006.25, 6664571.658507552, 6665395.946024086, 6666201.7386761, 6667134.375, 6671892.1875, 6672339.834670165, 6673165.625, 6679957.8125, 6683368.75, 6683415.119720161, 6683464.0625, 6686203.009929334, 6687655.039358671, 6689064.058881475, 6689642.1875, 6690853.117104713, 6691690.262586425, 6691703.619807972, 6692424.931035026, 6694606.25, 6697196.747954771, 6697384.375, 6698107.8125, 6698124.978152859, 6698199.381665019, 6698440.625, 6699463.51204825, 6699800.3323962735, 6701856.938983698, 6702199.067423807, 6704693.75, 6705181.876777931, 6705723.360094172, 6705777.855819101, 6707207.779525147, 6708617.395353539, 6709067.989368683, 6709145.3125, 6709472.744187381, 6709501.5625, 6709525.051413255, 6709654.057216915, 6710501.852698586, 6710674.742015047, 6710689.137418699, 6710976.5625, ...], [34.75728050881255, 60.043021243731594, 76.21876373665884, 57.31872636959169, 12.375290262974275, 13.970306247484745, 44.25471691496446, 60.30993866842195, 7.422314257470292, 55.894574171223496, 84.16946292262743, 63.12799747135561, 34.472360787750205, 32.073130950748705, 15.929841861865949, 69.29671175630818, 24.652805304876814, 13.456416318519857, 11.746871854965605, 8.871599156831138, 5.320060804544255, 31.845355277903053, 45.741141577081464, 49.36566879036779, 27.576315369790077, 29.3369441937759, 37.72636354910517, 113.42520042274262, 51.007692637231024, 162.36269502777924, 15.28277289017484, 36.446506365681984, 42.21876936335581, 24.04368907802162, 27.265347926629833, 114.77280846028674, 13.506275179344772, 41.50291040420244, 29.6140006531901, 82.68238655420492, 26.52903970793932, 11.67946086135777, 37.035972925971514, 7.740546948555318, 50.19319707263238, 10.6691293740477, 71.25687079701483, 20.41387997313264, 56.46428343090273, 48.93029759408264, 51.6708848756709, 52.20205240219489, 27.803839857530253, 5.79850665925842, 27.674953888275486, 22.498674928819458, 108.00012186741696, 7.4811821442826085, 142.30731034985553, 79.16371589187507, 26.452840536009663, 17.00824784132602, 14.10330599629311, 40.041561988293076, 21.265872277963293, 21.392398463188297, 18.037007868505682, 47.429185894342574, 69.55960236245323, 32.70317859462259, 17.873000094988573, 5.49048851563926, 13.666544631201457, 29.451886649779883, 13.578374199255725, 72.31588395290937, 62.340854920842226, 10.161859189192176, 14.141221065844105, 9.077897715093927, 16.662179949039675, 17.18397195200484, 33.668909077080016, 9.653935703157059, 81.72913213049027, 37.34430244187601, 21.066042711522268, 14.252152523198657, 21.18994587449594, 5.126851711126982, 33.366999160047115, 53.45562758209349, 17.309453671905235, 15.318654954237397, 11.993052743065215, 31.122813884708137, 52.70935175251867, 39.13038529802221, 5.5332938937878025, 27.787594666244782, 63.816609175773564, 12.40953100994924, 13.07990001487359, 42.5177097394285, 60.773064020637534, 12.538540660051448, 5.124884324811263, 29.591474442851272, 17.776524624344944, 66.21583864700779, 97.51810640750524, 58.133559147019106, 6.8734625565390415, 68.09705284222979, 53.41543636803823, 27.34047771066798, 27.814166198950588, 61.465115688189925, 10.742153232646373, 8.501240862769562, 147.42934359835323, 10.945865926885583, 13.918968512698186, 27.61349296774209, 140.740005927306, 30.620049649270758, 21.627577057576836, 12.087200113670077, 68.25392082183268, 44.677026760055284, 43.185499449808624, 59.63511980091163, 8.94631715270018, 27.87639250939779, 46.88515171801275, 18.44691662299937, 18.597288977593614, 5.753331063271669, 11.923797322251854, 40.48544074246157, 46.11957262669428, 22.3507496716322, 26.69850206498198, 5.396773091150229, 27.859820848650603, 88.83140395222676, 129.57983023191497, 6.639020734560345, 16.593987294551056, 19.190517387024954, 73.9867275133036, 98.26653492836157, 24.20160511754052, 41.975113132862234, 115.2466418632402, 71.12638680914415, 37.318983334635384, 9.699085346754064, 12.623038294335952, 8.453390328438944, 6.829288713498234, 20.276591246211403, 53.36696148825443, 5.173596177024704, 45.25831842684228, 12.194177387369608, 19.227968363266594, 32.003101577809716, 13.052289774296185, 11.853332555568542, 9.462998714146975, 65.27378850815103, 56.027003386857075, 12.101870429131928, 74.45431218829552, 74.93665450835672, 6.7486608783299245, 78.92939196208582, 19.6066766829425, 34.63844798758501, 99.60365178931318, 27.629616573950496, 8.479718483055148, 38.93022020825977, 64.21376861765899, 76.17405301393852, 44.422130492868305, 21.35149254116212, 12.150884690481341, 14.96528814551546, 32.23422642876534, 50.266201147758686, 65.12504702467315, 22.435436411730628, 107.54722496795935, 8.262713124068942, 15.748940698651484, 23.233918816362124, 32.64969815082942, 10.992811218009752, 12.62386053837074, 19.21072259433825, 13.635821499758263, 28.054075350548693, 90.50478263644438, 74.40426273398444, 9.016305194570261, 15.473517164721484, 91.68390428193375, 38.37531041957558, 12.521466651486424, 7.867648012994392, 12.22561829006625, 6.649430849759929, 5.94830712825754, 67.41003901139109, 10.180412016626763, 58.989656764404586, 78.00562968798597, 41.423417980258016, 25.308338902634123, 13.811139749466623, 7.266560727165524, 60.07022472091545, 10.497739500006015, 10.0699143899492, 6.804434465897073, 7.400409917669024, 8.17718583092713, 14.042752304290307, 92.47707431620881, 5.456693843208103, 39.05416756784433, 31.282542114893047, 55.060184514375976, 11.162056820060391, 47.390062434324975, 16.027150576753368, 62.7388383266228, 30.16789898656513, 41.01098587257961, 53.6767791020115, 22.10726985617108, 8.449386835153309, 33.55710855399028, 5.967638394719932, 57.71363367791475, 19.35827596721421, 13.649929216545026, 102.23263776972954, 150.68001524855237, 17.456105390257733, 46.56687581479501, 117.98651246532563, 185.72146030334878, 34.30545090271757, 11.07125550756212, 68.09474280203146, 28.89034347034891, 24.10732694975387, 5.311322641356928, 11.952752471589154, 6.638716153270117, 66.85076307941307, 9.73575131668892, 10.25629703116849, 14.077760239618586, 15.335276267623744, 7.290134013721513, 21.965346113870368, 13.957003752201304, 64.73539341399459, 8.318547457711297, 36.636674133286725, 14.267378861780596, 89.69287362323658, 25.719507899029693, 5.531637440253056, 17.927328723445374, 17.56208152413039, 35.0074295399904, 110.12840890645775, 10.652655855601878, 23.89900902217624, 27.250537058369662, 8.860923667097202, 47.298992555122034, 6.806574448600824, 40.77204740623925, 7.284575715366791, 126.1473414408934, 6.35519017379136, 16.93801690678376, 7.51013943837564, 86.1064318724448, 8.24716223283241, 5.251883813286098, 12.779244065367289, 13.908172942876792, 44.21794377023226, 62.05576096652636, 13.585226872925803, 39.75100395658224, 23.15555459050593, 46.39830717215289, 37.53603217655224, 17.748121306303883, 14.401480743554771, 124.76132503557423, 14.855666011414772, 24.55358420421193, 41.8785704655297, 59.01446934749074, 15.887777321200344, 37.54455007590947, 95.40008849922314, 59.23492744552397, 15.43743794364342, 7.293861721455527, 27.009122072794096, 26.523489379265243, 37.304941691993825, 298.1996200403016, 83.69464220933186, 10.677304350781409, 8.45534439869927, 6.196512388666576, 17.097926815316345, 23.702609633383396, 18.77779500295562, 36.24264269325287, 63.84362710568228, 16.55226970342387, 32.28811832108996, 14.115549659796436, 71.9813151816471, 43.66033144286757, 21.25159611839139, 55.15278893309112, 5.043580172012688, 42.204846380649414, 5.531788138766734, 36.4391039163522, 20.652684552108624, 16.131564937192387, 22.360409015076854, 51.405532356801636, 12.935914853106713, 97.36206770561508, 13.058120380096195, 30.917507507031445, 79.07001200491028, 171.03626353347542, 9.215840571329055, 84.19645324813838, 18.963079790569473, 26.08835113336846, 14.383853829115164, 57.97754814857306, 11.350087525434734, 42.202894652576404, 70.25464521018085, 81.41110437104226, 12.729637343775494, 28.89668041453392, 21.78788045753856, 35.8100228384581, 9.147118869527622, 118.37343291631882, 122.16649652027391, 9.442561849391915, 36.554615103697294, 41.42970657968028, 18.41075837039152, 223.3705999410558, 32.560891130584444, 68.09614724097455, 65.38523179261331, 49.361453912304746, 15.277816253317592, 48.02082196508548, 15.30794848672923, 23.330786830017153, 77.67009437281048, 69.62327420023354, 150.8655241141464, 80.00275497918028, 60.51435478902637, 7.7980927588195055, 116.23037312239332, 24.038885040897714, 14.017437620580168, 13.144684747228723, 38.07085785024869, 7.052066497475176, 24.98520660015289, 18.228394377497352, 13.068635710492801, 41.860341413588955, 17.888877064613357, 8.54284695223699, 40.7054025604953, 89.59831321085778, 5.654596980201828, 78.79356392209283, 54.520735686320435, 12.880306976007637, 71.49597233614128, 5.133441509038018, 41.05634453424471, 64.98306878705867, 78.70104208523382, 6.012018192934871, 61.211896307700826, 13.08670993844667, 63.69775874149511, 10.700101401194924, 6.281738113308045, 48.657309019250995, 24.3235901390758, 59.96139572492982, 21.23692378574806, 104.36564974636434, 59.48037123571926, 58.720362205658894, 37.44107324443698, 11.31337411415452, 54.05473934561637, 152.41444057942638, 78.23581874802956, 280.37034426843496, 15.228230311128511, 35.2251565606255, 93.2367468224952, 33.425281672582194, 16.20315453476299, 5.896320508411563, 10.925406204574218, 72.35715347305458, 18.862261787076225, 29.14702877909978, 11.603849829121517, 133.5882049963701, 7.102802786451617, 91.10841437160214, 9.19731837515446, 65.53983626627605, 38.7511889491268, 23.666713973486907, 6.18036937165157, 29.70902218505438, 14.965447126540955, 24.85890656039564, 108.19179840611781, 141.14719436034102, 23.244110528348045, 59.54871441911121, 23.969565416739385, 38.26847365605597, 49.866292521901435, 25.93533314660728, 7.518275329254359, 47.857406276966394, 7.409953638793582, 130.29622471791404, 15.87162292999599, 89.65099319029535, 9.97083510815003, 69.86400268790518, 54.50957453817796, 59.57175463355637, 5.503779488928168, 12.000487537551548, 154.51402449516016, 78.11642810723092, 63.28278801330302, 10.62796364491818, 36.76549808844182, 19.752293722748178, 45.969980903246054, 19.002942532030325, 6.395729779690488, 70.04488277563682, 73.55406055805852, 125.46150043661791, 71.80077068668699, 18.321097900195547, 6.137353343383759, 92.06908935448315, 7.334530384709254, 36.21215158556144, 53.59557046627946, 16.786210380393722, 30.16284078508802, 5.965666105504209, 5.739545969224978, 129.56217867971085, 15.968050505389343, 26.94447668740881, 58.68064352754914, 17.03506668241701, 5.8420534556931925, 177.46876397676866, 12.235975147454168, 70.4160751162766, 23.684071596073473, 31.106833454864805, 48.20171934753368, 39.008641785968855, 84.87603238692829, 68.35420571851874, 8.316922709243514, 5.904419752945261, 13.681645067275067, 47.939592422987474, 24.62700497391404, 7.120655632468808, 26.116857973117042, 6.925555041007176, 38.195155606037055, 27.0598907937722, 74.80565685479307, 67.99237491875061, 50.63287740152118, 26.15427847733943, 49.71027860434864, 52.606600299418865, 11.739964036263798, 52.75853638907816, 53.47755575400481, 32.038921090795185, 64.65973135953782, 6.01188755669647, 25.43761202153211, 15.93286425485957, 51.01398717305117, 27.756911760320197, 39.1658878645807, 95.67746919896516, 90.04899025492017, 29.99886347362427, 26.62274718957931, 38.03808528169173, 85.30904129450133, 15.22753009539112, 14.465573726108898, 17.27511522762074, 8.436114006571469, 18.614280947760072, 15.81113645351415, 15.24169006509921, 64.56355811105257, 22.336264211891145, 6.674266160431385, 19.71578724617775, 10.412544502897255, 25.95377836060962, 21.39816790248344, 33.711373418324754, 37.94445301862433, 25.715938890427324, 25.566673424833677, 47.9723045334778, 19.664096729299267, 15.428119671343543, 32.84031687402522, 33.209743972232324, 113.44699835979739, 53.66882747046042, 95.87591675779882, 78.96287442351894, 10.2833126490708, 16.011932642679863, 39.56733240277195, 16.132357159407057, 26.931345001519226, 26.219325360144385, 16.201981401995173, 5.566092464553174, 15.630484237607593, 28.91965690004407, 26.517959136061958, 11.47678078156026, 12.801009503458905, 30.965950047985263, 8.233542137321544, 23.961136683857177, 49.12156923373548, 28.257803666694855, 28.5010692253178, 119.38465625971912, 15.211038407945903, 63.07746535231526, 16.46638007937006, 18.904486768669983, 112.89317521091014, 19.859560121731654, 22.139532949042277, 116.93436107337862, 106.54782610554442, 37.17244849705157, 10.353200107950213, 72.3346034109681, 50.09273547853225, 63.29985075178484, 7.061480558911275, 45.7533674035151, 19.363815185702634, 59.49810681015465, 50.569612340357914, 85.44956259140216, 54.86755108844456, 31.85895617839189, 86.70650056327729, 20.781485304720512, 13.305528208963445, 55.472665112795546, 49.665098382907786, 70.73018311689731, 18.408493788509656, 82.63690576198361, 54.37601650806006, 83.38892686503088, 10.438331925089237, 17.021030452732152, 10.532521825265029, 15.886688116757394, 6.095437383363998, 64.23410313342507, 52.775856180959366, 68.91323249196827, 36.22607187834371, 6.755154836455105, 5.509230519674753, 65.52435694774285, 47.31776939490385, 13.990126696043086, 20.81511793661057, 63.423514038482296, 61.26765061188439, 62.319676735777016, 17.54663633265508, 6.329893636694809, 12.065010484880272, 39.255739619415436, 100.14730625306349, 8.610753597726996, 7.005705591181649, 77.19088432988671, 164.4993083253098, 7.596913336310933, 21.211931758612984, 52.1826088023242, 113.79509370462138, 13.541046069195993, 79.97629805571623, 99.5873838409964, 11.811284408518821, 38.3600187797095, 28.216412500211806, 67.11011681962708, 14.021707471313862, 10.213539533251769, 8.02300660794704, 26.84938459260207, 34.55131169764649, 7.965680058207681, 28.614923963990268, 48.996170352776495, 14.09638804770321, 10.068431460359875, 30.775104167265948, 23.871282065581955, 8.267479439851819, 5.445963482084494, 55.78183884914864, 40.70045740251018, 41.266970175260134, 77.86451547518735, 65.36922475681007, 35.46667659723244, 10.83424176469332, 17.456022396674534, 57.23956194339054, 22.40922914082664, 21.938414580602476, 33.38425763411918, 5.339214020838933, 18.50412744971794, 6.071839755327518, 120.18135423766707, 20.18511213114208, 32.58688162569964, 39.49552291805275, 17.32296941025311, 51.89993545493263, 17.6109818854872, 18.886329654241404, 8.77423494894902, 8.369207326570494, 19.876151531757156, 35.70549278394144, 13.28477864838016, 89.51156555730502, 6.0718516836418095, 77.30382128377117, 51.37564230557423, 85.41257293141558, 10.523141867245169, 22.459362948011783, 59.179910472818584, 23.375498265020347, 59.05595188541909, 39.75018247500096, 5.294120620555605, 32.461733541143495, 55.44806949532287, 35.61960928927591, 14.007333811567397, 28.536964960048728, 87.0708461178854, 64.21558431750151, 14.757534317597823, 30.09784954132062, 64.4928761934825, 60.74554113245856, 71.97865974848266, 7.809266860393541, 113.02998788500165, 34.449967103916805, 27.86522416638773, 82.56256228859307, 68.37062504692439, 21.473776583525655, 50.435452628328264, 67.79797995613208, 7.814445664507101, 27.512948730619257, 21.333254426502087, 23.098159496638537, 18.816201881151514, 86.65237628398516, 98.8750588310481, 13.233744281759783, 13.898320773022176, 55.49657052404159, 45.48796269587338, 91.37980068871374, 5.358533656943986, 13.328610421467257, 48.1390324769055, 18.58468919602053, 8.94715465095213, 29.005182408318298, 74.04735739836332, 99.31836136986729, 77.95189377346423, 53.998307808067544, 81.9743920217113, 64.80106539333804, 52.44546268793201, 22.771221401561025, 91.65684609239, 21.987986130303803, 30.06308630245915, 9.697967446348166, 41.00482044668548, 47.90626684295697, 77.13059692727373, 25.209142746942106, 104.85946432635629, 45.50595184048019, 54.4556658759776, 74.64956905291697, 10.282566488688843, 8.117062715312429, 5.803420728368729, 81.4036312123686, 84.97047895150133, 19.034291031698203, 72.2526377774623, 43.56225129597095, 25.649176382907118, 40.82948369960163, 90.4392665181627, 53.83509435121425, 14.043796825447219, 12.215365799924243, 27.884145439075443, 32.09218630798974, 7.187847572433601, 9.610677810025326, 101.33339219805703, 101.58337981233231, 17.74478795473171, 15.666537440915388, 13.522473538454754, 7.102713482422973, 17.4963629943914, 52.61949858355797, 86.52485149055417, 86.66694823704785, 60.183470632299276, 11.775793715064504, 5.243138684647047, 37.54329558777116, 42.21588536295852, 14.228631612718095, 92.87452954998992, 38.2765723832872, 82.27250462134626, 21.310822924247695, 22.527845478738772, 30.747137160266398, 36.234698200049266, 86.39117404866268, 36.92524380358281, 161.63559698181342, 39.11019671673403, 52.11004068463362, 41.45788817678193, 25.172264068091835, 25.71483923523693, 20.56490342805664, 54.7124992596147, 23.84259402219124, 25.454217385013063, 15.396580244650005, 16.75949076927464, 39.8367334362746, 21.385911940046476, 128.674806784003, 86.33965338391154, 5.7482396233533075, 52.29984657741957, 25.365972237372265, 31.171988392877882, 17.413011444801995, 68.84812826950105, 9.07679339578403, 46.563870136987916, 8.621526933987065, 11.394501542170353, 17.436073687751477, 9.441011486802939, 11.19682476151117, 31.0334477975595, 139.68765457291812, 96.21704379404629, 6.87962153430421, 8.545758815203948, 178.32740671666627, 8.726799419074608, 98.1011239936943, 12.91761664129084, 45.63844561812611, 20.67101179272474, 5.849133453650391, 24.16766194862578, 5.751480014799854, 24.808249669776018, 84.25657239872058, 39.15397989274833, 29.788616954768457, 85.73786023425336, 51.81465997618129, 34.00040727347964, 23.492386953817675, 13.039252912776954, 6.247856539376924, 68.65841905198229, 82.28361853893762, 6.928344576754311, 5.477789541101911, 33.3858217795868, 70.75383437502002, 5.416327476800588, 11.698820284581691, 17.791514412606414, 52.20247987414055, 47.031979868490296, 18.121878283905623, 7.483533479919954, 24.325212203758944, 9.394612264759484, 84.90353756263798, 82.20217486719397, 27.748326013128114, 219.93580923838144, 6.571535262493998, 38.29329429066172, 46.54850554369861, 63.70643945003948, 62.7036224280407, 17.243926146725336, 58.13931310328665, 13.915674245931836, 24.293981874114714, 38.9546181607742, 101.37388948794289, 17.694408215128398, 121.01995669397897, 15.5076691812895, 79.21627606286994, 21.190873463770828, 69.27427827334607, 83.17164706837717, 139.90632975980267, 6.925225099750191, 11.024312363935238, 24.671480946130526, 62.03908516069828, 158.74068191637346, 14.87073188103929, 5.115664174585969, 57.27004822889152, 11.049286647723667, 30.510980147783588, 63.694742944173264, 75.45463411434126, 58.6826485400392, 75.41147066877332, 16.01181616184353, 71.32013340340622, 118.14319195923439, 75.42195928041338, 26.008850089536775, 77.53038585243694, 7.689644338505787, 39.25866130472084, 36.02870025803651, 31.836503826877525, 88.34682717685281, 27.021529133628007, 100.46029320342605, 75.45333873921942, 25.501109024654898, 22.600838403607494, 5.994388152529491, 50.36652496339615, 17.16567711613567, 7.281676672476523, 26.808573222496726, 119.84015302423543, 9.969031354632387, 27.336416994335742, 14.09293420158647, 17.1286453708604, 92.29007158791336, 16.22545804565718, 6.007623498883553, 19.520209077065044, 10.816944119252467, 59.39184855950417, 5.284446473717761, 12.28697829447504, 24.02860476128661, 67.77893471957879, 69.8131969803846, 24.51678527982085, 46.596340108568974, 95.65804571224764, 72.43861964245626, 13.305950936613396, 81.78037099566109, 26.440193078812502, 17.497273614985417, 28.453695540062792, 62.21680280914976, 28.369686673982844, 22.984942100181737, 12.00052232856402, 14.685005042302912, 91.85345358433746, 171.27152017569782, 47.09115890852053, 40.7791180181911, 30.343022229203946, 272.21617625334505, 37.57653765819857, 63.535978862134925, 16.380337550249646, 79.9664079083062, 28.383894688095836, 62.08901005827121, 18.025131010884586, 27.08194567862295, 24.152560809008463, 27.88858952053491, 15.797711023865775, 26.29665562478092, 55.74341814353428, 12.826054787626802, 49.300203286128394, 15.141161877175229, 6.9650723207784, 31.10629039113671, 100.40107665743102, 21.65413586512285, 34.03378034838173, ...])
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)