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 = 44588
shot = shot_no
identifier='H03-W0051_shot_'+str(shot)+'_450V'
detector = 'H03-W0051'
ds = np.DataSource('/tmp') # temporary storage for downloaded files
scalars_URL = 'http://golem.fjfi.cvut.cz/shots/{shot_no}/Diagnostics/PlasmaDetection/Results/{name}'
def get_scalar(shot_no, name):
return float(ds.open(scalars_URL.format(shot_no=shot_no, name=name)).read())
t_plasma_start = get_scalar(shot_no, 't_plasma_start')
t_plasma_end = get_scalar(shot_no, 't_plasma_end')
is_plasma = get_scalar(shot_no, 'b_plasma')
def get_file(shot, identifier):
#Pick the discharge to analyse
URL = 'http://golem.fjfi.cvut.cz/shots/{shot}/Diagnostics/TimepixDetector/H03/{identifier}.t3pa'
url = URL.format(shot=shot, identifier=identifier)
try:
file_name_t3pa=url
with urllib.request.urlopen(file_name_t3pa) as ft3pa:
line = ft3pa.readline()
line = line.decode('utf‐8')
ft3pa.close
except HTTPError:
print('File not found at %s. Aborting notebook execution.' % url)
raise StopExecution
return file_name_t3pa
def get_file_calib(name_calib):
#Pick the discharge to analyse
URL = 'http://golem.fjfi.cvut.cz/shots/{shot}/Diagnostics/TimepixDetector/calib_matrix_H03/{name_calib}.txt'
url = URL.format(shot=shot, name_calib=name_calib)
#print(url)
try:
file_calib=url
with urllib.request.urlopen(file_calib) as calib:
line = calib.readline()
line = line.decode('utf‐8')
calib.close
except HTTPError:
print('File not found at %s. Aborting notebook execution.' % url)
raise StopExecution
return file_calib
def load_calib(file_calib):
with urllib.request.urlopen(file_calib) as fc:
calib=[] #vytvoreni 1D pole
for i in range(0,256): #tj. rozsah 0-255
temp = [] # docasne pole
for j in range(0,256):
temp.append(0) #naplneni docasneho pole 0
calib.append(temp) #naplneni pole a[] docasnym polem temp
for i in range(0,256): #nacteni calib matice do pole calib
line = fc.readline()
line = line.decode('utf‐8')
word=line.strip().split(' ')
for j in range(0,256):
calib[i][j]=float(word[j]) #i = radek, j = sloupec0
fc.close
return calib
def load_t3pa_file(file_t3pa):
index=[]
matrix_index=[]
ToA=[]
ToT=[]
FToA=[]
overflow=[]
pocet_udalosti = 0
with urllib.request.urlopen(file_t3pa) as ft3pa:
line = ft3pa.readline()
line = line.decode('utf‐8')
while True:
line = ft3pa.readline()
line = line.decode('utf‐8')
word=line.strip().split('\t') #v t3pa souboru je oddelovac \t
if line == '':
break
index.append(word[0])
matrix_index.append(word[1])
ToA.append(float(word[2]))
ToT.append(float(word[3]))
FToA.append(float(word[4]))
overflow.append(float(word[5]))
pocet_udalosti = pocet_udalosti + 1
ft3pa.close
return index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti
def noise(index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti): #tuto fci nemus9m explicitn2 volat - volam ji v fci load_t3pa
pocet=int(0) #pocet sumicich pixelu
konst=int(len(index)/1000)+1
noise_matrix_index=[]
for i in range(0,konst):
pom = [] # pomocne pole
k=0 #pomocna promenna - udava, kolik je v czklu ve skutecnosti udalosti - aby nebyla chyba 'list index out of range'
for j in range(0,1001):
if i*1000+j>=len(index):
break
pom.append(matrix_index[i*1000+j])
k=k+1
for m in range(0,k):
count=int(0) #pocet vvyskytu stejneho matrix index behem 1000 udalosti
index_=int(-1) #budu testovat, jestli pixel na ktery koukam je sumici (abych ho nezapocital 2x)
for p in range(0,pocet):
#index=int(p)
if pom[m]==noise_matrix_index[p]:
index_=p #pixel na ktery jsem uz koukal a byl sumici
break
if index_ >=0 and pom[m]==noise_matrix_index[index_]:
continue
for l in range(0,k):
if pom[m]==pom[l]:
count=count+1
####podminka na sumici pixely
if count>=50: #kdyz se pixel vyskytne behem tisice udalosti vicekrat nez toto cislo, je sumici
noise_matrix_index.append(pom[m])
#noise_matrix_index[pocet]=pom[i]
pocet=pocet+1
pom.clear()
pocet_udalosti=len(index)
for n in range (0,pocet_udalosti):
for o in range(0,len(noise_matrix_index)):
if n >=pocet_udalosti:
break
if(matrix_index[n]==noise_matrix_index[o]):
del matrix_index[n]
del index[n]
del ToA[n]
del ToT[n]
del FToA[n]
del overflow[n]
pocet_udalosti=pocet_udalosti-1
continue
return pocet_udalosti,index, matrix_index, ToA, ToT, FToA, overflow
def t3pa_data(pocet_udalosti,index, matrix_index, ToA, ToT, FToA, overflow):
#rovnou vyhodim sumici pixely
pocet_udalosti,index, matrix_index, ToA, ToT, FToA, overflow=noise(index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti)
RowNo=[]
ClmNo=[]
for i in range(0,len(matrix_index)):
#RowNo.append(int(int(matrix_index[i]))//int(256))
#ClmNo.append(int(int(matrix_index[i]))%int(256))
ClmNo.append(int(int(matrix_index[i]))//int(256)) #ver XV
RowNo.append(int(int(matrix_index[i]))%int(256)) #ver XV
return index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti, RowNo, ClmNo
def hit_map(detector,hit_map_fig,RowNo,ClmNo):
plt.hist2d(RowNo,ClmNo,bins=(256,256),cmap='Blues')
cb=plt.colorbar()
cb.set_label('Counts in pixel')
plt.xlabel('x [pixel]')
plt.ylabel('y [pixel]')
plt.title(detector)
plt.savefig(hit_map_fig, dpi = 1000)
return
def energy(a, b, c, t, ToT, pocet_udalosti, RowNo, ClmNo):
E=[] #energy in keV
#for i in range (0,pocet_udalosti):
pom=0
for i in range (0,len(ToT)):
Sqrt=float(0.0)
e1=float(0.0)
e2=float(0.0)
# promenna sqrt je vnitrek odmocniny
Sqrt = (((float(b[RowNo[i]][ClmNo[i]])+float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]])-float(ToT[i])))*(((float(b[RowNo[i]][ClmNo[i]])+float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]])-float(ToT[i])))) + (float(4)*float(a[RowNo[i]][ClmNo[i]])*float(c[RowNo[i]][ClmNo[i]]))) #zmena oproti verzi VI
if float(Sqrt)<float(0):
E.append(float(0))
else:
'''
V kalibracni matici a se obcas vyskytne 0 -> ve vypoctu energie
je tim padem deleni nulou -> energie diverguje. Jak to vyresit?
zatim polozim energii = 0 (kdyz a=0), pak se uvidi
nakonec udelam limitu vyrazu energie pro a->0 (L'hopital)
'''
if a[RowNo[i]][ClmNo[i]]==0:
e1=((float(t[RowNo[i]][ClmNo[i]]))/float(2)) + ((((float(b[RowNo[i]][ClmNo[i]])+float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]])-float(ToT[i]))*(float(t[RowNo[i]][ClmNo[i]]))) - 2*(float(c[RowNo[i]][ClmNo[i]])))/(float(2)*np.sqrt(float(Sqrt))))
e2=((float(t[RowNo[i]][ClmNo[i]]))/float(2)) - ((((float(b[RowNo[i]][ClmNo[i]])+float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]])-float(ToT[i]))*(float(t[RowNo[i]][ClmNo[i]]))) - 2*(float(c[RowNo[i]][ClmNo[i]])))/(float(2)*np.sqrt(float(Sqrt))))
else:
e1=((-(float(b[RowNo[i]][ClmNo[i]]) - (float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]]))-float(ToT[i])))+np.sqrt(float(Sqrt)))/(float(2)*float(a[RowNo[i]][ClmNo[i]]))
e2=((-(float(b[RowNo[i]][ClmNo[i]]) - (float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]]))-float(ToT[i])))-np.sqrt(float(Sqrt)))/(float(2)*float(a[RowNo[i]][ClmNo[i]]))
if a[RowNo[i]][ClmNo[i]]<0:
e1=-1
e2=-1
if math.isnan(e1):
e1=-1
if math.isnan(e2):
e2=-1
if e1<0 and e2<0:
E.append(float(0))
if e1>=0 and e1>e2:
E.append(float(e1))
if e2>=0 and e2>e1:
E.append(float(e2))
if e1>=0 and e2==e1:
E.append(float(e1))
return E
def Time(ToA, FToA, pocet_udalosti, RowNo, ClmNo):
T=[] #time in ns
for i in range (0,pocet_udalosti):
Time=float(0.0)
Time=(float(ToA[i])-((float(FToA[i])/float(16))))*float(25)
T.append(float(Time))
return T
def Timewalk_parameters_Si():
#SI - korekce na TimeWalk - parametry
A = -1.21988
B = 4.33638
C = 29.5075
D = 1
sigma_A=0.7013
sigma_B=0.1366
sigma_C=4.753
sigma_D=0
return A, B, C, D, sigma_A, sigma_B, sigma_C, sigma_D
def Timewalk(E,T):
i=0
A, B, C, D, sigma_A, sigma_B, sigma_C, sigma_D = Timewalk_parameters_Si()
while i < len(T):
timewalk=float(0)
timewalk = (C / (E[i] - B)) + A
if(timewalk<0):
timewalk=0
T[i]=T[i]-timewalk
i=i+1
return E,T
def remove_interactions_with_zero_energy(index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T):
i=0
treshold=5.015347
while i < len(T):
if E[i]<treshold: #E[i] < energy treshold
index.pop(i)
matrix_index.pop(i)
ToA.pop(i)
ToT.pop(i)
FToA.pop(i)
overflow.pop(i)
RowNo.pop(i)
ClmNo.pop(i)
E.pop(i)
T.pop(i)
continue
i=i+1
return index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T
def clustering_new(index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T):
dT=float(50)
indexCl, TCl,ECl, matrix_indexCl, ToACl,ToTCl,FToACl,RowNoCl,ClmNoCl,overflowCl=[],[],[],[],[],[],[],[],[],[]
StartLastElem=len(T)-1
indexCl.append(int(index[StartLastElem]))
TCl.append(float(T[StartLastElem]))
ECl.append(float(E[StartLastElem]))
matrix_indexCl.append(int(matrix_index[StartLastElem]))
RowNoCl.append(int(RowNo[StartLastElem]))
ClmNoCl.append(int(ClmNo[StartLastElem]))
ToACl.append(float(ToA[StartLastElem]))
ToTCl.append(float(ToT[StartLastElem]))
FToACl.append(float(FToA[StartLastElem]))
overflowCl.append(float(overflow[StartLastElem]))
del index[StartLastElem]
del T[StartLastElem]
del E[StartLastElem]
del matrix_index[StartLastElem]
del RowNo[StartLastElem]
del ClmNo[StartLastElem]
del ToA[StartLastElem]
del ToT[StartLastElem]
del FToA[StartLastElem]
del overflow[StartLastElem]
j=1
pom=float(TCl[0]+dT)
while(j >0):
if(len(T) == 0):
break
k=0
j=0
while (k<=(len(TCl)-1)):
i=len(T)-1
if(len(T) == 0):
break
pocet_sousedu=0 #pocet sousednich pixelu - mohou byt maximalne 4
delka=0
# verze X
count=0 #pomocna promanna, kterou urcuji, ze se ma nasledujici cyklus while projit jeste jednou, pokud je i = -1
while(float(T[i])<=(pom)):
delka=delka+1
if(((((int(RowNoCl[k]))==(int(RowNo[i])+1))or((int(RowNoCl[k]))==(int(RowNo[i])-1))) and ((int(ClmNoCl[k]))==(int(ClmNo[i])))) or (((int(RowNoCl[k]))==(int(RowNo[i]))) and (((int(ClmNoCl[k]))==(int(ClmNo[i])+1))or((int(ClmNoCl[k]))==(int(ClmNo[i])-1))))):
#beru jen pixely, které mají společnou jednu stranu.
#pixely, kter0 spolu sousedí přes roh neuvažuji
indexCl.append(int(index[i]))
TCl.append(float(T[i]))
ECl.append(float(E[i]))
matrix_indexCl.append(int(matrix_index[i]))
RowNoCl.append(int(RowNo[i]))
ClmNoCl.append(int(ClmNo[i]))
ToACl.append(float(ToA[i]))
ToTCl.append(float(ToT[i]))
FToACl.append(float(FToA[i]))
overflowCl.append(float(overflow[i]))
# Removes i-th Row
del index[i]
del T[i]
del E[i]
del matrix_index[i]
del RowNo[i]
del ClmNo[i]
del ToA[i]
del ToT[i]
del FToA[i]
del overflow[i]
j=j+1
i=len(T)-1
pocet_sousedu=pocet_sousedu+1
if(len(T) == 0):
break
if(pocet_sousedu==4):
break
continue
i=i-1
if(i==-1): # verze X
count=count+1
if(i<0 and len(T)>0): # verze X
i=0
if(count>1):
break
if(i>=len(T)):
break
k=k+1
if(len(TCl)>2):
indexCl, TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl = insertionSort(indexCl, TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl)
return T, indexCl,TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl
def insertionSort(indexCl, TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl):
# Function to do insertion sort
# Traverse through 1 to len(arr)
for i in range(1, len(TCl)):
key = TCl[i]
# Move elements of arr[0..i-1], that are
# greater than key, to one position ahead
# of their current position
#ostatni
key1 = indexCl[i]
key2 = ECl[i]
key3 = matrix_indexCl[i]
key4 = RowNoCl[i]
key5 = ClmNoCl[i]
key6 = ToACl[i]
key7 = ToTCl[i]
key8 = FToACl[i]
key9 = overflowCl[i]
j = i-1
while j >= 0 and key < TCl[j] :
TCl[j + 1] = TCl[j]
#ostatni
indexCl[j + 1] = indexCl[j]
ECl[j + 1] = ECl[j]
matrix_indexCl[j + 1] = matrix_indexCl[j]
RowNoCl[j + 1] = RowNoCl[j]
ClmNoCl[j + 1] = ClmNoCl[j]
ToACl[j + 1] = ToACl[j]
ToTCl[j + 1] = ToTCl[j]
FToACl[j + 1] = FToACl[j]
overflowCl[j + 1] = overflowCl[j]
j -= 1
TCl[j + 1] = key
#ostatni
indexCl[j + 1] = key1
ECl[j + 1] = key2
matrix_indexCl[j + 1] = key3
RowNoCl[j + 1] =key4
ClmNoCl[j + 1] = key5
ToACl[j + 1] = key6
ToTCl[j + 1] = key7
FToACl[j + 1] = key8
overflowCl [j + 1] = key9
return indexCl, TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl
def file_t3pa_cls_new(file_t3pa_cls,T):
with open(file_t3pa_cls, "w", encoding="utf-8") as t3pa_cls:
t3pa_cls.write('%\n')
t3pa_cls.write('% Index Matrix Index [ RowNo, ClmNo ] ToA FToA ( ToA_in_ns ) ToT ( ToT_in_keV ) Overflow\n')
t3pa_cls.write('\n')
i=1
T_first=[]
E_tot=[]
N_tot=[]
eventNo=0 #for high_energy_event function
while(len(T) > 0):
T, indexCl,TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl = clustering_new(index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T)
Tfirst=float(TCl[0])
Tlast=float(TCl[len(TCl)-1])
dT=Tlast-Tfirst
Etot=float(0)
for k in range(0,len(TCl)):
Etot=Etot+float(ECl[k])
T_first.append(float(Tfirst))
dT=Tlast-Tfirst
E_tot.append(float(Etot))
N_tot.append(len(TCl)) #new in ver. XV
t3pa_cls.write('# '+str(i)+', Nunmasked = '+str(len(TCl))+', Nmasked = 0, Ntot = '+str(len(TCl))+'\n')
t3pa_cls.write('# Tfirst = '+str(Tfirst)+' ns, Tlast = '+str(Tlast)+' ns, dT = '+str(dT)+' ns, Etot = '+str(Etot)+' keV\n')
for j in range(0,len(TCl)):
t3pa_cls.write(str(indexCl[j])+' '+str(matrix_indexCl[j])+' [ '+str(RowNoCl[j])+', '+str(ClmNoCl[j])+' ] '+str(ToACl[j])+' '+str(FToACl[j])+' ( '+str(TCl[j])+' ns ) '+str(ToTCl[j])+' ( '+str(ECl[j])+' keV ) '+str(overflowCl[j])+'\n')
t3pa_cls.write('\n')
#eventNo=single_interaction(eventNo,Etot, Tfirst, ECl, TCl, RowNoCl, ClmNoCl,path)
i=i+1
t3pa_cls.close
return T_first, E_tot, N_tot
def energy_spectrum_in_time(Tfirst, Etot): #dela histogram - energie zaznamenana v case
pom = 0
dt=100 #(ns) time width of 1 bin
T_first=0 #cas, kdy prisel trigger a yacalo mereni
T_last=(max(Tfirst)) #posledni z Tfirst
Delta_T = T_last - T_first
poc = int(int(Delta_T) / float(dt)) + 1 #pocet casovych oken
T_int_first=[] #cas
E=[] #energie
for i in range(0,poc):
T_int_first.append((i*dt) + dt/2)
E.append(0)
#XII
for j in range(0,len(Tfirst)):
time_index=0
time_index=int(((Tfirst[j]-T_first)/dt))
if float(Tfirst[j]-T_first) >= (T_int_first[time_index] - dt / 2) and float(Tfirst[j]-T_first) < (T_int_first[time_index] + dt / 2):
E[time_index]=float(E[time_index])+float(Etot[j])
pom=pom+1
for l in range(0,len(T_int_first)):
T_int_first[l]=T_int_first[l]+T_first
caption, T_int_first = energy_in_time_hist(T_int_first, E, figure_E_in_time_hist, t_plasma_start, t_plasma_end, is_plasma, dt)
return dt, caption, T_int_first, E
def energy_in_time_hist(T_int_first, E,figure_E_in_time_hist, t_plasma_start, t_plasma_end, is_plasma, dt):
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(figsize =(10, 7))
for k in range(0,len(T_int_first)):
T_int_first[k] = T_int_first[k] / 1000000
plt.plot(T_int_first, E, drawstyle='steps-mid')
plt.title(detector+', #'+str(shot_no))
plt.xlabel('Time [ms]')
plt.ylabel('Energy [keV]')
if is_plasma == 1:
for t in (t_plasma_start, t_plasma_end):
plt.axvline(t, color='k', linestyle='--')
plt.xlim([0, (t_plasma_start + t_plasma_end)])
else:
plt.xlim(0,)
plt.ylim(0,) #10 000 keV
plt.savefig(figure_E_in_time_hist, dpi = 1000)
caption = '# x = time in ms, count = energy in keV, dT= '+str(dt)+' ns'
return caption, T_int_first
def hits_in_time_hist_new(T, dt, t_plasma_start, t_plasma_end, is_plasma,figure_count_in_time_hist):
pom = 0
T_first=0 #cas, kdy prisel trigger a yacalo mereni
T_last=(max(T)) #posledni z Tfirst
Delta_T = T_last - T_first
poc = int(int(Delta_T) / float(dt)) + 1 #pocet casovych oken
T_hit=[] #cas
count=[] #energie
for i in range(0,poc):
T_hit.append((i*dt) + dt/2)
count.append(0)
for j in range(0,len(T)):
time_index=0
time_index=int(((T[j]-T_first)/dt))
k=time_index
for j in range(0,len(T)):
time_index=0
time_index=int(((T[j]-T_first)/dt))
if float(T[j]-T_first) >= (T_hit[time_index] - dt / 2) and float(T[j]-T_first) < (T_hit[time_index] + dt / 2):
count[time_index] = count[time_index] + 1
pom=pom+1
for l in range(0,len(T_hit)):
T_hit[l]=T_hit[l]+T_first
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(figsize =(10, 7))
for k in range(0,len(T_hit)):
T_hit[k] = T_hit[k] / 1000000
#plt.plot(T_hit, count)
plt.plot(T_hit, count, drawstyle='steps-mid')
plt.title(detector+', #'+str(shot_no))
plt.xlabel('Time [ms]')
plt.ylabel('Count')
if is_plasma == 1:
for t in (t_plasma_start, t_plasma_end):
plt.axvline(t, color='k', linestyle='--')
plt.xlim([0, (t_plasma_start + t_plasma_end)])
else:
plt.xlim(0,)
plt.ylim(0,) #10 000 keV
plt.savefig(figure_count_in_time_hist, dpi = 1000)
caption = '# x = time in ms, dT= '+str(dt)+' ns'
return caption, T_hit,count
def energy_spectrum(Etot):
E_min=0
dE=5 #keV
E_max=max(Etot)
pocet=(E_max//dE) + 3
pocet=int(pocet)
E_max=float(dE*pocet)
xle=[]
xre=[]
xmean=[]
for p in range (0,pocet):
xle.append(E_min + (p * (E_max - E_min)) / pocet)
xre.append(xle[p]+dE)
xmean.append((xle[p] + xre[p]) / 2)
count=[]
for l in range(0,pocet):
count.append(0)
#XII
for i in range(0,len(Etot)):
E_index=int(((Etot[i]-E_min)/dE))
if ((xle[E_index] <= Etot[i]) and (Etot[i] < xre[E_index])):
count[E_index]=count[E_index]+1
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(figsize =(10, 7))
#ax.hist(Etot, bins = xle)
plt.fill_between(xmean, count,step='mid') #pre mid post
plt.plot(xmean, count, drawstyle='steps-mid')
plt.title(detector+', #'+str(shot_no))
plt.xlabel('Energy [keV]')
plt.ylabel('Count')
plt.xlim(0,)
ax.set_yscale('log') #log scale y
caption = '# x = energy in keV, dE= '+str(dE)+' keV'
plt.savefig(figure_E_hist, dpi = 1000)
return caption, xmean,count, xle, Etot
def hist_file(file_hist, xmean, count, caption ):
with open(file_hist, "w", encoding="utf-8") as hist:
hist.write('#\n')
hist.write('#'+str(caption)+'\n')
hist.write('# x_mean count\n')
hist.write('\n')
for m in range(0,len(xmean)):
hist.write(str(xmean[m])+' '+str(count[m])+'\n')
hist.close
return T_first, E_tot
def multiplot(icon_fig, x1,y1,x2,y2):
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(nrows=2,figsize =(10, 7))
ax[0].plot(x1, y1, drawstyle='steps-mid')
ax[0].set_xlabel('Time [ms]')
ax[0].set_ylabel('Energy [keV]')
if is_plasma == 1:
for t in (t_plasma_start, t_plasma_end):
ax[0].axvline(t, color='k', linestyle='--')
ax[0].set_xlim([0, (t_plasma_start + t_plasma_end)])
else:
ax[0].set_xlim(0,)
ax[0].set_ylim(0,) #keV
#ax[1].hist(y2, bins = x2)
ax[1].fill_between(x2, y2,step='mid') #pre mid post
ax[1].plot(x2, y2, drawstyle='steps-mid')
ax[1].set_xlabel('Energy [keV]')
ax[1].set_ylabel('Count')
ax[1].set_xlim(0,)
#ax[1].set_ylim(0,)
ax[1].set_yscale('log') #log scale y
fig.subplots_adjust(hspace=0.3)
plt.savefig(icon_fig, dpi = 1000)
return
def single_interaction(eventNo,Etot, Tfirst, ECl, TCl, RowNoCl, ClmNoCl,path): # ver XV
#tuto funkci volam ve funkci file_t3pa_cls_new(file_t3pa_cls,T):
#This function is calling in function file_t3pa_cls_new(file_t3pa_cls,T)
high_E = 1500 #[keV] - zadani, jaka energie je pro me vysoka
if(Etot>=high_E or len(ECl)>15):
#if (len(ECl)>15): #len(ECl) = pocet pixelu dane interakce
print("Total energy of track: "+str(Etot)+" keV\n")
A, B, C, D, sigma_A, sigma_B, sigma_C, sigma_D = Timewalk_parameters_Si()
######################
#SI - rekonstrukce z(t) - parametry
a=0.0193947
b=-0.0273934
sigma_a=0.0004163
sigma_b=0.009832
#######################
time=[]
sigma_time=[]
time_min = []
time_max=[]
z_rec=[]
z_rec_min=[]
z_rec_max=[]
sigma_z_rec=[]
for i in range(0, len(TCl)):
time.append(TCl[i] - Tfirst)
#chyba urceni casu = chyba timewalk ->
sigma_time.append(np.sqrt(((sigma_C / (pow((ECl[i] - B), D)))*(sigma_C / (pow((ECl[i] - B), D)))) + (((sigma_B*C*D) / (pow((ECl[i] - B), (D + 1))))*((sigma_B*C*D) / (pow((ECl[i] - B), (D + 1))))) + (((sigma_D*C*math.log(ECl[i] - B)) / (pow((ECl[i] - B), D)))* ((sigma_D*C*math.log(ECl[i] - B)) / (pow((ECl[i] - B), D)))) + (sigma_A*sigma_A)))
time_min.append(time[i] - sigma_time[i])
time_max.append(time[i] + sigma_time[i])
#//
#//rekonstrukce hloubky interakce
z_rec.append(a * time[i] + (b))
sigma_z_rec.append(np.sqrt(((time[i]*time[i])*(sigma_a*sigma_a)) + (sigma_b*sigma_b) + (a*a)*(sigma_time[i]*sigma_time[i])))
z_rec_min.append(z_rec[i] - sigma_z_rec[i])
z_rec_max.append(z_rec[i] + sigma_z_rec[i])
#//
single_interaction_file=str(path)+'event'+str(eventNo)+'.txt'
single_interaction_2D_fig=str(path)+'2D_event'+str(eventNo)+'.png'
single_interaction_3D_fig=str(path)+'3D_event'+str(eventNo)+'.png'
with open(single_interaction_file, "w", encoding="utf-8") as f:
f.write('#\n')
f.write('# x_mean y_mean z_rec z_rec_min z_rec_max sigma_z_rec\n')
f.write('#E_tot='+str(Etot)+'\n')
f.write('\n')
for m in range(0,len(TCl)):
#print(str(RowNoCl[m])+' '+str(ClmNoCl[m])+' '+str(z_rec[m])+' '+str(z_rec_min[m])+' '+str(z_rec_max[m])+' '+str(sigma_z_rec[m])+' '+str(ECl[m])+'\n')
f.write(str(RowNoCl[m])+' '+str(ClmNoCl[m])+' '+str(z_rec[m])+' '+str(z_rec_min[m])+' '+str(z_rec_max[m])+' '+str(sigma_z_rec[m])+' '+str(ECl[m])+'\n')
f.close
############################### plot
#binwidth=1
if ((max(RowNoCl)-min(RowNoCl))>=(max(ClmNoCl)-min(ClmNoCl))):
rang=max(RowNoCl)-min(RowNoCl)
#bins=(range((min(RowNoCl)-1), (max(RowNoCl)+3), binwidth), range((min(ClmNoCl)-1), (min(ClmNoCl)+rang+3), binwidth))
x_min=min(RowNoCl)-1
x_max=max(RowNoCl)+2
y_min=min(ClmNoCl)-1
y_max=min(ClmNoCl)+rang+2
else:
rang = max(ClmNoCl)-min(ClmNoCl)
#bins=(range((min(RowNoCl)-1), (min(RowNoCl)+rang+3), binwidth), range((min(ClmNoCl)-1), (max(ClmNoCl)+3), binwidth))
x_min=min(RowNoCl)-1
x_max=min(RowNoCl)+rang+2
y_min=min(ClmNoCl)-1
y_max=max(ClmNoCl)+2
###############$$$$$$$$$$$$$$$$$$$$
rows, cols = (x_max-x_min, x_max-x_min)
#arrECl = [[0]*cols]*rows
arrECl= [[0] * cols for _ in range(rows)]
for i in range (x_min,x_max):
for j in range (y_min,y_max):
for k in range(0,len(RowNoCl)):
if ((i==RowNoCl[k]) and (j==ClmNoCl[k])):
#print(str(i)+" "+str(j)+" "+str(RowNoCl[k])+" "+str(ClmNoCl[k])+"\n")
arrECl[i-x_min][j-y_min]=ECl[k]
arrECl=np.transpose(arrECl)
arrECl[arrECl == 0] = np.nan
#2D plot
plt.imshow(arrECl,cmap='jet', interpolation='none', origin=[(x_min-0.2),(y_min-0.2)], aspect='equal', extent=[x_min-0.2,x_max,y_min-0.2,y_max])
###############$$$$$$$$$$$$$$$$$$$$
cb=plt.colorbar(pad=0.005)
plt.tick_params(axis="x",direction="in")
plt.tick_params(axis="y",direction="in")
cb.ax.tick_params(axis='y', direction='in')
cb.set_label('Energy in pixel [keV]')
plt.xlabel('x [pixel]')
plt.ylabel('y [pixel]')
plt.title('$E_{tot}$ = '+str(round(Etot, 2))+' keV, $N_{tot}$ = '+str(len(ECl)))
plt.savefig(single_interaction_2D_fig, dpi = 1000)
plt.show()
plt.close()
############################### plot
############## 3D plot
# Creating figure
fig = plt.figure(figsize = (16, 9))
ax = plt.axes(projection ="3d")
# Add x, y gridlines
ax.grid(b = True, color ='grey', #
linestyle ='-.', linewidth = 0.3,
alpha = 0.2)
# Creating plot
sctt = ax.scatter3D(RowNoCl, ClmNoCl, z_rec,
alpha = 0.8,
c = ECl,
cmap = 'jet',
s = 4000, #size of bubbles in plot
marker ='o')
plt.title('$E_{tot}$ = '+str(round(Etot, 2))+' keV, $N_{tot}$ = '+str(len(ECl)))
ax.set_xlabel('x [pixel]', fontweight ='bold')
ax.set_ylabel('y [pixel]', fontweight ='bold')
ax.set_zlabel('z [mm]', fontweight ='bold')
cb=fig.colorbar(sctt, ax = ax, shrink = 0.5,aspect = 10,pad=0.00005) #
cb.ax.tick_params(axis='y', direction='in')
cb.set_label('Energy in pixel [keV]', fontweight ='bold')
plt.savefig(single_interaction_3D_fig, dpi = 1000)
# show plot
plt.show()
plt.close()
############## 3D plot
eventNo=eventNo+1
return eventNo
def size_of_interactions_average(Etot, Ntot,file_hist): #ver XV
E_min=0
dE=5 #keV
E_max=max(Etot)
pocet=(E_max//dE) + 3
pocet=int(pocet)
E_max=float(dE*pocet)
xle=[]
xre=[]
xmean=[]
count=[]
nop=[] #number of pixels
nop_mean=[] #mean number of pixels in dE
sigma=[] #root mean square error of the mean - stredni kvadraticka chyba prumeru
for p in range (0,pocet):
xle.append(E_min + (p * (E_max - E_min)) / pocet)
xre.append(xle[p]+dE)
xmean.append((xle[p] + xre[p]) / 2)
count.append(0)
nop.append(0)
nop_mean.append(0)
sigma.append(0)
#XII
for i in range(0,len(Etot)):
E_index=int(((Etot[i]-E_min)/dE))
if ((xle[E_index] <= Etot[i]) and (Etot[i] < xre[E_index])):
count[E_index]=count[E_index]+1
nop[E_index]=nop[E_index]+Ntot[i] #ver XV
for l in range(0,pocet):
if nop[l]!=0:
nop_mean[l]=float(nop[l])/float(count[l])
#####Computing sigma
for i in range(0,len(Etot)):
E_index=int(((Etot[i]-E_min)/dE))
if ((xle[E_index] <= Etot[i]) and (Etot[i] < xre[E_index])):
if nop_mean[E_index]!=0:
sigma[E_index]=sigma[E_index]+((float(Ntot[i])-float(nop_mean[E_index]))*(float(Ntot[i])-float(nop_mean[E_index])))
for l in range(0,pocet):
if nop[l]!=0 and count[l]>1:
sigma[l]=np.sqrt(sigma[l]/(float(count[l])*(float(count[l])-1)))
if nop[l]!=0 and count[l]==1:
sigma[l]=10
#####Computing sigma
#####write to file
with open(file_hist, "w", encoding="utf-8") as hist:
hist.write('# x_mean [keV] mean_size_of_interaction [pixel] sigma_mean_size_of_interaction\n')
for m in range(0,len(xmean)):
hist.write(str(xmean[m])+' '+str(nop_mean[m])+' '+str(sigma[m])+'\n')
hist.close
#####write to file
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(figsize =(10, 7))
#plt.fill_between(xmean, nop,step='mid',color='blue', alpha=0.3) #pre mid post
#plt.fill_between(xmean, nop,step='mid') #pre mid post
plt.plot(xmean, nop_mean, drawstyle='steps-mid')
plt.errorbar(xmean, nop_mean, yerr = sigma,fmt ='.', linewidth=0.7)
plt.title(detector+', #'+str(shot_no))
plt.xlabel('Energy [keV]')
plt.ylabel('Average size of interaction [pixel]')
plt.xlim(0,500)
plt.ylim(0,17)
#ax.set_yscale('log') #log scale y
caption = '# x = energy in keV, dE= '+str(dE)+' keV'
plt.savefig(figure_size_interaction, dpi = 1000)
return
def energy_spectra_doublebreakdown(Etot, Tfirst, file_hist):
#this function separates discharge into two parts acording to time Tsep and creates energy spectrum for each part.
#This is for discharges with double brakdown
Tsep=14636000 # [ns]
E_min=0
dE=5 #keV
E_max=max(Etot)
pocet=(E_max//dE) + 3
pocet=int(pocet)
E_max=float(dE*pocet)
xle=[]
xre=[]
xmean=[]
for p in range (0,pocet):
xle.append(E_min + (p * (E_max - E_min)) / pocet)
xre.append(xle[p]+dE)
xmean.append((xle[p] + xre[p]) / 2)
count_first=[]
count_second=[]
for l in range(0,pocet):
count_first.append(0)
count_second.append(0)
#XII
for i in range(0,len(Etot)):
E_index=int(((Etot[i]-E_min)/dE))
if ((xle[E_index] <= Etot[i]) and (Etot[i] < xre[E_index])):
if(Tfirst[i]<Tsep):
count_first[E_index]=count_first[E_index]+1
else:
count_second[E_index]=count_second[E_index]+1
caption = '# x = energy in keV, dE= '+str(dE)+' keV'
with open(file_hist, "w", encoding="utf-8") as hist:
hist.write('#\n')
hist.write('#'+str(caption)+'\n')
hist.write('# x_mean count_before_2nd_breakdown count_2nd_breakdown\n')
hist.write('\n')
for m in range(0,len(xmean)):
hist.write(str(xmean[m])+' '+str(count_first[m])+' '+str(count_second[m])+'\n')
hist.close
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(figsize =(10, 7))
#plt.fill_between(xmean, count_first,step='mid') #pre mid post
plt.plot(xmean, count_first, label='Before 2nd breakdown', drawstyle='steps-mid')
plt.plot(xmean, count_second, label='2nd breakdown', drawstyle='steps-mid')
plt.legend(loc='best')
plt.title(detector+', #'+str(shot_no))
plt.xlabel('Energy [keV]')
plt.ylabel('Count')
plt.xlim(0,500)
ax.set_yscale('log') #log scale y
plt.savefig(figure_energy_spectra_doublebreakdown, dpi = 1000)
return
#soubory, ktere ctu
#read files
t3pa=get_file(shot, identifier)
name_calib='caliba'
caliba=get_file_calib(name_calib)
name_calib='calibb'
calibb=get_file_calib(name_calib)
name_calib='calibc'
calibc=get_file_calib(name_calib)
name_calib='calibt'
calibt=get_file_calib(name_calib)
#vytvorene soubory:
#created files
t3pa_cls= 'H03-W0051_shot_'+str(shot)+'_450V.t3pa_cls'
E_hist= 'H03-W0051_shot_'+str(shot)+'_450V_E_hist.txt'
E_in_time_hist= 'H03-W0051_shot_'+str(shot)+'_450V_discharge_energy.txt'
count_in_time_hist= 'H03-W0051_shot_'+str(shot)+'_450V_discharge_hits.txt'
size_interaction= 'H03-W0051_shot_'+str(shot)+'size_interaction.txt'
file_energy_spectra_doublebreakdown= 'H03-W0051_shot_'+str(shot)+'energy_spectra_doublebreakdown.txt'
#created figures
icon_fig='icon-fig'
figure_E_in_time_hist='discharge_energy'
figure_count_in_time_hist='discharge_hits'
figure_E_hist='Energy_spectrum'
hit_map_fig='hit-map'
figure_size_interaction= 'H03-W0051_shot_'+str(shot)+'size_interaction'
figure_energy_spectra_doublebreakdown= 'H03-W0051_shot_'+str(shot)+'energy_spectra_doublebreakdown'
#nactu jednotlive kalibracni matice - abych to nemusel delat v kazde funkci
a=load_calib(caliba)
b=load_calib(calibb)
c=load_calib(calibc)
t=load_calib(calibt)
#nactu a urcim jednotlive hodnoty - abych to nemusel delat v kazde funkci
index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti = load_t3pa_file(t3pa)
index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti, RowNo, ClmNo = t3pa_data(pocet_udalosti,index, matrix_index, ToA, ToT, FToA, overflow)
raw data
#hit map
hit_map(detector,hit_map_fig,RowNo,ClmNo)
Energy and time calculation from raw data.
E=energy(a, b, c, t, ToT, pocet_udalosti, RowNo, ClmNo)
T=Time(ToA, FToA, pocet_udalosti, RowNo, ClmNo)
index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T = remove_interactions_with_zero_energy(index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T)
E,T=Timewalk(E,T)
#sort by time
T, index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E = (list(t) for t in zip(*sorted(zip(T, index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E), reverse=True))) #serazeni od nejvetsiho po nejmensi
T_pom=T.copy()
#save to file
T_first, E_tot, Ntot = file_t3pa_cls_new(t3pa_cls,T)
dt, caption, T_int_first, E = energy_spectrum_in_time(T_first, E_tot)
hist_file(E_in_time_hist, T_int_first, E, caption);
([3611921.402445991, 3619839.0625, 3631026.5625, 3631307.8125, 3640932.654653905, 3646286.356708505, 3648406.760720507, 3656579.6875, 3656594.5041843983, 3721768.75, 3725897.781680102, 3778460.9324928867, 3782935.480923759, 3786082.711290125, 3807943.85556092, 3811514.0625, 3826607.8125, 3833407.8125, 3840696.875, 3847996.79069228, 3849920.0227957657, 3861815.625, 3882828.125, 3883488.807500243, 3885388.6119166245, 3895874.1348303794, 3907209.375, 3941134.000704244, 3949775.7507522544, 3953463.255780966, 3962398.6703411434, 3972096.2659427226, 3972405.5933072944, 4006746.5690999147, 4010931.25, 4019012.5, 4024815.7123979633, 4060503.5150610805, 4074788.0017309375, 4075784.375, 4075912.1707507293, 4079890.625, 4083619.4679915486, 4086519.959484263, 4096300.0, 4106820.500029123, 4127354.2887683464, 4129352.7495293156, 4133855.644784807, 4133873.095886456, 4136646.875, 4144082.5381152877, 4152356.25, 4175965.368941643, 4180825.3391369455, 4183131.498799552, 4203493.239387068, 4206609.91106594, 4209087.5, 4212896.84695349, 4215892.1875, 4217062.574011618, 4228944.085293272, 4276298.138775715, 4306595.4276844505, 4306917.1875, 4307963.76036478, 4312301.501575258, 4317742.186243045, 4325125.0, 4331168.504897756, 4331358.950245641, 4331967.659788532, 4334213.578504277, 4341566.4413070455, 4341574.848320846, 4345070.201464299, 4351981.860505835, 4356068.533077549, 4357410.113222245, 4358204.4535357, 4358899.641594051, 4361334.220059468, 4362594.131386898, 4372473.4375, 4373591.78903121, 4378298.162602172, 4392074.155966706, 4397217.922844516, 4398951.311356443, 4398988.386010285, 4402814.0625, 4415425.34920648, 4422507.836618628, 4427536.234804838, 4443743.32403334, 4445831.25, 4446314.0625, 4449455.768522461, 4457614.247336353, 4461684.145314424, 4461773.9777238015, 4466595.253617167, 4471556.1859038435, 4474471.875, 4476123.4375, 4476126.798102359, 4488865.5540505955, 4488993.75, 4499890.382363065, 4500132.121482733, 4502318.469501992, 4504576.449900735, 4510731.107739175, 4516000.9423442595, 4535962.5, 4555431.823973118, 4558759.375, 4563592.1875, 4577162.620124114, 4625940.7730969535, 4637659.375, 4647454.6875, 4652961.26724928, 4653337.634016626, 4654819.611003896, 4683135.821638694, 4701848.4375, 4701875.894517317, 4718571.875, 4727437.980155757, 4735053.129089185, 4738146.187618206, 4742617.1875, 4745204.327927562, 4755750.8773551695, 4764415.425389601, 4767698.8741054, 4769752.927707848, 4769887.24039278, 4774760.9375, 4775912.5, 4781541.746954893, 4784596.257053094, 4788920.60968335, 4793486.024080085, 4797479.6875, 4827223.139265316, 4832459.375, 4834314.74303239, 4835313.09156403, 4835335.931575301, 4842309.375, 4847915.625, 4856296.7191102095, 4857449.072737494, 4860985.822322622, 4862277.843289926, 4864904.6875, 4865901.298056413, 4870145.675087104, 4877388.914994417, 4879611.175874022, 4885788.424208416, 4886079.101855824, 4890523.878236919, 4892260.6770707285, 4893593.735679541, 4902645.045606738, 4904854.980823894, 4905232.8125, 4908476.450000991, 4912615.551421635, 4916057.749953929, 4916101.994893071, 4917770.594684863, 4919673.226649312, 4919911.393720101, 4925250.0, 4928986.477683148, 4928994.828438245, 4941022.671626819, 4941082.547592644, 4941319.669777535, 4944822.257982018, 4945970.116033093, 4946433.399191171, 4946911.014217088, 4949487.38783019, 4956057.713149162, 4962361.436807105, 4964931.113857449, 4964973.4375, 4966370.3125, 4966915.616335916, 4967834.295807439, 4968970.932628788, 4971250.0, 4972260.484483496, 4974715.68104356, 4980623.045425158, 4981498.4375, 4983811.599339467, 4984064.0625, 4984238.463272247, 4984862.5, 4990929.998647869, 4991140.625, 4993134.306097994, 4993290.625, 4994184.897921672, 4996620.805441531, 5003408.3741112575, 5005228.125, 5005554.066063254, 5005847.112173967, 5007184.375, 5007190.2059136545, 5007932.922801992, 5008969.23942492, 5009740.906050537, 5013873.494879314, 5014367.172715367, 5016861.14009095, 5017867.951571009, 5018139.0625, 5030684.375, 5032204.6875, 5039254.203580185, 5039279.916254503, 5043351.759579211, 5048107.8125, 5049746.875, 5051631.198145451, 5051826.18149008, 5054742.1875, 5057240.565832056, 5058065.466236949, 5067463.206838273, 5067467.706164959, 5073054.55211592, 5074281.455162822, 5078199.053272366, 5078273.4375, 5097090.135546148, 5097108.5157008115, 5097328.650554898, 5101641.324201928, 5101815.5520549035, 5102998.332044668, 5104943.768271419, 5105090.050049748, 5105668.308413685, 5105861.960691976, 5106041.108555739, 5106133.080936195, 5106818.75, 5106895.267488625, 5107239.0625, 5107293.971371912, 5119421.668277604, 5120040.625, 5121220.3125, 5121400.494988159, 5122387.2439798955, 5123697.362027762, 5124210.797961144, 5124815.444252915, 5124939.0625, 5126851.37767456, 5127226.374473227, 5127309.533201251, 5131723.477151619, 5133047.154381858, 5137018.288365148, 5138040.12958856, 5139918.75, 5139936.3217354575, 5146003.527733291, 5150256.53200161, 5151686.426435724, 5153425.224415297, 5156217.033668395, 5158113.135237494, 5161715.71801452, 5162225.0, 5163217.1875, 5166014.323660346, 5168053.2551443465, 5170302.223244019, 5170332.46681849, 5171241.791258984, 5171979.457688733, 5175720.266442119, 5179523.4375, 5180147.0823708745, 5184498.4375, 5185937.439322748, 5188642.120713623, 5188840.441307129, 5188882.902391732, 5192100.545394811, 5194153.5804991145, 5198333.935388979, 5202532.261863482, 5206765.40269803, 5206793.75, 5207547.628012462, 5212147.475397062, 5214517.161027727, 5215392.1875, 5216763.555065545, 5217828.284108066, 5219963.427062806, 5223081.25, 5223121.875, 5233329.742067123, 5241312.079889602, 5264075.392929951, 5276758.449238235, 5282318.1428740695, 5284501.907024225, 5285742.094888963, 5289440.5554778995, 5296230.764113085, 5311866.923950005, 5313200.0, 5313469.266967834, 5330715.625, 5334119.672738288, 5334356.25, 5349240.830030489, 5366475.0, 5369101.19773211, 5378609.267659963, 5428222.750058661, 5439839.294200987, 5439851.245323483, 5440763.343155735, 5450780.745282642, 5492250.0, 5564013.302247412, 5572596.232284325, 5671673.4375, 5673066.612877785, 5963745.616951394, 6030523.255615529, 6056787.202510469, 6056797.217588163, 6063520.337258337, 6070603.383698455, 6079418.406910422, 6226742.1875, 6226817.498171361, 6285752.452078693, 6320210.557948157, 6329680.235548492, 6331261.189350302, 6332195.3125, 6344040.364378186, 6346882.1813609665, 6348539.0625, 6350845.3125, 6375465.916995034, 6383043.538994644, 6409771.424614806, 6410888.714317791, 6411105.653615593, 6411351.758782665, 6411604.445321085, 6412283.868650739, 6412621.8742199, 6413405.8753382545, 6413748.036688664, 6421011.389182401, 6438554.575287985, 6443839.371591305, 6455343.75, 6457853.000974821, 6459243.423365111, 6460353.365015189, 6461069.46398655, 6462525.0, 6462555.903715777, 6462567.755818025, 6465595.173225474, 6467761.822386065, 6473683.573162261, 6510083.703151263, 6515704.004371079, 6517445.458587117, 6518096.3764813505, 6520767.1875, 6522567.1875, 6526777.8215718325, 6527821.639248014, 6527829.6875, 6527977.920987432, 6530268.778632738, 6530303.125, 6530809.712216426, 6530959.375, 6533738.816206909, 6534091.659012789, 6536638.185288837, 6538245.3125, 6542267.543821376, 6543809.3882101085, 6543828.125, 6543860.020930095, 6554972.212997191, 6563193.75, 6564362.829292796, 6568030.958658166, 6569527.579778945, 6570557.334654989, 6579738.546861396, 6580053.107092973, 6588517.623214024, 6591307.660703661, 6592419.519872842, 6594235.706147406, 6597029.164486849, 6598240.625, 6599468.203191344, 6601883.73000636, 6603167.798792097, 6605801.450703378, 6606170.702871467, 6607665.395936671, 6610579.6875, 6611076.5625, 6617459.296259548, 6619047.526052442, 6620579.6875, 6622550.283766634, 6622750.633623252, 6622862.311219232, 6625231.212100227, 6627960.9375, 6630718.213232001, 6630763.5478100665, 6630831.966004981, 6632527.12464106, 6634191.359460067, 6634402.365257232, 6634897.71390708, 6636345.3125, 6636715.683436039, 6637223.884231659, 6637227.97630146, 6638823.775904343, 6638907.498689697, 6640624.356470364, 6643607.8125, 6646079.407336905, 6647385.7855191985, 6650560.9375, 6652026.724938182, 6654638.194722742, 6654792.379975282, 6656950.0, 6660865.182867256, 6661725.0, 6661770.3125, 6664600.350265739, 6667110.394115218, 6669351.452993989, 6675378.125, 6684357.8125, 6685116.110393011, 6686140.598925857, 6689489.405783365, 6694179.279805772, 6697354.849645185, 6697541.472726093, 6697788.179051811, 6698044.125211377, 6699835.636578477, 6700386.773321731, 6701333.644151208, 6702152.812058301, 6702985.905945279, 6703225.496247419, 6704995.458959932, 6705046.608500602, 6705054.817395523, 6705151.5625, 6705407.8125, 6705642.769589959, 6706342.1875, 6706464.0625, 6708473.4375, 6710583.488834656, 6712126.5625, 6715896.875, 6727389.837760579, 6727400.556023098, 6727948.4375, 6729210.9375, 6730736.145470495, 6735537.191792473, 6742120.679926862, 6747744.767146546, 6750028.076749699, 6757654.6875, 6757858.895704644, 6760287.5, 6773936.745203456, 6784295.598162659, 6784344.515508367, 6807788.550174449, 6808021.875, 6808882.8125, 6809465.356926676, 6810570.3125, 6814325.0, 6816962.5, 6819060.112186947, 6827292.9978335835, 6827829.923811362, 6827840.589759037, 6829182.8125, 6830242.1875, 6836420.285166568, 6844030.505452546, 6846606.25, 6848567.1875, 6849015.318716086, 6850260.318198168, 6850691.305292608, 6851157.708134777, 6852129.498036442, 6858898.4375, 6860056.690110121, 6861192.168588294, 6862120.3125, 6863506.6582947, 6869634.375, 6871011.943500921, 6876332.8125, 6876583.721413253, 6886523.4375, 6887100.832144835, 6888432.8125, 6889682.8125, 6892170.373050647, 6892815.658555211, 6894484.583789382, 6894982.553038422, 6895441.140348984, 6895479.501351088, 6895743.453830821, 6896084.598036372, 6896306.193722959, 6896487.095117388, 6896773.4375, 6897523.4375, 6898038.679047449, 6898520.3035383485, 6898968.553886951, 6899382.140995237, 6900831.930051317, 6901324.360599983, 6901926.732601604, 6902022.331302989, 6902747.170614041, 6902774.195651325, 6902871.568659759, 6903041.25912308, 6903159.375, 6903956.071592187, 6905405.89193369, 6905951.5625, 6906955.639167551, 6906993.701853792, 6909695.861151871, 6910648.4375, 6911168.75, 6916152.79070074, 6916945.035093002, 6918609.397775217, 6919048.23718584, 6920226.5625, 6920320.3125, 6921386.941274134, 6923117.437326331, 6926544.038169936, 6926734.29556397, 6927246.875, 6927851.398389844, 6929763.305908002, 6931060.827968425, 6932743.3904226, 6932865.625, 6934442.1875, 6939460.9375, 6940526.5625, 6941564.522937611, 6941867.2779240925, 6945257.239251013, 6946290.625, 6947794.672352523, 6950634.21353955, 6952001.897796768, 6953276.5625, 6956873.00656398, 6957527.92581107, 6960513.344150435, 6960920.3125, 6965324.571251117, 6966850.732379633, 6968242.576976267, 6968273.887196508, 6968813.443046429, 6969624.3667063685, 6969889.0625, 6969915.105978711, 6970510.9375, 6970537.5, 6971151.309919989, 6971731.25, 6971995.223948855, 6973025.0, 6975229.669398493, 6977509.4939018, 6977646.875, 6979322.689978586, 6979951.844378159, 6981843.75, 6983053.264600491, 6983591.239805796, 6989334.375, 6995541.22376234, 7006345.3125, 7006542.1822859775, 7007008.70287078, 7011110.9375, 7012501.385557649, 7014315.464200827, 7022398.4375, 7024517.618112914, 7024768.068673685, 7025158.686262752, 7025848.4375, 7029312.1618679315, 7037726.5625, 7045214.28167202, 7045617.080205055, 7053377.274220569, 7057489.0625, 7057585.2088979, 7059668.882176302, 7065932.811465062, 7066320.36625439, 7071678.125, 7071718.75, 7074579.314970095, 7074815.797709193, 7079657.648311066, 7084563.677165967, 7086635.438611088, 7087366.653841126, 7087818.75, 7088299.878136657, 7088448.4375, 7091598.4375, 7092570.707430687, 7092655.024537719, 7093774.858742875, 7094153.125, 7094571.238616431, 7094652.020943688, 7095118.3401817065, 7095468.094549974, 7095903.3876723, 7095921.875, 7095989.19007124, 7096163.769634542, 7096167.553072452, 7096192.1875, 7096201.337360052, 7096370.3125, 7096559.375, 7096559.542589261, 7096592.281197336, 7097004.55093112, 7097045.860683207, 7097173.613836412, 7097540.969599426, 7097827.80128009, 7097924.623459201, 7098115.514431912, 7098566.464664482, 7098570.476711008, 7098995.832314393, 7099004.6875, 7099265.417774885, 7099540.3589829095, 7099559.375, 7099937.5, 7099945.222106952, 7099951.555078403, 7099969.463929353, 7099973.434395337, 7100036.1837135535, 7100539.190797464, 7102757.659726013, 7104318.659197898, 7108596.417303556, 7110346.542704748, 7116293.75, 7117737.5, 7117907.885901556, 7121284.213625756, 7121488.012014943, 7125928.125, 7126482.066883272, 7126931.064072801, 7127353.449678725, 7127984.722717249, 7128418.310647569, 7128915.111811227, 7130378.610407142, 7131921.838215503, 7132812.5, 7134589.018371729, 7134870.3125, 7136370.24876805, 7137273.4375, 7138798.1019822145, 7139357.8125, 7139623.278512474, 7140880.129379032, 7140971.126481267, 7143345.3125, 7149375.0, 7151114.766217012, 7151921.778630349, 7152779.83674012, 7153556.25, 7153580.012326108, 7159223.162976591, 7161904.6875, 7166733.538724439, 7166949.3149920665, 7170607.8125, 7173316.656789726, 7175495.436175635, 7176668.75, 7176935.1090090955, 7178271.558866936, 7180262.5, 7181043.190855172, 7181665.1844471805, 7184924.479063608, 7184940.625, 7185314.390062286, 7187421.787460635, 7190356.25, 7193647.129192711, 7194285.250431847, 7201504.539808353, 7203068.876995155, 7207139.0625, 7207303.125, 7208022.786872955, 7208036.588290751, 7208041.268223481, 7208792.383470862, 7208860.9375, 7208990.004938203, 7209371.725347833, 7209441.76751863, 7209506.7556163445, 7209956.167254842, 7210001.570047309, 7210096.505784638, 7210750.0, 7210788.717522733, 7210825.140353665, 7211096.404846623, 7211454.6875, 7211535.16525629, 7211725.567001335, 7212212.5, 7212360.168240937, 7212449.890583337, 7212641.1361488225, 7213019.855867151, 7213605.236298622, 7214014.950353721, 7214934.375, 7216750.0, 7216954.122160199, 7219176.44341391, 7220420.3125, 7220729.707863006, 7221134.368195608, 7221222.82381531, 7222235.877075873, 7222567.1875, 7223013.912198444, 7224076.779217567, 7226970.3125, 7228645.3125, 7229181.1263696905, 7236062.5, 7241395.3125, 7246950.015483768, 7247353.125, 7247406.816914986, 7248099.634331996, 7250108.805029252, 7252090.625, 7253114.053470805, 7254063.351828139, 7254266.5677605, 7260493.980524382, 7261421.875, 7262496.875, 7262528.80237478, 7264343.766508011, 7264830.2790905535, 7267139.0625, 7267432.369079198, 7276629.947232918, 7283274.159651986, 7284262.142327181, 7284924.5798814995, 7286334.375, 7286934.590163646, 7288667.1875, 7288691.198018456, 7289052.093175824, 7289098.4375, 7290442.1875, 7292546.241430958, 7296150.287289226, 7299100.0, 7305382.8125, 7306549.624597045, 7307293.538834145, 7310006.25, 7310725.0, 7313172.979270195, 7314027.99613417, 7314275.0, 7316313.851735786, 7319894.823806458, 7320759.375, 7323601.6093059145, 7330604.205950592, 7331354.491631637, 7333050.09238434, 7334839.0625, 7334872.91513089, 7335186.654803864, 7337591.203100352, 7338021.015759792, 7340292.1875, 7359719.779874542, 7359724.95513618, 7365484.375, 7370200.2450402, 7371936.218932896, 7376834.375, 7380725.930564841, 7382222.401263254, 7384544.965104379, 7384757.8125, 7384771.293813356, 7387172.577553013, 7388635.492058786, 7389627.105922156, 7390740.374364228, 7391741.60691042, 7392378.125, 7392555.507937192, 7394518.562535228, 7395184.2522272095, 7396740.441928597, 7397115.625, 7397764.764723074, 7398506.25, 7399381.25, 7400456.25, 7400756.089849678, 7402801.148898797, 7404167.274134818, 7404759.375, 7405429.436869318, 7407161.311921239, 7409563.399116376, 7418105.939612339, 7418359.19646912, 7418360.092897001, 7418518.769489906, 7418600.654923458, 7418642.1875, 7418797.058287064, 7418816.311098427, 7419154.6875, 7419158.500046521, 7419429.205074508, 7419965.689329673, 7420010.318717306, 7420098.896700825, 7420169.539717365, 7420665.625, 7420749.701212014, 7420846.875, 7420979.6875, 7421338.3309433665, 7421726.5625, 7421739.0625, 7421870.296957465, 7421940.09342487, 7422145.724311239, 7422530.950496912, 7422652.2072343035, 7422711.15072313, 7422873.4375, 7423129.349965231, 7424028.885738911, 7424356.666619536, 7424478.04896756, 7424817.808526484, 7424903.125, 7425094.342385168, 7425218.75, 7425233.366702231, 7425368.060929131, 7426235.842768034, 7426395.3125, 7427621.39270634, 7427879.070538341, 7428591.827389905, 7428796.20707882, 7428804.6875, 7429266.534209615, 7430221.047244618, 7430449.186608068, 7430555.843074132, 7430780.992382302, 7430890.287364064, 7431253.247363959, 7431432.8125, 7431548.916354129, 7431824.36660863, 7431858.464555846, 7432329.6875, 7432337.717697617, 7432407.560300166, 7432437.5, 7432566.948707243, 7432715.625, 7432845.3125, 7432847.105499056, 7432926.5625, 7432981.81316234, 7433092.384095705, 7433226.496101568, 7433432.163662783, 7433665.266833496, 7433915.625, 7434016.886236159, 7434053.61899665, 7434127.946809241, 7434248.384240441, 7434386.363043858, 7434440.214885382, 7434495.3125, 7435857.031040798, 7435956.441712551, 7435957.016377344, 7438194.871443658, 7443476.087681713, 7448532.559279022, 7449248.037986155, 7449318.75, 7449327.539076331, 7450413.565612975, 7451103.000010424, 7454086.744880806, 7455450.818119243, 7458214.0625, 7460118.214360475, 7460703.926445154, 7461071.785846494, 7463065.008152951, 7464998.366357884, 7469827.50318498, 7471290.567194408, 7472787.220942282, 7473165.625, 7473683.168693027, 7473688.856096476, 7474097.716459755, 7474121.333921993, ...], [46.1300655131842, 41.94225864650429, 58.61739380333566, 51.03258809874633, 5.802392596794045, 16.822778072560972, 5.359732180834503, 69.67013318867023, 6.924031832973426, 68.00039406476614, 31.965120344625916, 88.37503672876367, 10.48191137977814, 52.30334254043629, 44.200515375926145, 42.948598977681414, 31.876903293367047, 54.5390770667804, 54.89710515672695, 80.62598647761565, 23.883152764770557, 59.795096593991936, 48.45046940605741, 14.051167864192088, 74.06272568499335, 7.8765508858775455, 44.879681097185724, 52.64121761328784, 5.570661150555237, 6.924394182259209, 5.6270566621005, 13.036968448200605, 20.06052429270686, 13.891050944443668, 63.01124275909513, 89.89961116523303, 13.340044486339986, 16.670646873572437, 12.014328349075008, 77.58352034838344, 7.488342030000226, 31.006611116854785, 62.581991003672286, 5.194520479921447, 45.8261426294351, 7.1716356138389905, 64.90744643619469, 66.29711344982019, 41.77569672860499, 10.632665212578452, 46.856207852908454, 10.724301419932589, 60.62070116361878, 9.12388630574157, 6.541601330397636, 15.982941303415696, 6.409920258941485, 9.829914667955682, 43.518578561377424, 59.832030160402454, 28.96492666500433, 15.231315932685517, 5.728434501543371, 43.669856258460584, 15.399498340255787, 30.44855722348689, 10.686154770044737, 8.254619950264516, 5.61397460629581, 104.85891628152194, 14.082927665515493, 36.548485348786, 11.955954707603638, 8.953148170308843, 12.698825775850379, 10.898619924610509, 14.534534379449559, 36.8496401237077, 24.873302096322295, 27.55664549413237, 60.141380427507556, 31.674491948398614, 33.914434753785265, 7.225450341139222, 34.39796217170501, 13.612991982840756, 88.25262303740006, 52.39201401243608, 12.511254615133408, 10.75660383757496, 5.373227221803818, 35.43457285475218, 31.31212926226866, 24.44494886482105, 24.60661785339739, 49.44885314815832, 63.12825597146136, 66.10987910884639, 21.679883240836617, 9.492740846005224, 70.47223021069283, 56.59148633494505, 5.934294004924737, 21.732082651061486, 51.99157079553155, 77.26762826240054, 15.922589774884887, 48.96148026151906, 52.5684478224012, 50.71112134342631, 8.80829928654882, 13.9702929157212, 7.092163996313496, 14.425653097714788, 8.856845482246346, 49.40514218006765, 7.82492109423321, 96.72611244528694, 41.42944899968946, 11.320807217156167, 6.103636597749334, 30.873908243335396, 55.560471944302705, 16.36733914959279, 6.102147533280632, 12.806112884238201, 9.235320371019755, 71.67839835874088, 7.962332065086285, 36.37154491798456, 17.153333034400735, 12.176566807501686, 5.57711564811683, 110.3546403773008, 38.404878633043644, 19.75617302863417, 132.98051682892435, 43.045022688589455, 25.157774181326303, 7.054840983118519, 71.82349940700723, 52.218494951778524, 5.9019369422912495, 156.86724576405965, 123.15289102441626, 15.282110740600388, 35.938883667612274, 6.23023981218926, 51.29921321534874, 18.37521890776525, 6.58400262487818, 6.762324324338668, 130.4851272716587, 60.67230818166916, 25.78437239851753, 25.79614155688016, 37.37614219654848, 41.27895839053001, 70.77602430201947, 61.34458542923214, 39.227697134294075, 45.37563255036677, 45.723350537934884, 26.29419476873438, 8.880872550652954, 16.937574533258733, 33.920660609022114, 14.887206028818762, 32.57309902607629, 46.71599349646658, 58.36474484826993, 26.48285619174906, 14.668288323609936, 40.12648615271897, 20.21820225088623, 77.81096129761265, 44.70348795480791, 17.021449505600494, 54.84101666628983, 78.4942569636511, 13.369910124775327, 5.6596899364553375, 6.060977704577003, 83.29645562939734, 11.784199236296107, 25.16990592556188, 23.791216513644862, 13.455209999757479, 14.530538657169068, 26.703579997634154, 12.009489002138926, 26.09671132493648, 69.14701592168507, 81.98841250565505, 15.034963514844174, 27.050661622248555, 17.98303670314282, 52.70528431524167, 79.06365174779165, 5.343845764637944, 22.64179354798825, 33.58493044945364, 50.0247882833726, 70.56914260367938, 52.71383235185324, 118.21540917072701, 16.276779944641405, 57.42705975124252, 52.477101045468714, 31.110574319728872, 22.62036206746518, 25.09221864452428, 47.251237310160825, 83.62576921929028, 13.00532495303318, 22.855163544621213, 118.05881257688878, 22.34010538816702, 16.03312651955393, 6.331079493102117, 16.932154911771363, 5.53587183647549, 98.25885069695906, 11.459856812683634, 25.986122373256876, 61.16475796845365, 101.3433774747709, 43.0153750987507, 21.65502256703197, 6.5235585275358705, 63.76401740627394, 91.36009556421874, 33.091560841397666, 89.51614546365886, 10.580177571040638, 60.85610382101356, 56.52188741525514, 6.071743410764763, 30.425783165906772, 12.048309331158556, 26.108889452958376, 15.785744941361942, 37.23143983330949, 97.24339681625304, 21.59895276593462, 72.78817166077842, 6.1445123716310155, 42.644587254824565, 6.749030503310368, 14.554240994422454, 32.69344897693368, 20.776653373658053, 47.18964682625263, 10.377814083820574, 17.17228942308119, 27.564748960857727, 82.2135043739301, 5.2022766783864505, 47.473932980725266, 14.410193462449321, 5.16057495288035, 67.42099706724545, 59.273393034202854, 6.331829929062541, 10.749798967864715, 17.19170543513104, 6.465437524422821, 10.8564709051559, 116.28848583721097, 14.280922297107777, 87.54251725414483, 20.850501885101977, 6.272221095081618, 9.579363251983663, 26.726185246215202, 155.78982888942807, 90.32202662529184, 19.81755683175733, 7.7556972668989825, 71.26654223435612, 11.9888505463006, 17.718092526999946, 43.8102163729278, 18.0790635485782, 48.42228016262108, 47.93276175022073, 110.9783426116214, 23.969672555828893, 18.929425351846213, 31.35028365246876, 10.627204656047049, 13.61949360527056, 24.690713824710517, 50.05642875158902, 32.03778142587618, 6.520097304097015, 32.29374895614118, 5.6106961254459184, 72.89194183455274, 75.19663960578629, 39.19013954801731, 17.527124463069, 25.0260333325554, 22.1174343240666, 21.00242050112816, 59.01422690077669, 38.574918736856866, 7.334540652283108, 20.139930492068963, 28.01146819583684, 38.354776826809214, 138.61167365135464, 13.092552289231605, 47.98884020325966, 65.51504906736456, 50.16146467567387, 11.214083525599493, 23.5038490449343, 16.68545589121251, 5.650268758407463, 27.060641233868523, 8.477576724879599, 68.93484742263433, 5.808854071431462, 61.14479859683319, 38.5227812290377, 44.1442920500612, 5.98572713223724, 35.39742940694675, 12.634925726450923, 29.182535821661606, 35.38743508488366, 67.63533238094581, 28.53980271197612, 12.740394732970223, 22.455427316343794, 13.769697054384018, 23.741269072438964, 36.51042557394899, 23.8043443750893, 98.40756329399844, 12.665637765913887, 75.10505888871968, 71.06896771418945, 7.407837603436843, 99.1802437744941, 10.85483268065471, 23.78286247778901, 8.476451807770804, 45.89495228951143, 118.25463544630016, 9.057225311259986, 41.182597036670316, 25.412678713657773, 18.537784548268466, 31.015411610928858, 17.54279090333078, 20.917102906427964, 80.3432979672314, 5.599786808184003, 12.980685103283498, 32.63406483999226, 54.37742158308202, 29.43426738469755, 24.29401079286906, 88.92514649362373, 10.623852589751687, 37.07062700861995, 29.548306757798542, 52.16772282301092, 13.30869047675714, 129.91911420315932, 22.84169670698691, 59.539163748273666, 16.9967525877515, 14.530390017743876, 16.26685138765764, 55.36471899294649, 7.558987499654548, 8.121083860796164, 8.41771495858136, 19.68259601629717, 54.579286294712716, 23.176996815432375, 38.55504269446149, 22.947353753878396, 19.887154336114456, 60.44728051092511, 22.01491926548752, 145.71062303141758, 9.458060254134171, 73.00235566651695, 29.911464284949236, 67.52301096129429, 23.70705011718118, 124.08797357198188, 96.19828193512981, 26.413267383668558, 65.97339962929811, 80.24395159973875, 19.05922323006666, 104.69694574890116, 7.058179546116608, 21.213555346914703, 18.407060625882092, 45.72681287776315, 16.499111644915427, 73.55583146504917, 29.403759220982636, 6.35240848990909, 44.64897297789888, 65.88464247663049, 70.60586560668817, 13.93630529960231, 21.05355317099088, 38.27100091379364, 50.35653542836188, 23.041771058913813, 5.257505901094219, 60.84751858878776, 18.998439655791735, 84.33646561708021, 33.57408588547965, 38.123951330328104, 21.038530600633557, 20.159167871273553, 9.907945377951933, 10.957345014733004, 16.672247365486566, 98.92546305108739, 43.95305946611868, 81.91044943625198, 164.07766624548873, 18.18103747325735, 57.64029081459046, 25.56225155733286, 18.068739431775153, 37.09754112104362, 7.589587259192109, 30.118898088017353, 46.61876633812291, 31.48485529627471, 5.367070167882682, 12.1369447410938, 29.861689022859537, 39.38183171946335, 69.42980143902206, 55.829848332523454, 31.35358745956858, 86.89280804827085, 19.691385394056493, 16.40994542844536, 5.195500028736764, 24.00534830808289, 39.81844102618858, 6.444052083522953, 20.21809109088388, 53.258188563236914, 71.10339629580814, 37.518587601422986, 7.674368466936815, 135.03349132676402, 13.487375001348996, 94.34011304847667, 38.81580403771446, 7.216673903360971, 21.070962519045636, 10.960749761722006, 58.654230009996425, 54.339759786127445, 11.981826165485208, 28.019033305894027, 11.710311629861499, 7.462149913316386, 16.88781934188392, 12.773955462963196, 77.34679568302093, 14.285669373316388, 36.61409974664659, 107.67717257676625, 5.084338298955595, 98.9984234880811, 27.9153166345419, 114.05461543764923, 8.3655767043708, 5.332871909525309, 6.2837504160607365, 62.640774106044184, 46.88880785195399, 12.178300404482103, 65.92452693527099, 49.6304754094861, 72.16511453603304, 97.44693851171846, 41.882278433000145, 73.95351958535929, 42.76255536730095, 18.906855519312966, 80.60194061957196, 61.27744698359586, 15.798231718248726, 61.874539428279036, 6.546273545050202, 10.370345511397629, 38.6103044151739, 62.709610817702924, 13.383111134672973, 60.523596189043325, 41.16023963032438, 9.585220917196247, 94.60281129688032, 146.39567357346138, 70.03266130554755, 79.00819087928488, 14.009532434864608, 55.93318667739581, 53.05326506184073, 50.24991189189475, 56.60255886906332, 36.24063098079495, 63.13653702597056, 27.846066206705327, 116.13844607114223, 56.60351608486112, 34.90874244061522, 42.49776144986112, 49.7558087177792, 108.23017912012968, 13.889863586491762, 10.28046121961691, 19.92432383464471, 26.618884391683245, 10.84393718574374, 77.60223892928164, 84.09734266376267, 38.54904211023025, 66.95515860434689, 7.757902280383967, 75.65090548061248, 20.94741778781112, 110.93113876288214, 60.51762110017529, 56.88271237292504, 117.45849181441385, 37.26661390989972, 39.764963091775996, 11.223688973026743, 46.49398922323557, 11.470532204666384, 14.03691806023702, 22.953856545728655, 18.50979256034886, 13.921252058082425, 14.097922507731237, 137.11486238719658, 8.083477081337179, 57.56135627327026, 36.169986307337346, 22.071231346754374, 52.19650564795748, 25.175112238404356, 5.5779445161871, 12.387915980256432, 8.843557562287293, 6.797947924517763, 7.777055726521536, 16.20219306405849, 38.16122291527816, 10.680414139396792, 48.17241917059853, 152.90545876788417, 25.438973986242445, 9.045940746345291, 139.2596093019319, 20.45442191837978, 32.89104609945191, 9.84281721665855, 68.32036446254784, 145.1852120732916, 24.911241501376978, 24.043690643370272, 20.901758603075834, 7.069772244830988, 52.339974871857606, 58.7782913637673, 63.11493382319384, 9.551973474210953, 148.47534557480375, 62.79553620799756, 89.03433534171339, 14.350837351612627, 19.265759233447678, 6.253458321014656, 9.044805176527621, 59.73543129368252, 45.86377993712252, 30.849888584584264, 39.86677717052043, 23.018918691685393, 11.27204948183869, 20.48217999683693, 74.10496371594247, 20.200392955620078, 9.198511447639627, 11.695623664859593, 83.01175323895262, 146.4286596973172, 8.18397874636806, 19.560324850391947, 44.835008743671885, 43.22655382487975, 130.37412340470186, 11.713015766553013, 15.446904128196548, 18.106013268641227, 5.667605050523327, 36.74550802463674, 29.947143306699907, 114.90373370018324, 32.02438885323614, 42.23862817855156, 37.96743125385173, 26.888197202194473, 70.88252028724457, 14.872960915602517, 15.414938856602134, 42.782060161949865, 18.69573237288096, 6.303480855250324, 153.21719595093856, 15.501707981468414, 17.544765770451967, 76.39328219110537, 8.630805078877955, 100.24935491130867, 31.875423154248907, 108.08496342997609, 62.299207856493275, 241.13631069167647, 5.127080421458797, 165.67370607744257, 26.648111912645717, 7.374097946683528, 19.796525312880274, 63.99993330593902, 23.275578604130725, 72.57171792211213, 6.111191637237053, 331.6343001153147, 20.876128413892943, 28.652552932405115, 72.03424150466873, 11.340789072258199, 6.486929007458947, 11.212780898624256, 155.88390084738714, 86.1816878449873, 22.300448044611443, 15.643361678096609, 6.731164313470411, 5.445467112155325, 80.58707893129912, 21.163779972794885, 53.468628044343646, 64.44582799540828, 45.586855178835556, 61.63961898441181, 11.806729024948588, 141.82640096834396, 14.429116799322287, 43.24561835805436, 12.967424355304969, 5.3578801837458405, 39.73375828853486, 20.070943838373385, 16.047063744731844, 50.16841306571211, 88.62110804377676, 183.39164033156194, 40.75384638126714, 41.48165786009598, 14.147619996694479, 95.21598822229687, 96.00518860614976, 31.054656520875753, 131.37190345798808, 14.445327164999982, 12.108267408870073, 6.515093407597435, 77.99356225036519, 29.56195470964795, 10.58608771668174, 26.514998067931426, 7.36117221965387, 7.663729763565319, 23.775005088408324, 45.982698167699525, 25.012852729516553, 82.62195652213481, 33.35261528659967, 37.75928000469315, 10.989296219886, 28.378962587663136, 5.426486721862678, 61.98921196867564, 5.298753693494707, 56.91804967848192, 7.081862878150075, 26.84946684463042, 21.925742376294895, 23.34679777631788, 37.923303511373454, 33.478698067794774, 11.244409711210576, 70.6086499802471, 17.33318855958434, 73.74283202238303, 157.00163752728227, 5.094814334730522, 97.13651699660723, 9.643806245170566, 22.120205485332725, 6.204467210032645, 89.01282567438797, 55.93424009773726, 46.28393802472342, 52.17452466321696, 94.64021136833168, 69.43714488539598, 43.572812547658344, 42.407661097044866, 60.08630360018091, 89.26733811530923, 16.943723642827184, 10.129662942562524, 103.0673230547625, 61.958320460272496, 18.53180280978697, 5.700652113524098, 11.369276255746895, 65.26704501430588, 11.676455729312604, 24.081717712333695, 46.73716133953048, 119.18851227412101, 5.764976470492696, 55.79849976402981, 70.6899110376417, 15.434830956071298, 64.84779648894184, 44.59933642335147, 6.228066719048221, 69.91238296627253, 20.922714012341117, 5.443169983486832, 46.16974241106114, 52.445160448054025, 7.210304896642111, 10.99357950547662, 192.43665623154058, 16.007785881551996, 84.6277478535871, 14.406952858514384, 11.332185026254683, 80.81576470255735, 30.776201410803093, 20.111514383532597, 7.856893726281638, 12.307811128720582, 45.777576937220516, 37.025295682064915, 74.09533999538264, 25.882058661156073, 10.529110010040602, 17.296662429519785, 7.099869030815495, 5.342180367404113, 13.699098437998922, 32.742027620994186, 8.112200721041871, 6.2850954061059285, 29.962058222979017, 29.49909901910175, 64.60474706316073, 71.8298116377732, 74.0424564989337, 19.170687238178285, 14.937053563215631, 17.32823230372541, 22.387451818676702, 23.814976754415596, 34.38768073967115, 33.90985964908642, 108.24146174162631, 48.81469154166166, 114.310565881343, 81.53174133249638, 16.063276179011055, 35.64846154454753, 11.692860287501702, 14.7160961829034, 31.399614630996748, 25.8718472326709, 114.84376866984077, 112.57306601264749, 46.08435203202709, 26.29936739505226, 53.68714316483488, 68.41980161008696, 5.462431512058524, 153.04336345238647, 94.60542947282833, 43.265078693567936, 5.891259835011494, 31.628595709068545, 28.34751128052608, 19.620869687173656, 47.795440867623796, 9.534239869010623, 73.0089958211715, 65.9696064270327, 27.158498050411357, 56.86807279935538, 63.4154223640373, 79.90509933988966, 14.40462735418184, 16.033418483144658, 18.65882382559042, 13.733514920712302, 5.513032448003802, 32.438271184780305, 15.830346977821511, 184.9969729532116, 12.15944021948123, 7.2683058117577115, 41.95565449109161, 42.643714281103136, 20.256699001769437, 16.16260304273675, 61.430504980940704, 61.87562466665797, 13.68075243404285, 83.13964030722826, 39.96481900974785, 43.01503658192549, 30.141149304404813, 14.472075069902639, 33.24821140594966, 24.961703691460034, 29.542381422224928, 41.4192406890514, 11.201664174245549, 119.66637317039122, 69.23131389983826, 15.305728553643668, 59.40984894896275, 20.999337038162647, 20.10017139643901, 8.617930122937103, 18.63044985129138, 48.16825642754469, 13.237571979786335, 23.037578120148382, 58.06439300481491, 11.533612437112952, 33.35859372415914, 31.525943488718756, 6.190528275045828, 109.68985403892601, 23.163636416180957, 94.96209364034085, 44.72757810766937, 64.07451186244256, 22.055183886416124, 37.11474604164498, 71.11100845482972, 6.97676121969123, 128.02928652159216, 90.12752826466594, 22.47262672092608, 26.313394610909576, 25.40724056386911, 56.13635731969624, 25.013669309972986, 54.89734263314447, 62.33679825805532, 91.83557694093811, 165.7074456930843, 5.061451594974926, 104.11039952551008, 50.134254773869145, 155.31552780885937, 31.593061069663552, 67.52834571662059, 13.877187212199754, 25.437116851478315, 99.51162387140693, 11.158308047413403, 19.21636095909841, 88.2911656804673, 15.689379191146154, 18.412494760818475, 66.729455249181, 12.404416500920092, 21.67022526575822, 6.497222975314084, 7.984387231346752, 41.956317631002676, 7.916230505614929, 34.727806165504184, 13.913105492461812, 110.23922888018998, 132.93253010533937, 19.457291175128155, 43.18841059633314, 44.15823650836958, 5.7057695525926215, 15.054964302717616, 31.028545489391163, 31.08004434264189, 56.19421425010817, 11.478187979872402, 119.96607022141329, 23.28284216296869, 16.042432007957533, 100.93599374028032, 11.010907125561816, 243.05223793603724, 47.10757991026819, 17.81015609132988, 92.18944869872746, 9.848526480749129, 119.49983300477732, 68.39104089311665, 38.313811471786565, 85.05903101054899, 78.80693950114515, 7.477985655319407, 83.81701800696825, 51.473643770394254, 10.240040284666666, 28.741660006538595, 78.1428585333575, 75.01073939264208, 58.61518368017931, 69.88243484331193, 23.66491697223006, 40.62132901962547, 29.515012162398016, 20.258225270118942, 6.158637792623242, 39.88625783379512, 15.84170330898828, 24.381148844967527, 34.51783977969025, 24.56538604014689, 102.74148777274121, 47.25836290107633, 50.75845673010096, 48.87175305115267, 52.207047350700755, 85.68915920670467, 14.694328400607912, 278.10211644129424, 44.817671362826765, 95.67596235335449, 23.73461125525122, 95.83129414168405, 25.89503459707191, 6.260492775775646, 122.28529681373234, 26.871596098528876, 113.18467973493445, 5.315838533022492, 92.3171080421082, 89.55184272223997, 96.68929113578804, 13.395546005086564, 34.02225214123159, 13.609945189925309, 132.78083013063343, 44.46334381548145, 13.334579833740024, 150.0326015548162, 6.176286561636805, 94.80096775991849, 73.26503327230198, 11.075185403972956, 6.934801036921708, 26.877819830458293, 20.401641304521743, 9.271964318446038, 86.05750688279868, 27.430872245206647, 24.021987775478397, 46.32416421055433, 7.218341337366522, 9.162769401256764, 38.932320142403334, 21.092884068883887, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([3611921.402445991, 3619839.0625, 3631026.5625, 3631307.8125, 3640932.654653905, 3646286.356708505, 3648406.760720507, 3656579.6875, 3656594.5041843983, 3721768.75, 3725897.781680102, 3778460.9324928867, 3782935.480923759, 3786082.711290125, 3807943.85556092, 3811514.0625, 3826607.8125, 3833407.8125, 3840696.875, 3847996.79069228, 3849920.0227957657, 3861815.625, 3882828.125, 3883488.807500243, 3885388.6119166245, 3895874.1348303794, 3907209.375, 3941134.000704244, 3949775.7507522544, 3953463.255780966, 3962398.6703411434, 3972096.2659427226, 3972405.5933072944, 4006746.5690999147, 4010931.25, 4019012.5, 4024815.7123979633, 4060503.5150610805, 4074788.0017309375, 4075784.375, 4075912.1707507293, 4079890.625, 4083619.4679915486, 4086519.959484263, 4096300.0, 4106820.500029123, 4127354.2887683464, 4129352.7495293156, 4133855.644784807, 4133873.095886456, 4136646.875, 4144082.5381152877, 4152356.25, 4175965.368941643, 4180825.3391369455, 4183131.498799552, 4203493.239387068, 4206609.91106594, 4209087.5, 4212896.84695349, 4215892.1875, 4217062.574011618, 4228944.085293272, 4276298.138775715, 4306595.4276844505, 4306917.1875, 4307963.76036478, 4312301.501575258, 4317742.186243045, 4325125.0, 4331168.504897756, 4331358.950245641, 4331967.659788532, 4334213.578504277, 4341566.4413070455, 4341574.848320846, 4345070.201464299, 4351981.860505835, 4356068.533077549, 4357410.113222245, 4358204.4535357, 4358899.641594051, 4361334.220059468, 4362594.131386898, 4372473.4375, 4373591.78903121, 4378298.162602172, 4392074.155966706, 4397217.922844516, 4398951.311356443, 4398988.386010285, 4402814.0625, 4415425.34920648, 4422507.836618628, 4427536.234804838, 4443743.32403334, 4445831.25, 4446314.0625, 4449455.768522461, 4457614.247336353, 4461684.145314424, 4461773.9777238015, 4466595.253617167, 4471556.1859038435, 4474471.875, 4476123.4375, 4476126.798102359, 4488865.5540505955, 4488993.75, 4499890.382363065, 4500132.121482733, 4502318.469501992, 4504576.449900735, 4510731.107739175, 4516000.9423442595, 4535962.5, 4555431.823973118, 4558759.375, 4563592.1875, 4577162.620124114, 4625940.7730969535, 4637659.375, 4647454.6875, 4652961.26724928, 4653337.634016626, 4654819.611003896, 4683135.821638694, 4701848.4375, 4701875.894517317, 4718571.875, 4727437.980155757, 4735053.129089185, 4738146.187618206, 4742617.1875, 4745204.327927562, 4755750.8773551695, 4764415.425389601, 4767698.8741054, 4769752.927707848, 4769887.24039278, 4774760.9375, 4775912.5, 4781541.746954893, 4784596.257053094, 4788920.60968335, 4793486.024080085, 4797479.6875, 4827223.139265316, 4832459.375, 4834314.74303239, 4835313.09156403, 4835335.931575301, 4842309.375, 4847915.625, 4856296.7191102095, 4857449.072737494, 4860985.822322622, 4862277.843289926, 4864904.6875, 4865901.298056413, 4870145.675087104, 4877388.914994417, 4879611.175874022, 4885788.424208416, 4886079.101855824, 4890523.878236919, 4892260.6770707285, 4893593.735679541, 4902645.045606738, 4904854.980823894, 4905232.8125, 4908476.450000991, 4912615.551421635, 4916057.749953929, 4916101.994893071, 4917770.594684863, 4919673.226649312, 4919911.393720101, 4925250.0, 4928986.477683148, 4928994.828438245, 4941022.671626819, 4941082.547592644, 4941319.669777535, 4944822.257982018, 4945970.116033093, 4946433.399191171, 4946911.014217088, 4949487.38783019, 4956057.713149162, 4962361.436807105, 4964931.113857449, 4964973.4375, 4966370.3125, 4966915.616335916, 4967834.295807439, 4968970.932628788, 4971250.0, 4972260.484483496, 4974715.68104356, 4980623.045425158, 4981498.4375, 4983811.599339467, 4984064.0625, 4984238.463272247, 4984862.5, 4990929.998647869, 4991140.625, 4993134.306097994, 4993290.625, 4994184.897921672, 4996620.805441531, 5003408.3741112575, 5005228.125, 5005554.066063254, 5005847.112173967, 5007184.375, 5007190.2059136545, 5007932.922801992, 5008969.23942492, 5009740.906050537, 5013873.494879314, 5014367.172715367, 5016861.14009095, 5017867.951571009, 5018139.0625, 5030684.375, 5032204.6875, 5039254.203580185, 5039279.916254503, 5043351.759579211, 5048107.8125, 5049746.875, 5051631.198145451, 5051826.18149008, 5054742.1875, 5057240.565832056, 5058065.466236949, 5067463.206838273, 5067467.706164959, 5073054.55211592, 5074281.455162822, 5078199.053272366, 5078273.4375, 5097090.135546148, 5097108.5157008115, 5097328.650554898, 5101641.324201928, 5101815.5520549035, 5102998.332044668, 5104943.768271419, 5105090.050049748, 5105668.308413685, 5105861.960691976, 5106041.108555739, 5106133.080936195, 5106818.75, 5106895.267488625, 5107239.0625, 5107293.971371912, 5119421.668277604, 5120040.625, 5121220.3125, 5121400.494988159, 5122387.2439798955, 5123697.362027762, 5124210.797961144, 5124815.444252915, 5124939.0625, 5126851.37767456, 5127226.374473227, 5127309.533201251, 5131723.477151619, 5133047.154381858, 5137018.288365148, 5138040.12958856, 5139918.75, 5139936.3217354575, 5146003.527733291, 5150256.53200161, 5151686.426435724, 5153425.224415297, 5156217.033668395, 5158113.135237494, 5161715.71801452, 5162225.0, 5163217.1875, 5166014.323660346, 5168053.2551443465, 5170302.223244019, 5170332.46681849, 5171241.791258984, 5171979.457688733, 5175720.266442119, 5179523.4375, 5180147.0823708745, 5184498.4375, 5185937.439322748, 5188642.120713623, 5188840.441307129, 5188882.902391732, 5192100.545394811, 5194153.5804991145, 5198333.935388979, 5202532.261863482, 5206765.40269803, 5206793.75, 5207547.628012462, 5212147.475397062, 5214517.161027727, 5215392.1875, 5216763.555065545, 5217828.284108066, 5219963.427062806, 5223081.25, 5223121.875, 5233329.742067123, 5241312.079889602, 5264075.392929951, 5276758.449238235, 5282318.1428740695, 5284501.907024225, 5285742.094888963, 5289440.5554778995, 5296230.764113085, 5311866.923950005, 5313200.0, 5313469.266967834, 5330715.625, 5334119.672738288, 5334356.25, 5349240.830030489, 5366475.0, 5369101.19773211, 5378609.267659963, 5428222.750058661, 5439839.294200987, 5439851.245323483, 5440763.343155735, 5450780.745282642, 5492250.0, 5564013.302247412, 5572596.232284325, 5671673.4375, 5673066.612877785, 5963745.616951394, 6030523.255615529, 6056787.202510469, 6056797.217588163, 6063520.337258337, 6070603.383698455, 6079418.406910422, 6226742.1875, 6226817.498171361, 6285752.452078693, 6320210.557948157, 6329680.235548492, 6331261.189350302, 6332195.3125, 6344040.364378186, 6346882.1813609665, 6348539.0625, 6350845.3125, 6375465.916995034, 6383043.538994644, 6409771.424614806, 6410888.714317791, 6411105.653615593, 6411351.758782665, 6411604.445321085, 6412283.868650739, 6412621.8742199, 6413405.8753382545, 6413748.036688664, 6421011.389182401, 6438554.575287985, 6443839.371591305, 6455343.75, 6457853.000974821, 6459243.423365111, 6460353.365015189, 6461069.46398655, 6462525.0, 6462555.903715777, 6462567.755818025, 6465595.173225474, 6467761.822386065, 6473683.573162261, 6510083.703151263, 6515704.004371079, 6517445.458587117, 6518096.3764813505, 6520767.1875, 6522567.1875, 6526777.8215718325, 6527821.639248014, 6527829.6875, 6527977.920987432, 6530268.778632738, 6530303.125, 6530809.712216426, 6530959.375, 6533738.816206909, 6534091.659012789, 6536638.185288837, 6538245.3125, 6542267.543821376, 6543809.3882101085, 6543828.125, 6543860.020930095, 6554972.212997191, 6563193.75, 6564362.829292796, 6568030.958658166, 6569527.579778945, 6570557.334654989, 6579738.546861396, 6580053.107092973, 6588517.623214024, 6591307.660703661, 6592419.519872842, 6594235.706147406, 6597029.164486849, 6598240.625, 6599468.203191344, 6601883.73000636, 6603167.798792097, 6605801.450703378, 6606170.702871467, 6607665.395936671, 6610579.6875, 6611076.5625, 6617459.296259548, 6619047.526052442, 6620579.6875, 6622550.283766634, 6622750.633623252, 6622862.311219232, 6625231.212100227, 6627960.9375, 6630718.213232001, 6630763.5478100665, 6630831.966004981, 6632527.12464106, 6634191.359460067, 6634402.365257232, 6634897.71390708, 6636345.3125, 6636715.683436039, 6637223.884231659, 6637227.97630146, 6638823.775904343, 6638907.498689697, 6640624.356470364, 6643607.8125, 6646079.407336905, 6647385.7855191985, 6650560.9375, 6652026.724938182, 6654638.194722742, 6654792.379975282, 6656950.0, 6660865.182867256, 6661725.0, 6661770.3125, 6664600.350265739, 6667110.394115218, 6669351.452993989, 6675378.125, 6684357.8125, 6685116.110393011, 6686140.598925857, 6689489.405783365, 6694179.279805772, 6697354.849645185, 6697541.472726093, 6697788.179051811, 6698044.125211377, 6699835.636578477, 6700386.773321731, 6701333.644151208, 6702152.812058301, 6702985.905945279, 6703225.496247419, 6704995.458959932, 6705046.608500602, 6705054.817395523, 6705151.5625, 6705407.8125, 6705642.769589959, 6706342.1875, 6706464.0625, 6708473.4375, 6710583.488834656, 6712126.5625, 6715896.875, 6727389.837760579, 6727400.556023098, 6727948.4375, 6729210.9375, 6730736.145470495, 6735537.191792473, 6742120.679926862, 6747744.767146546, 6750028.076749699, 6757654.6875, 6757858.895704644, 6760287.5, 6773936.745203456, 6784295.598162659, 6784344.515508367, 6807788.550174449, 6808021.875, 6808882.8125, 6809465.356926676, 6810570.3125, 6814325.0, 6816962.5, 6819060.112186947, 6827292.9978335835, 6827829.923811362, 6827840.589759037, 6829182.8125, 6830242.1875, 6836420.285166568, 6844030.505452546, 6846606.25, 6848567.1875, 6849015.318716086, 6850260.318198168, 6850691.305292608, 6851157.708134777, 6852129.498036442, 6858898.4375, 6860056.690110121, 6861192.168588294, 6862120.3125, 6863506.6582947, 6869634.375, 6871011.943500921, 6876332.8125, 6876583.721413253, 6886523.4375, 6887100.832144835, 6888432.8125, 6889682.8125, 6892170.373050647, 6892815.658555211, 6894484.583789382, 6894982.553038422, 6895441.140348984, 6895479.501351088, 6895743.453830821, 6896084.598036372, 6896306.193722959, 6896487.095117388, 6896773.4375, 6897523.4375, 6898038.679047449, 6898520.3035383485, 6898968.553886951, 6899382.140995237, 6900831.930051317, 6901324.360599983, 6901926.732601604, 6902022.331302989, 6902747.170614041, 6902774.195651325, 6902871.568659759, 6903041.25912308, 6903159.375, 6903956.071592187, 6905405.89193369, 6905951.5625, 6906955.639167551, 6906993.701853792, 6909695.861151871, 6910648.4375, 6911168.75, 6916152.79070074, 6916945.035093002, 6918609.397775217, 6919048.23718584, 6920226.5625, 6920320.3125, 6921386.941274134, 6923117.437326331, 6926544.038169936, 6926734.29556397, 6927246.875, 6927851.398389844, 6929763.305908002, 6931060.827968425, 6932743.3904226, 6932865.625, 6934442.1875, 6939460.9375, 6940526.5625, 6941564.522937611, 6941867.2779240925, 6945257.239251013, 6946290.625, 6947794.672352523, 6950634.21353955, 6952001.897796768, 6953276.5625, 6956873.00656398, 6957527.92581107, 6960513.344150435, 6960920.3125, 6965324.571251117, 6966850.732379633, 6968242.576976267, 6968273.887196508, 6968813.443046429, 6969624.3667063685, 6969889.0625, 6969915.105978711, 6970510.9375, 6970537.5, 6971151.309919989, 6971731.25, 6971995.223948855, 6973025.0, 6975229.669398493, 6977509.4939018, 6977646.875, 6979322.689978586, 6979951.844378159, 6981843.75, 6983053.264600491, 6983591.239805796, 6989334.375, 6995541.22376234, 7006345.3125, 7006542.1822859775, 7007008.70287078, 7011110.9375, 7012501.385557649, 7014315.464200827, 7022398.4375, 7024517.618112914, 7024768.068673685, 7025158.686262752, 7025848.4375, 7029312.1618679315, 7037726.5625, 7045214.28167202, 7045617.080205055, 7053377.274220569, 7057489.0625, 7057585.2088979, 7059668.882176302, 7065932.811465062, 7066320.36625439, 7071678.125, 7071718.75, 7074579.314970095, 7074815.797709193, 7079657.648311066, 7084563.677165967, 7086635.438611088, 7087366.653841126, 7087818.75, 7088299.878136657, 7088448.4375, 7091598.4375, 7092570.707430687, 7092655.024537719, 7093774.858742875, 7094153.125, 7094571.238616431, 7094652.020943688, 7095118.3401817065, 7095468.094549974, 7095903.3876723, 7095921.875, 7095989.19007124, 7096163.769634542, 7096167.553072452, 7096192.1875, 7096201.337360052, 7096370.3125, 7096559.375, 7096559.542589261, 7096592.281197336, 7097004.55093112, 7097045.860683207, 7097173.613836412, 7097540.969599426, 7097827.80128009, 7097924.623459201, 7098115.514431912, 7098566.464664482, 7098570.476711008, 7098995.832314393, 7099004.6875, 7099265.417774885, 7099540.3589829095, 7099559.375, 7099937.5, 7099945.222106952, 7099951.555078403, 7099969.463929353, 7099973.434395337, 7100036.1837135535, 7100539.190797464, 7102757.659726013, 7104318.659197898, 7108596.417303556, 7110346.542704748, 7116293.75, 7117737.5, 7117907.885901556, 7121284.213625756, 7121488.012014943, 7125928.125, 7126482.066883272, 7126931.064072801, 7127353.449678725, 7127984.722717249, 7128418.310647569, 7128915.111811227, 7130378.610407142, 7131921.838215503, 7132812.5, 7134589.018371729, 7134870.3125, 7136370.24876805, 7137273.4375, 7138798.1019822145, 7139357.8125, 7139623.278512474, 7140880.129379032, 7140971.126481267, 7143345.3125, 7149375.0, 7151114.766217012, 7151921.778630349, 7152779.83674012, 7153556.25, 7153580.012326108, 7159223.162976591, 7161904.6875, 7166733.538724439, 7166949.3149920665, 7170607.8125, 7173316.656789726, 7175495.436175635, 7176668.75, 7176935.1090090955, 7178271.558866936, 7180262.5, 7181043.190855172, 7181665.1844471805, 7184924.479063608, 7184940.625, 7185314.390062286, 7187421.787460635, 7190356.25, 7193647.129192711, 7194285.250431847, 7201504.539808353, 7203068.876995155, 7207139.0625, 7207303.125, 7208022.786872955, 7208036.588290751, 7208041.268223481, 7208792.383470862, 7208860.9375, 7208990.004938203, 7209371.725347833, 7209441.76751863, 7209506.7556163445, 7209956.167254842, 7210001.570047309, 7210096.505784638, 7210750.0, 7210788.717522733, 7210825.140353665, 7211096.404846623, 7211454.6875, 7211535.16525629, 7211725.567001335, 7212212.5, 7212360.168240937, 7212449.890583337, 7212641.1361488225, 7213019.855867151, 7213605.236298622, 7214014.950353721, 7214934.375, 7216750.0, 7216954.122160199, 7219176.44341391, 7220420.3125, 7220729.707863006, 7221134.368195608, 7221222.82381531, 7222235.877075873, 7222567.1875, 7223013.912198444, 7224076.779217567, 7226970.3125, 7228645.3125, 7229181.1263696905, 7236062.5, 7241395.3125, 7246950.015483768, 7247353.125, 7247406.816914986, 7248099.634331996, 7250108.805029252, 7252090.625, 7253114.053470805, 7254063.351828139, 7254266.5677605, 7260493.980524382, 7261421.875, 7262496.875, 7262528.80237478, 7264343.766508011, 7264830.2790905535, 7267139.0625, 7267432.369079198, 7276629.947232918, 7283274.159651986, 7284262.142327181, 7284924.5798814995, 7286334.375, 7286934.590163646, 7288667.1875, 7288691.198018456, 7289052.093175824, 7289098.4375, 7290442.1875, 7292546.241430958, 7296150.287289226, 7299100.0, 7305382.8125, 7306549.624597045, 7307293.538834145, 7310006.25, 7310725.0, 7313172.979270195, 7314027.99613417, 7314275.0, 7316313.851735786, 7319894.823806458, 7320759.375, 7323601.6093059145, 7330604.205950592, 7331354.491631637, 7333050.09238434, 7334839.0625, 7334872.91513089, 7335186.654803864, 7337591.203100352, 7338021.015759792, 7340292.1875, 7359719.779874542, 7359724.95513618, 7365484.375, 7370200.2450402, 7371936.218932896, 7376834.375, 7380725.930564841, 7382222.401263254, 7384544.965104379, 7384757.8125, 7384771.293813356, 7387172.577553013, 7388635.492058786, 7389627.105922156, 7390740.374364228, 7391741.60691042, 7392378.125, 7392555.507937192, 7394518.562535228, 7395184.2522272095, 7396740.441928597, 7397115.625, 7397764.764723074, 7398506.25, 7399381.25, 7400456.25, 7400756.089849678, 7402801.148898797, 7404167.274134818, 7404759.375, 7405429.436869318, 7407161.311921239, 7409563.399116376, 7418105.939612339, 7418359.19646912, 7418360.092897001, 7418518.769489906, 7418600.654923458, 7418642.1875, 7418797.058287064, 7418816.311098427, 7419154.6875, 7419158.500046521, 7419429.205074508, 7419965.689329673, 7420010.318717306, 7420098.896700825, 7420169.539717365, 7420665.625, 7420749.701212014, 7420846.875, 7420979.6875, 7421338.3309433665, 7421726.5625, 7421739.0625, 7421870.296957465, 7421940.09342487, 7422145.724311239, 7422530.950496912, 7422652.2072343035, 7422711.15072313, 7422873.4375, 7423129.349965231, 7424028.885738911, 7424356.666619536, 7424478.04896756, 7424817.808526484, 7424903.125, 7425094.342385168, 7425218.75, 7425233.366702231, 7425368.060929131, 7426235.842768034, 7426395.3125, 7427621.39270634, 7427879.070538341, 7428591.827389905, 7428796.20707882, 7428804.6875, 7429266.534209615, 7430221.047244618, 7430449.186608068, 7430555.843074132, 7430780.992382302, 7430890.287364064, 7431253.247363959, 7431432.8125, 7431548.916354129, 7431824.36660863, 7431858.464555846, 7432329.6875, 7432337.717697617, 7432407.560300166, 7432437.5, 7432566.948707243, 7432715.625, 7432845.3125, 7432847.105499056, 7432926.5625, 7432981.81316234, 7433092.384095705, 7433226.496101568, 7433432.163662783, 7433665.266833496, 7433915.625, 7434016.886236159, 7434053.61899665, 7434127.946809241, 7434248.384240441, 7434386.363043858, 7434440.214885382, 7434495.3125, 7435857.031040798, 7435956.441712551, 7435957.016377344, 7438194.871443658, 7443476.087681713, 7448532.559279022, 7449248.037986155, 7449318.75, 7449327.539076331, 7450413.565612975, 7451103.000010424, 7454086.744880806, 7455450.818119243, 7458214.0625, 7460118.214360475, 7460703.926445154, 7461071.785846494, 7463065.008152951, 7464998.366357884, 7469827.50318498, 7471290.567194408, 7472787.220942282, 7473165.625, 7473683.168693027, 7473688.856096476, 7474097.716459755, 7474121.333921993, ...], [46.1300655131842, 41.94225864650429, 58.61739380333566, 51.03258809874633, 5.802392596794045, 16.822778072560972, 5.359732180834503, 69.67013318867023, 6.924031832973426, 68.00039406476614, 31.965120344625916, 88.37503672876367, 10.48191137977814, 52.30334254043629, 44.200515375926145, 42.948598977681414, 31.876903293367047, 54.5390770667804, 54.89710515672695, 80.62598647761565, 23.883152764770557, 59.795096593991936, 48.45046940605741, 14.051167864192088, 74.06272568499335, 7.8765508858775455, 44.879681097185724, 52.64121761328784, 5.570661150555237, 6.924394182259209, 5.6270566621005, 13.036968448200605, 20.06052429270686, 13.891050944443668, 63.01124275909513, 89.89961116523303, 13.340044486339986, 16.670646873572437, 12.014328349075008, 77.58352034838344, 7.488342030000226, 31.006611116854785, 62.581991003672286, 5.194520479921447, 45.8261426294351, 7.1716356138389905, 64.90744643619469, 66.29711344982019, 41.77569672860499, 10.632665212578452, 46.856207852908454, 10.724301419932589, 60.62070116361878, 9.12388630574157, 6.541601330397636, 15.982941303415696, 6.409920258941485, 9.829914667955682, 43.518578561377424, 59.832030160402454, 28.96492666500433, 15.231315932685517, 5.728434501543371, 43.669856258460584, 15.399498340255787, 30.44855722348689, 10.686154770044737, 8.254619950264516, 5.61397460629581, 104.85891628152194, 14.082927665515493, 36.548485348786, 11.955954707603638, 8.953148170308843, 12.698825775850379, 10.898619924610509, 14.534534379449559, 36.8496401237077, 24.873302096322295, 27.55664549413237, 60.141380427507556, 31.674491948398614, 33.914434753785265, 7.225450341139222, 34.39796217170501, 13.612991982840756, 88.25262303740006, 52.39201401243608, 12.511254615133408, 10.75660383757496, 5.373227221803818, 35.43457285475218, 31.31212926226866, 24.44494886482105, 24.60661785339739, 49.44885314815832, 63.12825597146136, 66.10987910884639, 21.679883240836617, 9.492740846005224, 70.47223021069283, 56.59148633494505, 5.934294004924737, 21.732082651061486, 51.99157079553155, 77.26762826240054, 15.922589774884887, 48.96148026151906, 52.5684478224012, 50.71112134342631, 8.80829928654882, 13.9702929157212, 7.092163996313496, 14.425653097714788, 8.856845482246346, 49.40514218006765, 7.82492109423321, 96.72611244528694, 41.42944899968946, 11.320807217156167, 6.103636597749334, 30.873908243335396, 55.560471944302705, 16.36733914959279, 6.102147533280632, 12.806112884238201, 9.235320371019755, 71.67839835874088, 7.962332065086285, 36.37154491798456, 17.153333034400735, 12.176566807501686, 5.57711564811683, 110.3546403773008, 38.404878633043644, 19.75617302863417, 132.98051682892435, 43.045022688589455, 25.157774181326303, 7.054840983118519, 71.82349940700723, 52.218494951778524, 5.9019369422912495, 156.86724576405965, 123.15289102441626, 15.282110740600388, 35.938883667612274, 6.23023981218926, 51.29921321534874, 18.37521890776525, 6.58400262487818, 6.762324324338668, 130.4851272716587, 60.67230818166916, 25.78437239851753, 25.79614155688016, 37.37614219654848, 41.27895839053001, 70.77602430201947, 61.34458542923214, 39.227697134294075, 45.37563255036677, 45.723350537934884, 26.29419476873438, 8.880872550652954, 16.937574533258733, 33.920660609022114, 14.887206028818762, 32.57309902607629, 46.71599349646658, 58.36474484826993, 26.48285619174906, 14.668288323609936, 40.12648615271897, 20.21820225088623, 77.81096129761265, 44.70348795480791, 17.021449505600494, 54.84101666628983, 78.4942569636511, 13.369910124775327, 5.6596899364553375, 6.060977704577003, 83.29645562939734, 11.784199236296107, 25.16990592556188, 23.791216513644862, 13.455209999757479, 14.530538657169068, 26.703579997634154, 12.009489002138926, 26.09671132493648, 69.14701592168507, 81.98841250565505, 15.034963514844174, 27.050661622248555, 17.98303670314282, 52.70528431524167, 79.06365174779165, 5.343845764637944, 22.64179354798825, 33.58493044945364, 50.0247882833726, 70.56914260367938, 52.71383235185324, 118.21540917072701, 16.276779944641405, 57.42705975124252, 52.477101045468714, 31.110574319728872, 22.62036206746518, 25.09221864452428, 47.251237310160825, 83.62576921929028, 13.00532495303318, 22.855163544621213, 118.05881257688878, 22.34010538816702, 16.03312651955393, 6.331079493102117, 16.932154911771363, 5.53587183647549, 98.25885069695906, 11.459856812683634, 25.986122373256876, 61.16475796845365, 101.3433774747709, 43.0153750987507, 21.65502256703197, 6.5235585275358705, 63.76401740627394, 91.36009556421874, 33.091560841397666, 89.51614546365886, 10.580177571040638, 60.85610382101356, 56.52188741525514, 6.071743410764763, 30.425783165906772, 12.048309331158556, 26.108889452958376, 15.785744941361942, 37.23143983330949, 97.24339681625304, 21.59895276593462, 72.78817166077842, 6.1445123716310155, 42.644587254824565, 6.749030503310368, 14.554240994422454, 32.69344897693368, 20.776653373658053, 47.18964682625263, 10.377814083820574, 17.17228942308119, 27.564748960857727, 82.2135043739301, 5.2022766783864505, 47.473932980725266, 14.410193462449321, 5.16057495288035, 67.42099706724545, 59.273393034202854, 6.331829929062541, 10.749798967864715, 17.19170543513104, 6.465437524422821, 10.8564709051559, 116.28848583721097, 14.280922297107777, 87.54251725414483, 20.850501885101977, 6.272221095081618, 9.579363251983663, 26.726185246215202, 155.78982888942807, 90.32202662529184, 19.81755683175733, 7.7556972668989825, 71.26654223435612, 11.9888505463006, 17.718092526999946, 43.8102163729278, 18.0790635485782, 48.42228016262108, 47.93276175022073, 110.9783426116214, 23.969672555828893, 18.929425351846213, 31.35028365246876, 10.627204656047049, 13.61949360527056, 24.690713824710517, 50.05642875158902, 32.03778142587618, 6.520097304097015, 32.29374895614118, 5.6106961254459184, 72.89194183455274, 75.19663960578629, 39.19013954801731, 17.527124463069, 25.0260333325554, 22.1174343240666, 21.00242050112816, 59.01422690077669, 38.574918736856866, 7.334540652283108, 20.139930492068963, 28.01146819583684, 38.354776826809214, 138.61167365135464, 13.092552289231605, 47.98884020325966, 65.51504906736456, 50.16146467567387, 11.214083525599493, 23.5038490449343, 16.68545589121251, 5.650268758407463, 27.060641233868523, 8.477576724879599, 68.93484742263433, 5.808854071431462, 61.14479859683319, 38.5227812290377, 44.1442920500612, 5.98572713223724, 35.39742940694675, 12.634925726450923, 29.182535821661606, 35.38743508488366, 67.63533238094581, 28.53980271197612, 12.740394732970223, 22.455427316343794, 13.769697054384018, 23.741269072438964, 36.51042557394899, 23.8043443750893, 98.40756329399844, 12.665637765913887, 75.10505888871968, 71.06896771418945, 7.407837603436843, 99.1802437744941, 10.85483268065471, 23.78286247778901, 8.476451807770804, 45.89495228951143, 118.25463544630016, 9.057225311259986, 41.182597036670316, 25.412678713657773, 18.537784548268466, 31.015411610928858, 17.54279090333078, 20.917102906427964, 80.3432979672314, 5.599786808184003, 12.980685103283498, 32.63406483999226, 54.37742158308202, 29.43426738469755, 24.29401079286906, 88.92514649362373, 10.623852589751687, 37.07062700861995, 29.548306757798542, 52.16772282301092, 13.30869047675714, 129.91911420315932, 22.84169670698691, 59.539163748273666, 16.9967525877515, 14.530390017743876, 16.26685138765764, 55.36471899294649, 7.558987499654548, 8.121083860796164, 8.41771495858136, 19.68259601629717, 54.579286294712716, 23.176996815432375, 38.55504269446149, 22.947353753878396, 19.887154336114456, 60.44728051092511, 22.01491926548752, 145.71062303141758, 9.458060254134171, 73.00235566651695, 29.911464284949236, 67.52301096129429, 23.70705011718118, 124.08797357198188, 96.19828193512981, 26.413267383668558, 65.97339962929811, 80.24395159973875, 19.05922323006666, 104.69694574890116, 7.058179546116608, 21.213555346914703, 18.407060625882092, 45.72681287776315, 16.499111644915427, 73.55583146504917, 29.403759220982636, 6.35240848990909, 44.64897297789888, 65.88464247663049, 70.60586560668817, 13.93630529960231, 21.05355317099088, 38.27100091379364, 50.35653542836188, 23.041771058913813, 5.257505901094219, 60.84751858878776, 18.998439655791735, 84.33646561708021, 33.57408588547965, 38.123951330328104, 21.038530600633557, 20.159167871273553, 9.907945377951933, 10.957345014733004, 16.672247365486566, 98.92546305108739, 43.95305946611868, 81.91044943625198, 164.07766624548873, 18.18103747325735, 57.64029081459046, 25.56225155733286, 18.068739431775153, 37.09754112104362, 7.589587259192109, 30.118898088017353, 46.61876633812291, 31.48485529627471, 5.367070167882682, 12.1369447410938, 29.861689022859537, 39.38183171946335, 69.42980143902206, 55.829848332523454, 31.35358745956858, 86.89280804827085, 19.691385394056493, 16.40994542844536, 5.195500028736764, 24.00534830808289, 39.81844102618858, 6.444052083522953, 20.21809109088388, 53.258188563236914, 71.10339629580814, 37.518587601422986, 7.674368466936815, 135.03349132676402, 13.487375001348996, 94.34011304847667, 38.81580403771446, 7.216673903360971, 21.070962519045636, 10.960749761722006, 58.654230009996425, 54.339759786127445, 11.981826165485208, 28.019033305894027, 11.710311629861499, 7.462149913316386, 16.88781934188392, 12.773955462963196, 77.34679568302093, 14.285669373316388, 36.61409974664659, 107.67717257676625, 5.084338298955595, 98.9984234880811, 27.9153166345419, 114.05461543764923, 8.3655767043708, 5.332871909525309, 6.2837504160607365, 62.640774106044184, 46.88880785195399, 12.178300404482103, 65.92452693527099, 49.6304754094861, 72.16511453603304, 97.44693851171846, 41.882278433000145, 73.95351958535929, 42.76255536730095, 18.906855519312966, 80.60194061957196, 61.27744698359586, 15.798231718248726, 61.874539428279036, 6.546273545050202, 10.370345511397629, 38.6103044151739, 62.709610817702924, 13.383111134672973, 60.523596189043325, 41.16023963032438, 9.585220917196247, 94.60281129688032, 146.39567357346138, 70.03266130554755, 79.00819087928488, 14.009532434864608, 55.93318667739581, 53.05326506184073, 50.24991189189475, 56.60255886906332, 36.24063098079495, 63.13653702597056, 27.846066206705327, 116.13844607114223, 56.60351608486112, 34.90874244061522, 42.49776144986112, 49.7558087177792, 108.23017912012968, 13.889863586491762, 10.28046121961691, 19.92432383464471, 26.618884391683245, 10.84393718574374, 77.60223892928164, 84.09734266376267, 38.54904211023025, 66.95515860434689, 7.757902280383967, 75.65090548061248, 20.94741778781112, 110.93113876288214, 60.51762110017529, 56.88271237292504, 117.45849181441385, 37.26661390989972, 39.764963091775996, 11.223688973026743, 46.49398922323557, 11.470532204666384, 14.03691806023702, 22.953856545728655, 18.50979256034886, 13.921252058082425, 14.097922507731237, 137.11486238719658, 8.083477081337179, 57.56135627327026, 36.169986307337346, 22.071231346754374, 52.19650564795748, 25.175112238404356, 5.5779445161871, 12.387915980256432, 8.843557562287293, 6.797947924517763, 7.777055726521536, 16.20219306405849, 38.16122291527816, 10.680414139396792, 48.17241917059853, 152.90545876788417, 25.438973986242445, 9.045940746345291, 139.2596093019319, 20.45442191837978, 32.89104609945191, 9.84281721665855, 68.32036446254784, 145.1852120732916, 24.911241501376978, 24.043690643370272, 20.901758603075834, 7.069772244830988, 52.339974871857606, 58.7782913637673, 63.11493382319384, 9.551973474210953, 148.47534557480375, 62.79553620799756, 89.03433534171339, 14.350837351612627, 19.265759233447678, 6.253458321014656, 9.044805176527621, 59.73543129368252, 45.86377993712252, 30.849888584584264, 39.86677717052043, 23.018918691685393, 11.27204948183869, 20.48217999683693, 74.10496371594247, 20.200392955620078, 9.198511447639627, 11.695623664859593, 83.01175323895262, 146.4286596973172, 8.18397874636806, 19.560324850391947, 44.835008743671885, 43.22655382487975, 130.37412340470186, 11.713015766553013, 15.446904128196548, 18.106013268641227, 5.667605050523327, 36.74550802463674, 29.947143306699907, 114.90373370018324, 32.02438885323614, 42.23862817855156, 37.96743125385173, 26.888197202194473, 70.88252028724457, 14.872960915602517, 15.414938856602134, 42.782060161949865, 18.69573237288096, 6.303480855250324, 153.21719595093856, 15.501707981468414, 17.544765770451967, 76.39328219110537, 8.630805078877955, 100.24935491130867, 31.875423154248907, 108.08496342997609, 62.299207856493275, 241.13631069167647, 5.127080421458797, 165.67370607744257, 26.648111912645717, 7.374097946683528, 19.796525312880274, 63.99993330593902, 23.275578604130725, 72.57171792211213, 6.111191637237053, 331.6343001153147, 20.876128413892943, 28.652552932405115, 72.03424150466873, 11.340789072258199, 6.486929007458947, 11.212780898624256, 155.88390084738714, 86.1816878449873, 22.300448044611443, 15.643361678096609, 6.731164313470411, 5.445467112155325, 80.58707893129912, 21.163779972794885, 53.468628044343646, 64.44582799540828, 45.586855178835556, 61.63961898441181, 11.806729024948588, 141.82640096834396, 14.429116799322287, 43.24561835805436, 12.967424355304969, 5.3578801837458405, 39.73375828853486, 20.070943838373385, 16.047063744731844, 50.16841306571211, 88.62110804377676, 183.39164033156194, 40.75384638126714, 41.48165786009598, 14.147619996694479, 95.21598822229687, 96.00518860614976, 31.054656520875753, 131.37190345798808, 14.445327164999982, 12.108267408870073, 6.515093407597435, 77.99356225036519, 29.56195470964795, 10.58608771668174, 26.514998067931426, 7.36117221965387, 7.663729763565319, 23.775005088408324, 45.982698167699525, 25.012852729516553, 82.62195652213481, 33.35261528659967, 37.75928000469315, 10.989296219886, 28.378962587663136, 5.426486721862678, 61.98921196867564, 5.298753693494707, 56.91804967848192, 7.081862878150075, 26.84946684463042, 21.925742376294895, 23.34679777631788, 37.923303511373454, 33.478698067794774, 11.244409711210576, 70.6086499802471, 17.33318855958434, 73.74283202238303, 157.00163752728227, 5.094814334730522, 97.13651699660723, 9.643806245170566, 22.120205485332725, 6.204467210032645, 89.01282567438797, 55.93424009773726, 46.28393802472342, 52.17452466321696, 94.64021136833168, 69.43714488539598, 43.572812547658344, 42.407661097044866, 60.08630360018091, 89.26733811530923, 16.943723642827184, 10.129662942562524, 103.0673230547625, 61.958320460272496, 18.53180280978697, 5.700652113524098, 11.369276255746895, 65.26704501430588, 11.676455729312604, 24.081717712333695, 46.73716133953048, 119.18851227412101, 5.764976470492696, 55.79849976402981, 70.6899110376417, 15.434830956071298, 64.84779648894184, 44.59933642335147, 6.228066719048221, 69.91238296627253, 20.922714012341117, 5.443169983486832, 46.16974241106114, 52.445160448054025, 7.210304896642111, 10.99357950547662, 192.43665623154058, 16.007785881551996, 84.6277478535871, 14.406952858514384, 11.332185026254683, 80.81576470255735, 30.776201410803093, 20.111514383532597, 7.856893726281638, 12.307811128720582, 45.777576937220516, 37.025295682064915, 74.09533999538264, 25.882058661156073, 10.529110010040602, 17.296662429519785, 7.099869030815495, 5.342180367404113, 13.699098437998922, 32.742027620994186, 8.112200721041871, 6.2850954061059285, 29.962058222979017, 29.49909901910175, 64.60474706316073, 71.8298116377732, 74.0424564989337, 19.170687238178285, 14.937053563215631, 17.32823230372541, 22.387451818676702, 23.814976754415596, 34.38768073967115, 33.90985964908642, 108.24146174162631, 48.81469154166166, 114.310565881343, 81.53174133249638, 16.063276179011055, 35.64846154454753, 11.692860287501702, 14.7160961829034, 31.399614630996748, 25.8718472326709, 114.84376866984077, 112.57306601264749, 46.08435203202709, 26.29936739505226, 53.68714316483488, 68.41980161008696, 5.462431512058524, 153.04336345238647, 94.60542947282833, 43.265078693567936, 5.891259835011494, 31.628595709068545, 28.34751128052608, 19.620869687173656, 47.795440867623796, 9.534239869010623, 73.0089958211715, 65.9696064270327, 27.158498050411357, 56.86807279935538, 63.4154223640373, 79.90509933988966, 14.40462735418184, 16.033418483144658, 18.65882382559042, 13.733514920712302, 5.513032448003802, 32.438271184780305, 15.830346977821511, 184.9969729532116, 12.15944021948123, 7.2683058117577115, 41.95565449109161, 42.643714281103136, 20.256699001769437, 16.16260304273675, 61.430504980940704, 61.87562466665797, 13.68075243404285, 83.13964030722826, 39.96481900974785, 43.01503658192549, 30.141149304404813, 14.472075069902639, 33.24821140594966, 24.961703691460034, 29.542381422224928, 41.4192406890514, 11.201664174245549, 119.66637317039122, 69.23131389983826, 15.305728553643668, 59.40984894896275, 20.999337038162647, 20.10017139643901, 8.617930122937103, 18.63044985129138, 48.16825642754469, 13.237571979786335, 23.037578120148382, 58.06439300481491, 11.533612437112952, 33.35859372415914, 31.525943488718756, 6.190528275045828, 109.68985403892601, 23.163636416180957, 94.96209364034085, 44.72757810766937, 64.07451186244256, 22.055183886416124, 37.11474604164498, 71.11100845482972, 6.97676121969123, 128.02928652159216, 90.12752826466594, 22.47262672092608, 26.313394610909576, 25.40724056386911, 56.13635731969624, 25.013669309972986, 54.89734263314447, 62.33679825805532, 91.83557694093811, 165.7074456930843, 5.061451594974926, 104.11039952551008, 50.134254773869145, 155.31552780885937, 31.593061069663552, 67.52834571662059, 13.877187212199754, 25.437116851478315, 99.51162387140693, 11.158308047413403, 19.21636095909841, 88.2911656804673, 15.689379191146154, 18.412494760818475, 66.729455249181, 12.404416500920092, 21.67022526575822, 6.497222975314084, 7.984387231346752, 41.956317631002676, 7.916230505614929, 34.727806165504184, 13.913105492461812, 110.23922888018998, 132.93253010533937, 19.457291175128155, 43.18841059633314, 44.15823650836958, 5.7057695525926215, 15.054964302717616, 31.028545489391163, 31.08004434264189, 56.19421425010817, 11.478187979872402, 119.96607022141329, 23.28284216296869, 16.042432007957533, 100.93599374028032, 11.010907125561816, 243.05223793603724, 47.10757991026819, 17.81015609132988, 92.18944869872746, 9.848526480749129, 119.49983300477732, 68.39104089311665, 38.313811471786565, 85.05903101054899, 78.80693950114515, 7.477985655319407, 83.81701800696825, 51.473643770394254, 10.240040284666666, 28.741660006538595, 78.1428585333575, 75.01073939264208, 58.61518368017931, 69.88243484331193, 23.66491697223006, 40.62132901962547, 29.515012162398016, 20.258225270118942, 6.158637792623242, 39.88625783379512, 15.84170330898828, 24.381148844967527, 34.51783977969025, 24.56538604014689, 102.74148777274121, 47.25836290107633, 50.75845673010096, 48.87175305115267, 52.207047350700755, 85.68915920670467, 14.694328400607912, 278.10211644129424, 44.817671362826765, 95.67596235335449, 23.73461125525122, 95.83129414168405, 25.89503459707191, 6.260492775775646, 122.28529681373234, 26.871596098528876, 113.18467973493445, 5.315838533022492, 92.3171080421082, 89.55184272223997, 96.68929113578804, 13.395546005086564, 34.02225214123159, 13.609945189925309, 132.78083013063343, 44.46334381548145, 13.334579833740024, 150.0326015548162, 6.176286561636805, 94.80096775991849, 73.26503327230198, 11.075185403972956, 6.934801036921708, 26.877819830458293, 20.401641304521743, 9.271964318446038, 86.05750688279868, 27.430872245206647, 24.021987775478397, 46.32416421055433, 7.218341337366522, 9.162769401256764, 38.932320142403334, 21.092884068883887, ...])
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);
([3611921.402445991, 3619839.0625, 3631026.5625, 3631307.8125, 3640932.654653905, 3646286.356708505, 3648406.760720507, 3656579.6875, 3656594.5041843983, 3721768.75, 3725897.781680102, 3778460.9324928867, 3782935.480923759, 3786082.711290125, 3807943.85556092, 3811514.0625, 3826607.8125, 3833407.8125, 3840696.875, 3847996.79069228, 3849920.0227957657, 3861815.625, 3882828.125, 3883488.807500243, 3885388.6119166245, 3895874.1348303794, 3907209.375, 3941134.000704244, 3949775.7507522544, 3953463.255780966, 3962398.6703411434, 3972096.2659427226, 3972405.5933072944, 4006746.5690999147, 4010931.25, 4019012.5, 4024815.7123979633, 4060503.5150610805, 4074788.0017309375, 4075784.375, 4075912.1707507293, 4079890.625, 4083619.4679915486, 4086519.959484263, 4096300.0, 4106820.500029123, 4127354.2887683464, 4129352.7495293156, 4133855.644784807, 4133873.095886456, 4136646.875, 4144082.5381152877, 4152356.25, 4175965.368941643, 4180825.3391369455, 4183131.498799552, 4203493.239387068, 4206609.91106594, 4209087.5, 4212896.84695349, 4215892.1875, 4217062.574011618, 4228944.085293272, 4276298.138775715, 4306595.4276844505, 4306917.1875, 4307963.76036478, 4312301.501575258, 4317742.186243045, 4325125.0, 4331168.504897756, 4331358.950245641, 4331967.659788532, 4334213.578504277, 4341566.4413070455, 4341574.848320846, 4345070.201464299, 4351981.860505835, 4356068.533077549, 4357410.113222245, 4358204.4535357, 4358899.641594051, 4361334.220059468, 4362594.131386898, 4372473.4375, 4373591.78903121, 4378298.162602172, 4392074.155966706, 4397217.922844516, 4398951.311356443, 4398988.386010285, 4402814.0625, 4415425.34920648, 4422507.836618628, 4427536.234804838, 4443743.32403334, 4445831.25, 4446314.0625, 4449455.768522461, 4457614.247336353, 4461684.145314424, 4461773.9777238015, 4466595.253617167, 4471556.1859038435, 4474471.875, 4476123.4375, 4476126.798102359, 4488865.5540505955, 4488993.75, 4499890.382363065, 4500132.121482733, 4502318.469501992, 4504576.449900735, 4510731.107739175, 4516000.9423442595, 4535962.5, 4555431.823973118, 4558759.375, 4563592.1875, 4577162.620124114, 4625940.7730969535, 4637659.375, 4647454.6875, 4652961.26724928, 4653337.634016626, 4654819.611003896, 4683135.821638694, 4701848.4375, 4701875.894517317, 4718571.875, 4727437.980155757, 4735053.129089185, 4738146.187618206, 4742617.1875, 4745204.327927562, 4755750.8773551695, 4764415.425389601, 4767698.8741054, 4769752.927707848, 4769887.24039278, 4774760.9375, 4775912.5, 4781541.746954893, 4784596.257053094, 4788920.60968335, 4793486.024080085, 4797479.6875, 4827223.139265316, 4832459.375, 4834314.74303239, 4835313.09156403, 4835335.931575301, 4842309.375, 4847915.625, 4856296.7191102095, 4857449.072737494, 4860985.822322622, 4862277.843289926, 4864904.6875, 4865901.298056413, 4870145.675087104, 4877388.914994417, 4879611.175874022, 4885788.424208416, 4886079.101855824, 4890523.878236919, 4892260.6770707285, 4893593.735679541, 4902645.045606738, 4904854.980823894, 4905232.8125, 4908476.450000991, 4912615.551421635, 4916057.749953929, 4916101.994893071, 4917770.594684863, 4919673.226649312, 4919911.393720101, 4925250.0, 4928986.477683148, 4928994.828438245, 4941022.671626819, 4941082.547592644, 4941319.669777535, 4944822.257982018, 4945970.116033093, 4946433.399191171, 4946911.014217088, 4949487.38783019, 4956057.713149162, 4962361.436807105, 4964931.113857449, 4964973.4375, 4966370.3125, 4966915.616335916, 4967834.295807439, 4968970.932628788, 4971250.0, 4972260.484483496, 4974715.68104356, 4980623.045425158, 4981498.4375, 4983811.599339467, 4984064.0625, 4984238.463272247, 4984862.5, 4990929.998647869, 4991140.625, 4993134.306097994, 4993290.625, 4994184.897921672, 4996620.805441531, 5003408.3741112575, 5005228.125, 5005554.066063254, 5005847.112173967, 5007184.375, 5007190.2059136545, 5007932.922801992, 5008969.23942492, 5009740.906050537, 5013873.494879314, 5014367.172715367, 5016861.14009095, 5017867.951571009, 5018139.0625, 5030684.375, 5032204.6875, 5039254.203580185, 5039279.916254503, 5043351.759579211, 5048107.8125, 5049746.875, 5051631.198145451, 5051826.18149008, 5054742.1875, 5057240.565832056, 5058065.466236949, 5067463.206838273, 5067467.706164959, 5073054.55211592, 5074281.455162822, 5078199.053272366, 5078273.4375, 5097090.135546148, 5097108.5157008115, 5097328.650554898, 5101641.324201928, 5101815.5520549035, 5102998.332044668, 5104943.768271419, 5105090.050049748, 5105668.308413685, 5105861.960691976, 5106041.108555739, 5106133.080936195, 5106818.75, 5106895.267488625, 5107239.0625, 5107293.971371912, 5119421.668277604, 5120040.625, 5121220.3125, 5121400.494988159, 5122387.2439798955, 5123697.362027762, 5124210.797961144, 5124815.444252915, 5124939.0625, 5126851.37767456, 5127226.374473227, 5127309.533201251, 5131723.477151619, 5133047.154381858, 5137018.288365148, 5138040.12958856, 5139918.75, 5139936.3217354575, 5146003.527733291, 5150256.53200161, 5151686.426435724, 5153425.224415297, 5156217.033668395, 5158113.135237494, 5161715.71801452, 5162225.0, 5163217.1875, 5166014.323660346, 5168053.2551443465, 5170302.223244019, 5170332.46681849, 5171241.791258984, 5171979.457688733, 5175720.266442119, 5179523.4375, 5180147.0823708745, 5184498.4375, 5185937.439322748, 5188642.120713623, 5188840.441307129, 5188882.902391732, 5192100.545394811, 5194153.5804991145, 5198333.935388979, 5202532.261863482, 5206765.40269803, 5206793.75, 5207547.628012462, 5212147.475397062, 5214517.161027727, 5215392.1875, 5216763.555065545, 5217828.284108066, 5219963.427062806, 5223081.25, 5223121.875, 5233329.742067123, 5241312.079889602, 5264075.392929951, 5276758.449238235, 5282318.1428740695, 5284501.907024225, 5285742.094888963, 5289440.5554778995, 5296230.764113085, 5311866.923950005, 5313200.0, 5313469.266967834, 5330715.625, 5334119.672738288, 5334356.25, 5349240.830030489, 5366475.0, 5369101.19773211, 5378609.267659963, 5428222.750058661, 5439839.294200987, 5439851.245323483, 5440763.343155735, 5450780.745282642, 5492250.0, 5564013.302247412, 5572596.232284325, 5671673.4375, 5673066.612877785, 5963745.616951394, 6030523.255615529, 6056787.202510469, 6056797.217588163, 6063520.337258337, 6070603.383698455, 6079418.406910422, 6226742.1875, 6226817.498171361, 6285752.452078693, 6320210.557948157, 6329680.235548492, 6331261.189350302, 6332195.3125, 6344040.364378186, 6346882.1813609665, 6348539.0625, 6350845.3125, 6375465.916995034, 6383043.538994644, 6409771.424614806, 6410888.714317791, 6411105.653615593, 6411351.758782665, 6411604.445321085, 6412283.868650739, 6412621.8742199, 6413405.8753382545, 6413748.036688664, 6421011.389182401, 6438554.575287985, 6443839.371591305, 6455343.75, 6457853.000974821, 6459243.423365111, 6460353.365015189, 6461069.46398655, 6462525.0, 6462555.903715777, 6462567.755818025, 6465595.173225474, 6467761.822386065, 6473683.573162261, 6510083.703151263, 6515704.004371079, 6517445.458587117, 6518096.3764813505, 6520767.1875, 6522567.1875, 6526777.8215718325, 6527821.639248014, 6527829.6875, 6527977.920987432, 6530268.778632738, 6530303.125, 6530809.712216426, 6530959.375, 6533738.816206909, 6534091.659012789, 6536638.185288837, 6538245.3125, 6542267.543821376, 6543809.3882101085, 6543828.125, 6543860.020930095, 6554972.212997191, 6563193.75, 6564362.829292796, 6568030.958658166, 6569527.579778945, 6570557.334654989, 6579738.546861396, 6580053.107092973, 6588517.623214024, 6591307.660703661, 6592419.519872842, 6594235.706147406, 6597029.164486849, 6598240.625, 6599468.203191344, 6601883.73000636, 6603167.798792097, 6605801.450703378, 6606170.702871467, 6607665.395936671, 6610579.6875, 6611076.5625, 6617459.296259548, 6619047.526052442, 6620579.6875, 6622550.283766634, 6622750.633623252, 6622862.311219232, 6625231.212100227, 6627960.9375, 6630718.213232001, 6630763.5478100665, 6630831.966004981, 6632527.12464106, 6634191.359460067, 6634402.365257232, 6634897.71390708, 6636345.3125, 6636715.683436039, 6637223.884231659, 6637227.97630146, 6638823.775904343, 6638907.498689697, 6640624.356470364, 6643607.8125, 6646079.407336905, 6647385.7855191985, 6650560.9375, 6652026.724938182, 6654638.194722742, 6654792.379975282, 6656950.0, 6660865.182867256, 6661725.0, 6661770.3125, 6664600.350265739, 6667110.394115218, 6669351.452993989, 6675378.125, 6684357.8125, 6685116.110393011, 6686140.598925857, 6689489.405783365, 6694179.279805772, 6697354.849645185, 6697541.472726093, 6697788.179051811, 6698044.125211377, 6699835.636578477, 6700386.773321731, 6701333.644151208, 6702152.812058301, 6702985.905945279, 6703225.496247419, 6704995.458959932, 6705046.608500602, 6705054.817395523, 6705151.5625, 6705407.8125, 6705642.769589959, 6706342.1875, 6706464.0625, 6708473.4375, 6710583.488834656, 6712126.5625, 6715896.875, 6727389.837760579, 6727400.556023098, 6727948.4375, 6729210.9375, 6730736.145470495, 6735537.191792473, 6742120.679926862, 6747744.767146546, 6750028.076749699, 6757654.6875, 6757858.895704644, 6760287.5, 6773936.745203456, 6784295.598162659, 6784344.515508367, 6807788.550174449, 6808021.875, 6808882.8125, 6809465.356926676, 6810570.3125, 6814325.0, 6816962.5, 6819060.112186947, 6827292.9978335835, 6827829.923811362, 6827840.589759037, 6829182.8125, 6830242.1875, 6836420.285166568, 6844030.505452546, 6846606.25, 6848567.1875, 6849015.318716086, 6850260.318198168, 6850691.305292608, 6851157.708134777, 6852129.498036442, 6858898.4375, 6860056.690110121, 6861192.168588294, 6862120.3125, 6863506.6582947, 6869634.375, 6871011.943500921, 6876332.8125, 6876583.721413253, 6886523.4375, 6887100.832144835, 6888432.8125, 6889682.8125, 6892170.373050647, 6892815.658555211, 6894484.583789382, 6894982.553038422, 6895441.140348984, 6895479.501351088, 6895743.453830821, 6896084.598036372, 6896306.193722959, 6896487.095117388, 6896773.4375, 6897523.4375, 6898038.679047449, 6898520.3035383485, 6898968.553886951, 6899382.140995237, 6900831.930051317, 6901324.360599983, 6901926.732601604, 6902022.331302989, 6902747.170614041, 6902774.195651325, 6902871.568659759, 6903041.25912308, 6903159.375, 6903956.071592187, 6905405.89193369, 6905951.5625, 6906955.639167551, 6906993.701853792, 6909695.861151871, 6910648.4375, 6911168.75, 6916152.79070074, 6916945.035093002, 6918609.397775217, 6919048.23718584, 6920226.5625, 6920320.3125, 6921386.941274134, 6923117.437326331, 6926544.038169936, 6926734.29556397, 6927246.875, 6927851.398389844, 6929763.305908002, 6931060.827968425, 6932743.3904226, 6932865.625, 6934442.1875, 6939460.9375, 6940526.5625, 6941564.522937611, 6941867.2779240925, 6945257.239251013, 6946290.625, 6947794.672352523, 6950634.21353955, 6952001.897796768, 6953276.5625, 6956873.00656398, 6957527.92581107, 6960513.344150435, 6960920.3125, 6965324.571251117, 6966850.732379633, 6968242.576976267, 6968273.887196508, 6968813.443046429, 6969624.3667063685, 6969889.0625, 6969915.105978711, 6970510.9375, 6970537.5, 6971151.309919989, 6971731.25, 6971995.223948855, 6973025.0, 6975229.669398493, 6977509.4939018, 6977646.875, 6979322.689978586, 6979951.844378159, 6981843.75, 6983053.264600491, 6983591.239805796, 6989334.375, 6995541.22376234, 7006345.3125, 7006542.1822859775, 7007008.70287078, 7011110.9375, 7012501.385557649, 7014315.464200827, 7022398.4375, 7024517.618112914, 7024768.068673685, 7025158.686262752, 7025848.4375, 7029312.1618679315, 7037726.5625, 7045214.28167202, 7045617.080205055, 7053377.274220569, 7057489.0625, 7057585.2088979, 7059668.882176302, 7065932.811465062, 7066320.36625439, 7071678.125, 7071718.75, 7074579.314970095, 7074815.797709193, 7079657.648311066, 7084563.677165967, 7086635.438611088, 7087366.653841126, 7087818.75, 7088299.878136657, 7088448.4375, 7091598.4375, 7092570.707430687, 7092655.024537719, 7093774.858742875, 7094153.125, 7094571.238616431, 7094652.020943688, 7095118.3401817065, 7095468.094549974, 7095903.3876723, 7095921.875, 7095989.19007124, 7096163.769634542, 7096167.553072452, 7096192.1875, 7096201.337360052, 7096370.3125, 7096559.375, 7096559.542589261, 7096592.281197336, 7097004.55093112, 7097045.860683207, 7097173.613836412, 7097540.969599426, 7097827.80128009, 7097924.623459201, 7098115.514431912, 7098566.464664482, 7098570.476711008, 7098995.832314393, 7099004.6875, 7099265.417774885, 7099540.3589829095, 7099559.375, 7099937.5, 7099945.222106952, 7099951.555078403, 7099969.463929353, 7099973.434395337, 7100036.1837135535, 7100539.190797464, 7102757.659726013, 7104318.659197898, 7108596.417303556, 7110346.542704748, 7116293.75, 7117737.5, 7117907.885901556, 7121284.213625756, 7121488.012014943, 7125928.125, 7126482.066883272, 7126931.064072801, 7127353.449678725, 7127984.722717249, 7128418.310647569, 7128915.111811227, 7130378.610407142, 7131921.838215503, 7132812.5, 7134589.018371729, 7134870.3125, 7136370.24876805, 7137273.4375, 7138798.1019822145, 7139357.8125, 7139623.278512474, 7140880.129379032, 7140971.126481267, 7143345.3125, 7149375.0, 7151114.766217012, 7151921.778630349, 7152779.83674012, 7153556.25, 7153580.012326108, 7159223.162976591, 7161904.6875, 7166733.538724439, 7166949.3149920665, 7170607.8125, 7173316.656789726, 7175495.436175635, 7176668.75, 7176935.1090090955, 7178271.558866936, 7180262.5, 7181043.190855172, 7181665.1844471805, 7184924.479063608, 7184940.625, 7185314.390062286, 7187421.787460635, 7190356.25, 7193647.129192711, 7194285.250431847, 7201504.539808353, 7203068.876995155, 7207139.0625, 7207303.125, 7208022.786872955, 7208036.588290751, 7208041.268223481, 7208792.383470862, 7208860.9375, 7208990.004938203, 7209371.725347833, 7209441.76751863, 7209506.7556163445, 7209956.167254842, 7210001.570047309, 7210096.505784638, 7210750.0, 7210788.717522733, 7210825.140353665, 7211096.404846623, 7211454.6875, 7211535.16525629, 7211725.567001335, 7212212.5, 7212360.168240937, 7212449.890583337, 7212641.1361488225, 7213019.855867151, 7213605.236298622, 7214014.950353721, 7214934.375, 7216750.0, 7216954.122160199, 7219176.44341391, 7220420.3125, 7220729.707863006, 7221134.368195608, 7221222.82381531, 7222235.877075873, 7222567.1875, 7223013.912198444, 7224076.779217567, 7226970.3125, 7228645.3125, 7229181.1263696905, 7236062.5, 7241395.3125, 7246950.015483768, 7247353.125, 7247406.816914986, 7248099.634331996, 7250108.805029252, 7252090.625, 7253114.053470805, 7254063.351828139, 7254266.5677605, 7260493.980524382, 7261421.875, 7262496.875, 7262528.80237478, 7264343.766508011, 7264830.2790905535, 7267139.0625, 7267432.369079198, 7276629.947232918, 7283274.159651986, 7284262.142327181, 7284924.5798814995, 7286334.375, 7286934.590163646, 7288667.1875, 7288691.198018456, 7289052.093175824, 7289098.4375, 7290442.1875, 7292546.241430958, 7296150.287289226, 7299100.0, 7305382.8125, 7306549.624597045, 7307293.538834145, 7310006.25, 7310725.0, 7313172.979270195, 7314027.99613417, 7314275.0, 7316313.851735786, 7319894.823806458, 7320759.375, 7323601.6093059145, 7330604.205950592, 7331354.491631637, 7333050.09238434, 7334839.0625, 7334872.91513089, 7335186.654803864, 7337591.203100352, 7338021.015759792, 7340292.1875, 7359719.779874542, 7359724.95513618, 7365484.375, 7370200.2450402, 7371936.218932896, 7376834.375, 7380725.930564841, 7382222.401263254, 7384544.965104379, 7384757.8125, 7384771.293813356, 7387172.577553013, 7388635.492058786, 7389627.105922156, 7390740.374364228, 7391741.60691042, 7392378.125, 7392555.507937192, 7394518.562535228, 7395184.2522272095, 7396740.441928597, 7397115.625, 7397764.764723074, 7398506.25, 7399381.25, 7400456.25, 7400756.089849678, 7402801.148898797, 7404167.274134818, 7404759.375, 7405429.436869318, 7407161.311921239, 7409563.399116376, 7418105.939612339, 7418359.19646912, 7418360.092897001, 7418518.769489906, 7418600.654923458, 7418642.1875, 7418797.058287064, 7418816.311098427, 7419154.6875, 7419158.500046521, 7419429.205074508, 7419965.689329673, 7420010.318717306, 7420098.896700825, 7420169.539717365, 7420665.625, 7420749.701212014, 7420846.875, 7420979.6875, 7421338.3309433665, 7421726.5625, 7421739.0625, 7421870.296957465, 7421940.09342487, 7422145.724311239, 7422530.950496912, 7422652.2072343035, 7422711.15072313, 7422873.4375, 7423129.349965231, 7424028.885738911, 7424356.666619536, 7424478.04896756, 7424817.808526484, 7424903.125, 7425094.342385168, 7425218.75, 7425233.366702231, 7425368.060929131, 7426235.842768034, 7426395.3125, 7427621.39270634, 7427879.070538341, 7428591.827389905, 7428796.20707882, 7428804.6875, 7429266.534209615, 7430221.047244618, 7430449.186608068, 7430555.843074132, 7430780.992382302, 7430890.287364064, 7431253.247363959, 7431432.8125, 7431548.916354129, 7431824.36660863, 7431858.464555846, 7432329.6875, 7432337.717697617, 7432407.560300166, 7432437.5, 7432566.948707243, 7432715.625, 7432845.3125, 7432847.105499056, 7432926.5625, 7432981.81316234, 7433092.384095705, 7433226.496101568, 7433432.163662783, 7433665.266833496, 7433915.625, 7434016.886236159, 7434053.61899665, 7434127.946809241, 7434248.384240441, 7434386.363043858, 7434440.214885382, 7434495.3125, 7435857.031040798, 7435956.441712551, 7435957.016377344, 7438194.871443658, 7443476.087681713, 7448532.559279022, 7449248.037986155, 7449318.75, 7449327.539076331, 7450413.565612975, 7451103.000010424, 7454086.744880806, 7455450.818119243, 7458214.0625, 7460118.214360475, 7460703.926445154, 7461071.785846494, 7463065.008152951, 7464998.366357884, 7469827.50318498, 7471290.567194408, 7472787.220942282, 7473165.625, 7473683.168693027, 7473688.856096476, 7474097.716459755, 7474121.333921993, ...], [46.1300655131842, 41.94225864650429, 58.61739380333566, 51.03258809874633, 5.802392596794045, 16.822778072560972, 5.359732180834503, 69.67013318867023, 6.924031832973426, 68.00039406476614, 31.965120344625916, 88.37503672876367, 10.48191137977814, 52.30334254043629, 44.200515375926145, 42.948598977681414, 31.876903293367047, 54.5390770667804, 54.89710515672695, 80.62598647761565, 23.883152764770557, 59.795096593991936, 48.45046940605741, 14.051167864192088, 74.06272568499335, 7.8765508858775455, 44.879681097185724, 52.64121761328784, 5.570661150555237, 6.924394182259209, 5.6270566621005, 13.036968448200605, 20.06052429270686, 13.891050944443668, 63.01124275909513, 89.89961116523303, 13.340044486339986, 16.670646873572437, 12.014328349075008, 77.58352034838344, 7.488342030000226, 31.006611116854785, 62.581991003672286, 5.194520479921447, 45.8261426294351, 7.1716356138389905, 64.90744643619469, 66.29711344982019, 41.77569672860499, 10.632665212578452, 46.856207852908454, 10.724301419932589, 60.62070116361878, 9.12388630574157, 6.541601330397636, 15.982941303415696, 6.409920258941485, 9.829914667955682, 43.518578561377424, 59.832030160402454, 28.96492666500433, 15.231315932685517, 5.728434501543371, 43.669856258460584, 15.399498340255787, 30.44855722348689, 10.686154770044737, 8.254619950264516, 5.61397460629581, 104.85891628152194, 14.082927665515493, 36.548485348786, 11.955954707603638, 8.953148170308843, 12.698825775850379, 10.898619924610509, 14.534534379449559, 36.8496401237077, 24.873302096322295, 27.55664549413237, 60.141380427507556, 31.674491948398614, 33.914434753785265, 7.225450341139222, 34.39796217170501, 13.612991982840756, 88.25262303740006, 52.39201401243608, 12.511254615133408, 10.75660383757496, 5.373227221803818, 35.43457285475218, 31.31212926226866, 24.44494886482105, 24.60661785339739, 49.44885314815832, 63.12825597146136, 66.10987910884639, 21.679883240836617, 9.492740846005224, 70.47223021069283, 56.59148633494505, 5.934294004924737, 21.732082651061486, 51.99157079553155, 77.26762826240054, 15.922589774884887, 48.96148026151906, 52.5684478224012, 50.71112134342631, 8.80829928654882, 13.9702929157212, 7.092163996313496, 14.425653097714788, 8.856845482246346, 49.40514218006765, 7.82492109423321, 96.72611244528694, 41.42944899968946, 11.320807217156167, 6.103636597749334, 30.873908243335396, 55.560471944302705, 16.36733914959279, 6.102147533280632, 12.806112884238201, 9.235320371019755, 71.67839835874088, 7.962332065086285, 36.37154491798456, 17.153333034400735, 12.176566807501686, 5.57711564811683, 110.3546403773008, 38.404878633043644, 19.75617302863417, 132.98051682892435, 43.045022688589455, 25.157774181326303, 7.054840983118519, 71.82349940700723, 52.218494951778524, 5.9019369422912495, 156.86724576405965, 123.15289102441626, 15.282110740600388, 35.938883667612274, 6.23023981218926, 51.29921321534874, 18.37521890776525, 6.58400262487818, 6.762324324338668, 130.4851272716587, 60.67230818166916, 25.78437239851753, 25.79614155688016, 37.37614219654848, 41.27895839053001, 70.77602430201947, 61.34458542923214, 39.227697134294075, 45.37563255036677, 45.723350537934884, 26.29419476873438, 8.880872550652954, 16.937574533258733, 33.920660609022114, 14.887206028818762, 32.57309902607629, 46.71599349646658, 58.36474484826993, 26.48285619174906, 14.668288323609936, 40.12648615271897, 20.21820225088623, 77.81096129761265, 44.70348795480791, 17.021449505600494, 54.84101666628983, 78.4942569636511, 13.369910124775327, 5.6596899364553375, 6.060977704577003, 83.29645562939734, 11.784199236296107, 25.16990592556188, 23.791216513644862, 13.455209999757479, 14.530538657169068, 26.703579997634154, 12.009489002138926, 26.09671132493648, 69.14701592168507, 81.98841250565505, 15.034963514844174, 27.050661622248555, 17.98303670314282, 52.70528431524167, 79.06365174779165, 5.343845764637944, 22.64179354798825, 33.58493044945364, 50.0247882833726, 70.56914260367938, 52.71383235185324, 118.21540917072701, 16.276779944641405, 57.42705975124252, 52.477101045468714, 31.110574319728872, 22.62036206746518, 25.09221864452428, 47.251237310160825, 83.62576921929028, 13.00532495303318, 22.855163544621213, 118.05881257688878, 22.34010538816702, 16.03312651955393, 6.331079493102117, 16.932154911771363, 5.53587183647549, 98.25885069695906, 11.459856812683634, 25.986122373256876, 61.16475796845365, 101.3433774747709, 43.0153750987507, 21.65502256703197, 6.5235585275358705, 63.76401740627394, 91.36009556421874, 33.091560841397666, 89.51614546365886, 10.580177571040638, 60.85610382101356, 56.52188741525514, 6.071743410764763, 30.425783165906772, 12.048309331158556, 26.108889452958376, 15.785744941361942, 37.23143983330949, 97.24339681625304, 21.59895276593462, 72.78817166077842, 6.1445123716310155, 42.644587254824565, 6.749030503310368, 14.554240994422454, 32.69344897693368, 20.776653373658053, 47.18964682625263, 10.377814083820574, 17.17228942308119, 27.564748960857727, 82.2135043739301, 5.2022766783864505, 47.473932980725266, 14.410193462449321, 5.16057495288035, 67.42099706724545, 59.273393034202854, 6.331829929062541, 10.749798967864715, 17.19170543513104, 6.465437524422821, 10.8564709051559, 116.28848583721097, 14.280922297107777, 87.54251725414483, 20.850501885101977, 6.272221095081618, 9.579363251983663, 26.726185246215202, 155.78982888942807, 90.32202662529184, 19.81755683175733, 7.7556972668989825, 71.26654223435612, 11.9888505463006, 17.718092526999946, 43.8102163729278, 18.0790635485782, 48.42228016262108, 47.93276175022073, 110.9783426116214, 23.969672555828893, 18.929425351846213, 31.35028365246876, 10.627204656047049, 13.61949360527056, 24.690713824710517, 50.05642875158902, 32.03778142587618, 6.520097304097015, 32.29374895614118, 5.6106961254459184, 72.89194183455274, 75.19663960578629, 39.19013954801731, 17.527124463069, 25.0260333325554, 22.1174343240666, 21.00242050112816, 59.01422690077669, 38.574918736856866, 7.334540652283108, 20.139930492068963, 28.01146819583684, 38.354776826809214, 138.61167365135464, 13.092552289231605, 47.98884020325966, 65.51504906736456, 50.16146467567387, 11.214083525599493, 23.5038490449343, 16.68545589121251, 5.650268758407463, 27.060641233868523, 8.477576724879599, 68.93484742263433, 5.808854071431462, 61.14479859683319, 38.5227812290377, 44.1442920500612, 5.98572713223724, 35.39742940694675, 12.634925726450923, 29.182535821661606, 35.38743508488366, 67.63533238094581, 28.53980271197612, 12.740394732970223, 22.455427316343794, 13.769697054384018, 23.741269072438964, 36.51042557394899, 23.8043443750893, 98.40756329399844, 12.665637765913887, 75.10505888871968, 71.06896771418945, 7.407837603436843, 99.1802437744941, 10.85483268065471, 23.78286247778901, 8.476451807770804, 45.89495228951143, 118.25463544630016, 9.057225311259986, 41.182597036670316, 25.412678713657773, 18.537784548268466, 31.015411610928858, 17.54279090333078, 20.917102906427964, 80.3432979672314, 5.599786808184003, 12.980685103283498, 32.63406483999226, 54.37742158308202, 29.43426738469755, 24.29401079286906, 88.92514649362373, 10.623852589751687, 37.07062700861995, 29.548306757798542, 52.16772282301092, 13.30869047675714, 129.91911420315932, 22.84169670698691, 59.539163748273666, 16.9967525877515, 14.530390017743876, 16.26685138765764, 55.36471899294649, 7.558987499654548, 8.121083860796164, 8.41771495858136, 19.68259601629717, 54.579286294712716, 23.176996815432375, 38.55504269446149, 22.947353753878396, 19.887154336114456, 60.44728051092511, 22.01491926548752, 145.71062303141758, 9.458060254134171, 73.00235566651695, 29.911464284949236, 67.52301096129429, 23.70705011718118, 124.08797357198188, 96.19828193512981, 26.413267383668558, 65.97339962929811, 80.24395159973875, 19.05922323006666, 104.69694574890116, 7.058179546116608, 21.213555346914703, 18.407060625882092, 45.72681287776315, 16.499111644915427, 73.55583146504917, 29.403759220982636, 6.35240848990909, 44.64897297789888, 65.88464247663049, 70.60586560668817, 13.93630529960231, 21.05355317099088, 38.27100091379364, 50.35653542836188, 23.041771058913813, 5.257505901094219, 60.84751858878776, 18.998439655791735, 84.33646561708021, 33.57408588547965, 38.123951330328104, 21.038530600633557, 20.159167871273553, 9.907945377951933, 10.957345014733004, 16.672247365486566, 98.92546305108739, 43.95305946611868, 81.91044943625198, 164.07766624548873, 18.18103747325735, 57.64029081459046, 25.56225155733286, 18.068739431775153, 37.09754112104362, 7.589587259192109, 30.118898088017353, 46.61876633812291, 31.48485529627471, 5.367070167882682, 12.1369447410938, 29.861689022859537, 39.38183171946335, 69.42980143902206, 55.829848332523454, 31.35358745956858, 86.89280804827085, 19.691385394056493, 16.40994542844536, 5.195500028736764, 24.00534830808289, 39.81844102618858, 6.444052083522953, 20.21809109088388, 53.258188563236914, 71.10339629580814, 37.518587601422986, 7.674368466936815, 135.03349132676402, 13.487375001348996, 94.34011304847667, 38.81580403771446, 7.216673903360971, 21.070962519045636, 10.960749761722006, 58.654230009996425, 54.339759786127445, 11.981826165485208, 28.019033305894027, 11.710311629861499, 7.462149913316386, 16.88781934188392, 12.773955462963196, 77.34679568302093, 14.285669373316388, 36.61409974664659, 107.67717257676625, 5.084338298955595, 98.9984234880811, 27.9153166345419, 114.05461543764923, 8.3655767043708, 5.332871909525309, 6.2837504160607365, 62.640774106044184, 46.88880785195399, 12.178300404482103, 65.92452693527099, 49.6304754094861, 72.16511453603304, 97.44693851171846, 41.882278433000145, 73.95351958535929, 42.76255536730095, 18.906855519312966, 80.60194061957196, 61.27744698359586, 15.798231718248726, 61.874539428279036, 6.546273545050202, 10.370345511397629, 38.6103044151739, 62.709610817702924, 13.383111134672973, 60.523596189043325, 41.16023963032438, 9.585220917196247, 94.60281129688032, 146.39567357346138, 70.03266130554755, 79.00819087928488, 14.009532434864608, 55.93318667739581, 53.05326506184073, 50.24991189189475, 56.60255886906332, 36.24063098079495, 63.13653702597056, 27.846066206705327, 116.13844607114223, 56.60351608486112, 34.90874244061522, 42.49776144986112, 49.7558087177792, 108.23017912012968, 13.889863586491762, 10.28046121961691, 19.92432383464471, 26.618884391683245, 10.84393718574374, 77.60223892928164, 84.09734266376267, 38.54904211023025, 66.95515860434689, 7.757902280383967, 75.65090548061248, 20.94741778781112, 110.93113876288214, 60.51762110017529, 56.88271237292504, 117.45849181441385, 37.26661390989972, 39.764963091775996, 11.223688973026743, 46.49398922323557, 11.470532204666384, 14.03691806023702, 22.953856545728655, 18.50979256034886, 13.921252058082425, 14.097922507731237, 137.11486238719658, 8.083477081337179, 57.56135627327026, 36.169986307337346, 22.071231346754374, 52.19650564795748, 25.175112238404356, 5.5779445161871, 12.387915980256432, 8.843557562287293, 6.797947924517763, 7.777055726521536, 16.20219306405849, 38.16122291527816, 10.680414139396792, 48.17241917059853, 152.90545876788417, 25.438973986242445, 9.045940746345291, 139.2596093019319, 20.45442191837978, 32.89104609945191, 9.84281721665855, 68.32036446254784, 145.1852120732916, 24.911241501376978, 24.043690643370272, 20.901758603075834, 7.069772244830988, 52.339974871857606, 58.7782913637673, 63.11493382319384, 9.551973474210953, 148.47534557480375, 62.79553620799756, 89.03433534171339, 14.350837351612627, 19.265759233447678, 6.253458321014656, 9.044805176527621, 59.73543129368252, 45.86377993712252, 30.849888584584264, 39.86677717052043, 23.018918691685393, 11.27204948183869, 20.48217999683693, 74.10496371594247, 20.200392955620078, 9.198511447639627, 11.695623664859593, 83.01175323895262, 146.4286596973172, 8.18397874636806, 19.560324850391947, 44.835008743671885, 43.22655382487975, 130.37412340470186, 11.713015766553013, 15.446904128196548, 18.106013268641227, 5.667605050523327, 36.74550802463674, 29.947143306699907, 114.90373370018324, 32.02438885323614, 42.23862817855156, 37.96743125385173, 26.888197202194473, 70.88252028724457, 14.872960915602517, 15.414938856602134, 42.782060161949865, 18.69573237288096, 6.303480855250324, 153.21719595093856, 15.501707981468414, 17.544765770451967, 76.39328219110537, 8.630805078877955, 100.24935491130867, 31.875423154248907, 108.08496342997609, 62.299207856493275, 241.13631069167647, 5.127080421458797, 165.67370607744257, 26.648111912645717, 7.374097946683528, 19.796525312880274, 63.99993330593902, 23.275578604130725, 72.57171792211213, 6.111191637237053, 331.6343001153147, 20.876128413892943, 28.652552932405115, 72.03424150466873, 11.340789072258199, 6.486929007458947, 11.212780898624256, 155.88390084738714, 86.1816878449873, 22.300448044611443, 15.643361678096609, 6.731164313470411, 5.445467112155325, 80.58707893129912, 21.163779972794885, 53.468628044343646, 64.44582799540828, 45.586855178835556, 61.63961898441181, 11.806729024948588, 141.82640096834396, 14.429116799322287, 43.24561835805436, 12.967424355304969, 5.3578801837458405, 39.73375828853486, 20.070943838373385, 16.047063744731844, 50.16841306571211, 88.62110804377676, 183.39164033156194, 40.75384638126714, 41.48165786009598, 14.147619996694479, 95.21598822229687, 96.00518860614976, 31.054656520875753, 131.37190345798808, 14.445327164999982, 12.108267408870073, 6.515093407597435, 77.99356225036519, 29.56195470964795, 10.58608771668174, 26.514998067931426, 7.36117221965387, 7.663729763565319, 23.775005088408324, 45.982698167699525, 25.012852729516553, 82.62195652213481, 33.35261528659967, 37.75928000469315, 10.989296219886, 28.378962587663136, 5.426486721862678, 61.98921196867564, 5.298753693494707, 56.91804967848192, 7.081862878150075, 26.84946684463042, 21.925742376294895, 23.34679777631788, 37.923303511373454, 33.478698067794774, 11.244409711210576, 70.6086499802471, 17.33318855958434, 73.74283202238303, 157.00163752728227, 5.094814334730522, 97.13651699660723, 9.643806245170566, 22.120205485332725, 6.204467210032645, 89.01282567438797, 55.93424009773726, 46.28393802472342, 52.17452466321696, 94.64021136833168, 69.43714488539598, 43.572812547658344, 42.407661097044866, 60.08630360018091, 89.26733811530923, 16.943723642827184, 10.129662942562524, 103.0673230547625, 61.958320460272496, 18.53180280978697, 5.700652113524098, 11.369276255746895, 65.26704501430588, 11.676455729312604, 24.081717712333695, 46.73716133953048, 119.18851227412101, 5.764976470492696, 55.79849976402981, 70.6899110376417, 15.434830956071298, 64.84779648894184, 44.59933642335147, 6.228066719048221, 69.91238296627253, 20.922714012341117, 5.443169983486832, 46.16974241106114, 52.445160448054025, 7.210304896642111, 10.99357950547662, 192.43665623154058, 16.007785881551996, 84.6277478535871, 14.406952858514384, 11.332185026254683, 80.81576470255735, 30.776201410803093, 20.111514383532597, 7.856893726281638, 12.307811128720582, 45.777576937220516, 37.025295682064915, 74.09533999538264, 25.882058661156073, 10.529110010040602, 17.296662429519785, 7.099869030815495, 5.342180367404113, 13.699098437998922, 32.742027620994186, 8.112200721041871, 6.2850954061059285, 29.962058222979017, 29.49909901910175, 64.60474706316073, 71.8298116377732, 74.0424564989337, 19.170687238178285, 14.937053563215631, 17.32823230372541, 22.387451818676702, 23.814976754415596, 34.38768073967115, 33.90985964908642, 108.24146174162631, 48.81469154166166, 114.310565881343, 81.53174133249638, 16.063276179011055, 35.64846154454753, 11.692860287501702, 14.7160961829034, 31.399614630996748, 25.8718472326709, 114.84376866984077, 112.57306601264749, 46.08435203202709, 26.29936739505226, 53.68714316483488, 68.41980161008696, 5.462431512058524, 153.04336345238647, 94.60542947282833, 43.265078693567936, 5.891259835011494, 31.628595709068545, 28.34751128052608, 19.620869687173656, 47.795440867623796, 9.534239869010623, 73.0089958211715, 65.9696064270327, 27.158498050411357, 56.86807279935538, 63.4154223640373, 79.90509933988966, 14.40462735418184, 16.033418483144658, 18.65882382559042, 13.733514920712302, 5.513032448003802, 32.438271184780305, 15.830346977821511, 184.9969729532116, 12.15944021948123, 7.2683058117577115, 41.95565449109161, 42.643714281103136, 20.256699001769437, 16.16260304273675, 61.430504980940704, 61.87562466665797, 13.68075243404285, 83.13964030722826, 39.96481900974785, 43.01503658192549, 30.141149304404813, 14.472075069902639, 33.24821140594966, 24.961703691460034, 29.542381422224928, 41.4192406890514, 11.201664174245549, 119.66637317039122, 69.23131389983826, 15.305728553643668, 59.40984894896275, 20.999337038162647, 20.10017139643901, 8.617930122937103, 18.63044985129138, 48.16825642754469, 13.237571979786335, 23.037578120148382, 58.06439300481491, 11.533612437112952, 33.35859372415914, 31.525943488718756, 6.190528275045828, 109.68985403892601, 23.163636416180957, 94.96209364034085, 44.72757810766937, 64.07451186244256, 22.055183886416124, 37.11474604164498, 71.11100845482972, 6.97676121969123, 128.02928652159216, 90.12752826466594, 22.47262672092608, 26.313394610909576, 25.40724056386911, 56.13635731969624, 25.013669309972986, 54.89734263314447, 62.33679825805532, 91.83557694093811, 165.7074456930843, 5.061451594974926, 104.11039952551008, 50.134254773869145, 155.31552780885937, 31.593061069663552, 67.52834571662059, 13.877187212199754, 25.437116851478315, 99.51162387140693, 11.158308047413403, 19.21636095909841, 88.2911656804673, 15.689379191146154, 18.412494760818475, 66.729455249181, 12.404416500920092, 21.67022526575822, 6.497222975314084, 7.984387231346752, 41.956317631002676, 7.916230505614929, 34.727806165504184, 13.913105492461812, 110.23922888018998, 132.93253010533937, 19.457291175128155, 43.18841059633314, 44.15823650836958, 5.7057695525926215, 15.054964302717616, 31.028545489391163, 31.08004434264189, 56.19421425010817, 11.478187979872402, 119.96607022141329, 23.28284216296869, 16.042432007957533, 100.93599374028032, 11.010907125561816, 243.05223793603724, 47.10757991026819, 17.81015609132988, 92.18944869872746, 9.848526480749129, 119.49983300477732, 68.39104089311665, 38.313811471786565, 85.05903101054899, 78.80693950114515, 7.477985655319407, 83.81701800696825, 51.473643770394254, 10.240040284666666, 28.741660006538595, 78.1428585333575, 75.01073939264208, 58.61518368017931, 69.88243484331193, 23.66491697223006, 40.62132901962547, 29.515012162398016, 20.258225270118942, 6.158637792623242, 39.88625783379512, 15.84170330898828, 24.381148844967527, 34.51783977969025, 24.56538604014689, 102.74148777274121, 47.25836290107633, 50.75845673010096, 48.87175305115267, 52.207047350700755, 85.68915920670467, 14.694328400607912, 278.10211644129424, 44.817671362826765, 95.67596235335449, 23.73461125525122, 95.83129414168405, 25.89503459707191, 6.260492775775646, 122.28529681373234, 26.871596098528876, 113.18467973493445, 5.315838533022492, 92.3171080421082, 89.55184272223997, 96.68929113578804, 13.395546005086564, 34.02225214123159, 13.609945189925309, 132.78083013063343, 44.46334381548145, 13.334579833740024, 150.0326015548162, 6.176286561636805, 94.80096775991849, 73.26503327230198, 11.075185403972956, 6.934801036921708, 26.877819830458293, 20.401641304521743, 9.271964318446038, 86.05750688279868, 27.430872245206647, 24.021987775478397, 46.32416421055433, 7.218341337366522, 9.162769401256764, 38.932320142403334, 21.092884068883887, ...])
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)