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 = 45429
shot = shot_no
identifier='H03-W0051_shot_'+str(shot)+'_450V'
detector = 'H03-W0051'
ds = np.DataSource('/tmp') # temporary storage for downloaded files
scalars_URL = 'http://golem.fjfi.cvut.cz/shots/{shot_no}/Diagnostics/PlasmaDetection/Results/{name}'
def get_scalar(shot_no, name):
return float(ds.open(scalars_URL.format(shot_no=shot_no, name=name)).read())
t_plasma_start = get_scalar(shot_no, 't_plasma_start')
t_plasma_end = get_scalar(shot_no, 't_plasma_end')
is_plasma = get_scalar(shot_no, 'b_plasma')
def get_file(shot, identifier):
#Pick the discharge to analyse
URL = 'http://golem.fjfi.cvut.cz/shots/{shot}/Diagnostics/TimepixDetector/H03/{identifier}.t3pa'
url = URL.format(shot=shot, identifier=identifier)
try:
file_name_t3pa=url
with urllib.request.urlopen(file_name_t3pa) as ft3pa:
line = ft3pa.readline()
line = line.decode('utf‐8')
ft3pa.close
except HTTPError:
print('File not found at %s. Aborting notebook execution.' % url)
raise StopExecution
return file_name_t3pa
def get_file_calib(name_calib):
#Pick the discharge to analyse
URL = 'http://golem.fjfi.cvut.cz/shots/{shot}/Diagnostics/TimepixDetector/calib_matrix_H03/{name_calib}.txt'
url = URL.format(shot=shot, name_calib=name_calib)
#print(url)
try:
file_calib=url
with urllib.request.urlopen(file_calib) as calib:
line = calib.readline()
line = line.decode('utf‐8')
calib.close
except HTTPError:
print('File not found at %s. Aborting notebook execution.' % url)
raise StopExecution
return file_calib
def load_calib(file_calib):
with urllib.request.urlopen(file_calib) as fc:
calib=[] #vytvoreni 1D pole
for i in range(0,256): #tj. rozsah 0-255
temp = [] # docasne pole
for j in range(0,256):
temp.append(0) #naplneni docasneho pole 0
calib.append(temp) #naplneni pole a[] docasnym polem temp
for i in range(0,256): #nacteni calib matice do pole calib
line = fc.readline()
line = line.decode('utf‐8')
word=line.strip().split(' ')
for j in range(0,256):
#calib[i][j]=float(word[j]) #i = radek, j = sloupec0
calib[j][i]=float(word[j]) #j = radek, i = sloupec0 - pouze pro stavajici kalibraci - verze XV
fc.close
return calib
def load_t3pa_file(file_t3pa):
index=[]
matrix_index=[]
ToA=[]
ToT=[]
FToA=[]
overflow=[]
pocet_udalosti = 0
with urllib.request.urlopen(file_t3pa) as ft3pa:
line = ft3pa.readline()
line = line.decode('utf‐8')
while True:
line = ft3pa.readline()
line = line.decode('utf‐8')
word=line.strip().split('\t') #v t3pa souboru je oddelovac \t
if line == '':
break
index.append(word[0])
matrix_index.append(word[1])
ToA.append(float(word[2]))
ToT.append(float(word[3]))
FToA.append(float(word[4]))
overflow.append(float(word[5]))
pocet_udalosti = pocet_udalosti + 1
ft3pa.close
return index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti
def noise(index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti): #tuto fci nemus9m explicitn2 volat - volam ji v fci load_t3pa
pocet=int(0) #pocet sumicich pixelu
konst=int(len(index)/1000)+1
noise_matrix_index=[]
for i in range(0,konst):
pom = [] # pomocne pole
k=0 #pomocna promenna - udava, kolik je v czklu ve skutecnosti udalosti - aby nebyla chyba 'list index out of range'
for j in range(0,1001):
if i*1000+j>=len(index):
break
pom.append(matrix_index[i*1000+j])
k=k+1
for m in range(0,k):
count=int(0) #pocet vvyskytu stejneho matrix index behem 1000 udalosti
index_=int(-1) #budu testovat, jestli pixel na ktery koukam je sumici (abych ho nezapocital 2x)
for p in range(0,pocet):
#index=int(p)
if pom[m]==noise_matrix_index[p]:
index_=p #pixel na ktery jsem uz koukal a byl sumici
break
if index_ >=0 and pom[m]==noise_matrix_index[index_]:
continue
for l in range(0,k):
if pom[m]==pom[l]:
count=count+1
####podminka na sumici pixely
if count>=50: #kdyz se pixel vyskytne behem tisice udalosti vicekrat nez toto cislo, je sumici
noise_matrix_index.append(pom[m])
#noise_matrix_index[pocet]=pom[i]
pocet=pocet+1
pom.clear()
pocet_udalosti=len(index)
for n in range (0,pocet_udalosti):
for o in range(0,len(noise_matrix_index)):
if n >=pocet_udalosti:
break
if(matrix_index[n]==noise_matrix_index[o]):
del matrix_index[n]
del index[n]
del ToA[n]
del ToT[n]
del FToA[n]
del overflow[n]
pocet_udalosti=pocet_udalosti-1
continue
return pocet_udalosti,index, matrix_index, ToA, ToT, FToA, overflow
def t3pa_data(pocet_udalosti,index, matrix_index, ToA, ToT, FToA, overflow):
#rovnou vyhodim sumici pixely
pocet_udalosti,index, matrix_index, ToA, ToT, FToA, overflow=noise(index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti)
RowNo=[]
ClmNo=[]
for i in range(0,len(matrix_index)):
#RowNo.append(int(int(matrix_index[i]))//int(256))
#ClmNo.append(int(int(matrix_index[i]))%int(256))
ClmNo.append(int(int(matrix_index[i]))//int(256)) #ver XV - bude pro novou kalibraci - nyn9 to bere 3patnou kalibraci jednotlivych pixelu (cislovani radku a sloupcu stejne jako v pixetu)
RowNo.append(int(int(matrix_index[i]))%int(256)) ##ver XV - bude super pro novou kalibraci - odpovida radkum a sloupcum v pixetu. Nyni bere spatne kalibrace pixelu (viz fce load_calib)
return index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti, RowNo, ClmNo
def hit_map(detector,hit_map_fig,RowNo,ClmNo):
plt.hist2d(RowNo,ClmNo,bins=(256,256),cmap='Blues')
cb=plt.colorbar()
cb.set_label('Counts in pixel')
plt.xlabel('x [pixel]')
plt.ylabel('y [pixel]')
plt.title(detector)
plt.savefig(hit_map_fig, dpi = 1000)
return
def energy(a, b, c, t, ToT, pocet_udalosti, RowNo, ClmNo):
E=[] #energy in keV
#for i in range (0,pocet_udalosti):
pom=0
for i in range (0,len(ToT)):
Sqrt=float(0.0)
e1=float(0.0)
e2=float(0.0)
# promenna sqrt je vnitrek odmocniny
Sqrt = (((float(b[RowNo[i]][ClmNo[i]])+float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]])-float(ToT[i])))*(((float(b[RowNo[i]][ClmNo[i]])+float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]])-float(ToT[i])))) + (float(4)*float(a[RowNo[i]][ClmNo[i]])*float(c[RowNo[i]][ClmNo[i]]))) #zmena oproti verzi VI
if float(Sqrt)<float(0):
E.append(float(0))
else:
'''
V kalibracni matici a se obcas vyskytne 0 -> ve vypoctu energie
je tim padem deleni nulou -> energie diverguje. Jak to vyresit?
zatim polozim energii = 0 (kdyz a=0), pak se uvidi
nakonec udelam limitu vyrazu energie pro a->0 (L'hopital)
'''
if a[RowNo[i]][ClmNo[i]]==0:
e1=((float(t[RowNo[i]][ClmNo[i]]))/float(2)) + ((((float(b[RowNo[i]][ClmNo[i]])+float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]])-float(ToT[i]))*(float(t[RowNo[i]][ClmNo[i]]))) - 2*(float(c[RowNo[i]][ClmNo[i]])))/(float(2)*np.sqrt(float(Sqrt))))
e2=((float(t[RowNo[i]][ClmNo[i]]))/float(2)) - ((((float(b[RowNo[i]][ClmNo[i]])+float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]])-float(ToT[i]))*(float(t[RowNo[i]][ClmNo[i]]))) - 2*(float(c[RowNo[i]][ClmNo[i]])))/(float(2)*np.sqrt(float(Sqrt))))
else:
e1=((-(float(b[RowNo[i]][ClmNo[i]]) - (float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]]))-float(ToT[i])))+np.sqrt(float(Sqrt)))/(float(2)*float(a[RowNo[i]][ClmNo[i]]))
e2=((-(float(b[RowNo[i]][ClmNo[i]]) - (float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]]))-float(ToT[i])))-np.sqrt(float(Sqrt)))/(float(2)*float(a[RowNo[i]][ClmNo[i]]))
if a[RowNo[i]][ClmNo[i]]<0:
e1=-1
e2=-1
if math.isnan(e1):
e1=-1
if math.isnan(e2):
e2=-1
if e1<0 and e2<0:
E.append(float(0))
if e1>=0 and e1>e2:
E.append(float(e1))
if e2>=0 and e2>e1:
E.append(float(e2))
if e1>=0 and e2==e1:
E.append(float(e1))
return E
def Time(ToA, FToA, pocet_udalosti, RowNo, ClmNo):
T=[] #time in ns
for i in range (0,pocet_udalosti):
Time=float(0.0)
Time=(float(ToA[i])-((float(FToA[i])/float(16))))*float(25)
T.append(float(Time))
return T
def Timewalk_parameters_Si():
#SI - korekce na TimeWalk - parametry
A = -1.21988
B = 4.33638
C = 29.5075
D = 1
sigma_A=0.7013
sigma_B=0.1366
sigma_C=4.753
sigma_D=0
return A, B, C, D, sigma_A, sigma_B, sigma_C, sigma_D
def Timewalk(E,T):
i=0
A, B, C, D, sigma_A, sigma_B, sigma_C, sigma_D = Timewalk_parameters_Si()
while i < len(T):
timewalk=float(0)
timewalk = (C / (E[i] - B)) + A
if(timewalk<0):
timewalk=0
T[i]=T[i]-timewalk
i=i+1
return E,T
def remove_interactions_with_zero_energy(index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T):
i=0
treshold=5.015347
while i < len(T):
if E[i]<treshold: #E[i] < energy treshold
index.pop(i)
matrix_index.pop(i)
ToA.pop(i)
ToT.pop(i)
FToA.pop(i)
overflow.pop(i)
RowNo.pop(i)
ClmNo.pop(i)
E.pop(i)
T.pop(i)
continue
i=i+1
return index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T
def clustering_new(index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T):
dT=float(50)
indexCl, TCl,ECl, matrix_indexCl, ToACl,ToTCl,FToACl,RowNoCl,ClmNoCl,overflowCl=[],[],[],[],[],[],[],[],[],[]
StartLastElem=len(T)-1
indexCl.append(int(index[StartLastElem]))
TCl.append(float(T[StartLastElem]))
ECl.append(float(E[StartLastElem]))
matrix_indexCl.append(int(matrix_index[StartLastElem]))
RowNoCl.append(int(RowNo[StartLastElem]))
ClmNoCl.append(int(ClmNo[StartLastElem]))
ToACl.append(float(ToA[StartLastElem]))
ToTCl.append(float(ToT[StartLastElem]))
FToACl.append(float(FToA[StartLastElem]))
overflowCl.append(float(overflow[StartLastElem]))
del index[StartLastElem]
del T[StartLastElem]
del E[StartLastElem]
del matrix_index[StartLastElem]
del RowNo[StartLastElem]
del ClmNo[StartLastElem]
del ToA[StartLastElem]
del ToT[StartLastElem]
del FToA[StartLastElem]
del overflow[StartLastElem]
j=1
pom=float(TCl[0]+dT)
while(j >0):
if(len(T) == 0):
break
k=0
j=0
while (k<=(len(TCl)-1)):
i=len(T)-1
if(len(T) == 0):
break
pocet_sousedu=0 #pocet sousednich pixelu - mohou byt maximalne 4
delka=0
# verze X
count=0 #pomocna promanna, kterou urcuji, ze se ma nasledujici cyklus while projit jeste jednou, pokud je i = -1
while(float(T[i])<=(pom)):
delka=delka+1
if(((((int(RowNoCl[k]))==(int(RowNo[i])+1))or((int(RowNoCl[k]))==(int(RowNo[i])-1))) and ((int(ClmNoCl[k]))==(int(ClmNo[i])))) or (((int(RowNoCl[k]))==(int(RowNo[i]))) and (((int(ClmNoCl[k]))==(int(ClmNo[i])+1))or((int(ClmNoCl[k]))==(int(ClmNo[i])-1))))):
#beru jen pixely, které mají společnou jednu stranu.
#pixely, kter0 spolu sousedí přes roh neuvažuji
indexCl.append(int(index[i]))
TCl.append(float(T[i]))
ECl.append(float(E[i]))
matrix_indexCl.append(int(matrix_index[i]))
RowNoCl.append(int(RowNo[i]))
ClmNoCl.append(int(ClmNo[i]))
ToACl.append(float(ToA[i]))
ToTCl.append(float(ToT[i]))
FToACl.append(float(FToA[i]))
overflowCl.append(float(overflow[i]))
# Removes i-th Row
del index[i]
del T[i]
del E[i]
del matrix_index[i]
del RowNo[i]
del ClmNo[i]
del ToA[i]
del ToT[i]
del FToA[i]
del overflow[i]
j=j+1
i=len(T)-1
pocet_sousedu=pocet_sousedu+1
if(len(T) == 0):
break
if(pocet_sousedu==4):
break
continue
i=i-1
if(i==-1): # verze X
count=count+1
if(i<0 and len(T)>0): # verze X
i=0
if(count>1):
break
if(i>=len(T)):
break
k=k+1
if(len(TCl)>2):
indexCl, TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl = insertionSort(indexCl, TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl)
return T, indexCl,TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl
def insertionSort(indexCl, TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl):
# Function to do insertion sort
# Traverse through 1 to len(arr)
for i in range(1, len(TCl)):
key = TCl[i]
# Move elements of arr[0..i-1], that are
# greater than key, to one position ahead
# of their current position
#ostatni
key1 = indexCl[i]
key2 = ECl[i]
key3 = matrix_indexCl[i]
key4 = RowNoCl[i]
key5 = ClmNoCl[i]
key6 = ToACl[i]
key7 = ToTCl[i]
key8 = FToACl[i]
key9 = overflowCl[i]
j = i-1
while j >= 0 and key < TCl[j] :
TCl[j + 1] = TCl[j]
#ostatni
indexCl[j + 1] = indexCl[j]
ECl[j + 1] = ECl[j]
matrix_indexCl[j + 1] = matrix_indexCl[j]
RowNoCl[j + 1] = RowNoCl[j]
ClmNoCl[j + 1] = ClmNoCl[j]
ToACl[j + 1] = ToACl[j]
ToTCl[j + 1] = ToTCl[j]
FToACl[j + 1] = FToACl[j]
overflowCl[j + 1] = overflowCl[j]
j -= 1
TCl[j + 1] = key
#ostatni
indexCl[j + 1] = key1
ECl[j + 1] = key2
matrix_indexCl[j + 1] = key3
RowNoCl[j + 1] =key4
ClmNoCl[j + 1] = key5
ToACl[j + 1] = key6
ToTCl[j + 1] = key7
FToACl[j + 1] = key8
overflowCl [j + 1] = key9
return indexCl, TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl
def file_t3pa_cls_new(file_t3pa_cls,T):
with open(file_t3pa_cls, "w", encoding="utf-8") as t3pa_cls:
t3pa_cls.write('%\n')
t3pa_cls.write('% Index Matrix Index [ RowNo, ClmNo ] ToA FToA ( ToA_in_ns ) ToT ( ToT_in_keV ) Overflow\n')
t3pa_cls.write('\n')
i=1
T_first=[]
E_tot=[]
N_tot=[]
eventNo=0 #for high_energy_event function
while(len(T) > 0):
T, indexCl,TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl = clustering_new(index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T)
Tfirst=float(TCl[0])
Tlast=float(TCl[len(TCl)-1])
dT=Tlast-Tfirst
Etot=float(0)
for k in range(0,len(TCl)):
Etot=Etot+float(ECl[k])
T_first.append(float(Tfirst))
dT=Tlast-Tfirst
E_tot.append(float(Etot))
N_tot.append(len(TCl)) #new in ver. XV
t3pa_cls.write('# '+str(i)+', Nunmasked = '+str(len(TCl))+', Nmasked = 0, Ntot = '+str(len(TCl))+'\n')
t3pa_cls.write('# Tfirst = '+str(Tfirst)+' ns, Tlast = '+str(Tlast)+' ns, dT = '+str(dT)+' ns, Etot = '+str(Etot)+' keV\n')
for j in range(0,len(TCl)):
t3pa_cls.write(str(indexCl[j])+' '+str(matrix_indexCl[j])+' [ '+str(RowNoCl[j])+', '+str(ClmNoCl[j])+' ] '+str(ToACl[j])+' '+str(FToACl[j])+' ( '+str(TCl[j])+' ns ) '+str(ToTCl[j])+' ( '+str(ECl[j])+' keV ) '+str(overflowCl[j])+'\n')
t3pa_cls.write('\n')
#eventNo=single_interaction(eventNo,Etot, Tfirst, ECl, TCl, RowNoCl, ClmNoCl,path)
i=i+1
t3pa_cls.close
return T_first, E_tot, N_tot
def energy_spectrum_in_time(Tfirst, Etot): #dela histogram - energie zaznamenana v case
pom = 0
dt=100 #(ns) time width of 1 bin
T_first=0 #cas, kdy prisel trigger a yacalo mereni
T_last=(max(Tfirst)) #posledni z Tfirst
Delta_T = T_last - T_first
poc = int(int(Delta_T) / float(dt)) + 1 #pocet casovych oken
T_int_first=[] #cas
E=[] #energie
for i in range(0,poc):
T_int_first.append((i*dt) + dt/2)
E.append(0)
#XII
for j in range(0,len(Tfirst)):
time_index=0
time_index=int(((Tfirst[j]-T_first)/dt))
if float(Tfirst[j]-T_first) >= (T_int_first[time_index] - dt / 2) and float(Tfirst[j]-T_first) < (T_int_first[time_index] + dt / 2):
E[time_index]=float(E[time_index])+float(Etot[j])
pom=pom+1
for l in range(0,len(T_int_first)):
T_int_first[l]=T_int_first[l]+T_first
caption, T_int_first = energy_in_time_hist(T_int_first, E, figure_E_in_time_hist, t_plasma_start, t_plasma_end, is_plasma, dt)
return dt, caption, T_int_first, E
def energy_in_time_hist(T_int_first, E,figure_E_in_time_hist, t_plasma_start, t_plasma_end, is_plasma, dt):
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(figsize =(10, 7))
for k in range(0,len(T_int_first)):
T_int_first[k] = T_int_first[k] / 1000000
plt.plot(T_int_first, E, drawstyle='steps-mid')
plt.title(detector+', #'+str(shot_no))
plt.xlabel('Time [ms]')
plt.ylabel('Energy [keV]')
if is_plasma == 1:
for t in (t_plasma_start, t_plasma_end):
plt.axvline(t, color='k', linestyle='--')
plt.xlim([0, (t_plasma_start + t_plasma_end)])
else:
plt.xlim(0,)
plt.ylim(0,) #10 000 keV
plt.savefig(figure_E_in_time_hist, dpi = 1000)
caption = '# x = time in ms, count = energy in keV, dT= '+str(dt)+' ns'
return caption, T_int_first
def hits_in_time_hist_new(T, dt, t_plasma_start, t_plasma_end, is_plasma,figure_count_in_time_hist):
pom = 0
T_first=0 #cas, kdy prisel trigger a yacalo mereni
T_last=(max(T)) #posledni z Tfirst
Delta_T = T_last - T_first
poc = int(int(Delta_T) / float(dt)) + 1 #pocet casovych oken
T_hit=[] #cas
count=[] #energie
for i in range(0,poc):
T_hit.append((i*dt) + dt/2)
count.append(0)
for j in range(0,len(T)):
time_index=0
time_index=int(((T[j]-T_first)/dt))
k=time_index
for j in range(0,len(T)):
time_index=0
time_index=int(((T[j]-T_first)/dt))
if float(T[j]-T_first) >= (T_hit[time_index] - dt / 2) and float(T[j]-T_first) < (T_hit[time_index] + dt / 2):
count[time_index] = count[time_index] + 1
pom=pom+1
for l in range(0,len(T_hit)):
T_hit[l]=T_hit[l]+T_first
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(figsize =(10, 7))
for k in range(0,len(T_hit)):
T_hit[k] = T_hit[k] / 1000000
#plt.plot(T_hit, count)
plt.plot(T_hit, count, drawstyle='steps-mid')
plt.title(detector+', #'+str(shot_no))
plt.xlabel('Time [ms]')
plt.ylabel('Count')
if is_plasma == 1:
for t in (t_plasma_start, t_plasma_end):
plt.axvline(t, color='k', linestyle='--')
plt.xlim([0, (t_plasma_start + t_plasma_end)])
else:
plt.xlim(0,)
plt.ylim(0,) #10 000 keV
plt.savefig(figure_count_in_time_hist, dpi = 1000)
caption = '# x = time in ms, dT= '+str(dt)+' ns'
return caption, T_hit,count
def energy_spectrum(Etot):
E_min=0
dE=5 #keV
E_max=max(Etot)
pocet=(E_max//dE) + 3
pocet=int(pocet)
E_max=float(dE*pocet)
xle=[]
xre=[]
xmean=[]
for p in range (0,pocet):
xle.append(E_min + (p * (E_max - E_min)) / pocet)
xre.append(xle[p]+dE)
xmean.append((xle[p] + xre[p]) / 2)
count=[]
for l in range(0,pocet):
count.append(0)
#XII
for i in range(0,len(Etot)):
E_index=int(((Etot[i]-E_min)/dE))
if ((xle[E_index] <= Etot[i]) and (Etot[i] < xre[E_index])):
count[E_index]=count[E_index]+1
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(figsize =(10, 7))
#ax.hist(Etot, bins = xle)
plt.fill_between(xmean, count,step='mid') #pre mid post
plt.plot(xmean, count, drawstyle='steps-mid')
plt.title(detector+', #'+str(shot_no))
plt.xlabel('Energy [keV]')
plt.ylabel('Count')
plt.xlim(0,)
ax.set_yscale('log') #log scale y
caption = '# x = energy in keV, dE= '+str(dE)+' keV'
plt.savefig(figure_E_hist, dpi = 1000)
return caption, xmean,count, xle, Etot
def hist_file(file_hist, xmean, count, caption ):
with open(file_hist, "w", encoding="utf-8") as hist:
hist.write('#\n')
hist.write('#'+str(caption)+'\n')
hist.write('# x_mean count\n')
hist.write('\n')
for m in range(0,len(xmean)):
hist.write(str(xmean[m])+' '+str(count[m])+'\n')
hist.close
return T_first, E_tot
def multiplot(icon_fig, x1,y1,x2,y2):
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(nrows=2,figsize =(10, 7))
ax[0].plot(x1, y1, drawstyle='steps-mid')
ax[0].set_xlabel('Time [ms]')
ax[0].set_ylabel('Energy [keV]')
if is_plasma == 1:
for t in (t_plasma_start, t_plasma_end):
ax[0].axvline(t, color='k', linestyle='--')
ax[0].set_xlim([0, (t_plasma_start + t_plasma_end)])
else:
ax[0].set_xlim(0,)
ax[0].set_ylim(0,) #keV
#ax[1].hist(y2, bins = x2)
ax[1].fill_between(x2, y2,step='mid') #pre mid post
ax[1].plot(x2, y2, drawstyle='steps-mid')
ax[1].set_xlabel('Energy [keV]')
ax[1].set_ylabel('Count')
ax[1].set_xlim(0,)
#ax[1].set_ylim(0,)
ax[1].set_yscale('log') #log scale y
fig.subplots_adjust(hspace=0.3)
plt.savefig(icon_fig, dpi = 1000)
return
def single_interaction(eventNo,Etot, Tfirst, ECl, TCl, RowNoCl, ClmNoCl,path): # ver XV
#tuto funkci volam ve funkci file_t3pa_cls_new(file_t3pa_cls,T):
#This function is calling in function file_t3pa_cls_new(file_t3pa_cls,T)
high_E = 1500 #[keV] - zadani, jaka energie je pro me vysoka
if(Etot>=high_E or len(ECl)>15):
#if (len(ECl)>15): #len(ECl) = pocet pixelu dane interakce
print("Total energy of track: "+str(Etot)+" keV\n")
A, B, C, D, sigma_A, sigma_B, sigma_C, sigma_D = Timewalk_parameters_Si()
######################
#SI - rekonstrukce z(t) - parametry
a=0.0193947
b=-0.0273934
sigma_a=0.0004163
sigma_b=0.009832
#######################
time=[]
sigma_time=[]
time_min = []
time_max=[]
z_rec=[]
z_rec_min=[]
z_rec_max=[]
sigma_z_rec=[]
for i in range(0, len(TCl)):
time.append(TCl[i] - Tfirst)
#chyba urceni casu = chyba timewalk ->
sigma_time.append(np.sqrt(((sigma_C / (pow((ECl[i] - B), D)))*(sigma_C / (pow((ECl[i] - B), D)))) + (((sigma_B*C*D) / (pow((ECl[i] - B), (D + 1))))*((sigma_B*C*D) / (pow((ECl[i] - B), (D + 1))))) + (((sigma_D*C*math.log(ECl[i] - B)) / (pow((ECl[i] - B), D)))* ((sigma_D*C*math.log(ECl[i] - B)) / (pow((ECl[i] - B), D)))) + (sigma_A*sigma_A)))
time_min.append(time[i] - sigma_time[i])
time_max.append(time[i] + sigma_time[i])
#//
#//rekonstrukce hloubky interakce
z_rec.append(a * time[i] + (b))
sigma_z_rec.append(np.sqrt(((time[i]*time[i])*(sigma_a*sigma_a)) + (sigma_b*sigma_b) + (a*a)*(sigma_time[i]*sigma_time[i])))
z_rec_min.append(z_rec[i] - sigma_z_rec[i])
z_rec_max.append(z_rec[i] + sigma_z_rec[i])
#//
single_interaction_file=str(path)+'event'+str(eventNo)+'.txt'
single_interaction_2D_fig=str(path)+'2D_event'+str(eventNo)+'.png'
single_interaction_3D_fig=str(path)+'3D_event'+str(eventNo)+'.png'
with open(single_interaction_file, "w", encoding="utf-8") as f:
f.write('#\n')
f.write('# x_mean y_mean z_rec z_rec_min z_rec_max sigma_z_rec\n')
f.write('#E_tot='+str(Etot)+'\n')
f.write('\n')
for m in range(0,len(TCl)):
#print(str(RowNoCl[m])+' '+str(ClmNoCl[m])+' '+str(z_rec[m])+' '+str(z_rec_min[m])+' '+str(z_rec_max[m])+' '+str(sigma_z_rec[m])+' '+str(ECl[m])+'\n')
f.write(str(RowNoCl[m])+' '+str(ClmNoCl[m])+' '+str(z_rec[m])+' '+str(z_rec_min[m])+' '+str(z_rec_max[m])+' '+str(sigma_z_rec[m])+' '+str(ECl[m])+'\n')
f.close
############################### plot
#binwidth=1
if ((max(RowNoCl)-min(RowNoCl))>=(max(ClmNoCl)-min(ClmNoCl))):
rang=max(RowNoCl)-min(RowNoCl)
#bins=(range((min(RowNoCl)-1), (max(RowNoCl)+3), binwidth), range((min(ClmNoCl)-1), (min(ClmNoCl)+rang+3), binwidth))
x_min=min(RowNoCl)-1
x_max=max(RowNoCl)+2
y_min=min(ClmNoCl)-1
y_max=min(ClmNoCl)+rang+2
else:
rang = max(ClmNoCl)-min(ClmNoCl)
#bins=(range((min(RowNoCl)-1), (min(RowNoCl)+rang+3), binwidth), range((min(ClmNoCl)-1), (max(ClmNoCl)+3), binwidth))
x_min=min(RowNoCl)-1
x_max=min(RowNoCl)+rang+2
y_min=min(ClmNoCl)-1
y_max=max(ClmNoCl)+2
###############$$$$$$$$$$$$$$$$$$$$
rows, cols = (x_max-x_min, x_max-x_min)
#arrECl = [[0]*cols]*rows
arrECl= [[0] * cols for _ in range(rows)]
for i in range (x_min,x_max):
for j in range (y_min,y_max):
for k in range(0,len(RowNoCl)):
if ((i==RowNoCl[k]) and (j==ClmNoCl[k])):
#print(str(i)+" "+str(j)+" "+str(RowNoCl[k])+" "+str(ClmNoCl[k])+"\n")
arrECl[i-x_min][j-y_min]=ECl[k]
arrECl=np.transpose(arrECl)
arrECl[arrECl == 0] = np.nan
#2D plot
plt.imshow(arrECl,cmap='jet', interpolation='none', origin=[(x_min-0.2),(y_min-0.2)], aspect='equal', extent=[x_min-0.2,x_max,y_min-0.2,y_max])
###############$$$$$$$$$$$$$$$$$$$$
cb=plt.colorbar(pad=0.005)
plt.tick_params(axis="x",direction="in")
plt.tick_params(axis="y",direction="in")
cb.ax.tick_params(axis='y', direction='in')
cb.set_label('Energy in pixel [keV]')
plt.xlabel('x [pixel]')
plt.ylabel('y [pixel]')
plt.title('$E_{tot}$ = '+str(round(Etot, 2))+' keV, $N_{tot}$ = '+str(len(ECl)))
plt.savefig(single_interaction_2D_fig, dpi = 1000)
plt.show()
plt.close()
############################### plot
############## 3D plot
# Creating figure
fig = plt.figure(figsize = (16, 9))
ax = plt.axes(projection ="3d")
# Add x, y gridlines
ax.grid(b = True, color ='grey', #
linestyle ='-.', linewidth = 0.3,
alpha = 0.2)
# Creating plot
sctt = ax.scatter3D(RowNoCl, ClmNoCl, z_rec,
alpha = 0.8,
c = ECl,
cmap = 'jet',
s = 4000, #size of bubbles in plot
marker ='o')
plt.title('$E_{tot}$ = '+str(round(Etot, 2))+' keV, $N_{tot}$ = '+str(len(ECl)))
ax.set_xlabel('x [pixel]', fontweight ='bold')
ax.set_ylabel('y [pixel]', fontweight ='bold')
ax.set_zlabel('z [mm]', fontweight ='bold')
cb=fig.colorbar(sctt, ax = ax, shrink = 0.5,aspect = 10,pad=0.00005) #
cb.ax.tick_params(axis='y', direction='in')
cb.set_label('Energy in pixel [keV]', fontweight ='bold')
plt.savefig(single_interaction_3D_fig, dpi = 1000)
# show plot
plt.show()
plt.close()
############## 3D plot
eventNo=eventNo+1
return eventNo
def size_of_interactions_average(Etot, Ntot,file_hist): #ver XV
E_min=0
dE=5 #keV
E_max=max(Etot)
pocet=(E_max//dE) + 3
pocet=int(pocet)
E_max=float(dE*pocet)
xle=[]
xre=[]
xmean=[]
count=[]
nop=[] #number of pixels
nop_mean=[] #mean number of pixels in dE
sigma=[] #root mean square error of the mean - stredni kvadraticka chyba prumeru
for p in range (0,pocet):
xle.append(E_min + (p * (E_max - E_min)) / pocet)
xre.append(xle[p]+dE)
xmean.append((xle[p] + xre[p]) / 2)
count.append(0)
nop.append(0)
nop_mean.append(0)
sigma.append(0)
#XII
for i in range(0,len(Etot)):
E_index=int(((Etot[i]-E_min)/dE))
if ((xle[E_index] <= Etot[i]) and (Etot[i] < xre[E_index])):
count[E_index]=count[E_index]+1
nop[E_index]=nop[E_index]+Ntot[i] #ver XV
for l in range(0,pocet):
if nop[l]!=0:
nop_mean[l]=float(nop[l])/float(count[l])
#####Computing sigma
for i in range(0,len(Etot)):
E_index=int(((Etot[i]-E_min)/dE))
if ((xle[E_index] <= Etot[i]) and (Etot[i] < xre[E_index])):
if nop_mean[E_index]!=0:
sigma[E_index]=sigma[E_index]+((float(Ntot[i])-float(nop_mean[E_index]))*(float(Ntot[i])-float(nop_mean[E_index])))
for l in range(0,pocet):
if nop[l]!=0 and count[l]>1:
sigma[l]=np.sqrt(sigma[l]/(float(count[l])*(float(count[l])-1)))
if nop[l]!=0 and count[l]==1:
sigma[l]=10
#####Computing sigma
#####write to file
with open(file_hist, "w", encoding="utf-8") as hist:
hist.write('# x_mean [keV] mean_size_of_interaction [pixel] sigma_mean_size_of_interaction\n')
for m in range(0,len(xmean)):
hist.write(str(xmean[m])+' '+str(nop_mean[m])+' '+str(sigma[m])+'\n')
hist.close
#####write to file
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(figsize =(10, 7))
#plt.fill_between(xmean, nop,step='mid',color='blue', alpha=0.3) #pre mid post
#plt.fill_between(xmean, nop,step='mid') #pre mid post
plt.plot(xmean, nop_mean, drawstyle='steps-mid')
plt.errorbar(xmean, nop_mean, yerr = sigma,fmt ='.', linewidth=0.7)
plt.title(detector+', #'+str(shot_no))
plt.xlabel('Energy [keV]')
plt.ylabel('Average size of interaction [pixel]')
plt.xlim(0,500)
plt.ylim(0,17)
#ax.set_yscale('log') #log scale y
caption = '# x = energy in keV, dE= '+str(dE)+' keV'
plt.savefig(figure_size_interaction, dpi = 1000)
return
def energy_spectra_doublebreakdown(Etot, Tfirst, file_hist):
#this function separates discharge into two parts acording to time Tsep and creates energy spectrum for each part.
#This is for discharges with double brakdown
Tsep=14636000 # [ns]
E_min=0
dE=5 #keV
E_max=max(Etot)
pocet=(E_max//dE) + 3
pocet=int(pocet)
E_max=float(dE*pocet)
xle=[]
xre=[]
xmean=[]
for p in range (0,pocet):
xle.append(E_min + (p * (E_max - E_min)) / pocet)
xre.append(xle[p]+dE)
xmean.append((xle[p] + xre[p]) / 2)
count_first=[]
count_second=[]
for l in range(0,pocet):
count_first.append(0)
count_second.append(0)
#XII
for i in range(0,len(Etot)):
E_index=int(((Etot[i]-E_min)/dE))
if ((xle[E_index] <= Etot[i]) and (Etot[i] < xre[E_index])):
if(Tfirst[i]<Tsep):
count_first[E_index]=count_first[E_index]+1
else:
count_second[E_index]=count_second[E_index]+1
caption = '# x = energy in keV, dE= '+str(dE)+' keV'
with open(file_hist, "w", encoding="utf-8") as hist:
hist.write('#\n')
hist.write('#'+str(caption)+'\n')
hist.write('# x_mean count_before_2nd_breakdown count_2nd_breakdown\n')
hist.write('\n')
for m in range(0,len(xmean)):
hist.write(str(xmean[m])+' '+str(count_first[m])+' '+str(count_second[m])+'\n')
hist.close
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(figsize =(10, 7))
#plt.fill_between(xmean, count_first,step='mid') #pre mid post
plt.plot(xmean, count_first, label='Before 2nd breakdown', drawstyle='steps-mid')
plt.plot(xmean, count_second, label='2nd breakdown', drawstyle='steps-mid')
plt.legend(loc='best')
plt.title(detector+', #'+str(shot_no))
plt.xlabel('Energy [keV]')
plt.ylabel('Count')
plt.xlim(0,500)
ax.set_yscale('log') #log scale y
plt.savefig(figure_energy_spectra_doublebreakdown, dpi = 1000)
return
#soubory, ktere ctu
#read files
t3pa=get_file(shot, identifier)
name_calib='caliba'
caliba=get_file_calib(name_calib)
name_calib='calibb'
calibb=get_file_calib(name_calib)
name_calib='calibc'
calibc=get_file_calib(name_calib)
name_calib='calibt'
calibt=get_file_calib(name_calib)
#vytvorene soubory:
#created files
t3pa_cls= 'H03-W0051_shot_'+str(shot)+'_450V.t3pa_cls'
E_hist= 'H03-W0051_shot_'+str(shot)+'_450V_E_hist.txt'
E_in_time_hist= 'H03-W0051_shot_'+str(shot)+'_450V_discharge_energy.txt'
count_in_time_hist= 'H03-W0051_shot_'+str(shot)+'_450V_discharge_hits.txt'
size_interaction= 'H03-W0051_shot_'+str(shot)+'size_interaction.txt'
file_energy_spectra_doublebreakdown= 'H03-W0051_shot_'+str(shot)+'energy_spectra_doublebreakdown.txt'
#created figures
icon_fig='icon-fig'
figure_E_in_time_hist='discharge_energy'
figure_count_in_time_hist='discharge_hits'
figure_E_hist='Energy_spectrum'
hit_map_fig='hit-map'
figure_size_interaction= 'H03-W0051_shot_'+str(shot)+'size_interaction'
figure_energy_spectra_doublebreakdown= 'H03-W0051_shot_'+str(shot)+'energy_spectra_doublebreakdown'
#nactu jednotlive kalibracni matice - abych to nemusel delat v kazde funkci
a=load_calib(caliba)
b=load_calib(calibb)
c=load_calib(calibc)
t=load_calib(calibt)
#nactu a urcim jednotlive hodnoty - abych to nemusel delat v kazde funkci
index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti = load_t3pa_file(t3pa)
index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti, RowNo, ClmNo = t3pa_data(pocet_udalosti,index, matrix_index, ToA, ToT, FToA, overflow)
raw data
#hit map
hit_map(detector,hit_map_fig,RowNo,ClmNo)
Energy and time calculation from raw data.
E=energy(a, b, c, t, ToT, pocet_udalosti, RowNo, ClmNo)
T=Time(ToA, FToA, pocet_udalosti, RowNo, ClmNo)
index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T = remove_interactions_with_zero_energy(index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T)
E,T=Timewalk(E,T)
#sort by time
T, index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E = (list(t) for t in zip(*sorted(zip(T, index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E), reverse=True))) #serazeni od nejvetsiho po nejmensi
T_pom=T.copy()
#save to file
T_first, E_tot, Ntot = file_t3pa_cls_new(t3pa_cls,T)
dt, caption, T_int_first, E = energy_spectrum_in_time(T_first, E_tot)
hist_file(E_in_time_hist, T_int_first, E, caption);
([2855395.3125, 2994300.0, 2994931.2405584753, 3187290.718875857, 3189748.1767384573, 3270816.858284211, 3272820.811324488, 3311733.967636723, 3374573.4375, 3401644.9657621533, 3427568.847073595, 3726594.8061575764, 3778815.625, 3822006.25, 3884593.2911411473, 3888089.0625, 3888597.0851166127, 3889099.1370707606, 3889216.7353045647, 3889513.7870255914, 4634160.033883108, 4693033.968106939, 4697543.395424016, 4748882.402460415, 4830913.812167441, 4831973.4375, 4832594.986390655, 4836941.808243949, 4842513.576370347, 4845423.362354931, 4845717.863673371, 4849041.661432672, 4872527.643171008, 4874256.155558832, 4877636.445440574, 4886293.75, 4889669.237317314, 4909079.6875, 4909088.939051034, 4913234.086208767, 4927123.304499805, 4927194.1063739825, 4939382.728033629, 4939387.5, 4940107.396851909, 4940820.3125, 4949251.5625, 4949473.4375, 4971053.062153298, 4982903.636957948, 4984991.566250797, 5008046.833535533, 5009031.731398902, 5011931.992885671, 5022196.256912989, 5024153.904991147, 5024233.621079353, 5024606.415335922, 5024685.9375, 5024823.4375, 5024865.625, 5024899.064222002, 5024920.3125, 5024972.611647839, 5025037.168738352, 5025118.75, 5025296.875, 5025346.741077036, 5025440.023926138, 5025444.075659798, 5025463.530727897, 5025476.390152557, 5025480.722843099, 5025528.125, 5025550.350928677, 5025648.981925457, 5025652.470419253, 5025663.840632566, 5025726.5625, 5025742.726943689, 5025748.119258189, 5025751.187027634, 5025759.375, 5025765.625, 5025787.5, 5025800.595566204, 5025830.078365911, 5025846.954547348, 5025851.881575363, 5025912.4545826735, 5025973.979948827, 5025976.760485339, 5025985.968739135, 5025996.744875704, 5026054.145258986, 5026079.6875, 5026100.203952361, 5026125.278670451, 5026152.306904981, 5026205.049969485, 5026224.017355298, 5026294.437818003, 5026308.706690438, 5026365.625, 5026369.023166312, 5026450.600405582, 5026474.786558019, 5026523.293206101, 5026538.066256849, 5026548.4375, 5026554.658851735, 5026586.667010979, 5026613.314346447, 5026613.97076282, 5026629.971911668, 5026690.742562789, 5026742.1875, 5026746.235790918, 5026765.015108529, 5026805.357277176, 5026872.92672563, 5027004.6875, 5027055.900282206, 5027059.952952234, 5027072.821940654, 5027171.875, 5027187.320422914, 5027246.740154361, 5027318.75, 5027385.29057707, 5027526.767718898, 5027607.557134427, 5027633.009781559, 5027681.25, 5027790.625, 5027812.5, 5027831.083775038, 5027896.1821866995, 5027976.258930111, 5028100.671315531, 5028237.712001429, 5028380.437235183, 5028420.95808473, 5028442.876139726, 5028450.574593554, 5028560.9375, 5028563.408625095, 5028582.8125, 5028609.673455229, 5029251.5625, 5029875.674985809, 5030104.650548785, 5030187.5, 5030310.9375, 5030404.6875, 5030700.0, 5030854.342867112, 5031187.456352913, 5031489.0625, 5037456.09997399, 5039629.920818758, 5039726.328339769, 5040753.125, 5046424.746682389, 5046673.4375, 5046759.911208369, 5047528.453207839, 5047885.920985604, 5051766.3648790205, 5053470.3125, 5056165.920233181, 5058585.9375, 5058601.825437767, 5058680.030991757, 5058923.299693727, 5058927.979982403, 5059000.493230731, 5059145.8546521105, 5059168.75, 5059378.125, 5059507.537818115, 5059604.402589671, 5059764.983394221, 5059919.869614715, 5060386.694956042, 5060553.04758968, 5060560.493349808, 5060745.3125, 5061018.301039789, 5061103.125, 5061140.625, 5061166.814160248, 5061531.356599224, 5062239.910482025, 5062256.25, 5065788.540673858, 5066303.200209999, 5066496.875, 5066609.399178512, 5066797.106644562, 5068209.982389777, 5077446.354049541, 5078478.552520873, 5078602.432425653, 5078721.03452347, 5078951.301279539, 5078954.6875, 5079259.375, 5079314.310778942, 5079492.1875, 5079531.201651546, 5079767.36130528, 5080023.879015923, 5080026.7671137145, 5080037.42853228, 5080048.294369415, 5080114.0625, 5080141.980830921, 5080209.463670044, 5080658.384517573, 5080664.0625, 5080671.593008326, 5080686.08793129, 5080804.033410489, 5080849.136664661, 5080884.375, 5080932.601139118, 5081173.741842167, 5081195.3125, 5081200.0, 5081392.5888583185, 5081498.397603285, 5081560.861018106, 5081762.5, 5081924.030720153, 5081945.01484487, 5082121.856893212, 5082534.146047478, 5082684.138847614, 5082839.836739549, 5082851.5625, 5082937.5, 5083056.780146163, 5083081.25, 5083374.078064604, 5083388.943855069, 5083669.538453011, 5084017.651082968, 5084173.4375, 5084329.6875, 5084333.124426156, 5084472.392236296, 5084569.6134224385, 5084673.814415016, 5084720.8944475, 5084829.6875, 5085102.643326197, 5085484.763507837, 5086221.875, 5086545.3125, 5087882.087461535, 5088952.714915242, 5096925.810378952, 5097456.25, 5097712.5, 5097945.251509137, 5098017.753861074, 5098473.597133743, 5098728.290364108, 5099376.5625, 5099378.05266082, 5099523.302378471, 5100127.05625605, 5100228.211369183, 5100557.8125, 5100877.328040795, 5101060.31852632, 5101570.3125, 5101850.625001107, 5102773.951668662, 5103924.250194106, 5104032.8125, 5116804.653321069, 5118891.666936507, 5128094.847975582, 5141249.888658763, 5141860.145036695, 5142057.8125, 5142212.5, 5147923.105049831, 5159997.906637208, 5165075.607182449, 5165489.584403939, 5165753.765462655, 5166318.75, 5166562.4748034505, 5166656.997433055, 5166879.779011017, 5166981.63954568, 5167995.3125, 5168175.795884808, 5168201.063633974, 5173868.75, 5178619.890533775, 5180160.225618921, 5180551.119355285, 5180720.3125, 5180935.058642444, 5181060.72179552, 5181087.5, 5181218.687449086, 5181257.060319623, 5181295.3125, 5181382.7636545645, 5181415.625, 5181444.901246652, 5181445.038627659, 5181451.177382114, 5181467.1875, 5181475.0, 5181543.75, 5181642.535340628, 5181648.489356569, 5181726.03787376, 5181804.6875, 5181841.09862249, 5181857.636286845, 5181858.645316424, 5181893.720056711, 5181904.104990572, 5181952.755634056, 5182058.588413163, 5182080.95564091, 5182098.200015877, 5182113.686291143, 5182126.354385931, 5182173.330887189, 5182262.968655441, 5182266.12767135, 5182281.267383815, 5182379.6875, 5182381.571688709, 5182403.125, 5182432.339212452, 5182439.0625, 5182521.412024101, 5182530.442346947, 5182628.676702422, 5182632.683698079, 5182642.1875, 5182660.373143221, 5182757.167173732, 5182788.472553969, 5182824.450522098, 5182826.308429513, 5182855.305020784, 5182907.941219399, 5183044.051495121, 5183089.370816909, 5183103.090909591, 5183110.635178023, 5183398.4375, 5183548.4375, 5183653.630858457, 5183709.216944151, 5183849.112459649, 5183901.06282647, 5184388.019651389, 5184405.60311611, 5184545.121465857, 5184783.65372534, 5184933.0304360185, 5185121.764596096, 5185139.137579333, 5185157.8125, 5185211.497345525, 5185299.131020147, 5185336.593073582, 5185340.625, 5185542.492021741, 5185820.3125, 5185893.059693414, 5186026.459747573, 5186246.737820617, 5186278.125, 5186442.866985012, 5186686.321275854, 5186697.924788917, 5186760.9375, 5186772.261391658, 5186807.402181063, 5186918.762563646, 5186971.875, 5187026.707082932, 5187166.86310166, 5187182.450779549, 5187214.0625, 5187332.8125, 5187353.969806108, 5187509.710952912, 5187562.5, 5187616.64446037, 5187640.625, 5187646.833414645, 5187649.237223508, 5187666.845722735, 5187707.80206395, 5187718.75, 5187939.202943851, 5188006.25, 5188059.375, 5188212.5, 5188754.60630813, 5188943.75, 5189532.8125, 5189563.848418244, 5189848.703098473, 5189934.844490505, 5189969.267750364, 5190003.125, 5190169.223515017, 5190223.830597937, 5190518.527956122, 5190698.4375, 5190867.1875, 5191389.0625, 5191407.8125, 5191784.120292049, 5192750.970896937, 5193397.457824727, 5193543.447697705, 5193553.125, 5193784.375, 5195253.757274113, 5204203.125, 5209124.574464809, 5214193.06704028, 5232484.978977873, 5238125.309332606, 5239018.75, 5241132.8125, 5241244.389230284, 5241670.3125, 5241767.1875, 5241822.0471446775, 5242217.1875, 5242482.013543233, 5242636.631668234, 5242643.165948733, 5242925.0, 5242933.611076883, 5243209.375, 5243375.0, 5243811.848528359, 5243895.249992702, 5243934.375, 5243959.297895524, 5243984.375, 5244251.152361687, 5244301.384982399, 5244366.765413322, 5244373.4375, 5244476.5625, 5244634.521011785, 5244797.792250531, 5244802.707888566, 5244804.640121497, 5244842.341966775, 5244853.125, 5244991.41599548, 5245045.2672433825, 5245228.096499018, 5245233.412964301, 5245264.7979311505, 5245568.601016085, 5247451.9814979965, 5248094.700399729, 5248284.668734091, 5248515.780978151, 5248525.646446917, 5248954.2108574435, 5249010.204660573, 5249038.443832979, 5249218.635129838, 5249229.5732975695, 5249296.875, 5249960.9375, 5250164.0625, 5250512.703419063, 5250947.62845897, 5251587.44879722, 5251728.939381367, 5252610.9375, 5258974.432212315, 5259141.5213001575, 5260061.264526029, 5260296.866340143, 5262128.757941174, 5270026.450735971, 5270305.953491432, 5275446.342244776, 5275780.903854256, 5275881.6353343995, 5276102.778853984, 5276618.75, 5277396.016866052, 5277417.348956711, 5277550.0, 5279207.973976491, 5280724.660072825, 5280773.4375, 5284214.389501141, 5284227.757271448, 5284609.375, 5285230.133180004, 5285401.091378409, 5286656.25, 5292309.165674951, 5302161.902983017, 5302747.468031153, 5303328.456522124, 5303848.159450682, 5307210.9375, 5310688.024672479, 5310709.375, 5312167.381974567, 5312357.8125, 5312405.062084608, 5313047.0758464765, 5313498.309189519, 5313518.75, 5315316.309488811, 5320929.336657538, 5322526.472761379, 5323064.6981947, 5324792.1875, 5333951.462910789, 5334894.749810541, 5336601.968808171, 5343521.875, 5347094.728728274, 5350154.635370246, 5350758.781500784, 5352036.706971518, 5353840.607936116, 5354594.842130057, 5354721.344775342, 5354729.6875, 5355487.247319581, 5355571.875, 5356125.0, 5356521.837432021, 5356850.0, 5357668.752848775, 5358008.780665896, 5359598.192914087, 5359913.414644814, 5360632.360354867, 5360636.988330368, 5361930.79215393, 5362084.191270825, 5366400.0, 5366605.390373008, 5366886.729711866, 5367829.712005613, 5368000.202757713, 5368403.125, 5368630.573786954, 5368674.634125064, 5368822.966791343, 5369022.014757135, 5369045.993192327, 5369179.656890053, 5369246.875, 5369362.5, 5369400.129655361, 5369517.293608551, 5369604.6875, 5369690.625, 5369716.492991197, 5369729.6875, 5369900.0, 5369957.8125, 5370030.343160078, 5370326.521104378, 5370393.75, 5371030.478719559, 5371084.375, 5371309.0865576845, 5371381.408980258, 5371543.587127529, 5371618.148429397, 5371676.059006984, 5371770.63872346, 5371827.137648675, 5371901.079159917, 5371973.158273598, 5372114.676501502, 5372152.650010517, 5372320.1991608925, 5373571.875, 5373860.623580523, 5373903.125, 5373968.728934528, 5373985.917965146, 5374234.022432458, 5374294.859716815, 5374320.268126395, 5374774.781938803, 5375032.093630061, 5375097.130273431, 5375206.25, 5375237.421122096, 5375431.25, 5375450.503012962, 5375836.232283365, 5376232.8125, 5377720.274343351, 5377934.054299138, 5377935.762832534, 5379001.5625, 5380590.6900306875, 5381526.480295966, 5382277.821892398, 5382746.875, 5383349.226508208, 5383495.504162341, 5383939.846770719, 5385681.955504619, 5386200.772108385, 5387365.625, 5388196.74087568, 5388350.4328128, 5389175.462885737, 5389520.704717595, 5389560.642118663, 5389568.65816487, 5391857.504391803, 5392107.182871544, 5392242.043472054, 5392300.093303877, 5392583.615975391, 5392796.875, 5392881.891057571, 5393021.174210998, 5393322.499973048, 5393328.678504228, 5393444.602970399, 5393557.8125, 5393676.5625, 5393726.158108124, 5394170.126576867, 5394534.46646948, 5394568.330409648, 5395369.800537277, 5395387.5, 5395573.4375, 5395590.42281525, 5396509.689468494, 5396890.625, 5397189.0625, 5397763.542089697, 5397953.125, 5397953.31886142, 5397963.628709168, 5398244.546058966, 5398425.0, 5398732.8125, 5400327.225452736, 5400665.030755722, 5401226.925438377, 5402624.013244474, 5402788.079130947, 5403201.173234059, 5409466.005407928, 5410118.792988175, 5410433.723736464, 5411029.6875, 5417214.409187485, 5417685.463831318, 5419045.600667001, 5419262.063532204, 5419746.875, 5420060.9375, 5420061.782012803, 5420251.5625, 5420273.4375, 5420310.834267403, 5420447.729166039, 5420462.219844382, 5420466.575718711, 5420496.326531002, 5420556.25, 5420610.386022188, 5420637.244939069, 5420656.25, 5420659.16242114, 5420661.858323459, 5420671.49663855, 5420693.75, 5420693.75, 5420732.8125, 5420743.776325552, 5420766.922367665, 5420803.125, 5420812.5, 5420813.72676157, 5420868.491391003, 5420960.795788441, 5420985.153393734, 5420988.276496569, 5420991.367080025, 5421038.954879381, 5421141.197960323, 5421146.875, 5421229.6875, 5421274.5467211045, 5421318.181840561, 5421320.3125, 5421337.809843531, 5421341.221138365, 5421365.625, 5421386.498483713, 5421407.8125, 5421417.9182688715, 5421467.311497844, 5421484.375, 5421494.742728277, 5421515.718191214, 5421574.434597284, 5421587.5, 5421589.718298204, 5421649.882464401, 5421673.578198467, 5421694.995244381, 5421729.6875, 5421745.3125, 5421757.706878202, 5421758.488027283, 5421784.375, 5421786.353836812, 5421786.460351026, 5421788.667453863, 5421792.855690058, 5421833.143845942, 5421840.659638821, 5421845.092769803, 5421845.3125, 5421854.35549384, 5421858.042358919, 5421879.643542459, 5421901.753627548, 5421934.098333824, 5421977.642069415, 5422026.5625, 5422031.6976991445, 5422067.441063298, 5422089.57460432, 5422129.710507339, 5422130.919032396, 5422152.751142503, 5422153.411621312, 5422165.344795807, 5422165.557425219, 5422166.959711921, 5422216.856352933, 5422237.415401027, 5422268.153585893, 5422284.080804478, 5422304.360957712, 5422306.25, 5422371.512243733, 5422393.618554673, 5422439.445972586, 5422485.42165144, 5422487.5, 5422510.812059375, 5422520.3125, 5422526.652729403, 5422535.9375, 5422571.311942445, 5422579.896990818, 5422586.771096811, 5422592.295739834, 5422599.150892264, 5422619.937457701, 5422628.335604356, 5422631.154175793, 5422655.0512212925, 5422672.159958161, 5422676.336163903, 5422681.141480741, 5422685.115304371, 5422727.652343205, 5422729.5550497575, 5422736.278312554, 5422822.95959712, 5422829.782124723, 5422860.147565776, 5422895.3125, 5422902.725636195, 5422971.503859029, 5422994.026222008, 5423012.105282487, 5423012.5076795975, 5423053.429182893, 5423069.280544386, 5423090.625, 5423097.47650041, 5423118.914292189, 5423123.675115494, 5423127.538548126, 5423139.0625, 5423155.581695835, 5423200.0, 5423263.800443081, 5423276.281750153, 5423280.731785133, 5423313.012041646, 5423354.024077117, 5423357.8125, 5423363.929294069, 5423388.614500483, 5423425.0, 5423426.4278627075, 5423426.5625, 5423429.241676909, 5423456.103295576, 5423457.665841289, 5423481.294329698, 5423559.09748351, 5423585.797378133, 5423615.683181497, 5423662.5, 5423748.798196924, 5423776.28272119, 5423792.1875, 5423801.5625, 5423825.559898627, 5423830.718413488, 5423869.527161362, 5423919.687703998, 5423924.070390402, 5423927.7700258745, 5423965.625, 5423967.1875, 5423967.559894424, 5423995.006128821, 5424015.625, 5424106.25, 5424139.949936467, 5424143.35091414, 5424275.573633237, 5424315.651454064, 5424461.003926882, 5424464.624683752, 5424484.375, 5424607.971788953, 5424682.19988327, 5424726.059983818, 5424727.579613766, 5424804.6875, 5424854.141744161, 5425048.060649221, 5425089.489304781, 5425103.456432951, 5425106.003877559, 5425121.4660993265, 5425132.7948889565, 5425484.081357371, 5425538.936293699, 5425546.875, 5425583.287286935, 5425621.4791436605, 5425634.179557365, 5425730.731494831, 5425831.348000948, 5426246.287802457, 5426453.208467264, 5426778.729305956, 5426918.75, 5426928.125, 5427017.807516365, 5427109.8742601, 5427456.25, 5427559.050475495, 5427743.031509023, 5427746.047908553, 5428273.4375, 5428312.5, 5431302.718978529, 5431564.88906143, 5431681.444123939, 5432525.648555763, 5436300.0, 5436998.4375, 5438140.314770854, 5440129.6875, 5442888.802928244, 5443763.2827809565, 5444399.967907773, 5444520.110203739, 5458044.490851883, 5460504.6875, 5460821.875, 5461111.522826304, 5463318.75, 5463446.875, 5464561.694663688, 5465986.411655071, 5466317.023430703, 5467081.25, 5467309.375, 5467858.483421974, 5467891.170540335, 5474290.381313274, 5474313.183728736, 5474386.788834231, 5475056.168124387, 5475603.369089406, 5476486.297792291, 5476907.656952477, 5480353.125, 5480362.5, 5480468.043631452, 5481207.810613181, 5481231.25, 5481380.846798649, 5481612.082119711, 5481640.877168806, 5482049.980231673, 5482055.3060457315, 5482776.284778212, 5484666.011206581, 5485041.25658995, 5486050.398049383, 5486580.693481732, 5486594.206906727, 5487312.5, 5487870.3125, 5489249.70730362, 5492091.862738175, 5493281.25, 5497390.107334602, 5498811.033611724, 5501844.9218048155, 5504385.9055244485, 5505761.439170774, 5506965.625, 5507093.376490419, 5507416.99885345, 5507698.652229685, 5507700.0, 5508277.461455518, 5508832.670878549, 5509051.433324129, 5509148.347905478, 5512916.073852756, 5520518.590985414, 5525561.336977361, 5525707.242420749, 5526295.818208189, 5530796.330997068, 5533930.942974998, 5533943.940633938, 5534492.315049029, 5534809.1786048, 5534834.112332871, 5537511.726975291, 5538293.75, 5538604.055141972, 5539690.060761863, 5539868.958688546, 5541073.625529766, 5541920.3125, 5542941.892937015, 5548264.0625, 5549350.0, 5549378.3991934685, 5549510.9375, 5549738.2960896725, 5549772.649923004, 5550285.9375, 5550362.5, 5550373.4223242635, 5550657.92623087, 5550939.566119313, 5550992.515713825, 5551087.426984115, 5551119.961308224, 5551653.488978187, 5551669.300631036, 5551828.103711366, 5551848.4375, 5551950.063986951, 5551985.9375, 5552154.283781875, 5552285.9375, 5552432.773452262, 5552629.726423457, ...], [53.494572004200634, 49.95051367382794, 28.33945763717547, 15.311814082647805, 92.05322358037351, 10.649365726150693, 26.779311368758954, 10.545552864636495, 89.4769793747779, 54.67029280265715, 6.098252527477021, 7.429823617382238, 62.58702905676053, 62.2142724319266, 6.417488926970242, 51.439931205490836, 73.36901377370515, 27.237057181143214, 13.458906461179872, 6.709728792624241, 9.958465828679229, 15.061110858890736, 23.07777403946843, 22.44003386299745, 76.45180981130716, 66.93305521566461, 7.038287223684213, 5.5934017679314625, 7.436392614983476, 6.257750785250728, 5.566822673590371, 18.201804406291977, 13.376089181766526, 39.58274196300391, 62.95104039397375, 49.72165669732232, 30.307819967494098, 33.82000131808889, 31.337710564395195, 62.31434927065096, 30.74454476463874, 8.484475176774023, 79.24403054561382, 87.94735158214252, 9.0030522934196, 50.879071650370726, 93.9574483591032, 107.42022747900631, 81.6822746287729, 6.570455873887786, 8.856088362239811, 27.730068866687848, 88.52711226743452, 10.04991129978984, 20.390803079526034, 19.072528757337672, 6.013056757196874, 11.396360573664603, 120.03173304338065, 92.1336273507931, 107.97799630517423, 9.924225304710431, 56.281576715843705, 25.069852467316025, 21.675560566731207, 104.9065779016656, 30.07014623432748, 65.32509506536468, 70.58177759875296, 19.633757469750613, 8.024055947389586, 41.21109471285312, 6.034943050962742, 52.18789774960507, 26.91929872475911, 18.679917994503356, 20.078240717756746, 10.79776207255569, 136.93890908821805, 63.481578056218105, 10.664222417863046, 22.832293900936122, 126.38234365154182, 70.91858572958417, 63.67595946918139, 33.276241741046604, 31.208144573141592, 66.73571607810389, 7.207931283965687, 52.225599793632696, 12.411062827416213, 7.174487046666399, 8.303166478151809, 32.73602769931107, 41.215102855008716, 104.52675317919739, 10.93388620557294, 34.875081450565574, 82.27560858284072, 9.657926654038494, 9.875068537396693, 15.63169530714887, 19.963783408682925, 47.542226280988615, 16.096040062814915, 71.92703510645477, 35.22883454936148, 9.21230366895064, 17.651298889936438, 32.22155009832499, 27.97020618837723, 18.710166001160715, 41.48905529786246, 26.83341683302303, 18.212179943580157, 15.409372124736716, 39.281012024142385, 6.391350188595455, 60.72705113822887, 9.970159611264245, 10.413315825955127, 47.87926570185807, 33.082515157208775, 7.826562992605531, 37.60985541292519, 119.0396373727801, 94.71390994312011, 14.451298643005426, 32.33457893303725, 20.142815443888, 62.16388189623462, 24.338134657342923, 11.450737963575175, 99.72488650101259, 68.87096847055363, 113.0047539489833, 9.194697289900489, 28.771213027678886, 53.192572033843504, 6.59773986607755, 43.64299879255735, 18.85318084951455, 37.819728218499534, 112.95407049252552, 50.991183067967256, 30.17472151028089, 12.923490332517648, 42.72029640555655, 11.628619859175437, 52.612188020182266, 18.338269216393137, 27.814075057829402, 95.67562962101194, 97.19328636196394, 60.11613527932504, 65.0876571425627, 23.19688299107582, 5.530965953695559, 82.34383985116315, 10.901033395166527, 15.912210159236004, 24.6298349927202, 66.2952475455349, 38.01264608584058, 52.93308413918191, 8.592061775941403, 5.968506722246468, 8.277863501634114, 18.78312949741814, 31.586289075004352, 25.557475491868672, 72.38442401073856, 6.301000226416406, 59.19494873389995, 5.455882664003235, 8.211350034045065, 5.983541668540649, 12.095941256037833, 79.68015766193832, 55.87730869315618, 24.079624017551428, 43.36352836424817, 131.7400890002026, 35.26987591610839, 6.367888053717357, 27.081866913388726, 10.497857129649956, 56.56614050414766, 58.37320430324212, 28.681949884635944, 51.172028195759715, 10.590327791704002, 7.642253260746679, 12.774572995846881, 70.44679617666914, 5.6743333957869915, 15.236138785327796, 86.87999611480313, 7.127821990355894, 104.11013467503507, 59.1506541958137, 21.286623400061234, 11.868878054276598, 17.22914920325588, 18.65793045518917, 35.98487372133294, 64.97902165051279, 50.283930088064736, 5.4725248196350424, 40.728257498097236, 6.479538802144944, 15.648112712687189, 61.11814011818747, 32.854672953378895, 6.749321977418702, 5.241156942420016, 44.48359647169729, 25.020911947802567, 7.635626078600419, 5.420801425088904, 88.72308364049334, 34.139404996765975, 188.2143720282932, 77.53007849622352, 10.001948352768103, 46.7135441653772, 131.24072176141112, 16.243986742712277, 68.9306372536952, 49.86910870987042, 18.70412496841938, 33.47602671950773, 16.628508772620243, 140.107694641591, 9.888998070931123, 53.94642923434705, 38.724156718546084, 7.5224765933687605, 96.42659282350144, 12.600303631167415, 49.64417610543522, 56.61668610052922, 89.8576365377778, 65.9809340283834, 9.93891165902614, 10.947186582434547, 8.75272699404444, 7.248889613433652, 28.83045282372055, 30.692751489266943, 28.339756565941435, 60.58925870565412, 78.09494709746082, 38.25363134386938, 84.24404830717673, 110.94067550830903, 71.15766020140155, 16.662643891876744, 42.10390191175435, 52.44711414660333, 15.993608636758001, 6.21674108128149, 12.684800215005403, 85.0695369157844, 62.57015301233758, 9.280358964734504, 13.341018114504816, 124.61410595002815, 19.438880061409286, 66.97473755813283, 14.672773228438118, 85.27581902623953, 17.22949859169106, 5.537287045282882, 29.661173977940596, 12.58022008195361, 56.59693559048441, 29.558357452921875, 19.5442950525156, 17.34552932590421, 19.31719500697039, 36.94493456661561, 11.07469991381333, 5.378939407555162, 45.49917802847784, 141.95451504003927, 32.191920036418324, 46.68155146624765, 49.972249468125185, 40.57883954964397, 50.09039034570928, 39.49438256001075, 6.144107946781582, 57.8470632168086, 102.10047598341521, 14.846333864060338, 18.83675804428158, 5.820782469066135, 106.18652227016358, 65.69425327952376, 19.190430548935815, 25.68194185411904, 39.02379950850322, 28.651494822035552, 14.606171339952418, 19.339808458087145, 34.67404789220916, 6.599878181486612, 24.890725911987765, 44.05631133627957, 27.345416732513623, 54.64255422882697, 82.73930975614178, 89.63516144496738, 57.5353233578835, 22.426562532140554, 60.891630505217115, 46.946848052766605, 101.41652847311248, 51.89654242857361, 84.64588733190334, 11.718719089826912, 9.375639145493725, 5.190258944110415, 51.36090543157333, 28.693815870580544, 64.40886618379497, 16.790967630970698, 27.945717619964444, 5.322349727513459, 10.59559947120609, 19.04257870557631, 10.285020257162715, 69.45408611269097, 61.70640160603983, 9.161419427062375, 97.39798496495986, 43.26564984279021, 71.26631865966425, 15.008184957697077, 85.92041881145963, 11.670731728544805, 67.88639957985802, 25.741418177733156, 55.449366067554244, 10.473731164692207, 18.88978022981133, 5.5604692173458705, 21.230370333832198, 39.67582168208085, 10.346988436874097, 8.839481282873894, 13.086275393958472, 5.323439166686294, 66.09009018677307, 6.348502964569264, 6.283599274314099, 77.92652316535559, 17.888186080140724, 27.867637025065033, 83.69209537914284, 63.388472545700594, 37.475947738594755, 12.297275090528323, 14.37145694641667, 18.012308682489383, 73.21751288835648, 101.86549528399308, 6.023316788380455, 6.068456115979781, 43.56442960820303, 15.8427728934213, 44.08106083020873, 8.32668363733692, 121.04020879422664, 17.612889468629177, 18.46250720869128, 9.954922964339008, 73.0522637910809, 5.631116118893841, 107.23291425554957, 12.833403635002949, 6.471103625004676, 26.08008582255808, 45.86552496977473, 5.8660272684146015, 16.638326547015414, 10.410892963398345, 44.49054114622181, 11.790614407999687, 10.541693466801322, 14.989613366226948, 138.28108360999562, 15.522797772684891, 7.489976134225269, 10.60576706772183, 104.02111862294018, 32.64521426577692, 6.944760752425355, 16.397847170669888, 60.60607906599469, 21.074238884727933, 46.220956222621965, 12.923865199119213, 12.65970791750099, 44.06809926675996, 28.32005477642891, 67.9703197063156, 15.505272181702082, 28.663690338459396, 94.63190264572572, 49.19098883760634, 27.015757428226827, 73.71692237340103, 85.43714690248358, 53.43830356024969, 47.38829112851125, 6.138321871861711, 24.755436445239585, 62.375452620254244, 7.783974985781539, 5.256282125529091, 110.63066628076953, 53.824528530227724, 49.58828488183973, 52.91799899865934, 40.04525623924088, 31.50704517789569, 22.296590313599012, 70.09060260443688, 23.721377501810398, 31.564327287799603, 46.214786901348674, 16.903502943591207, 55.45244485479987, 13.534721679023031, 19.843466431603705, 17.88185887800198, 48.88089893079131, 45.71388820897724, 64.95471026663826, 7.3002749583918884, 33.06119682517623, 39.45771970038531, 11.40788051971511, 42.1052832054721, 8.736323072414576, 58.80614181053741, 19.237498749163326, 38.43914758221311, 10.112194672147936, 55.59031347311112, 35.21225062583325, 61.803349891137856, 120.29811367927583, 82.83348678162712, 9.267046980365059, 51.06313489669185, 10.541929182250016, 10.861126959868162, 8.99830516677266, 70.24352531368329, 108.46028408236462, 75.62467483614653, 12.945099310195063, 27.519027573043363, 39.02799909595365, 11.13361813450192, 64.03412010527018, 20.823748546987147, 5.164308925088214, 39.84881061118034, 23.70697282681525, 12.511450829353953, 97.03263505611008, 71.76849789875526, 63.29662955914128, 16.19322950092325, 44.70155131659481, 18.151185451560234, 5.5103862671295465, 16.663717735877256, 18.791730949863474, 5.241941646266318, 92.19448160058938, 46.36519213485815, 101.60440401525358, 30.189715918041856, 23.532299333379854, 18.879824309523652, 30.318673602414673, 19.330038787157996, 42.277134253754205, 55.448224760824814, 17.165546821414257, 56.15024399915272, 9.324091494644367, 28.155499047707004, 11.401024254549984, 84.6165262756999, 8.918193730970163, 10.626582102160762, 19.874870657079043, 23.17865956346455, 82.35950914489973, 6.0031865724000735, 17.80359290623116, 41.66510944518386, 23.389731249155474, 13.786923570593311, 99.94867273541435, 44.013007328181374, 65.49124546010601, 60.09163802305637, 5.979181071475851, 10.463350568262674, 41.320085623224244, 75.8552942128846, 17.5880592574129, 74.83605304835933, 96.76682834067904, 5.12460389746373, 35.53098997946351, 162.7939646368058, 58.93662614086749, 15.711125608827647, 82.56595741804026, 8.495121584317834, 15.766601508266552, 82.76215828951061, 68.5776684152436, 18.401694801257857, 23.122321325583137, 26.86774869282085, 26.85979324899229, 63.41435785645986, 7.095516467439011, 84.420179828071, 7.757114325633824, 55.07733700170003, 134.53093698152216, 9.287710095849155, 18.482407311527, 11.197784820828751, 7.597077605048012, 24.26177051080014, 8.91999480225104, 35.03450931126134, 7.056576879331357, 61.67913706173967, 56.28939384659148, 14.722661693667611, 134.47654574828812, 6.088395514391004, 19.666711088406444, 32.31895980927603, 98.93397752905246, 10.487588129626847, 8.933244285711082, 21.924173700234928, 10.85217742597171, 48.84688200169818, 5.568194122070754, 25.49404330785129, 7.612125057575548, 9.50893981492047, 43.58522322015105, 215.25180961585446, 56.578826898969766, 8.9627659887417, 11.3534163502158, 32.77317531021822, 11.08019620319404, 70.97103690172179, 49.066849088317284, 105.41184020304259, 94.78159798736245, 89.18271465679176, 104.36380704279796, 19.749915617230965, 41.50407382078204, 35.95719868760855, 49.44416918807375, 18.211032556112645, 11.063613429633172, 28.61944511723786, 19.15562780346222, 51.879335420137274, 62.125053525391046, 22.99192421909275, 6.2468376021796646, 64.58587548329112, 21.458326164693403, 11.679007991449254, 31.963017995801344, 21.660917385650087, 121.55842015094831, 17.94447472900637, 168.36693788141775, 5.699582573850479, 53.99006728967793, 23.57455320612839, 107.72086323523703, 14.861821032529758, 64.01759204827214, 92.81105057005234, 25.536705672620652, 14.7750329971817, 54.59117115417278, 12.971321050331124, 9.556999894073163, 34.14715031706767, 91.44640396594099, 81.43360746340988, 17.281859821705446, 28.95567549658069, 77.76817371125975, 19.449815955508356, 7.49122281959729, 9.187953448285022, 55.12576863736288, 116.79164032956785, 36.79965229022971, 10.684826366046194, 62.84099135480205, 102.92983397905526, 16.601414025625918, 19.10409079477417, 5.654304216179322, 12.595374186868074, 76.70968694278557, 8.216901204241456, 11.879067404480361, 106.9481740020727, 14.544179421420377, 90.46878284208725, 195.67612785678074, 34.147685400993154, 148.90567181341416, 10.909805064351168, 15.309479552699944, 25.38642484124982, 37.83825486485809, 32.75956428150974, 8.801686500700203, 24.857507042532415, 9.847807843497181, 19.62991849542945, 53.831724831127175, 53.77086272400665, 7.463243760965085, 10.849022269264415, 8.33554756051768, 22.334570669420867, 24.239938310715672, 81.85758837066248, 62.54504398369747, 9.166102117445071, 7.206644481394849, 37.97506196517216, 79.29632024696642, 36.126440154659235, 132.0615103384467, 28.97807008961484, 10.511214182126936, 54.05764989841923, 59.484276080527806, 39.726830080394606, 18.25877332536239, 20.601803682623267, 16.53237585113327, 17.708547565030127, 41.015102356059515, 13.639909001243018, 5.551832236448999, 35.19749375943182, 7.969796878837122, 50.97690744416698, 17.335596724078805, 19.17311539862664, 11.610126011682148, 22.151177152447836, 32.652934864562994, 54.1849946679193, 47.42028685652316, 45.46922551666888, 58.784230191521544, 33.60439028436142, 116.30575004018638, 78.12378069739518, 41.80024042172884, 18.651617750834973, 40.513517272262966, 20.653432938461037, 30.825898515256767, 33.464488100369465, 5.9211042317954385, 20.18736241496049, 69.47355380185016, 45.950186004852235, 84.11702237106611, 80.13466945199848, 7.128389081609644, 5.332917916517753, 46.03716463004153, 94.06162262034408, 23.30472045504261, 14.039637732235635, 14.42754828321963, 74.40804339940387, 24.787111377042507, 18.798714153194737, 26.564241577185342, 32.9457588007375, 99.37430717904317, 46.65487782023484, 8.06058904203148, 8.00736223702935, 49.680495015375264, 16.270481018668004, 17.833286983601713, 79.4766921087039, 8.6073226764894, 37.739384674110404, 12.50090481637653, 16.750668262080442, 49.2408535612996, 30.214809882468742, 11.276563415291806, 13.15042275671014, 71.7968176525321, 6.159059035874019, 14.511676141808069, 6.791924812366855, 13.856047350984213, 37.54003449746429, 108.32099585987807, 20.537319898731965, 54.396749999407675, 47.214995554095154, 16.807623191137374, 16.004644010265313, 22.60811349990548, 6.597198340974563, 9.628223573818667, 15.075200755909819, 76.47709928220833, 135.66065764024444, 10.645599208600405, 83.28774032769581, 117.61141659713269, 6.51747541917323, 36.45190577469006, 62.62265444588333, 89.39638741355012, 5.639301550742789, 7.6975960958375245, 27.243854236051003, 27.74989892408955, 41.00258388288134, 124.2170037754912, 16.159438108173767, 10.716263861290258, 14.69005304383665, 47.025492926570465, 61.568017692940245, 54.659096720462514, 20.582372256161143, 31.509433198348802, 37.06159366450658, 54.49136477300361, 20.307084434107853, 41.58770575177796, 62.341895476827005, 7.42674381069347, 46.517831523697595, 26.269813167875338, 81.29713077787113, 88.2744480873618, 43.42579077599415, 20.88631463551886, 118.73477553405739, 19.3428383658648, 7.150198299491441, 18.59818517767987, 138.01585506920077, 27.812094313979664, 26.76353334424478, 18.133450514951416, 16.15156458206043, 34.13500794380102, 64.81342342986542, 25.530377938775402, 36.160038619954996, 61.72573825244304, 11.705761359520405, 56.679400146120074, 5.294019124929448, 12.5964316496796, 63.116053420140034, 13.610382500540359, 22.88264717224887, 162.7328566026257, 303.6318914346788, 14.97086146423747, 11.638956564786739, 22.02183331080385, 41.77444662534907, 6.585705063071546, 6.513157607325127, 11.520601993897134, 6.195842639337852, 72.23311537895758, 15.783928600377692, 121.01262468425912, 130.8200233698156, 29.173411486421735, 116.34254621002974, 17.333341418888136, 12.899696303671634, 49.27392471566738, 6.250514184226674, 5.589731357400959, 32.63842850579262, 98.3885253766102, 57.08006324377554, 5.442951234944933, 21.854988541623253, 25.92925532027287, 104.5450467801655, 30.65578623779436, 26.486552844326024, 9.381088260105708, 64.67257471900415, 9.656226040306006, 52.09329413544967, 65.60158577358152, 40.555887692200585, 5.486322378015147, 19.677062457400332, 19.051732950108008, 30.21508414732061, 45.3342067972992, 9.048266202397185, 70.13449441123421, 57.033969484265555, 11.764349073105063, 29.47978357188118, 171.00754646321482, 46.73071922185613, 121.11405949409485, 10.556386819441633, 20.804606639987732, 8.300616395168095, 11.233148336989087, 9.856757293420536, 49.05340472488973, 23.938331803872615, 6.395162957034299, 13.31916008412765, 75.69532751356775, 109.64112042971944, 21.0484897916979, 91.68412853828973, 14.582051914977914, 16.375603780503983, 27.39026214118315, 30.86944622151597, 9.316556304969703, 102.59795608028224, 67.95705001315524, 30.104160767491276, 74.89349282353946, 5.905657727872323, 41.33137921897591, 51.941884195779835, 68.48234367698495, 60.54803070220349, 15.269486360394897, 9.90060553242838, 75.93314316033526, 37.419664068552464, 17.982327205800832, 17.26058078119438, 37.79321010372016, 49.4126119043151, 19.55921419859868, 7.89279816868031, 60.037310787546524, 45.904777918856446, 25.557439659835133, 21.11251621540857, 15.736913524435034, 13.232217649905891, 107.26668536278498, 225.76288691496688, 23.620952005914123, 36.325700202898375, 19.28157132898971, 48.46285215483276, 14.820583652209725, 14.222711857064732, 18.79001389658181, 54.167160552696025, 108.35895515053127, 7.829609836311661, 28.862304133274503, 46.660595384779455, 108.0431219281111, 27.52543663239454, 25.65760908436295, 76.62145676081947, 66.80297610880226, 12.367908882027926, 30.00126223576543, 31.175538187654517, 14.602946022007757, 153.52450302934358, 7.573890692509423, 15.961329512778258, 8.486761317345483, 60.94766550499371, 96.69512432158749, 71.20836411832772, 5.149230829659746, 28.365713107431592, 79.23507239559476, 30.16384522950846, 22.353363434448042, 11.54614844082077, 17.22727985055509, 9.91558677789007, 6.444419680447813, 30.276821517974483, 5.1803366172875425, 99.47875860389524, 13.173875973494637, 41.66990399340139, 55.192637781489395, 110.31685563504078, 10.699078439835645, 13.833049822303048, 98.3938507326731, 23.804845793714296, 5.947819445676122, 50.49733363038806, 9.304511599826808, 26.10207112086744, 74.2654608940611, 65.660554983889, 6.457920329410006, 149.73723102847026, 39.158853166339604, 46.52395842040194, 60.22920345093036, 26.209084197858388, 107.37396045502769, 17.79893689620227, 119.60856988530033, 6.845968734007469, 6.197763116185767, 6.1423160866094735, 21.065097914316624, 14.67009517499915, 7.673673312139696, 16.602890577638526, 128.22690977842925, 24.239625853468016, 7.345689750559497, 129.88324803826706, 12.977599257469368, 5.583573569494501, 11.470358281963328, 6.107873384772157, 29.85682737382277, 23.820441321634988, 61.30906831780891, 45.179022423263355, 17.593449124199932, 74.72497094607326, 10.109384096367062, 12.601885728317027, 55.58380286546616, 83.8962223446728, 9.318604113133034, 6.786426467034712, 17.285304460230417, 36.24500356014909, 29.514517143043562, 55.85503734497677, 16.53761961014501, 17.558073154489193, 8.275351533244407, 44.50614738460881, 117.0961709207948, 44.58399069852456, 5.7847005086937635, 96.09688453022723, 27.77497708900091, 15.091972277102379, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([2855395.3125, 2994300.0, 2994931.2405584753, 3187290.718875857, 3189748.1767384573, 3270816.858284211, 3272820.811324488, 3311733.967636723, 3374573.4375, 3401644.9657621533, 3427568.847073595, 3726594.8061575764, 3778815.625, 3822006.25, 3884593.2911411473, 3888089.0625, 3888597.0851166127, 3889099.1370707606, 3889216.7353045647, 3889513.7870255914, 4634160.033883108, 4693033.968106939, 4697543.395424016, 4748882.402460415, 4830913.812167441, 4831973.4375, 4832594.986390655, 4836941.808243949, 4842513.576370347, 4845423.362354931, 4845717.863673371, 4849041.661432672, 4872527.643171008, 4874256.155558832, 4877636.445440574, 4886293.75, 4889669.237317314, 4909079.6875, 4909088.939051034, 4913234.086208767, 4927123.304499805, 4927194.1063739825, 4939382.728033629, 4939387.5, 4940107.396851909, 4940820.3125, 4949251.5625, 4949473.4375, 4971053.062153298, 4982903.636957948, 4984991.566250797, 5008046.833535533, 5009031.731398902, 5011931.992885671, 5022196.256912989, 5024153.904991147, 5024233.621079353, 5024606.415335922, 5024685.9375, 5024823.4375, 5024865.625, 5024899.064222002, 5024920.3125, 5024972.611647839, 5025037.168738352, 5025118.75, 5025296.875, 5025346.741077036, 5025440.023926138, 5025444.075659798, 5025463.530727897, 5025476.390152557, 5025480.722843099, 5025528.125, 5025550.350928677, 5025648.981925457, 5025652.470419253, 5025663.840632566, 5025726.5625, 5025742.726943689, 5025748.119258189, 5025751.187027634, 5025759.375, 5025765.625, 5025787.5, 5025800.595566204, 5025830.078365911, 5025846.954547348, 5025851.881575363, 5025912.4545826735, 5025973.979948827, 5025976.760485339, 5025985.968739135, 5025996.744875704, 5026054.145258986, 5026079.6875, 5026100.203952361, 5026125.278670451, 5026152.306904981, 5026205.049969485, 5026224.017355298, 5026294.437818003, 5026308.706690438, 5026365.625, 5026369.023166312, 5026450.600405582, 5026474.786558019, 5026523.293206101, 5026538.066256849, 5026548.4375, 5026554.658851735, 5026586.667010979, 5026613.314346447, 5026613.97076282, 5026629.971911668, 5026690.742562789, 5026742.1875, 5026746.235790918, 5026765.015108529, 5026805.357277176, 5026872.92672563, 5027004.6875, 5027055.900282206, 5027059.952952234, 5027072.821940654, 5027171.875, 5027187.320422914, 5027246.740154361, 5027318.75, 5027385.29057707, 5027526.767718898, 5027607.557134427, 5027633.009781559, 5027681.25, 5027790.625, 5027812.5, 5027831.083775038, 5027896.1821866995, 5027976.258930111, 5028100.671315531, 5028237.712001429, 5028380.437235183, 5028420.95808473, 5028442.876139726, 5028450.574593554, 5028560.9375, 5028563.408625095, 5028582.8125, 5028609.673455229, 5029251.5625, 5029875.674985809, 5030104.650548785, 5030187.5, 5030310.9375, 5030404.6875, 5030700.0, 5030854.342867112, 5031187.456352913, 5031489.0625, 5037456.09997399, 5039629.920818758, 5039726.328339769, 5040753.125, 5046424.746682389, 5046673.4375, 5046759.911208369, 5047528.453207839, 5047885.920985604, 5051766.3648790205, 5053470.3125, 5056165.920233181, 5058585.9375, 5058601.825437767, 5058680.030991757, 5058923.299693727, 5058927.979982403, 5059000.493230731, 5059145.8546521105, 5059168.75, 5059378.125, 5059507.537818115, 5059604.402589671, 5059764.983394221, 5059919.869614715, 5060386.694956042, 5060553.04758968, 5060560.493349808, 5060745.3125, 5061018.301039789, 5061103.125, 5061140.625, 5061166.814160248, 5061531.356599224, 5062239.910482025, 5062256.25, 5065788.540673858, 5066303.200209999, 5066496.875, 5066609.399178512, 5066797.106644562, 5068209.982389777, 5077446.354049541, 5078478.552520873, 5078602.432425653, 5078721.03452347, 5078951.301279539, 5078954.6875, 5079259.375, 5079314.310778942, 5079492.1875, 5079531.201651546, 5079767.36130528, 5080023.879015923, 5080026.7671137145, 5080037.42853228, 5080048.294369415, 5080114.0625, 5080141.980830921, 5080209.463670044, 5080658.384517573, 5080664.0625, 5080671.593008326, 5080686.08793129, 5080804.033410489, 5080849.136664661, 5080884.375, 5080932.601139118, 5081173.741842167, 5081195.3125, 5081200.0, 5081392.5888583185, 5081498.397603285, 5081560.861018106, 5081762.5, 5081924.030720153, 5081945.01484487, 5082121.856893212, 5082534.146047478, 5082684.138847614, 5082839.836739549, 5082851.5625, 5082937.5, 5083056.780146163, 5083081.25, 5083374.078064604, 5083388.943855069, 5083669.538453011, 5084017.651082968, 5084173.4375, 5084329.6875, 5084333.124426156, 5084472.392236296, 5084569.6134224385, 5084673.814415016, 5084720.8944475, 5084829.6875, 5085102.643326197, 5085484.763507837, 5086221.875, 5086545.3125, 5087882.087461535, 5088952.714915242, 5096925.810378952, 5097456.25, 5097712.5, 5097945.251509137, 5098017.753861074, 5098473.597133743, 5098728.290364108, 5099376.5625, 5099378.05266082, 5099523.302378471, 5100127.05625605, 5100228.211369183, 5100557.8125, 5100877.328040795, 5101060.31852632, 5101570.3125, 5101850.625001107, 5102773.951668662, 5103924.250194106, 5104032.8125, 5116804.653321069, 5118891.666936507, 5128094.847975582, 5141249.888658763, 5141860.145036695, 5142057.8125, 5142212.5, 5147923.105049831, 5159997.906637208, 5165075.607182449, 5165489.584403939, 5165753.765462655, 5166318.75, 5166562.4748034505, 5166656.997433055, 5166879.779011017, 5166981.63954568, 5167995.3125, 5168175.795884808, 5168201.063633974, 5173868.75, 5178619.890533775, 5180160.225618921, 5180551.119355285, 5180720.3125, 5180935.058642444, 5181060.72179552, 5181087.5, 5181218.687449086, 5181257.060319623, 5181295.3125, 5181382.7636545645, 5181415.625, 5181444.901246652, 5181445.038627659, 5181451.177382114, 5181467.1875, 5181475.0, 5181543.75, 5181642.535340628, 5181648.489356569, 5181726.03787376, 5181804.6875, 5181841.09862249, 5181857.636286845, 5181858.645316424, 5181893.720056711, 5181904.104990572, 5181952.755634056, 5182058.588413163, 5182080.95564091, 5182098.200015877, 5182113.686291143, 5182126.354385931, 5182173.330887189, 5182262.968655441, 5182266.12767135, 5182281.267383815, 5182379.6875, 5182381.571688709, 5182403.125, 5182432.339212452, 5182439.0625, 5182521.412024101, 5182530.442346947, 5182628.676702422, 5182632.683698079, 5182642.1875, 5182660.373143221, 5182757.167173732, 5182788.472553969, 5182824.450522098, 5182826.308429513, 5182855.305020784, 5182907.941219399, 5183044.051495121, 5183089.370816909, 5183103.090909591, 5183110.635178023, 5183398.4375, 5183548.4375, 5183653.630858457, 5183709.216944151, 5183849.112459649, 5183901.06282647, 5184388.019651389, 5184405.60311611, 5184545.121465857, 5184783.65372534, 5184933.0304360185, 5185121.764596096, 5185139.137579333, 5185157.8125, 5185211.497345525, 5185299.131020147, 5185336.593073582, 5185340.625, 5185542.492021741, 5185820.3125, 5185893.059693414, 5186026.459747573, 5186246.737820617, 5186278.125, 5186442.866985012, 5186686.321275854, 5186697.924788917, 5186760.9375, 5186772.261391658, 5186807.402181063, 5186918.762563646, 5186971.875, 5187026.707082932, 5187166.86310166, 5187182.450779549, 5187214.0625, 5187332.8125, 5187353.969806108, 5187509.710952912, 5187562.5, 5187616.64446037, 5187640.625, 5187646.833414645, 5187649.237223508, 5187666.845722735, 5187707.80206395, 5187718.75, 5187939.202943851, 5188006.25, 5188059.375, 5188212.5, 5188754.60630813, 5188943.75, 5189532.8125, 5189563.848418244, 5189848.703098473, 5189934.844490505, 5189969.267750364, 5190003.125, 5190169.223515017, 5190223.830597937, 5190518.527956122, 5190698.4375, 5190867.1875, 5191389.0625, 5191407.8125, 5191784.120292049, 5192750.970896937, 5193397.457824727, 5193543.447697705, 5193553.125, 5193784.375, 5195253.757274113, 5204203.125, 5209124.574464809, 5214193.06704028, 5232484.978977873, 5238125.309332606, 5239018.75, 5241132.8125, 5241244.389230284, 5241670.3125, 5241767.1875, 5241822.0471446775, 5242217.1875, 5242482.013543233, 5242636.631668234, 5242643.165948733, 5242925.0, 5242933.611076883, 5243209.375, 5243375.0, 5243811.848528359, 5243895.249992702, 5243934.375, 5243959.297895524, 5243984.375, 5244251.152361687, 5244301.384982399, 5244366.765413322, 5244373.4375, 5244476.5625, 5244634.521011785, 5244797.792250531, 5244802.707888566, 5244804.640121497, 5244842.341966775, 5244853.125, 5244991.41599548, 5245045.2672433825, 5245228.096499018, 5245233.412964301, 5245264.7979311505, 5245568.601016085, 5247451.9814979965, 5248094.700399729, 5248284.668734091, 5248515.780978151, 5248525.646446917, 5248954.2108574435, 5249010.204660573, 5249038.443832979, 5249218.635129838, 5249229.5732975695, 5249296.875, 5249960.9375, 5250164.0625, 5250512.703419063, 5250947.62845897, 5251587.44879722, 5251728.939381367, 5252610.9375, 5258974.432212315, 5259141.5213001575, 5260061.264526029, 5260296.866340143, 5262128.757941174, 5270026.450735971, 5270305.953491432, 5275446.342244776, 5275780.903854256, 5275881.6353343995, 5276102.778853984, 5276618.75, 5277396.016866052, 5277417.348956711, 5277550.0, 5279207.973976491, 5280724.660072825, 5280773.4375, 5284214.389501141, 5284227.757271448, 5284609.375, 5285230.133180004, 5285401.091378409, 5286656.25, 5292309.165674951, 5302161.902983017, 5302747.468031153, 5303328.456522124, 5303848.159450682, 5307210.9375, 5310688.024672479, 5310709.375, 5312167.381974567, 5312357.8125, 5312405.062084608, 5313047.0758464765, 5313498.309189519, 5313518.75, 5315316.309488811, 5320929.336657538, 5322526.472761379, 5323064.6981947, 5324792.1875, 5333951.462910789, 5334894.749810541, 5336601.968808171, 5343521.875, 5347094.728728274, 5350154.635370246, 5350758.781500784, 5352036.706971518, 5353840.607936116, 5354594.842130057, 5354721.344775342, 5354729.6875, 5355487.247319581, 5355571.875, 5356125.0, 5356521.837432021, 5356850.0, 5357668.752848775, 5358008.780665896, 5359598.192914087, 5359913.414644814, 5360632.360354867, 5360636.988330368, 5361930.79215393, 5362084.191270825, 5366400.0, 5366605.390373008, 5366886.729711866, 5367829.712005613, 5368000.202757713, 5368403.125, 5368630.573786954, 5368674.634125064, 5368822.966791343, 5369022.014757135, 5369045.993192327, 5369179.656890053, 5369246.875, 5369362.5, 5369400.129655361, 5369517.293608551, 5369604.6875, 5369690.625, 5369716.492991197, 5369729.6875, 5369900.0, 5369957.8125, 5370030.343160078, 5370326.521104378, 5370393.75, 5371030.478719559, 5371084.375, 5371309.0865576845, 5371381.408980258, 5371543.587127529, 5371618.148429397, 5371676.059006984, 5371770.63872346, 5371827.137648675, 5371901.079159917, 5371973.158273598, 5372114.676501502, 5372152.650010517, 5372320.1991608925, 5373571.875, 5373860.623580523, 5373903.125, 5373968.728934528, 5373985.917965146, 5374234.022432458, 5374294.859716815, 5374320.268126395, 5374774.781938803, 5375032.093630061, 5375097.130273431, 5375206.25, 5375237.421122096, 5375431.25, 5375450.503012962, 5375836.232283365, 5376232.8125, 5377720.274343351, 5377934.054299138, 5377935.762832534, 5379001.5625, 5380590.6900306875, 5381526.480295966, 5382277.821892398, 5382746.875, 5383349.226508208, 5383495.504162341, 5383939.846770719, 5385681.955504619, 5386200.772108385, 5387365.625, 5388196.74087568, 5388350.4328128, 5389175.462885737, 5389520.704717595, 5389560.642118663, 5389568.65816487, 5391857.504391803, 5392107.182871544, 5392242.043472054, 5392300.093303877, 5392583.615975391, 5392796.875, 5392881.891057571, 5393021.174210998, 5393322.499973048, 5393328.678504228, 5393444.602970399, 5393557.8125, 5393676.5625, 5393726.158108124, 5394170.126576867, 5394534.46646948, 5394568.330409648, 5395369.800537277, 5395387.5, 5395573.4375, 5395590.42281525, 5396509.689468494, 5396890.625, 5397189.0625, 5397763.542089697, 5397953.125, 5397953.31886142, 5397963.628709168, 5398244.546058966, 5398425.0, 5398732.8125, 5400327.225452736, 5400665.030755722, 5401226.925438377, 5402624.013244474, 5402788.079130947, 5403201.173234059, 5409466.005407928, 5410118.792988175, 5410433.723736464, 5411029.6875, 5417214.409187485, 5417685.463831318, 5419045.600667001, 5419262.063532204, 5419746.875, 5420060.9375, 5420061.782012803, 5420251.5625, 5420273.4375, 5420310.834267403, 5420447.729166039, 5420462.219844382, 5420466.575718711, 5420496.326531002, 5420556.25, 5420610.386022188, 5420637.244939069, 5420656.25, 5420659.16242114, 5420661.858323459, 5420671.49663855, 5420693.75, 5420693.75, 5420732.8125, 5420743.776325552, 5420766.922367665, 5420803.125, 5420812.5, 5420813.72676157, 5420868.491391003, 5420960.795788441, 5420985.153393734, 5420988.276496569, 5420991.367080025, 5421038.954879381, 5421141.197960323, 5421146.875, 5421229.6875, 5421274.5467211045, 5421318.181840561, 5421320.3125, 5421337.809843531, 5421341.221138365, 5421365.625, 5421386.498483713, 5421407.8125, 5421417.9182688715, 5421467.311497844, 5421484.375, 5421494.742728277, 5421515.718191214, 5421574.434597284, 5421587.5, 5421589.718298204, 5421649.882464401, 5421673.578198467, 5421694.995244381, 5421729.6875, 5421745.3125, 5421757.706878202, 5421758.488027283, 5421784.375, 5421786.353836812, 5421786.460351026, 5421788.667453863, 5421792.855690058, 5421833.143845942, 5421840.659638821, 5421845.092769803, 5421845.3125, 5421854.35549384, 5421858.042358919, 5421879.643542459, 5421901.753627548, 5421934.098333824, 5421977.642069415, 5422026.5625, 5422031.6976991445, 5422067.441063298, 5422089.57460432, 5422129.710507339, 5422130.919032396, 5422152.751142503, 5422153.411621312, 5422165.344795807, 5422165.557425219, 5422166.959711921, 5422216.856352933, 5422237.415401027, 5422268.153585893, 5422284.080804478, 5422304.360957712, 5422306.25, 5422371.512243733, 5422393.618554673, 5422439.445972586, 5422485.42165144, 5422487.5, 5422510.812059375, 5422520.3125, 5422526.652729403, 5422535.9375, 5422571.311942445, 5422579.896990818, 5422586.771096811, 5422592.295739834, 5422599.150892264, 5422619.937457701, 5422628.335604356, 5422631.154175793, 5422655.0512212925, 5422672.159958161, 5422676.336163903, 5422681.141480741, 5422685.115304371, 5422727.652343205, 5422729.5550497575, 5422736.278312554, 5422822.95959712, 5422829.782124723, 5422860.147565776, 5422895.3125, 5422902.725636195, 5422971.503859029, 5422994.026222008, 5423012.105282487, 5423012.5076795975, 5423053.429182893, 5423069.280544386, 5423090.625, 5423097.47650041, 5423118.914292189, 5423123.675115494, 5423127.538548126, 5423139.0625, 5423155.581695835, 5423200.0, 5423263.800443081, 5423276.281750153, 5423280.731785133, 5423313.012041646, 5423354.024077117, 5423357.8125, 5423363.929294069, 5423388.614500483, 5423425.0, 5423426.4278627075, 5423426.5625, 5423429.241676909, 5423456.103295576, 5423457.665841289, 5423481.294329698, 5423559.09748351, 5423585.797378133, 5423615.683181497, 5423662.5, 5423748.798196924, 5423776.28272119, 5423792.1875, 5423801.5625, 5423825.559898627, 5423830.718413488, 5423869.527161362, 5423919.687703998, 5423924.070390402, 5423927.7700258745, 5423965.625, 5423967.1875, 5423967.559894424, 5423995.006128821, 5424015.625, 5424106.25, 5424139.949936467, 5424143.35091414, 5424275.573633237, 5424315.651454064, 5424461.003926882, 5424464.624683752, 5424484.375, 5424607.971788953, 5424682.19988327, 5424726.059983818, 5424727.579613766, 5424804.6875, 5424854.141744161, 5425048.060649221, 5425089.489304781, 5425103.456432951, 5425106.003877559, 5425121.4660993265, 5425132.7948889565, 5425484.081357371, 5425538.936293699, 5425546.875, 5425583.287286935, 5425621.4791436605, 5425634.179557365, 5425730.731494831, 5425831.348000948, 5426246.287802457, 5426453.208467264, 5426778.729305956, 5426918.75, 5426928.125, 5427017.807516365, 5427109.8742601, 5427456.25, 5427559.050475495, 5427743.031509023, 5427746.047908553, 5428273.4375, 5428312.5, 5431302.718978529, 5431564.88906143, 5431681.444123939, 5432525.648555763, 5436300.0, 5436998.4375, 5438140.314770854, 5440129.6875, 5442888.802928244, 5443763.2827809565, 5444399.967907773, 5444520.110203739, 5458044.490851883, 5460504.6875, 5460821.875, 5461111.522826304, 5463318.75, 5463446.875, 5464561.694663688, 5465986.411655071, 5466317.023430703, 5467081.25, 5467309.375, 5467858.483421974, 5467891.170540335, 5474290.381313274, 5474313.183728736, 5474386.788834231, 5475056.168124387, 5475603.369089406, 5476486.297792291, 5476907.656952477, 5480353.125, 5480362.5, 5480468.043631452, 5481207.810613181, 5481231.25, 5481380.846798649, 5481612.082119711, 5481640.877168806, 5482049.980231673, 5482055.3060457315, 5482776.284778212, 5484666.011206581, 5485041.25658995, 5486050.398049383, 5486580.693481732, 5486594.206906727, 5487312.5, 5487870.3125, 5489249.70730362, 5492091.862738175, 5493281.25, 5497390.107334602, 5498811.033611724, 5501844.9218048155, 5504385.9055244485, 5505761.439170774, 5506965.625, 5507093.376490419, 5507416.99885345, 5507698.652229685, 5507700.0, 5508277.461455518, 5508832.670878549, 5509051.433324129, 5509148.347905478, 5512916.073852756, 5520518.590985414, 5525561.336977361, 5525707.242420749, 5526295.818208189, 5530796.330997068, 5533930.942974998, 5533943.940633938, 5534492.315049029, 5534809.1786048, 5534834.112332871, 5537511.726975291, 5538293.75, 5538604.055141972, 5539690.060761863, 5539868.958688546, 5541073.625529766, 5541920.3125, 5542941.892937015, 5548264.0625, 5549350.0, 5549378.3991934685, 5549510.9375, 5549738.2960896725, 5549772.649923004, 5550285.9375, 5550362.5, 5550373.4223242635, 5550657.92623087, 5550939.566119313, 5550992.515713825, 5551087.426984115, 5551119.961308224, 5551653.488978187, 5551669.300631036, 5551828.103711366, 5551848.4375, 5551950.063986951, 5551985.9375, 5552154.283781875, 5552285.9375, 5552432.773452262, 5552629.726423457, ...], [53.494572004200634, 49.95051367382794, 28.33945763717547, 15.311814082647805, 92.05322358037351, 10.649365726150693, 26.779311368758954, 10.545552864636495, 89.4769793747779, 54.67029280265715, 6.098252527477021, 7.429823617382238, 62.58702905676053, 62.2142724319266, 6.417488926970242, 51.439931205490836, 73.36901377370515, 27.237057181143214, 13.458906461179872, 6.709728792624241, 9.958465828679229, 15.061110858890736, 23.07777403946843, 22.44003386299745, 76.45180981130716, 66.93305521566461, 7.038287223684213, 5.5934017679314625, 7.436392614983476, 6.257750785250728, 5.566822673590371, 18.201804406291977, 13.376089181766526, 39.58274196300391, 62.95104039397375, 49.72165669732232, 30.307819967494098, 33.82000131808889, 31.337710564395195, 62.31434927065096, 30.74454476463874, 8.484475176774023, 79.24403054561382, 87.94735158214252, 9.0030522934196, 50.879071650370726, 93.9574483591032, 107.42022747900631, 81.6822746287729, 6.570455873887786, 8.856088362239811, 27.730068866687848, 88.52711226743452, 10.04991129978984, 20.390803079526034, 19.072528757337672, 6.013056757196874, 11.396360573664603, 120.03173304338065, 92.1336273507931, 107.97799630517423, 9.924225304710431, 56.281576715843705, 25.069852467316025, 21.675560566731207, 104.9065779016656, 30.07014623432748, 65.32509506536468, 70.58177759875296, 19.633757469750613, 8.024055947389586, 41.21109471285312, 6.034943050962742, 52.18789774960507, 26.91929872475911, 18.679917994503356, 20.078240717756746, 10.79776207255569, 136.93890908821805, 63.481578056218105, 10.664222417863046, 22.832293900936122, 126.38234365154182, 70.91858572958417, 63.67595946918139, 33.276241741046604, 31.208144573141592, 66.73571607810389, 7.207931283965687, 52.225599793632696, 12.411062827416213, 7.174487046666399, 8.303166478151809, 32.73602769931107, 41.215102855008716, 104.52675317919739, 10.93388620557294, 34.875081450565574, 82.27560858284072, 9.657926654038494, 9.875068537396693, 15.63169530714887, 19.963783408682925, 47.542226280988615, 16.096040062814915, 71.92703510645477, 35.22883454936148, 9.21230366895064, 17.651298889936438, 32.22155009832499, 27.97020618837723, 18.710166001160715, 41.48905529786246, 26.83341683302303, 18.212179943580157, 15.409372124736716, 39.281012024142385, 6.391350188595455, 60.72705113822887, 9.970159611264245, 10.413315825955127, 47.87926570185807, 33.082515157208775, 7.826562992605531, 37.60985541292519, 119.0396373727801, 94.71390994312011, 14.451298643005426, 32.33457893303725, 20.142815443888, 62.16388189623462, 24.338134657342923, 11.450737963575175, 99.72488650101259, 68.87096847055363, 113.0047539489833, 9.194697289900489, 28.771213027678886, 53.192572033843504, 6.59773986607755, 43.64299879255735, 18.85318084951455, 37.819728218499534, 112.95407049252552, 50.991183067967256, 30.17472151028089, 12.923490332517648, 42.72029640555655, 11.628619859175437, 52.612188020182266, 18.338269216393137, 27.814075057829402, 95.67562962101194, 97.19328636196394, 60.11613527932504, 65.0876571425627, 23.19688299107582, 5.530965953695559, 82.34383985116315, 10.901033395166527, 15.912210159236004, 24.6298349927202, 66.2952475455349, 38.01264608584058, 52.93308413918191, 8.592061775941403, 5.968506722246468, 8.277863501634114, 18.78312949741814, 31.586289075004352, 25.557475491868672, 72.38442401073856, 6.301000226416406, 59.19494873389995, 5.455882664003235, 8.211350034045065, 5.983541668540649, 12.095941256037833, 79.68015766193832, 55.87730869315618, 24.079624017551428, 43.36352836424817, 131.7400890002026, 35.26987591610839, 6.367888053717357, 27.081866913388726, 10.497857129649956, 56.56614050414766, 58.37320430324212, 28.681949884635944, 51.172028195759715, 10.590327791704002, 7.642253260746679, 12.774572995846881, 70.44679617666914, 5.6743333957869915, 15.236138785327796, 86.87999611480313, 7.127821990355894, 104.11013467503507, 59.1506541958137, 21.286623400061234, 11.868878054276598, 17.22914920325588, 18.65793045518917, 35.98487372133294, 64.97902165051279, 50.283930088064736, 5.4725248196350424, 40.728257498097236, 6.479538802144944, 15.648112712687189, 61.11814011818747, 32.854672953378895, 6.749321977418702, 5.241156942420016, 44.48359647169729, 25.020911947802567, 7.635626078600419, 5.420801425088904, 88.72308364049334, 34.139404996765975, 188.2143720282932, 77.53007849622352, 10.001948352768103, 46.7135441653772, 131.24072176141112, 16.243986742712277, 68.9306372536952, 49.86910870987042, 18.70412496841938, 33.47602671950773, 16.628508772620243, 140.107694641591, 9.888998070931123, 53.94642923434705, 38.724156718546084, 7.5224765933687605, 96.42659282350144, 12.600303631167415, 49.64417610543522, 56.61668610052922, 89.8576365377778, 65.9809340283834, 9.93891165902614, 10.947186582434547, 8.75272699404444, 7.248889613433652, 28.83045282372055, 30.692751489266943, 28.339756565941435, 60.58925870565412, 78.09494709746082, 38.25363134386938, 84.24404830717673, 110.94067550830903, 71.15766020140155, 16.662643891876744, 42.10390191175435, 52.44711414660333, 15.993608636758001, 6.21674108128149, 12.684800215005403, 85.0695369157844, 62.57015301233758, 9.280358964734504, 13.341018114504816, 124.61410595002815, 19.438880061409286, 66.97473755813283, 14.672773228438118, 85.27581902623953, 17.22949859169106, 5.537287045282882, 29.661173977940596, 12.58022008195361, 56.59693559048441, 29.558357452921875, 19.5442950525156, 17.34552932590421, 19.31719500697039, 36.94493456661561, 11.07469991381333, 5.378939407555162, 45.49917802847784, 141.95451504003927, 32.191920036418324, 46.68155146624765, 49.972249468125185, 40.57883954964397, 50.09039034570928, 39.49438256001075, 6.144107946781582, 57.8470632168086, 102.10047598341521, 14.846333864060338, 18.83675804428158, 5.820782469066135, 106.18652227016358, 65.69425327952376, 19.190430548935815, 25.68194185411904, 39.02379950850322, 28.651494822035552, 14.606171339952418, 19.339808458087145, 34.67404789220916, 6.599878181486612, 24.890725911987765, 44.05631133627957, 27.345416732513623, 54.64255422882697, 82.73930975614178, 89.63516144496738, 57.5353233578835, 22.426562532140554, 60.891630505217115, 46.946848052766605, 101.41652847311248, 51.89654242857361, 84.64588733190334, 11.718719089826912, 9.375639145493725, 5.190258944110415, 51.36090543157333, 28.693815870580544, 64.40886618379497, 16.790967630970698, 27.945717619964444, 5.322349727513459, 10.59559947120609, 19.04257870557631, 10.285020257162715, 69.45408611269097, 61.70640160603983, 9.161419427062375, 97.39798496495986, 43.26564984279021, 71.26631865966425, 15.008184957697077, 85.92041881145963, 11.670731728544805, 67.88639957985802, 25.741418177733156, 55.449366067554244, 10.473731164692207, 18.88978022981133, 5.5604692173458705, 21.230370333832198, 39.67582168208085, 10.346988436874097, 8.839481282873894, 13.086275393958472, 5.323439166686294, 66.09009018677307, 6.348502964569264, 6.283599274314099, 77.92652316535559, 17.888186080140724, 27.867637025065033, 83.69209537914284, 63.388472545700594, 37.475947738594755, 12.297275090528323, 14.37145694641667, 18.012308682489383, 73.21751288835648, 101.86549528399308, 6.023316788380455, 6.068456115979781, 43.56442960820303, 15.8427728934213, 44.08106083020873, 8.32668363733692, 121.04020879422664, 17.612889468629177, 18.46250720869128, 9.954922964339008, 73.0522637910809, 5.631116118893841, 107.23291425554957, 12.833403635002949, 6.471103625004676, 26.08008582255808, 45.86552496977473, 5.8660272684146015, 16.638326547015414, 10.410892963398345, 44.49054114622181, 11.790614407999687, 10.541693466801322, 14.989613366226948, 138.28108360999562, 15.522797772684891, 7.489976134225269, 10.60576706772183, 104.02111862294018, 32.64521426577692, 6.944760752425355, 16.397847170669888, 60.60607906599469, 21.074238884727933, 46.220956222621965, 12.923865199119213, 12.65970791750099, 44.06809926675996, 28.32005477642891, 67.9703197063156, 15.505272181702082, 28.663690338459396, 94.63190264572572, 49.19098883760634, 27.015757428226827, 73.71692237340103, 85.43714690248358, 53.43830356024969, 47.38829112851125, 6.138321871861711, 24.755436445239585, 62.375452620254244, 7.783974985781539, 5.256282125529091, 110.63066628076953, 53.824528530227724, 49.58828488183973, 52.91799899865934, 40.04525623924088, 31.50704517789569, 22.296590313599012, 70.09060260443688, 23.721377501810398, 31.564327287799603, 46.214786901348674, 16.903502943591207, 55.45244485479987, 13.534721679023031, 19.843466431603705, 17.88185887800198, 48.88089893079131, 45.71388820897724, 64.95471026663826, 7.3002749583918884, 33.06119682517623, 39.45771970038531, 11.40788051971511, 42.1052832054721, 8.736323072414576, 58.80614181053741, 19.237498749163326, 38.43914758221311, 10.112194672147936, 55.59031347311112, 35.21225062583325, 61.803349891137856, 120.29811367927583, 82.83348678162712, 9.267046980365059, 51.06313489669185, 10.541929182250016, 10.861126959868162, 8.99830516677266, 70.24352531368329, 108.46028408236462, 75.62467483614653, 12.945099310195063, 27.519027573043363, 39.02799909595365, 11.13361813450192, 64.03412010527018, 20.823748546987147, 5.164308925088214, 39.84881061118034, 23.70697282681525, 12.511450829353953, 97.03263505611008, 71.76849789875526, 63.29662955914128, 16.19322950092325, 44.70155131659481, 18.151185451560234, 5.5103862671295465, 16.663717735877256, 18.791730949863474, 5.241941646266318, 92.19448160058938, 46.36519213485815, 101.60440401525358, 30.189715918041856, 23.532299333379854, 18.879824309523652, 30.318673602414673, 19.330038787157996, 42.277134253754205, 55.448224760824814, 17.165546821414257, 56.15024399915272, 9.324091494644367, 28.155499047707004, 11.401024254549984, 84.6165262756999, 8.918193730970163, 10.626582102160762, 19.874870657079043, 23.17865956346455, 82.35950914489973, 6.0031865724000735, 17.80359290623116, 41.66510944518386, 23.389731249155474, 13.786923570593311, 99.94867273541435, 44.013007328181374, 65.49124546010601, 60.09163802305637, 5.979181071475851, 10.463350568262674, 41.320085623224244, 75.8552942128846, 17.5880592574129, 74.83605304835933, 96.76682834067904, 5.12460389746373, 35.53098997946351, 162.7939646368058, 58.93662614086749, 15.711125608827647, 82.56595741804026, 8.495121584317834, 15.766601508266552, 82.76215828951061, 68.5776684152436, 18.401694801257857, 23.122321325583137, 26.86774869282085, 26.85979324899229, 63.41435785645986, 7.095516467439011, 84.420179828071, 7.757114325633824, 55.07733700170003, 134.53093698152216, 9.287710095849155, 18.482407311527, 11.197784820828751, 7.597077605048012, 24.26177051080014, 8.91999480225104, 35.03450931126134, 7.056576879331357, 61.67913706173967, 56.28939384659148, 14.722661693667611, 134.47654574828812, 6.088395514391004, 19.666711088406444, 32.31895980927603, 98.93397752905246, 10.487588129626847, 8.933244285711082, 21.924173700234928, 10.85217742597171, 48.84688200169818, 5.568194122070754, 25.49404330785129, 7.612125057575548, 9.50893981492047, 43.58522322015105, 215.25180961585446, 56.578826898969766, 8.9627659887417, 11.3534163502158, 32.77317531021822, 11.08019620319404, 70.97103690172179, 49.066849088317284, 105.41184020304259, 94.78159798736245, 89.18271465679176, 104.36380704279796, 19.749915617230965, 41.50407382078204, 35.95719868760855, 49.44416918807375, 18.211032556112645, 11.063613429633172, 28.61944511723786, 19.15562780346222, 51.879335420137274, 62.125053525391046, 22.99192421909275, 6.2468376021796646, 64.58587548329112, 21.458326164693403, 11.679007991449254, 31.963017995801344, 21.660917385650087, 121.55842015094831, 17.94447472900637, 168.36693788141775, 5.699582573850479, 53.99006728967793, 23.57455320612839, 107.72086323523703, 14.861821032529758, 64.01759204827214, 92.81105057005234, 25.536705672620652, 14.7750329971817, 54.59117115417278, 12.971321050331124, 9.556999894073163, 34.14715031706767, 91.44640396594099, 81.43360746340988, 17.281859821705446, 28.95567549658069, 77.76817371125975, 19.449815955508356, 7.49122281959729, 9.187953448285022, 55.12576863736288, 116.79164032956785, 36.79965229022971, 10.684826366046194, 62.84099135480205, 102.92983397905526, 16.601414025625918, 19.10409079477417, 5.654304216179322, 12.595374186868074, 76.70968694278557, 8.216901204241456, 11.879067404480361, 106.9481740020727, 14.544179421420377, 90.46878284208725, 195.67612785678074, 34.147685400993154, 148.90567181341416, 10.909805064351168, 15.309479552699944, 25.38642484124982, 37.83825486485809, 32.75956428150974, 8.801686500700203, 24.857507042532415, 9.847807843497181, 19.62991849542945, 53.831724831127175, 53.77086272400665, 7.463243760965085, 10.849022269264415, 8.33554756051768, 22.334570669420867, 24.239938310715672, 81.85758837066248, 62.54504398369747, 9.166102117445071, 7.206644481394849, 37.97506196517216, 79.29632024696642, 36.126440154659235, 132.0615103384467, 28.97807008961484, 10.511214182126936, 54.05764989841923, 59.484276080527806, 39.726830080394606, 18.25877332536239, 20.601803682623267, 16.53237585113327, 17.708547565030127, 41.015102356059515, 13.639909001243018, 5.551832236448999, 35.19749375943182, 7.969796878837122, 50.97690744416698, 17.335596724078805, 19.17311539862664, 11.610126011682148, 22.151177152447836, 32.652934864562994, 54.1849946679193, 47.42028685652316, 45.46922551666888, 58.784230191521544, 33.60439028436142, 116.30575004018638, 78.12378069739518, 41.80024042172884, 18.651617750834973, 40.513517272262966, 20.653432938461037, 30.825898515256767, 33.464488100369465, 5.9211042317954385, 20.18736241496049, 69.47355380185016, 45.950186004852235, 84.11702237106611, 80.13466945199848, 7.128389081609644, 5.332917916517753, 46.03716463004153, 94.06162262034408, 23.30472045504261, 14.039637732235635, 14.42754828321963, 74.40804339940387, 24.787111377042507, 18.798714153194737, 26.564241577185342, 32.9457588007375, 99.37430717904317, 46.65487782023484, 8.06058904203148, 8.00736223702935, 49.680495015375264, 16.270481018668004, 17.833286983601713, 79.4766921087039, 8.6073226764894, 37.739384674110404, 12.50090481637653, 16.750668262080442, 49.2408535612996, 30.214809882468742, 11.276563415291806, 13.15042275671014, 71.7968176525321, 6.159059035874019, 14.511676141808069, 6.791924812366855, 13.856047350984213, 37.54003449746429, 108.32099585987807, 20.537319898731965, 54.396749999407675, 47.214995554095154, 16.807623191137374, 16.004644010265313, 22.60811349990548, 6.597198340974563, 9.628223573818667, 15.075200755909819, 76.47709928220833, 135.66065764024444, 10.645599208600405, 83.28774032769581, 117.61141659713269, 6.51747541917323, 36.45190577469006, 62.62265444588333, 89.39638741355012, 5.639301550742789, 7.6975960958375245, 27.243854236051003, 27.74989892408955, 41.00258388288134, 124.2170037754912, 16.159438108173767, 10.716263861290258, 14.69005304383665, 47.025492926570465, 61.568017692940245, 54.659096720462514, 20.582372256161143, 31.509433198348802, 37.06159366450658, 54.49136477300361, 20.307084434107853, 41.58770575177796, 62.341895476827005, 7.42674381069347, 46.517831523697595, 26.269813167875338, 81.29713077787113, 88.2744480873618, 43.42579077599415, 20.88631463551886, 118.73477553405739, 19.3428383658648, 7.150198299491441, 18.59818517767987, 138.01585506920077, 27.812094313979664, 26.76353334424478, 18.133450514951416, 16.15156458206043, 34.13500794380102, 64.81342342986542, 25.530377938775402, 36.160038619954996, 61.72573825244304, 11.705761359520405, 56.679400146120074, 5.294019124929448, 12.5964316496796, 63.116053420140034, 13.610382500540359, 22.88264717224887, 162.7328566026257, 303.6318914346788, 14.97086146423747, 11.638956564786739, 22.02183331080385, 41.77444662534907, 6.585705063071546, 6.513157607325127, 11.520601993897134, 6.195842639337852, 72.23311537895758, 15.783928600377692, 121.01262468425912, 130.8200233698156, 29.173411486421735, 116.34254621002974, 17.333341418888136, 12.899696303671634, 49.27392471566738, 6.250514184226674, 5.589731357400959, 32.63842850579262, 98.3885253766102, 57.08006324377554, 5.442951234944933, 21.854988541623253, 25.92925532027287, 104.5450467801655, 30.65578623779436, 26.486552844326024, 9.381088260105708, 64.67257471900415, 9.656226040306006, 52.09329413544967, 65.60158577358152, 40.555887692200585, 5.486322378015147, 19.677062457400332, 19.051732950108008, 30.21508414732061, 45.3342067972992, 9.048266202397185, 70.13449441123421, 57.033969484265555, 11.764349073105063, 29.47978357188118, 171.00754646321482, 46.73071922185613, 121.11405949409485, 10.556386819441633, 20.804606639987732, 8.300616395168095, 11.233148336989087, 9.856757293420536, 49.05340472488973, 23.938331803872615, 6.395162957034299, 13.31916008412765, 75.69532751356775, 109.64112042971944, 21.0484897916979, 91.68412853828973, 14.582051914977914, 16.375603780503983, 27.39026214118315, 30.86944622151597, 9.316556304969703, 102.59795608028224, 67.95705001315524, 30.104160767491276, 74.89349282353946, 5.905657727872323, 41.33137921897591, 51.941884195779835, 68.48234367698495, 60.54803070220349, 15.269486360394897, 9.90060553242838, 75.93314316033526, 37.419664068552464, 17.982327205800832, 17.26058078119438, 37.79321010372016, 49.4126119043151, 19.55921419859868, 7.89279816868031, 60.037310787546524, 45.904777918856446, 25.557439659835133, 21.11251621540857, 15.736913524435034, 13.232217649905891, 107.26668536278498, 225.76288691496688, 23.620952005914123, 36.325700202898375, 19.28157132898971, 48.46285215483276, 14.820583652209725, 14.222711857064732, 18.79001389658181, 54.167160552696025, 108.35895515053127, 7.829609836311661, 28.862304133274503, 46.660595384779455, 108.0431219281111, 27.52543663239454, 25.65760908436295, 76.62145676081947, 66.80297610880226, 12.367908882027926, 30.00126223576543, 31.175538187654517, 14.602946022007757, 153.52450302934358, 7.573890692509423, 15.961329512778258, 8.486761317345483, 60.94766550499371, 96.69512432158749, 71.20836411832772, 5.149230829659746, 28.365713107431592, 79.23507239559476, 30.16384522950846, 22.353363434448042, 11.54614844082077, 17.22727985055509, 9.91558677789007, 6.444419680447813, 30.276821517974483, 5.1803366172875425, 99.47875860389524, 13.173875973494637, 41.66990399340139, 55.192637781489395, 110.31685563504078, 10.699078439835645, 13.833049822303048, 98.3938507326731, 23.804845793714296, 5.947819445676122, 50.49733363038806, 9.304511599826808, 26.10207112086744, 74.2654608940611, 65.660554983889, 6.457920329410006, 149.73723102847026, 39.158853166339604, 46.52395842040194, 60.22920345093036, 26.209084197858388, 107.37396045502769, 17.79893689620227, 119.60856988530033, 6.845968734007469, 6.197763116185767, 6.1423160866094735, 21.065097914316624, 14.67009517499915, 7.673673312139696, 16.602890577638526, 128.22690977842925, 24.239625853468016, 7.345689750559497, 129.88324803826706, 12.977599257469368, 5.583573569494501, 11.470358281963328, 6.107873384772157, 29.85682737382277, 23.820441321634988, 61.30906831780891, 45.179022423263355, 17.593449124199932, 74.72497094607326, 10.109384096367062, 12.601885728317027, 55.58380286546616, 83.8962223446728, 9.318604113133034, 6.786426467034712, 17.285304460230417, 36.24500356014909, 29.514517143043562, 55.85503734497677, 16.53761961014501, 17.558073154489193, 8.275351533244407, 44.50614738460881, 117.0961709207948, 44.58399069852456, 5.7847005086937635, 96.09688453022723, 27.77497708900091, 15.091972277102379, ...])
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);
([2855395.3125, 2994300.0, 2994931.2405584753, 3187290.718875857, 3189748.1767384573, 3270816.858284211, 3272820.811324488, 3311733.967636723, 3374573.4375, 3401644.9657621533, 3427568.847073595, 3726594.8061575764, 3778815.625, 3822006.25, 3884593.2911411473, 3888089.0625, 3888597.0851166127, 3889099.1370707606, 3889216.7353045647, 3889513.7870255914, 4634160.033883108, 4693033.968106939, 4697543.395424016, 4748882.402460415, 4830913.812167441, 4831973.4375, 4832594.986390655, 4836941.808243949, 4842513.576370347, 4845423.362354931, 4845717.863673371, 4849041.661432672, 4872527.643171008, 4874256.155558832, 4877636.445440574, 4886293.75, 4889669.237317314, 4909079.6875, 4909088.939051034, 4913234.086208767, 4927123.304499805, 4927194.1063739825, 4939382.728033629, 4939387.5, 4940107.396851909, 4940820.3125, 4949251.5625, 4949473.4375, 4971053.062153298, 4982903.636957948, 4984991.566250797, 5008046.833535533, 5009031.731398902, 5011931.992885671, 5022196.256912989, 5024153.904991147, 5024233.621079353, 5024606.415335922, 5024685.9375, 5024823.4375, 5024865.625, 5024899.064222002, 5024920.3125, 5024972.611647839, 5025037.168738352, 5025118.75, 5025296.875, 5025346.741077036, 5025440.023926138, 5025444.075659798, 5025463.530727897, 5025476.390152557, 5025480.722843099, 5025528.125, 5025550.350928677, 5025648.981925457, 5025652.470419253, 5025663.840632566, 5025726.5625, 5025742.726943689, 5025748.119258189, 5025751.187027634, 5025759.375, 5025765.625, 5025787.5, 5025800.595566204, 5025830.078365911, 5025846.954547348, 5025851.881575363, 5025912.4545826735, 5025973.979948827, 5025976.760485339, 5025985.968739135, 5025996.744875704, 5026054.145258986, 5026079.6875, 5026100.203952361, 5026125.278670451, 5026152.306904981, 5026205.049969485, 5026224.017355298, 5026294.437818003, 5026308.706690438, 5026365.625, 5026369.023166312, 5026450.600405582, 5026474.786558019, 5026523.293206101, 5026538.066256849, 5026548.4375, 5026554.658851735, 5026586.667010979, 5026613.314346447, 5026613.97076282, 5026629.971911668, 5026690.742562789, 5026742.1875, 5026746.235790918, 5026765.015108529, 5026805.357277176, 5026872.92672563, 5027004.6875, 5027055.900282206, 5027059.952952234, 5027072.821940654, 5027171.875, 5027187.320422914, 5027246.740154361, 5027318.75, 5027385.29057707, 5027526.767718898, 5027607.557134427, 5027633.009781559, 5027681.25, 5027790.625, 5027812.5, 5027831.083775038, 5027896.1821866995, 5027976.258930111, 5028100.671315531, 5028237.712001429, 5028380.437235183, 5028420.95808473, 5028442.876139726, 5028450.574593554, 5028560.9375, 5028563.408625095, 5028582.8125, 5028609.673455229, 5029251.5625, 5029875.674985809, 5030104.650548785, 5030187.5, 5030310.9375, 5030404.6875, 5030700.0, 5030854.342867112, 5031187.456352913, 5031489.0625, 5037456.09997399, 5039629.920818758, 5039726.328339769, 5040753.125, 5046424.746682389, 5046673.4375, 5046759.911208369, 5047528.453207839, 5047885.920985604, 5051766.3648790205, 5053470.3125, 5056165.920233181, 5058585.9375, 5058601.825437767, 5058680.030991757, 5058923.299693727, 5058927.979982403, 5059000.493230731, 5059145.8546521105, 5059168.75, 5059378.125, 5059507.537818115, 5059604.402589671, 5059764.983394221, 5059919.869614715, 5060386.694956042, 5060553.04758968, 5060560.493349808, 5060745.3125, 5061018.301039789, 5061103.125, 5061140.625, 5061166.814160248, 5061531.356599224, 5062239.910482025, 5062256.25, 5065788.540673858, 5066303.200209999, 5066496.875, 5066609.399178512, 5066797.106644562, 5068209.982389777, 5077446.354049541, 5078478.552520873, 5078602.432425653, 5078721.03452347, 5078951.301279539, 5078954.6875, 5079259.375, 5079314.310778942, 5079492.1875, 5079531.201651546, 5079767.36130528, 5080023.879015923, 5080026.7671137145, 5080037.42853228, 5080048.294369415, 5080114.0625, 5080141.980830921, 5080209.463670044, 5080658.384517573, 5080664.0625, 5080671.593008326, 5080686.08793129, 5080804.033410489, 5080849.136664661, 5080884.375, 5080932.601139118, 5081173.741842167, 5081195.3125, 5081200.0, 5081392.5888583185, 5081498.397603285, 5081560.861018106, 5081762.5, 5081924.030720153, 5081945.01484487, 5082121.856893212, 5082534.146047478, 5082684.138847614, 5082839.836739549, 5082851.5625, 5082937.5, 5083056.780146163, 5083081.25, 5083374.078064604, 5083388.943855069, 5083669.538453011, 5084017.651082968, 5084173.4375, 5084329.6875, 5084333.124426156, 5084472.392236296, 5084569.6134224385, 5084673.814415016, 5084720.8944475, 5084829.6875, 5085102.643326197, 5085484.763507837, 5086221.875, 5086545.3125, 5087882.087461535, 5088952.714915242, 5096925.810378952, 5097456.25, 5097712.5, 5097945.251509137, 5098017.753861074, 5098473.597133743, 5098728.290364108, 5099376.5625, 5099378.05266082, 5099523.302378471, 5100127.05625605, 5100228.211369183, 5100557.8125, 5100877.328040795, 5101060.31852632, 5101570.3125, 5101850.625001107, 5102773.951668662, 5103924.250194106, 5104032.8125, 5116804.653321069, 5118891.666936507, 5128094.847975582, 5141249.888658763, 5141860.145036695, 5142057.8125, 5142212.5, 5147923.105049831, 5159997.906637208, 5165075.607182449, 5165489.584403939, 5165753.765462655, 5166318.75, 5166562.4748034505, 5166656.997433055, 5166879.779011017, 5166981.63954568, 5167995.3125, 5168175.795884808, 5168201.063633974, 5173868.75, 5178619.890533775, 5180160.225618921, 5180551.119355285, 5180720.3125, 5180935.058642444, 5181060.72179552, 5181087.5, 5181218.687449086, 5181257.060319623, 5181295.3125, 5181382.7636545645, 5181415.625, 5181444.901246652, 5181445.038627659, 5181451.177382114, 5181467.1875, 5181475.0, 5181543.75, 5181642.535340628, 5181648.489356569, 5181726.03787376, 5181804.6875, 5181841.09862249, 5181857.636286845, 5181858.645316424, 5181893.720056711, 5181904.104990572, 5181952.755634056, 5182058.588413163, 5182080.95564091, 5182098.200015877, 5182113.686291143, 5182126.354385931, 5182173.330887189, 5182262.968655441, 5182266.12767135, 5182281.267383815, 5182379.6875, 5182381.571688709, 5182403.125, 5182432.339212452, 5182439.0625, 5182521.412024101, 5182530.442346947, 5182628.676702422, 5182632.683698079, 5182642.1875, 5182660.373143221, 5182757.167173732, 5182788.472553969, 5182824.450522098, 5182826.308429513, 5182855.305020784, 5182907.941219399, 5183044.051495121, 5183089.370816909, 5183103.090909591, 5183110.635178023, 5183398.4375, 5183548.4375, 5183653.630858457, 5183709.216944151, 5183849.112459649, 5183901.06282647, 5184388.019651389, 5184405.60311611, 5184545.121465857, 5184783.65372534, 5184933.0304360185, 5185121.764596096, 5185139.137579333, 5185157.8125, 5185211.497345525, 5185299.131020147, 5185336.593073582, 5185340.625, 5185542.492021741, 5185820.3125, 5185893.059693414, 5186026.459747573, 5186246.737820617, 5186278.125, 5186442.866985012, 5186686.321275854, 5186697.924788917, 5186760.9375, 5186772.261391658, 5186807.402181063, 5186918.762563646, 5186971.875, 5187026.707082932, 5187166.86310166, 5187182.450779549, 5187214.0625, 5187332.8125, 5187353.969806108, 5187509.710952912, 5187562.5, 5187616.64446037, 5187640.625, 5187646.833414645, 5187649.237223508, 5187666.845722735, 5187707.80206395, 5187718.75, 5187939.202943851, 5188006.25, 5188059.375, 5188212.5, 5188754.60630813, 5188943.75, 5189532.8125, 5189563.848418244, 5189848.703098473, 5189934.844490505, 5189969.267750364, 5190003.125, 5190169.223515017, 5190223.830597937, 5190518.527956122, 5190698.4375, 5190867.1875, 5191389.0625, 5191407.8125, 5191784.120292049, 5192750.970896937, 5193397.457824727, 5193543.447697705, 5193553.125, 5193784.375, 5195253.757274113, 5204203.125, 5209124.574464809, 5214193.06704028, 5232484.978977873, 5238125.309332606, 5239018.75, 5241132.8125, 5241244.389230284, 5241670.3125, 5241767.1875, 5241822.0471446775, 5242217.1875, 5242482.013543233, 5242636.631668234, 5242643.165948733, 5242925.0, 5242933.611076883, 5243209.375, 5243375.0, 5243811.848528359, 5243895.249992702, 5243934.375, 5243959.297895524, 5243984.375, 5244251.152361687, 5244301.384982399, 5244366.765413322, 5244373.4375, 5244476.5625, 5244634.521011785, 5244797.792250531, 5244802.707888566, 5244804.640121497, 5244842.341966775, 5244853.125, 5244991.41599548, 5245045.2672433825, 5245228.096499018, 5245233.412964301, 5245264.7979311505, 5245568.601016085, 5247451.9814979965, 5248094.700399729, 5248284.668734091, 5248515.780978151, 5248525.646446917, 5248954.2108574435, 5249010.204660573, 5249038.443832979, 5249218.635129838, 5249229.5732975695, 5249296.875, 5249960.9375, 5250164.0625, 5250512.703419063, 5250947.62845897, 5251587.44879722, 5251728.939381367, 5252610.9375, 5258974.432212315, 5259141.5213001575, 5260061.264526029, 5260296.866340143, 5262128.757941174, 5270026.450735971, 5270305.953491432, 5275446.342244776, 5275780.903854256, 5275881.6353343995, 5276102.778853984, 5276618.75, 5277396.016866052, 5277417.348956711, 5277550.0, 5279207.973976491, 5280724.660072825, 5280773.4375, 5284214.389501141, 5284227.757271448, 5284609.375, 5285230.133180004, 5285401.091378409, 5286656.25, 5292309.165674951, 5302161.902983017, 5302747.468031153, 5303328.456522124, 5303848.159450682, 5307210.9375, 5310688.024672479, 5310709.375, 5312167.381974567, 5312357.8125, 5312405.062084608, 5313047.0758464765, 5313498.309189519, 5313518.75, 5315316.309488811, 5320929.336657538, 5322526.472761379, 5323064.6981947, 5324792.1875, 5333951.462910789, 5334894.749810541, 5336601.968808171, 5343521.875, 5347094.728728274, 5350154.635370246, 5350758.781500784, 5352036.706971518, 5353840.607936116, 5354594.842130057, 5354721.344775342, 5354729.6875, 5355487.247319581, 5355571.875, 5356125.0, 5356521.837432021, 5356850.0, 5357668.752848775, 5358008.780665896, 5359598.192914087, 5359913.414644814, 5360632.360354867, 5360636.988330368, 5361930.79215393, 5362084.191270825, 5366400.0, 5366605.390373008, 5366886.729711866, 5367829.712005613, 5368000.202757713, 5368403.125, 5368630.573786954, 5368674.634125064, 5368822.966791343, 5369022.014757135, 5369045.993192327, 5369179.656890053, 5369246.875, 5369362.5, 5369400.129655361, 5369517.293608551, 5369604.6875, 5369690.625, 5369716.492991197, 5369729.6875, 5369900.0, 5369957.8125, 5370030.343160078, 5370326.521104378, 5370393.75, 5371030.478719559, 5371084.375, 5371309.0865576845, 5371381.408980258, 5371543.587127529, 5371618.148429397, 5371676.059006984, 5371770.63872346, 5371827.137648675, 5371901.079159917, 5371973.158273598, 5372114.676501502, 5372152.650010517, 5372320.1991608925, 5373571.875, 5373860.623580523, 5373903.125, 5373968.728934528, 5373985.917965146, 5374234.022432458, 5374294.859716815, 5374320.268126395, 5374774.781938803, 5375032.093630061, 5375097.130273431, 5375206.25, 5375237.421122096, 5375431.25, 5375450.503012962, 5375836.232283365, 5376232.8125, 5377720.274343351, 5377934.054299138, 5377935.762832534, 5379001.5625, 5380590.6900306875, 5381526.480295966, 5382277.821892398, 5382746.875, 5383349.226508208, 5383495.504162341, 5383939.846770719, 5385681.955504619, 5386200.772108385, 5387365.625, 5388196.74087568, 5388350.4328128, 5389175.462885737, 5389520.704717595, 5389560.642118663, 5389568.65816487, 5391857.504391803, 5392107.182871544, 5392242.043472054, 5392300.093303877, 5392583.615975391, 5392796.875, 5392881.891057571, 5393021.174210998, 5393322.499973048, 5393328.678504228, 5393444.602970399, 5393557.8125, 5393676.5625, 5393726.158108124, 5394170.126576867, 5394534.46646948, 5394568.330409648, 5395369.800537277, 5395387.5, 5395573.4375, 5395590.42281525, 5396509.689468494, 5396890.625, 5397189.0625, 5397763.542089697, 5397953.125, 5397953.31886142, 5397963.628709168, 5398244.546058966, 5398425.0, 5398732.8125, 5400327.225452736, 5400665.030755722, 5401226.925438377, 5402624.013244474, 5402788.079130947, 5403201.173234059, 5409466.005407928, 5410118.792988175, 5410433.723736464, 5411029.6875, 5417214.409187485, 5417685.463831318, 5419045.600667001, 5419262.063532204, 5419746.875, 5420060.9375, 5420061.782012803, 5420251.5625, 5420273.4375, 5420310.834267403, 5420447.729166039, 5420462.219844382, 5420466.575718711, 5420496.326531002, 5420556.25, 5420610.386022188, 5420637.244939069, 5420656.25, 5420659.16242114, 5420661.858323459, 5420671.49663855, 5420693.75, 5420693.75, 5420732.8125, 5420743.776325552, 5420766.922367665, 5420803.125, 5420812.5, 5420813.72676157, 5420868.491391003, 5420960.795788441, 5420985.153393734, 5420988.276496569, 5420991.367080025, 5421038.954879381, 5421141.197960323, 5421146.875, 5421229.6875, 5421274.5467211045, 5421318.181840561, 5421320.3125, 5421337.809843531, 5421341.221138365, 5421365.625, 5421386.498483713, 5421407.8125, 5421417.9182688715, 5421467.311497844, 5421484.375, 5421494.742728277, 5421515.718191214, 5421574.434597284, 5421587.5, 5421589.718298204, 5421649.882464401, 5421673.578198467, 5421694.995244381, 5421729.6875, 5421745.3125, 5421757.706878202, 5421758.488027283, 5421784.375, 5421786.353836812, 5421786.460351026, 5421788.667453863, 5421792.855690058, 5421833.143845942, 5421840.659638821, 5421845.092769803, 5421845.3125, 5421854.35549384, 5421858.042358919, 5421879.643542459, 5421901.753627548, 5421934.098333824, 5421977.642069415, 5422026.5625, 5422031.6976991445, 5422067.441063298, 5422089.57460432, 5422129.710507339, 5422130.919032396, 5422152.751142503, 5422153.411621312, 5422165.344795807, 5422165.557425219, 5422166.959711921, 5422216.856352933, 5422237.415401027, 5422268.153585893, 5422284.080804478, 5422304.360957712, 5422306.25, 5422371.512243733, 5422393.618554673, 5422439.445972586, 5422485.42165144, 5422487.5, 5422510.812059375, 5422520.3125, 5422526.652729403, 5422535.9375, 5422571.311942445, 5422579.896990818, 5422586.771096811, 5422592.295739834, 5422599.150892264, 5422619.937457701, 5422628.335604356, 5422631.154175793, 5422655.0512212925, 5422672.159958161, 5422676.336163903, 5422681.141480741, 5422685.115304371, 5422727.652343205, 5422729.5550497575, 5422736.278312554, 5422822.95959712, 5422829.782124723, 5422860.147565776, 5422895.3125, 5422902.725636195, 5422971.503859029, 5422994.026222008, 5423012.105282487, 5423012.5076795975, 5423053.429182893, 5423069.280544386, 5423090.625, 5423097.47650041, 5423118.914292189, 5423123.675115494, 5423127.538548126, 5423139.0625, 5423155.581695835, 5423200.0, 5423263.800443081, 5423276.281750153, 5423280.731785133, 5423313.012041646, 5423354.024077117, 5423357.8125, 5423363.929294069, 5423388.614500483, 5423425.0, 5423426.4278627075, 5423426.5625, 5423429.241676909, 5423456.103295576, 5423457.665841289, 5423481.294329698, 5423559.09748351, 5423585.797378133, 5423615.683181497, 5423662.5, 5423748.798196924, 5423776.28272119, 5423792.1875, 5423801.5625, 5423825.559898627, 5423830.718413488, 5423869.527161362, 5423919.687703998, 5423924.070390402, 5423927.7700258745, 5423965.625, 5423967.1875, 5423967.559894424, 5423995.006128821, 5424015.625, 5424106.25, 5424139.949936467, 5424143.35091414, 5424275.573633237, 5424315.651454064, 5424461.003926882, 5424464.624683752, 5424484.375, 5424607.971788953, 5424682.19988327, 5424726.059983818, 5424727.579613766, 5424804.6875, 5424854.141744161, 5425048.060649221, 5425089.489304781, 5425103.456432951, 5425106.003877559, 5425121.4660993265, 5425132.7948889565, 5425484.081357371, 5425538.936293699, 5425546.875, 5425583.287286935, 5425621.4791436605, 5425634.179557365, 5425730.731494831, 5425831.348000948, 5426246.287802457, 5426453.208467264, 5426778.729305956, 5426918.75, 5426928.125, 5427017.807516365, 5427109.8742601, 5427456.25, 5427559.050475495, 5427743.031509023, 5427746.047908553, 5428273.4375, 5428312.5, 5431302.718978529, 5431564.88906143, 5431681.444123939, 5432525.648555763, 5436300.0, 5436998.4375, 5438140.314770854, 5440129.6875, 5442888.802928244, 5443763.2827809565, 5444399.967907773, 5444520.110203739, 5458044.490851883, 5460504.6875, 5460821.875, 5461111.522826304, 5463318.75, 5463446.875, 5464561.694663688, 5465986.411655071, 5466317.023430703, 5467081.25, 5467309.375, 5467858.483421974, 5467891.170540335, 5474290.381313274, 5474313.183728736, 5474386.788834231, 5475056.168124387, 5475603.369089406, 5476486.297792291, 5476907.656952477, 5480353.125, 5480362.5, 5480468.043631452, 5481207.810613181, 5481231.25, 5481380.846798649, 5481612.082119711, 5481640.877168806, 5482049.980231673, 5482055.3060457315, 5482776.284778212, 5484666.011206581, 5485041.25658995, 5486050.398049383, 5486580.693481732, 5486594.206906727, 5487312.5, 5487870.3125, 5489249.70730362, 5492091.862738175, 5493281.25, 5497390.107334602, 5498811.033611724, 5501844.9218048155, 5504385.9055244485, 5505761.439170774, 5506965.625, 5507093.376490419, 5507416.99885345, 5507698.652229685, 5507700.0, 5508277.461455518, 5508832.670878549, 5509051.433324129, 5509148.347905478, 5512916.073852756, 5520518.590985414, 5525561.336977361, 5525707.242420749, 5526295.818208189, 5530796.330997068, 5533930.942974998, 5533943.940633938, 5534492.315049029, 5534809.1786048, 5534834.112332871, 5537511.726975291, 5538293.75, 5538604.055141972, 5539690.060761863, 5539868.958688546, 5541073.625529766, 5541920.3125, 5542941.892937015, 5548264.0625, 5549350.0, 5549378.3991934685, 5549510.9375, 5549738.2960896725, 5549772.649923004, 5550285.9375, 5550362.5, 5550373.4223242635, 5550657.92623087, 5550939.566119313, 5550992.515713825, 5551087.426984115, 5551119.961308224, 5551653.488978187, 5551669.300631036, 5551828.103711366, 5551848.4375, 5551950.063986951, 5551985.9375, 5552154.283781875, 5552285.9375, 5552432.773452262, 5552629.726423457, ...], [53.494572004200634, 49.95051367382794, 28.33945763717547, 15.311814082647805, 92.05322358037351, 10.649365726150693, 26.779311368758954, 10.545552864636495, 89.4769793747779, 54.67029280265715, 6.098252527477021, 7.429823617382238, 62.58702905676053, 62.2142724319266, 6.417488926970242, 51.439931205490836, 73.36901377370515, 27.237057181143214, 13.458906461179872, 6.709728792624241, 9.958465828679229, 15.061110858890736, 23.07777403946843, 22.44003386299745, 76.45180981130716, 66.93305521566461, 7.038287223684213, 5.5934017679314625, 7.436392614983476, 6.257750785250728, 5.566822673590371, 18.201804406291977, 13.376089181766526, 39.58274196300391, 62.95104039397375, 49.72165669732232, 30.307819967494098, 33.82000131808889, 31.337710564395195, 62.31434927065096, 30.74454476463874, 8.484475176774023, 79.24403054561382, 87.94735158214252, 9.0030522934196, 50.879071650370726, 93.9574483591032, 107.42022747900631, 81.6822746287729, 6.570455873887786, 8.856088362239811, 27.730068866687848, 88.52711226743452, 10.04991129978984, 20.390803079526034, 19.072528757337672, 6.013056757196874, 11.396360573664603, 120.03173304338065, 92.1336273507931, 107.97799630517423, 9.924225304710431, 56.281576715843705, 25.069852467316025, 21.675560566731207, 104.9065779016656, 30.07014623432748, 65.32509506536468, 70.58177759875296, 19.633757469750613, 8.024055947389586, 41.21109471285312, 6.034943050962742, 52.18789774960507, 26.91929872475911, 18.679917994503356, 20.078240717756746, 10.79776207255569, 136.93890908821805, 63.481578056218105, 10.664222417863046, 22.832293900936122, 126.38234365154182, 70.91858572958417, 63.67595946918139, 33.276241741046604, 31.208144573141592, 66.73571607810389, 7.207931283965687, 52.225599793632696, 12.411062827416213, 7.174487046666399, 8.303166478151809, 32.73602769931107, 41.215102855008716, 104.52675317919739, 10.93388620557294, 34.875081450565574, 82.27560858284072, 9.657926654038494, 9.875068537396693, 15.63169530714887, 19.963783408682925, 47.542226280988615, 16.096040062814915, 71.92703510645477, 35.22883454936148, 9.21230366895064, 17.651298889936438, 32.22155009832499, 27.97020618837723, 18.710166001160715, 41.48905529786246, 26.83341683302303, 18.212179943580157, 15.409372124736716, 39.281012024142385, 6.391350188595455, 60.72705113822887, 9.970159611264245, 10.413315825955127, 47.87926570185807, 33.082515157208775, 7.826562992605531, 37.60985541292519, 119.0396373727801, 94.71390994312011, 14.451298643005426, 32.33457893303725, 20.142815443888, 62.16388189623462, 24.338134657342923, 11.450737963575175, 99.72488650101259, 68.87096847055363, 113.0047539489833, 9.194697289900489, 28.771213027678886, 53.192572033843504, 6.59773986607755, 43.64299879255735, 18.85318084951455, 37.819728218499534, 112.95407049252552, 50.991183067967256, 30.17472151028089, 12.923490332517648, 42.72029640555655, 11.628619859175437, 52.612188020182266, 18.338269216393137, 27.814075057829402, 95.67562962101194, 97.19328636196394, 60.11613527932504, 65.0876571425627, 23.19688299107582, 5.530965953695559, 82.34383985116315, 10.901033395166527, 15.912210159236004, 24.6298349927202, 66.2952475455349, 38.01264608584058, 52.93308413918191, 8.592061775941403, 5.968506722246468, 8.277863501634114, 18.78312949741814, 31.586289075004352, 25.557475491868672, 72.38442401073856, 6.301000226416406, 59.19494873389995, 5.455882664003235, 8.211350034045065, 5.983541668540649, 12.095941256037833, 79.68015766193832, 55.87730869315618, 24.079624017551428, 43.36352836424817, 131.7400890002026, 35.26987591610839, 6.367888053717357, 27.081866913388726, 10.497857129649956, 56.56614050414766, 58.37320430324212, 28.681949884635944, 51.172028195759715, 10.590327791704002, 7.642253260746679, 12.774572995846881, 70.44679617666914, 5.6743333957869915, 15.236138785327796, 86.87999611480313, 7.127821990355894, 104.11013467503507, 59.1506541958137, 21.286623400061234, 11.868878054276598, 17.22914920325588, 18.65793045518917, 35.98487372133294, 64.97902165051279, 50.283930088064736, 5.4725248196350424, 40.728257498097236, 6.479538802144944, 15.648112712687189, 61.11814011818747, 32.854672953378895, 6.749321977418702, 5.241156942420016, 44.48359647169729, 25.020911947802567, 7.635626078600419, 5.420801425088904, 88.72308364049334, 34.139404996765975, 188.2143720282932, 77.53007849622352, 10.001948352768103, 46.7135441653772, 131.24072176141112, 16.243986742712277, 68.9306372536952, 49.86910870987042, 18.70412496841938, 33.47602671950773, 16.628508772620243, 140.107694641591, 9.888998070931123, 53.94642923434705, 38.724156718546084, 7.5224765933687605, 96.42659282350144, 12.600303631167415, 49.64417610543522, 56.61668610052922, 89.8576365377778, 65.9809340283834, 9.93891165902614, 10.947186582434547, 8.75272699404444, 7.248889613433652, 28.83045282372055, 30.692751489266943, 28.339756565941435, 60.58925870565412, 78.09494709746082, 38.25363134386938, 84.24404830717673, 110.94067550830903, 71.15766020140155, 16.662643891876744, 42.10390191175435, 52.44711414660333, 15.993608636758001, 6.21674108128149, 12.684800215005403, 85.0695369157844, 62.57015301233758, 9.280358964734504, 13.341018114504816, 124.61410595002815, 19.438880061409286, 66.97473755813283, 14.672773228438118, 85.27581902623953, 17.22949859169106, 5.537287045282882, 29.661173977940596, 12.58022008195361, 56.59693559048441, 29.558357452921875, 19.5442950525156, 17.34552932590421, 19.31719500697039, 36.94493456661561, 11.07469991381333, 5.378939407555162, 45.49917802847784, 141.95451504003927, 32.191920036418324, 46.68155146624765, 49.972249468125185, 40.57883954964397, 50.09039034570928, 39.49438256001075, 6.144107946781582, 57.8470632168086, 102.10047598341521, 14.846333864060338, 18.83675804428158, 5.820782469066135, 106.18652227016358, 65.69425327952376, 19.190430548935815, 25.68194185411904, 39.02379950850322, 28.651494822035552, 14.606171339952418, 19.339808458087145, 34.67404789220916, 6.599878181486612, 24.890725911987765, 44.05631133627957, 27.345416732513623, 54.64255422882697, 82.73930975614178, 89.63516144496738, 57.5353233578835, 22.426562532140554, 60.891630505217115, 46.946848052766605, 101.41652847311248, 51.89654242857361, 84.64588733190334, 11.718719089826912, 9.375639145493725, 5.190258944110415, 51.36090543157333, 28.693815870580544, 64.40886618379497, 16.790967630970698, 27.945717619964444, 5.322349727513459, 10.59559947120609, 19.04257870557631, 10.285020257162715, 69.45408611269097, 61.70640160603983, 9.161419427062375, 97.39798496495986, 43.26564984279021, 71.26631865966425, 15.008184957697077, 85.92041881145963, 11.670731728544805, 67.88639957985802, 25.741418177733156, 55.449366067554244, 10.473731164692207, 18.88978022981133, 5.5604692173458705, 21.230370333832198, 39.67582168208085, 10.346988436874097, 8.839481282873894, 13.086275393958472, 5.323439166686294, 66.09009018677307, 6.348502964569264, 6.283599274314099, 77.92652316535559, 17.888186080140724, 27.867637025065033, 83.69209537914284, 63.388472545700594, 37.475947738594755, 12.297275090528323, 14.37145694641667, 18.012308682489383, 73.21751288835648, 101.86549528399308, 6.023316788380455, 6.068456115979781, 43.56442960820303, 15.8427728934213, 44.08106083020873, 8.32668363733692, 121.04020879422664, 17.612889468629177, 18.46250720869128, 9.954922964339008, 73.0522637910809, 5.631116118893841, 107.23291425554957, 12.833403635002949, 6.471103625004676, 26.08008582255808, 45.86552496977473, 5.8660272684146015, 16.638326547015414, 10.410892963398345, 44.49054114622181, 11.790614407999687, 10.541693466801322, 14.989613366226948, 138.28108360999562, 15.522797772684891, 7.489976134225269, 10.60576706772183, 104.02111862294018, 32.64521426577692, 6.944760752425355, 16.397847170669888, 60.60607906599469, 21.074238884727933, 46.220956222621965, 12.923865199119213, 12.65970791750099, 44.06809926675996, 28.32005477642891, 67.9703197063156, 15.505272181702082, 28.663690338459396, 94.63190264572572, 49.19098883760634, 27.015757428226827, 73.71692237340103, 85.43714690248358, 53.43830356024969, 47.38829112851125, 6.138321871861711, 24.755436445239585, 62.375452620254244, 7.783974985781539, 5.256282125529091, 110.63066628076953, 53.824528530227724, 49.58828488183973, 52.91799899865934, 40.04525623924088, 31.50704517789569, 22.296590313599012, 70.09060260443688, 23.721377501810398, 31.564327287799603, 46.214786901348674, 16.903502943591207, 55.45244485479987, 13.534721679023031, 19.843466431603705, 17.88185887800198, 48.88089893079131, 45.71388820897724, 64.95471026663826, 7.3002749583918884, 33.06119682517623, 39.45771970038531, 11.40788051971511, 42.1052832054721, 8.736323072414576, 58.80614181053741, 19.237498749163326, 38.43914758221311, 10.112194672147936, 55.59031347311112, 35.21225062583325, 61.803349891137856, 120.29811367927583, 82.83348678162712, 9.267046980365059, 51.06313489669185, 10.541929182250016, 10.861126959868162, 8.99830516677266, 70.24352531368329, 108.46028408236462, 75.62467483614653, 12.945099310195063, 27.519027573043363, 39.02799909595365, 11.13361813450192, 64.03412010527018, 20.823748546987147, 5.164308925088214, 39.84881061118034, 23.70697282681525, 12.511450829353953, 97.03263505611008, 71.76849789875526, 63.29662955914128, 16.19322950092325, 44.70155131659481, 18.151185451560234, 5.5103862671295465, 16.663717735877256, 18.791730949863474, 5.241941646266318, 92.19448160058938, 46.36519213485815, 101.60440401525358, 30.189715918041856, 23.532299333379854, 18.879824309523652, 30.318673602414673, 19.330038787157996, 42.277134253754205, 55.448224760824814, 17.165546821414257, 56.15024399915272, 9.324091494644367, 28.155499047707004, 11.401024254549984, 84.6165262756999, 8.918193730970163, 10.626582102160762, 19.874870657079043, 23.17865956346455, 82.35950914489973, 6.0031865724000735, 17.80359290623116, 41.66510944518386, 23.389731249155474, 13.786923570593311, 99.94867273541435, 44.013007328181374, 65.49124546010601, 60.09163802305637, 5.979181071475851, 10.463350568262674, 41.320085623224244, 75.8552942128846, 17.5880592574129, 74.83605304835933, 96.76682834067904, 5.12460389746373, 35.53098997946351, 162.7939646368058, 58.93662614086749, 15.711125608827647, 82.56595741804026, 8.495121584317834, 15.766601508266552, 82.76215828951061, 68.5776684152436, 18.401694801257857, 23.122321325583137, 26.86774869282085, 26.85979324899229, 63.41435785645986, 7.095516467439011, 84.420179828071, 7.757114325633824, 55.07733700170003, 134.53093698152216, 9.287710095849155, 18.482407311527, 11.197784820828751, 7.597077605048012, 24.26177051080014, 8.91999480225104, 35.03450931126134, 7.056576879331357, 61.67913706173967, 56.28939384659148, 14.722661693667611, 134.47654574828812, 6.088395514391004, 19.666711088406444, 32.31895980927603, 98.93397752905246, 10.487588129626847, 8.933244285711082, 21.924173700234928, 10.85217742597171, 48.84688200169818, 5.568194122070754, 25.49404330785129, 7.612125057575548, 9.50893981492047, 43.58522322015105, 215.25180961585446, 56.578826898969766, 8.9627659887417, 11.3534163502158, 32.77317531021822, 11.08019620319404, 70.97103690172179, 49.066849088317284, 105.41184020304259, 94.78159798736245, 89.18271465679176, 104.36380704279796, 19.749915617230965, 41.50407382078204, 35.95719868760855, 49.44416918807375, 18.211032556112645, 11.063613429633172, 28.61944511723786, 19.15562780346222, 51.879335420137274, 62.125053525391046, 22.99192421909275, 6.2468376021796646, 64.58587548329112, 21.458326164693403, 11.679007991449254, 31.963017995801344, 21.660917385650087, 121.55842015094831, 17.94447472900637, 168.36693788141775, 5.699582573850479, 53.99006728967793, 23.57455320612839, 107.72086323523703, 14.861821032529758, 64.01759204827214, 92.81105057005234, 25.536705672620652, 14.7750329971817, 54.59117115417278, 12.971321050331124, 9.556999894073163, 34.14715031706767, 91.44640396594099, 81.43360746340988, 17.281859821705446, 28.95567549658069, 77.76817371125975, 19.449815955508356, 7.49122281959729, 9.187953448285022, 55.12576863736288, 116.79164032956785, 36.79965229022971, 10.684826366046194, 62.84099135480205, 102.92983397905526, 16.601414025625918, 19.10409079477417, 5.654304216179322, 12.595374186868074, 76.70968694278557, 8.216901204241456, 11.879067404480361, 106.9481740020727, 14.544179421420377, 90.46878284208725, 195.67612785678074, 34.147685400993154, 148.90567181341416, 10.909805064351168, 15.309479552699944, 25.38642484124982, 37.83825486485809, 32.75956428150974, 8.801686500700203, 24.857507042532415, 9.847807843497181, 19.62991849542945, 53.831724831127175, 53.77086272400665, 7.463243760965085, 10.849022269264415, 8.33554756051768, 22.334570669420867, 24.239938310715672, 81.85758837066248, 62.54504398369747, 9.166102117445071, 7.206644481394849, 37.97506196517216, 79.29632024696642, 36.126440154659235, 132.0615103384467, 28.97807008961484, 10.511214182126936, 54.05764989841923, 59.484276080527806, 39.726830080394606, 18.25877332536239, 20.601803682623267, 16.53237585113327, 17.708547565030127, 41.015102356059515, 13.639909001243018, 5.551832236448999, 35.19749375943182, 7.969796878837122, 50.97690744416698, 17.335596724078805, 19.17311539862664, 11.610126011682148, 22.151177152447836, 32.652934864562994, 54.1849946679193, 47.42028685652316, 45.46922551666888, 58.784230191521544, 33.60439028436142, 116.30575004018638, 78.12378069739518, 41.80024042172884, 18.651617750834973, 40.513517272262966, 20.653432938461037, 30.825898515256767, 33.464488100369465, 5.9211042317954385, 20.18736241496049, 69.47355380185016, 45.950186004852235, 84.11702237106611, 80.13466945199848, 7.128389081609644, 5.332917916517753, 46.03716463004153, 94.06162262034408, 23.30472045504261, 14.039637732235635, 14.42754828321963, 74.40804339940387, 24.787111377042507, 18.798714153194737, 26.564241577185342, 32.9457588007375, 99.37430717904317, 46.65487782023484, 8.06058904203148, 8.00736223702935, 49.680495015375264, 16.270481018668004, 17.833286983601713, 79.4766921087039, 8.6073226764894, 37.739384674110404, 12.50090481637653, 16.750668262080442, 49.2408535612996, 30.214809882468742, 11.276563415291806, 13.15042275671014, 71.7968176525321, 6.159059035874019, 14.511676141808069, 6.791924812366855, 13.856047350984213, 37.54003449746429, 108.32099585987807, 20.537319898731965, 54.396749999407675, 47.214995554095154, 16.807623191137374, 16.004644010265313, 22.60811349990548, 6.597198340974563, 9.628223573818667, 15.075200755909819, 76.47709928220833, 135.66065764024444, 10.645599208600405, 83.28774032769581, 117.61141659713269, 6.51747541917323, 36.45190577469006, 62.62265444588333, 89.39638741355012, 5.639301550742789, 7.6975960958375245, 27.243854236051003, 27.74989892408955, 41.00258388288134, 124.2170037754912, 16.159438108173767, 10.716263861290258, 14.69005304383665, 47.025492926570465, 61.568017692940245, 54.659096720462514, 20.582372256161143, 31.509433198348802, 37.06159366450658, 54.49136477300361, 20.307084434107853, 41.58770575177796, 62.341895476827005, 7.42674381069347, 46.517831523697595, 26.269813167875338, 81.29713077787113, 88.2744480873618, 43.42579077599415, 20.88631463551886, 118.73477553405739, 19.3428383658648, 7.150198299491441, 18.59818517767987, 138.01585506920077, 27.812094313979664, 26.76353334424478, 18.133450514951416, 16.15156458206043, 34.13500794380102, 64.81342342986542, 25.530377938775402, 36.160038619954996, 61.72573825244304, 11.705761359520405, 56.679400146120074, 5.294019124929448, 12.5964316496796, 63.116053420140034, 13.610382500540359, 22.88264717224887, 162.7328566026257, 303.6318914346788, 14.97086146423747, 11.638956564786739, 22.02183331080385, 41.77444662534907, 6.585705063071546, 6.513157607325127, 11.520601993897134, 6.195842639337852, 72.23311537895758, 15.783928600377692, 121.01262468425912, 130.8200233698156, 29.173411486421735, 116.34254621002974, 17.333341418888136, 12.899696303671634, 49.27392471566738, 6.250514184226674, 5.589731357400959, 32.63842850579262, 98.3885253766102, 57.08006324377554, 5.442951234944933, 21.854988541623253, 25.92925532027287, 104.5450467801655, 30.65578623779436, 26.486552844326024, 9.381088260105708, 64.67257471900415, 9.656226040306006, 52.09329413544967, 65.60158577358152, 40.555887692200585, 5.486322378015147, 19.677062457400332, 19.051732950108008, 30.21508414732061, 45.3342067972992, 9.048266202397185, 70.13449441123421, 57.033969484265555, 11.764349073105063, 29.47978357188118, 171.00754646321482, 46.73071922185613, 121.11405949409485, 10.556386819441633, 20.804606639987732, 8.300616395168095, 11.233148336989087, 9.856757293420536, 49.05340472488973, 23.938331803872615, 6.395162957034299, 13.31916008412765, 75.69532751356775, 109.64112042971944, 21.0484897916979, 91.68412853828973, 14.582051914977914, 16.375603780503983, 27.39026214118315, 30.86944622151597, 9.316556304969703, 102.59795608028224, 67.95705001315524, 30.104160767491276, 74.89349282353946, 5.905657727872323, 41.33137921897591, 51.941884195779835, 68.48234367698495, 60.54803070220349, 15.269486360394897, 9.90060553242838, 75.93314316033526, 37.419664068552464, 17.982327205800832, 17.26058078119438, 37.79321010372016, 49.4126119043151, 19.55921419859868, 7.89279816868031, 60.037310787546524, 45.904777918856446, 25.557439659835133, 21.11251621540857, 15.736913524435034, 13.232217649905891, 107.26668536278498, 225.76288691496688, 23.620952005914123, 36.325700202898375, 19.28157132898971, 48.46285215483276, 14.820583652209725, 14.222711857064732, 18.79001389658181, 54.167160552696025, 108.35895515053127, 7.829609836311661, 28.862304133274503, 46.660595384779455, 108.0431219281111, 27.52543663239454, 25.65760908436295, 76.62145676081947, 66.80297610880226, 12.367908882027926, 30.00126223576543, 31.175538187654517, 14.602946022007757, 153.52450302934358, 7.573890692509423, 15.961329512778258, 8.486761317345483, 60.94766550499371, 96.69512432158749, 71.20836411832772, 5.149230829659746, 28.365713107431592, 79.23507239559476, 30.16384522950846, 22.353363434448042, 11.54614844082077, 17.22727985055509, 9.91558677789007, 6.444419680447813, 30.276821517974483, 5.1803366172875425, 99.47875860389524, 13.173875973494637, 41.66990399340139, 55.192637781489395, 110.31685563504078, 10.699078439835645, 13.833049822303048, 98.3938507326731, 23.804845793714296, 5.947819445676122, 50.49733363038806, 9.304511599826808, 26.10207112086744, 74.2654608940611, 65.660554983889, 6.457920329410006, 149.73723102847026, 39.158853166339604, 46.52395842040194, 60.22920345093036, 26.209084197858388, 107.37396045502769, 17.79893689620227, 119.60856988530033, 6.845968734007469, 6.197763116185767, 6.1423160866094735, 21.065097914316624, 14.67009517499915, 7.673673312139696, 16.602890577638526, 128.22690977842925, 24.239625853468016, 7.345689750559497, 129.88324803826706, 12.977599257469368, 5.583573569494501, 11.470358281963328, 6.107873384772157, 29.85682737382277, 23.820441321634988, 61.30906831780891, 45.179022423263355, 17.593449124199932, 74.72497094607326, 10.109384096367062, 12.601885728317027, 55.58380286546616, 83.8962223446728, 9.318604113133034, 6.786426467034712, 17.285304460230417, 36.24500356014909, 29.514517143043562, 55.85503734497677, 16.53761961014501, 17.558073154489193, 8.275351533244407, 44.50614738460881, 117.0961709207948, 44.58399069852456, 5.7847005086937635, 96.09688453022723, 27.77497708900091, 15.091972277102379, ...])
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)