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 = 44920
shot = shot_no
identifier='H03-W0051_shot_'+str(shot)+'_450V'
detector = 'H03-W0051'
ds = np.DataSource('/tmp') # temporary storage for downloaded files
scalars_URL = 'http://golem.fjfi.cvut.cz/shots/{shot_no}/Diagnostics/PlasmaDetection/Results/{name}'
def get_scalar(shot_no, name):
return float(ds.open(scalars_URL.format(shot_no=shot_no, name=name)).read())
t_plasma_start = get_scalar(shot_no, 't_plasma_start')
t_plasma_end = get_scalar(shot_no, 't_plasma_end')
is_plasma = get_scalar(shot_no, 'b_plasma')
def get_file(shot, identifier):
#Pick the discharge to analyse
URL = 'http://golem.fjfi.cvut.cz/shots/{shot}/Diagnostics/TimepixDetector/H03/{identifier}.t3pa'
url = URL.format(shot=shot, identifier=identifier)
try:
file_name_t3pa=url
with urllib.request.urlopen(file_name_t3pa) as ft3pa:
line = ft3pa.readline()
line = line.decode('utf‐8')
ft3pa.close
except HTTPError:
print('File not found at %s. Aborting notebook execution.' % url)
raise StopExecution
return file_name_t3pa
def get_file_calib(name_calib):
#Pick the discharge to analyse
URL = 'http://golem.fjfi.cvut.cz/shots/{shot}/Diagnostics/TimepixDetector/calib_matrix_H03/{name_calib}.txt'
url = URL.format(shot=shot, name_calib=name_calib)
#print(url)
try:
file_calib=url
with urllib.request.urlopen(file_calib) as calib:
line = calib.readline()
line = line.decode('utf‐8')
calib.close
except HTTPError:
print('File not found at %s. Aborting notebook execution.' % url)
raise StopExecution
return file_calib
def load_calib(file_calib):
with urllib.request.urlopen(file_calib) as fc:
calib=[] #vytvoreni 1D pole
for i in range(0,256): #tj. rozsah 0-255
temp = [] # docasne pole
for j in range(0,256):
temp.append(0) #naplneni docasneho pole 0
calib.append(temp) #naplneni pole a[] docasnym polem temp
for i in range(0,256): #nacteni calib matice do pole calib
line = fc.readline()
line = line.decode('utf‐8')
word=line.strip().split(' ')
for j in range(0,256):
#calib[i][j]=float(word[j]) #i = radek, j = sloupec0
calib[j][i]=float(word[j]) #j = radek, i = sloupec0 - pouze pro stavajici kalibraci - verze XV
fc.close
return calib
def load_t3pa_file(file_t3pa):
index=[]
matrix_index=[]
ToA=[]
ToT=[]
FToA=[]
overflow=[]
pocet_udalosti = 0
with urllib.request.urlopen(file_t3pa) as ft3pa:
line = ft3pa.readline()
line = line.decode('utf‐8')
while True:
line = ft3pa.readline()
line = line.decode('utf‐8')
word=line.strip().split('\t') #v t3pa souboru je oddelovac \t
if line == '':
break
index.append(word[0])
matrix_index.append(word[1])
ToA.append(float(word[2]))
ToT.append(float(word[3]))
FToA.append(float(word[4]))
overflow.append(float(word[5]))
pocet_udalosti = pocet_udalosti + 1
ft3pa.close
return index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti
def noise(index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti): #tuto fci nemus9m explicitn2 volat - volam ji v fci load_t3pa
pocet=int(0) #pocet sumicich pixelu
konst=int(len(index)/1000)+1
noise_matrix_index=[]
for i in range(0,konst):
pom = [] # pomocne pole
k=0 #pomocna promenna - udava, kolik je v czklu ve skutecnosti udalosti - aby nebyla chyba 'list index out of range'
for j in range(0,1001):
if i*1000+j>=len(index):
break
pom.append(matrix_index[i*1000+j])
k=k+1
for m in range(0,k):
count=int(0) #pocet vvyskytu stejneho matrix index behem 1000 udalosti
index_=int(-1) #budu testovat, jestli pixel na ktery koukam je sumici (abych ho nezapocital 2x)
for p in range(0,pocet):
#index=int(p)
if pom[m]==noise_matrix_index[p]:
index_=p #pixel na ktery jsem uz koukal a byl sumici
break
if index_ >=0 and pom[m]==noise_matrix_index[index_]:
continue
for l in range(0,k):
if pom[m]==pom[l]:
count=count+1
####podminka na sumici pixely
if count>=50: #kdyz se pixel vyskytne behem tisice udalosti vicekrat nez toto cislo, je sumici
noise_matrix_index.append(pom[m])
#noise_matrix_index[pocet]=pom[i]
pocet=pocet+1
pom.clear()
pocet_udalosti=len(index)
for n in range (0,pocet_udalosti):
for o in range(0,len(noise_matrix_index)):
if n >=pocet_udalosti:
break
if(matrix_index[n]==noise_matrix_index[o]):
del matrix_index[n]
del index[n]
del ToA[n]
del ToT[n]
del FToA[n]
del overflow[n]
pocet_udalosti=pocet_udalosti-1
continue
return pocet_udalosti,index, matrix_index, ToA, ToT, FToA, overflow
def t3pa_data(pocet_udalosti,index, matrix_index, ToA, ToT, FToA, overflow):
#rovnou vyhodim sumici pixely
pocet_udalosti,index, matrix_index, ToA, ToT, FToA, overflow=noise(index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti)
RowNo=[]
ClmNo=[]
for i in range(0,len(matrix_index)):
#RowNo.append(int(int(matrix_index[i]))//int(256))
#ClmNo.append(int(int(matrix_index[i]))%int(256))
ClmNo.append(int(int(matrix_index[i]))//int(256)) #ver XV - bude pro novou kalibraci - nyn9 to bere 3patnou kalibraci jednotlivych pixelu (cislovani radku a sloupcu stejne jako v pixetu)
RowNo.append(int(int(matrix_index[i]))%int(256)) ##ver XV - bude super pro novou kalibraci - odpovida radkum a sloupcum v pixetu. Nyni bere spatne kalibrace pixelu (viz fce load_calib)
return index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti, RowNo, ClmNo
def hit_map(detector,hit_map_fig,RowNo,ClmNo):
plt.hist2d(RowNo,ClmNo,bins=(256,256),cmap='Blues')
cb=plt.colorbar()
cb.set_label('Counts in pixel')
plt.xlabel('x [pixel]')
plt.ylabel('y [pixel]')
plt.title(detector)
plt.savefig(hit_map_fig, dpi = 1000)
return
def energy(a, b, c, t, ToT, pocet_udalosti, RowNo, ClmNo):
E=[] #energy in keV
#for i in range (0,pocet_udalosti):
pom=0
for i in range (0,len(ToT)):
Sqrt=float(0.0)
e1=float(0.0)
e2=float(0.0)
# promenna sqrt je vnitrek odmocniny
Sqrt = (((float(b[RowNo[i]][ClmNo[i]])+float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]])-float(ToT[i])))*(((float(b[RowNo[i]][ClmNo[i]])+float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]])-float(ToT[i])))) + (float(4)*float(a[RowNo[i]][ClmNo[i]])*float(c[RowNo[i]][ClmNo[i]]))) #zmena oproti verzi VI
if float(Sqrt)<float(0):
E.append(float(0))
else:
'''
V kalibracni matici a se obcas vyskytne 0 -> ve vypoctu energie
je tim padem deleni nulou -> energie diverguje. Jak to vyresit?
zatim polozim energii = 0 (kdyz a=0), pak se uvidi
nakonec udelam limitu vyrazu energie pro a->0 (L'hopital)
'''
if a[RowNo[i]][ClmNo[i]]==0:
e1=((float(t[RowNo[i]][ClmNo[i]]))/float(2)) + ((((float(b[RowNo[i]][ClmNo[i]])+float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]])-float(ToT[i]))*(float(t[RowNo[i]][ClmNo[i]]))) - 2*(float(c[RowNo[i]][ClmNo[i]])))/(float(2)*np.sqrt(float(Sqrt))))
e2=((float(t[RowNo[i]][ClmNo[i]]))/float(2)) - ((((float(b[RowNo[i]][ClmNo[i]])+float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]])-float(ToT[i]))*(float(t[RowNo[i]][ClmNo[i]]))) - 2*(float(c[RowNo[i]][ClmNo[i]])))/(float(2)*np.sqrt(float(Sqrt))))
else:
e1=((-(float(b[RowNo[i]][ClmNo[i]]) - (float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]]))-float(ToT[i])))+np.sqrt(float(Sqrt)))/(float(2)*float(a[RowNo[i]][ClmNo[i]]))
e2=((-(float(b[RowNo[i]][ClmNo[i]]) - (float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]]))-float(ToT[i])))-np.sqrt(float(Sqrt)))/(float(2)*float(a[RowNo[i]][ClmNo[i]]))
if a[RowNo[i]][ClmNo[i]]<0:
e1=-1
e2=-1
if math.isnan(e1):
e1=-1
if math.isnan(e2):
e2=-1
if e1<0 and e2<0:
E.append(float(0))
if e1>=0 and e1>e2:
E.append(float(e1))
if e2>=0 and e2>e1:
E.append(float(e2))
if e1>=0 and e2==e1:
E.append(float(e1))
return E
def Time(ToA, FToA, pocet_udalosti, RowNo, ClmNo):
T=[] #time in ns
for i in range (0,pocet_udalosti):
Time=float(0.0)
Time=(float(ToA[i])-((float(FToA[i])/float(16))))*float(25)
T.append(float(Time))
return T
def Timewalk_parameters_Si():
#SI - korekce na TimeWalk - parametry
A = -1.21988
B = 4.33638
C = 29.5075
D = 1
sigma_A=0.7013
sigma_B=0.1366
sigma_C=4.753
sigma_D=0
return A, B, C, D, sigma_A, sigma_B, sigma_C, sigma_D
def Timewalk(E,T):
i=0
A, B, C, D, sigma_A, sigma_B, sigma_C, sigma_D = Timewalk_parameters_Si()
while i < len(T):
timewalk=float(0)
timewalk = (C / (E[i] - B)) + A
if(timewalk<0):
timewalk=0
T[i]=T[i]-timewalk
i=i+1
return E,T
def remove_interactions_with_zero_energy(index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T):
i=0
treshold=5.015347
while i < len(T):
if E[i]<treshold: #E[i] < energy treshold
index.pop(i)
matrix_index.pop(i)
ToA.pop(i)
ToT.pop(i)
FToA.pop(i)
overflow.pop(i)
RowNo.pop(i)
ClmNo.pop(i)
E.pop(i)
T.pop(i)
continue
i=i+1
return index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T
def clustering_new(index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T):
dT=float(50)
indexCl, TCl,ECl, matrix_indexCl, ToACl,ToTCl,FToACl,RowNoCl,ClmNoCl,overflowCl=[],[],[],[],[],[],[],[],[],[]
StartLastElem=len(T)-1
indexCl.append(int(index[StartLastElem]))
TCl.append(float(T[StartLastElem]))
ECl.append(float(E[StartLastElem]))
matrix_indexCl.append(int(matrix_index[StartLastElem]))
RowNoCl.append(int(RowNo[StartLastElem]))
ClmNoCl.append(int(ClmNo[StartLastElem]))
ToACl.append(float(ToA[StartLastElem]))
ToTCl.append(float(ToT[StartLastElem]))
FToACl.append(float(FToA[StartLastElem]))
overflowCl.append(float(overflow[StartLastElem]))
del index[StartLastElem]
del T[StartLastElem]
del E[StartLastElem]
del matrix_index[StartLastElem]
del RowNo[StartLastElem]
del ClmNo[StartLastElem]
del ToA[StartLastElem]
del ToT[StartLastElem]
del FToA[StartLastElem]
del overflow[StartLastElem]
j=1
pom=float(TCl[0]+dT)
while(j >0):
if(len(T) == 0):
break
k=0
j=0
while (k<=(len(TCl)-1)):
i=len(T)-1
if(len(T) == 0):
break
pocet_sousedu=0 #pocet sousednich pixelu - mohou byt maximalne 4
delka=0
# verze X
count=0 #pomocna promanna, kterou urcuji, ze se ma nasledujici cyklus while projit jeste jednou, pokud je i = -1
while(float(T[i])<=(pom)):
delka=delka+1
if(((((int(RowNoCl[k]))==(int(RowNo[i])+1))or((int(RowNoCl[k]))==(int(RowNo[i])-1))) and ((int(ClmNoCl[k]))==(int(ClmNo[i])))) or (((int(RowNoCl[k]))==(int(RowNo[i]))) and (((int(ClmNoCl[k]))==(int(ClmNo[i])+1))or((int(ClmNoCl[k]))==(int(ClmNo[i])-1))))):
#beru jen pixely, které mají společnou jednu stranu.
#pixely, kter0 spolu sousedí přes roh neuvažuji
indexCl.append(int(index[i]))
TCl.append(float(T[i]))
ECl.append(float(E[i]))
matrix_indexCl.append(int(matrix_index[i]))
RowNoCl.append(int(RowNo[i]))
ClmNoCl.append(int(ClmNo[i]))
ToACl.append(float(ToA[i]))
ToTCl.append(float(ToT[i]))
FToACl.append(float(FToA[i]))
overflowCl.append(float(overflow[i]))
# Removes i-th Row
del index[i]
del T[i]
del E[i]
del matrix_index[i]
del RowNo[i]
del ClmNo[i]
del ToA[i]
del ToT[i]
del FToA[i]
del overflow[i]
j=j+1
i=len(T)-1
pocet_sousedu=pocet_sousedu+1
if(len(T) == 0):
break
if(pocet_sousedu==4):
break
continue
i=i-1
if(i==-1): # verze X
count=count+1
if(i<0 and len(T)>0): # verze X
i=0
if(count>1):
break
if(i>=len(T)):
break
k=k+1
if(len(TCl)>2):
indexCl, TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl = insertionSort(indexCl, TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl)
return T, indexCl,TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl
def insertionSort(indexCl, TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl):
# Function to do insertion sort
# Traverse through 1 to len(arr)
for i in range(1, len(TCl)):
key = TCl[i]
# Move elements of arr[0..i-1], that are
# greater than key, to one position ahead
# of their current position
#ostatni
key1 = indexCl[i]
key2 = ECl[i]
key3 = matrix_indexCl[i]
key4 = RowNoCl[i]
key5 = ClmNoCl[i]
key6 = ToACl[i]
key7 = ToTCl[i]
key8 = FToACl[i]
key9 = overflowCl[i]
j = i-1
while j >= 0 and key < TCl[j] :
TCl[j + 1] = TCl[j]
#ostatni
indexCl[j + 1] = indexCl[j]
ECl[j + 1] = ECl[j]
matrix_indexCl[j + 1] = matrix_indexCl[j]
RowNoCl[j + 1] = RowNoCl[j]
ClmNoCl[j + 1] = ClmNoCl[j]
ToACl[j + 1] = ToACl[j]
ToTCl[j + 1] = ToTCl[j]
FToACl[j + 1] = FToACl[j]
overflowCl[j + 1] = overflowCl[j]
j -= 1
TCl[j + 1] = key
#ostatni
indexCl[j + 1] = key1
ECl[j + 1] = key2
matrix_indexCl[j + 1] = key3
RowNoCl[j + 1] =key4
ClmNoCl[j + 1] = key5
ToACl[j + 1] = key6
ToTCl[j + 1] = key7
FToACl[j + 1] = key8
overflowCl [j + 1] = key9
return indexCl, TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl
def file_t3pa_cls_new(file_t3pa_cls,T):
with open(file_t3pa_cls, "w", encoding="utf-8") as t3pa_cls:
t3pa_cls.write('%\n')
t3pa_cls.write('% Index Matrix Index [ RowNo, ClmNo ] ToA FToA ( ToA_in_ns ) ToT ( ToT_in_keV ) Overflow\n')
t3pa_cls.write('\n')
i=1
T_first=[]
E_tot=[]
N_tot=[]
eventNo=0 #for high_energy_event function
while(len(T) > 0):
T, indexCl,TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl = clustering_new(index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T)
Tfirst=float(TCl[0])
Tlast=float(TCl[len(TCl)-1])
dT=Tlast-Tfirst
Etot=float(0)
for k in range(0,len(TCl)):
Etot=Etot+float(ECl[k])
T_first.append(float(Tfirst))
dT=Tlast-Tfirst
E_tot.append(float(Etot))
N_tot.append(len(TCl)) #new in ver. XV
t3pa_cls.write('# '+str(i)+', Nunmasked = '+str(len(TCl))+', Nmasked = 0, Ntot = '+str(len(TCl))+'\n')
t3pa_cls.write('# Tfirst = '+str(Tfirst)+' ns, Tlast = '+str(Tlast)+' ns, dT = '+str(dT)+' ns, Etot = '+str(Etot)+' keV\n')
for j in range(0,len(TCl)):
t3pa_cls.write(str(indexCl[j])+' '+str(matrix_indexCl[j])+' [ '+str(RowNoCl[j])+', '+str(ClmNoCl[j])+' ] '+str(ToACl[j])+' '+str(FToACl[j])+' ( '+str(TCl[j])+' ns ) '+str(ToTCl[j])+' ( '+str(ECl[j])+' keV ) '+str(overflowCl[j])+'\n')
t3pa_cls.write('\n')
#eventNo=single_interaction(eventNo,Etot, Tfirst, ECl, TCl, RowNoCl, ClmNoCl,path)
i=i+1
t3pa_cls.close
return T_first, E_tot, N_tot
def energy_spectrum_in_time(Tfirst, Etot): #dela histogram - energie zaznamenana v case
pom = 0
dt=100 #(ns) time width of 1 bin
T_first=0 #cas, kdy prisel trigger a yacalo mereni
T_last=(max(Tfirst)) #posledni z Tfirst
Delta_T = T_last - T_first
poc = int(int(Delta_T) / float(dt)) + 1 #pocet casovych oken
T_int_first=[] #cas
E=[] #energie
for i in range(0,poc):
T_int_first.append((i*dt) + dt/2)
E.append(0)
#XII
for j in range(0,len(Tfirst)):
time_index=0
time_index=int(((Tfirst[j]-T_first)/dt))
if float(Tfirst[j]-T_first) >= (T_int_first[time_index] - dt / 2) and float(Tfirst[j]-T_first) < (T_int_first[time_index] + dt / 2):
E[time_index]=float(E[time_index])+float(Etot[j])
pom=pom+1
for l in range(0,len(T_int_first)):
T_int_first[l]=T_int_first[l]+T_first
caption, T_int_first = energy_in_time_hist(T_int_first, E, figure_E_in_time_hist, t_plasma_start, t_plasma_end, is_plasma, dt)
return dt, caption, T_int_first, E
def energy_in_time_hist(T_int_first, E,figure_E_in_time_hist, t_plasma_start, t_plasma_end, is_plasma, dt):
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(figsize =(10, 7))
for k in range(0,len(T_int_first)):
T_int_first[k] = T_int_first[k] / 1000000
plt.plot(T_int_first, E, drawstyle='steps-mid')
plt.title(detector+', #'+str(shot_no))
plt.xlabel('Time [ms]')
plt.ylabel('Energy [keV]')
if is_plasma == 1:
for t in (t_plasma_start, t_plasma_end):
plt.axvline(t, color='k', linestyle='--')
plt.xlim([0, (t_plasma_start + t_plasma_end)])
else:
plt.xlim(0,)
plt.ylim(0,) #10 000 keV
plt.savefig(figure_E_in_time_hist, dpi = 1000)
caption = '# x = time in ms, count = energy in keV, dT= '+str(dt)+' ns'
return caption, T_int_first
def hits_in_time_hist_new(T, dt, t_plasma_start, t_plasma_end, is_plasma,figure_count_in_time_hist):
pom = 0
T_first=0 #cas, kdy prisel trigger a yacalo mereni
T_last=(max(T)) #posledni z Tfirst
Delta_T = T_last - T_first
poc = int(int(Delta_T) / float(dt)) + 1 #pocet casovych oken
T_hit=[] #cas
count=[] #energie
for i in range(0,poc):
T_hit.append((i*dt) + dt/2)
count.append(0)
for j in range(0,len(T)):
time_index=0
time_index=int(((T[j]-T_first)/dt))
k=time_index
for j in range(0,len(T)):
time_index=0
time_index=int(((T[j]-T_first)/dt))
if float(T[j]-T_first) >= (T_hit[time_index] - dt / 2) and float(T[j]-T_first) < (T_hit[time_index] + dt / 2):
count[time_index] = count[time_index] + 1
pom=pom+1
for l in range(0,len(T_hit)):
T_hit[l]=T_hit[l]+T_first
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(figsize =(10, 7))
for k in range(0,len(T_hit)):
T_hit[k] = T_hit[k] / 1000000
#plt.plot(T_hit, count)
plt.plot(T_hit, count, drawstyle='steps-mid')
plt.title(detector+', #'+str(shot_no))
plt.xlabel('Time [ms]')
plt.ylabel('Count')
if is_plasma == 1:
for t in (t_plasma_start, t_plasma_end):
plt.axvline(t, color='k', linestyle='--')
plt.xlim([0, (t_plasma_start + t_plasma_end)])
else:
plt.xlim(0,)
plt.ylim(0,) #10 000 keV
plt.savefig(figure_count_in_time_hist, dpi = 1000)
caption = '# x = time in ms, dT= '+str(dt)+' ns'
return caption, T_hit,count
def energy_spectrum(Etot):
E_min=0
dE=5 #keV
E_max=max(Etot)
pocet=(E_max//dE) + 3
pocet=int(pocet)
E_max=float(dE*pocet)
xle=[]
xre=[]
xmean=[]
for p in range (0,pocet):
xle.append(E_min + (p * (E_max - E_min)) / pocet)
xre.append(xle[p]+dE)
xmean.append((xle[p] + xre[p]) / 2)
count=[]
for l in range(0,pocet):
count.append(0)
#XII
for i in range(0,len(Etot)):
E_index=int(((Etot[i]-E_min)/dE))
if ((xle[E_index] <= Etot[i]) and (Etot[i] < xre[E_index])):
count[E_index]=count[E_index]+1
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(figsize =(10, 7))
#ax.hist(Etot, bins = xle)
plt.fill_between(xmean, count,step='mid') #pre mid post
plt.plot(xmean, count, drawstyle='steps-mid')
plt.title(detector+', #'+str(shot_no))
plt.xlabel('Energy [keV]')
plt.ylabel('Count')
plt.xlim(0,)
ax.set_yscale('log') #log scale y
caption = '# x = energy in keV, dE= '+str(dE)+' keV'
plt.savefig(figure_E_hist, dpi = 1000)
return caption, xmean,count, xle, Etot
def hist_file(file_hist, xmean, count, caption ):
with open(file_hist, "w", encoding="utf-8") as hist:
hist.write('#\n')
hist.write('#'+str(caption)+'\n')
hist.write('# x_mean count\n')
hist.write('\n')
for m in range(0,len(xmean)):
hist.write(str(xmean[m])+' '+str(count[m])+'\n')
hist.close
return T_first, E_tot
def multiplot(icon_fig, x1,y1,x2,y2):
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(nrows=2,figsize =(10, 7))
ax[0].plot(x1, y1, drawstyle='steps-mid')
ax[0].set_xlabel('Time [ms]')
ax[0].set_ylabel('Energy [keV]')
if is_plasma == 1:
for t in (t_plasma_start, t_plasma_end):
ax[0].axvline(t, color='k', linestyle='--')
ax[0].set_xlim([0, (t_plasma_start + t_plasma_end)])
else:
ax[0].set_xlim(0,)
ax[0].set_ylim(0,) #keV
#ax[1].hist(y2, bins = x2)
ax[1].fill_between(x2, y2,step='mid') #pre mid post
ax[1].plot(x2, y2, drawstyle='steps-mid')
ax[1].set_xlabel('Energy [keV]')
ax[1].set_ylabel('Count')
ax[1].set_xlim(0,)
#ax[1].set_ylim(0,)
ax[1].set_yscale('log') #log scale y
fig.subplots_adjust(hspace=0.3)
plt.savefig(icon_fig, dpi = 1000)
return
def single_interaction(eventNo,Etot, Tfirst, ECl, TCl, RowNoCl, ClmNoCl,path): # ver XV
#tuto funkci volam ve funkci file_t3pa_cls_new(file_t3pa_cls,T):
#This function is calling in function file_t3pa_cls_new(file_t3pa_cls,T)
high_E = 1500 #[keV] - zadani, jaka energie je pro me vysoka
if(Etot>=high_E or len(ECl)>15):
#if (len(ECl)>15): #len(ECl) = pocet pixelu dane interakce
print("Total energy of track: "+str(Etot)+" keV\n")
A, B, C, D, sigma_A, sigma_B, sigma_C, sigma_D = Timewalk_parameters_Si()
######################
#SI - rekonstrukce z(t) - parametry
a=0.0193947
b=-0.0273934
sigma_a=0.0004163
sigma_b=0.009832
#######################
time=[]
sigma_time=[]
time_min = []
time_max=[]
z_rec=[]
z_rec_min=[]
z_rec_max=[]
sigma_z_rec=[]
for i in range(0, len(TCl)):
time.append(TCl[i] - Tfirst)
#chyba urceni casu = chyba timewalk ->
sigma_time.append(np.sqrt(((sigma_C / (pow((ECl[i] - B), D)))*(sigma_C / (pow((ECl[i] - B), D)))) + (((sigma_B*C*D) / (pow((ECl[i] - B), (D + 1))))*((sigma_B*C*D) / (pow((ECl[i] - B), (D + 1))))) + (((sigma_D*C*math.log(ECl[i] - B)) / (pow((ECl[i] - B), D)))* ((sigma_D*C*math.log(ECl[i] - B)) / (pow((ECl[i] - B), D)))) + (sigma_A*sigma_A)))
time_min.append(time[i] - sigma_time[i])
time_max.append(time[i] + sigma_time[i])
#//
#//rekonstrukce hloubky interakce
z_rec.append(a * time[i] + (b))
sigma_z_rec.append(np.sqrt(((time[i]*time[i])*(sigma_a*sigma_a)) + (sigma_b*sigma_b) + (a*a)*(sigma_time[i]*sigma_time[i])))
z_rec_min.append(z_rec[i] - sigma_z_rec[i])
z_rec_max.append(z_rec[i] + sigma_z_rec[i])
#//
single_interaction_file=str(path)+'event'+str(eventNo)+'.txt'
single_interaction_2D_fig=str(path)+'2D_event'+str(eventNo)+'.png'
single_interaction_3D_fig=str(path)+'3D_event'+str(eventNo)+'.png'
with open(single_interaction_file, "w", encoding="utf-8") as f:
f.write('#\n')
f.write('# x_mean y_mean z_rec z_rec_min z_rec_max sigma_z_rec\n')
f.write('#E_tot='+str(Etot)+'\n')
f.write('\n')
for m in range(0,len(TCl)):
#print(str(RowNoCl[m])+' '+str(ClmNoCl[m])+' '+str(z_rec[m])+' '+str(z_rec_min[m])+' '+str(z_rec_max[m])+' '+str(sigma_z_rec[m])+' '+str(ECl[m])+'\n')
f.write(str(RowNoCl[m])+' '+str(ClmNoCl[m])+' '+str(z_rec[m])+' '+str(z_rec_min[m])+' '+str(z_rec_max[m])+' '+str(sigma_z_rec[m])+' '+str(ECl[m])+'\n')
f.close
############################### plot
#binwidth=1
if ((max(RowNoCl)-min(RowNoCl))>=(max(ClmNoCl)-min(ClmNoCl))):
rang=max(RowNoCl)-min(RowNoCl)
#bins=(range((min(RowNoCl)-1), (max(RowNoCl)+3), binwidth), range((min(ClmNoCl)-1), (min(ClmNoCl)+rang+3), binwidth))
x_min=min(RowNoCl)-1
x_max=max(RowNoCl)+2
y_min=min(ClmNoCl)-1
y_max=min(ClmNoCl)+rang+2
else:
rang = max(ClmNoCl)-min(ClmNoCl)
#bins=(range((min(RowNoCl)-1), (min(RowNoCl)+rang+3), binwidth), range((min(ClmNoCl)-1), (max(ClmNoCl)+3), binwidth))
x_min=min(RowNoCl)-1
x_max=min(RowNoCl)+rang+2
y_min=min(ClmNoCl)-1
y_max=max(ClmNoCl)+2
###############$$$$$$$$$$$$$$$$$$$$
rows, cols = (x_max-x_min, x_max-x_min)
#arrECl = [[0]*cols]*rows
arrECl= [[0] * cols for _ in range(rows)]
for i in range (x_min,x_max):
for j in range (y_min,y_max):
for k in range(0,len(RowNoCl)):
if ((i==RowNoCl[k]) and (j==ClmNoCl[k])):
#print(str(i)+" "+str(j)+" "+str(RowNoCl[k])+" "+str(ClmNoCl[k])+"\n")
arrECl[i-x_min][j-y_min]=ECl[k]
arrECl=np.transpose(arrECl)
arrECl[arrECl == 0] = np.nan
#2D plot
plt.imshow(arrECl,cmap='jet', interpolation='none', origin=[(x_min-0.2),(y_min-0.2)], aspect='equal', extent=[x_min-0.2,x_max,y_min-0.2,y_max])
###############$$$$$$$$$$$$$$$$$$$$
cb=plt.colorbar(pad=0.005)
plt.tick_params(axis="x",direction="in")
plt.tick_params(axis="y",direction="in")
cb.ax.tick_params(axis='y', direction='in')
cb.set_label('Energy in pixel [keV]')
plt.xlabel('x [pixel]')
plt.ylabel('y [pixel]')
plt.title('$E_{tot}$ = '+str(round(Etot, 2))+' keV, $N_{tot}$ = '+str(len(ECl)))
plt.savefig(single_interaction_2D_fig, dpi = 1000)
plt.show()
plt.close()
############################### plot
############## 3D plot
# Creating figure
fig = plt.figure(figsize = (16, 9))
ax = plt.axes(projection ="3d")
# Add x, y gridlines
ax.grid(b = True, color ='grey', #
linestyle ='-.', linewidth = 0.3,
alpha = 0.2)
# Creating plot
sctt = ax.scatter3D(RowNoCl, ClmNoCl, z_rec,
alpha = 0.8,
c = ECl,
cmap = 'jet',
s = 4000, #size of bubbles in plot
marker ='o')
plt.title('$E_{tot}$ = '+str(round(Etot, 2))+' keV, $N_{tot}$ = '+str(len(ECl)))
ax.set_xlabel('x [pixel]', fontweight ='bold')
ax.set_ylabel('y [pixel]', fontweight ='bold')
ax.set_zlabel('z [mm]', fontweight ='bold')
cb=fig.colorbar(sctt, ax = ax, shrink = 0.5,aspect = 10,pad=0.00005) #
cb.ax.tick_params(axis='y', direction='in')
cb.set_label('Energy in pixel [keV]', fontweight ='bold')
plt.savefig(single_interaction_3D_fig, dpi = 1000)
# show plot
plt.show()
plt.close()
############## 3D plot
eventNo=eventNo+1
return eventNo
def size_of_interactions_average(Etot, Ntot,file_hist): #ver XV
E_min=0
dE=5 #keV
E_max=max(Etot)
pocet=(E_max//dE) + 3
pocet=int(pocet)
E_max=float(dE*pocet)
xle=[]
xre=[]
xmean=[]
count=[]
nop=[] #number of pixels
nop_mean=[] #mean number of pixels in dE
sigma=[] #root mean square error of the mean - stredni kvadraticka chyba prumeru
for p in range (0,pocet):
xle.append(E_min + (p * (E_max - E_min)) / pocet)
xre.append(xle[p]+dE)
xmean.append((xle[p] + xre[p]) / 2)
count.append(0)
nop.append(0)
nop_mean.append(0)
sigma.append(0)
#XII
for i in range(0,len(Etot)):
E_index=int(((Etot[i]-E_min)/dE))
if ((xle[E_index] <= Etot[i]) and (Etot[i] < xre[E_index])):
count[E_index]=count[E_index]+1
nop[E_index]=nop[E_index]+Ntot[i] #ver XV
for l in range(0,pocet):
if nop[l]!=0:
nop_mean[l]=float(nop[l])/float(count[l])
#####Computing sigma
for i in range(0,len(Etot)):
E_index=int(((Etot[i]-E_min)/dE))
if ((xle[E_index] <= Etot[i]) and (Etot[i] < xre[E_index])):
if nop_mean[E_index]!=0:
sigma[E_index]=sigma[E_index]+((float(Ntot[i])-float(nop_mean[E_index]))*(float(Ntot[i])-float(nop_mean[E_index])))
for l in range(0,pocet):
if nop[l]!=0 and count[l]>1:
sigma[l]=np.sqrt(sigma[l]/(float(count[l])*(float(count[l])-1)))
if nop[l]!=0 and count[l]==1:
sigma[l]=10
#####Computing sigma
#####write to file
with open(file_hist, "w", encoding="utf-8") as hist:
hist.write('# x_mean [keV] mean_size_of_interaction [pixel] sigma_mean_size_of_interaction\n')
for m in range(0,len(xmean)):
hist.write(str(xmean[m])+' '+str(nop_mean[m])+' '+str(sigma[m])+'\n')
hist.close
#####write to file
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(figsize =(10, 7))
#plt.fill_between(xmean, nop,step='mid',color='blue', alpha=0.3) #pre mid post
#plt.fill_between(xmean, nop,step='mid') #pre mid post
plt.plot(xmean, nop_mean, drawstyle='steps-mid')
plt.errorbar(xmean, nop_mean, yerr = sigma,fmt ='.', linewidth=0.7)
plt.title(detector+', #'+str(shot_no))
plt.xlabel('Energy [keV]')
plt.ylabel('Average size of interaction [pixel]')
plt.xlim(0,500)
plt.ylim(0,17)
#ax.set_yscale('log') #log scale y
caption = '# x = energy in keV, dE= '+str(dE)+' keV'
plt.savefig(figure_size_interaction, dpi = 1000)
return
def energy_spectra_doublebreakdown(Etot, Tfirst, file_hist):
#this function separates discharge into two parts acording to time Tsep and creates energy spectrum for each part.
#This is for discharges with double brakdown
Tsep=14636000 # [ns]
E_min=0
dE=5 #keV
E_max=max(Etot)
pocet=(E_max//dE) + 3
pocet=int(pocet)
E_max=float(dE*pocet)
xle=[]
xre=[]
xmean=[]
for p in range (0,pocet):
xle.append(E_min + (p * (E_max - E_min)) / pocet)
xre.append(xle[p]+dE)
xmean.append((xle[p] + xre[p]) / 2)
count_first=[]
count_second=[]
for l in range(0,pocet):
count_first.append(0)
count_second.append(0)
#XII
for i in range(0,len(Etot)):
E_index=int(((Etot[i]-E_min)/dE))
if ((xle[E_index] <= Etot[i]) and (Etot[i] < xre[E_index])):
if(Tfirst[i]<Tsep):
count_first[E_index]=count_first[E_index]+1
else:
count_second[E_index]=count_second[E_index]+1
caption = '# x = energy in keV, dE= '+str(dE)+' keV'
with open(file_hist, "w", encoding="utf-8") as hist:
hist.write('#\n')
hist.write('#'+str(caption)+'\n')
hist.write('# x_mean count_before_2nd_breakdown count_2nd_breakdown\n')
hist.write('\n')
for m in range(0,len(xmean)):
hist.write(str(xmean[m])+' '+str(count_first[m])+' '+str(count_second[m])+'\n')
hist.close
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(figsize =(10, 7))
#plt.fill_between(xmean, count_first,step='mid') #pre mid post
plt.plot(xmean, count_first, label='Before 2nd breakdown', drawstyle='steps-mid')
plt.plot(xmean, count_second, label='2nd breakdown', drawstyle='steps-mid')
plt.legend(loc='best')
plt.title(detector+', #'+str(shot_no))
plt.xlabel('Energy [keV]')
plt.ylabel('Count')
plt.xlim(0,500)
ax.set_yscale('log') #log scale y
plt.savefig(figure_energy_spectra_doublebreakdown, dpi = 1000)
return
#soubory, ktere ctu
#read files
t3pa=get_file(shot, identifier)
name_calib='caliba'
caliba=get_file_calib(name_calib)
name_calib='calibb'
calibb=get_file_calib(name_calib)
name_calib='calibc'
calibc=get_file_calib(name_calib)
name_calib='calibt'
calibt=get_file_calib(name_calib)
#vytvorene soubory:
#created files
t3pa_cls= 'H03-W0051_shot_'+str(shot)+'_450V.t3pa_cls'
E_hist= 'H03-W0051_shot_'+str(shot)+'_450V_E_hist.txt'
E_in_time_hist= 'H03-W0051_shot_'+str(shot)+'_450V_discharge_energy.txt'
count_in_time_hist= 'H03-W0051_shot_'+str(shot)+'_450V_discharge_hits.txt'
size_interaction= 'H03-W0051_shot_'+str(shot)+'size_interaction.txt'
file_energy_spectra_doublebreakdown= 'H03-W0051_shot_'+str(shot)+'energy_spectra_doublebreakdown.txt'
#created figures
icon_fig='icon-fig'
figure_E_in_time_hist='discharge_energy'
figure_count_in_time_hist='discharge_hits'
figure_E_hist='Energy_spectrum'
hit_map_fig='hit-map'
figure_size_interaction= 'H03-W0051_shot_'+str(shot)+'size_interaction'
figure_energy_spectra_doublebreakdown= 'H03-W0051_shot_'+str(shot)+'energy_spectra_doublebreakdown'
#nactu jednotlive kalibracni matice - abych to nemusel delat v kazde funkci
a=load_calib(caliba)
b=load_calib(calibb)
c=load_calib(calibc)
t=load_calib(calibt)
#nactu a urcim jednotlive hodnoty - abych to nemusel delat v kazde funkci
index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti = load_t3pa_file(t3pa)
index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti, RowNo, ClmNo = t3pa_data(pocet_udalosti,index, matrix_index, ToA, ToT, FToA, overflow)
raw data
#hit map
hit_map(detector,hit_map_fig,RowNo,ClmNo)
Energy and time calculation from raw data.
E=energy(a, b, c, t, ToT, pocet_udalosti, RowNo, ClmNo)
T=Time(ToA, FToA, pocet_udalosti, RowNo, ClmNo)
index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T = remove_interactions_with_zero_energy(index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T)
E,T=Timewalk(E,T)
#sort by time
T, index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E = (list(t) for t in zip(*sorted(zip(T, index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E), reverse=True))) #serazeni od nejvetsiho po nejmensi
T_pom=T.copy()
#save to file
T_first, E_tot, Ntot = file_t3pa_cls_new(t3pa_cls,T)
dt, caption, T_int_first, E = energy_spectrum_in_time(T_first, E_tot)
hist_file(E_in_time_hist, T_int_first, E, caption);
([6685917.727128736, 6749116.637625817, 6750510.9375, 6873948.958173729, 6937635.777300365, 6959483.526765091, 6977151.5625, 6977769.206718713, 6980578.450691112, 6982693.75, 7050511.320188891, 7208103.665367451, 7211034.375, 7238938.255214813, 7239610.341811118, 7239843.925648366, 7241955.609662337, 7250945.3125, 7257071.848864057, 7258151.439785235, 7263694.885976114, 7267262.30838188, 7268695.995306626, 7290294.637570483, 7291198.145836723, 7293627.985841622, 7293834.062047307, 7294019.907863381, 7294674.286009212, 7294699.135069661, 7295638.0530041605, 7296000.891849707, 7296658.200687533, 7297207.8125, 7297312.112875784, 7297711.777025332, 7298186.062197217, 7299007.650578924, 7300549.249353649, 7300715.767111626, 7301319.362523632, 7325703.125, 7327126.517199781, 7329673.410830619, 7330526.5625, 7333237.302548052, 7336162.168080811, 7337984.375, 7338792.1875, 7349410.031116817, 7360555.383705647, 7397177.530074194, 7397409.149148168, 7401014.172631263, 7402615.879830735, 7407929.6875, 7409394.52386233, 7416140.084354872, 7416922.769782367, 7417997.7653486105, 7419477.187152638, 7419880.14464399, 7419914.7392515745, 7420612.5, 7421770.619045592, 7423593.75, 7427176.670075179, 7433233.3061280325, 7435134.9287379775, 7436512.296044005, 7436889.58194395, 7437373.483433773, 7437421.590510016, 7437454.682144075, 7438008.759792862, 7438237.5, 7438906.949167701, 7439117.1875, 7439442.221716875, 7439849.175845516, 7440302.365327366, 7440745.3125, 7440815.625, 7440852.827806608, 7441457.184461187, 7442100.2053327225, 7442711.510332255, 7443051.490179389, 7443541.24665721, 7444373.4375, 7444426.203960412, 7444655.602267117, 7444923.4375, 7445026.293809609, 7445235.354773849, 7445823.069994126, 7445966.388358383, 7446409.072951722, 7446814.402430709, 7446821.836294429, 7448440.94149729, 7448876.2305943975, 7449562.944720576, 7452692.2044005385, 7452767.733247703, 7452989.6367764445, 7453050.0, 7453360.810594801, 7453689.0625, 7453695.260598181, 7453931.904837452, 7455418.671568484, 7455497.174290091, 7455830.863357044, 7456111.480749001, 7456217.1875, 7456236.849463472, 7456243.75, 7456561.405938452, 7457196.875, 7457236.922996508, 7457462.4481107695, 7458603.120215501, 7458693.563826332, 7458798.4375, 7458885.428676773, 7458965.096124746, 7458965.789533757, 7458971.366976924, 7459046.477374458, 7459051.5625, 7459177.7115259, 7459192.011305748, 7459248.247263497, 7459288.836551005, 7459446.430572105, 7459490.17339945, 7459696.842642829, 7459801.487912145, 7459890.625, 7459927.356239454, 7459932.8125, 7459939.34594329, 7459942.096827896, 7459976.786648474, 7460025.188831519, 7460221.133683878, 7460224.727179278, 7460253.5574955065, 7460259.922633464, 7460376.5625, 7460412.5, 7460646.726843643, 7460774.791544083, 7461007.114974406, 7461015.888733249, 7461310.558241416, 7461492.1875, 7461500.251357351, 7461664.425274257, 7461701.5625, 7461926.343080783, 7462110.856998688, 7462382.995735562, 7462477.853133447, 7462610.9375, 7462850.248343617, 7462903.055006148, 7462935.533784556, 7462995.3125, 7463218.75, 7463549.12181141, 7463614.0625, 7463687.5, 7463749.7895364715, 7463811.603686066, 7463859.375, 7463915.708844877, 7464370.973985554, 7465767.194383376, 7466873.4375, 7467633.096462221, 7469485.431379146, 7470373.4375, 7470899.728076917, 7471423.366131042, 7472972.903771936, 7473039.511038508, 7474219.443687333, 7474712.915466267, 7475484.388469208, 7476003.125, 7476431.16961623, 7476532.471423665, 7476765.5449496815, 7477482.090153488, 7480403.438947474, 7487401.5625, 7487662.5, 7488164.816342674, 7488970.408467612, 7490278.233411937, 7490350.935208382, 7491473.098744747, 7494340.625, 7494344.663143277, 7502869.948309397, 7504221.875, 7510498.4375, 7515432.123768614, 7515948.627143143, 7517471.875, 7519376.166357026, 7521544.944509542, 7524947.411572458, 7525314.98629353, 7528043.75, 7529109.528354045, 7529830.170995102, 7529841.834946349, 7530691.02403705, 7530751.9020853015, 7531296.443375357, 7531312.5, 7532118.211257068, 7532285.807389152, 7532400.0, 7532510.454320986, 7533072.590371858, 7534184.611434598, 7535229.6875, 7535447.403576599, 7536238.828880766, 7536859.951048798, 7537005.423342053, 7539457.8125, 7540873.950696094, 7541365.625, 7545506.25, 7546419.2767607905, 7547333.153548867, 7547837.156638979, 7549519.569122433, 7552891.5252859, 7560489.357962221, 7562235.119352605, 7563329.474248069, 7564859.375, 7568939.527847279, 7569024.037223282, 7570754.726005115, 7572112.678558818, 7573696.875, 7577120.29917988, 7579036.680271062, 7579088.500792201, 7586310.074732258, 7602151.416140715, 7612776.293081562, 7614465.552807845, 7619035.9375, 7619472.420120755, 7627496.875, 7629432.8125, 7634922.258794956, 7637533.069745615, 7639579.527368328, 7641620.683043063, 7642874.459054391, 7643840.625, 7647356.25, 7655068.60467735, 7658801.780906168, 7666265.625, 7680844.064818926, 7685257.896198965, 7686504.010751184, 7695834.375, 7708167.1875, 7711931.571619235, 7715018.75, 7717677.799543282, 7723423.4375, 7723437.644101001, 7731531.909896165, 7733304.576099705, 7735865.062715414, 7738839.397719257, 7739318.137665141, 7740862.404971358, 7740949.230709178, 7742150.632714085, 7742445.383336754, 7744017.1875, 7752533.594340977, 7753539.2901086705, 7754223.4375, 7754255.616626454, 7756273.974650121, 7757154.6875, 7759080.80400529, 7760174.216906541, 7778324.977887489, 7780260.746812626, 7787760.890014239, 7791505.9494297085, 7797112.72605404, 7806468.199472459, 7808991.633379737, 7810668.446445447, 7811977.757616407, 7812580.064349354, 7812618.965647961, 7812825.418816036, 7813016.26805589, 7813040.558836091, 7814309.136173688, 7815024.027410785, 7815693.75, 7815747.0308187455, 7816537.029004531, 7817801.420666807, 7817830.776454075, 7818064.581343788, 7818836.057579229, 7826485.988456571, 7834024.137370078, 7835362.749433438, 7842890.566056907, 7844789.654845266, 7845651.114676483, 7847356.755363049, 7847665.740731264, 7849001.372954081, 7855133.63024679, 7856279.6875, 7867107.481277381, 7869139.0625, 7869153.125, 7873235.230063225, 7876984.375, 7878887.5, 7881910.399215456, 7882121.782837528, 7883353.125, 7883557.734153936, 7883704.767001971, 7886021.875, 7886196.875, 7886453.125, 7886659.212947088, 7887188.160694345, 7887232.8125, 7887951.858338051, 7889735.104702019, 7890766.399888308, 7891660.695428629, 7892485.9375, 7893966.087112148, 7895104.6875, 7895104.6875, 7895568.731258875, 7895833.375686926, 7896023.377616153, 7901923.4869703185, 7905183.380885564, 7913274.474980052, 7913936.612996197, 7913946.564822772, 7916686.847124565, 7919473.4375, 7921148.544171565, 7924778.231510388, 7926803.656367281, 7926877.272350696, 7927870.089623829, 7928219.286975719, 7928235.9375, 7928367.814345612, 7929768.75, 7930291.156569972, 7930629.6875, 7930879.613024061, 7931101.5625, 7931630.116548924, 7934279.699053333, 7938585.375544759, 7945887.850477063, 7948863.573439383, 7950717.1875, 7951831.1633217735, 7953074.551892461, 7953076.309820895, 7956156.678755306, 7956755.274691184, 7959821.019291625, 7960944.221238285, 7961500.345347386, 7962001.495340452, 7965355.909062235, 7966396.184975439, 7967620.229313609, 7971290.350370969, 7971317.853985882, 7972975.0, 7972981.54862905, 7972985.049672161, 7978031.704970906, 7978087.511462202, 7983864.0625, 8018118.362084405, 8018153.298499774, 8025591.92528234, 8025679.925898121, 8043137.12635637, 8066688.586816826, 8069293.07352358, 8069933.614296433, 8074140.625, 8088548.520674261, 8091230.315318002, 8093842.494635875, 8094189.0625, 8095801.5625, 8096992.480040753, 8098704.813801145, 8102589.0625, 8108867.1875, 8112337.467212537, 8117259.303614781, 8121350.113828826, 8123821.875, 8123834.613103288, 8137118.780154229, 8145254.397942298, 8154594.7651414275, 8155025.248843696, 8156087.432984874, 8157118.603250324, 8157240.625, 8158072.210393654, 8170296.604765707, 8172234.152255123, 8173514.0625, 8175526.5625, 8175543.75, 8179028.106761716, 8181480.318966482, 8185018.919560593, 8186067.393170591, 8193356.984833393, 8204436.695211987, 8207662.420901514, 8227456.25, 8229736.896397779, 8234380.483121457, 8262529.979137255, 8276852.97459247, 8278011.740981353, 8280219.214408082, 8281840.625, 8281896.949453166, 8294904.6875, 8299968.75, 8300145.493565492, 8306899.520291163, 8307570.41191167, 8307609.254831671, 8309084.327016671, 8310154.6875, 8311849.270582415, 8313044.559555349, 8313379.6875, 8315335.321100077, 8316174.698406141, 8317067.845411602, 8319308.595013317, 8326015.916382018, 8326410.557574915, 8326551.75684945, 8342044.402094073, 8343132.731174735, 8350294.931952076, 8353401.396408904, 8358011.8423668835, 8364190.264137635, 8371552.047156498, 8381056.3473540405, 8382234.031841165, 8389240.625, 8398015.625, 8399865.136739016, 8400259.685222663, 8403910.293508384, 8411254.6875, 8412734.375, 8414869.196347835, 8422111.875211623, 8424735.9375, 8429809.323102321, 8453796.875, 8456991.183527175, 8458357.913298784, 8459260.898753995, 8459411.501821535, 8460532.938313024, 8461404.332758766, 8461954.6875, 8465321.875, 8466155.704660445, 8467148.81366468, 8467621.647901226, 8467678.916399168, 8468064.96275747, 8468703.125, 8468765.348749928, 8469649.343860578, 8469660.06595756, 8470240.481371693, 8470716.566238385, 8475323.4375, 8475376.935647195, 8475409.162753548, 8475656.516315363, 8475842.1875, 8476748.039636513, 8478046.446474724, 8478654.6875, 8478910.984055545, 8479607.886623818, 8479943.639910968, 8480013.979061082, 8480096.41327673, 8483420.303952765, 8485617.302225936, 8487396.352602584, 8488613.62778201, 8489119.742388282, 8489300.14356991, 8489464.586465595, 8489542.895562885, 8490342.608974136, 8490439.945592647, 8490567.1875, 8490996.918427324, 8491884.375, 8491931.078076802, 8492013.64519693, 8492056.885003315, 8492301.891598303, 8492405.42550542, 8492709.375, 8492774.507887555, 8493037.623721102, 8493052.131253641, 8494041.550072279, 8494514.614135388, 8494580.351326156, 8494825.202064034, 8495009.824057363, 8495078.82188578, 8495651.5625, 8495778.125, 8496490.55557394, 8498037.552791128, 8498440.441818925, 8498775.984167939, 8499544.023572907, 8500011.936999943, 8500725.402086742, 8504189.528613292, 8505490.625, 8505678.125, 8508118.75, 8517682.8125, 8517860.9375, 8518184.888558948, 8518204.6875, 8518929.6875, 8519791.197636364, 8520153.84357057, 8523792.028991356, 8523865.989254026, 8524391.737104649, 8525544.158190835, 8528963.400764, 8529406.050403737, 8530453.063725553, 8530566.009753546, 8530850.458224688, 8532000.083818438, 8532074.855903381, 8532343.936526742, 8533201.5625, 8534606.701335002, 8535794.452033713, 8537247.833647728, 8537263.041319203, 8537268.466129826, 8537478.275041087, 8537601.652650768, 8539919.322641907, 8540067.1478634, 8540700.781932645, 8542074.57775169, 8542369.86424498, 8542431.25, 8542961.222704615, 8543651.86548861, 8543763.129149327, 8545046.745564122, 8545152.142032249, 8545410.9375, 8547312.5, 8549117.067863887, 8549494.574314792, 8549728.018913612, 8550015.625, 8552401.593081921, 8552419.221911436, 8553280.995083911, 8554655.882751679, 8554765.076817032, 8555395.3125, 8555675.0, 8557964.0625, 8559495.950489854, 8559651.918708634, 8560309.387852738, 8561318.120800743, 8563559.083531905, 8566023.538983157, 8568182.8125, 8568352.74354939, 8568400.4602873, 8569267.258244194, 8569878.808268836, 8570185.9375, 8570453.125, 8570500.95606059, 8570631.331419557, 8571009.05757575, 8571277.71758017, 8571884.375, 8572441.812903406, 8572865.625, 8573304.28234928, 8573486.068567473, 8573544.28934488, 8579031.061492302, 8580196.011078946, 8581947.632176781, 8581990.625, 8582729.03127353, 8582855.666399457, 8583788.518552868, 8584122.56300104, 8584154.727909518, 8585693.729425345, 8585915.599194054, 8586463.926937932, 8588182.8125, 8588795.455652231, 8589039.0625, 8589199.816008855, 8589225.0, 8591231.25, 8591850.0, 8592158.138568552, 8592542.1875, 8592978.051945308, 8592990.538633423, 8593556.25, 8594211.83708294, 8594917.335355362, 8595180.90591282, 8597081.323118402, 8597338.624435645, 8597805.17391321, 8598916.391470378, 8599283.659052482, 8599396.449601827, 8599682.430354904, 8599772.095197873, 8599997.075578148, 8600006.986103158, 8600605.783021107, 8600607.631201137, 8601332.8125, 8608264.31123398, 8608877.611135006, 8612901.069748057, 8616028.94750321, 8622079.286209485, 8623640.588382406, 8624793.454584721, 8624812.72520985, 8625328.125, 8627159.375, 8631185.239453647, 8633279.495374236, 8634765.478002522, 8635442.2365716, 8637040.625, 8637055.865446243, 8638750.422636243, 8638756.25, 8641064.0625, 8641094.892766975, 8642173.4375, 8642210.401599586, 8645549.281143278, 8646055.514766468, 8646548.991365304, 8646578.125, 8646806.275411611, 8648174.458584644, 8649115.625, 8649128.213770563, 8649562.232248029, 8650249.590897897, 8651181.66206493, 8651255.600810936, 8651655.61821423, 8651831.25, 8651925.430440905, 8651993.623550495, 8652875.0, 8652878.125, 8653151.516621504, 8653203.125, 8653236.363518061, 8653370.102050118, 8664940.971781688, 8665471.702673636, 8669286.54684321, 8669639.922486717, 8669852.582693316, 8673460.512532469, 8675233.837378053, 8675749.830425197, 8680355.944065135, 8685900.703579333, 8692623.4375, 8697207.778504329, 8697923.709847394, 8698532.143216914, 8701157.8125, 8706751.772165949, 8708330.831389826, 8711030.168785762, 8714105.686329193, 8714108.627983637, 8718954.6875, 8719583.337261936, 8724273.4375, 8725889.82642169, 8728248.906677037, 8729190.042788256, 8729309.154162852, 8730528.49411637, 8731487.065788727, 8732926.770501062, 8734154.971890442, 8734376.633115355, 8736218.113917183, 8736565.827377262, 8737383.163794314, 8738534.529091556, 8739004.397932544, 8739145.963955143, 8739518.785162814, 8740538.381302036, 8740788.67560475, 8740859.166860316, 8740868.571119381, 8743259.375, 8743515.721804641, 8744438.721593207, 8744964.457929146, 8745888.64567741, 8745920.380991168, 8745951.471702397, 8748578.125, 8748790.625, 8749031.492455387, 8762089.0625, 8762162.5, 8763274.52929286, 8764153.34753158, 8765029.177379861, 8765838.44478036, 8766310.9375, 8767210.403115503, 8767311.299180701, 8768650.301901992, 8768673.344630158, 8769878.403631035, 8770010.940191591, 8770299.20487606, 8771792.265693732, 8772982.997506421, 8773442.1875, 8773756.413717909, 8773996.839774856, 8774017.832395231, 8774568.445608974, 8774774.8039441, 8775006.085547166, 8777738.632067936, 8778702.285086572, 8778800.432003086, 8780893.75, 8781012.113705069, 8781291.928602053, 8781493.090508536, 8783411.286470145, 8783423.42249637, 8783534.375, 8783725.0, 8783727.837432818, 8783813.830141513, 8783988.135747341, 8786488.799376985, 8786504.71776787, 8786556.25, 8787242.1875, 8787432.78590668, 8787838.035919758, 8788893.335320087, 8789465.40567657, 8789608.569008429, 8801473.003852587, 8804256.174746994, 8809779.98163317, 8815071.629743358, 8816103.125, 8816741.27024478, 8818554.6875, 8822017.1875, 8824422.873140376, 8824617.738313664, 8825348.614009814, 8825639.67240178, 8831060.880830081, 8831871.34785893, 8851614.0625, 8853815.046950446, 8854534.375, 8855732.877693893, 8855910.496078009, 8857051.5625, 8859421.875, 8859582.356367985, 8859601.026751004, 8859798.038191257, 8860010.689735146, 8860293.506409839, 8861242.1875, 8863766.30058529, 8864383.085419992, 8865638.934957217, 8867470.643810686, 8868037.62683688, 8868120.28349378, 8868163.860397283, 8868910.298060194, 8870402.422573496, 8870994.919757294, 8872521.948457135, 8872906.01593633, 8873283.440593954, 8873361.020700788, 8873539.473356113, 8874076.5625, 8874277.142092638, 8874335.08454452, 8878416.986343212, 8880738.47711403, 8887545.3125, 8888212.169722905, 8907389.0625, 8907473.089660468, 8907603.02000706, 8913755.772190984, 8914859.225369865, 8916397.878922803, 8919437.901703224, 8919561.636965502, 8920540.254518623, 8920820.01792198, 8926506.25, 8927881.788972648, 8928301.5625, 8929632.062710593, 8939407.8125, 8939451.995621681, 8939692.68691763, 8940370.535467837, 8940623.340407087, 8940915.87784235, 8941686.755188257, 8942972.712198654, 8948918.10754359, 8954662.5, 8962393.722703883, 8963485.31831645, 8969945.3125, 8972947.994375644, 8975493.75, 8976699.710825425, 8986381.821024345, 8988474.851701848, 8993782.85833366, 8993959.375, 8994390.294717459, 8998760.792315366, 8999667.1875, 8999865.625, 9000112.252038062, 9003938.502817975, 9004003.617045145, 9009910.883461261, 9016414.0625, 9017329.105599474, 9018660.068443064, 9018675.18876845, 9019827.13621212, 9019944.213990733, 9019945.3125, 9020322.524274744, 9022398.4375, 9022808.221339092, 9023574.483506769, 9029839.0625, 9030572.601352954, 9030779.666663922, 9030783.480372554, 9032007.161785612, 9036220.987859031, 9037309.65123853, 9037752.60824263, 9045821.749815218, 9047446.4827378, 9054462.5, 9055637.382770607, 9056357.8125, 9082595.571012894, 9089715.457165862, 9090387.262590123, 9093301.5625, 9093557.330351464, 9103115.334847696, 9103164.0625, 9103181.258917743, 9107110.385593614, 9113423.556430949, 9114827.67857789, 9119754.443291064, 9131631.470766122, 9132923.323763318, 9133404.080830375, 9134678.844557691, 9138868.33894566, 9142382.8125, 9142654.04522689, 9142823.32037884, 9143242.059560679, 9143445.177393805, 9145236.408410728, 9146569.065985126, 9147851.480437148, 9147881.25, 9147903.100869073, 9148368.937557282, 9148378.125, 9148595.3125, 9148729.260383219, 9148955.953903746, 9149037.5, 9149050.29805427, 9149188.489870029, 9150687.5, 9150863.13288378, 9151950.388724685, 9152021.722799258, 9152290.144716717, 9152696.303181509, 9152996.466382572, 9154314.0625, 9157693.75, 9159553.022180889, 9165528.014557743, 9169684.814754447, 9175675.099575121, 9178655.717591241, 9181231.124902576, 9195626.345444482, 9195652.040872674, 9200065.079769943, ...], [91.31736285766164, 5.087785263767855, 45.052236988484374, 6.872106116264968, 89.9049978519968, 57.61153838540349, 60.335109204728546, 56.50620726362571, 67.75156305963505, 64.04072071455278, 5.9734399541420204, 8.594616028782333, 37.276792195959715, 15.37563954245141, 37.08313264079112, 11.413823182218156, 8.842912126399387, 32.456636128898616, 8.272804392087394, 10.941164353008823, 5.443752691891452, 25.241473365823065, 23.394372460566537, 19.90918546092244, 97.72036793151695, 30.761897741071905, 9.080097330905648, 13.595038967527454, 12.775845317352488, 18.48994564844444, 5.9890560870579055, 20.714119198945035, 9.682723723074485, 30.44285942397246, 22.698186213009954, 19.524083167214354, 6.788659390396112, 5.3364036869086595, 12.688284874497507, 90.49542935837042, 17.935206370894665, 148.93445496335215, 38.44660441427288, 28.007724622835624, 39.50309506160949, 5.52357370388182, 37.64899424952158, 101.80073624655242, 56.78789532306556, 8.666953165928744, 6.359357326733558, 8.874385575214927, 31.9002238516935, 18.784090870384276, 16.010732073044004, 32.68193681097346, 69.68013775510968, 99.4557947914347, 15.864977724485193, 6.185854564895941, 27.416989444646298, 8.544081524591446, 18.35001110249047, 28.87269765184386, 24.315237427237022, 115.02183723730151, 41.85492910888777, 8.566086744854093, 13.25333507558831, 67.30914747910674, 8.581797091552621, 20.2107820055082, 39.50077108927869, 5.341738187761871, 14.173655895973027, 62.542175705198886, 74.36211365561348, 42.100166069033264, 21.126083553111044, 35.96070377411215, 12.667001548702272, 33.12264128411976, 43.71223523918664, 82.39006220858826, 12.988543155014717, 15.786499779577687, 5.744210949344101, 7.577288324293709, 17.992689890144376, 107.64368016312585, 5.594512098388063, 49.79260265898796, 159.86346776320443, 52.67325617193168, 5.890215442818324, 79.19212931524059, 18.951131896968093, 13.90298273385287, 15.249596801623564, 26.225854884212108, 40.17348803159343, 24.072835304182394, 14.513627664595452, 235.08939658471232, 28.095499171511527, 83.33620390630391, 140.79726232557135, 29.659772543855365, 29.578362399174722, 5.934898311261309, 7.30492866135288, 36.65295154410127, 24.32739852373664, 10.572744120581932, 17.514483474044923, 51.953816342061025, 12.241953270030772, 117.89993521497996, 17.088430730242365, 41.180145830031876, 20.290965255866723, 26.459195067761087, 28.430734015546875, 14.276405783648725, 72.194690234341, 8.034662685835636, 29.765158627229155, 6.105378051321671, 56.122687108367536, 92.72069752256411, 83.54220532050773, 16.56783818265366, 25.472433433295, 12.54521684168391, 5.601665209480424, 50.76531150028307, 88.67338645276106, 121.75894092954503, 14.664637614405558, 67.15303956384707, 26.371769888290316, 41.300754160346855, 21.0868621036324, 7.57076906906653, 95.20149495026877, 5.134558484496077, 5.761092499754667, 21.230289493403085, 6.853035922350073, 72.2062316390921, 36.18077406090596, 51.27265387878192, 10.903765095088904, 24.99503574217071, 30.1482924045271, 70.72630541603331, 25.3251310408343, 36.17459314182463, 98.73821452595945, 22.063999309694662, 42.15048767342932, 7.525759633984186, 14.643303961710805, 19.604487754342472, 36.099386757812226, 50.810783987493295, 68.13510858926321, 51.68021404311861, 13.597715864737976, 43.36714548181894, 41.51784648059065, 12.397286190171991, 60.870831885509745, 35.23322711795419, 5.693493201900754, 20.010293557225772, 36.16422087849964, 5.132298163774936, 18.249142164099936, 14.967810693754574, 40.501658504329704, 56.76495452738143, 13.30931365829543, 58.98441518401493, 10.727707390875604, 33.928375408644605, 18.642932218799643, 16.97969794073769, 12.417985843927742, 9.709279399090542, 18.467336301487343, 82.51952666977087, 48.53213774818204, 88.58552251843024, 27.03567363138814, 5.371559200464686, 14.989233156628542, 39.35046641193272, 78.20735069303035, 31.132326450828895, 9.41388922305744, 7.150244479599669, 12.990439191006317, 10.636507658633255, 47.234300839657976, 23.1286657578993, 59.06672390879199, 29.57431820594929, 71.49716660242578, 21.121432248163327, 17.610520634647074, 45.86685190545603, 31.960645766422044, 49.084231231367475, 25.816508724592985, 23.70856527230742, 70.15344238744328, 37.83056224472948, 11.978068352997616, 169.86501406249275, 6.1306024117165245, 108.56464187273198, 22.20342029711156, 39.149487105366624, 8.020846137506235, 76.35346702027394, 34.05238381605599, 58.79743978271759, 24.94726162506913, 6.5248043323743845, 79.38967565129995, 35.33188584568896, 52.69448587336859, 159.485482981752, 151.27130629562646, 32.44999563933242, 24.354518946409037, 51.98192231006073, 60.19036480981589, 27.950861107306956, 67.8156547674773, 23.21222806006354, 34.82363322407991, 28.498540915872994, 11.623230014229353, 6.169083940437779, 108.64620600544403, 65.01285811486811, 24.04881458550187, 5.025684256816691, 90.48750175650525, 32.48099148453147, 47.81519325256729, 14.890981257870632, 10.049784509933131, 43.451962818513906, 5.867634476848306, 22.89296835745519, 81.50992755986054, 62.83672915986524, 72.14743689792343, 13.684934110042231, 59.2783348506655, 81.47828076862578, 39.843230036466224, 23.911744348608902, 71.53181077952644, 7.742989961896166, 55.77986109870231, 65.35519158968357, 98.09807634606187, 25.950387274852403, 39.09133458699226, 43.35708017387284, 16.294543998285825, 20.432745555516245, 70.18245943381226, 28.54621790601627, 64.83959381445828, 6.829460131100459, 70.29018141658034, 13.830926424666298, 52.37778724893998, 38.52600705860049, 134.05144789750787, 56.49609944858172, 49.4151826098588, 5.2546252628298715, 20.44120518680452, 14.59126683716398, 5.572857069342857, 12.85315850916825, 5.819240237750784, 33.29785298874397, 5.147570728505096, 15.886337389244705, 121.50459308096262, 78.27800883666934, 64.34313912921674, 35.74945613134141, 8.064016058384585, 30.210069720611756, 37.84603669033999, 34.78598049302911, 9.291571465844276, 25.825797974556174, 15.879313278119087, 21.003446372851876, 20.96969207675414, 23.70544311710117, 22.92654998895804, 95.99806088001449, 23.880811501705008, 16.820704710261527, 5.863144036976111, 27.280775440970107, 24.564920701910122, 30.966157644594663, 58.51413925458132, 28.26511845639325, 45.77446467846163, 26.005774229523368, 26.597255638522967, 23.731575549206774, 11.320733014225056, 5.710008712143087, 48.93009367772184, 7.188601005918279, 27.410329927885947, 18.73587697917351, 16.309510018368155, 18.24874910463899, 126.08360596645622, 33.39443882756984, 129.56578912310655, 64.94548066444545, 8.118858123982164, 57.872522222795844, 66.2699075034571, 63.10787515752687, 40.28956387766391, 80.45026779271574, 8.021057036578505, 162.3434761328746, 68.98581501725141, 9.26602423738561, 28.30372299397119, 39.11534880650134, 32.38295467922894, 105.56430963529031, 25.688719002439598, 12.345612640708817, 31.33722215728187, 24.978242515537296, 98.01298774941918, 7.341219609197819, 31.457614646787977, 34.08913315360798, 56.652499134680504, 100.40657295326392, 65.48617524832416, 20.74708031151143, 61.68564262445234, 27.393368258349444, 71.37782799798887, 17.664100935905385, 10.395539389793067, 135.4274447541994, 58.400646927887095, 20.09257510189064, 39.07855832889495, 6.280770281740686, 65.53540098436494, 61.03710239693926, 15.18167995860735, 14.155010532765049, 17.477666071797128, 72.28737137535644, 125.245474164339, 45.907095992287246, 17.446104777361942, 30.336270531958487, 14.66504221809857, 119.96146081898499, 25.307112127056758, 8.292696385571249, 20.89655309069691, 23.816659516818234, 21.602924964010143, 49.99191243709756, 19.656241438418967, 19.785757715919438, 55.09980410387634, 250.73568637036178, 149.7210740252924, 21.337402664806348, 17.103879202661822, 22.17575048869928, 27.26302590666464, 42.99900544152091, 62.65148354917905, 15.668704936129673, 24.080322250937584, 7.863498510653818, 28.782980644889832, 33.25497088277157, 19.88706836665866, 7.246415950485777, 5.245466209429035, 75.25980286866948, 13.643871717340888, 7.167818769296533, 10.74117151418163, 52.453961285881405, 10.58992503126165, 21.774646714028876, 10.212780226375752, 136.79529279483293, 29.960022915437264, 33.30404468169633, 18.031738977165393, 56.428776402146326, 69.46867371363093, 46.671405891891624, 53.724751247074884, 11.331034128069545, 89.77762752223775, 33.09002736404683, 16.545707216221274, 14.676228494251468, 11.310415242294761, 72.1000116145869, 9.541188567390307, 13.944538254326652, 13.941880782402848, 5.274473951465512, 177.06174353481242, 5.933590614948698, 35.91695415603803, 73.91362132026217, 25.704538886596282, 36.98268851774555, 5.797680855075804, 37.129187147804814, 43.360394487296446, 124.41716833844305, 20.035359622189752, 98.96773502434155, 68.94465379638504, 5.829356490509644, 18.747529373742626, 34.04508922496395, 75.76877135095205, 92.25525771649319, 29.252059899898324, 19.188461597781433, 47.68342783083804, 31.704477386378557, 154.78751316191827, 17.06625811800098, 85.96606703224482, 15.233092433475996, 80.44961822884333, 58.873474780663685, 11.42303094116757, 138.87976599527514, 6.098498527770486, 74.10855210692564, 14.761719989116381, 54.73612119915627, 6.942060377040113, 54.93434054137383, 36.25083113949423, 55.19305872585866, 102.64678662158025, 37.95185169921569, 12.619496990393454, 32.3724885632955, 83.12279355779563, 15.017216901995065, 12.326959627053075, 140.30676843559903, 22.773636409708494, 25.626506533725117, 30.343824626648544, 117.8067338016911, 87.96109725391642, 22.85608113739068, 9.05717300362746, 92.84665827121837, 67.82616347127694, 21.61100794788175, 61.27929261731349, 150.32592760091666, 65.7045981570606, 37.55528359288822, 9.739662585955863, 12.996797309544853, 36.1183431853071, 61.328980827782296, 36.69467496445333, 6.34044105329623, 16.862025145800384, 27.780596060787957, 31.29545826266444, 29.901689257057093, 25.940178967136852, 33.49732277314638, 109.70617200463292, 31.157908825573752, 27.812371912051283, 14.141234002044797, 19.156964664266525, 17.944120977177047, 33.475075843471515, 83.13593652870256, 20.065161720351863, 18.445198681531558, 119.95216009398274, 24.095544941651045, 47.546318007051966, 28.677477954893163, 28.6671688575875, 76.80990060774968, 83.11377442663309, 28.620819774008964, 45.484777895678356, 41.51738124039651, 7.620163268988213, 11.245577982702324, 14.537872107026438, 5.0401406267352575, 83.1836358458745, 51.53785218831368, 170.28980941541798, 17.768234057808996, 89.26208795433351, 20.821093142026342, 35.7097831004154, 5.307551297843419, 18.56154344501635, 19.427177127570644, 37.066732179063465, 50.7826571890615, 15.109658505496514, 58.675098831576136, 83.26574404003941, 59.47566135381027, 12.290148415666849, 5.411205965271069, 18.76988953999075, 61.49114198538925, 17.763658339717136, 8.353104987022892, 25.04748621561545, 5.66735681189705, 39.81667947972121, 32.92459095668097, 11.45895079180056, 29.126519796546095, 61.49278108331157, 30.03756007376317, 40.61769529153102, 14.683331856281583, 20.472716250369025, 6.458754334828512, 50.96312363994484, 102.8747678135601, 33.393672446306496, 26.389663831872095, 17.07562971190386, 48.106754507123945, 34.98408498361434, 38.59851703521675, 106.09133876136829, 76.12956830783907, 114.24039109558396, 31.981908210920356, 74.35607072964434, 17.68973897034245, 93.00639276457993, 84.6571137142654, 21.87572083419189, 15.821630861183461, 95.08999916202693, 12.9038905024653, 5.39089808411576, 11.03326281574551, 11.787530953611414, 19.19273543825907, 11.261297551673646, 28.25868140458985, 98.61854539662856, 50.90581898952688, 11.914949148045771, 37.45723644945633, 25.269706128705568, 17.503135691351517, 9.102380269773665, 36.347660787781734, 25.070793110987267, 18.428134788602218, 11.066312324665574, 12.618147047370984, 25.95472961700643, 8.062951967577563, 57.80667437160222, 35.184558293938224, 59.30757460965153, 94.96293725480746, 26.204869425065322, 18.747871175258968, 32.698176218564704, 73.63532454151763, 14.504311141221514, 17.745844976471542, 26.58996067204867, 34.25148842351149, 15.059368807097805, 6.563702615940539, 63.376940039883735, 7.028147432216954, 73.73873856317735, 40.187195770536675, 32.60153185800601, 62.80912819405029, 18.096702519709805, 51.63357001454594, 9.34229458592634, 60.62110568269799, 82.32562412047777, 93.93546411314917, 31.65423179836113, 22.763243152348934, 8.545968384131092, 15.40909879804698, 108.22870977701973, 56.14514151237748, 53.16161048688219, 20.49319235884041, 29.821800029582242, 23.530693668878456, 13.586960466312382, 37.729045141478956, 22.842452856353884, 43.2286740217602, 13.732130240411504, 90.45809593825423, 7.810697436418146, 39.79837946923193, 12.42882754013257, 12.561001212372375, 45.57469880070873, 20.064431946889055, 126.62399685928798, 51.812230445125444, 79.61620157487107, 129.7867901519937, 39.92773446823304, 28.024132202871087, 72.06995829363714, 57.1750496524321, 23.058539725401968, 49.17371087011552, 55.16384556968879, 30.33195978742782, 73.59392615954529, 177.27945744198823, 9.623219889967038, 34.17428692550006, 27.158491736773517, 26.925912885146982, 31.872894720156282, 12.900953525162324, 16.84970955746589, 53.63116118475637, 19.199693938585167, 6.043699042023037, 10.750068958313992, 6.9268228163368235, 19.579215290541637, 184.95774871874352, 46.220963193262236, 69.72045590411233, 6.292876994846867, 62.55399945784352, 21.82895162622858, 82.44017229509738, 99.91746057100536, 85.10105217589663, 44.24924313860987, 5.778398801959238, 21.679715243522647, 22.537734950062756, 15.59020591241299, 52.96026787233721, 23.350479257994103, 38.943312298029966, 44.55903205393976, 28.919533565861265, 70.48548181800409, 106.21162418764891, 5.400353312372642, 67.42333955204322, 6.428452642369309, 16.840915671784686, 38.207307808345035, 85.3135590294935, 13.551388891097876, 51.971161059498776, 17.89235471884495, 20.940321650105528, 5.761511040905264, 9.848179571204073, 59.183375719257626, 148.18252177426226, 85.55846024311936, 80.45622452310269, 27.599658497158277, 41.88099424612108, 78.73283187839581, 20.35815393097728, 7.384181425713306, 34.248311208927106, 48.59757006707612, 86.86451879359802, 14.48049465131895, 28.55227403816147, 88.20848271765313, 43.06709455190524, 227.83363277819763, 66.53369751670078, 43.436081654928415, 91.16787091979725, 14.322989962043144, 6.5870506227597705, 7.367486673640403, 23.96992153693587, 28.0884148513771, 31.741631847852027, 14.33229862461346, 39.13006122740001, 70.48243925838844, 94.55532795369183, 22.85630941242113, 20.706595838513508, 49.03702020769883, 31.597243936904537, 197.24973839981166, 41.840274338707474, 9.774453631283572, 13.154984886789668, 68.45927840942522, 74.20310975194904, 77.08669247863472, 58.638633402476565, 18.955210542204107, 85.35001217973473, 156.43030926379345, 24.817499439335897, 47.95833622438438, 46.46317449501798, 6.805755199798801, 21.36121042552181, 9.39183482740395, 18.109950832313757, 24.493859784972464, 18.260498873177184, 21.115936070995435, 10.703374185754548, 20.895804739879534, 15.077249033700715, 7.956453336406127, 22.70080276961519, 148.96042042757495, 8.194194549752531, 44.97293644174877, 30.122437150326164, 19.418006768009942, 19.160633823232565, 15.832446021477075, 18.86052552896858, 51.534511243149666, 48.18821161121917, 90.8339102831585, 126.43134327883917, 41.5032308731504, 211.51649633729772, 13.391853202305235, 6.808761630704521, 125.25531506707863, 20.01597150854136, 71.21638206944797, 27.51362985894343, 24.712568471508053, 11.634836718184138, 32.77627998533926, 16.121706885710935, 64.1710309551234, 18.98027195948322, 15.248165313857816, 7.17094852514134, 34.550128682877364, 42.74791247757665, 27.84636252491324, 96.09925219683646, 38.53993172092726, 31.704669716183684, 37.0836961823034, 22.216331693235574, 27.52249482142077, 5.304620690945236, 46.7553947922008, 22.707666613649682, 48.959331623175544, 28.040290842500994, 6.543223088611372, 68.43072924459932, 50.9855552705116, 104.65643232111456, 23.910863514976942, 24.65501240421011, 29.371612503766478, 24.23350745964228, 5.166067102798395, 50.234763850123585, 79.30741378521464, 14.841107754197331, 17.471488928920742, 97.97228823754845, 14.166631620014085, 8.731712461923212, 62.24667549438266, 14.662233576733692, 11.63590882477438, 24.476139783367667, 30.995800366700582, 27.115243282358254, 29.185953364269945, 126.03224810104197, 13.153169865322125, 17.559155195483438, 17.64727570156615, 12.236693805647654, 7.582868936001936, 52.27574196956778, 62.54206760678325, 54.87663561594949, 61.49650400219641, 82.04006494090271, 5.089866184046796, 78.66913211589475, 67.48519722896509, 33.899260328711364, 21.143746514043837, 9.015142691552024, 40.62767515526082, 47.45355767374061, 71.78004376894285, 20.881456923233408, 49.957331160597036, 20.965934671692604, 11.688314821948403, 144.01492149989366, 53.50697515343715, 81.7441266639616, 33.64853877066328, 86.44523778792939, 62.181044143947524, 96.52277403004322, 56.58443822146958, 20.17038705621608, 11.260293915610498, 29.98552369973916, 59.33491684883325, 8.618857413500443, 27.969209269237712, 20.482681664234164, 26.912087219778424, 81.06316424429481, 23.49430889519421, 36.791841257727604, 78.28848766992168, 9.244176023616394, 13.387235596303604, 13.363814136224025, 76.28658376963298, 67.30351020798537, 12.430795605814287, 22.890339130732052, 135.2168293237891, 59.99006131775489, 17.489363545410313, 50.568125553943126, 22.09536313223224, 60.45842756804718, 127.29409678857681, 70.12225517106343, 84.97660626302124, 51.71898816809632, 16.00155525085293, 11.322448937389606, 7.936971463849867, 65.54241559647087, 66.62790288300405, 9.308428923569874, 20.38123065711645, 35.21889477881264, 58.22469036567506, 101.7496367306049, 23.89001343250043, 12.155306503978816, 37.625763598748975, 127.38660262168884, 35.44696401176068, 6.699312206341681, 7.551557574643391, 34.529309455627015, 29.47665551166376, 10.761051345932238, 29.944418017212726, 6.865883041813316, 113.24258558050451, 33.19790172205847, 13.107200322666825, 186.70376153025563, 26.00160438657575, 22.91391892912355, 17.063966523556665, 85.27854735430893, 18.16949954607486, 60.99253490235009, 5.844863118939432, 180.47099053892705, 44.008878787101835, 18.688088102090035, 40.18166620783142, 99.1518625643725, 136.35257601830722, 76.34172849587884, 16.11045595137014, 45.4097475042036, 26.273985094746557, 6.218879110594701, 95.36759605733745, 77.65653362914937, 74.09077211603312, 11.55734161071654, 18.869802893373063, 40.253469513752236, 41.10063663115089, 7.000226166608181, 23.87735267683601, 124.16151350270724, 30.679313448701013, 16.923960226421663, 64.00364472588979, 102.5274576188915, 14.085804391569269, 15.855485300984821, 74.73136555369382, 17.536617855582094, 21.402039792919002, 44.93718989606003, 37.72728568657577, 20.1822843155167, 18.82296765669134, 26.22915117412107, 55.036304057040965, 102.80383155629553, 46.13280139914356, 85.15099184798703, 33.147548446039266, 43.73872483618523, 30.153555999791863, 73.87831297063484, 70.41495582599507, 22.252322713413648, 31.564341859488266, 46.343975772955915, 9.59681617705741, 16.97478264653787, 41.57409308065608, 23.254509507803323, 22.6473388749721, 66.03128193419593, 6.671265757008926, 8.890569848579261, 44.963167745242366, 32.04100707711456, 30.608476224899757, 42.51766939373578, 10.959357709748137, 136.58569198653393, 15.335129941672706, 14.133443526198779, 49.526446004473115, 89.64273553177105, 17.14341393661757, 8.909335708910621, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([6685917.727128736, 6749116.637625817, 6750510.9375, 6873948.958173729, 6937635.777300365, 6959483.526765091, 6977151.5625, 6977769.206718713, 6980578.450691112, 6982693.75, 7050511.320188891, 7208103.665367451, 7211034.375, 7238938.255214813, 7239610.341811118, 7239843.925648366, 7241955.609662337, 7250945.3125, 7257071.848864057, 7258151.439785235, 7263694.885976114, 7267262.30838188, 7268695.995306626, 7290294.637570483, 7291198.145836723, 7293627.985841622, 7293834.062047307, 7294019.907863381, 7294674.286009212, 7294699.135069661, 7295638.0530041605, 7296000.891849707, 7296658.200687533, 7297207.8125, 7297312.112875784, 7297711.777025332, 7298186.062197217, 7299007.650578924, 7300549.249353649, 7300715.767111626, 7301319.362523632, 7325703.125, 7327126.517199781, 7329673.410830619, 7330526.5625, 7333237.302548052, 7336162.168080811, 7337984.375, 7338792.1875, 7349410.031116817, 7360555.383705647, 7397177.530074194, 7397409.149148168, 7401014.172631263, 7402615.879830735, 7407929.6875, 7409394.52386233, 7416140.084354872, 7416922.769782367, 7417997.7653486105, 7419477.187152638, 7419880.14464399, 7419914.7392515745, 7420612.5, 7421770.619045592, 7423593.75, 7427176.670075179, 7433233.3061280325, 7435134.9287379775, 7436512.296044005, 7436889.58194395, 7437373.483433773, 7437421.590510016, 7437454.682144075, 7438008.759792862, 7438237.5, 7438906.949167701, 7439117.1875, 7439442.221716875, 7439849.175845516, 7440302.365327366, 7440745.3125, 7440815.625, 7440852.827806608, 7441457.184461187, 7442100.2053327225, 7442711.510332255, 7443051.490179389, 7443541.24665721, 7444373.4375, 7444426.203960412, 7444655.602267117, 7444923.4375, 7445026.293809609, 7445235.354773849, 7445823.069994126, 7445966.388358383, 7446409.072951722, 7446814.402430709, 7446821.836294429, 7448440.94149729, 7448876.2305943975, 7449562.944720576, 7452692.2044005385, 7452767.733247703, 7452989.6367764445, 7453050.0, 7453360.810594801, 7453689.0625, 7453695.260598181, 7453931.904837452, 7455418.671568484, 7455497.174290091, 7455830.863357044, 7456111.480749001, 7456217.1875, 7456236.849463472, 7456243.75, 7456561.405938452, 7457196.875, 7457236.922996508, 7457462.4481107695, 7458603.120215501, 7458693.563826332, 7458798.4375, 7458885.428676773, 7458965.096124746, 7458965.789533757, 7458971.366976924, 7459046.477374458, 7459051.5625, 7459177.7115259, 7459192.011305748, 7459248.247263497, 7459288.836551005, 7459446.430572105, 7459490.17339945, 7459696.842642829, 7459801.487912145, 7459890.625, 7459927.356239454, 7459932.8125, 7459939.34594329, 7459942.096827896, 7459976.786648474, 7460025.188831519, 7460221.133683878, 7460224.727179278, 7460253.5574955065, 7460259.922633464, 7460376.5625, 7460412.5, 7460646.726843643, 7460774.791544083, 7461007.114974406, 7461015.888733249, 7461310.558241416, 7461492.1875, 7461500.251357351, 7461664.425274257, 7461701.5625, 7461926.343080783, 7462110.856998688, 7462382.995735562, 7462477.853133447, 7462610.9375, 7462850.248343617, 7462903.055006148, 7462935.533784556, 7462995.3125, 7463218.75, 7463549.12181141, 7463614.0625, 7463687.5, 7463749.7895364715, 7463811.603686066, 7463859.375, 7463915.708844877, 7464370.973985554, 7465767.194383376, 7466873.4375, 7467633.096462221, 7469485.431379146, 7470373.4375, 7470899.728076917, 7471423.366131042, 7472972.903771936, 7473039.511038508, 7474219.443687333, 7474712.915466267, 7475484.388469208, 7476003.125, 7476431.16961623, 7476532.471423665, 7476765.5449496815, 7477482.090153488, 7480403.438947474, 7487401.5625, 7487662.5, 7488164.816342674, 7488970.408467612, 7490278.233411937, 7490350.935208382, 7491473.098744747, 7494340.625, 7494344.663143277, 7502869.948309397, 7504221.875, 7510498.4375, 7515432.123768614, 7515948.627143143, 7517471.875, 7519376.166357026, 7521544.944509542, 7524947.411572458, 7525314.98629353, 7528043.75, 7529109.528354045, 7529830.170995102, 7529841.834946349, 7530691.02403705, 7530751.9020853015, 7531296.443375357, 7531312.5, 7532118.211257068, 7532285.807389152, 7532400.0, 7532510.454320986, 7533072.590371858, 7534184.611434598, 7535229.6875, 7535447.403576599, 7536238.828880766, 7536859.951048798, 7537005.423342053, 7539457.8125, 7540873.950696094, 7541365.625, 7545506.25, 7546419.2767607905, 7547333.153548867, 7547837.156638979, 7549519.569122433, 7552891.5252859, 7560489.357962221, 7562235.119352605, 7563329.474248069, 7564859.375, 7568939.527847279, 7569024.037223282, 7570754.726005115, 7572112.678558818, 7573696.875, 7577120.29917988, 7579036.680271062, 7579088.500792201, 7586310.074732258, 7602151.416140715, 7612776.293081562, 7614465.552807845, 7619035.9375, 7619472.420120755, 7627496.875, 7629432.8125, 7634922.258794956, 7637533.069745615, 7639579.527368328, 7641620.683043063, 7642874.459054391, 7643840.625, 7647356.25, 7655068.60467735, 7658801.780906168, 7666265.625, 7680844.064818926, 7685257.896198965, 7686504.010751184, 7695834.375, 7708167.1875, 7711931.571619235, 7715018.75, 7717677.799543282, 7723423.4375, 7723437.644101001, 7731531.909896165, 7733304.576099705, 7735865.062715414, 7738839.397719257, 7739318.137665141, 7740862.404971358, 7740949.230709178, 7742150.632714085, 7742445.383336754, 7744017.1875, 7752533.594340977, 7753539.2901086705, 7754223.4375, 7754255.616626454, 7756273.974650121, 7757154.6875, 7759080.80400529, 7760174.216906541, 7778324.977887489, 7780260.746812626, 7787760.890014239, 7791505.9494297085, 7797112.72605404, 7806468.199472459, 7808991.633379737, 7810668.446445447, 7811977.757616407, 7812580.064349354, 7812618.965647961, 7812825.418816036, 7813016.26805589, 7813040.558836091, 7814309.136173688, 7815024.027410785, 7815693.75, 7815747.0308187455, 7816537.029004531, 7817801.420666807, 7817830.776454075, 7818064.581343788, 7818836.057579229, 7826485.988456571, 7834024.137370078, 7835362.749433438, 7842890.566056907, 7844789.654845266, 7845651.114676483, 7847356.755363049, 7847665.740731264, 7849001.372954081, 7855133.63024679, 7856279.6875, 7867107.481277381, 7869139.0625, 7869153.125, 7873235.230063225, 7876984.375, 7878887.5, 7881910.399215456, 7882121.782837528, 7883353.125, 7883557.734153936, 7883704.767001971, 7886021.875, 7886196.875, 7886453.125, 7886659.212947088, 7887188.160694345, 7887232.8125, 7887951.858338051, 7889735.104702019, 7890766.399888308, 7891660.695428629, 7892485.9375, 7893966.087112148, 7895104.6875, 7895104.6875, 7895568.731258875, 7895833.375686926, 7896023.377616153, 7901923.4869703185, 7905183.380885564, 7913274.474980052, 7913936.612996197, 7913946.564822772, 7916686.847124565, 7919473.4375, 7921148.544171565, 7924778.231510388, 7926803.656367281, 7926877.272350696, 7927870.089623829, 7928219.286975719, 7928235.9375, 7928367.814345612, 7929768.75, 7930291.156569972, 7930629.6875, 7930879.613024061, 7931101.5625, 7931630.116548924, 7934279.699053333, 7938585.375544759, 7945887.850477063, 7948863.573439383, 7950717.1875, 7951831.1633217735, 7953074.551892461, 7953076.309820895, 7956156.678755306, 7956755.274691184, 7959821.019291625, 7960944.221238285, 7961500.345347386, 7962001.495340452, 7965355.909062235, 7966396.184975439, 7967620.229313609, 7971290.350370969, 7971317.853985882, 7972975.0, 7972981.54862905, 7972985.049672161, 7978031.704970906, 7978087.511462202, 7983864.0625, 8018118.362084405, 8018153.298499774, 8025591.92528234, 8025679.925898121, 8043137.12635637, 8066688.586816826, 8069293.07352358, 8069933.614296433, 8074140.625, 8088548.520674261, 8091230.315318002, 8093842.494635875, 8094189.0625, 8095801.5625, 8096992.480040753, 8098704.813801145, 8102589.0625, 8108867.1875, 8112337.467212537, 8117259.303614781, 8121350.113828826, 8123821.875, 8123834.613103288, 8137118.780154229, 8145254.397942298, 8154594.7651414275, 8155025.248843696, 8156087.432984874, 8157118.603250324, 8157240.625, 8158072.210393654, 8170296.604765707, 8172234.152255123, 8173514.0625, 8175526.5625, 8175543.75, 8179028.106761716, 8181480.318966482, 8185018.919560593, 8186067.393170591, 8193356.984833393, 8204436.695211987, 8207662.420901514, 8227456.25, 8229736.896397779, 8234380.483121457, 8262529.979137255, 8276852.97459247, 8278011.740981353, 8280219.214408082, 8281840.625, 8281896.949453166, 8294904.6875, 8299968.75, 8300145.493565492, 8306899.520291163, 8307570.41191167, 8307609.254831671, 8309084.327016671, 8310154.6875, 8311849.270582415, 8313044.559555349, 8313379.6875, 8315335.321100077, 8316174.698406141, 8317067.845411602, 8319308.595013317, 8326015.916382018, 8326410.557574915, 8326551.75684945, 8342044.402094073, 8343132.731174735, 8350294.931952076, 8353401.396408904, 8358011.8423668835, 8364190.264137635, 8371552.047156498, 8381056.3473540405, 8382234.031841165, 8389240.625, 8398015.625, 8399865.136739016, 8400259.685222663, 8403910.293508384, 8411254.6875, 8412734.375, 8414869.196347835, 8422111.875211623, 8424735.9375, 8429809.323102321, 8453796.875, 8456991.183527175, 8458357.913298784, 8459260.898753995, 8459411.501821535, 8460532.938313024, 8461404.332758766, 8461954.6875, 8465321.875, 8466155.704660445, 8467148.81366468, 8467621.647901226, 8467678.916399168, 8468064.96275747, 8468703.125, 8468765.348749928, 8469649.343860578, 8469660.06595756, 8470240.481371693, 8470716.566238385, 8475323.4375, 8475376.935647195, 8475409.162753548, 8475656.516315363, 8475842.1875, 8476748.039636513, 8478046.446474724, 8478654.6875, 8478910.984055545, 8479607.886623818, 8479943.639910968, 8480013.979061082, 8480096.41327673, 8483420.303952765, 8485617.302225936, 8487396.352602584, 8488613.62778201, 8489119.742388282, 8489300.14356991, 8489464.586465595, 8489542.895562885, 8490342.608974136, 8490439.945592647, 8490567.1875, 8490996.918427324, 8491884.375, 8491931.078076802, 8492013.64519693, 8492056.885003315, 8492301.891598303, 8492405.42550542, 8492709.375, 8492774.507887555, 8493037.623721102, 8493052.131253641, 8494041.550072279, 8494514.614135388, 8494580.351326156, 8494825.202064034, 8495009.824057363, 8495078.82188578, 8495651.5625, 8495778.125, 8496490.55557394, 8498037.552791128, 8498440.441818925, 8498775.984167939, 8499544.023572907, 8500011.936999943, 8500725.402086742, 8504189.528613292, 8505490.625, 8505678.125, 8508118.75, 8517682.8125, 8517860.9375, 8518184.888558948, 8518204.6875, 8518929.6875, 8519791.197636364, 8520153.84357057, 8523792.028991356, 8523865.989254026, 8524391.737104649, 8525544.158190835, 8528963.400764, 8529406.050403737, 8530453.063725553, 8530566.009753546, 8530850.458224688, 8532000.083818438, 8532074.855903381, 8532343.936526742, 8533201.5625, 8534606.701335002, 8535794.452033713, 8537247.833647728, 8537263.041319203, 8537268.466129826, 8537478.275041087, 8537601.652650768, 8539919.322641907, 8540067.1478634, 8540700.781932645, 8542074.57775169, 8542369.86424498, 8542431.25, 8542961.222704615, 8543651.86548861, 8543763.129149327, 8545046.745564122, 8545152.142032249, 8545410.9375, 8547312.5, 8549117.067863887, 8549494.574314792, 8549728.018913612, 8550015.625, 8552401.593081921, 8552419.221911436, 8553280.995083911, 8554655.882751679, 8554765.076817032, 8555395.3125, 8555675.0, 8557964.0625, 8559495.950489854, 8559651.918708634, 8560309.387852738, 8561318.120800743, 8563559.083531905, 8566023.538983157, 8568182.8125, 8568352.74354939, 8568400.4602873, 8569267.258244194, 8569878.808268836, 8570185.9375, 8570453.125, 8570500.95606059, 8570631.331419557, 8571009.05757575, 8571277.71758017, 8571884.375, 8572441.812903406, 8572865.625, 8573304.28234928, 8573486.068567473, 8573544.28934488, 8579031.061492302, 8580196.011078946, 8581947.632176781, 8581990.625, 8582729.03127353, 8582855.666399457, 8583788.518552868, 8584122.56300104, 8584154.727909518, 8585693.729425345, 8585915.599194054, 8586463.926937932, 8588182.8125, 8588795.455652231, 8589039.0625, 8589199.816008855, 8589225.0, 8591231.25, 8591850.0, 8592158.138568552, 8592542.1875, 8592978.051945308, 8592990.538633423, 8593556.25, 8594211.83708294, 8594917.335355362, 8595180.90591282, 8597081.323118402, 8597338.624435645, 8597805.17391321, 8598916.391470378, 8599283.659052482, 8599396.449601827, 8599682.430354904, 8599772.095197873, 8599997.075578148, 8600006.986103158, 8600605.783021107, 8600607.631201137, 8601332.8125, 8608264.31123398, 8608877.611135006, 8612901.069748057, 8616028.94750321, 8622079.286209485, 8623640.588382406, 8624793.454584721, 8624812.72520985, 8625328.125, 8627159.375, 8631185.239453647, 8633279.495374236, 8634765.478002522, 8635442.2365716, 8637040.625, 8637055.865446243, 8638750.422636243, 8638756.25, 8641064.0625, 8641094.892766975, 8642173.4375, 8642210.401599586, 8645549.281143278, 8646055.514766468, 8646548.991365304, 8646578.125, 8646806.275411611, 8648174.458584644, 8649115.625, 8649128.213770563, 8649562.232248029, 8650249.590897897, 8651181.66206493, 8651255.600810936, 8651655.61821423, 8651831.25, 8651925.430440905, 8651993.623550495, 8652875.0, 8652878.125, 8653151.516621504, 8653203.125, 8653236.363518061, 8653370.102050118, 8664940.971781688, 8665471.702673636, 8669286.54684321, 8669639.922486717, 8669852.582693316, 8673460.512532469, 8675233.837378053, 8675749.830425197, 8680355.944065135, 8685900.703579333, 8692623.4375, 8697207.778504329, 8697923.709847394, 8698532.143216914, 8701157.8125, 8706751.772165949, 8708330.831389826, 8711030.168785762, 8714105.686329193, 8714108.627983637, 8718954.6875, 8719583.337261936, 8724273.4375, 8725889.82642169, 8728248.906677037, 8729190.042788256, 8729309.154162852, 8730528.49411637, 8731487.065788727, 8732926.770501062, 8734154.971890442, 8734376.633115355, 8736218.113917183, 8736565.827377262, 8737383.163794314, 8738534.529091556, 8739004.397932544, 8739145.963955143, 8739518.785162814, 8740538.381302036, 8740788.67560475, 8740859.166860316, 8740868.571119381, 8743259.375, 8743515.721804641, 8744438.721593207, 8744964.457929146, 8745888.64567741, 8745920.380991168, 8745951.471702397, 8748578.125, 8748790.625, 8749031.492455387, 8762089.0625, 8762162.5, 8763274.52929286, 8764153.34753158, 8765029.177379861, 8765838.44478036, 8766310.9375, 8767210.403115503, 8767311.299180701, 8768650.301901992, 8768673.344630158, 8769878.403631035, 8770010.940191591, 8770299.20487606, 8771792.265693732, 8772982.997506421, 8773442.1875, 8773756.413717909, 8773996.839774856, 8774017.832395231, 8774568.445608974, 8774774.8039441, 8775006.085547166, 8777738.632067936, 8778702.285086572, 8778800.432003086, 8780893.75, 8781012.113705069, 8781291.928602053, 8781493.090508536, 8783411.286470145, 8783423.42249637, 8783534.375, 8783725.0, 8783727.837432818, 8783813.830141513, 8783988.135747341, 8786488.799376985, 8786504.71776787, 8786556.25, 8787242.1875, 8787432.78590668, 8787838.035919758, 8788893.335320087, 8789465.40567657, 8789608.569008429, 8801473.003852587, 8804256.174746994, 8809779.98163317, 8815071.629743358, 8816103.125, 8816741.27024478, 8818554.6875, 8822017.1875, 8824422.873140376, 8824617.738313664, 8825348.614009814, 8825639.67240178, 8831060.880830081, 8831871.34785893, 8851614.0625, 8853815.046950446, 8854534.375, 8855732.877693893, 8855910.496078009, 8857051.5625, 8859421.875, 8859582.356367985, 8859601.026751004, 8859798.038191257, 8860010.689735146, 8860293.506409839, 8861242.1875, 8863766.30058529, 8864383.085419992, 8865638.934957217, 8867470.643810686, 8868037.62683688, 8868120.28349378, 8868163.860397283, 8868910.298060194, 8870402.422573496, 8870994.919757294, 8872521.948457135, 8872906.01593633, 8873283.440593954, 8873361.020700788, 8873539.473356113, 8874076.5625, 8874277.142092638, 8874335.08454452, 8878416.986343212, 8880738.47711403, 8887545.3125, 8888212.169722905, 8907389.0625, 8907473.089660468, 8907603.02000706, 8913755.772190984, 8914859.225369865, 8916397.878922803, 8919437.901703224, 8919561.636965502, 8920540.254518623, 8920820.01792198, 8926506.25, 8927881.788972648, 8928301.5625, 8929632.062710593, 8939407.8125, 8939451.995621681, 8939692.68691763, 8940370.535467837, 8940623.340407087, 8940915.87784235, 8941686.755188257, 8942972.712198654, 8948918.10754359, 8954662.5, 8962393.722703883, 8963485.31831645, 8969945.3125, 8972947.994375644, 8975493.75, 8976699.710825425, 8986381.821024345, 8988474.851701848, 8993782.85833366, 8993959.375, 8994390.294717459, 8998760.792315366, 8999667.1875, 8999865.625, 9000112.252038062, 9003938.502817975, 9004003.617045145, 9009910.883461261, 9016414.0625, 9017329.105599474, 9018660.068443064, 9018675.18876845, 9019827.13621212, 9019944.213990733, 9019945.3125, 9020322.524274744, 9022398.4375, 9022808.221339092, 9023574.483506769, 9029839.0625, 9030572.601352954, 9030779.666663922, 9030783.480372554, 9032007.161785612, 9036220.987859031, 9037309.65123853, 9037752.60824263, 9045821.749815218, 9047446.4827378, 9054462.5, 9055637.382770607, 9056357.8125, 9082595.571012894, 9089715.457165862, 9090387.262590123, 9093301.5625, 9093557.330351464, 9103115.334847696, 9103164.0625, 9103181.258917743, 9107110.385593614, 9113423.556430949, 9114827.67857789, 9119754.443291064, 9131631.470766122, 9132923.323763318, 9133404.080830375, 9134678.844557691, 9138868.33894566, 9142382.8125, 9142654.04522689, 9142823.32037884, 9143242.059560679, 9143445.177393805, 9145236.408410728, 9146569.065985126, 9147851.480437148, 9147881.25, 9147903.100869073, 9148368.937557282, 9148378.125, 9148595.3125, 9148729.260383219, 9148955.953903746, 9149037.5, 9149050.29805427, 9149188.489870029, 9150687.5, 9150863.13288378, 9151950.388724685, 9152021.722799258, 9152290.144716717, 9152696.303181509, 9152996.466382572, 9154314.0625, 9157693.75, 9159553.022180889, 9165528.014557743, 9169684.814754447, 9175675.099575121, 9178655.717591241, 9181231.124902576, 9195626.345444482, 9195652.040872674, 9200065.079769943, ...], [91.31736285766164, 5.087785263767855, 45.052236988484374, 6.872106116264968, 89.9049978519968, 57.61153838540349, 60.335109204728546, 56.50620726362571, 67.75156305963505, 64.04072071455278, 5.9734399541420204, 8.594616028782333, 37.276792195959715, 15.37563954245141, 37.08313264079112, 11.413823182218156, 8.842912126399387, 32.456636128898616, 8.272804392087394, 10.941164353008823, 5.443752691891452, 25.241473365823065, 23.394372460566537, 19.90918546092244, 97.72036793151695, 30.761897741071905, 9.080097330905648, 13.595038967527454, 12.775845317352488, 18.48994564844444, 5.9890560870579055, 20.714119198945035, 9.682723723074485, 30.44285942397246, 22.698186213009954, 19.524083167214354, 6.788659390396112, 5.3364036869086595, 12.688284874497507, 90.49542935837042, 17.935206370894665, 148.93445496335215, 38.44660441427288, 28.007724622835624, 39.50309506160949, 5.52357370388182, 37.64899424952158, 101.80073624655242, 56.78789532306556, 8.666953165928744, 6.359357326733558, 8.874385575214927, 31.9002238516935, 18.784090870384276, 16.010732073044004, 32.68193681097346, 69.68013775510968, 99.4557947914347, 15.864977724485193, 6.185854564895941, 27.416989444646298, 8.544081524591446, 18.35001110249047, 28.87269765184386, 24.315237427237022, 115.02183723730151, 41.85492910888777, 8.566086744854093, 13.25333507558831, 67.30914747910674, 8.581797091552621, 20.2107820055082, 39.50077108927869, 5.341738187761871, 14.173655895973027, 62.542175705198886, 74.36211365561348, 42.100166069033264, 21.126083553111044, 35.96070377411215, 12.667001548702272, 33.12264128411976, 43.71223523918664, 82.39006220858826, 12.988543155014717, 15.786499779577687, 5.744210949344101, 7.577288324293709, 17.992689890144376, 107.64368016312585, 5.594512098388063, 49.79260265898796, 159.86346776320443, 52.67325617193168, 5.890215442818324, 79.19212931524059, 18.951131896968093, 13.90298273385287, 15.249596801623564, 26.225854884212108, 40.17348803159343, 24.072835304182394, 14.513627664595452, 235.08939658471232, 28.095499171511527, 83.33620390630391, 140.79726232557135, 29.659772543855365, 29.578362399174722, 5.934898311261309, 7.30492866135288, 36.65295154410127, 24.32739852373664, 10.572744120581932, 17.514483474044923, 51.953816342061025, 12.241953270030772, 117.89993521497996, 17.088430730242365, 41.180145830031876, 20.290965255866723, 26.459195067761087, 28.430734015546875, 14.276405783648725, 72.194690234341, 8.034662685835636, 29.765158627229155, 6.105378051321671, 56.122687108367536, 92.72069752256411, 83.54220532050773, 16.56783818265366, 25.472433433295, 12.54521684168391, 5.601665209480424, 50.76531150028307, 88.67338645276106, 121.75894092954503, 14.664637614405558, 67.15303956384707, 26.371769888290316, 41.300754160346855, 21.0868621036324, 7.57076906906653, 95.20149495026877, 5.134558484496077, 5.761092499754667, 21.230289493403085, 6.853035922350073, 72.2062316390921, 36.18077406090596, 51.27265387878192, 10.903765095088904, 24.99503574217071, 30.1482924045271, 70.72630541603331, 25.3251310408343, 36.17459314182463, 98.73821452595945, 22.063999309694662, 42.15048767342932, 7.525759633984186, 14.643303961710805, 19.604487754342472, 36.099386757812226, 50.810783987493295, 68.13510858926321, 51.68021404311861, 13.597715864737976, 43.36714548181894, 41.51784648059065, 12.397286190171991, 60.870831885509745, 35.23322711795419, 5.693493201900754, 20.010293557225772, 36.16422087849964, 5.132298163774936, 18.249142164099936, 14.967810693754574, 40.501658504329704, 56.76495452738143, 13.30931365829543, 58.98441518401493, 10.727707390875604, 33.928375408644605, 18.642932218799643, 16.97969794073769, 12.417985843927742, 9.709279399090542, 18.467336301487343, 82.51952666977087, 48.53213774818204, 88.58552251843024, 27.03567363138814, 5.371559200464686, 14.989233156628542, 39.35046641193272, 78.20735069303035, 31.132326450828895, 9.41388922305744, 7.150244479599669, 12.990439191006317, 10.636507658633255, 47.234300839657976, 23.1286657578993, 59.06672390879199, 29.57431820594929, 71.49716660242578, 21.121432248163327, 17.610520634647074, 45.86685190545603, 31.960645766422044, 49.084231231367475, 25.816508724592985, 23.70856527230742, 70.15344238744328, 37.83056224472948, 11.978068352997616, 169.86501406249275, 6.1306024117165245, 108.56464187273198, 22.20342029711156, 39.149487105366624, 8.020846137506235, 76.35346702027394, 34.05238381605599, 58.79743978271759, 24.94726162506913, 6.5248043323743845, 79.38967565129995, 35.33188584568896, 52.69448587336859, 159.485482981752, 151.27130629562646, 32.44999563933242, 24.354518946409037, 51.98192231006073, 60.19036480981589, 27.950861107306956, 67.8156547674773, 23.21222806006354, 34.82363322407991, 28.498540915872994, 11.623230014229353, 6.169083940437779, 108.64620600544403, 65.01285811486811, 24.04881458550187, 5.025684256816691, 90.48750175650525, 32.48099148453147, 47.81519325256729, 14.890981257870632, 10.049784509933131, 43.451962818513906, 5.867634476848306, 22.89296835745519, 81.50992755986054, 62.83672915986524, 72.14743689792343, 13.684934110042231, 59.2783348506655, 81.47828076862578, 39.843230036466224, 23.911744348608902, 71.53181077952644, 7.742989961896166, 55.77986109870231, 65.35519158968357, 98.09807634606187, 25.950387274852403, 39.09133458699226, 43.35708017387284, 16.294543998285825, 20.432745555516245, 70.18245943381226, 28.54621790601627, 64.83959381445828, 6.829460131100459, 70.29018141658034, 13.830926424666298, 52.37778724893998, 38.52600705860049, 134.05144789750787, 56.49609944858172, 49.4151826098588, 5.2546252628298715, 20.44120518680452, 14.59126683716398, 5.572857069342857, 12.85315850916825, 5.819240237750784, 33.29785298874397, 5.147570728505096, 15.886337389244705, 121.50459308096262, 78.27800883666934, 64.34313912921674, 35.74945613134141, 8.064016058384585, 30.210069720611756, 37.84603669033999, 34.78598049302911, 9.291571465844276, 25.825797974556174, 15.879313278119087, 21.003446372851876, 20.96969207675414, 23.70544311710117, 22.92654998895804, 95.99806088001449, 23.880811501705008, 16.820704710261527, 5.863144036976111, 27.280775440970107, 24.564920701910122, 30.966157644594663, 58.51413925458132, 28.26511845639325, 45.77446467846163, 26.005774229523368, 26.597255638522967, 23.731575549206774, 11.320733014225056, 5.710008712143087, 48.93009367772184, 7.188601005918279, 27.410329927885947, 18.73587697917351, 16.309510018368155, 18.24874910463899, 126.08360596645622, 33.39443882756984, 129.56578912310655, 64.94548066444545, 8.118858123982164, 57.872522222795844, 66.2699075034571, 63.10787515752687, 40.28956387766391, 80.45026779271574, 8.021057036578505, 162.3434761328746, 68.98581501725141, 9.26602423738561, 28.30372299397119, 39.11534880650134, 32.38295467922894, 105.56430963529031, 25.688719002439598, 12.345612640708817, 31.33722215728187, 24.978242515537296, 98.01298774941918, 7.341219609197819, 31.457614646787977, 34.08913315360798, 56.652499134680504, 100.40657295326392, 65.48617524832416, 20.74708031151143, 61.68564262445234, 27.393368258349444, 71.37782799798887, 17.664100935905385, 10.395539389793067, 135.4274447541994, 58.400646927887095, 20.09257510189064, 39.07855832889495, 6.280770281740686, 65.53540098436494, 61.03710239693926, 15.18167995860735, 14.155010532765049, 17.477666071797128, 72.28737137535644, 125.245474164339, 45.907095992287246, 17.446104777361942, 30.336270531958487, 14.66504221809857, 119.96146081898499, 25.307112127056758, 8.292696385571249, 20.89655309069691, 23.816659516818234, 21.602924964010143, 49.99191243709756, 19.656241438418967, 19.785757715919438, 55.09980410387634, 250.73568637036178, 149.7210740252924, 21.337402664806348, 17.103879202661822, 22.17575048869928, 27.26302590666464, 42.99900544152091, 62.65148354917905, 15.668704936129673, 24.080322250937584, 7.863498510653818, 28.782980644889832, 33.25497088277157, 19.88706836665866, 7.246415950485777, 5.245466209429035, 75.25980286866948, 13.643871717340888, 7.167818769296533, 10.74117151418163, 52.453961285881405, 10.58992503126165, 21.774646714028876, 10.212780226375752, 136.79529279483293, 29.960022915437264, 33.30404468169633, 18.031738977165393, 56.428776402146326, 69.46867371363093, 46.671405891891624, 53.724751247074884, 11.331034128069545, 89.77762752223775, 33.09002736404683, 16.545707216221274, 14.676228494251468, 11.310415242294761, 72.1000116145869, 9.541188567390307, 13.944538254326652, 13.941880782402848, 5.274473951465512, 177.06174353481242, 5.933590614948698, 35.91695415603803, 73.91362132026217, 25.704538886596282, 36.98268851774555, 5.797680855075804, 37.129187147804814, 43.360394487296446, 124.41716833844305, 20.035359622189752, 98.96773502434155, 68.94465379638504, 5.829356490509644, 18.747529373742626, 34.04508922496395, 75.76877135095205, 92.25525771649319, 29.252059899898324, 19.188461597781433, 47.68342783083804, 31.704477386378557, 154.78751316191827, 17.06625811800098, 85.96606703224482, 15.233092433475996, 80.44961822884333, 58.873474780663685, 11.42303094116757, 138.87976599527514, 6.098498527770486, 74.10855210692564, 14.761719989116381, 54.73612119915627, 6.942060377040113, 54.93434054137383, 36.25083113949423, 55.19305872585866, 102.64678662158025, 37.95185169921569, 12.619496990393454, 32.3724885632955, 83.12279355779563, 15.017216901995065, 12.326959627053075, 140.30676843559903, 22.773636409708494, 25.626506533725117, 30.343824626648544, 117.8067338016911, 87.96109725391642, 22.85608113739068, 9.05717300362746, 92.84665827121837, 67.82616347127694, 21.61100794788175, 61.27929261731349, 150.32592760091666, 65.7045981570606, 37.55528359288822, 9.739662585955863, 12.996797309544853, 36.1183431853071, 61.328980827782296, 36.69467496445333, 6.34044105329623, 16.862025145800384, 27.780596060787957, 31.29545826266444, 29.901689257057093, 25.940178967136852, 33.49732277314638, 109.70617200463292, 31.157908825573752, 27.812371912051283, 14.141234002044797, 19.156964664266525, 17.944120977177047, 33.475075843471515, 83.13593652870256, 20.065161720351863, 18.445198681531558, 119.95216009398274, 24.095544941651045, 47.546318007051966, 28.677477954893163, 28.6671688575875, 76.80990060774968, 83.11377442663309, 28.620819774008964, 45.484777895678356, 41.51738124039651, 7.620163268988213, 11.245577982702324, 14.537872107026438, 5.0401406267352575, 83.1836358458745, 51.53785218831368, 170.28980941541798, 17.768234057808996, 89.26208795433351, 20.821093142026342, 35.7097831004154, 5.307551297843419, 18.56154344501635, 19.427177127570644, 37.066732179063465, 50.7826571890615, 15.109658505496514, 58.675098831576136, 83.26574404003941, 59.47566135381027, 12.290148415666849, 5.411205965271069, 18.76988953999075, 61.49114198538925, 17.763658339717136, 8.353104987022892, 25.04748621561545, 5.66735681189705, 39.81667947972121, 32.92459095668097, 11.45895079180056, 29.126519796546095, 61.49278108331157, 30.03756007376317, 40.61769529153102, 14.683331856281583, 20.472716250369025, 6.458754334828512, 50.96312363994484, 102.8747678135601, 33.393672446306496, 26.389663831872095, 17.07562971190386, 48.106754507123945, 34.98408498361434, 38.59851703521675, 106.09133876136829, 76.12956830783907, 114.24039109558396, 31.981908210920356, 74.35607072964434, 17.68973897034245, 93.00639276457993, 84.6571137142654, 21.87572083419189, 15.821630861183461, 95.08999916202693, 12.9038905024653, 5.39089808411576, 11.03326281574551, 11.787530953611414, 19.19273543825907, 11.261297551673646, 28.25868140458985, 98.61854539662856, 50.90581898952688, 11.914949148045771, 37.45723644945633, 25.269706128705568, 17.503135691351517, 9.102380269773665, 36.347660787781734, 25.070793110987267, 18.428134788602218, 11.066312324665574, 12.618147047370984, 25.95472961700643, 8.062951967577563, 57.80667437160222, 35.184558293938224, 59.30757460965153, 94.96293725480746, 26.204869425065322, 18.747871175258968, 32.698176218564704, 73.63532454151763, 14.504311141221514, 17.745844976471542, 26.58996067204867, 34.25148842351149, 15.059368807097805, 6.563702615940539, 63.376940039883735, 7.028147432216954, 73.73873856317735, 40.187195770536675, 32.60153185800601, 62.80912819405029, 18.096702519709805, 51.63357001454594, 9.34229458592634, 60.62110568269799, 82.32562412047777, 93.93546411314917, 31.65423179836113, 22.763243152348934, 8.545968384131092, 15.40909879804698, 108.22870977701973, 56.14514151237748, 53.16161048688219, 20.49319235884041, 29.821800029582242, 23.530693668878456, 13.586960466312382, 37.729045141478956, 22.842452856353884, 43.2286740217602, 13.732130240411504, 90.45809593825423, 7.810697436418146, 39.79837946923193, 12.42882754013257, 12.561001212372375, 45.57469880070873, 20.064431946889055, 126.62399685928798, 51.812230445125444, 79.61620157487107, 129.7867901519937, 39.92773446823304, 28.024132202871087, 72.06995829363714, 57.1750496524321, 23.058539725401968, 49.17371087011552, 55.16384556968879, 30.33195978742782, 73.59392615954529, 177.27945744198823, 9.623219889967038, 34.17428692550006, 27.158491736773517, 26.925912885146982, 31.872894720156282, 12.900953525162324, 16.84970955746589, 53.63116118475637, 19.199693938585167, 6.043699042023037, 10.750068958313992, 6.9268228163368235, 19.579215290541637, 184.95774871874352, 46.220963193262236, 69.72045590411233, 6.292876994846867, 62.55399945784352, 21.82895162622858, 82.44017229509738, 99.91746057100536, 85.10105217589663, 44.24924313860987, 5.778398801959238, 21.679715243522647, 22.537734950062756, 15.59020591241299, 52.96026787233721, 23.350479257994103, 38.943312298029966, 44.55903205393976, 28.919533565861265, 70.48548181800409, 106.21162418764891, 5.400353312372642, 67.42333955204322, 6.428452642369309, 16.840915671784686, 38.207307808345035, 85.3135590294935, 13.551388891097876, 51.971161059498776, 17.89235471884495, 20.940321650105528, 5.761511040905264, 9.848179571204073, 59.183375719257626, 148.18252177426226, 85.55846024311936, 80.45622452310269, 27.599658497158277, 41.88099424612108, 78.73283187839581, 20.35815393097728, 7.384181425713306, 34.248311208927106, 48.59757006707612, 86.86451879359802, 14.48049465131895, 28.55227403816147, 88.20848271765313, 43.06709455190524, 227.83363277819763, 66.53369751670078, 43.436081654928415, 91.16787091979725, 14.322989962043144, 6.5870506227597705, 7.367486673640403, 23.96992153693587, 28.0884148513771, 31.741631847852027, 14.33229862461346, 39.13006122740001, 70.48243925838844, 94.55532795369183, 22.85630941242113, 20.706595838513508, 49.03702020769883, 31.597243936904537, 197.24973839981166, 41.840274338707474, 9.774453631283572, 13.154984886789668, 68.45927840942522, 74.20310975194904, 77.08669247863472, 58.638633402476565, 18.955210542204107, 85.35001217973473, 156.43030926379345, 24.817499439335897, 47.95833622438438, 46.46317449501798, 6.805755199798801, 21.36121042552181, 9.39183482740395, 18.109950832313757, 24.493859784972464, 18.260498873177184, 21.115936070995435, 10.703374185754548, 20.895804739879534, 15.077249033700715, 7.956453336406127, 22.70080276961519, 148.96042042757495, 8.194194549752531, 44.97293644174877, 30.122437150326164, 19.418006768009942, 19.160633823232565, 15.832446021477075, 18.86052552896858, 51.534511243149666, 48.18821161121917, 90.8339102831585, 126.43134327883917, 41.5032308731504, 211.51649633729772, 13.391853202305235, 6.808761630704521, 125.25531506707863, 20.01597150854136, 71.21638206944797, 27.51362985894343, 24.712568471508053, 11.634836718184138, 32.77627998533926, 16.121706885710935, 64.1710309551234, 18.98027195948322, 15.248165313857816, 7.17094852514134, 34.550128682877364, 42.74791247757665, 27.84636252491324, 96.09925219683646, 38.53993172092726, 31.704669716183684, 37.0836961823034, 22.216331693235574, 27.52249482142077, 5.304620690945236, 46.7553947922008, 22.707666613649682, 48.959331623175544, 28.040290842500994, 6.543223088611372, 68.43072924459932, 50.9855552705116, 104.65643232111456, 23.910863514976942, 24.65501240421011, 29.371612503766478, 24.23350745964228, 5.166067102798395, 50.234763850123585, 79.30741378521464, 14.841107754197331, 17.471488928920742, 97.97228823754845, 14.166631620014085, 8.731712461923212, 62.24667549438266, 14.662233576733692, 11.63590882477438, 24.476139783367667, 30.995800366700582, 27.115243282358254, 29.185953364269945, 126.03224810104197, 13.153169865322125, 17.559155195483438, 17.64727570156615, 12.236693805647654, 7.582868936001936, 52.27574196956778, 62.54206760678325, 54.87663561594949, 61.49650400219641, 82.04006494090271, 5.089866184046796, 78.66913211589475, 67.48519722896509, 33.899260328711364, 21.143746514043837, 9.015142691552024, 40.62767515526082, 47.45355767374061, 71.78004376894285, 20.881456923233408, 49.957331160597036, 20.965934671692604, 11.688314821948403, 144.01492149989366, 53.50697515343715, 81.7441266639616, 33.64853877066328, 86.44523778792939, 62.181044143947524, 96.52277403004322, 56.58443822146958, 20.17038705621608, 11.260293915610498, 29.98552369973916, 59.33491684883325, 8.618857413500443, 27.969209269237712, 20.482681664234164, 26.912087219778424, 81.06316424429481, 23.49430889519421, 36.791841257727604, 78.28848766992168, 9.244176023616394, 13.387235596303604, 13.363814136224025, 76.28658376963298, 67.30351020798537, 12.430795605814287, 22.890339130732052, 135.2168293237891, 59.99006131775489, 17.489363545410313, 50.568125553943126, 22.09536313223224, 60.45842756804718, 127.29409678857681, 70.12225517106343, 84.97660626302124, 51.71898816809632, 16.00155525085293, 11.322448937389606, 7.936971463849867, 65.54241559647087, 66.62790288300405, 9.308428923569874, 20.38123065711645, 35.21889477881264, 58.22469036567506, 101.7496367306049, 23.89001343250043, 12.155306503978816, 37.625763598748975, 127.38660262168884, 35.44696401176068, 6.699312206341681, 7.551557574643391, 34.529309455627015, 29.47665551166376, 10.761051345932238, 29.944418017212726, 6.865883041813316, 113.24258558050451, 33.19790172205847, 13.107200322666825, 186.70376153025563, 26.00160438657575, 22.91391892912355, 17.063966523556665, 85.27854735430893, 18.16949954607486, 60.99253490235009, 5.844863118939432, 180.47099053892705, 44.008878787101835, 18.688088102090035, 40.18166620783142, 99.1518625643725, 136.35257601830722, 76.34172849587884, 16.11045595137014, 45.4097475042036, 26.273985094746557, 6.218879110594701, 95.36759605733745, 77.65653362914937, 74.09077211603312, 11.55734161071654, 18.869802893373063, 40.253469513752236, 41.10063663115089, 7.000226166608181, 23.87735267683601, 124.16151350270724, 30.679313448701013, 16.923960226421663, 64.00364472588979, 102.5274576188915, 14.085804391569269, 15.855485300984821, 74.73136555369382, 17.536617855582094, 21.402039792919002, 44.93718989606003, 37.72728568657577, 20.1822843155167, 18.82296765669134, 26.22915117412107, 55.036304057040965, 102.80383155629553, 46.13280139914356, 85.15099184798703, 33.147548446039266, 43.73872483618523, 30.153555999791863, 73.87831297063484, 70.41495582599507, 22.252322713413648, 31.564341859488266, 46.343975772955915, 9.59681617705741, 16.97478264653787, 41.57409308065608, 23.254509507803323, 22.6473388749721, 66.03128193419593, 6.671265757008926, 8.890569848579261, 44.963167745242366, 32.04100707711456, 30.608476224899757, 42.51766939373578, 10.959357709748137, 136.58569198653393, 15.335129941672706, 14.133443526198779, 49.526446004473115, 89.64273553177105, 17.14341393661757, 8.909335708910621, ...])
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);
([6685917.727128736, 6749116.637625817, 6750510.9375, 6873948.958173729, 6937635.777300365, 6959483.526765091, 6977151.5625, 6977769.206718713, 6980578.450691112, 6982693.75, 7050511.320188891, 7208103.665367451, 7211034.375, 7238938.255214813, 7239610.341811118, 7239843.925648366, 7241955.609662337, 7250945.3125, 7257071.848864057, 7258151.439785235, 7263694.885976114, 7267262.30838188, 7268695.995306626, 7290294.637570483, 7291198.145836723, 7293627.985841622, 7293834.062047307, 7294019.907863381, 7294674.286009212, 7294699.135069661, 7295638.0530041605, 7296000.891849707, 7296658.200687533, 7297207.8125, 7297312.112875784, 7297711.777025332, 7298186.062197217, 7299007.650578924, 7300549.249353649, 7300715.767111626, 7301319.362523632, 7325703.125, 7327126.517199781, 7329673.410830619, 7330526.5625, 7333237.302548052, 7336162.168080811, 7337984.375, 7338792.1875, 7349410.031116817, 7360555.383705647, 7397177.530074194, 7397409.149148168, 7401014.172631263, 7402615.879830735, 7407929.6875, 7409394.52386233, 7416140.084354872, 7416922.769782367, 7417997.7653486105, 7419477.187152638, 7419880.14464399, 7419914.7392515745, 7420612.5, 7421770.619045592, 7423593.75, 7427176.670075179, 7433233.3061280325, 7435134.9287379775, 7436512.296044005, 7436889.58194395, 7437373.483433773, 7437421.590510016, 7437454.682144075, 7438008.759792862, 7438237.5, 7438906.949167701, 7439117.1875, 7439442.221716875, 7439849.175845516, 7440302.365327366, 7440745.3125, 7440815.625, 7440852.827806608, 7441457.184461187, 7442100.2053327225, 7442711.510332255, 7443051.490179389, 7443541.24665721, 7444373.4375, 7444426.203960412, 7444655.602267117, 7444923.4375, 7445026.293809609, 7445235.354773849, 7445823.069994126, 7445966.388358383, 7446409.072951722, 7446814.402430709, 7446821.836294429, 7448440.94149729, 7448876.2305943975, 7449562.944720576, 7452692.2044005385, 7452767.733247703, 7452989.6367764445, 7453050.0, 7453360.810594801, 7453689.0625, 7453695.260598181, 7453931.904837452, 7455418.671568484, 7455497.174290091, 7455830.863357044, 7456111.480749001, 7456217.1875, 7456236.849463472, 7456243.75, 7456561.405938452, 7457196.875, 7457236.922996508, 7457462.4481107695, 7458603.120215501, 7458693.563826332, 7458798.4375, 7458885.428676773, 7458965.096124746, 7458965.789533757, 7458971.366976924, 7459046.477374458, 7459051.5625, 7459177.7115259, 7459192.011305748, 7459248.247263497, 7459288.836551005, 7459446.430572105, 7459490.17339945, 7459696.842642829, 7459801.487912145, 7459890.625, 7459927.356239454, 7459932.8125, 7459939.34594329, 7459942.096827896, 7459976.786648474, 7460025.188831519, 7460221.133683878, 7460224.727179278, 7460253.5574955065, 7460259.922633464, 7460376.5625, 7460412.5, 7460646.726843643, 7460774.791544083, 7461007.114974406, 7461015.888733249, 7461310.558241416, 7461492.1875, 7461500.251357351, 7461664.425274257, 7461701.5625, 7461926.343080783, 7462110.856998688, 7462382.995735562, 7462477.853133447, 7462610.9375, 7462850.248343617, 7462903.055006148, 7462935.533784556, 7462995.3125, 7463218.75, 7463549.12181141, 7463614.0625, 7463687.5, 7463749.7895364715, 7463811.603686066, 7463859.375, 7463915.708844877, 7464370.973985554, 7465767.194383376, 7466873.4375, 7467633.096462221, 7469485.431379146, 7470373.4375, 7470899.728076917, 7471423.366131042, 7472972.903771936, 7473039.511038508, 7474219.443687333, 7474712.915466267, 7475484.388469208, 7476003.125, 7476431.16961623, 7476532.471423665, 7476765.5449496815, 7477482.090153488, 7480403.438947474, 7487401.5625, 7487662.5, 7488164.816342674, 7488970.408467612, 7490278.233411937, 7490350.935208382, 7491473.098744747, 7494340.625, 7494344.663143277, 7502869.948309397, 7504221.875, 7510498.4375, 7515432.123768614, 7515948.627143143, 7517471.875, 7519376.166357026, 7521544.944509542, 7524947.411572458, 7525314.98629353, 7528043.75, 7529109.528354045, 7529830.170995102, 7529841.834946349, 7530691.02403705, 7530751.9020853015, 7531296.443375357, 7531312.5, 7532118.211257068, 7532285.807389152, 7532400.0, 7532510.454320986, 7533072.590371858, 7534184.611434598, 7535229.6875, 7535447.403576599, 7536238.828880766, 7536859.951048798, 7537005.423342053, 7539457.8125, 7540873.950696094, 7541365.625, 7545506.25, 7546419.2767607905, 7547333.153548867, 7547837.156638979, 7549519.569122433, 7552891.5252859, 7560489.357962221, 7562235.119352605, 7563329.474248069, 7564859.375, 7568939.527847279, 7569024.037223282, 7570754.726005115, 7572112.678558818, 7573696.875, 7577120.29917988, 7579036.680271062, 7579088.500792201, 7586310.074732258, 7602151.416140715, 7612776.293081562, 7614465.552807845, 7619035.9375, 7619472.420120755, 7627496.875, 7629432.8125, 7634922.258794956, 7637533.069745615, 7639579.527368328, 7641620.683043063, 7642874.459054391, 7643840.625, 7647356.25, 7655068.60467735, 7658801.780906168, 7666265.625, 7680844.064818926, 7685257.896198965, 7686504.010751184, 7695834.375, 7708167.1875, 7711931.571619235, 7715018.75, 7717677.799543282, 7723423.4375, 7723437.644101001, 7731531.909896165, 7733304.576099705, 7735865.062715414, 7738839.397719257, 7739318.137665141, 7740862.404971358, 7740949.230709178, 7742150.632714085, 7742445.383336754, 7744017.1875, 7752533.594340977, 7753539.2901086705, 7754223.4375, 7754255.616626454, 7756273.974650121, 7757154.6875, 7759080.80400529, 7760174.216906541, 7778324.977887489, 7780260.746812626, 7787760.890014239, 7791505.9494297085, 7797112.72605404, 7806468.199472459, 7808991.633379737, 7810668.446445447, 7811977.757616407, 7812580.064349354, 7812618.965647961, 7812825.418816036, 7813016.26805589, 7813040.558836091, 7814309.136173688, 7815024.027410785, 7815693.75, 7815747.0308187455, 7816537.029004531, 7817801.420666807, 7817830.776454075, 7818064.581343788, 7818836.057579229, 7826485.988456571, 7834024.137370078, 7835362.749433438, 7842890.566056907, 7844789.654845266, 7845651.114676483, 7847356.755363049, 7847665.740731264, 7849001.372954081, 7855133.63024679, 7856279.6875, 7867107.481277381, 7869139.0625, 7869153.125, 7873235.230063225, 7876984.375, 7878887.5, 7881910.399215456, 7882121.782837528, 7883353.125, 7883557.734153936, 7883704.767001971, 7886021.875, 7886196.875, 7886453.125, 7886659.212947088, 7887188.160694345, 7887232.8125, 7887951.858338051, 7889735.104702019, 7890766.399888308, 7891660.695428629, 7892485.9375, 7893966.087112148, 7895104.6875, 7895104.6875, 7895568.731258875, 7895833.375686926, 7896023.377616153, 7901923.4869703185, 7905183.380885564, 7913274.474980052, 7913936.612996197, 7913946.564822772, 7916686.847124565, 7919473.4375, 7921148.544171565, 7924778.231510388, 7926803.656367281, 7926877.272350696, 7927870.089623829, 7928219.286975719, 7928235.9375, 7928367.814345612, 7929768.75, 7930291.156569972, 7930629.6875, 7930879.613024061, 7931101.5625, 7931630.116548924, 7934279.699053333, 7938585.375544759, 7945887.850477063, 7948863.573439383, 7950717.1875, 7951831.1633217735, 7953074.551892461, 7953076.309820895, 7956156.678755306, 7956755.274691184, 7959821.019291625, 7960944.221238285, 7961500.345347386, 7962001.495340452, 7965355.909062235, 7966396.184975439, 7967620.229313609, 7971290.350370969, 7971317.853985882, 7972975.0, 7972981.54862905, 7972985.049672161, 7978031.704970906, 7978087.511462202, 7983864.0625, 8018118.362084405, 8018153.298499774, 8025591.92528234, 8025679.925898121, 8043137.12635637, 8066688.586816826, 8069293.07352358, 8069933.614296433, 8074140.625, 8088548.520674261, 8091230.315318002, 8093842.494635875, 8094189.0625, 8095801.5625, 8096992.480040753, 8098704.813801145, 8102589.0625, 8108867.1875, 8112337.467212537, 8117259.303614781, 8121350.113828826, 8123821.875, 8123834.613103288, 8137118.780154229, 8145254.397942298, 8154594.7651414275, 8155025.248843696, 8156087.432984874, 8157118.603250324, 8157240.625, 8158072.210393654, 8170296.604765707, 8172234.152255123, 8173514.0625, 8175526.5625, 8175543.75, 8179028.106761716, 8181480.318966482, 8185018.919560593, 8186067.393170591, 8193356.984833393, 8204436.695211987, 8207662.420901514, 8227456.25, 8229736.896397779, 8234380.483121457, 8262529.979137255, 8276852.97459247, 8278011.740981353, 8280219.214408082, 8281840.625, 8281896.949453166, 8294904.6875, 8299968.75, 8300145.493565492, 8306899.520291163, 8307570.41191167, 8307609.254831671, 8309084.327016671, 8310154.6875, 8311849.270582415, 8313044.559555349, 8313379.6875, 8315335.321100077, 8316174.698406141, 8317067.845411602, 8319308.595013317, 8326015.916382018, 8326410.557574915, 8326551.75684945, 8342044.402094073, 8343132.731174735, 8350294.931952076, 8353401.396408904, 8358011.8423668835, 8364190.264137635, 8371552.047156498, 8381056.3473540405, 8382234.031841165, 8389240.625, 8398015.625, 8399865.136739016, 8400259.685222663, 8403910.293508384, 8411254.6875, 8412734.375, 8414869.196347835, 8422111.875211623, 8424735.9375, 8429809.323102321, 8453796.875, 8456991.183527175, 8458357.913298784, 8459260.898753995, 8459411.501821535, 8460532.938313024, 8461404.332758766, 8461954.6875, 8465321.875, 8466155.704660445, 8467148.81366468, 8467621.647901226, 8467678.916399168, 8468064.96275747, 8468703.125, 8468765.348749928, 8469649.343860578, 8469660.06595756, 8470240.481371693, 8470716.566238385, 8475323.4375, 8475376.935647195, 8475409.162753548, 8475656.516315363, 8475842.1875, 8476748.039636513, 8478046.446474724, 8478654.6875, 8478910.984055545, 8479607.886623818, 8479943.639910968, 8480013.979061082, 8480096.41327673, 8483420.303952765, 8485617.302225936, 8487396.352602584, 8488613.62778201, 8489119.742388282, 8489300.14356991, 8489464.586465595, 8489542.895562885, 8490342.608974136, 8490439.945592647, 8490567.1875, 8490996.918427324, 8491884.375, 8491931.078076802, 8492013.64519693, 8492056.885003315, 8492301.891598303, 8492405.42550542, 8492709.375, 8492774.507887555, 8493037.623721102, 8493052.131253641, 8494041.550072279, 8494514.614135388, 8494580.351326156, 8494825.202064034, 8495009.824057363, 8495078.82188578, 8495651.5625, 8495778.125, 8496490.55557394, 8498037.552791128, 8498440.441818925, 8498775.984167939, 8499544.023572907, 8500011.936999943, 8500725.402086742, 8504189.528613292, 8505490.625, 8505678.125, 8508118.75, 8517682.8125, 8517860.9375, 8518184.888558948, 8518204.6875, 8518929.6875, 8519791.197636364, 8520153.84357057, 8523792.028991356, 8523865.989254026, 8524391.737104649, 8525544.158190835, 8528963.400764, 8529406.050403737, 8530453.063725553, 8530566.009753546, 8530850.458224688, 8532000.083818438, 8532074.855903381, 8532343.936526742, 8533201.5625, 8534606.701335002, 8535794.452033713, 8537247.833647728, 8537263.041319203, 8537268.466129826, 8537478.275041087, 8537601.652650768, 8539919.322641907, 8540067.1478634, 8540700.781932645, 8542074.57775169, 8542369.86424498, 8542431.25, 8542961.222704615, 8543651.86548861, 8543763.129149327, 8545046.745564122, 8545152.142032249, 8545410.9375, 8547312.5, 8549117.067863887, 8549494.574314792, 8549728.018913612, 8550015.625, 8552401.593081921, 8552419.221911436, 8553280.995083911, 8554655.882751679, 8554765.076817032, 8555395.3125, 8555675.0, 8557964.0625, 8559495.950489854, 8559651.918708634, 8560309.387852738, 8561318.120800743, 8563559.083531905, 8566023.538983157, 8568182.8125, 8568352.74354939, 8568400.4602873, 8569267.258244194, 8569878.808268836, 8570185.9375, 8570453.125, 8570500.95606059, 8570631.331419557, 8571009.05757575, 8571277.71758017, 8571884.375, 8572441.812903406, 8572865.625, 8573304.28234928, 8573486.068567473, 8573544.28934488, 8579031.061492302, 8580196.011078946, 8581947.632176781, 8581990.625, 8582729.03127353, 8582855.666399457, 8583788.518552868, 8584122.56300104, 8584154.727909518, 8585693.729425345, 8585915.599194054, 8586463.926937932, 8588182.8125, 8588795.455652231, 8589039.0625, 8589199.816008855, 8589225.0, 8591231.25, 8591850.0, 8592158.138568552, 8592542.1875, 8592978.051945308, 8592990.538633423, 8593556.25, 8594211.83708294, 8594917.335355362, 8595180.90591282, 8597081.323118402, 8597338.624435645, 8597805.17391321, 8598916.391470378, 8599283.659052482, 8599396.449601827, 8599682.430354904, 8599772.095197873, 8599997.075578148, 8600006.986103158, 8600605.783021107, 8600607.631201137, 8601332.8125, 8608264.31123398, 8608877.611135006, 8612901.069748057, 8616028.94750321, 8622079.286209485, 8623640.588382406, 8624793.454584721, 8624812.72520985, 8625328.125, 8627159.375, 8631185.239453647, 8633279.495374236, 8634765.478002522, 8635442.2365716, 8637040.625, 8637055.865446243, 8638750.422636243, 8638756.25, 8641064.0625, 8641094.892766975, 8642173.4375, 8642210.401599586, 8645549.281143278, 8646055.514766468, 8646548.991365304, 8646578.125, 8646806.275411611, 8648174.458584644, 8649115.625, 8649128.213770563, 8649562.232248029, 8650249.590897897, 8651181.66206493, 8651255.600810936, 8651655.61821423, 8651831.25, 8651925.430440905, 8651993.623550495, 8652875.0, 8652878.125, 8653151.516621504, 8653203.125, 8653236.363518061, 8653370.102050118, 8664940.971781688, 8665471.702673636, 8669286.54684321, 8669639.922486717, 8669852.582693316, 8673460.512532469, 8675233.837378053, 8675749.830425197, 8680355.944065135, 8685900.703579333, 8692623.4375, 8697207.778504329, 8697923.709847394, 8698532.143216914, 8701157.8125, 8706751.772165949, 8708330.831389826, 8711030.168785762, 8714105.686329193, 8714108.627983637, 8718954.6875, 8719583.337261936, 8724273.4375, 8725889.82642169, 8728248.906677037, 8729190.042788256, 8729309.154162852, 8730528.49411637, 8731487.065788727, 8732926.770501062, 8734154.971890442, 8734376.633115355, 8736218.113917183, 8736565.827377262, 8737383.163794314, 8738534.529091556, 8739004.397932544, 8739145.963955143, 8739518.785162814, 8740538.381302036, 8740788.67560475, 8740859.166860316, 8740868.571119381, 8743259.375, 8743515.721804641, 8744438.721593207, 8744964.457929146, 8745888.64567741, 8745920.380991168, 8745951.471702397, 8748578.125, 8748790.625, 8749031.492455387, 8762089.0625, 8762162.5, 8763274.52929286, 8764153.34753158, 8765029.177379861, 8765838.44478036, 8766310.9375, 8767210.403115503, 8767311.299180701, 8768650.301901992, 8768673.344630158, 8769878.403631035, 8770010.940191591, 8770299.20487606, 8771792.265693732, 8772982.997506421, 8773442.1875, 8773756.413717909, 8773996.839774856, 8774017.832395231, 8774568.445608974, 8774774.8039441, 8775006.085547166, 8777738.632067936, 8778702.285086572, 8778800.432003086, 8780893.75, 8781012.113705069, 8781291.928602053, 8781493.090508536, 8783411.286470145, 8783423.42249637, 8783534.375, 8783725.0, 8783727.837432818, 8783813.830141513, 8783988.135747341, 8786488.799376985, 8786504.71776787, 8786556.25, 8787242.1875, 8787432.78590668, 8787838.035919758, 8788893.335320087, 8789465.40567657, 8789608.569008429, 8801473.003852587, 8804256.174746994, 8809779.98163317, 8815071.629743358, 8816103.125, 8816741.27024478, 8818554.6875, 8822017.1875, 8824422.873140376, 8824617.738313664, 8825348.614009814, 8825639.67240178, 8831060.880830081, 8831871.34785893, 8851614.0625, 8853815.046950446, 8854534.375, 8855732.877693893, 8855910.496078009, 8857051.5625, 8859421.875, 8859582.356367985, 8859601.026751004, 8859798.038191257, 8860010.689735146, 8860293.506409839, 8861242.1875, 8863766.30058529, 8864383.085419992, 8865638.934957217, 8867470.643810686, 8868037.62683688, 8868120.28349378, 8868163.860397283, 8868910.298060194, 8870402.422573496, 8870994.919757294, 8872521.948457135, 8872906.01593633, 8873283.440593954, 8873361.020700788, 8873539.473356113, 8874076.5625, 8874277.142092638, 8874335.08454452, 8878416.986343212, 8880738.47711403, 8887545.3125, 8888212.169722905, 8907389.0625, 8907473.089660468, 8907603.02000706, 8913755.772190984, 8914859.225369865, 8916397.878922803, 8919437.901703224, 8919561.636965502, 8920540.254518623, 8920820.01792198, 8926506.25, 8927881.788972648, 8928301.5625, 8929632.062710593, 8939407.8125, 8939451.995621681, 8939692.68691763, 8940370.535467837, 8940623.340407087, 8940915.87784235, 8941686.755188257, 8942972.712198654, 8948918.10754359, 8954662.5, 8962393.722703883, 8963485.31831645, 8969945.3125, 8972947.994375644, 8975493.75, 8976699.710825425, 8986381.821024345, 8988474.851701848, 8993782.85833366, 8993959.375, 8994390.294717459, 8998760.792315366, 8999667.1875, 8999865.625, 9000112.252038062, 9003938.502817975, 9004003.617045145, 9009910.883461261, 9016414.0625, 9017329.105599474, 9018660.068443064, 9018675.18876845, 9019827.13621212, 9019944.213990733, 9019945.3125, 9020322.524274744, 9022398.4375, 9022808.221339092, 9023574.483506769, 9029839.0625, 9030572.601352954, 9030779.666663922, 9030783.480372554, 9032007.161785612, 9036220.987859031, 9037309.65123853, 9037752.60824263, 9045821.749815218, 9047446.4827378, 9054462.5, 9055637.382770607, 9056357.8125, 9082595.571012894, 9089715.457165862, 9090387.262590123, 9093301.5625, 9093557.330351464, 9103115.334847696, 9103164.0625, 9103181.258917743, 9107110.385593614, 9113423.556430949, 9114827.67857789, 9119754.443291064, 9131631.470766122, 9132923.323763318, 9133404.080830375, 9134678.844557691, 9138868.33894566, 9142382.8125, 9142654.04522689, 9142823.32037884, 9143242.059560679, 9143445.177393805, 9145236.408410728, 9146569.065985126, 9147851.480437148, 9147881.25, 9147903.100869073, 9148368.937557282, 9148378.125, 9148595.3125, 9148729.260383219, 9148955.953903746, 9149037.5, 9149050.29805427, 9149188.489870029, 9150687.5, 9150863.13288378, 9151950.388724685, 9152021.722799258, 9152290.144716717, 9152696.303181509, 9152996.466382572, 9154314.0625, 9157693.75, 9159553.022180889, 9165528.014557743, 9169684.814754447, 9175675.099575121, 9178655.717591241, 9181231.124902576, 9195626.345444482, 9195652.040872674, 9200065.079769943, ...], [91.31736285766164, 5.087785263767855, 45.052236988484374, 6.872106116264968, 89.9049978519968, 57.61153838540349, 60.335109204728546, 56.50620726362571, 67.75156305963505, 64.04072071455278, 5.9734399541420204, 8.594616028782333, 37.276792195959715, 15.37563954245141, 37.08313264079112, 11.413823182218156, 8.842912126399387, 32.456636128898616, 8.272804392087394, 10.941164353008823, 5.443752691891452, 25.241473365823065, 23.394372460566537, 19.90918546092244, 97.72036793151695, 30.761897741071905, 9.080097330905648, 13.595038967527454, 12.775845317352488, 18.48994564844444, 5.9890560870579055, 20.714119198945035, 9.682723723074485, 30.44285942397246, 22.698186213009954, 19.524083167214354, 6.788659390396112, 5.3364036869086595, 12.688284874497507, 90.49542935837042, 17.935206370894665, 148.93445496335215, 38.44660441427288, 28.007724622835624, 39.50309506160949, 5.52357370388182, 37.64899424952158, 101.80073624655242, 56.78789532306556, 8.666953165928744, 6.359357326733558, 8.874385575214927, 31.9002238516935, 18.784090870384276, 16.010732073044004, 32.68193681097346, 69.68013775510968, 99.4557947914347, 15.864977724485193, 6.185854564895941, 27.416989444646298, 8.544081524591446, 18.35001110249047, 28.87269765184386, 24.315237427237022, 115.02183723730151, 41.85492910888777, 8.566086744854093, 13.25333507558831, 67.30914747910674, 8.581797091552621, 20.2107820055082, 39.50077108927869, 5.341738187761871, 14.173655895973027, 62.542175705198886, 74.36211365561348, 42.100166069033264, 21.126083553111044, 35.96070377411215, 12.667001548702272, 33.12264128411976, 43.71223523918664, 82.39006220858826, 12.988543155014717, 15.786499779577687, 5.744210949344101, 7.577288324293709, 17.992689890144376, 107.64368016312585, 5.594512098388063, 49.79260265898796, 159.86346776320443, 52.67325617193168, 5.890215442818324, 79.19212931524059, 18.951131896968093, 13.90298273385287, 15.249596801623564, 26.225854884212108, 40.17348803159343, 24.072835304182394, 14.513627664595452, 235.08939658471232, 28.095499171511527, 83.33620390630391, 140.79726232557135, 29.659772543855365, 29.578362399174722, 5.934898311261309, 7.30492866135288, 36.65295154410127, 24.32739852373664, 10.572744120581932, 17.514483474044923, 51.953816342061025, 12.241953270030772, 117.89993521497996, 17.088430730242365, 41.180145830031876, 20.290965255866723, 26.459195067761087, 28.430734015546875, 14.276405783648725, 72.194690234341, 8.034662685835636, 29.765158627229155, 6.105378051321671, 56.122687108367536, 92.72069752256411, 83.54220532050773, 16.56783818265366, 25.472433433295, 12.54521684168391, 5.601665209480424, 50.76531150028307, 88.67338645276106, 121.75894092954503, 14.664637614405558, 67.15303956384707, 26.371769888290316, 41.300754160346855, 21.0868621036324, 7.57076906906653, 95.20149495026877, 5.134558484496077, 5.761092499754667, 21.230289493403085, 6.853035922350073, 72.2062316390921, 36.18077406090596, 51.27265387878192, 10.903765095088904, 24.99503574217071, 30.1482924045271, 70.72630541603331, 25.3251310408343, 36.17459314182463, 98.73821452595945, 22.063999309694662, 42.15048767342932, 7.525759633984186, 14.643303961710805, 19.604487754342472, 36.099386757812226, 50.810783987493295, 68.13510858926321, 51.68021404311861, 13.597715864737976, 43.36714548181894, 41.51784648059065, 12.397286190171991, 60.870831885509745, 35.23322711795419, 5.693493201900754, 20.010293557225772, 36.16422087849964, 5.132298163774936, 18.249142164099936, 14.967810693754574, 40.501658504329704, 56.76495452738143, 13.30931365829543, 58.98441518401493, 10.727707390875604, 33.928375408644605, 18.642932218799643, 16.97969794073769, 12.417985843927742, 9.709279399090542, 18.467336301487343, 82.51952666977087, 48.53213774818204, 88.58552251843024, 27.03567363138814, 5.371559200464686, 14.989233156628542, 39.35046641193272, 78.20735069303035, 31.132326450828895, 9.41388922305744, 7.150244479599669, 12.990439191006317, 10.636507658633255, 47.234300839657976, 23.1286657578993, 59.06672390879199, 29.57431820594929, 71.49716660242578, 21.121432248163327, 17.610520634647074, 45.86685190545603, 31.960645766422044, 49.084231231367475, 25.816508724592985, 23.70856527230742, 70.15344238744328, 37.83056224472948, 11.978068352997616, 169.86501406249275, 6.1306024117165245, 108.56464187273198, 22.20342029711156, 39.149487105366624, 8.020846137506235, 76.35346702027394, 34.05238381605599, 58.79743978271759, 24.94726162506913, 6.5248043323743845, 79.38967565129995, 35.33188584568896, 52.69448587336859, 159.485482981752, 151.27130629562646, 32.44999563933242, 24.354518946409037, 51.98192231006073, 60.19036480981589, 27.950861107306956, 67.8156547674773, 23.21222806006354, 34.82363322407991, 28.498540915872994, 11.623230014229353, 6.169083940437779, 108.64620600544403, 65.01285811486811, 24.04881458550187, 5.025684256816691, 90.48750175650525, 32.48099148453147, 47.81519325256729, 14.890981257870632, 10.049784509933131, 43.451962818513906, 5.867634476848306, 22.89296835745519, 81.50992755986054, 62.83672915986524, 72.14743689792343, 13.684934110042231, 59.2783348506655, 81.47828076862578, 39.843230036466224, 23.911744348608902, 71.53181077952644, 7.742989961896166, 55.77986109870231, 65.35519158968357, 98.09807634606187, 25.950387274852403, 39.09133458699226, 43.35708017387284, 16.294543998285825, 20.432745555516245, 70.18245943381226, 28.54621790601627, 64.83959381445828, 6.829460131100459, 70.29018141658034, 13.830926424666298, 52.37778724893998, 38.52600705860049, 134.05144789750787, 56.49609944858172, 49.4151826098588, 5.2546252628298715, 20.44120518680452, 14.59126683716398, 5.572857069342857, 12.85315850916825, 5.819240237750784, 33.29785298874397, 5.147570728505096, 15.886337389244705, 121.50459308096262, 78.27800883666934, 64.34313912921674, 35.74945613134141, 8.064016058384585, 30.210069720611756, 37.84603669033999, 34.78598049302911, 9.291571465844276, 25.825797974556174, 15.879313278119087, 21.003446372851876, 20.96969207675414, 23.70544311710117, 22.92654998895804, 95.99806088001449, 23.880811501705008, 16.820704710261527, 5.863144036976111, 27.280775440970107, 24.564920701910122, 30.966157644594663, 58.51413925458132, 28.26511845639325, 45.77446467846163, 26.005774229523368, 26.597255638522967, 23.731575549206774, 11.320733014225056, 5.710008712143087, 48.93009367772184, 7.188601005918279, 27.410329927885947, 18.73587697917351, 16.309510018368155, 18.24874910463899, 126.08360596645622, 33.39443882756984, 129.56578912310655, 64.94548066444545, 8.118858123982164, 57.872522222795844, 66.2699075034571, 63.10787515752687, 40.28956387766391, 80.45026779271574, 8.021057036578505, 162.3434761328746, 68.98581501725141, 9.26602423738561, 28.30372299397119, 39.11534880650134, 32.38295467922894, 105.56430963529031, 25.688719002439598, 12.345612640708817, 31.33722215728187, 24.978242515537296, 98.01298774941918, 7.341219609197819, 31.457614646787977, 34.08913315360798, 56.652499134680504, 100.40657295326392, 65.48617524832416, 20.74708031151143, 61.68564262445234, 27.393368258349444, 71.37782799798887, 17.664100935905385, 10.395539389793067, 135.4274447541994, 58.400646927887095, 20.09257510189064, 39.07855832889495, 6.280770281740686, 65.53540098436494, 61.03710239693926, 15.18167995860735, 14.155010532765049, 17.477666071797128, 72.28737137535644, 125.245474164339, 45.907095992287246, 17.446104777361942, 30.336270531958487, 14.66504221809857, 119.96146081898499, 25.307112127056758, 8.292696385571249, 20.89655309069691, 23.816659516818234, 21.602924964010143, 49.99191243709756, 19.656241438418967, 19.785757715919438, 55.09980410387634, 250.73568637036178, 149.7210740252924, 21.337402664806348, 17.103879202661822, 22.17575048869928, 27.26302590666464, 42.99900544152091, 62.65148354917905, 15.668704936129673, 24.080322250937584, 7.863498510653818, 28.782980644889832, 33.25497088277157, 19.88706836665866, 7.246415950485777, 5.245466209429035, 75.25980286866948, 13.643871717340888, 7.167818769296533, 10.74117151418163, 52.453961285881405, 10.58992503126165, 21.774646714028876, 10.212780226375752, 136.79529279483293, 29.960022915437264, 33.30404468169633, 18.031738977165393, 56.428776402146326, 69.46867371363093, 46.671405891891624, 53.724751247074884, 11.331034128069545, 89.77762752223775, 33.09002736404683, 16.545707216221274, 14.676228494251468, 11.310415242294761, 72.1000116145869, 9.541188567390307, 13.944538254326652, 13.941880782402848, 5.274473951465512, 177.06174353481242, 5.933590614948698, 35.91695415603803, 73.91362132026217, 25.704538886596282, 36.98268851774555, 5.797680855075804, 37.129187147804814, 43.360394487296446, 124.41716833844305, 20.035359622189752, 98.96773502434155, 68.94465379638504, 5.829356490509644, 18.747529373742626, 34.04508922496395, 75.76877135095205, 92.25525771649319, 29.252059899898324, 19.188461597781433, 47.68342783083804, 31.704477386378557, 154.78751316191827, 17.06625811800098, 85.96606703224482, 15.233092433475996, 80.44961822884333, 58.873474780663685, 11.42303094116757, 138.87976599527514, 6.098498527770486, 74.10855210692564, 14.761719989116381, 54.73612119915627, 6.942060377040113, 54.93434054137383, 36.25083113949423, 55.19305872585866, 102.64678662158025, 37.95185169921569, 12.619496990393454, 32.3724885632955, 83.12279355779563, 15.017216901995065, 12.326959627053075, 140.30676843559903, 22.773636409708494, 25.626506533725117, 30.343824626648544, 117.8067338016911, 87.96109725391642, 22.85608113739068, 9.05717300362746, 92.84665827121837, 67.82616347127694, 21.61100794788175, 61.27929261731349, 150.32592760091666, 65.7045981570606, 37.55528359288822, 9.739662585955863, 12.996797309544853, 36.1183431853071, 61.328980827782296, 36.69467496445333, 6.34044105329623, 16.862025145800384, 27.780596060787957, 31.29545826266444, 29.901689257057093, 25.940178967136852, 33.49732277314638, 109.70617200463292, 31.157908825573752, 27.812371912051283, 14.141234002044797, 19.156964664266525, 17.944120977177047, 33.475075843471515, 83.13593652870256, 20.065161720351863, 18.445198681531558, 119.95216009398274, 24.095544941651045, 47.546318007051966, 28.677477954893163, 28.6671688575875, 76.80990060774968, 83.11377442663309, 28.620819774008964, 45.484777895678356, 41.51738124039651, 7.620163268988213, 11.245577982702324, 14.537872107026438, 5.0401406267352575, 83.1836358458745, 51.53785218831368, 170.28980941541798, 17.768234057808996, 89.26208795433351, 20.821093142026342, 35.7097831004154, 5.307551297843419, 18.56154344501635, 19.427177127570644, 37.066732179063465, 50.7826571890615, 15.109658505496514, 58.675098831576136, 83.26574404003941, 59.47566135381027, 12.290148415666849, 5.411205965271069, 18.76988953999075, 61.49114198538925, 17.763658339717136, 8.353104987022892, 25.04748621561545, 5.66735681189705, 39.81667947972121, 32.92459095668097, 11.45895079180056, 29.126519796546095, 61.49278108331157, 30.03756007376317, 40.61769529153102, 14.683331856281583, 20.472716250369025, 6.458754334828512, 50.96312363994484, 102.8747678135601, 33.393672446306496, 26.389663831872095, 17.07562971190386, 48.106754507123945, 34.98408498361434, 38.59851703521675, 106.09133876136829, 76.12956830783907, 114.24039109558396, 31.981908210920356, 74.35607072964434, 17.68973897034245, 93.00639276457993, 84.6571137142654, 21.87572083419189, 15.821630861183461, 95.08999916202693, 12.9038905024653, 5.39089808411576, 11.03326281574551, 11.787530953611414, 19.19273543825907, 11.261297551673646, 28.25868140458985, 98.61854539662856, 50.90581898952688, 11.914949148045771, 37.45723644945633, 25.269706128705568, 17.503135691351517, 9.102380269773665, 36.347660787781734, 25.070793110987267, 18.428134788602218, 11.066312324665574, 12.618147047370984, 25.95472961700643, 8.062951967577563, 57.80667437160222, 35.184558293938224, 59.30757460965153, 94.96293725480746, 26.204869425065322, 18.747871175258968, 32.698176218564704, 73.63532454151763, 14.504311141221514, 17.745844976471542, 26.58996067204867, 34.25148842351149, 15.059368807097805, 6.563702615940539, 63.376940039883735, 7.028147432216954, 73.73873856317735, 40.187195770536675, 32.60153185800601, 62.80912819405029, 18.096702519709805, 51.63357001454594, 9.34229458592634, 60.62110568269799, 82.32562412047777, 93.93546411314917, 31.65423179836113, 22.763243152348934, 8.545968384131092, 15.40909879804698, 108.22870977701973, 56.14514151237748, 53.16161048688219, 20.49319235884041, 29.821800029582242, 23.530693668878456, 13.586960466312382, 37.729045141478956, 22.842452856353884, 43.2286740217602, 13.732130240411504, 90.45809593825423, 7.810697436418146, 39.79837946923193, 12.42882754013257, 12.561001212372375, 45.57469880070873, 20.064431946889055, 126.62399685928798, 51.812230445125444, 79.61620157487107, 129.7867901519937, 39.92773446823304, 28.024132202871087, 72.06995829363714, 57.1750496524321, 23.058539725401968, 49.17371087011552, 55.16384556968879, 30.33195978742782, 73.59392615954529, 177.27945744198823, 9.623219889967038, 34.17428692550006, 27.158491736773517, 26.925912885146982, 31.872894720156282, 12.900953525162324, 16.84970955746589, 53.63116118475637, 19.199693938585167, 6.043699042023037, 10.750068958313992, 6.9268228163368235, 19.579215290541637, 184.95774871874352, 46.220963193262236, 69.72045590411233, 6.292876994846867, 62.55399945784352, 21.82895162622858, 82.44017229509738, 99.91746057100536, 85.10105217589663, 44.24924313860987, 5.778398801959238, 21.679715243522647, 22.537734950062756, 15.59020591241299, 52.96026787233721, 23.350479257994103, 38.943312298029966, 44.55903205393976, 28.919533565861265, 70.48548181800409, 106.21162418764891, 5.400353312372642, 67.42333955204322, 6.428452642369309, 16.840915671784686, 38.207307808345035, 85.3135590294935, 13.551388891097876, 51.971161059498776, 17.89235471884495, 20.940321650105528, 5.761511040905264, 9.848179571204073, 59.183375719257626, 148.18252177426226, 85.55846024311936, 80.45622452310269, 27.599658497158277, 41.88099424612108, 78.73283187839581, 20.35815393097728, 7.384181425713306, 34.248311208927106, 48.59757006707612, 86.86451879359802, 14.48049465131895, 28.55227403816147, 88.20848271765313, 43.06709455190524, 227.83363277819763, 66.53369751670078, 43.436081654928415, 91.16787091979725, 14.322989962043144, 6.5870506227597705, 7.367486673640403, 23.96992153693587, 28.0884148513771, 31.741631847852027, 14.33229862461346, 39.13006122740001, 70.48243925838844, 94.55532795369183, 22.85630941242113, 20.706595838513508, 49.03702020769883, 31.597243936904537, 197.24973839981166, 41.840274338707474, 9.774453631283572, 13.154984886789668, 68.45927840942522, 74.20310975194904, 77.08669247863472, 58.638633402476565, 18.955210542204107, 85.35001217973473, 156.43030926379345, 24.817499439335897, 47.95833622438438, 46.46317449501798, 6.805755199798801, 21.36121042552181, 9.39183482740395, 18.109950832313757, 24.493859784972464, 18.260498873177184, 21.115936070995435, 10.703374185754548, 20.895804739879534, 15.077249033700715, 7.956453336406127, 22.70080276961519, 148.96042042757495, 8.194194549752531, 44.97293644174877, 30.122437150326164, 19.418006768009942, 19.160633823232565, 15.832446021477075, 18.86052552896858, 51.534511243149666, 48.18821161121917, 90.8339102831585, 126.43134327883917, 41.5032308731504, 211.51649633729772, 13.391853202305235, 6.808761630704521, 125.25531506707863, 20.01597150854136, 71.21638206944797, 27.51362985894343, 24.712568471508053, 11.634836718184138, 32.77627998533926, 16.121706885710935, 64.1710309551234, 18.98027195948322, 15.248165313857816, 7.17094852514134, 34.550128682877364, 42.74791247757665, 27.84636252491324, 96.09925219683646, 38.53993172092726, 31.704669716183684, 37.0836961823034, 22.216331693235574, 27.52249482142077, 5.304620690945236, 46.7553947922008, 22.707666613649682, 48.959331623175544, 28.040290842500994, 6.543223088611372, 68.43072924459932, 50.9855552705116, 104.65643232111456, 23.910863514976942, 24.65501240421011, 29.371612503766478, 24.23350745964228, 5.166067102798395, 50.234763850123585, 79.30741378521464, 14.841107754197331, 17.471488928920742, 97.97228823754845, 14.166631620014085, 8.731712461923212, 62.24667549438266, 14.662233576733692, 11.63590882477438, 24.476139783367667, 30.995800366700582, 27.115243282358254, 29.185953364269945, 126.03224810104197, 13.153169865322125, 17.559155195483438, 17.64727570156615, 12.236693805647654, 7.582868936001936, 52.27574196956778, 62.54206760678325, 54.87663561594949, 61.49650400219641, 82.04006494090271, 5.089866184046796, 78.66913211589475, 67.48519722896509, 33.899260328711364, 21.143746514043837, 9.015142691552024, 40.62767515526082, 47.45355767374061, 71.78004376894285, 20.881456923233408, 49.957331160597036, 20.965934671692604, 11.688314821948403, 144.01492149989366, 53.50697515343715, 81.7441266639616, 33.64853877066328, 86.44523778792939, 62.181044143947524, 96.52277403004322, 56.58443822146958, 20.17038705621608, 11.260293915610498, 29.98552369973916, 59.33491684883325, 8.618857413500443, 27.969209269237712, 20.482681664234164, 26.912087219778424, 81.06316424429481, 23.49430889519421, 36.791841257727604, 78.28848766992168, 9.244176023616394, 13.387235596303604, 13.363814136224025, 76.28658376963298, 67.30351020798537, 12.430795605814287, 22.890339130732052, 135.2168293237891, 59.99006131775489, 17.489363545410313, 50.568125553943126, 22.09536313223224, 60.45842756804718, 127.29409678857681, 70.12225517106343, 84.97660626302124, 51.71898816809632, 16.00155525085293, 11.322448937389606, 7.936971463849867, 65.54241559647087, 66.62790288300405, 9.308428923569874, 20.38123065711645, 35.21889477881264, 58.22469036567506, 101.7496367306049, 23.89001343250043, 12.155306503978816, 37.625763598748975, 127.38660262168884, 35.44696401176068, 6.699312206341681, 7.551557574643391, 34.529309455627015, 29.47665551166376, 10.761051345932238, 29.944418017212726, 6.865883041813316, 113.24258558050451, 33.19790172205847, 13.107200322666825, 186.70376153025563, 26.00160438657575, 22.91391892912355, 17.063966523556665, 85.27854735430893, 18.16949954607486, 60.99253490235009, 5.844863118939432, 180.47099053892705, 44.008878787101835, 18.688088102090035, 40.18166620783142, 99.1518625643725, 136.35257601830722, 76.34172849587884, 16.11045595137014, 45.4097475042036, 26.273985094746557, 6.218879110594701, 95.36759605733745, 77.65653362914937, 74.09077211603312, 11.55734161071654, 18.869802893373063, 40.253469513752236, 41.10063663115089, 7.000226166608181, 23.87735267683601, 124.16151350270724, 30.679313448701013, 16.923960226421663, 64.00364472588979, 102.5274576188915, 14.085804391569269, 15.855485300984821, 74.73136555369382, 17.536617855582094, 21.402039792919002, 44.93718989606003, 37.72728568657577, 20.1822843155167, 18.82296765669134, 26.22915117412107, 55.036304057040965, 102.80383155629553, 46.13280139914356, 85.15099184798703, 33.147548446039266, 43.73872483618523, 30.153555999791863, 73.87831297063484, 70.41495582599507, 22.252322713413648, 31.564341859488266, 46.343975772955915, 9.59681617705741, 16.97478264653787, 41.57409308065608, 23.254509507803323, 22.6473388749721, 66.03128193419593, 6.671265757008926, 8.890569848579261, 44.963167745242366, 32.04100707711456, 30.608476224899757, 42.51766939373578, 10.959357709748137, 136.58569198653393, 15.335129941672706, 14.133443526198779, 49.526446004473115, 89.64273553177105, 17.14341393661757, 8.909335708910621, ...])
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)