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 = 44592
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
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
RowNo.append(int(int(matrix_index[i]))%int(256)) #ver XV
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);
([3820612.5, 3820992.3423482375, 3884078.125, 3895815.7085931194, 3900885.9375, 3908396.875, 3914532.209452221, 3917661.8606948447, 3917890.282299137, 3918051.8840021393, 3919433.656664225, 3919935.243925473, 3925609.375, 3926503.7439749446, 3964495.823237366, 3967010.5013298173, 3977433.141846907, 3977713.055829654, 3978654.6875, 3978730.584380872, 3979179.6875, 3980879.6875, 3982622.0302966856, 3983302.9875556533, 3983851.621786045, 3985709.375, 3986279.3378597554, 3989531.997683196, 3989749.1503623296, 3991556.25, 3999624.5775946532, 4001638.4503130764, 4002298.4727489958, 4004467.820078166, 4005784.179661206, 4008234.375, 4018123.4375, 4023418.75, 4025298.556764539, 4030998.376520288, 4033221.586348073, 4035415.308282517, 4041566.014201603, 4054296.2222842025, 4054590.625, 4077010.5013077706, 4086977.433410685, 4092375.0, 4092387.185452808, 4095631.623065744, 4099901.5625, 4106930.222529544, 4107734.375, 4136112.5138161923, 4146141.662210298, 4155517.1875, 4171905.252437169, 4172095.235869383, 4184724.6593534593, 4186209.6671810327, 4187883.9327132446, 4195359.142334838, 4206188.786216412, 4206755.377193674, 4213221.54128169, 4215893.10159616, 4218269.79191108, 4219451.390597069, 4225931.25, 4227282.764828631, 4229456.25, 4229622.576466196, 4230751.5625, 4231724.261063063, 4234731.167915206, 4238759.32273204, 4244617.1875, 4248226.272977012, 4249240.625, 4250348.4375, 4250741.615401283, 4257716.145814233, 4258507.125264083, 4261343.549380065, 4263505.973794722, 4266941.93917111, 4273834.2901071245, 4274052.139404959, 4284569.95267287, 4293294.022862859, 4297903.278987747, 4299677.857614745, 4302985.823982857, 4319933.9300797125, 4324509.375, 4325571.525436324, 4334409.375, 4336977.261678076, 4341117.149525842, 4347485.9375, 4349748.821420712, 4350670.71309848, 4356819.801572344, 4359329.877964701, 4364785.9375, 4367599.3689095555, 4368538.292763202, 4370469.2495397935, 4370508.794197591, 4370522.6545291925, 4371641.6864982685, 4375754.6875, 4377482.26903668, 4377484.217741077, 4377512.486612778, 4379893.75, 4380305.640341321, 4380675.910598957, 4383448.09096241, 4385188.177089689, 4385752.82675741, 4388628.467597633, 4389267.932871957, 4389330.818490468, 4393076.5625, 4393832.8125, 4395863.800819005, 4396541.8599353265, 4397151.71144963, 4397862.5, 4397922.602418721, 4398379.344935874, 4398635.518776916, 4398640.625, 4399750.0, 4401962.110526268, 4402811.987798531, 4404683.317637356, 4405117.1875, 4405801.099806923, 4406967.023757078, 4409668.79155572, 4409832.469700412, 4411164.826075909, 4411448.16204435, 4411806.25, 4417908.80303495, 4419385.260574668, 4421525.088747394, 4424027.30031726, 4444987.7136793, 4445700.0, 4448803.125, 4454281.308805313, 4454327.271674049, 4470549.140649499, 4474709.321473406, 4482499.642445172, 4483275.0, 4483854.929754733, 4488300.204196175, 4494038.674641452, 4499968.540490872, 4503123.465069613, 4507198.082531422, 4509160.923787824, 4509252.272205128, 4509384.8327477835, 4509868.801162375, 4510366.307873814, 4510466.933928896, 4516998.518170198, 4520434.904008923, 4521450.4135534065, 4526158.114415718, 4526473.4375, 4531758.725117202, 4553456.416469388, 4571860.9375, 4578881.84421343, 4581209.375, 4586885.544805276, 4588204.231292708, 4588338.214756829, 4589882.8125, 4607998.4375, 4608656.420699846, 4612663.172942167, 4614608.5260392735, 4623895.3125, 4623930.645484507, 4632623.823559786, 4632661.134760351, 4634670.233630813, 4637079.811945415, 4638051.5625, 4639958.541561402, 4642589.800795012, 4646269.501409059, 4647843.865038561, 4648942.063176938, 4650429.65369638, 4651161.436388932, 4652809.778813971, 4656917.07343194, 4656963.043808192, 4660193.75, 4663141.980362234, 4667482.8125, 4668353.225130041, 4669018.250220254, 4669223.4375, 4671670.9808765305, 4674750.697844942, 4678006.25, 4679468.984373938, 4681334.184368631, 4681353.066333504, 4681359.549006296, 4684444.184260004, 4684893.201560316, 4684910.9375, 4699703.125, 4708194.764782655, 4712997.995885082, 4727220.747979162, 4727543.578142383, 4732942.1875, 4747417.231735938, 4748843.530021278, 4752726.45463183, 4756314.609440735, 4756647.495349148, 4758598.875643552, 4759211.966450194, 4759894.348152657, 4764502.920918111, 4767337.152425434, 4768535.239810455, 4771471.393895023, 4771852.0466027595, 4773439.154378285, 4773954.6875, 4779213.846409547, 4787484.375, 4796769.725734164, 4798912.348572044, 4804358.787611913, 4805496.875, 4818505.9987226995, 4819285.9375, 4821346.875, 4821407.8125, 4821804.6875, 4822834.344568143, 4828749.0221997, 4838529.895387064, 4841274.988880787, 4842848.058309647, 4848429.6875, 4848646.463641263, 4848947.077058142, 4848964.061503269, 4856396.65788824, 4860088.39405073, 4870340.625, 4870911.5396054145, 4874781.25, 4876019.185591711, 4901979.6875, 4902101.102126902, 4902632.897372065, 4904245.3125, 4908576.447620451, 4911763.216320772, 4912058.282966727, 4916001.283253966, 4916148.870159976, 4916840.625, 4924838.6397655895, 4926634.816127883, 4926982.64696286, 4927028.125, 4927043.276293784, 4927396.939088164, 4928228.4259595135, 4929674.267568341, 4929882.8125, 4930240.575277076, 4930597.982015909, 4930681.25, 4930711.849658497, 4932115.625, 4932131.6299927775, 4932285.901803101, 4932590.5781926885, 4932618.54398449, 4933042.1875, 4933512.5, 4934078.858334361, 4934469.860711433, 4935230.647037944, 4936487.939425133, 4936697.409735183, 4942549.899892083, 4943331.554630189, 4943424.347344602, 4944151.208581579, 4945019.96886906, 4945698.4375, 4946443.082480168, 4946946.875, 4947233.765046102, 4947314.0625, 4948440.057718213, 4952944.560099428, 4954322.214706293, 4954425.272583946, 4954896.578128459, 4971532.496857582, 4972447.961909383, 4973381.076091623, 4973390.94918689, 4973397.854629447, 4973633.277657815, 4973954.787670853, 4973962.461263053, 4974062.321309485, 4974492.999176783, 4975137.043987386, 4975303.546569309, 4975373.325121305, 4975910.9375, 4976088.330148107, 4976309.375, 4977259.375, 4979189.121077571, 4981243.75, 4988042.1875, 4989215.625, 4989219.280190595, 4991600.0, 4991879.6875, 4992082.7543404065, 4992666.947157708, 4992680.631086429, 4994234.375, 4996098.594912189, 4996190.625, 4996325.981514727, 4996803.125, 4997710.9375, 4998215.76196412, 5000019.455248238, 5001892.1875, 5007772.818847349, 5009285.705526173, 5011772.040660606, 5014861.998517791, 5021727.410267536, 5022001.5625, 5023750.087415546, 5025478.201695291, 5032188.437864988, 5035537.400533452, 5037118.232608608, 5037526.5625, 5038068.75, 5038584.375, 5040543.758144513, 5040617.744023521, 5051759.074767325, 5052935.8260544, 5053700.372344951, 5054139.058754803, 5055045.3125, 5056785.427550517, 5057188.939587067, 5057222.250035189, 5057259.054465739, 5057268.75, 5057854.472505694, 5058006.707083094, 5058417.124938064, 5060340.625, 5060684.50417764, 5062423.445737171, 5078567.1875, 5084039.869083823, 5093326.584744109, 5096596.730977603, 5098614.801386061, 5099965.235590524, 5101176.33842138, 5101617.1875, 5101787.84624529, 5102378.77216591, 5102409.918044367, 5103314.545981441, 5103319.371388196, 5103770.23278399, 5114249.3084111195, 5120731.146512763, 5120769.953335959, 5121509.485633851, 5127173.5019198675, 5128351.241258389, 5131332.554493029, 5132337.5, 5134556.27390831, 5135006.944418635, 5136348.4375, 5147628.557153384, 5151409.375, 5157555.843717765, 5163649.035286244, 5166424.875754229, 5169212.5, 5169491.621700316, 5169875.071895281, 5169945.3125, 5170001.2382289935, 5171112.033296682, 5171270.3125, 5171355.155916677, 5171456.25, 5172067.233508346, 5172501.649092962, 5172509.375, 5173067.1875, 5173093.75, 5173376.947899299, 5173680.332905652, 5173778.624094018, 5174037.5, 5174648.4375, 5174829.456963829, 5175298.41635149, 5176437.5, 5177860.106698075, 5181076.5625, 5183371.875, 5185848.222999012, 5187693.75, 5190240.891762659, 5190245.179193061, 5193167.704369848, 5195351.322410746, 5195843.929544856, 5201041.06580921, 5202665.091475812, 5204034.033472844, 5205342.1875, 5205406.3038625205, 5206230.941082997, 5206276.445254616, 5206306.25, 5206346.50217476, 5206974.770420023, 5207406.7587988535, 5207789.0625, 5208758.265173169, 5209997.915519652, 5210833.379371876, 5211066.833837651, 5211199.627056873, 5211210.9375, 5212045.602483736, 5212060.30368654, 5212105.470426553, 5213660.227933867, 5213855.56364766, 5222943.096736602, 5226416.405654976, 5226476.5625, 5227940.625, 5236248.4375, 5241496.039359315, 5256506.098258797, 5275222.607579278, 5275371.875, 5275563.9998981, 5280148.249864459, 5280149.457422199, 5298833.111199264, 5301171.875, 5302506.979585189, 5309337.406017428, 5309793.75, 5316252.006954131, 5318689.764376118, 5322782.6031212425, 5322948.351687839, 5323460.9375, 5328218.75, 5332874.249827033, 5340074.145763762, 5340422.36077209, 5340673.273175299, 5341247.782042638, 5342342.238906873, 5342481.25, 5343271.875, 5347365.241779509, 5348154.6875, 5358012.42870691, 5374612.5, 5378570.3125, 5380824.614687066, 5391692.1875, 5396649.846964405, 5396654.6875, 5402605.890896489, 5408898.4375, 5411234.838511632, 5414507.4487287365, 5414842.3544961745, 5415814.0462056175, 5421002.417764008, 5435348.027083312, 5435700.0, 5440817.121966836, 5443530.694149725, 5444659.375, 5446737.110722523, 5453829.6875, 5455278.629334298, 5455418.669796546, 5457665.088392346, 5467970.3125, 5479559.078772352, 5489873.4375, 5492229.6875, 5498780.786841696, 5505036.07908072, 5505338.367332222, 5510799.207654455, 5515266.068828456, 5528493.75, 5532837.029853314, 5534710.660093125, 5535036.690338917, 5540327.519897198, 5542771.442628938, 5542787.540951662, 5554108.796110225, 5554511.640498964, 5555360.863814255, 5559841.710947094, 5560213.44189699, 5564631.51582972, 5565534.375, 5566785.362480056, 5566979.090619238, 5567869.2903396115, 5568645.3125, 5570398.957117636, 5571612.614562455, 5572246.875, 5572824.350350096, 5572831.047940455, 5573137.5, 5573812.5, 5575885.9375, 5576181.25, 5576553.125, 5576612.446650652, 5580846.875, 5583846.875, 5587727.816303811, 5590337.351028938, 5601065.48571343, 5601116.23120244, 5610348.439542427, 5611273.98595071, 5613762.398138453, 5626294.138505088, 5687390.625, 5721040.077741959, 5726347.911025817, 5814892.516511065, 5822921.7723221695, 5848992.834489701, 5871881.837779517, 5878828.725965525, 5883904.545900806, 5884275.0, 5960625.710157604, 5971742.131765681, 5971864.044107752, 5983077.742232649, 6091177.463079055, 6222696.598403411, 6250010.9375, 6380809.950761881, 6404367.945936786, 6411184.375, 6414013.935108519, 6420315.625, 6423213.580681406, 6435334.035118705, 6435762.910410709, 6437399.9275834905, 6438851.3932127515, 6445313.354231989, 6447895.3125, 6459243.75, 6464329.182361988, 6466408.099772138, 6469228.125, 6472380.996192977, 6472917.617339369, 6473416.366401518, 6477198.287266407, 6480007.8125, 6484862.44418305, 6491231.897164546, 6499464.0625, 6519359.020087745, 6524255.381895218, 6529110.9375, 6529309.022418516, 6530784.375, 6530891.395816954, 6530944.324483215, 6531222.364598457, 6532098.156102793, 6533221.875, 6533281.25, 6533328.842752627, 6533513.785092968, 6533853.403646209, 6533859.010791069, 6534518.410036017, 6535626.5625, 6536306.25, 6539982.060908847, 6540402.922303457, 6541599.573211954, 6541656.592035794, 6541725.971954293, 6541878.968170928, 6541886.409254781, 6544458.569773785, 6566941.388553049, 6567905.314089879, 6570138.384605153, 6571428.125, 6573284.062670926, 6574219.435165142, 6574638.565248759, 6586379.81620042, 6589322.990015314, 6589442.6020144755, 6593393.112968668, 6595536.340905272, 6599007.754867371, 6600767.1875, 6606455.580963481, 6607577.216628788, 6608190.625, 6614035.9375, 6615099.99087224, 6615545.568941711, 6618865.946763565, 6620952.172977054, 6621562.319725014, 6624049.719068896, 6624387.8432650175, 6625242.1875, 6629643.457555193, 6633612.73649142, 6634617.33234617, 6634663.7819052255, 6634886.089333061, 6635122.974099094, 6635551.361604148, 6635695.3125, 6635840.735930725, 6636286.334524041, 6637985.9375, 6638509.074989519, 6639245.603442394, 6641921.875, 6642813.381354568, 6644153.808580909, 6644635.539493824, 6645060.9375, 6645331.0694206655, 6646323.148234007, 6653793.886791999, 6659126.517614758, 6659138.410115707, 6660380.679545702, 6664954.089389778, 6666365.555232697, 6668057.96550682, 6668251.5625, 6669409.375, 6673196.74401386, 6674989.0625, 6675970.532246156, 6676908.748614899, 6676967.1875, 6677140.625, 6678589.911897856, 6680174.677324465, 6680187.5300939, 6680193.530181967, 6681195.3125, 6682901.5625, 6682992.2561857505, 6683854.506762078, 6687618.445588081, 6691435.881644213, 6692649.865614618, 6693375.0, 6693751.6099564545, 6708799.958702217, 6717973.754230152, 6719557.701678846, 6721632.8125, 6724945.3125, 6726405.735155035, 6730858.651374986, 6732062.812311629, 6733282.306106509, 6735389.123709694, 6737866.757106018, 6741345.307655007, 6747204.987478066, 6747922.108664472, 6754291.914055748, 6756126.153661095, 6757285.9375, 6762070.277837527, 6775446.658851089, 6781267.355654639, 6782051.0100493515, 6783860.4877460655, 6785216.628687165, 6789792.481588983, 6791262.387510714, 6793632.909122271, 6794805.608525435, 6795633.246767519, 6796101.019904093, 6796182.8125, 6797620.013880332, 6798175.0, 6798237.778550613, 6798251.665149073, 6798314.0625, 6798666.234733608, 6798850.191383334, 6798941.431076243, 6799098.4375, 6799213.186552613, 6799276.5625, 6799315.608247878, 6799433.277939245, 6799545.546949089, 6799564.793178483, 6799660.9375, 6799796.615939119, 6799959.654511628, 6799984.578446912, 6800091.507011287, 6800301.982340166, 6800421.590675676, 6800546.676034249, 6800905.528058574, 6800975.879070601, 6801384.375, 6801394.6788922995, 6801504.675852894, 6801655.762867788, 6801712.172636152, 6801897.93310061, 6802028.125, 6802818.052699396, 6803056.511493643, 6803323.4375, 6803502.456858985, 6804015.052708559, 6804074.798800144, 6804543.75, 6804568.768098155, 6804593.75, 6805366.143897532, 6805380.659397136, 6805487.11346354, 6806720.3125, 6807433.189049591, 6819715.625, 6819715.81267874, 6821596.875, 6821729.3890070245, 6824138.327245894, 6826801.326092185, 6828698.878296169, 6829347.669835629, 6829671.875, 6829696.695344628, 6829890.625, 6831651.487566686, 6832748.843579096, 6835995.3125, 6837062.25982182, 6837220.3125, 6840500.118850931, 6843099.95166007, 6843296.875, 6844179.6875, 6844738.201890369, 6848851.24751705, 6851538.739473986, 6851583.900104808, 6853613.729066136, 6854231.25, 6854912.400995287, 6857368.173895845, 6857835.4768627295, 6857886.186369192, 6858767.0920397, 6859101.5625, 6860335.033652107, 6860556.006064604, 6860984.216628691, 6861755.962636389, 6862061.799977511, 6865876.363699401, 6872698.3927710885, 6873081.25, 6873425.8161854725, 6873732.8125, 6875988.304285546, 6876282.998708542, 6876770.002511896, 6876821.562066444, 6877387.106664861, 6878231.860387174, 6878358.298911355, 6878584.3090251675, 6880441.265782693, 6881090.625, 6881732.8125, 6881753.443119397, 6882085.630756193, 6882690.625, 6882954.942194104, 6883031.709568006, 6883243.22385482, 6883464.180411217, 6883870.078024528, 6884531.656655706, 6884603.125, 6884651.5625, 6884691.71233241, 6884799.679247096, 6884845.3125, 6884853.367238064, 6884871.119263239, 6885023.4375, 6885058.0107705295, 6885133.70518632, 6885173.132492692, 6885205.519890277, 6885255.401460236, 6885256.192116252, 6885257.808004518, 6885504.935590513, 6885535.359850911, 6885581.108722523, 6885689.1975512635, 6885701.5625, 6885719.55353447, 6885725.308402793, 6885741.948945365, 6885922.599815814, 6885931.676039073, 6885995.152739161, 6885997.213897257, 6886045.611171006, 6886137.030563461, 6886192.143475338, 6886645.3125, 6886917.1875, 6887011.932277651, 6887026.052339696, 6887078.062568532, 6887212.458169943, 6887382.705260706, 6887546.875, 6887557.581232453, 6887623.4375, 6887916.725097176, 6887932.8125, 6887968.354230382, 6888680.936192576, 6889202.540525409, 6889685.531709671, 6890594.480047707, 6891367.1875, 6891460.9375, 6891853.96488032, 6892038.992341273, 6892201.194087412, 6892885.9375, 6893162.410346915, 6893539.380745551, 6893752.648898452, 6894400.0, 6894701.335362289, 6895567.466913621, 6895858.687607327, 6897246.522021127, 6898046.41833142, 6899103.999721358, 6899105.7903959835, 6899293.670667855, 6899313.21896777, 6899578.487515157, 6900764.0625, 6901844.799790935, 6902059.375, 6902676.004319479, 6903140.56557716, 6904681.340189969, 6906843.68107038, 6907843.614890863, 6909251.5625, 6909348.4375, 6909905.96746058, 6909956.578494716, 6909986.3916448215, 6910134.342461428, 6910555.355189682, 6912201.536409746, 6912707.8125, 6912728.125, 6912775.907548645, 6913124.50240966, 6913175.0, 6913603.032923722, 6913806.477455482, 6913874.74246555, 6913878.682390946, 6914293.210420922, 6914827.637606526, 6914978.125, 6915262.5, 6915476.462747794, 6915732.147657106, 6915883.661476101, 6916641.842069822, 6916775.0, 6916927.774888201, 6917053.125, 6917398.055733212, 6917446.887691709, 6917654.774229719, 6918032.8125, 6918046.188797498, 6918435.035188043, 6918465.625, 6918652.65232464, 6918881.030036202, 6919300.183793993, 6919704.16834488, 6919891.469401456, 6919948.386018055, 6921124.411915513, 6921263.668802071, 6921282.8125, 6921338.108016163, 6921568.529184223, 6921610.164830841, 6921615.554166611, 6921937.5, 6922046.875, 6922057.845581452, 6922069.2802319415, 6922169.186409891, 6922232.8125, 6922263.58677694, 6922272.742218648, 6922280.1395193115, 6922407.8125, 6922425.0, 6922461.360705615, 6922727.453383561, 6923388.462328975, 6923787.5, 6923812.5, 6923824.565341437, 6923888.453846129, 6923904.6875, 6923940.355746354, 6923966.492489749, ...], [52.9871977207531, 6.5116421384649925, 87.66093333196196, 31.45791986728132, 44.20000474227422, 43.64600599289814, 45.386548573965975, 42.723102405470506, 26.777062884936143, 24.665706998425957, 70.42536591388225, 8.806566831414505, 38.77314409342053, 17.975758315588873, 8.576485649777904, 110.56781717843805, 16.365365701226935, 22.52252109607265, 29.644975308697486, 12.894241793413068, 50.52736263792217, 45.86511061237704, 11.379443184245593, 57.6678722200966, 9.382041069470095, 69.75414356513208, 24.88944990545839, 10.055223784838516, 109.25541628234382, 44.68062110075536, 17.56199700791975, 20.44250561266802, 19.3132071774354, 18.062063704171425, 119.64508965616471, 55.99150502132679, 58.582909384829534, 28.938693757417155, 5.714390596057365, 55.254536444800394, 11.599045762319065, 35.65002402048313, 9.683706214527707, 25.60612863183566, 45.32459725267124, 8.987938921878376, 32.72265668582449, 103.35134530695612, 13.864372804839547, 16.583640782705196, 91.39089412989986, 122.86004062856459, 55.572924745790225, 32.22648721798452, 19.28293160946844, 42.986607454934514, 55.53860266623752, 27.095545725528254, 21.030753893307573, 16.185834758530078, 36.69514813618311, 46.11263629185021, 6.709574335686494, 16.893831777966934, 23.99049574629347, 18.347354543269958, 13.270009322654648, 60.608782700850625, 60.665860268968615, 25.53863688614554, 34.647881363661924, 12.435240462171285, 58.50686625286387, 67.86471251039507, 14.637606277566686, 21.859580585041357, 48.237332469974014, 10.703435277036425, 103.5109545687247, 57.75629598846843, 41.18203922101428, 7.8031334516040305, 7.953773733121522, 5.094528020944796, 38.95927609887892, 10.760538079742682, 14.627517706751535, 7.281835531745619, 47.82074599299761, 16.094618075049656, 15.169345432539096, 6.711273963421459, 6.7410534037449015, 22.060728211607607, 117.51472889061264, 134.99318054016254, 47.28570423769776, 32.959195431927064, 39.90129045671387, 145.36945014345375, 5.635642599467539, 5.975068178021814, 21.384779281497714, 5.47000131499528, 124.95458927505666, 30.808656348016953, 12.643398512981436, 68.80027201328109, 5.376725176177402, 6.929795970918864, 48.2989557368431, 51.91756679635219, 16.820252626388122, 90.04923734161109, 12.8496244131818, 60.89146908882645, 7.988506832134682, 76.79355611845378, 69.10826137469834, 34.85478057803975, 59.52917361019097, 5.254836147738219, 66.74581641434801, 5.782727561469355, 58.78516855600529, 38.63199775232642, 73.32173304372287, 13.788815785585472, 15.541346849922242, 51.773516459949214, 12.493343605147153, 77.81219712506378, 7.458502331804233, 75.2375716790604, 29.11273860644288, 19.50632486597683, 14.858755194031428, 19.630134521890497, 90.86694691916585, 7.004913121591315, 9.196683501776377, 43.8253245220598, 29.37542782825988, 60.93003436269886, 12.111315451248695, 61.67379900243761, 8.005625032260319, 77.37769090385558, 22.697416165908194, 18.76856123619936, 24.567857341644974, 48.37365186439254, 52.239059373869246, 86.27863866637344, 8.700938999224624, 7.879024185220973, 27.508476125465716, 75.72336260468488, 34.810740141999666, 9.54500268890525, 17.94546576253617, 22.689799488378767, 7.067446018666857, 9.354824143597579, 13.741614791749553, 28.25635984556379, 40.967315991055, 118.48774930299281, 20.884273080031626, 18.21442994918862, 42.46823211097538, 15.258167374970396, 12.069214627993064, 5.256869124480074, 9.600439945517904, 38.66311308944091, 12.933478106624857, 59.51507195254342, 162.47285588212253, 15.03448260164303, 105.81434241380757, 8.089285509336761, 10.48238364531968, 91.43659863675093, 37.89675118374341, 51.3842888240969, 9.480034380248986, 135.7028355394827, 18.599198605555955, 81.76560664547667, 5.32162526169997, 11.78998951169486, 15.750745293788636, 11.006627057872615, 11.327958569448898, 40.51906400027358, 28.918031973689338, 5.182920187754357, 73.8679914353965, 5.206362691679672, 26.288048498736647, 11.07527747597718, 8.56927883925819, 103.07581759585891, 62.97922486728929, 12.09932200490516, 50.315631521496044, 8.179994916268619, 87.39779460159846, 15.337405429131044, 21.495297668975688, 42.62971776544264, 18.294493324172507, 13.683906263249025, 70.26005530608235, 95.26939351305626, 25.256097946404417, 58.41067882816448, 9.483000737987537, 5.214628544971112, 13.195310473747012, 30.017111490395024, 71.08236864562384, 34.911818371806774, 22.095988939635046, 5.638598898504971, 16.679549299673422, 90.14732487011885, 63.78595397041258, 26.68159200375255, 5.128203520537778, 12.72731456122212, 17.98442760967197, 30.800309276638217, 21.16482667772349, 17.84573382058204, 5.038121462201982, 10.624666777570155, 10.188059334340632, 10.450675866330087, 6.565754177618904, 21.920549620726188, 91.16572995670384, 24.885201142706748, 67.61953815137849, 20.669132893562793, 104.85601667187117, 141.34395235193057, 50.733315685939836, 6.71435686613742, 103.2054984420196, 30.916082279971707, 40.65250722957098, 60.599263157058864, 72.28579357377183, 24.41802554751171, 109.26214845480017, 228.42868298397528, 5.234655040446011, 74.95818177506652, 22.42539377760044, 15.771968899693366, 34.11287663682638, 5.9207185355303835, 35.18999228937878, 108.37975450295625, 38.611360432823936, 71.65524186815034, 11.884429112437543, 85.92086161751114, 8.970275119308075, 5.20558960609282, 45.424365602590456, 10.952768098564528, 75.49965743869471, 5.849630659760158, 83.11014688409053, 17.42122427220471, 34.429506714722805, 141.48085008940234, 16.939678802354354, 14.345989700470287, 31.417840018028592, 73.83804232294239, 61.919218463354525, 62.48576835580615, 34.59893758110602, 96.80333954962573, 22.00631629403358, 10.483309574842467, 85.98448148636133, 12.932329298112442, 64.85592974487861, 16.618954481627895, 5.289985877549936, 11.055323747477816, 59.96167914450973, 58.09302276615732, 86.18056444573475, 18.554991018368476, 21.98790529632946, 8.868783942063693, 23.996834988686313, 17.46456635120799, 66.0732545361667, 22.58148116073457, 87.43693135788578, 13.744764037843781, 37.9521283087204, 66.26377986970229, 30.49873451151958, 45.98113170111987, 43.593643644978044, 144.52351591560932, 8.893760905460308, 25.042247556373823, 11.70372587788241, 29.289693851042557, 13.919065793582075, 7.040879277795767, 172.80811219814643, 45.807254041063615, 41.84171244540286, 36.488956918022815, 5.849218774110417, 22.927352246526695, 5.531203464082952, 64.51662779623295, 29.326896029587438, 21.943415052477352, 41.36129892071965, 68.82425781668023, 71.38765925129755, 25.268203411042293, 46.36695981822061, 53.869604041553956, 5.292900113491094, 95.97174250541934, 139.53644494198758, 97.83067026447753, 28.8496571110479, 60.49332952274661, 45.0479602475519, 6.259878180735854, 14.098275784396927, 13.011755819096443, 28.722409253267692, 11.383001331557148, 30.957785629829658, 5.6707540147804565, 51.681817328938806, 31.97556541238036, 15.490580827118011, 80.8161283390073, 35.15045793307886, 20.385863801425188, 15.808832919761452, 50.65099204883418, 80.66411404848189, 80.27917642663431, 37.03199790916234, 15.285504006964365, 28.237898694925736, 27.813149644508876, 14.575474797919284, 50.3290306405971, 45.14086644045699, 53.00044531791238, 78.03138811706098, 14.972643623466125, 26.393050622437457, 49.47148505601772, 43.79325778438054, 56.53732997362247, 6.266725304560678, 70.60167747643749, 76.24324195778837, 38.20769101101696, 13.820799305703208, 7.039667231635633, 47.59142489943947, 10.80750135553581, 8.544044986849096, 5.289158667181806, 58.4228312707183, 94.90844592212153, 14.972998882245026, 51.70163138757012, 12.67584581213805, 124.64122764445605, 32.216751735666605, 5.755453681747997, 22.67211166725589, 20.063759634412058, 30.235511861523097, 26.925982460801997, 76.27624312017453, 5.217481384725091, 24.134785396866377, 17.990989860637807, 6.474667235287884, 5.664113140666052, 26.633667689122078, 13.729054309148097, 31.893065737896286, 177.16201493105902, 23.483149337175547, 66.9898259429865, 68.0463522568361, 6.768289082063707, 9.996790261095073, 30.830745790304384, 42.79210150301189, 95.1923508492345, 26.60979276492384, 82.97390064925891, 5.20026802563542, 28.674246363810404, 23.582099859040465, 11.241974552451143, 41.18888931807152, 5.236159353757149, 30.74267952523828, 57.29392729750582, 50.621645773110615, 81.77042868238053, 28.383270963459612, 11.2658095426908, 40.645748529578945, 61.64070405062406, 57.144619672216024, 16.64665850298179, 5.263575204450993, 9.79235997205216, 55.52868383256026, 63.39884191441634, 56.380430029606416, 28.113029577919214, 41.759494505458484, 8.715528608375447, 63.272195414995515, 91.19056338488414, 14.666638454310558, 42.426711765132424, 29.61839992874213, 14.456636603285633, 22.66515726407684, 24.5474220544045, 11.42044382177157, 37.05184918750849, 6.987928191566206, 77.73739032017389, 58.1311405681381, 5.535700382722489, 6.703361950820537, 10.949260065551023, 38.310408275395964, 22.863034685516713, 39.376948381967836, 100.33517483074664, 48.04706526702555, 71.822039436558, 10.399323641186434, 17.654995120823063, 23.08865572616596, 9.034784748775586, 39.947505055070124, 5.409676766040337, 20.254599829120654, 10.094555053211831, 48.46703111478942, 12.843089976866393, 10.240072160954197, 158.22771971871668, 70.29233480510683, 45.61660572470809, 57.37994865869813, 106.57311038387262, 151.93942482583685, 25.941323383355293, 147.5714190541752, 27.344501998163793, 10.846561759478703, 69.1936353411274, 135.75834992473585, 30.737026375383085, 37.73608633213212, 41.08219454365331, 36.25068984835715, 16.957609950240375, 18.51924226277249, 12.812450670247209, 109.7433422879684, 45.654154569962984, 62.05633312356823, 125.78717647804369, 109.40109177668052, 45.246889616816574, 62.09289670675406, 6.022490352628844, 7.135030847441352, 33.246076183733095, 112.18916547745587, 6.049134114485063, 51.432737307668226, 21.978970602731977, 135.85517339369616, 42.41148897160473, 114.59239170421301, 52.63655186143409, 25.828961267347427, 58.09480134591228, 16.745576969443807, 37.30908448885395, 35.94338404865934, 22.968954410144114, 15.61866281932255, 59.47622528612186, 73.77261006653659, 22.43584632248143, 52.971579884490964, 68.07488966481118, 31.3489360440424, 73.36935881160757, 9.022596473847173, 30.223839512941936, 8.572587938470356, 23.184404038963343, 21.135530246547937, 41.036592405746184, 113.61692247747605, 163.323018585066, 30.602581958298767, 25.95302232358639, 8.362894048318449, 33.4764384180442, 132.0761792598764, 53.49109477113947, 84.78289328604666, 110.59533320819932, 33.10756846157047, 18.87538107927649, 15.651645555343446, 7.012250879617668, 113.8289858492157, 190.62520882318466, 28.034015432553026, 31.43507385915722, 13.390724120598753, 49.050041602494176, 39.08148197175604, 74.05732413010728, 5.376937316874123, 32.89220736419985, 12.092244569385375, 65.78013821692842, 23.444372536839154, 66.82426766076473, 54.20664235479439, 51.76742696586489, 65.41293877356647, 110.0186547436124, 60.133637875138795, 59.04309437592371, 32.133718306981535, 28.931168190610958, 84.80654175644787, 54.833758187366335, 64.03310088465615, 23.64029184453227, 34.86245418395876, 37.239425404494575, 20.407423520586377, 19.292882864996688, 65.4144162378926, 78.0136638705442, 9.68303135066119, 78.81673701512015, 50.291140736242006, 6.989609050571529, 16.36371905237403, 54.43953149884801, 26.335534169705305, 55.15986617254909, 69.38686661106931, 34.76301820001944, 70.92858418609143, 6.604491424826812, 27.468371828383617, 71.46328985801458, 6.4287176487157955, 20.016837639669863, 54.33581143674991, 36.44284045883851, 112.1580080163031, 82.57499145867227, 47.541694906164985, 26.238053440480368, 69.9794762901326, 180.3735146040625, 9.059649702344082, 16.776465168019783, 102.70334658588236, 42.805433999957174, 139.73019840867568, 28.816196666196557, 159.04066170638797, 6.666682706946253, 133.42146445788822, 82.66409604278613, 28.626609823534537, 38.06950324659309, 18.828297077882805, 14.398223836687897, 83.76563899987747, 27.466873486272256, 94.80379886856906, 50.964695910533045, 23.073772123666824, 113.50530317672607, 108.62434851185586, 6.052185558151524, 87.1661663862773, 5.369047281241827, 130.9441304312296, 17.206118979628776, 60.62780805567485, 150.52530279828449, 169.59017496212576, 61.14533823128551, 24.043690189639182, 11.593095063511097, 13.713995141478156, 21.80897592801808, 59.492745896733815, 40.05437540160343, 10.126170447739124, 25.078673375553077, 66.19130784159394, 5.212224420567916, 118.25345781638352, 7.939597324349218, 113.46604241807634, 32.35400010936139, 18.952541125648718, 5.219684956826973, 7.957920918253462, 53.10714397987949, 97.88593013364193, 18.406230727935156, 13.33358054860013, 31.647254119288526, 12.009745930801426, 5.214112703726813, 20.22701489591713, 105.50929254617239, 83.58041477414521, 54.469923904566286, 12.885768297952291, 300.0322733426407, 59.89830053200795, 43.24337599798474, 20.461842917688408, 16.018177666382467, 90.52603659795365, 17.92239223278423, 26.85539753858744, 11.86679683702793, 9.639559408546614, 48.646785097897954, 23.8477309159156, 18.53586087630162, 179.33890450023094, 24.001822231208426, 29.20230916778784, 8.055837353072379, 73.08288707122601, 61.583913420916694, 5.07091909511414, 26.930407495762203, 113.88579530048912, 8.134052576075756, 8.446667847813066, 41.30236711893289, 19.858265974449495, 42.82727085321979, 22.57468405189806, 53.92404262991728, 25.406252767182778, 9.098230206402189, 24.955511761717737, 19.039652868546685, 18.9865783902827, 136.24453868363872, 6.649697597753813, 27.216666677290693, 6.7944425375997834, 51.80117442179905, 31.617420377801704, 37.20700168932786, 49.733469135090296, 6.295366741957722, 41.04889900628199, 52.92901440528977, 89.77233881297538, 12.777990852296849, 13.839430641969283, 21.605393620797045, 29.015847959336938, 69.86382142659168, 99.54609979585062, 11.236791505039752, 73.83510520390855, 5.448850790575644, 9.28461633566049, 119.30835748841888, 54.78694309223141, 21.583493869625514, 40.13676224640614, 16.303813262245658, 19.251753905165597, 90.88494965929414, 70.59600444343421, 148.6714294455865, 19.519000981492397, 8.458939292673096, 202.6067529111933, 15.180059988470024, 18.496240683602903, 28.429543895627514, 23.1589817195917, 45.41043248845036, 84.92743181060669, 13.582846906580597, 96.10038596226843, 25.768311592539458, 87.42953935614312, 15.623662434835673, 27.85051102791569, 254.13527852827067, 17.65102470778433, 9.593100150555266, 129.4910600482316, 5.205890568648253, 6.641859748343128, 11.881873229249559, 6.033434831714805, 33.05293808722409, 61.02818146956587, 60.33249913212586, 16.12132834726773, 16.378843298112827, 105.27573981878861, 31.468454091808034, 22.03509052295434, 122.92540884943061, 54.86196451949039, 18.41554519343968, 74.65187201065166, 80.84458382405131, 11.94250208408756, 70.80002001110589, 6.167528752166642, 66.95127271916513, 56.28190445604877, 7.1969176885417205, 35.07491841420793, 19.86362995054084, 16.826116504659744, 23.953063406122126, 123.11520744215181, 44.95358495895945, 10.204654534981213, 61.096221163780996, 5.374791907781054, 14.897301162969786, 37.93818773270449, 9.069132574794859, 6.2055072786528225, 38.21203759889122, 32.86249866383997, 11.56261269409768, 193.59610415837128, 116.75548401615038, 173.5091522824848, 100.22212235790795, 94.37982186912132, 15.010942744873915, 32.17542395145397, 32.26490981059096, 5.889571210484997, 50.78727970057609, 187.90426456043718, 25.129659243251783, 37.7555901806536, 15.70859477535814, 60.96209238557525, 39.4801063943825, 5.431069415526171, 61.156640422967804, 28.454337484808917, 91.330421780495, 56.31637351246946, 8.193803825706658, 60.18685418797989, 27.125379529034078, 21.312957849226855, 31.747021138883035, 22.934644529544087, 40.65335487768196, 6.50588495794835, 149.8672489062733, 128.67333601548793, 77.22611090171817, 5.1457917044801, 6.438823045304056, 10.657736923984215, 31.634912980350848, 103.68495788156925, 119.4077448938645, 26.709449991570196, 13.122337782433872, 58.49438439579276, 15.98326143841904, 34.83786328970307, 80.19743466038473, 50.45500704785141, 62.22271398607102, 33.51521541636143, 9.099692551798874, 32.94534050732199, 5.922277752744046, 5.340391318725157, 38.22564202512012, 7.9277628356594905, 39.085943918804126, 50.46692663344169, 122.85684305536643, 79.11152539490826, 73.58274142790373, 44.651667775283656, 82.59269189766138, 8.561715789674059, 14.695868804100204, 5.144437217166243, 44.169308283395694, 57.176693683726654, 9.615700843299436, 8.130764392634836, 59.411061672657105, 11.550599781047355, 24.636172137230723, 15.025198906692143, 54.890676325430164, 9.140709918338331, 37.82153198073577, 102.21809559001775, 31.863434619357175, 21.744445805938035, 23.489222912680898, 96.93502753774413, 15.952856854852536, 23.38764902973039, 68.94608624284412, 50.47194810450717, 82.66169272117152, 13.8938138611131, 33.218204000703324, 12.463108741171776, 34.03342776885214, 70.96146951316683, 8.42227866180616, 20.75196970384189, 8.213254192861188, 15.48252123717937, 42.166028964784154, 104.92016958188191, 35.272523756777616, 39.419810167757866, 27.681201712163876, 11.866029850607074, 14.365641553510123, 138.0887238863888, 7.71495604627112, 73.21270108298654, 7.587391947745827, 66.91137121605682, 69.45107242027801, 20.843127159180924, 21.392341030441322, 41.88190860506662, 6.261927867675448, 10.964122441824124, 50.21367914164113, 28.98094647748651, 133.45003939401784, 68.50545485978482, 34.059375821696186, 10.560737920573388, 17.702211588869954, 50.370390879579176, 13.591688518507567, 72.40542098371606, 62.042160868557865, 65.06377045493969, 10.159271340132728, 5.243185927551302, 40.147117850678306, 42.76341213836436, 26.869220404732992, 16.311173017810265, 13.391978308981013, 32.1256094989591, 5.094011822262187, 16.125391729130246, 19.807424285201513, 104.9966268317326, 28.16146536656985, 25.31891368947593, 29.59252544599459, 27.048221264341837, 18.636721723054556, 87.41700044174817, 59.22254995843722, 35.975669472233676, 111.08464622080105, 30.47947018014147, 41.706446682890856, 22.88062146473773, 15.981105850454961, 10.922891506225183, 124.71738576654361, 86.18896547449539, 23.97636841869519, 6.122939195222876, 82.51341569495366, 168.63730142713592, 77.03700045753703, 14.842989409944066, 34.582515320568405, 40.94145690660632, 56.311604718223556, 41.323384868480915, 41.72085861744965, 32.91326683515558, 5.831003923852748, 22.587959566900363, 45.070961232512076, 28.062698282117545, 13.36070545702566, 31.117077279695106, 77.79420258449775, 26.696776984267213, 65.9902327563939, 161.90992641666062, 23.187276399660213, 86.5973995013799, 29.29494577377928, 103.70254484126895, 22.75960553334687, 63.11746191187206, 8.332980215182243, 28.933231211896665, 5.433065108216488, 7.860845295268857, 122.78812293272055, 8.051494174525931, 7.525571910926146, 77.97904930921652, 33.85560494999276, 19.56229676357709, 17.770934810888708, 50.13899154538474, 22.623380254969316, 42.91567732496557, 14.40491155004528, 24.817803258388107, 19.145299455382858, 11.018765699353306, 64.3015021738199, 47.11772545369801, 5.534688245956289, 5.307751635778073, 5.978333651978751, 38.159263990353004, 29.379064069349397, 30.092674828441464, 8.541008919154292, 46.32152604646816, 60.387075272394576, 33.54584572414858, 12.87938243805299, 25.887923738930215, 77.18245331036489, 56.15422879924923, 5.089996338827403, 66.6143980063024, 54.72239134058713, 24.151592748845893, 25.53708589500919, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([3820612.5, 3820992.3423482375, 3884078.125, 3895815.7085931194, 3900885.9375, 3908396.875, 3914532.209452221, 3917661.8606948447, 3917890.282299137, 3918051.8840021393, 3919433.656664225, 3919935.243925473, 3925609.375, 3926503.7439749446, 3964495.823237366, 3967010.5013298173, 3977433.141846907, 3977713.055829654, 3978654.6875, 3978730.584380872, 3979179.6875, 3980879.6875, 3982622.0302966856, 3983302.9875556533, 3983851.621786045, 3985709.375, 3986279.3378597554, 3989531.997683196, 3989749.1503623296, 3991556.25, 3999624.5775946532, 4001638.4503130764, 4002298.4727489958, 4004467.820078166, 4005784.179661206, 4008234.375, 4018123.4375, 4023418.75, 4025298.556764539, 4030998.376520288, 4033221.586348073, 4035415.308282517, 4041566.014201603, 4054296.2222842025, 4054590.625, 4077010.5013077706, 4086977.433410685, 4092375.0, 4092387.185452808, 4095631.623065744, 4099901.5625, 4106930.222529544, 4107734.375, 4136112.5138161923, 4146141.662210298, 4155517.1875, 4171905.252437169, 4172095.235869383, 4184724.6593534593, 4186209.6671810327, 4187883.9327132446, 4195359.142334838, 4206188.786216412, 4206755.377193674, 4213221.54128169, 4215893.10159616, 4218269.79191108, 4219451.390597069, 4225931.25, 4227282.764828631, 4229456.25, 4229622.576466196, 4230751.5625, 4231724.261063063, 4234731.167915206, 4238759.32273204, 4244617.1875, 4248226.272977012, 4249240.625, 4250348.4375, 4250741.615401283, 4257716.145814233, 4258507.125264083, 4261343.549380065, 4263505.973794722, 4266941.93917111, 4273834.2901071245, 4274052.139404959, 4284569.95267287, 4293294.022862859, 4297903.278987747, 4299677.857614745, 4302985.823982857, 4319933.9300797125, 4324509.375, 4325571.525436324, 4334409.375, 4336977.261678076, 4341117.149525842, 4347485.9375, 4349748.821420712, 4350670.71309848, 4356819.801572344, 4359329.877964701, 4364785.9375, 4367599.3689095555, 4368538.292763202, 4370469.2495397935, 4370508.794197591, 4370522.6545291925, 4371641.6864982685, 4375754.6875, 4377482.26903668, 4377484.217741077, 4377512.486612778, 4379893.75, 4380305.640341321, 4380675.910598957, 4383448.09096241, 4385188.177089689, 4385752.82675741, 4388628.467597633, 4389267.932871957, 4389330.818490468, 4393076.5625, 4393832.8125, 4395863.800819005, 4396541.8599353265, 4397151.71144963, 4397862.5, 4397922.602418721, 4398379.344935874, 4398635.518776916, 4398640.625, 4399750.0, 4401962.110526268, 4402811.987798531, 4404683.317637356, 4405117.1875, 4405801.099806923, 4406967.023757078, 4409668.79155572, 4409832.469700412, 4411164.826075909, 4411448.16204435, 4411806.25, 4417908.80303495, 4419385.260574668, 4421525.088747394, 4424027.30031726, 4444987.7136793, 4445700.0, 4448803.125, 4454281.308805313, 4454327.271674049, 4470549.140649499, 4474709.321473406, 4482499.642445172, 4483275.0, 4483854.929754733, 4488300.204196175, 4494038.674641452, 4499968.540490872, 4503123.465069613, 4507198.082531422, 4509160.923787824, 4509252.272205128, 4509384.8327477835, 4509868.801162375, 4510366.307873814, 4510466.933928896, 4516998.518170198, 4520434.904008923, 4521450.4135534065, 4526158.114415718, 4526473.4375, 4531758.725117202, 4553456.416469388, 4571860.9375, 4578881.84421343, 4581209.375, 4586885.544805276, 4588204.231292708, 4588338.214756829, 4589882.8125, 4607998.4375, 4608656.420699846, 4612663.172942167, 4614608.5260392735, 4623895.3125, 4623930.645484507, 4632623.823559786, 4632661.134760351, 4634670.233630813, 4637079.811945415, 4638051.5625, 4639958.541561402, 4642589.800795012, 4646269.501409059, 4647843.865038561, 4648942.063176938, 4650429.65369638, 4651161.436388932, 4652809.778813971, 4656917.07343194, 4656963.043808192, 4660193.75, 4663141.980362234, 4667482.8125, 4668353.225130041, 4669018.250220254, 4669223.4375, 4671670.9808765305, 4674750.697844942, 4678006.25, 4679468.984373938, 4681334.184368631, 4681353.066333504, 4681359.549006296, 4684444.184260004, 4684893.201560316, 4684910.9375, 4699703.125, 4708194.764782655, 4712997.995885082, 4727220.747979162, 4727543.578142383, 4732942.1875, 4747417.231735938, 4748843.530021278, 4752726.45463183, 4756314.609440735, 4756647.495349148, 4758598.875643552, 4759211.966450194, 4759894.348152657, 4764502.920918111, 4767337.152425434, 4768535.239810455, 4771471.393895023, 4771852.0466027595, 4773439.154378285, 4773954.6875, 4779213.846409547, 4787484.375, 4796769.725734164, 4798912.348572044, 4804358.787611913, 4805496.875, 4818505.9987226995, 4819285.9375, 4821346.875, 4821407.8125, 4821804.6875, 4822834.344568143, 4828749.0221997, 4838529.895387064, 4841274.988880787, 4842848.058309647, 4848429.6875, 4848646.463641263, 4848947.077058142, 4848964.061503269, 4856396.65788824, 4860088.39405073, 4870340.625, 4870911.5396054145, 4874781.25, 4876019.185591711, 4901979.6875, 4902101.102126902, 4902632.897372065, 4904245.3125, 4908576.447620451, 4911763.216320772, 4912058.282966727, 4916001.283253966, 4916148.870159976, 4916840.625, 4924838.6397655895, 4926634.816127883, 4926982.64696286, 4927028.125, 4927043.276293784, 4927396.939088164, 4928228.4259595135, 4929674.267568341, 4929882.8125, 4930240.575277076, 4930597.982015909, 4930681.25, 4930711.849658497, 4932115.625, 4932131.6299927775, 4932285.901803101, 4932590.5781926885, 4932618.54398449, 4933042.1875, 4933512.5, 4934078.858334361, 4934469.860711433, 4935230.647037944, 4936487.939425133, 4936697.409735183, 4942549.899892083, 4943331.554630189, 4943424.347344602, 4944151.208581579, 4945019.96886906, 4945698.4375, 4946443.082480168, 4946946.875, 4947233.765046102, 4947314.0625, 4948440.057718213, 4952944.560099428, 4954322.214706293, 4954425.272583946, 4954896.578128459, 4971532.496857582, 4972447.961909383, 4973381.076091623, 4973390.94918689, 4973397.854629447, 4973633.277657815, 4973954.787670853, 4973962.461263053, 4974062.321309485, 4974492.999176783, 4975137.043987386, 4975303.546569309, 4975373.325121305, 4975910.9375, 4976088.330148107, 4976309.375, 4977259.375, 4979189.121077571, 4981243.75, 4988042.1875, 4989215.625, 4989219.280190595, 4991600.0, 4991879.6875, 4992082.7543404065, 4992666.947157708, 4992680.631086429, 4994234.375, 4996098.594912189, 4996190.625, 4996325.981514727, 4996803.125, 4997710.9375, 4998215.76196412, 5000019.455248238, 5001892.1875, 5007772.818847349, 5009285.705526173, 5011772.040660606, 5014861.998517791, 5021727.410267536, 5022001.5625, 5023750.087415546, 5025478.201695291, 5032188.437864988, 5035537.400533452, 5037118.232608608, 5037526.5625, 5038068.75, 5038584.375, 5040543.758144513, 5040617.744023521, 5051759.074767325, 5052935.8260544, 5053700.372344951, 5054139.058754803, 5055045.3125, 5056785.427550517, 5057188.939587067, 5057222.250035189, 5057259.054465739, 5057268.75, 5057854.472505694, 5058006.707083094, 5058417.124938064, 5060340.625, 5060684.50417764, 5062423.445737171, 5078567.1875, 5084039.869083823, 5093326.584744109, 5096596.730977603, 5098614.801386061, 5099965.235590524, 5101176.33842138, 5101617.1875, 5101787.84624529, 5102378.77216591, 5102409.918044367, 5103314.545981441, 5103319.371388196, 5103770.23278399, 5114249.3084111195, 5120731.146512763, 5120769.953335959, 5121509.485633851, 5127173.5019198675, 5128351.241258389, 5131332.554493029, 5132337.5, 5134556.27390831, 5135006.944418635, 5136348.4375, 5147628.557153384, 5151409.375, 5157555.843717765, 5163649.035286244, 5166424.875754229, 5169212.5, 5169491.621700316, 5169875.071895281, 5169945.3125, 5170001.2382289935, 5171112.033296682, 5171270.3125, 5171355.155916677, 5171456.25, 5172067.233508346, 5172501.649092962, 5172509.375, 5173067.1875, 5173093.75, 5173376.947899299, 5173680.332905652, 5173778.624094018, 5174037.5, 5174648.4375, 5174829.456963829, 5175298.41635149, 5176437.5, 5177860.106698075, 5181076.5625, 5183371.875, 5185848.222999012, 5187693.75, 5190240.891762659, 5190245.179193061, 5193167.704369848, 5195351.322410746, 5195843.929544856, 5201041.06580921, 5202665.091475812, 5204034.033472844, 5205342.1875, 5205406.3038625205, 5206230.941082997, 5206276.445254616, 5206306.25, 5206346.50217476, 5206974.770420023, 5207406.7587988535, 5207789.0625, 5208758.265173169, 5209997.915519652, 5210833.379371876, 5211066.833837651, 5211199.627056873, 5211210.9375, 5212045.602483736, 5212060.30368654, 5212105.470426553, 5213660.227933867, 5213855.56364766, 5222943.096736602, 5226416.405654976, 5226476.5625, 5227940.625, 5236248.4375, 5241496.039359315, 5256506.098258797, 5275222.607579278, 5275371.875, 5275563.9998981, 5280148.249864459, 5280149.457422199, 5298833.111199264, 5301171.875, 5302506.979585189, 5309337.406017428, 5309793.75, 5316252.006954131, 5318689.764376118, 5322782.6031212425, 5322948.351687839, 5323460.9375, 5328218.75, 5332874.249827033, 5340074.145763762, 5340422.36077209, 5340673.273175299, 5341247.782042638, 5342342.238906873, 5342481.25, 5343271.875, 5347365.241779509, 5348154.6875, 5358012.42870691, 5374612.5, 5378570.3125, 5380824.614687066, 5391692.1875, 5396649.846964405, 5396654.6875, 5402605.890896489, 5408898.4375, 5411234.838511632, 5414507.4487287365, 5414842.3544961745, 5415814.0462056175, 5421002.417764008, 5435348.027083312, 5435700.0, 5440817.121966836, 5443530.694149725, 5444659.375, 5446737.110722523, 5453829.6875, 5455278.629334298, 5455418.669796546, 5457665.088392346, 5467970.3125, 5479559.078772352, 5489873.4375, 5492229.6875, 5498780.786841696, 5505036.07908072, 5505338.367332222, 5510799.207654455, 5515266.068828456, 5528493.75, 5532837.029853314, 5534710.660093125, 5535036.690338917, 5540327.519897198, 5542771.442628938, 5542787.540951662, 5554108.796110225, 5554511.640498964, 5555360.863814255, 5559841.710947094, 5560213.44189699, 5564631.51582972, 5565534.375, 5566785.362480056, 5566979.090619238, 5567869.2903396115, 5568645.3125, 5570398.957117636, 5571612.614562455, 5572246.875, 5572824.350350096, 5572831.047940455, 5573137.5, 5573812.5, 5575885.9375, 5576181.25, 5576553.125, 5576612.446650652, 5580846.875, 5583846.875, 5587727.816303811, 5590337.351028938, 5601065.48571343, 5601116.23120244, 5610348.439542427, 5611273.98595071, 5613762.398138453, 5626294.138505088, 5687390.625, 5721040.077741959, 5726347.911025817, 5814892.516511065, 5822921.7723221695, 5848992.834489701, 5871881.837779517, 5878828.725965525, 5883904.545900806, 5884275.0, 5960625.710157604, 5971742.131765681, 5971864.044107752, 5983077.742232649, 6091177.463079055, 6222696.598403411, 6250010.9375, 6380809.950761881, 6404367.945936786, 6411184.375, 6414013.935108519, 6420315.625, 6423213.580681406, 6435334.035118705, 6435762.910410709, 6437399.9275834905, 6438851.3932127515, 6445313.354231989, 6447895.3125, 6459243.75, 6464329.182361988, 6466408.099772138, 6469228.125, 6472380.996192977, 6472917.617339369, 6473416.366401518, 6477198.287266407, 6480007.8125, 6484862.44418305, 6491231.897164546, 6499464.0625, 6519359.020087745, 6524255.381895218, 6529110.9375, 6529309.022418516, 6530784.375, 6530891.395816954, 6530944.324483215, 6531222.364598457, 6532098.156102793, 6533221.875, 6533281.25, 6533328.842752627, 6533513.785092968, 6533853.403646209, 6533859.010791069, 6534518.410036017, 6535626.5625, 6536306.25, 6539982.060908847, 6540402.922303457, 6541599.573211954, 6541656.592035794, 6541725.971954293, 6541878.968170928, 6541886.409254781, 6544458.569773785, 6566941.388553049, 6567905.314089879, 6570138.384605153, 6571428.125, 6573284.062670926, 6574219.435165142, 6574638.565248759, 6586379.81620042, 6589322.990015314, 6589442.6020144755, 6593393.112968668, 6595536.340905272, 6599007.754867371, 6600767.1875, 6606455.580963481, 6607577.216628788, 6608190.625, 6614035.9375, 6615099.99087224, 6615545.568941711, 6618865.946763565, 6620952.172977054, 6621562.319725014, 6624049.719068896, 6624387.8432650175, 6625242.1875, 6629643.457555193, 6633612.73649142, 6634617.33234617, 6634663.7819052255, 6634886.089333061, 6635122.974099094, 6635551.361604148, 6635695.3125, 6635840.735930725, 6636286.334524041, 6637985.9375, 6638509.074989519, 6639245.603442394, 6641921.875, 6642813.381354568, 6644153.808580909, 6644635.539493824, 6645060.9375, 6645331.0694206655, 6646323.148234007, 6653793.886791999, 6659126.517614758, 6659138.410115707, 6660380.679545702, 6664954.089389778, 6666365.555232697, 6668057.96550682, 6668251.5625, 6669409.375, 6673196.74401386, 6674989.0625, 6675970.532246156, 6676908.748614899, 6676967.1875, 6677140.625, 6678589.911897856, 6680174.677324465, 6680187.5300939, 6680193.530181967, 6681195.3125, 6682901.5625, 6682992.2561857505, 6683854.506762078, 6687618.445588081, 6691435.881644213, 6692649.865614618, 6693375.0, 6693751.6099564545, 6708799.958702217, 6717973.754230152, 6719557.701678846, 6721632.8125, 6724945.3125, 6726405.735155035, 6730858.651374986, 6732062.812311629, 6733282.306106509, 6735389.123709694, 6737866.757106018, 6741345.307655007, 6747204.987478066, 6747922.108664472, 6754291.914055748, 6756126.153661095, 6757285.9375, 6762070.277837527, 6775446.658851089, 6781267.355654639, 6782051.0100493515, 6783860.4877460655, 6785216.628687165, 6789792.481588983, 6791262.387510714, 6793632.909122271, 6794805.608525435, 6795633.246767519, 6796101.019904093, 6796182.8125, 6797620.013880332, 6798175.0, 6798237.778550613, 6798251.665149073, 6798314.0625, 6798666.234733608, 6798850.191383334, 6798941.431076243, 6799098.4375, 6799213.186552613, 6799276.5625, 6799315.608247878, 6799433.277939245, 6799545.546949089, 6799564.793178483, 6799660.9375, 6799796.615939119, 6799959.654511628, 6799984.578446912, 6800091.507011287, 6800301.982340166, 6800421.590675676, 6800546.676034249, 6800905.528058574, 6800975.879070601, 6801384.375, 6801394.6788922995, 6801504.675852894, 6801655.762867788, 6801712.172636152, 6801897.93310061, 6802028.125, 6802818.052699396, 6803056.511493643, 6803323.4375, 6803502.456858985, 6804015.052708559, 6804074.798800144, 6804543.75, 6804568.768098155, 6804593.75, 6805366.143897532, 6805380.659397136, 6805487.11346354, 6806720.3125, 6807433.189049591, 6819715.625, 6819715.81267874, 6821596.875, 6821729.3890070245, 6824138.327245894, 6826801.326092185, 6828698.878296169, 6829347.669835629, 6829671.875, 6829696.695344628, 6829890.625, 6831651.487566686, 6832748.843579096, 6835995.3125, 6837062.25982182, 6837220.3125, 6840500.118850931, 6843099.95166007, 6843296.875, 6844179.6875, 6844738.201890369, 6848851.24751705, 6851538.739473986, 6851583.900104808, 6853613.729066136, 6854231.25, 6854912.400995287, 6857368.173895845, 6857835.4768627295, 6857886.186369192, 6858767.0920397, 6859101.5625, 6860335.033652107, 6860556.006064604, 6860984.216628691, 6861755.962636389, 6862061.799977511, 6865876.363699401, 6872698.3927710885, 6873081.25, 6873425.8161854725, 6873732.8125, 6875988.304285546, 6876282.998708542, 6876770.002511896, 6876821.562066444, 6877387.106664861, 6878231.860387174, 6878358.298911355, 6878584.3090251675, 6880441.265782693, 6881090.625, 6881732.8125, 6881753.443119397, 6882085.630756193, 6882690.625, 6882954.942194104, 6883031.709568006, 6883243.22385482, 6883464.180411217, 6883870.078024528, 6884531.656655706, 6884603.125, 6884651.5625, 6884691.71233241, 6884799.679247096, 6884845.3125, 6884853.367238064, 6884871.119263239, 6885023.4375, 6885058.0107705295, 6885133.70518632, 6885173.132492692, 6885205.519890277, 6885255.401460236, 6885256.192116252, 6885257.808004518, 6885504.935590513, 6885535.359850911, 6885581.108722523, 6885689.1975512635, 6885701.5625, 6885719.55353447, 6885725.308402793, 6885741.948945365, 6885922.599815814, 6885931.676039073, 6885995.152739161, 6885997.213897257, 6886045.611171006, 6886137.030563461, 6886192.143475338, 6886645.3125, 6886917.1875, 6887011.932277651, 6887026.052339696, 6887078.062568532, 6887212.458169943, 6887382.705260706, 6887546.875, 6887557.581232453, 6887623.4375, 6887916.725097176, 6887932.8125, 6887968.354230382, 6888680.936192576, 6889202.540525409, 6889685.531709671, 6890594.480047707, 6891367.1875, 6891460.9375, 6891853.96488032, 6892038.992341273, 6892201.194087412, 6892885.9375, 6893162.410346915, 6893539.380745551, 6893752.648898452, 6894400.0, 6894701.335362289, 6895567.466913621, 6895858.687607327, 6897246.522021127, 6898046.41833142, 6899103.999721358, 6899105.7903959835, 6899293.670667855, 6899313.21896777, 6899578.487515157, 6900764.0625, 6901844.799790935, 6902059.375, 6902676.004319479, 6903140.56557716, 6904681.340189969, 6906843.68107038, 6907843.614890863, 6909251.5625, 6909348.4375, 6909905.96746058, 6909956.578494716, 6909986.3916448215, 6910134.342461428, 6910555.355189682, 6912201.536409746, 6912707.8125, 6912728.125, 6912775.907548645, 6913124.50240966, 6913175.0, 6913603.032923722, 6913806.477455482, 6913874.74246555, 6913878.682390946, 6914293.210420922, 6914827.637606526, 6914978.125, 6915262.5, 6915476.462747794, 6915732.147657106, 6915883.661476101, 6916641.842069822, 6916775.0, 6916927.774888201, 6917053.125, 6917398.055733212, 6917446.887691709, 6917654.774229719, 6918032.8125, 6918046.188797498, 6918435.035188043, 6918465.625, 6918652.65232464, 6918881.030036202, 6919300.183793993, 6919704.16834488, 6919891.469401456, 6919948.386018055, 6921124.411915513, 6921263.668802071, 6921282.8125, 6921338.108016163, 6921568.529184223, 6921610.164830841, 6921615.554166611, 6921937.5, 6922046.875, 6922057.845581452, 6922069.2802319415, 6922169.186409891, 6922232.8125, 6922263.58677694, 6922272.742218648, 6922280.1395193115, 6922407.8125, 6922425.0, 6922461.360705615, 6922727.453383561, 6923388.462328975, 6923787.5, 6923812.5, 6923824.565341437, 6923888.453846129, 6923904.6875, 6923940.355746354, 6923966.492489749, ...], [52.9871977207531, 6.5116421384649925, 87.66093333196196, 31.45791986728132, 44.20000474227422, 43.64600599289814, 45.386548573965975, 42.723102405470506, 26.777062884936143, 24.665706998425957, 70.42536591388225, 8.806566831414505, 38.77314409342053, 17.975758315588873, 8.576485649777904, 110.56781717843805, 16.365365701226935, 22.52252109607265, 29.644975308697486, 12.894241793413068, 50.52736263792217, 45.86511061237704, 11.379443184245593, 57.6678722200966, 9.382041069470095, 69.75414356513208, 24.88944990545839, 10.055223784838516, 109.25541628234382, 44.68062110075536, 17.56199700791975, 20.44250561266802, 19.3132071774354, 18.062063704171425, 119.64508965616471, 55.99150502132679, 58.582909384829534, 28.938693757417155, 5.714390596057365, 55.254536444800394, 11.599045762319065, 35.65002402048313, 9.683706214527707, 25.60612863183566, 45.32459725267124, 8.987938921878376, 32.72265668582449, 103.35134530695612, 13.864372804839547, 16.583640782705196, 91.39089412989986, 122.86004062856459, 55.572924745790225, 32.22648721798452, 19.28293160946844, 42.986607454934514, 55.53860266623752, 27.095545725528254, 21.030753893307573, 16.185834758530078, 36.69514813618311, 46.11263629185021, 6.709574335686494, 16.893831777966934, 23.99049574629347, 18.347354543269958, 13.270009322654648, 60.608782700850625, 60.665860268968615, 25.53863688614554, 34.647881363661924, 12.435240462171285, 58.50686625286387, 67.86471251039507, 14.637606277566686, 21.859580585041357, 48.237332469974014, 10.703435277036425, 103.5109545687247, 57.75629598846843, 41.18203922101428, 7.8031334516040305, 7.953773733121522, 5.094528020944796, 38.95927609887892, 10.760538079742682, 14.627517706751535, 7.281835531745619, 47.82074599299761, 16.094618075049656, 15.169345432539096, 6.711273963421459, 6.7410534037449015, 22.060728211607607, 117.51472889061264, 134.99318054016254, 47.28570423769776, 32.959195431927064, 39.90129045671387, 145.36945014345375, 5.635642599467539, 5.975068178021814, 21.384779281497714, 5.47000131499528, 124.95458927505666, 30.808656348016953, 12.643398512981436, 68.80027201328109, 5.376725176177402, 6.929795970918864, 48.2989557368431, 51.91756679635219, 16.820252626388122, 90.04923734161109, 12.8496244131818, 60.89146908882645, 7.988506832134682, 76.79355611845378, 69.10826137469834, 34.85478057803975, 59.52917361019097, 5.254836147738219, 66.74581641434801, 5.782727561469355, 58.78516855600529, 38.63199775232642, 73.32173304372287, 13.788815785585472, 15.541346849922242, 51.773516459949214, 12.493343605147153, 77.81219712506378, 7.458502331804233, 75.2375716790604, 29.11273860644288, 19.50632486597683, 14.858755194031428, 19.630134521890497, 90.86694691916585, 7.004913121591315, 9.196683501776377, 43.8253245220598, 29.37542782825988, 60.93003436269886, 12.111315451248695, 61.67379900243761, 8.005625032260319, 77.37769090385558, 22.697416165908194, 18.76856123619936, 24.567857341644974, 48.37365186439254, 52.239059373869246, 86.27863866637344, 8.700938999224624, 7.879024185220973, 27.508476125465716, 75.72336260468488, 34.810740141999666, 9.54500268890525, 17.94546576253617, 22.689799488378767, 7.067446018666857, 9.354824143597579, 13.741614791749553, 28.25635984556379, 40.967315991055, 118.48774930299281, 20.884273080031626, 18.21442994918862, 42.46823211097538, 15.258167374970396, 12.069214627993064, 5.256869124480074, 9.600439945517904, 38.66311308944091, 12.933478106624857, 59.51507195254342, 162.47285588212253, 15.03448260164303, 105.81434241380757, 8.089285509336761, 10.48238364531968, 91.43659863675093, 37.89675118374341, 51.3842888240969, 9.480034380248986, 135.7028355394827, 18.599198605555955, 81.76560664547667, 5.32162526169997, 11.78998951169486, 15.750745293788636, 11.006627057872615, 11.327958569448898, 40.51906400027358, 28.918031973689338, 5.182920187754357, 73.8679914353965, 5.206362691679672, 26.288048498736647, 11.07527747597718, 8.56927883925819, 103.07581759585891, 62.97922486728929, 12.09932200490516, 50.315631521496044, 8.179994916268619, 87.39779460159846, 15.337405429131044, 21.495297668975688, 42.62971776544264, 18.294493324172507, 13.683906263249025, 70.26005530608235, 95.26939351305626, 25.256097946404417, 58.41067882816448, 9.483000737987537, 5.214628544971112, 13.195310473747012, 30.017111490395024, 71.08236864562384, 34.911818371806774, 22.095988939635046, 5.638598898504971, 16.679549299673422, 90.14732487011885, 63.78595397041258, 26.68159200375255, 5.128203520537778, 12.72731456122212, 17.98442760967197, 30.800309276638217, 21.16482667772349, 17.84573382058204, 5.038121462201982, 10.624666777570155, 10.188059334340632, 10.450675866330087, 6.565754177618904, 21.920549620726188, 91.16572995670384, 24.885201142706748, 67.61953815137849, 20.669132893562793, 104.85601667187117, 141.34395235193057, 50.733315685939836, 6.71435686613742, 103.2054984420196, 30.916082279971707, 40.65250722957098, 60.599263157058864, 72.28579357377183, 24.41802554751171, 109.26214845480017, 228.42868298397528, 5.234655040446011, 74.95818177506652, 22.42539377760044, 15.771968899693366, 34.11287663682638, 5.9207185355303835, 35.18999228937878, 108.37975450295625, 38.611360432823936, 71.65524186815034, 11.884429112437543, 85.92086161751114, 8.970275119308075, 5.20558960609282, 45.424365602590456, 10.952768098564528, 75.49965743869471, 5.849630659760158, 83.11014688409053, 17.42122427220471, 34.429506714722805, 141.48085008940234, 16.939678802354354, 14.345989700470287, 31.417840018028592, 73.83804232294239, 61.919218463354525, 62.48576835580615, 34.59893758110602, 96.80333954962573, 22.00631629403358, 10.483309574842467, 85.98448148636133, 12.932329298112442, 64.85592974487861, 16.618954481627895, 5.289985877549936, 11.055323747477816, 59.96167914450973, 58.09302276615732, 86.18056444573475, 18.554991018368476, 21.98790529632946, 8.868783942063693, 23.996834988686313, 17.46456635120799, 66.0732545361667, 22.58148116073457, 87.43693135788578, 13.744764037843781, 37.9521283087204, 66.26377986970229, 30.49873451151958, 45.98113170111987, 43.593643644978044, 144.52351591560932, 8.893760905460308, 25.042247556373823, 11.70372587788241, 29.289693851042557, 13.919065793582075, 7.040879277795767, 172.80811219814643, 45.807254041063615, 41.84171244540286, 36.488956918022815, 5.849218774110417, 22.927352246526695, 5.531203464082952, 64.51662779623295, 29.326896029587438, 21.943415052477352, 41.36129892071965, 68.82425781668023, 71.38765925129755, 25.268203411042293, 46.36695981822061, 53.869604041553956, 5.292900113491094, 95.97174250541934, 139.53644494198758, 97.83067026447753, 28.8496571110479, 60.49332952274661, 45.0479602475519, 6.259878180735854, 14.098275784396927, 13.011755819096443, 28.722409253267692, 11.383001331557148, 30.957785629829658, 5.6707540147804565, 51.681817328938806, 31.97556541238036, 15.490580827118011, 80.8161283390073, 35.15045793307886, 20.385863801425188, 15.808832919761452, 50.65099204883418, 80.66411404848189, 80.27917642663431, 37.03199790916234, 15.285504006964365, 28.237898694925736, 27.813149644508876, 14.575474797919284, 50.3290306405971, 45.14086644045699, 53.00044531791238, 78.03138811706098, 14.972643623466125, 26.393050622437457, 49.47148505601772, 43.79325778438054, 56.53732997362247, 6.266725304560678, 70.60167747643749, 76.24324195778837, 38.20769101101696, 13.820799305703208, 7.039667231635633, 47.59142489943947, 10.80750135553581, 8.544044986849096, 5.289158667181806, 58.4228312707183, 94.90844592212153, 14.972998882245026, 51.70163138757012, 12.67584581213805, 124.64122764445605, 32.216751735666605, 5.755453681747997, 22.67211166725589, 20.063759634412058, 30.235511861523097, 26.925982460801997, 76.27624312017453, 5.217481384725091, 24.134785396866377, 17.990989860637807, 6.474667235287884, 5.664113140666052, 26.633667689122078, 13.729054309148097, 31.893065737896286, 177.16201493105902, 23.483149337175547, 66.9898259429865, 68.0463522568361, 6.768289082063707, 9.996790261095073, 30.830745790304384, 42.79210150301189, 95.1923508492345, 26.60979276492384, 82.97390064925891, 5.20026802563542, 28.674246363810404, 23.582099859040465, 11.241974552451143, 41.18888931807152, 5.236159353757149, 30.74267952523828, 57.29392729750582, 50.621645773110615, 81.77042868238053, 28.383270963459612, 11.2658095426908, 40.645748529578945, 61.64070405062406, 57.144619672216024, 16.64665850298179, 5.263575204450993, 9.79235997205216, 55.52868383256026, 63.39884191441634, 56.380430029606416, 28.113029577919214, 41.759494505458484, 8.715528608375447, 63.272195414995515, 91.19056338488414, 14.666638454310558, 42.426711765132424, 29.61839992874213, 14.456636603285633, 22.66515726407684, 24.5474220544045, 11.42044382177157, 37.05184918750849, 6.987928191566206, 77.73739032017389, 58.1311405681381, 5.535700382722489, 6.703361950820537, 10.949260065551023, 38.310408275395964, 22.863034685516713, 39.376948381967836, 100.33517483074664, 48.04706526702555, 71.822039436558, 10.399323641186434, 17.654995120823063, 23.08865572616596, 9.034784748775586, 39.947505055070124, 5.409676766040337, 20.254599829120654, 10.094555053211831, 48.46703111478942, 12.843089976866393, 10.240072160954197, 158.22771971871668, 70.29233480510683, 45.61660572470809, 57.37994865869813, 106.57311038387262, 151.93942482583685, 25.941323383355293, 147.5714190541752, 27.344501998163793, 10.846561759478703, 69.1936353411274, 135.75834992473585, 30.737026375383085, 37.73608633213212, 41.08219454365331, 36.25068984835715, 16.957609950240375, 18.51924226277249, 12.812450670247209, 109.7433422879684, 45.654154569962984, 62.05633312356823, 125.78717647804369, 109.40109177668052, 45.246889616816574, 62.09289670675406, 6.022490352628844, 7.135030847441352, 33.246076183733095, 112.18916547745587, 6.049134114485063, 51.432737307668226, 21.978970602731977, 135.85517339369616, 42.41148897160473, 114.59239170421301, 52.63655186143409, 25.828961267347427, 58.09480134591228, 16.745576969443807, 37.30908448885395, 35.94338404865934, 22.968954410144114, 15.61866281932255, 59.47622528612186, 73.77261006653659, 22.43584632248143, 52.971579884490964, 68.07488966481118, 31.3489360440424, 73.36935881160757, 9.022596473847173, 30.223839512941936, 8.572587938470356, 23.184404038963343, 21.135530246547937, 41.036592405746184, 113.61692247747605, 163.323018585066, 30.602581958298767, 25.95302232358639, 8.362894048318449, 33.4764384180442, 132.0761792598764, 53.49109477113947, 84.78289328604666, 110.59533320819932, 33.10756846157047, 18.87538107927649, 15.651645555343446, 7.012250879617668, 113.8289858492157, 190.62520882318466, 28.034015432553026, 31.43507385915722, 13.390724120598753, 49.050041602494176, 39.08148197175604, 74.05732413010728, 5.376937316874123, 32.89220736419985, 12.092244569385375, 65.78013821692842, 23.444372536839154, 66.82426766076473, 54.20664235479439, 51.76742696586489, 65.41293877356647, 110.0186547436124, 60.133637875138795, 59.04309437592371, 32.133718306981535, 28.931168190610958, 84.80654175644787, 54.833758187366335, 64.03310088465615, 23.64029184453227, 34.86245418395876, 37.239425404494575, 20.407423520586377, 19.292882864996688, 65.4144162378926, 78.0136638705442, 9.68303135066119, 78.81673701512015, 50.291140736242006, 6.989609050571529, 16.36371905237403, 54.43953149884801, 26.335534169705305, 55.15986617254909, 69.38686661106931, 34.76301820001944, 70.92858418609143, 6.604491424826812, 27.468371828383617, 71.46328985801458, 6.4287176487157955, 20.016837639669863, 54.33581143674991, 36.44284045883851, 112.1580080163031, 82.57499145867227, 47.541694906164985, 26.238053440480368, 69.9794762901326, 180.3735146040625, 9.059649702344082, 16.776465168019783, 102.70334658588236, 42.805433999957174, 139.73019840867568, 28.816196666196557, 159.04066170638797, 6.666682706946253, 133.42146445788822, 82.66409604278613, 28.626609823534537, 38.06950324659309, 18.828297077882805, 14.398223836687897, 83.76563899987747, 27.466873486272256, 94.80379886856906, 50.964695910533045, 23.073772123666824, 113.50530317672607, 108.62434851185586, 6.052185558151524, 87.1661663862773, 5.369047281241827, 130.9441304312296, 17.206118979628776, 60.62780805567485, 150.52530279828449, 169.59017496212576, 61.14533823128551, 24.043690189639182, 11.593095063511097, 13.713995141478156, 21.80897592801808, 59.492745896733815, 40.05437540160343, 10.126170447739124, 25.078673375553077, 66.19130784159394, 5.212224420567916, 118.25345781638352, 7.939597324349218, 113.46604241807634, 32.35400010936139, 18.952541125648718, 5.219684956826973, 7.957920918253462, 53.10714397987949, 97.88593013364193, 18.406230727935156, 13.33358054860013, 31.647254119288526, 12.009745930801426, 5.214112703726813, 20.22701489591713, 105.50929254617239, 83.58041477414521, 54.469923904566286, 12.885768297952291, 300.0322733426407, 59.89830053200795, 43.24337599798474, 20.461842917688408, 16.018177666382467, 90.52603659795365, 17.92239223278423, 26.85539753858744, 11.86679683702793, 9.639559408546614, 48.646785097897954, 23.8477309159156, 18.53586087630162, 179.33890450023094, 24.001822231208426, 29.20230916778784, 8.055837353072379, 73.08288707122601, 61.583913420916694, 5.07091909511414, 26.930407495762203, 113.88579530048912, 8.134052576075756, 8.446667847813066, 41.30236711893289, 19.858265974449495, 42.82727085321979, 22.57468405189806, 53.92404262991728, 25.406252767182778, 9.098230206402189, 24.955511761717737, 19.039652868546685, 18.9865783902827, 136.24453868363872, 6.649697597753813, 27.216666677290693, 6.7944425375997834, 51.80117442179905, 31.617420377801704, 37.20700168932786, 49.733469135090296, 6.295366741957722, 41.04889900628199, 52.92901440528977, 89.77233881297538, 12.777990852296849, 13.839430641969283, 21.605393620797045, 29.015847959336938, 69.86382142659168, 99.54609979585062, 11.236791505039752, 73.83510520390855, 5.448850790575644, 9.28461633566049, 119.30835748841888, 54.78694309223141, 21.583493869625514, 40.13676224640614, 16.303813262245658, 19.251753905165597, 90.88494965929414, 70.59600444343421, 148.6714294455865, 19.519000981492397, 8.458939292673096, 202.6067529111933, 15.180059988470024, 18.496240683602903, 28.429543895627514, 23.1589817195917, 45.41043248845036, 84.92743181060669, 13.582846906580597, 96.10038596226843, 25.768311592539458, 87.42953935614312, 15.623662434835673, 27.85051102791569, 254.13527852827067, 17.65102470778433, 9.593100150555266, 129.4910600482316, 5.205890568648253, 6.641859748343128, 11.881873229249559, 6.033434831714805, 33.05293808722409, 61.02818146956587, 60.33249913212586, 16.12132834726773, 16.378843298112827, 105.27573981878861, 31.468454091808034, 22.03509052295434, 122.92540884943061, 54.86196451949039, 18.41554519343968, 74.65187201065166, 80.84458382405131, 11.94250208408756, 70.80002001110589, 6.167528752166642, 66.95127271916513, 56.28190445604877, 7.1969176885417205, 35.07491841420793, 19.86362995054084, 16.826116504659744, 23.953063406122126, 123.11520744215181, 44.95358495895945, 10.204654534981213, 61.096221163780996, 5.374791907781054, 14.897301162969786, 37.93818773270449, 9.069132574794859, 6.2055072786528225, 38.21203759889122, 32.86249866383997, 11.56261269409768, 193.59610415837128, 116.75548401615038, 173.5091522824848, 100.22212235790795, 94.37982186912132, 15.010942744873915, 32.17542395145397, 32.26490981059096, 5.889571210484997, 50.78727970057609, 187.90426456043718, 25.129659243251783, 37.7555901806536, 15.70859477535814, 60.96209238557525, 39.4801063943825, 5.431069415526171, 61.156640422967804, 28.454337484808917, 91.330421780495, 56.31637351246946, 8.193803825706658, 60.18685418797989, 27.125379529034078, 21.312957849226855, 31.747021138883035, 22.934644529544087, 40.65335487768196, 6.50588495794835, 149.8672489062733, 128.67333601548793, 77.22611090171817, 5.1457917044801, 6.438823045304056, 10.657736923984215, 31.634912980350848, 103.68495788156925, 119.4077448938645, 26.709449991570196, 13.122337782433872, 58.49438439579276, 15.98326143841904, 34.83786328970307, 80.19743466038473, 50.45500704785141, 62.22271398607102, 33.51521541636143, 9.099692551798874, 32.94534050732199, 5.922277752744046, 5.340391318725157, 38.22564202512012, 7.9277628356594905, 39.085943918804126, 50.46692663344169, 122.85684305536643, 79.11152539490826, 73.58274142790373, 44.651667775283656, 82.59269189766138, 8.561715789674059, 14.695868804100204, 5.144437217166243, 44.169308283395694, 57.176693683726654, 9.615700843299436, 8.130764392634836, 59.411061672657105, 11.550599781047355, 24.636172137230723, 15.025198906692143, 54.890676325430164, 9.140709918338331, 37.82153198073577, 102.21809559001775, 31.863434619357175, 21.744445805938035, 23.489222912680898, 96.93502753774413, 15.952856854852536, 23.38764902973039, 68.94608624284412, 50.47194810450717, 82.66169272117152, 13.8938138611131, 33.218204000703324, 12.463108741171776, 34.03342776885214, 70.96146951316683, 8.42227866180616, 20.75196970384189, 8.213254192861188, 15.48252123717937, 42.166028964784154, 104.92016958188191, 35.272523756777616, 39.419810167757866, 27.681201712163876, 11.866029850607074, 14.365641553510123, 138.0887238863888, 7.71495604627112, 73.21270108298654, 7.587391947745827, 66.91137121605682, 69.45107242027801, 20.843127159180924, 21.392341030441322, 41.88190860506662, 6.261927867675448, 10.964122441824124, 50.21367914164113, 28.98094647748651, 133.45003939401784, 68.50545485978482, 34.059375821696186, 10.560737920573388, 17.702211588869954, 50.370390879579176, 13.591688518507567, 72.40542098371606, 62.042160868557865, 65.06377045493969, 10.159271340132728, 5.243185927551302, 40.147117850678306, 42.76341213836436, 26.869220404732992, 16.311173017810265, 13.391978308981013, 32.1256094989591, 5.094011822262187, 16.125391729130246, 19.807424285201513, 104.9966268317326, 28.16146536656985, 25.31891368947593, 29.59252544599459, 27.048221264341837, 18.636721723054556, 87.41700044174817, 59.22254995843722, 35.975669472233676, 111.08464622080105, 30.47947018014147, 41.706446682890856, 22.88062146473773, 15.981105850454961, 10.922891506225183, 124.71738576654361, 86.18896547449539, 23.97636841869519, 6.122939195222876, 82.51341569495366, 168.63730142713592, 77.03700045753703, 14.842989409944066, 34.582515320568405, 40.94145690660632, 56.311604718223556, 41.323384868480915, 41.72085861744965, 32.91326683515558, 5.831003923852748, 22.587959566900363, 45.070961232512076, 28.062698282117545, 13.36070545702566, 31.117077279695106, 77.79420258449775, 26.696776984267213, 65.9902327563939, 161.90992641666062, 23.187276399660213, 86.5973995013799, 29.29494577377928, 103.70254484126895, 22.75960553334687, 63.11746191187206, 8.332980215182243, 28.933231211896665, 5.433065108216488, 7.860845295268857, 122.78812293272055, 8.051494174525931, 7.525571910926146, 77.97904930921652, 33.85560494999276, 19.56229676357709, 17.770934810888708, 50.13899154538474, 22.623380254969316, 42.91567732496557, 14.40491155004528, 24.817803258388107, 19.145299455382858, 11.018765699353306, 64.3015021738199, 47.11772545369801, 5.534688245956289, 5.307751635778073, 5.978333651978751, 38.159263990353004, 29.379064069349397, 30.092674828441464, 8.541008919154292, 46.32152604646816, 60.387075272394576, 33.54584572414858, 12.87938243805299, 25.887923738930215, 77.18245331036489, 56.15422879924923, 5.089996338827403, 66.6143980063024, 54.72239134058713, 24.151592748845893, 25.53708589500919, ...])
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);
([3820612.5, 3820992.3423482375, 3884078.125, 3895815.7085931194, 3900885.9375, 3908396.875, 3914532.209452221, 3917661.8606948447, 3917890.282299137, 3918051.8840021393, 3919433.656664225, 3919935.243925473, 3925609.375, 3926503.7439749446, 3964495.823237366, 3967010.5013298173, 3977433.141846907, 3977713.055829654, 3978654.6875, 3978730.584380872, 3979179.6875, 3980879.6875, 3982622.0302966856, 3983302.9875556533, 3983851.621786045, 3985709.375, 3986279.3378597554, 3989531.997683196, 3989749.1503623296, 3991556.25, 3999624.5775946532, 4001638.4503130764, 4002298.4727489958, 4004467.820078166, 4005784.179661206, 4008234.375, 4018123.4375, 4023418.75, 4025298.556764539, 4030998.376520288, 4033221.586348073, 4035415.308282517, 4041566.014201603, 4054296.2222842025, 4054590.625, 4077010.5013077706, 4086977.433410685, 4092375.0, 4092387.185452808, 4095631.623065744, 4099901.5625, 4106930.222529544, 4107734.375, 4136112.5138161923, 4146141.662210298, 4155517.1875, 4171905.252437169, 4172095.235869383, 4184724.6593534593, 4186209.6671810327, 4187883.9327132446, 4195359.142334838, 4206188.786216412, 4206755.377193674, 4213221.54128169, 4215893.10159616, 4218269.79191108, 4219451.390597069, 4225931.25, 4227282.764828631, 4229456.25, 4229622.576466196, 4230751.5625, 4231724.261063063, 4234731.167915206, 4238759.32273204, 4244617.1875, 4248226.272977012, 4249240.625, 4250348.4375, 4250741.615401283, 4257716.145814233, 4258507.125264083, 4261343.549380065, 4263505.973794722, 4266941.93917111, 4273834.2901071245, 4274052.139404959, 4284569.95267287, 4293294.022862859, 4297903.278987747, 4299677.857614745, 4302985.823982857, 4319933.9300797125, 4324509.375, 4325571.525436324, 4334409.375, 4336977.261678076, 4341117.149525842, 4347485.9375, 4349748.821420712, 4350670.71309848, 4356819.801572344, 4359329.877964701, 4364785.9375, 4367599.3689095555, 4368538.292763202, 4370469.2495397935, 4370508.794197591, 4370522.6545291925, 4371641.6864982685, 4375754.6875, 4377482.26903668, 4377484.217741077, 4377512.486612778, 4379893.75, 4380305.640341321, 4380675.910598957, 4383448.09096241, 4385188.177089689, 4385752.82675741, 4388628.467597633, 4389267.932871957, 4389330.818490468, 4393076.5625, 4393832.8125, 4395863.800819005, 4396541.8599353265, 4397151.71144963, 4397862.5, 4397922.602418721, 4398379.344935874, 4398635.518776916, 4398640.625, 4399750.0, 4401962.110526268, 4402811.987798531, 4404683.317637356, 4405117.1875, 4405801.099806923, 4406967.023757078, 4409668.79155572, 4409832.469700412, 4411164.826075909, 4411448.16204435, 4411806.25, 4417908.80303495, 4419385.260574668, 4421525.088747394, 4424027.30031726, 4444987.7136793, 4445700.0, 4448803.125, 4454281.308805313, 4454327.271674049, 4470549.140649499, 4474709.321473406, 4482499.642445172, 4483275.0, 4483854.929754733, 4488300.204196175, 4494038.674641452, 4499968.540490872, 4503123.465069613, 4507198.082531422, 4509160.923787824, 4509252.272205128, 4509384.8327477835, 4509868.801162375, 4510366.307873814, 4510466.933928896, 4516998.518170198, 4520434.904008923, 4521450.4135534065, 4526158.114415718, 4526473.4375, 4531758.725117202, 4553456.416469388, 4571860.9375, 4578881.84421343, 4581209.375, 4586885.544805276, 4588204.231292708, 4588338.214756829, 4589882.8125, 4607998.4375, 4608656.420699846, 4612663.172942167, 4614608.5260392735, 4623895.3125, 4623930.645484507, 4632623.823559786, 4632661.134760351, 4634670.233630813, 4637079.811945415, 4638051.5625, 4639958.541561402, 4642589.800795012, 4646269.501409059, 4647843.865038561, 4648942.063176938, 4650429.65369638, 4651161.436388932, 4652809.778813971, 4656917.07343194, 4656963.043808192, 4660193.75, 4663141.980362234, 4667482.8125, 4668353.225130041, 4669018.250220254, 4669223.4375, 4671670.9808765305, 4674750.697844942, 4678006.25, 4679468.984373938, 4681334.184368631, 4681353.066333504, 4681359.549006296, 4684444.184260004, 4684893.201560316, 4684910.9375, 4699703.125, 4708194.764782655, 4712997.995885082, 4727220.747979162, 4727543.578142383, 4732942.1875, 4747417.231735938, 4748843.530021278, 4752726.45463183, 4756314.609440735, 4756647.495349148, 4758598.875643552, 4759211.966450194, 4759894.348152657, 4764502.920918111, 4767337.152425434, 4768535.239810455, 4771471.393895023, 4771852.0466027595, 4773439.154378285, 4773954.6875, 4779213.846409547, 4787484.375, 4796769.725734164, 4798912.348572044, 4804358.787611913, 4805496.875, 4818505.9987226995, 4819285.9375, 4821346.875, 4821407.8125, 4821804.6875, 4822834.344568143, 4828749.0221997, 4838529.895387064, 4841274.988880787, 4842848.058309647, 4848429.6875, 4848646.463641263, 4848947.077058142, 4848964.061503269, 4856396.65788824, 4860088.39405073, 4870340.625, 4870911.5396054145, 4874781.25, 4876019.185591711, 4901979.6875, 4902101.102126902, 4902632.897372065, 4904245.3125, 4908576.447620451, 4911763.216320772, 4912058.282966727, 4916001.283253966, 4916148.870159976, 4916840.625, 4924838.6397655895, 4926634.816127883, 4926982.64696286, 4927028.125, 4927043.276293784, 4927396.939088164, 4928228.4259595135, 4929674.267568341, 4929882.8125, 4930240.575277076, 4930597.982015909, 4930681.25, 4930711.849658497, 4932115.625, 4932131.6299927775, 4932285.901803101, 4932590.5781926885, 4932618.54398449, 4933042.1875, 4933512.5, 4934078.858334361, 4934469.860711433, 4935230.647037944, 4936487.939425133, 4936697.409735183, 4942549.899892083, 4943331.554630189, 4943424.347344602, 4944151.208581579, 4945019.96886906, 4945698.4375, 4946443.082480168, 4946946.875, 4947233.765046102, 4947314.0625, 4948440.057718213, 4952944.560099428, 4954322.214706293, 4954425.272583946, 4954896.578128459, 4971532.496857582, 4972447.961909383, 4973381.076091623, 4973390.94918689, 4973397.854629447, 4973633.277657815, 4973954.787670853, 4973962.461263053, 4974062.321309485, 4974492.999176783, 4975137.043987386, 4975303.546569309, 4975373.325121305, 4975910.9375, 4976088.330148107, 4976309.375, 4977259.375, 4979189.121077571, 4981243.75, 4988042.1875, 4989215.625, 4989219.280190595, 4991600.0, 4991879.6875, 4992082.7543404065, 4992666.947157708, 4992680.631086429, 4994234.375, 4996098.594912189, 4996190.625, 4996325.981514727, 4996803.125, 4997710.9375, 4998215.76196412, 5000019.455248238, 5001892.1875, 5007772.818847349, 5009285.705526173, 5011772.040660606, 5014861.998517791, 5021727.410267536, 5022001.5625, 5023750.087415546, 5025478.201695291, 5032188.437864988, 5035537.400533452, 5037118.232608608, 5037526.5625, 5038068.75, 5038584.375, 5040543.758144513, 5040617.744023521, 5051759.074767325, 5052935.8260544, 5053700.372344951, 5054139.058754803, 5055045.3125, 5056785.427550517, 5057188.939587067, 5057222.250035189, 5057259.054465739, 5057268.75, 5057854.472505694, 5058006.707083094, 5058417.124938064, 5060340.625, 5060684.50417764, 5062423.445737171, 5078567.1875, 5084039.869083823, 5093326.584744109, 5096596.730977603, 5098614.801386061, 5099965.235590524, 5101176.33842138, 5101617.1875, 5101787.84624529, 5102378.77216591, 5102409.918044367, 5103314.545981441, 5103319.371388196, 5103770.23278399, 5114249.3084111195, 5120731.146512763, 5120769.953335959, 5121509.485633851, 5127173.5019198675, 5128351.241258389, 5131332.554493029, 5132337.5, 5134556.27390831, 5135006.944418635, 5136348.4375, 5147628.557153384, 5151409.375, 5157555.843717765, 5163649.035286244, 5166424.875754229, 5169212.5, 5169491.621700316, 5169875.071895281, 5169945.3125, 5170001.2382289935, 5171112.033296682, 5171270.3125, 5171355.155916677, 5171456.25, 5172067.233508346, 5172501.649092962, 5172509.375, 5173067.1875, 5173093.75, 5173376.947899299, 5173680.332905652, 5173778.624094018, 5174037.5, 5174648.4375, 5174829.456963829, 5175298.41635149, 5176437.5, 5177860.106698075, 5181076.5625, 5183371.875, 5185848.222999012, 5187693.75, 5190240.891762659, 5190245.179193061, 5193167.704369848, 5195351.322410746, 5195843.929544856, 5201041.06580921, 5202665.091475812, 5204034.033472844, 5205342.1875, 5205406.3038625205, 5206230.941082997, 5206276.445254616, 5206306.25, 5206346.50217476, 5206974.770420023, 5207406.7587988535, 5207789.0625, 5208758.265173169, 5209997.915519652, 5210833.379371876, 5211066.833837651, 5211199.627056873, 5211210.9375, 5212045.602483736, 5212060.30368654, 5212105.470426553, 5213660.227933867, 5213855.56364766, 5222943.096736602, 5226416.405654976, 5226476.5625, 5227940.625, 5236248.4375, 5241496.039359315, 5256506.098258797, 5275222.607579278, 5275371.875, 5275563.9998981, 5280148.249864459, 5280149.457422199, 5298833.111199264, 5301171.875, 5302506.979585189, 5309337.406017428, 5309793.75, 5316252.006954131, 5318689.764376118, 5322782.6031212425, 5322948.351687839, 5323460.9375, 5328218.75, 5332874.249827033, 5340074.145763762, 5340422.36077209, 5340673.273175299, 5341247.782042638, 5342342.238906873, 5342481.25, 5343271.875, 5347365.241779509, 5348154.6875, 5358012.42870691, 5374612.5, 5378570.3125, 5380824.614687066, 5391692.1875, 5396649.846964405, 5396654.6875, 5402605.890896489, 5408898.4375, 5411234.838511632, 5414507.4487287365, 5414842.3544961745, 5415814.0462056175, 5421002.417764008, 5435348.027083312, 5435700.0, 5440817.121966836, 5443530.694149725, 5444659.375, 5446737.110722523, 5453829.6875, 5455278.629334298, 5455418.669796546, 5457665.088392346, 5467970.3125, 5479559.078772352, 5489873.4375, 5492229.6875, 5498780.786841696, 5505036.07908072, 5505338.367332222, 5510799.207654455, 5515266.068828456, 5528493.75, 5532837.029853314, 5534710.660093125, 5535036.690338917, 5540327.519897198, 5542771.442628938, 5542787.540951662, 5554108.796110225, 5554511.640498964, 5555360.863814255, 5559841.710947094, 5560213.44189699, 5564631.51582972, 5565534.375, 5566785.362480056, 5566979.090619238, 5567869.2903396115, 5568645.3125, 5570398.957117636, 5571612.614562455, 5572246.875, 5572824.350350096, 5572831.047940455, 5573137.5, 5573812.5, 5575885.9375, 5576181.25, 5576553.125, 5576612.446650652, 5580846.875, 5583846.875, 5587727.816303811, 5590337.351028938, 5601065.48571343, 5601116.23120244, 5610348.439542427, 5611273.98595071, 5613762.398138453, 5626294.138505088, 5687390.625, 5721040.077741959, 5726347.911025817, 5814892.516511065, 5822921.7723221695, 5848992.834489701, 5871881.837779517, 5878828.725965525, 5883904.545900806, 5884275.0, 5960625.710157604, 5971742.131765681, 5971864.044107752, 5983077.742232649, 6091177.463079055, 6222696.598403411, 6250010.9375, 6380809.950761881, 6404367.945936786, 6411184.375, 6414013.935108519, 6420315.625, 6423213.580681406, 6435334.035118705, 6435762.910410709, 6437399.9275834905, 6438851.3932127515, 6445313.354231989, 6447895.3125, 6459243.75, 6464329.182361988, 6466408.099772138, 6469228.125, 6472380.996192977, 6472917.617339369, 6473416.366401518, 6477198.287266407, 6480007.8125, 6484862.44418305, 6491231.897164546, 6499464.0625, 6519359.020087745, 6524255.381895218, 6529110.9375, 6529309.022418516, 6530784.375, 6530891.395816954, 6530944.324483215, 6531222.364598457, 6532098.156102793, 6533221.875, 6533281.25, 6533328.842752627, 6533513.785092968, 6533853.403646209, 6533859.010791069, 6534518.410036017, 6535626.5625, 6536306.25, 6539982.060908847, 6540402.922303457, 6541599.573211954, 6541656.592035794, 6541725.971954293, 6541878.968170928, 6541886.409254781, 6544458.569773785, 6566941.388553049, 6567905.314089879, 6570138.384605153, 6571428.125, 6573284.062670926, 6574219.435165142, 6574638.565248759, 6586379.81620042, 6589322.990015314, 6589442.6020144755, 6593393.112968668, 6595536.340905272, 6599007.754867371, 6600767.1875, 6606455.580963481, 6607577.216628788, 6608190.625, 6614035.9375, 6615099.99087224, 6615545.568941711, 6618865.946763565, 6620952.172977054, 6621562.319725014, 6624049.719068896, 6624387.8432650175, 6625242.1875, 6629643.457555193, 6633612.73649142, 6634617.33234617, 6634663.7819052255, 6634886.089333061, 6635122.974099094, 6635551.361604148, 6635695.3125, 6635840.735930725, 6636286.334524041, 6637985.9375, 6638509.074989519, 6639245.603442394, 6641921.875, 6642813.381354568, 6644153.808580909, 6644635.539493824, 6645060.9375, 6645331.0694206655, 6646323.148234007, 6653793.886791999, 6659126.517614758, 6659138.410115707, 6660380.679545702, 6664954.089389778, 6666365.555232697, 6668057.96550682, 6668251.5625, 6669409.375, 6673196.74401386, 6674989.0625, 6675970.532246156, 6676908.748614899, 6676967.1875, 6677140.625, 6678589.911897856, 6680174.677324465, 6680187.5300939, 6680193.530181967, 6681195.3125, 6682901.5625, 6682992.2561857505, 6683854.506762078, 6687618.445588081, 6691435.881644213, 6692649.865614618, 6693375.0, 6693751.6099564545, 6708799.958702217, 6717973.754230152, 6719557.701678846, 6721632.8125, 6724945.3125, 6726405.735155035, 6730858.651374986, 6732062.812311629, 6733282.306106509, 6735389.123709694, 6737866.757106018, 6741345.307655007, 6747204.987478066, 6747922.108664472, 6754291.914055748, 6756126.153661095, 6757285.9375, 6762070.277837527, 6775446.658851089, 6781267.355654639, 6782051.0100493515, 6783860.4877460655, 6785216.628687165, 6789792.481588983, 6791262.387510714, 6793632.909122271, 6794805.608525435, 6795633.246767519, 6796101.019904093, 6796182.8125, 6797620.013880332, 6798175.0, 6798237.778550613, 6798251.665149073, 6798314.0625, 6798666.234733608, 6798850.191383334, 6798941.431076243, 6799098.4375, 6799213.186552613, 6799276.5625, 6799315.608247878, 6799433.277939245, 6799545.546949089, 6799564.793178483, 6799660.9375, 6799796.615939119, 6799959.654511628, 6799984.578446912, 6800091.507011287, 6800301.982340166, 6800421.590675676, 6800546.676034249, 6800905.528058574, 6800975.879070601, 6801384.375, 6801394.6788922995, 6801504.675852894, 6801655.762867788, 6801712.172636152, 6801897.93310061, 6802028.125, 6802818.052699396, 6803056.511493643, 6803323.4375, 6803502.456858985, 6804015.052708559, 6804074.798800144, 6804543.75, 6804568.768098155, 6804593.75, 6805366.143897532, 6805380.659397136, 6805487.11346354, 6806720.3125, 6807433.189049591, 6819715.625, 6819715.81267874, 6821596.875, 6821729.3890070245, 6824138.327245894, 6826801.326092185, 6828698.878296169, 6829347.669835629, 6829671.875, 6829696.695344628, 6829890.625, 6831651.487566686, 6832748.843579096, 6835995.3125, 6837062.25982182, 6837220.3125, 6840500.118850931, 6843099.95166007, 6843296.875, 6844179.6875, 6844738.201890369, 6848851.24751705, 6851538.739473986, 6851583.900104808, 6853613.729066136, 6854231.25, 6854912.400995287, 6857368.173895845, 6857835.4768627295, 6857886.186369192, 6858767.0920397, 6859101.5625, 6860335.033652107, 6860556.006064604, 6860984.216628691, 6861755.962636389, 6862061.799977511, 6865876.363699401, 6872698.3927710885, 6873081.25, 6873425.8161854725, 6873732.8125, 6875988.304285546, 6876282.998708542, 6876770.002511896, 6876821.562066444, 6877387.106664861, 6878231.860387174, 6878358.298911355, 6878584.3090251675, 6880441.265782693, 6881090.625, 6881732.8125, 6881753.443119397, 6882085.630756193, 6882690.625, 6882954.942194104, 6883031.709568006, 6883243.22385482, 6883464.180411217, 6883870.078024528, 6884531.656655706, 6884603.125, 6884651.5625, 6884691.71233241, 6884799.679247096, 6884845.3125, 6884853.367238064, 6884871.119263239, 6885023.4375, 6885058.0107705295, 6885133.70518632, 6885173.132492692, 6885205.519890277, 6885255.401460236, 6885256.192116252, 6885257.808004518, 6885504.935590513, 6885535.359850911, 6885581.108722523, 6885689.1975512635, 6885701.5625, 6885719.55353447, 6885725.308402793, 6885741.948945365, 6885922.599815814, 6885931.676039073, 6885995.152739161, 6885997.213897257, 6886045.611171006, 6886137.030563461, 6886192.143475338, 6886645.3125, 6886917.1875, 6887011.932277651, 6887026.052339696, 6887078.062568532, 6887212.458169943, 6887382.705260706, 6887546.875, 6887557.581232453, 6887623.4375, 6887916.725097176, 6887932.8125, 6887968.354230382, 6888680.936192576, 6889202.540525409, 6889685.531709671, 6890594.480047707, 6891367.1875, 6891460.9375, 6891853.96488032, 6892038.992341273, 6892201.194087412, 6892885.9375, 6893162.410346915, 6893539.380745551, 6893752.648898452, 6894400.0, 6894701.335362289, 6895567.466913621, 6895858.687607327, 6897246.522021127, 6898046.41833142, 6899103.999721358, 6899105.7903959835, 6899293.670667855, 6899313.21896777, 6899578.487515157, 6900764.0625, 6901844.799790935, 6902059.375, 6902676.004319479, 6903140.56557716, 6904681.340189969, 6906843.68107038, 6907843.614890863, 6909251.5625, 6909348.4375, 6909905.96746058, 6909956.578494716, 6909986.3916448215, 6910134.342461428, 6910555.355189682, 6912201.536409746, 6912707.8125, 6912728.125, 6912775.907548645, 6913124.50240966, 6913175.0, 6913603.032923722, 6913806.477455482, 6913874.74246555, 6913878.682390946, 6914293.210420922, 6914827.637606526, 6914978.125, 6915262.5, 6915476.462747794, 6915732.147657106, 6915883.661476101, 6916641.842069822, 6916775.0, 6916927.774888201, 6917053.125, 6917398.055733212, 6917446.887691709, 6917654.774229719, 6918032.8125, 6918046.188797498, 6918435.035188043, 6918465.625, 6918652.65232464, 6918881.030036202, 6919300.183793993, 6919704.16834488, 6919891.469401456, 6919948.386018055, 6921124.411915513, 6921263.668802071, 6921282.8125, 6921338.108016163, 6921568.529184223, 6921610.164830841, 6921615.554166611, 6921937.5, 6922046.875, 6922057.845581452, 6922069.2802319415, 6922169.186409891, 6922232.8125, 6922263.58677694, 6922272.742218648, 6922280.1395193115, 6922407.8125, 6922425.0, 6922461.360705615, 6922727.453383561, 6923388.462328975, 6923787.5, 6923812.5, 6923824.565341437, 6923888.453846129, 6923904.6875, 6923940.355746354, 6923966.492489749, ...], [52.9871977207531, 6.5116421384649925, 87.66093333196196, 31.45791986728132, 44.20000474227422, 43.64600599289814, 45.386548573965975, 42.723102405470506, 26.777062884936143, 24.665706998425957, 70.42536591388225, 8.806566831414505, 38.77314409342053, 17.975758315588873, 8.576485649777904, 110.56781717843805, 16.365365701226935, 22.52252109607265, 29.644975308697486, 12.894241793413068, 50.52736263792217, 45.86511061237704, 11.379443184245593, 57.6678722200966, 9.382041069470095, 69.75414356513208, 24.88944990545839, 10.055223784838516, 109.25541628234382, 44.68062110075536, 17.56199700791975, 20.44250561266802, 19.3132071774354, 18.062063704171425, 119.64508965616471, 55.99150502132679, 58.582909384829534, 28.938693757417155, 5.714390596057365, 55.254536444800394, 11.599045762319065, 35.65002402048313, 9.683706214527707, 25.60612863183566, 45.32459725267124, 8.987938921878376, 32.72265668582449, 103.35134530695612, 13.864372804839547, 16.583640782705196, 91.39089412989986, 122.86004062856459, 55.572924745790225, 32.22648721798452, 19.28293160946844, 42.986607454934514, 55.53860266623752, 27.095545725528254, 21.030753893307573, 16.185834758530078, 36.69514813618311, 46.11263629185021, 6.709574335686494, 16.893831777966934, 23.99049574629347, 18.347354543269958, 13.270009322654648, 60.608782700850625, 60.665860268968615, 25.53863688614554, 34.647881363661924, 12.435240462171285, 58.50686625286387, 67.86471251039507, 14.637606277566686, 21.859580585041357, 48.237332469974014, 10.703435277036425, 103.5109545687247, 57.75629598846843, 41.18203922101428, 7.8031334516040305, 7.953773733121522, 5.094528020944796, 38.95927609887892, 10.760538079742682, 14.627517706751535, 7.281835531745619, 47.82074599299761, 16.094618075049656, 15.169345432539096, 6.711273963421459, 6.7410534037449015, 22.060728211607607, 117.51472889061264, 134.99318054016254, 47.28570423769776, 32.959195431927064, 39.90129045671387, 145.36945014345375, 5.635642599467539, 5.975068178021814, 21.384779281497714, 5.47000131499528, 124.95458927505666, 30.808656348016953, 12.643398512981436, 68.80027201328109, 5.376725176177402, 6.929795970918864, 48.2989557368431, 51.91756679635219, 16.820252626388122, 90.04923734161109, 12.8496244131818, 60.89146908882645, 7.988506832134682, 76.79355611845378, 69.10826137469834, 34.85478057803975, 59.52917361019097, 5.254836147738219, 66.74581641434801, 5.782727561469355, 58.78516855600529, 38.63199775232642, 73.32173304372287, 13.788815785585472, 15.541346849922242, 51.773516459949214, 12.493343605147153, 77.81219712506378, 7.458502331804233, 75.2375716790604, 29.11273860644288, 19.50632486597683, 14.858755194031428, 19.630134521890497, 90.86694691916585, 7.004913121591315, 9.196683501776377, 43.8253245220598, 29.37542782825988, 60.93003436269886, 12.111315451248695, 61.67379900243761, 8.005625032260319, 77.37769090385558, 22.697416165908194, 18.76856123619936, 24.567857341644974, 48.37365186439254, 52.239059373869246, 86.27863866637344, 8.700938999224624, 7.879024185220973, 27.508476125465716, 75.72336260468488, 34.810740141999666, 9.54500268890525, 17.94546576253617, 22.689799488378767, 7.067446018666857, 9.354824143597579, 13.741614791749553, 28.25635984556379, 40.967315991055, 118.48774930299281, 20.884273080031626, 18.21442994918862, 42.46823211097538, 15.258167374970396, 12.069214627993064, 5.256869124480074, 9.600439945517904, 38.66311308944091, 12.933478106624857, 59.51507195254342, 162.47285588212253, 15.03448260164303, 105.81434241380757, 8.089285509336761, 10.48238364531968, 91.43659863675093, 37.89675118374341, 51.3842888240969, 9.480034380248986, 135.7028355394827, 18.599198605555955, 81.76560664547667, 5.32162526169997, 11.78998951169486, 15.750745293788636, 11.006627057872615, 11.327958569448898, 40.51906400027358, 28.918031973689338, 5.182920187754357, 73.8679914353965, 5.206362691679672, 26.288048498736647, 11.07527747597718, 8.56927883925819, 103.07581759585891, 62.97922486728929, 12.09932200490516, 50.315631521496044, 8.179994916268619, 87.39779460159846, 15.337405429131044, 21.495297668975688, 42.62971776544264, 18.294493324172507, 13.683906263249025, 70.26005530608235, 95.26939351305626, 25.256097946404417, 58.41067882816448, 9.483000737987537, 5.214628544971112, 13.195310473747012, 30.017111490395024, 71.08236864562384, 34.911818371806774, 22.095988939635046, 5.638598898504971, 16.679549299673422, 90.14732487011885, 63.78595397041258, 26.68159200375255, 5.128203520537778, 12.72731456122212, 17.98442760967197, 30.800309276638217, 21.16482667772349, 17.84573382058204, 5.038121462201982, 10.624666777570155, 10.188059334340632, 10.450675866330087, 6.565754177618904, 21.920549620726188, 91.16572995670384, 24.885201142706748, 67.61953815137849, 20.669132893562793, 104.85601667187117, 141.34395235193057, 50.733315685939836, 6.71435686613742, 103.2054984420196, 30.916082279971707, 40.65250722957098, 60.599263157058864, 72.28579357377183, 24.41802554751171, 109.26214845480017, 228.42868298397528, 5.234655040446011, 74.95818177506652, 22.42539377760044, 15.771968899693366, 34.11287663682638, 5.9207185355303835, 35.18999228937878, 108.37975450295625, 38.611360432823936, 71.65524186815034, 11.884429112437543, 85.92086161751114, 8.970275119308075, 5.20558960609282, 45.424365602590456, 10.952768098564528, 75.49965743869471, 5.849630659760158, 83.11014688409053, 17.42122427220471, 34.429506714722805, 141.48085008940234, 16.939678802354354, 14.345989700470287, 31.417840018028592, 73.83804232294239, 61.919218463354525, 62.48576835580615, 34.59893758110602, 96.80333954962573, 22.00631629403358, 10.483309574842467, 85.98448148636133, 12.932329298112442, 64.85592974487861, 16.618954481627895, 5.289985877549936, 11.055323747477816, 59.96167914450973, 58.09302276615732, 86.18056444573475, 18.554991018368476, 21.98790529632946, 8.868783942063693, 23.996834988686313, 17.46456635120799, 66.0732545361667, 22.58148116073457, 87.43693135788578, 13.744764037843781, 37.9521283087204, 66.26377986970229, 30.49873451151958, 45.98113170111987, 43.593643644978044, 144.52351591560932, 8.893760905460308, 25.042247556373823, 11.70372587788241, 29.289693851042557, 13.919065793582075, 7.040879277795767, 172.80811219814643, 45.807254041063615, 41.84171244540286, 36.488956918022815, 5.849218774110417, 22.927352246526695, 5.531203464082952, 64.51662779623295, 29.326896029587438, 21.943415052477352, 41.36129892071965, 68.82425781668023, 71.38765925129755, 25.268203411042293, 46.36695981822061, 53.869604041553956, 5.292900113491094, 95.97174250541934, 139.53644494198758, 97.83067026447753, 28.8496571110479, 60.49332952274661, 45.0479602475519, 6.259878180735854, 14.098275784396927, 13.011755819096443, 28.722409253267692, 11.383001331557148, 30.957785629829658, 5.6707540147804565, 51.681817328938806, 31.97556541238036, 15.490580827118011, 80.8161283390073, 35.15045793307886, 20.385863801425188, 15.808832919761452, 50.65099204883418, 80.66411404848189, 80.27917642663431, 37.03199790916234, 15.285504006964365, 28.237898694925736, 27.813149644508876, 14.575474797919284, 50.3290306405971, 45.14086644045699, 53.00044531791238, 78.03138811706098, 14.972643623466125, 26.393050622437457, 49.47148505601772, 43.79325778438054, 56.53732997362247, 6.266725304560678, 70.60167747643749, 76.24324195778837, 38.20769101101696, 13.820799305703208, 7.039667231635633, 47.59142489943947, 10.80750135553581, 8.544044986849096, 5.289158667181806, 58.4228312707183, 94.90844592212153, 14.972998882245026, 51.70163138757012, 12.67584581213805, 124.64122764445605, 32.216751735666605, 5.755453681747997, 22.67211166725589, 20.063759634412058, 30.235511861523097, 26.925982460801997, 76.27624312017453, 5.217481384725091, 24.134785396866377, 17.990989860637807, 6.474667235287884, 5.664113140666052, 26.633667689122078, 13.729054309148097, 31.893065737896286, 177.16201493105902, 23.483149337175547, 66.9898259429865, 68.0463522568361, 6.768289082063707, 9.996790261095073, 30.830745790304384, 42.79210150301189, 95.1923508492345, 26.60979276492384, 82.97390064925891, 5.20026802563542, 28.674246363810404, 23.582099859040465, 11.241974552451143, 41.18888931807152, 5.236159353757149, 30.74267952523828, 57.29392729750582, 50.621645773110615, 81.77042868238053, 28.383270963459612, 11.2658095426908, 40.645748529578945, 61.64070405062406, 57.144619672216024, 16.64665850298179, 5.263575204450993, 9.79235997205216, 55.52868383256026, 63.39884191441634, 56.380430029606416, 28.113029577919214, 41.759494505458484, 8.715528608375447, 63.272195414995515, 91.19056338488414, 14.666638454310558, 42.426711765132424, 29.61839992874213, 14.456636603285633, 22.66515726407684, 24.5474220544045, 11.42044382177157, 37.05184918750849, 6.987928191566206, 77.73739032017389, 58.1311405681381, 5.535700382722489, 6.703361950820537, 10.949260065551023, 38.310408275395964, 22.863034685516713, 39.376948381967836, 100.33517483074664, 48.04706526702555, 71.822039436558, 10.399323641186434, 17.654995120823063, 23.08865572616596, 9.034784748775586, 39.947505055070124, 5.409676766040337, 20.254599829120654, 10.094555053211831, 48.46703111478942, 12.843089976866393, 10.240072160954197, 158.22771971871668, 70.29233480510683, 45.61660572470809, 57.37994865869813, 106.57311038387262, 151.93942482583685, 25.941323383355293, 147.5714190541752, 27.344501998163793, 10.846561759478703, 69.1936353411274, 135.75834992473585, 30.737026375383085, 37.73608633213212, 41.08219454365331, 36.25068984835715, 16.957609950240375, 18.51924226277249, 12.812450670247209, 109.7433422879684, 45.654154569962984, 62.05633312356823, 125.78717647804369, 109.40109177668052, 45.246889616816574, 62.09289670675406, 6.022490352628844, 7.135030847441352, 33.246076183733095, 112.18916547745587, 6.049134114485063, 51.432737307668226, 21.978970602731977, 135.85517339369616, 42.41148897160473, 114.59239170421301, 52.63655186143409, 25.828961267347427, 58.09480134591228, 16.745576969443807, 37.30908448885395, 35.94338404865934, 22.968954410144114, 15.61866281932255, 59.47622528612186, 73.77261006653659, 22.43584632248143, 52.971579884490964, 68.07488966481118, 31.3489360440424, 73.36935881160757, 9.022596473847173, 30.223839512941936, 8.572587938470356, 23.184404038963343, 21.135530246547937, 41.036592405746184, 113.61692247747605, 163.323018585066, 30.602581958298767, 25.95302232358639, 8.362894048318449, 33.4764384180442, 132.0761792598764, 53.49109477113947, 84.78289328604666, 110.59533320819932, 33.10756846157047, 18.87538107927649, 15.651645555343446, 7.012250879617668, 113.8289858492157, 190.62520882318466, 28.034015432553026, 31.43507385915722, 13.390724120598753, 49.050041602494176, 39.08148197175604, 74.05732413010728, 5.376937316874123, 32.89220736419985, 12.092244569385375, 65.78013821692842, 23.444372536839154, 66.82426766076473, 54.20664235479439, 51.76742696586489, 65.41293877356647, 110.0186547436124, 60.133637875138795, 59.04309437592371, 32.133718306981535, 28.931168190610958, 84.80654175644787, 54.833758187366335, 64.03310088465615, 23.64029184453227, 34.86245418395876, 37.239425404494575, 20.407423520586377, 19.292882864996688, 65.4144162378926, 78.0136638705442, 9.68303135066119, 78.81673701512015, 50.291140736242006, 6.989609050571529, 16.36371905237403, 54.43953149884801, 26.335534169705305, 55.15986617254909, 69.38686661106931, 34.76301820001944, 70.92858418609143, 6.604491424826812, 27.468371828383617, 71.46328985801458, 6.4287176487157955, 20.016837639669863, 54.33581143674991, 36.44284045883851, 112.1580080163031, 82.57499145867227, 47.541694906164985, 26.238053440480368, 69.9794762901326, 180.3735146040625, 9.059649702344082, 16.776465168019783, 102.70334658588236, 42.805433999957174, 139.73019840867568, 28.816196666196557, 159.04066170638797, 6.666682706946253, 133.42146445788822, 82.66409604278613, 28.626609823534537, 38.06950324659309, 18.828297077882805, 14.398223836687897, 83.76563899987747, 27.466873486272256, 94.80379886856906, 50.964695910533045, 23.073772123666824, 113.50530317672607, 108.62434851185586, 6.052185558151524, 87.1661663862773, 5.369047281241827, 130.9441304312296, 17.206118979628776, 60.62780805567485, 150.52530279828449, 169.59017496212576, 61.14533823128551, 24.043690189639182, 11.593095063511097, 13.713995141478156, 21.80897592801808, 59.492745896733815, 40.05437540160343, 10.126170447739124, 25.078673375553077, 66.19130784159394, 5.212224420567916, 118.25345781638352, 7.939597324349218, 113.46604241807634, 32.35400010936139, 18.952541125648718, 5.219684956826973, 7.957920918253462, 53.10714397987949, 97.88593013364193, 18.406230727935156, 13.33358054860013, 31.647254119288526, 12.009745930801426, 5.214112703726813, 20.22701489591713, 105.50929254617239, 83.58041477414521, 54.469923904566286, 12.885768297952291, 300.0322733426407, 59.89830053200795, 43.24337599798474, 20.461842917688408, 16.018177666382467, 90.52603659795365, 17.92239223278423, 26.85539753858744, 11.86679683702793, 9.639559408546614, 48.646785097897954, 23.8477309159156, 18.53586087630162, 179.33890450023094, 24.001822231208426, 29.20230916778784, 8.055837353072379, 73.08288707122601, 61.583913420916694, 5.07091909511414, 26.930407495762203, 113.88579530048912, 8.134052576075756, 8.446667847813066, 41.30236711893289, 19.858265974449495, 42.82727085321979, 22.57468405189806, 53.92404262991728, 25.406252767182778, 9.098230206402189, 24.955511761717737, 19.039652868546685, 18.9865783902827, 136.24453868363872, 6.649697597753813, 27.216666677290693, 6.7944425375997834, 51.80117442179905, 31.617420377801704, 37.20700168932786, 49.733469135090296, 6.295366741957722, 41.04889900628199, 52.92901440528977, 89.77233881297538, 12.777990852296849, 13.839430641969283, 21.605393620797045, 29.015847959336938, 69.86382142659168, 99.54609979585062, 11.236791505039752, 73.83510520390855, 5.448850790575644, 9.28461633566049, 119.30835748841888, 54.78694309223141, 21.583493869625514, 40.13676224640614, 16.303813262245658, 19.251753905165597, 90.88494965929414, 70.59600444343421, 148.6714294455865, 19.519000981492397, 8.458939292673096, 202.6067529111933, 15.180059988470024, 18.496240683602903, 28.429543895627514, 23.1589817195917, 45.41043248845036, 84.92743181060669, 13.582846906580597, 96.10038596226843, 25.768311592539458, 87.42953935614312, 15.623662434835673, 27.85051102791569, 254.13527852827067, 17.65102470778433, 9.593100150555266, 129.4910600482316, 5.205890568648253, 6.641859748343128, 11.881873229249559, 6.033434831714805, 33.05293808722409, 61.02818146956587, 60.33249913212586, 16.12132834726773, 16.378843298112827, 105.27573981878861, 31.468454091808034, 22.03509052295434, 122.92540884943061, 54.86196451949039, 18.41554519343968, 74.65187201065166, 80.84458382405131, 11.94250208408756, 70.80002001110589, 6.167528752166642, 66.95127271916513, 56.28190445604877, 7.1969176885417205, 35.07491841420793, 19.86362995054084, 16.826116504659744, 23.953063406122126, 123.11520744215181, 44.95358495895945, 10.204654534981213, 61.096221163780996, 5.374791907781054, 14.897301162969786, 37.93818773270449, 9.069132574794859, 6.2055072786528225, 38.21203759889122, 32.86249866383997, 11.56261269409768, 193.59610415837128, 116.75548401615038, 173.5091522824848, 100.22212235790795, 94.37982186912132, 15.010942744873915, 32.17542395145397, 32.26490981059096, 5.889571210484997, 50.78727970057609, 187.90426456043718, 25.129659243251783, 37.7555901806536, 15.70859477535814, 60.96209238557525, 39.4801063943825, 5.431069415526171, 61.156640422967804, 28.454337484808917, 91.330421780495, 56.31637351246946, 8.193803825706658, 60.18685418797989, 27.125379529034078, 21.312957849226855, 31.747021138883035, 22.934644529544087, 40.65335487768196, 6.50588495794835, 149.8672489062733, 128.67333601548793, 77.22611090171817, 5.1457917044801, 6.438823045304056, 10.657736923984215, 31.634912980350848, 103.68495788156925, 119.4077448938645, 26.709449991570196, 13.122337782433872, 58.49438439579276, 15.98326143841904, 34.83786328970307, 80.19743466038473, 50.45500704785141, 62.22271398607102, 33.51521541636143, 9.099692551798874, 32.94534050732199, 5.922277752744046, 5.340391318725157, 38.22564202512012, 7.9277628356594905, 39.085943918804126, 50.46692663344169, 122.85684305536643, 79.11152539490826, 73.58274142790373, 44.651667775283656, 82.59269189766138, 8.561715789674059, 14.695868804100204, 5.144437217166243, 44.169308283395694, 57.176693683726654, 9.615700843299436, 8.130764392634836, 59.411061672657105, 11.550599781047355, 24.636172137230723, 15.025198906692143, 54.890676325430164, 9.140709918338331, 37.82153198073577, 102.21809559001775, 31.863434619357175, 21.744445805938035, 23.489222912680898, 96.93502753774413, 15.952856854852536, 23.38764902973039, 68.94608624284412, 50.47194810450717, 82.66169272117152, 13.8938138611131, 33.218204000703324, 12.463108741171776, 34.03342776885214, 70.96146951316683, 8.42227866180616, 20.75196970384189, 8.213254192861188, 15.48252123717937, 42.166028964784154, 104.92016958188191, 35.272523756777616, 39.419810167757866, 27.681201712163876, 11.866029850607074, 14.365641553510123, 138.0887238863888, 7.71495604627112, 73.21270108298654, 7.587391947745827, 66.91137121605682, 69.45107242027801, 20.843127159180924, 21.392341030441322, 41.88190860506662, 6.261927867675448, 10.964122441824124, 50.21367914164113, 28.98094647748651, 133.45003939401784, 68.50545485978482, 34.059375821696186, 10.560737920573388, 17.702211588869954, 50.370390879579176, 13.591688518507567, 72.40542098371606, 62.042160868557865, 65.06377045493969, 10.159271340132728, 5.243185927551302, 40.147117850678306, 42.76341213836436, 26.869220404732992, 16.311173017810265, 13.391978308981013, 32.1256094989591, 5.094011822262187, 16.125391729130246, 19.807424285201513, 104.9966268317326, 28.16146536656985, 25.31891368947593, 29.59252544599459, 27.048221264341837, 18.636721723054556, 87.41700044174817, 59.22254995843722, 35.975669472233676, 111.08464622080105, 30.47947018014147, 41.706446682890856, 22.88062146473773, 15.981105850454961, 10.922891506225183, 124.71738576654361, 86.18896547449539, 23.97636841869519, 6.122939195222876, 82.51341569495366, 168.63730142713592, 77.03700045753703, 14.842989409944066, 34.582515320568405, 40.94145690660632, 56.311604718223556, 41.323384868480915, 41.72085861744965, 32.91326683515558, 5.831003923852748, 22.587959566900363, 45.070961232512076, 28.062698282117545, 13.36070545702566, 31.117077279695106, 77.79420258449775, 26.696776984267213, 65.9902327563939, 161.90992641666062, 23.187276399660213, 86.5973995013799, 29.29494577377928, 103.70254484126895, 22.75960553334687, 63.11746191187206, 8.332980215182243, 28.933231211896665, 5.433065108216488, 7.860845295268857, 122.78812293272055, 8.051494174525931, 7.525571910926146, 77.97904930921652, 33.85560494999276, 19.56229676357709, 17.770934810888708, 50.13899154538474, 22.623380254969316, 42.91567732496557, 14.40491155004528, 24.817803258388107, 19.145299455382858, 11.018765699353306, 64.3015021738199, 47.11772545369801, 5.534688245956289, 5.307751635778073, 5.978333651978751, 38.159263990353004, 29.379064069349397, 30.092674828441464, 8.541008919154292, 46.32152604646816, 60.387075272394576, 33.54584572414858, 12.87938243805299, 25.887923738930215, 77.18245331036489, 56.15422879924923, 5.089996338827403, 66.6143980063024, 54.72239134058713, 24.151592748845893, 25.53708589500919, ...])
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)