workspace { 0 = '23' 0-visible = 'true' 1 = '93' 1-visible = 'true' 2 = '46' 2-visible = 'true' 3 = '88' 3-visible = 'true' 4 = '65' 4-visible = 'true' 5 = '32' 5-visible = 'true' 6 = '34' 6-visible = 'true' 7 = '37' 7-visible = 'true' 8 = '30' 8-visible = 'false' 9 = '285' 9-visible = 'true' active-tab = '0' number-of-frames = '10' version = '30' tab { bottom = '400' cx = '174' cy = '352' has_tab_params = 'false' instr-n = '0' label = 'Tab' left = '10' right = '200' show_cmd = '1' split = '60' top = '10' visible = 'false' expr_view { bottom = '688' compiled-expr = ' vector(number) cash_flows = [27.2,49.47,67.7,82.63,67.65,55.39,45.35,37.13,30.4,24.89,20.38,16.68,13.66,11.18,9.16,7.5,6.14,5.02,4.11,3.37,2.76,2.26,1.85,1.51,1.24,1.01,0.83,0.68,0.56,0.46,0.37,0.31,0.25,0.2,0.17,0.14,0.11,0.09,0.08,0.06]; disc_func glob_df; vector(number) t = (index_vector(40)+1)/4; //quarterly matrix(number) glob_hist_rates; matrix(number) glob_cov; matrix(number) glob_corr; series(vector(number)) glob_r; vector(number) eig_vals; vector(number) idx; matrix(number) eig_vectors; matrix(number) reduced_eig_vectors; vector(number) bond_t; vector(number) bond_flows; vector(number) all_times; vector(instrument) g_bond_i; vector(number) b_ix; //list of bonds used date g_date; matrix(number) sortmatrix(matrix(number) mat,vector(number) order){ number m_rows = n_rows(mat); number m_columns = n_cols(mat); matrix(number) new_mat[m_rows,m_columns]; for(i:0,m_columns-1) { for(j:0,m_rows-1) new_mat[j,i] = mat[j,order[i]]; } return new_mat; } void get_portfolio_cf(vector(number) weight, vector(instrument) instr, date cut_off_date, out vector(number) amounts, out vector(number) times){ vector(date) d, d_red; vector(number) a, a_red; resize(b_ix,0); for(i:0, v_size(instr)-1){ if(weight[i] > 0){ push_back(b_ix, i); push_back(d, instr[i].cash_flow_dates()); push_back(a, instr[i].cash_flow_amounts() * weight[i]); } } sort(a,d); sort(d); push_back(d_red, d[0]); push_back(a_red, a[0]); for(i:1, v_size(d)-1){ vector(number) idx = v_find(d_red, [d[i]]); if(!null(idx) && v_size(idx) > 0){ a_red[idx[0]] += a[i]; // add to already exisiting date }else{ push_back(d_red, d[i]); push_back(a_red, a[i]); } } amounts = a_red; times = (d_red - cut_off_date)/365; } out void init_data(curve_name c, curve_name bonds, date to_date, number periods,number freq_days, quote_side q, number pca_dim, out vector(number) bond_weights, out vector(instrument_name) bond_list, out vector(number) cpn_pct, out vector(date) maturity){ vector(instrument) bond_i = curve(bonds,to_date, q).instruments(); g_bond_i = bond_i; bond_list = bond_i.name(); cpn_pct = bond_i.coupon()*100; maturity = bond_i.maturity(); if(null(bond_weights) || v_size(bond_weights) != v_size(bond_list)) bond_weights = one_vector(v_size(bond_list),1); vector(number) amounts, times; get_portfolio_cf(bond_weights,bond_i, to_date, amounts, times); bond_t = times; bond_flows = amounts; g_date = to_date; all_times = concat(t, bond_t); sort(all_times); all_times = sub_vector(all_times, v_find_unique(all_times)); glob_df = bootstrap(curve(c,to_date,q), ip_linear()); glob_r = series(k:to_date-freq_days*periods, to_date, freq_days; bootstrap(curve(c,calendar(\"SWEDEN\").move_bus_days(k,-1),q), ip_linear()).zero_rate_spot(all_times, RT_CONT)); series(vector(number)) r_diff = change(glob_r); glob_hist_rates = s2v(r_diff); glob_cov = covariance(r_diff); glob_corr = correlation(r_diff); jacobi(glob_cov, eig_vals, eig_vectors); number n_vals = v_size(eig_vals); vector(number) idx = index_vector(n_vals); sort(idx,eig_vals); sort(eig_vals); reverse(idx); reverse(eig_vals); eig_vectors = sortmatrix(eig_vectors,idx); reduced_eig_vectors = sub_matrix(eig_vectors, 0,0, n_vals, pca_dim); //trick to update graph dynamically as g_dates, g_values are global variables local_publish(\"local\", \"update\", [\"status\"], [\"true\"]); } out matrix(number) show_eig_vecs(){ realtime_str(\"update\", \"status\", \"local\", true); return reduced_eig_vectors; } out vector(number) show_eig_vals(){ realtime_str(\"update\", \"status\", \"local\", true); return eig_vals; } out matrix(number) show_corr(){ realtime_str(\"update\", \"status\", \"local\", true); return glob_corr; } out matrix(number) show_cov(){ realtime_str(\"update\", \"status\", \"local\", true); return glob_cov; } out void show_debtstuff(out vector(number) Pr_debt, out vector(number) gradPr_debt) { realtime_str(\"update\", \"status\", \"local\", true); Pr_debt = [glob_df.disc(t)*cash_flows]; gradPr_debt = -t.*(glob_df.disc(t).*cash_flows); // Pr_bonds = [glob_df.disc(bond_t)*bond_flows]; // gradPr_bonds = -bond_t.*(glob_df.disc(bond_t).*bond_flows); } out void show_bondstuff(number bond_nr, out string b_name, out vector(number) Pr_bond, out vector(number) gradPr_bond, out vector(number) b_times, out vector(number) b_flows) { realtime_str(\"update\", \"status\", \"local\", true); if(bond_nr >= v_size(g_bond_i)) return; b_name = g_bond_i[bond_nr].name(); vector(number) myt = (g_bond_i[bond_nr].cash_flow_dates() - g_date)/365; vector(number) amts = g_bond_i[bond_nr].cash_flow_amounts(); Pr_bond = [glob_df.disc(myt)*amts]; gradPr_bond = -myt.*(glob_df.disc(myt).*amts); b_times = myt; b_flows = amts; } out series(vector(number)) show_rates() { realtime_str(\"update\", \"status\", \"local\", true); return glob_r*100; } out void show_debt_flows(out vector(number) debt_times, out vector(number) debt_flows, out vector(number) a_times) { realtime_str(\"update\", \"status\", \"local\", true); debt_times = clone_vector(t); debt_flows = clone_vector(cash_flows); //b_times = clone_vector(bond_t); //b_flows = clone_vector(bond_flows); } out vector(number) show_all_times() { realtime_str(\"update\", \"status\", \"local\", true); return all_times; } out void show_bond_flows_and_rates(out vector(number) time, out vector(number) bond_pay, out vector(number) yld_pct) { realtime_str(\"update\", \"status\", \"local\", true); time = concat(t, bond_t); bond_pay = concat(one_vector(v_size(t), 0),bond_flows); sort(bond_pay, time); sort(time); yld_pct = glob_df.zero_rate_spot(time, RT_CONT)*100; } matrix(number) gradPb(out vector(number) P) { matrix(number) tmp; resize(P, 0); for(i:0, v_size(b_ix)-1){ vector(number) local_cash = one_vector(v_size(all_times),0); vector(number) myt = (g_bond_i[b_ix[i]].cash_flow_dates() - g_date)/365; vector(number) amts = g_bond_i[b_ix[i]].cash_flow_amounts(); for(k:0, v_size(myt)-1){ // check each cashflow vector(number) found = v_find(all_times, [myt[k]]); if(!null(found)){ local_cash[found[0]]=amts[k]; } } push_back(P,local_cash*glob_df.disc(all_times)); //price of bond local_cash = -all_times.*local_cash.*glob_df.disc(all_times); tmp = m_concat_hz(tmp,transpose([local_cash])); } return tmp; } vector(number) gradP(out number s){ vector(number) local_cash = one_vector(v_size(all_times),0); for(k:0, v_size(t)-1){ // check each cashflow vector(number) found = v_find(all_times, [t[k]]); if(!null(found)){ local_cash[found[0]]=cash_flows[k]; } } s = local_cash*glob_df.disc(all_times); local_cash = -all_times.*local_cash.*glob_df.disc(all_times); return local_cash; } out vector(number) get_optimal_weights() { realtime_str(\"update\", \"status\", \"local\", true); vector(number) P; matrix(number) A = transpose(reduced_eig_vectors)*gradPb(P); A = m_concat_vt([P], A); number s; vector(number) b = gradP(s); b = concat([s],b*reduced_eig_vectors); vector(number) weights; vector(number) h; if(n_cols(A) < n_cols(reduced_eig_vectors)+1) throw(E_INVALID_ARG,\"Number of bonds must be greater than or equal to eigenvectors plus one\"); else if(n_cols(A) == n_cols(reduced_eig_vectors)+1) weights = gauss_jordan(A,b); else{ vector(number) c = concat(one_vector(2*n_cols(A),0),[1]); vector(number) b_eq = clone_vector(b); for (number t = 0;t < v_size(b_eq); t = t+1){ if (b_eq[t] < 0){ b_eq[t] = abs(b_eq[t]); replace_row(A, m_row2v(A,t)*(-1),t); } else{ } } matrix(number) preA_eq = m_concat_hz(A,(-1)*A); matrix(number) A_eq = m_concat_hz(preA_eq, v2col(one_vector(n_rows(A),0))); matrix(number) preA_leq_1 = m_concat_hz(identity_matrix(n_cols(A)), (-1)*identity_matrix(n_cols(A))); matrix(number) preA_leq_2 = m_concat_hz((-1)*identity_matrix(n_cols(A)), identity_matrix(n_cols(A))); matrix(number) A_le_1 = m_concat_hz(preA_leq_1, v2col(one_vector(n_cols(A),-1))); matrix(number) A_le_2 = m_concat_hz(preA_leq_2, v2col(one_vector(n_cols(A),-1))); matrix(number) A_le = m_concat_vt(A_le_1, A_le_2); vector(number) b_le = one_vector(2*n_cols(A),0); //h = simplex(-c, null,null,-A_le,-b_le,A_eq,b_eq); weights = one_vector((v_size(h)-1)/2,0); h = clp.simplexclp(-c, null,null,-A_le,-b_le,A_eq,b_eq); weights = one_vector((v_size(h)-1)/2,0); for (number t = 0; t < (v_size(h)-1)/2; t = t+1){ weights[t] = h[t] - h[t+(v_size(h)-1)/2]; } } return weights; } ' expr = ' vector(number) cash_flows = [27.2,49.47,67.7,82.63,67.65,55.39,45.35,37.13,30.4,24.89,20.38,16.68,13.66,11.18,9.16,7.5,6.14,5.02,4.11,3.37,2.76,2.26,1.85,1.51,1.24,1.01,0.83,0.68,0.56,0.46,0.37,0.31,0.25,0.2,0.17,0.14,0.11,0.09,0.08,0.06]; disc_func glob_df; vector(number) t = (index_vector(40)+1)/4; //quarterly matrix(number) glob_hist_rates; matrix(number) glob_cov; matrix(number) glob_corr; series(vector(number)) glob_r; vector(number) eig_vals; vector(number) idx; matrix(number) eig_vectors; matrix(number) reduced_eig_vectors; vector(number) bond_t; vector(number) bond_flows; vector(number) all_times; vector(instrument) g_bond_i; vector(number) b_ix; //list of bonds used date g_date; matrix(number) sortmatrix(matrix(number) mat,vector(number) order){ number m_rows = n_rows(mat); number m_columns = n_cols(mat); matrix(number) new_mat[m_rows,m_columns]; for(i:0,m_columns-1) { for(j:0,m_rows-1) new_mat[j,i] = mat[j,order[i]]; } return new_mat; } void get_portfolio_cf(vector(number) weight, vector(instrument) instr, date cut_off_date, out vector(number) amounts, out vector(number) times){ vector(date) d, d_red; vector(number) a, a_red; resize(b_ix,0); for(i:0, v_size(instr)-1){ if(weight[i] > 0){ push_back(b_ix, i); push_back(d, instr[i].cash_flow_dates()); push_back(a, instr[i].cash_flow_amounts() * weight[i]); } } sort(a,d); sort(d); push_back(d_red, d[0]); push_back(a_red, a[0]); for(i:1, v_size(d)-1){ vector(number) idx = v_find(d_red, [d[i]]); if(!null(idx) && v_size(idx) > 0){ a_red[idx[0]] += a[i]; // add to already exisiting date }else{ push_back(d_red, d[i]); push_back(a_red, a[i]); } } amounts = a_red; times = (d_red - cut_off_date)/365; } out void init_data(curve_name c, curve_name bonds, date to_date, number periods,number freq_days, quote_side q, number pca_dim, out vector(number) bond_weights, out vector(instrument_name) bond_list, out vector(number) cpn_pct, out vector(date) maturity){ vector(instrument) bond_i = curve(bonds,to_date, q).instruments(); g_bond_i = bond_i; bond_list = bond_i.name(); cpn_pct = bond_i.coupon()*100; maturity = bond_i.maturity(); if(null(bond_weights) || v_size(bond_weights) != v_size(bond_list)) bond_weights = one_vector(v_size(bond_list),1); vector(number) amounts, times; get_portfolio_cf(bond_weights,bond_i, to_date, amounts, times); bond_t = times; bond_flows = amounts; g_date = to_date; all_times = concat(t, bond_t); sort(all_times); all_times = sub_vector(all_times, v_find_unique(all_times)); glob_df = bootstrap(curve(c,to_date,q), ip_linear()); glob_r = series(k:to_date-freq_days*periods, to_date, freq_days; bootstrap(curve(c,calendar(\"SWEDEN\").move_bus_days(k,-1),q), ip_linear()).zero_rate_spot(all_times, RT_CONT)); series(vector(number)) r_diff = change(glob_r); glob_hist_rates = s2v(r_diff); glob_cov = covariance(r_diff); glob_corr = correlation(r_diff); jacobi(glob_cov, eig_vals, eig_vectors); number n_vals = v_size(eig_vals); vector(number) idx = index_vector(n_vals); sort(idx,eig_vals); sort(eig_vals); reverse(idx); reverse(eig_vals); eig_vectors = sortmatrix(eig_vectors,idx); reduced_eig_vectors = sub_matrix(eig_vectors, 0,0, n_vals, pca_dim); //trick to update graph dynamically as g_dates, g_values are global variables local_publish(\"local\", \"update\", [\"status\"], [\"true\"]); } out matrix(number) show_eig_vecs(){ realtime_str(\"update\", \"status\", \"local\", true); return reduced_eig_vectors; } out vector(number) show_eig_vals(){ realtime_str(\"update\", \"status\", \"local\", true); return eig_vals; } out matrix(number) show_corr(){ realtime_str(\"update\", \"status\", \"local\", true); return glob_corr; } out matrix(number) show_cov(){ realtime_str(\"update\", \"status\", \"local\", true); return glob_cov; } out void show_debtstuff(out vector(number) Pr_debt, out vector(number) gradPr_debt) { realtime_str(\"update\", \"status\", \"local\", true); Pr_debt = [glob_df.disc(t)*cash_flows]; gradPr_debt = -t.*(glob_df.disc(t).*cash_flows); // Pr_bonds = [glob_df.disc(bond_t)*bond_flows]; // gradPr_bonds = -bond_t.*(glob_df.disc(bond_t).*bond_flows); } out void show_bondstuff(number bond_nr, out string b_name, out vector(number) Pr_bond, out vector(number) gradPr_bond, out vector(number) b_times, out vector(number) b_flows) { realtime_str(\"update\", \"status\", \"local\", true); if(bond_nr >= v_size(g_bond_i)) return; b_name = g_bond_i[bond_nr].name(); vector(number) myt = (g_bond_i[bond_nr].cash_flow_dates() - g_date)/365; vector(number) amts = g_bond_i[bond_nr].cash_flow_amounts(); Pr_bond = [glob_df.disc(myt)*amts]; gradPr_bond = -myt.*(glob_df.disc(myt).*amts); b_times = myt; b_flows = amts; } out series(vector(number)) show_rates() { realtime_str(\"update\", \"status\", \"local\", true); return glob_r*100; } out void show_debt_flows(out vector(number) debt_times, out vector(number) debt_flows, out vector(number) a_times) { realtime_str(\"update\", \"status\", \"local\", true); debt_times = clone_vector(t); debt_flows = clone_vector(cash_flows); //b_times = clone_vector(bond_t); //b_flows = clone_vector(bond_flows); } out vector(number) show_all_times() { realtime_str(\"update\", \"status\", \"local\", true); return all_times; } out void show_bond_flows_and_rates(out vector(number) time, out vector(number) bond_pay, out vector(number) yld_pct) { realtime_str(\"update\", \"status\", \"local\", true); time = concat(t, bond_t); bond_pay = concat(one_vector(v_size(t), 0),bond_flows); sort(bond_pay, time); sort(time); yld_pct = glob_df.zero_rate_spot(time, RT_CONT)*100; } matrix(number) gradPb(out vector(number) P) { matrix(number) tmp; resize(P, 0); for(i:0, v_size(b_ix)-1){ vector(number) local_cash = one_vector(v_size(all_times),0); vector(number) myt = (g_bond_i[b_ix[i]].cash_flow_dates() - g_date)/365; vector(number) amts = g_bond_i[b_ix[i]].cash_flow_amounts(); for(k:0, v_size(myt)-1){ // check each cashflow vector(number) found = v_find(all_times, [myt[k]]); if(!null(found)){ local_cash[found[0]]=amts[k]; } } push_back(P,local_cash*glob_df.disc(all_times)); //price of bond local_cash = -all_times.*local_cash.*glob_df.disc(all_times); tmp = m_concat_hz(tmp,transpose([local_cash])); } return tmp; } vector(number) gradP(out number s){ vector(number) local_cash = one_vector(v_size(all_times),0); for(k:0, v_size(t)-1){ // check each cashflow vector(number) found = v_find(all_times, [t[k]]); if(!null(found)){ local_cash[found[0]]=cash_flows[k]; } } s = local_cash*glob_df.disc(all_times); local_cash = -all_times.*local_cash.*glob_df.disc(all_times); return local_cash; } out vector(number) get_optimal_weights() { realtime_str(\"update\", \"status\", \"local\", true); vector(number) P; matrix(number) A = transpose(reduced_eig_vectors)*gradPb(P); A = m_concat_vt([P], A); number s; vector(number) b = gradP(s); b = concat([s],b*reduced_eig_vectors); vector(number) weights; vector(number) h; if(n_cols(A) < n_cols(reduced_eig_vectors)+1) throw(E_INVALID_ARG,\"Number of bonds must be greater than or equal to eigenvectors plus one\"); else if(n_cols(A) == n_cols(reduced_eig_vectors)+1) weights = gauss_jordan(A,b); else{ vector(number) c = concat(one_vector(2*n_cols(A),0),[1]); vector(number) b_eq = clone_vector(b); for (number t = 0;t < v_size(b_eq); t = t+1){ if (b_eq[t] < 0){ b_eq[t] = abs(b_eq[t]); replace_row(A, m_row2v(A,t)*(-1),t); } else{ } } matrix(number) preA_eq = m_concat_hz(A,(-1)*A); matrix(number) A_eq = m_concat_hz(preA_eq, v2col(one_vector(n_rows(A),0))); matrix(number) preA_leq_1 = m_concat_hz(identity_matrix(n_cols(A)), (-1)*identity_matrix(n_cols(A))); matrix(number) preA_leq_2 = m_concat_hz((-1)*identity_matrix(n_cols(A)), identity_matrix(n_cols(A))); matrix(number) A_le_1 = m_concat_hz(preA_leq_1, v2col(one_vector(n_cols(A),-1))); matrix(number) A_le_2 = m_concat_hz(preA_leq_2, v2col(one_vector(n_cols(A),-1))); matrix(number) A_le = m_concat_vt(A_le_1, A_le_2); vector(number) b_le = one_vector(2*n_cols(A),0); //h = simplex(-c, null,null,-A_le,-b_le,A_eq,b_eq); weights = one_vector((v_size(h)-1)/2,0); h = clp.simplexclp(-c, null,null,-A_le,-b_le,A_eq,b_eq); weights = one_vector((v_size(h)-1)/2,0); for (number t = 0; t < (v_size(h)-1)/2; t = t+1){ weights[t] = h[t] - h[t+(v_size(h)-1)/2]; } } return weights; } ' id = '285' label = 'Expression' left = '8' maximized = 'false' minimal-frames = 'false' n-threads = '1' right = '697' show_cmd = '2' top = '23' visible = '1' expr { label = 'get_optimal_weights' link { a-id = '18' def-h-margin = '4' def-v-margin = '2' lock-resize = 'false' own-recalc = 'false' removeable = 'true' smooth-scroll = 'false' view = '93' column { column = '0' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'get_optimal_weights - 1' n-rows = '1' order = '0' orig-head = 'get_optimal_weights - 1' type = '0' } } } expr { label = 'init_data' link { a-id = '8' def-h-margin = '4' def-v-margin = '2' in_param-0 = 'SEK3MSWAP' in_param-1 = 'SEKGOVTBOND' in_param-2 = '2457668' in_param-3 = '2.5000000000000000e+001' in_param-4 = '9.0000000000000000e+001' in_param-5 = 'Mid_db' in_param-6 = '2.0000000000000000e+000' lock-resize = 'false' own-recalc = 'false' removeable = 'true' smooth-scroll = 'false' view = '23' prop { arg-pos = '7' column = '0' merged = 'false' param-id = '0' vec-param = 'true' } prop { arg-pos = '8' column = '1' merged = 'false' param-id = '1' vec-param = 'true' } prop { arg-pos = '10' column = '2' merged = 'false' param-id = '3' vec-param = 'true' } prop { arg-pos = '9' column = '3' merged = 'false' param-id = '4' vec-param = 'true' } column { column = '0' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'bond_weights' n-rows = '7' order = '-8' orig-head = 'init_data' type = '1' } column { column = '1' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'bond_list' n-rows = '7' order = '-9' orig-head = 'init_data' type = '1' } column { column = '2' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'maturity' n-rows = '7' order = '-11' orig-head = 'init_data' type = '1' } column { column = '3' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'cpn_pct' n-rows = '7' order = '-10' orig-head = 'init_data' type = '1' } } } expr { label = 'show_all_times' } expr { label = 'show_bond_flows_and_rates' link { a-id = '17' def-h-margin = '4' def-v-margin = '2' lock-resize = 'false' own-recalc = 'false' removeable = 'true' smooth-scroll = 'false' view = '88' prop { arg-pos = '0' column = '0' merged = 'false' param-id = '0' vec-param = 'true' } prop { arg-pos = '1' column = '1' merged = 'false' param-id = '1' vec-param = 'true' } prop { arg-pos = '2' column = '2' merged = 'false' param-id = '2' vec-param = 'true' } column { column = '0' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'time' n-rows = '41' order = '-1' orig-head = 'show_bond_flows_and_rates - 1' type = '1' } column { column = '1' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'bond_pay' n-rows = '41' order = '-2' orig-head = 'show_bond_flows_and_rates - 1' type = '1' } column { column = '2' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'yld_pct' n-rows = '41' order = '-3' orig-head = 'show_bond_flows_and_rates - 1' type = '1' } } } expr { label = 'show_bondstuff' link { a-id = '9' def-h-margin = '4' def-v-margin = '2' in_param-0 = '0.0000000000000000e+000' in_param-1 = 'SGB1052' lock-resize = 'false' own-recalc = 'false' removeable = 'true' smooth-scroll = 'false' view = '65' prop { arg-pos = '2' column = '0' merged = 'false' param-id = '0' vec-param = 'true' } prop { arg-pos = '3' column = '1' merged = 'false' param-id = '1' vec-param = 'true' } prop { arg-pos = '4' column = '2' merged = 'false' param-id = '2' vec-param = 'true' } prop { arg-pos = '5' column = '3' merged = 'false' param-id = '3' vec-param = 'true' } column { column = '0' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'Pr_bond' n-rows = '1' order = '-3' orig-head = 'show_bondstuff - 1' type = '1' } column { column = '1' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'gradPr_bond' n-rows = '3' order = '-4' orig-head = 'show_bondstuff - 1' type = '1' } column { column = '2' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'b_times' n-rows = '3' order = '-5' orig-head = 'show_bondstuff - 1' type = '1' } column { column = '3' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'b_flows' n-rows = '3' order = '-6' orig-head = 'show_bondstuff - 1' type = '1' } } link { a-id = '10' def-h-margin = '4' def-v-margin = '2' in_param-0 = '1.0000000000000000e+000' in_param-1 = 'SGB1047' lock-resize = 'false' own-recalc = 'false' removeable = 'true' smooth-scroll = 'false' view = '65' prop { arg-pos = '2' column = '4' merged = 'false' param-id = '4' vec-param = 'true' } prop { arg-pos = '3' column = '5' merged = 'false' param-id = '5' vec-param = 'true' } prop { arg-pos = '4' column = '6' merged = 'false' param-id = '6' vec-param = 'true' } prop { arg-pos = '5' column = '7' merged = 'false' param-id = '7' vec-param = 'true' } column { column = '4' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'Pr_bond' n-rows = '1' order = '-3' orig-head = 'show_bondstuff - 2' type = '1' } column { column = '5' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'gradPr_bond' n-rows = '5' order = '-4' orig-head = 'show_bondstuff - 2' type = '1' } column { column = '6' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'b_times' n-rows = '5' order = '-5' orig-head = 'show_bondstuff - 2' type = '1' } column { column = '7' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'b_flows' n-rows = '5' order = '-6' orig-head = 'show_bondstuff - 2' type = '1' } } link { a-id = '11' def-h-margin = '4' def-v-margin = '2' in_param-0 = '2.0000000000000000e+000' in_param-1 = 'SGB1054' lock-resize = 'false' own-recalc = 'false' removeable = 'true' smooth-scroll = 'false' view = '65' prop { arg-pos = '2' column = '8' merged = 'false' param-id = '8' vec-param = 'true' } prop { arg-pos = '3' column = '9' merged = 'false' param-id = '9' vec-param = 'true' } prop { arg-pos = '4' column = '10' merged = 'false' param-id = '10' vec-param = 'true' } prop { arg-pos = '5' column = '11' merged = 'false' param-id = '11' vec-param = 'true' } column { column = '8' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'Pr_bond' n-rows = '1' order = '-3' orig-head = 'show_bondstuff - 3' type = '1' } column { column = '9' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'gradPr_bond' n-rows = '6' order = '-4' orig-head = 'show_bondstuff - 3' type = '1' } column { column = '10' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'b_times' n-rows = '6' order = '-5' orig-head = 'show_bondstuff - 3' type = '1' } column { column = '11' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'b_flows' n-rows = '6' order = '-6' orig-head = 'show_bondstuff - 3' type = '1' } } link { a-id = '12' def-h-margin = '4' def-v-margin = '2' in_param-0 = '3.0000000000000000e+000' in_param-1 = 'SGB1057' lock-resize = 'false' own-recalc = 'false' removeable = 'true' smooth-scroll = 'false' view = '65' prop { arg-pos = '2' column = '12' merged = 'false' param-id = '12' vec-param = 'true' } prop { arg-pos = '3' column = '13' merged = 'false' param-id = '13' vec-param = 'true' } prop { arg-pos = '4' column = '14' merged = 'false' param-id = '14' vec-param = 'true' } prop { arg-pos = '5' column = '15' merged = 'false' param-id = '15' vec-param = 'true' } column { column = '12' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'Pr_bond' n-rows = '1' order = '-3' orig-head = 'show_bondstuff - 4' type = '1' } column { column = '13' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'gradPr_bond' n-rows = '8' order = '-4' orig-head = 'show_bondstuff - 4' type = '1' } column { column = '14' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'b_times' n-rows = '8' order = '-5' orig-head = 'show_bondstuff - 4' type = '1' } column { column = '15' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'b_flows' n-rows = '8' order = '-6' orig-head = 'show_bondstuff - 4' type = '1' } } link { a-id = '13' def-h-margin = '4' def-v-margin = '2' in_param-0 = '4.0000000000000000e+000' in_param-1 = 'SGB1058' lock-resize = 'false' own-recalc = 'false' removeable = 'true' smooth-scroll = 'false' view = '65' prop { arg-pos = '2' column = '16' merged = 'false' param-id = '16' vec-param = 'true' } prop { arg-pos = '3' column = '17' merged = 'false' param-id = '17' vec-param = 'true' } prop { arg-pos = '4' column = '18' merged = 'false' param-id = '18' vec-param = 'true' } prop { arg-pos = '5' column = '19' merged = 'false' param-id = '19' vec-param = 'true' } column { column = '16' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'Pr_bond' n-rows = '1' order = '-3' orig-head = 'show_bondstuff - 5' type = '1' } column { column = '17' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'gradPr_bond' n-rows = '9' order = '-4' orig-head = 'show_bondstuff - 5' type = '1' } column { column = '18' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'b_times' n-rows = '9' order = '-5' orig-head = 'show_bondstuff - 5' type = '1' } column { column = '19' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'b_flows' n-rows = '9' order = '-6' orig-head = 'show_bondstuff - 5' type = '1' } } link { a-id = '14' def-h-margin = '4' def-v-margin = '2' in_param-0 = '5.0000000000000000e+000' in_param-1 = 'SGB1056' lock-resize = 'false' own-recalc = 'false' removeable = 'true' smooth-scroll = 'false' view = '65' prop { arg-pos = '2' column = '20' merged = 'false' param-id = '20' vec-param = 'true' } prop { arg-pos = '3' column = '21' merged = 'false' param-id = '21' vec-param = 'true' } prop { arg-pos = '4' column = '22' merged = 'false' param-id = '22' vec-param = 'true' } prop { arg-pos = '5' column = '23' merged = 'false' param-id = '23' vec-param = 'true' } column { column = '20' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'Pr_bond' n-rows = '1' order = '-3' orig-head = 'show_bondstuff - 6' type = '1' } column { column = '21' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'gradPr_bond' n-rows = '16' order = '-4' orig-head = 'show_bondstuff - 6' type = '1' } column { column = '22' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'b_times' n-rows = '16' order = '-5' orig-head = 'show_bondstuff - 6' type = '1' } column { column = '23' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'b_flows' n-rows = '16' order = '-6' orig-head = 'show_bondstuff - 6' type = '1' } } link { a-id = '15' def-h-margin = '4' def-v-margin = '2' in_param-0 = '6.0000000000000000e+000' in_param-1 = 'SGB1053' lock-resize = 'false' own-recalc = 'false' removeable = 'true' smooth-scroll = 'false' view = '65' prop { arg-pos = '2' column = '24' merged = 'false' param-id = '24' vec-param = 'true' } prop { arg-pos = '3' column = '25' merged = 'false' param-id = '25' vec-param = 'true' } prop { arg-pos = '4' column = '26' merged = 'false' param-id = '26' vec-param = 'true' } prop { arg-pos = '5' column = '27' merged = 'false' param-id = '27' vec-param = 'true' } column { column = '24' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'Pr_bond' n-rows = '1' order = '-3' orig-head = 'show_bondstuff - 7' type = '1' } column { column = '25' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'gradPr_bond' n-rows = '23' order = '-4' orig-head = 'show_bondstuff - 7' type = '1' } column { column = '26' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'b_times' n-rows = '23' order = '-5' orig-head = 'show_bondstuff - 7' type = '1' } column { column = '27' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'b_flows' n-rows = '23' order = '-6' orig-head = 'show_bondstuff - 7' type = '1' } } } expr { label = 'show_corr' link { a-id = '4' def-h-margin = '4' def-v-margin = '2' lock-resize = 'false' own-recalc = 'false' removeable = 'true' smooth-scroll = 'false' view = '32' column { column = '0' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'show_corr - 1' n-rows = '1' order = '0' orig-head = 'show_corr - 1' type = '0' } } } expr { label = 'show_cov' } expr { label = 'show_debt_flows' } expr { label = 'show_debtstuff' link { a-id = '16' def-h-margin = '4' def-v-margin = '2' lock-resize = 'false' own-recalc = 'false' removeable = 'true' smooth-scroll = 'false' view = '37' prop { arg-pos = '0' column = '0' merged = 'false' param-id = '0' vec-param = 'true' } prop { arg-pos = '1' column = '1' merged = 'false' param-id = '1' vec-param = 'true' } column { column = '0' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'Pr_debt' n-rows = '1' order = '-1' orig-head = 'show_debtstuff - 1' type = '1' } column { column = '1' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'gradPr_debt' n-rows = '40' order = '-2' orig-head = 'show_debtstuff - 1' type = '1' } } } expr { label = 'show_eig_vals' link { a-id = '7' def-h-margin = '4' def-v-margin = '2' lock-resize = 'false' own-recalc = 'false' removeable = 'true' smooth-scroll = 'false' view = '46' column { column = '0' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '9' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'show_eig_vals - 1' n-rows = '43' order = '0' orig-head = 'show_eig_vals - 1' type = '0' } } } expr { label = 'show_eig_vecs' link { a-id = '3' def-h-margin = '4' def-v-margin = '2' lock-resize = 'false' own-recalc = 'false' removeable = 'true' smooth-scroll = 'false' view = '30' column { column = '0' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'show_eig_vecs - 1' n-rows = '59' order = '0' orig-head = 'show_eig_vecs - 1' type = '2' } column { column = '1' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'show_eig_vecs - 1' n-rows = '59' order = '1' orig-head = 'show_eig_vecs - 1' type = '0' } } } expr { label = 'show_rates' link { a-id = '5' def-h-margin = '4' def-v-margin = '2' lock-resize = 'false' own-recalc = 'false' removeable = 'true' smooth-scroll = 'false' view = '34' column { column = '0' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'show_rates - 1' n-rows = '18' order = '0' orig-head = 'show_rates - 1' type = '2' } column { column = '1' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'show_rates - 1' n-rows = '18' order = '1' orig-head = 'show_rates - 1' type = '0' } column { column = '2' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'show_rates - 1' n-rows = '18' order = '2' orig-head = 'show_rates - 1' type = '0' } column { column = '3' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'show_rates - 1' n-rows = '18' order = '3' orig-head = 'show_rates - 1' type = '0' } column { column = '4' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'show_rates - 1' n-rows = '18' order = '4' orig-head = 'show_rates - 1' type = '0' } column { column = '5' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'show_rates - 1' n-rows = '18' order = '5' orig-head = 'show_rates - 1' type = '0' } column { column = '6' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'show_rates - 1' n-rows = '18' order = '6' orig-head = 'show_rates - 1' type = '0' } column { column = '7' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'show_rates - 1' n-rows = '18' order = '7' orig-head = 'show_rates - 1' type = '0' } column { column = '8' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'show_rates - 1' n-rows = '18' order = '8' orig-head = 'show_rates - 1' type = '0' } column { column = '9' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'show_rates - 1' n-rows = '18' order = '9' orig-head = 'show_rates - 1' type = '0' } column { column = '10' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'show_rates - 1' n-rows = '18' order = '10' orig-head = 'show_rates - 1' type = '0' } column { column = '11' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'show_rates - 1' n-rows = '18' order = '11' orig-head = 'show_rates - 1' type = '0' } column { column = '12' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'show_rates - 1' n-rows = '18' order = '12' orig-head = 'show_rates - 1' type = '0' } column { column = '13' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'show_rates - 1' n-rows = '18' order = '13' orig-head = 'show_rates - 1' type = '0' } column { column = '14' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'show_rates - 1' n-rows = '18' order = '14' orig-head = 'show_rates - 1' type = '0' } column { column = '15' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'show_rates - 1' n-rows = '18' order = '15' orig-head = 'show_rates - 1' type = '0' } column { column = '16' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'show_rates - 1' n-rows = '18' order = '16' orig-head = 'show_rates - 1' type = '0' } column { column = '17' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'show_rates - 1' n-rows = '18' order = '17' orig-head = 'show_rates - 1' type = '0' } column { column = '18' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'show_rates - 1' n-rows = '18' order = '18' orig-head = 'show_rates - 1' type = '0' } column { column = '19' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'show_rates - 1' n-rows = '18' order = '19' orig-head = 'show_rates - 1' type = '0' } column { column = '20' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'show_rates - 1' n-rows = '18' order = '20' orig-head = 'show_rates - 1' type = '0' } column { column = '21' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'show_rates - 1' n-rows = '18' order = '21' orig-head = 'show_rates - 1' type = '0' } column { column = '22' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'show_rates - 1' n-rows = '18' order = '22' orig-head = 'show_rates - 1' type = '0' } column { column = '23' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'show_rates - 1' n-rows = '18' order = '23' orig-head = 'show_rates - 1' type = '0' } column { column = '24' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'show_rates - 1' n-rows = '18' order = '24' orig-head = 'show_rates - 1' type = '0' } column { column = '25' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'show_rates - 1' n-rows = '18' order = '25' orig-head = 'show_rates - 1' type = '0' } column { column = '26' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'show_rates - 1' n-rows = '18' order = '26' orig-head = 'show_rates - 1' type = '0' } column { column = '27' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'show_rates - 1' n-rows = '18' order = '27' orig-head = 'show_rates - 1' type = '0' } column { column = '28' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'show_rates - 1' n-rows = '18' order = '28' orig-head = 'show_rates - 1' type = '0' } column { column = '29' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'show_rates - 1' n-rows = '18' order = '29' orig-head = 'show_rates - 1' type = '0' } column { column = '30' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'show_rates - 1' n-rows = '18' order = '30' orig-head = 'show_rates - 1' type = '0' } column { column = '31' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'show_rates - 1' n-rows = '18' order = '31' orig-head = 'show_rates - 1' type = '0' } column { column = '32' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'show_rates - 1' n-rows = '18' order = '32' orig-head = 'show_rates - 1' type = '0' } column { column = '33' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'show_rates - 1' n-rows = '18' order = '33' orig-head = 'show_rates - 1' type = '0' } column { column = '34' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'show_rates - 1' n-rows = '18' order = '34' orig-head = 'show_rates - 1' type = '0' } column { column = '35' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'show_rates - 1' n-rows = '18' order = '35' orig-head = 'show_rates - 1' type = '0' } column { column = '36' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'show_rates - 1' n-rows = '18' order = '36' orig-head = 'show_rates - 1' type = '0' } column { column = '37' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'show_rates - 1' n-rows = '18' order = '37' orig-head = 'show_rates - 1' type = '0' } column { column = '38' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'show_rates - 1' n-rows = '18' order = '38' orig-head = 'show_rates - 1' type = '0' } column { column = '39' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'show_rates - 1' n-rows = '18' order = '39' orig-head = 'show_rates - 1' type = '0' } column { column = '40' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'show_rates - 1' n-rows = '18' order = '40' orig-head = 'show_rates - 1' type = '0' } column { column = '41' format-align = '-1' format-bg-col = '16777215' format-border = '3' format-decimals = '2' format-fg-col = '0' format-font-char-set = '0' format-font-clip-precision = '0' format-font-escapement = '0' format-font-face-name = 'Microsoft Sans Serif' format-font-height = '-11' format-font-italic = '0' format-font-orientation = '0' format-font-out-precision = '0' format-font-pitch-and-family = '0' format-font-quality = '0' format-font-strike-out = '0' format-font-underline = '0' format-font-weight = '400' format-font-width = '0' format-is-exp = 'false' format-is-percent = 'false' format-multiply = '1.0000000000000000e+000' header = 'show_rates - 1' n-rows = '18' order = '41' orig-head = 'show_rates - 1' type = '0' } } } } table_view { bottom = '383' control-visible = 'true' control-width = '184' f_date = 'false' f_orien = '2' f_size = '9' f_t_name = 'false' f_user = 'false' f_ws_name = 'false' fit = 'true' h_date = 'false' h_orien = '0' h_size = '12' h_t_name = 'false' h_user = 'false' h_ws_name = 'false' hide-weekends = 'false' holidays-0 = 'SWEDEN' id = '23' instr-n = '0' instr-table = '1' label = 'Init data' left = '447' margins-bottom = '2500' margins-left = '3000' margins-right = '3000' margins-top = '2500' maximized = 'false' minimal-frames = 'false' n-holidays = '1' p_page = 'true' page = 'true' right = '1038' show_cmd = '1' split = '64' style = '0' table-type = '1' top = '-2' visible = '1' table-23 { n-instr = '0' param { a_id = '8' convertable = 'false' curve_type-n = '0' func_id = '3' func_name = 'init_data - 1' imm_recalc = 'false' merged_param_id = '-1' merged_param_name = '' param_id = '10011' param_name = 'c' param_pos = '0' table = 'false' tooltip = '' type = '4' value = 'SEK3MSWAP' visible = 'true' } param { a_id = '8' convertable = 'false' curve_type-n = '0' func_id = '3' func_name = 'init_data - 1' imm_recalc = 'false' merged_param_id = '-1' merged_param_name = '' param_id = '10012' param_name = 'bonds' param_pos = '1' table = 'false' tooltip = '' type = '4' value = 'SEKGOVTBOND' visible = 'true' } param { a_id = '8' convertable = 'false' curve_type-n = '0' func_id = '3' func_name = 'init_data - 1' imm_recalc = 'false' merged_param_id = '-1' merged_param_name = '' param_id = '10013' param_name = 'to_date' param_pos = '2' table = 'false' tooltip = '' type = '5' value = '2016-10-06' visible = 'true' } param { a_id = '8' convertable = 'false' curve_type-n = '0' func_id = '3' func_name = 'init_data - 1' imm_recalc = 'false' merged_param_id = '-1' merged_param_name = '' param_id = '10014' param_name = 'periods' param_pos = '3' table = 'false' tooltip = '' type = '1' value = '25' visible = 'true' } param { a_id = '8' convertable = 'false' curve_type-n = '0' func_id = '3' func_name = 'init_data - 1' imm_recalc = 'false' merged_param_id = '-1' merged_param_name = '' param_id = '10015' param_name = 'freq_days' param_pos = '4' table = 'false' tooltip = '' type = '1' value = '90' visible = 'true' } param { a_id = '8' convertable = 'false' curve_type-n = '0' func_id = '3' func_name = 'init_data - 1' imm_recalc = 'false' merged_param_id = '-1' merged_param_name = '' param_id = '10016' param_name = 'q' param_pos = '5' table = 'false' tooltip = '' type = '8' value = 'Mid_db' visible = 'true' } param { a_id = '8' convertable = 'false' curve_type-n = '0' func_id = '3' func_name = 'init_data - 1' imm_recalc = 'false' merged_param_id = '-1' merged_param_name = '' param_id = '10017' param_name = 'pca_dim' param_pos = '6' table = 'false' tooltip = '' type = '1' value = '1' visible = 'true' } instr-values { } value { 0 = '0.000000' 1 = '0.000000' 2 = '0.000000' 3 = '0.000000' 4 = '0.000000' 5 = '0.000000' 6 = '0.000000' column = '0' rows = '7' } value { 0 = 'SGB1052' 1 = 'SGB1047' 2 = 'SGB1054' 3 = 'SGB1057' 4 = 'SGB1058' 5 = 'SGB1056' 6 = 'SGB1053' column = '1' rows = '7' } value { 0 = '2019-03-12' 1 = '2020-12-01' 2 = '2022-06-01' 3 = '2023-11-13' 4 = '2025-05-12' 5 = '2032-06-01' 6 = '2039-03-30' column = '2' rows = '7' } value { 0 = '4.250000' 1 = '5.000000' 2 = '3.500000' 3 = '1.500000' 4 = '2.500000' 5 = '2.250000' 6 = '3.500000' column = '3' rows = '7' } } ttable { n_col_wid-c-0 = '0' n_col_wid-c-1 = '1' n_col_wid-c-2 = '2' n_col_wid-n = '3' n_col_wid-w-0 = '94' n_col_wid-w-1 = '104' n_col_wid-w-2 = '89' t_col_wid-n = '0' transposed = 'false' } } table_view { bottom = '756' control-visible = 'false' control-width = '175' f_date = 'false' f_orien = '2' f_size = '9' f_t_name = 'false' f_user = 'false' f_ws_name = 'false' fit = 'true' h_date = 'false' h_orien = '0' h_size = '12' h_t_name = 'false' h_user = 'false' h_ws_name = 'false' hide-weekends = 'true' holidays-0 = 'SWEDEN' id = '30' instr-n = '0' instr-table = '1' label = 'Show sorted and reduced eigen vectors' left = '597' margins-bottom = '2500' margins-left = '3000' margins-right = '3000' margins-top = '2500' maximized = 'false' minimal-frames = 'false' n-holidays = '1' p_page = 'true' page = 'true' right = '921' show_cmd = '1' split = '60' style = '0' table-type = '1' top = '100' visible = '0' table-30 { n-instr = '0' instr-values { } } ttable { n_col_wid-n = '0' t_col_wid-n = '0' transposed = 'false' } } table_view { bottom = '648' control-visible = 'true' control-width = '175' f_date = 'false' f_orien = '2' f_size = '9' f_t_name = 'false' f_user = 'false' f_ws_name = 'false' fit = 'true' h_date = 'false' h_orien = '0' h_size = '12' h_t_name = 'false' h_user = 'false' h_ws_name = 'false' hide-weekends = 'true' holidays-0 = 'SWEDEN' id = '32' instr-n = '0' instr-table = '1' label = 'Show correlations' left = '278' margins-bottom = '2500' margins-left = '3000' margins-right = '3000' margins-top = '2500' maximized = 'false' minimal-frames = 'false' n-holidays = '1' p_page = 'true' page = 'true' right = '955' show_cmd = '1' split = '60' style = '0' table-type = '1' top = '282' visible = '1' table-32 { n-instr = '0' instr-values { } } ttable { n_col_wid-n = '0' t_col_wid-n = '0' transposed = 'false' } } table_view { bottom = '620' control-visible = 'true' control-width = '175' f_date = 'false' f_orien = '2' f_size = '9' f_t_name = 'false' f_user = 'false' f_ws_name = 'false' fit = 'true' h_date = 'false' h_orien = '0' h_size = '12' h_t_name = 'false' h_user = 'false' h_ws_name = 'false' hide-weekends = 'true' holidays-0 = 'SWEDEN' id = '34' instr-n = '0' instr-table = '1' label = 'Show hist data rates' left = '89' margins-bottom = '2500' margins-left = '3000' margins-right = '3000' margins-top = '2500' maximized = 'false' minimal-frames = 'false' n-holidays = '1' p_page = 'true' page = 'true' right = '1115' show_cmd = '1' split = '60' style = '0' table-type = '1' top = '222' visible = '1' table-34 { n-instr = '0' instr-values { } } ttable { n_col_wid-c-0 = '0' n_col_wid-n = '1' n_col_wid-w-0 = '78' t_col_wid-n = '0' transposed = 'false' } } table_view { bottom = '749' control-visible = 'true' control-width = '175' f_date = 'false' f_orien = '2' f_size = '9' f_t_name = 'false' f_user = 'false' f_ws_name = 'false' fit = 'true' h_date = 'false' h_orien = '0' h_size = '12' h_t_name = 'false' h_user = 'false' h_ws_name = 'false' hide-weekends = 'true' holidays-0 = 'SWEDEN' id = '37' instr-n = '0' instr-table = '1' label = 'Show cash flows' left = '259' margins-bottom = '2500' margins-left = '3000' margins-right = '3000' margins-top = '2500' maximized = 'false' minimal-frames = 'false' n-holidays = '1' p_page = 'true' page = 'true' right = '794' show_cmd = '1' split = '60' style = '0' table-type = '1' top = '149' visible = '1' table-37 { n-instr = '0' instr-values { } value { 0 = '603.210670' column = '0' rows = '1' } value { 0 = '-6.808629' 1 = '-24.797818' 10 = '-56.548871' 11 = '-50.484806' 12 = '-44.770960' 13 = '-39.437602' 14 = '-34.592988' 15 = '-30.183224' 16 = '-26.220936' 17 = '-22.665426' 18 = '-19.554861' 19 = '-16.846346' 2 = '-50.968548' 20 = '-14.455712' 21 = '-12.371328' 22 = '-10.560149' 23 = '-8.969230' 24 = '-7.649381' 25 = '-6.459022' 26 = '-5.493280' 27 = '-4.650342' 28 = '-3.951834' 29 = '-3.345061' 3 = '-83.050234' 30 = '-2.768949' 31 = '-2.384539' 32 = '-1.974966' 33 = '-1.620925' 34 = '-1.412030' 35 = '-1.190570' 36 = '-0.957222' 37 = '-0.800727' 38 = '-0.727089' 39 = '-0.556614' 4 = '-85.077097' 5 = '-83.663311' 6 = '-79.975238' 7 = '-74.881257' 8 = '-68.997285' 9 = '-62.781180' column = '1' rows = '40' } } ttable { n_col_wid-n = '0' t_col_wid-n = '0' transposed = 'false' } } table_view { bottom = '384' control-visible = 'false' control-width = '118' f_date = 'false' f_orien = '2' f_size = '9' f_t_name = 'false' f_user = 'false' f_ws_name = 'false' fit = 'true' h_date = 'false' h_orien = '0' h_size = '12' h_t_name = 'false' h_user = 'false' h_ws_name = 'false' hide-weekends = 'true' id = '46' instr-n = '0' instr-table = '1' label = 'Show sorted eigenvalues' left = '278' margins-bottom = '2500' margins-left = '3000' margins-right = '3000' margins-top = '2500' maximized = 'false' minimal-frames = 'false' n-holidays = '0' p_page = 'true' page = 'true' right = '441' show_cmd = '1' split = '60' style = '0' table-type = '1' top = '-2' visible = '1' table-46 { n-instr = '0' instr-values { } } ttable { n_col_wid-c-0 = '0' n_col_wid-n = '1' n_col_wid-w-0 = '93' t_col_wid-n = '0' transposed = 'false' } } table_view { bottom = '758' control-visible = 'true' control-width = '147' f_date = 'false' f_orien = '2' f_size = '9' f_t_name = 'false' f_user = 'false' f_ws_name = 'false' fit = 'true' h_date = 'false' h_orien = '0' h_size = '12' h_t_name = 'false' h_user = 'false' h_ws_name = 'false' hide-weekends = 'true' holidays-0 = 'SWEDEN' id = '65' instr-n = '0' instr-table = '1' label = 'Show bond information' left = '7' margins-bottom = '2500' margins-left = '3000' margins-right = '3000' margins-top = '2500' maximized = 'false' minimal-frames = 'false' n-holidays = '1' p_page = 'true' page = 'true' right = '1264' show_cmd = '1' split = '60' style = '0' table-type = '1' top = '385' visible = '1' table-65 { n-instr = '0' param { a_id = '9' convertable = 'false' curve_type-n = '0' func_id = '3' func_name = 'show_bondstuff - 1' imm_recalc = 'false' merged_param_id = '-1' merged_param_name = '' param_id = '10000' param_name = 'bond_nr' param_pos = '0' table = 'false' tooltip = '' type = '1' value = '0' visible = 'true' } param { a_id = '9' convertable = 'false' curve_type-n = '0' func_id = '3' func_name = 'show_bondstuff - 1' imm_recalc = 'false' merged_param_id = '-1' merged_param_name = '' param_id = '10001' param_name = 'b_name' param_pos = '1' table = 'false' tooltip = '' type = '0' value = 'SGB1052' visible = 'true' } param { a_id = '10' convertable = 'false' curve_type-n = '0' func_id = '4' func_name = 'show_bondstuff - 2' imm_recalc = 'false' merged_param_id = '-1' merged_param_name = '' param_id = '10002' param_name = 'bond_nr' param_pos = '0' table = 'false' tooltip = '' type = '1' value = '1' visible = 'true' } param { a_id = '10' convertable = 'false' curve_type-n = '0' func_id = '4' func_name = 'show_bondstuff - 2' imm_recalc = 'false' merged_param_id = '-1' merged_param_name = '' param_id = '10003' param_name = 'b_name' param_pos = '1' table = 'false' tooltip = '' type = '0' value = 'SGB1047' visible = 'true' } param { a_id = '11' convertable = 'false' curve_type-n = '0' func_id = '5' func_name = 'show_bondstuff - 3' imm_recalc = 'false' merged_param_id = '-1' merged_param_name = '' param_id = '10004' param_name = 'bond_nr' param_pos = '0' table = 'false' tooltip = '' type = '1' value = '2' visible = 'true' } param { a_id = '11' convertable = 'false' curve_type-n = '0' func_id = '5' func_name = 'show_bondstuff - 3' imm_recalc = 'false' merged_param_id = '-1' merged_param_name = '' param_id = '10005' param_name = 'b_name' param_pos = '1' table = 'false' tooltip = '' type = '0' value = 'SGB1054' visible = 'true' } param { a_id = '12' convertable = 'false' curve_type-n = '0' func_id = '6' func_name = 'show_bondstuff - 4' imm_recalc = 'false' merged_param_id = '-1' merged_param_name = '' param_id = '10006' param_name = 'bond_nr' param_pos = '0' table = 'false' tooltip = '' type = '1' value = '3' visible = 'true' } param { a_id = '12' convertable = 'false' curve_type-n = '0' func_id = '6' func_name = 'show_bondstuff - 4' imm_recalc = 'false' merged_param_id = '-1' merged_param_name = '' param_id = '10007' param_name = 'b_name' param_pos = '1' table = 'false' tooltip = '' type = '0' value = 'SGB1057' visible = 'true' } param { a_id = '13' convertable = 'false' curve_type-n = '0' func_id = '7' func_name = 'show_bondstuff - 5' imm_recalc = 'false' merged_param_id = '-1' merged_param_name = '' param_id = '10008' param_name = 'bond_nr' param_pos = '0' table = 'false' tooltip = '' type = '1' value = '4' visible = 'true' } param { a_id = '13' convertable = 'false' curve_type-n = '0' func_id = '7' func_name = 'show_bondstuff - 5' imm_recalc = 'false' merged_param_id = '-1' merged_param_name = '' param_id = '10009' param_name = 'b_name' param_pos = '1' table = 'false' tooltip = '' type = '0' value = 'SGB1058' visible = 'true' } param { a_id = '14' convertable = 'false' curve_type-n = '0' func_id = '8' func_name = 'show_bondstuff - 6' imm_recalc = 'false' merged_param_id = '-1' merged_param_name = '' param_id = '10010' param_name = 'bond_nr' param_pos = '0' table = 'false' tooltip = '' type = '1' value = '5' visible = 'true' } param { a_id = '14' convertable = 'false' curve_type-n = '0' func_id = '8' func_name = 'show_bondstuff - 6' imm_recalc = 'false' merged_param_id = '-1' merged_param_name = '' param_id = '10011' param_name = 'b_name' param_pos = '1' table = 'false' tooltip = '' type = '0' value = 'SGB1056' visible = 'true' } param { a_id = '15' convertable = 'false' curve_type-n = '0' func_id = '9' func_name = 'show_bondstuff - 7' imm_recalc = 'false' merged_param_id = '-1' merged_param_name = '' param_id = '10012' param_name = 'bond_nr' param_pos = '0' table = 'false' tooltip = '' type = '1' value = '6' visible = 'true' } param { a_id = '15' convertable = 'false' curve_type-n = '0' func_id = '9' func_name = 'show_bondstuff - 7' imm_recalc = 'false' merged_param_id = '-1' merged_param_name = '' param_id = '10013' param_name = 'b_name' param_pos = '1' table = 'false' tooltip = '' type = '0' value = 'SGB1053' visible = 'true' } instr-values { } value { 0 = '113.715356' column = '0' rows = '1' } value { 0 = '-1.843770' 1 = '-6.118972' 2 = '-255.595541' column = '1' rows = '3' } value { 0 = '0.432877' 1 = '1.430137' 2 = '2.430137' column = '2' rows = '3' } value { 0 = '4.250000' 1 = '4.250000' 2 = '104.250000' column = '3' rows = '3' } value { 0 = '125.678886' column = '4' rows = '1' } value { 0 = '-0.767721' 1 = '-5.800092' 2 = '-10.887558' 3 = '-15.917327' 4 = '-438.724981' column = '5' rows = '5' } value { 0 = '0.153425' 1 = '1.153425' 2 = '2.158904' 3 = '3.156164' 4 = '4.156164' column = '6' rows = '5' } value { 0 = '5.000000' 1 = '5.000000' 2 = '5.000000' 3 = '5.000000' 4 = '105.000000' column = '7' rows = '5' } value { 0 = '120.453449' column = '8' rows = '1' } value { 0 = '-2.289753' 1 = '-5.825192' 2 = '-9.384980' 3 = '-12.886373' 4 = '-16.329590' 5 = '-581.597643' column = '9' rows = '6' } value { 0 = '0.652055' 1 = '1.652055' 2 = '2.657534' 3 = '3.654795' 4 = '4.654795' 5 = '5.654795' column = '10' rows = '6' } value { 0 = '3.500000' 1 = '3.500000' 2 = '3.500000' 3 = '3.500000' 4 = '3.500000' 5 = '103.500000' column = '11' rows = '6' } value { 0 = '109.531880' column = '12' rows = '1' } value { 0 = '-0.160361' 1 = '-1.665309' 2 = '-3.183121' 3 = '-4.696859' 4 = '-6.194709' 5 = '-7.659637' 6 = '-9.060886' 7 = '-703.628898' column = '13' rows = '8' } value { 0 = '0.106849' 1 = '1.104110' 2 = '2.104110' 3 = '3.104110' 4 = '4.106849' 5 = '5.112329' 6 = '6.109589' 7 = '7.106849' column = '14' rows = '8' } value { 0 = '1.500000' 1 = '1.500000' 2 = '1.500000' 3 = '1.500000' 4 = '1.500000' 5 = '1.500000' 6 = '1.500000' 7 = '101.500000' column = '15' rows = '8' } value { 0 = '117.492021' column = '16' rows = '1' } value { 0 = '-1.497682' 1 = '-4.036047' 2 = '-6.558354' 3 = '-9.068109' 4 = '-11.530931' 5 = '-13.919961' 6 = '-16.211898' 7 = '-18.404064' 8 = '-839.250877' column = '17' rows = '9' } value { 0 = '0.597260' 1 = '1.602740' 2 = '2.600000' 3 = '3.600000' 4 = '4.600000' 5 = '5.600000' 6 = '6.600000' 7 = '7.605479' 8 = '8.602740' column = '18' rows = '9' } value { 0 = '2.500000' 1 = '2.500000' 2 = '2.500000' 3 = '2.500000' 4 = '2.500000' 5 = '2.500000' 6 = '2.500000' 7 = '2.500000' 8 = '102.500000' column = '19' rows = '9' } value { 0 = '116.030691' column = '20' rows = '1' } value { 0 = '-1.471984' 1 = '-3.744766' 10 = '-21.973947' 11 = '-23.555681' 12 = '-25.043191' 13 = '-26.438807' 14 = '-27.702361' 15 = '-1315.212713' 2 = '-6.033202' 3 = '-8.284097' 4 = '-10.497593' 5 = '-12.643427' 6 = '-14.700836' 7 = '-16.673256' 8 = '-18.526841' 9 = '-20.290779' column = '21' rows = '16' } value { 0 = '0.652055' 1 = '1.652055' 10 = '10.657534' 11 = '11.660274' 12 = '12.660274' 13 = '13.665753' 14 = '14.663014' 15 = '15.663014' 2 = '2.657534' 3 = '3.654795' 4 = '4.654795' 5 = '5.654795' 6 = '6.654795' 7 = '7.663014' 8 = '8.660274' 9 = '9.657534' column = '22' rows = '16' } value { 0 = '2.250000' 1 = '2.250000' 10 = '2.250000' 11 = '2.250000' 12 = '2.250000' 13 = '2.250000' 14 = '2.250000' 15 = '102.250000' 2 = '2.250000' 3 = '2.250000' 4 = '2.250000' 5 = '2.250000' 6 = '2.250000' 7 = '2.250000' 8 = '2.250000' 9 = '2.250000' column = '23' rows = '16' } value { 0 = '141.911655' column = '24' rows = '1' } value { 0 = '-1.682169' 1 = '-5.252583' 10 = '-33.739328' 11 = '-36.232239' 12 = '-38.589811' 13 = '-40.767686' 14 = '-42.766021' 15 = '-44.684716' 16 = '-46.562181' 17 = '-48.287849' 18 = '-49.859813' 19 = '-51.284212' 2 = '-8.774928' 20 = '-52.700977' 21 = '-54.184018' 22 = '-1643.080574' 3 = '-12.284079' 4 = '-15.741814' 5 = '-19.100445' 6 = '-22.326679' 7 = '-25.431079' 8 = '-28.331114' 9 = '-31.098593' column = '25' rows = '23' } value { 0 = '0.479452' 1 = '1.490411' 10 = '10.484932' 11 = '11.487671' 12 = '12.498630' 13 = '13.493151' 14 = '14.490411' 15 = '15.490411' 16 = '16.490411' 17 = '17.490411' 18 = '18.490411' 19 = '19.495890' 2 = '2.484932' 20 = '20.493151' 21 = '21.493151' 22 = '22.493151' 3 = '3.482192' 4 = '4.482192' 5 = '5.482192' 6 = '6.482192' 7 = '7.493151' 8 = '8.487671' 9 = '9.484932' column = '26' rows = '23' } value { 0 = '3.500000' 1 = '3.500000' 10 = '3.500000' 11 = '3.500000' 12 = '3.500000' 13 = '3.500000' 14 = '3.500000' 15 = '3.500000' 16 = '3.500000' 17 = '3.500000' 18 = '3.500000' 19 = '3.500000' 2 = '3.500000' 20 = '3.500000' 21 = '3.500000' 22 = '103.500000' 3 = '3.500000' 4 = '3.500000' 5 = '3.500000' 6 = '3.500000' 7 = '3.500000' 8 = '3.500000' 9 = '3.500000' column = '27' rows = '23' } } ttable { n_col_wid-c-0 = '1' n_col_wid-n = '1' n_col_wid-w-0 = '66' t_col_wid-n = '0' transposed = 'false' } } table_view { bottom = '385' control-visible = 'false' control-width = '175' f_date = 'false' f_orien = '2' f_size = '9' f_t_name = 'false' f_user = 'false' f_ws_name = 'false' fit = 'true' h_date = 'false' h_orien = '0' h_size = '12' h_t_name = 'false' h_user = 'false' h_ws_name = 'false' hide-weekends = 'true' holidays-0 = 'SWEDEN' id = '88' instr-n = '0' instr-table = '1' label = 'Show bond portfolio flows and rates' left = '0' margins-bottom = '2500' margins-left = '3000' margins-right = '3000' margins-top = '2500' maximized = 'false' minimal-frames = 'false' n-holidays = '1' p_page = 'true' page = 'true' right = '277' show_cmd = '1' split = '56' style = '0' table-type = '1' top = '1' visible = '1' table-88 { n-instr = '0' instr-values { } value { 0 = '0.000000' 1 = '0.250000' 10 = '2.500000' 11 = '2.750000' 12 = '3.000000' 13 = '3.250000' 14 = '3.500000' 15 = '3.750000' 16 = '4.000000' 17 = '4.250000' 18 = '4.500000' 19 = '4.750000' 2 = '0.500000' 20 = '5.000000' 21 = '5.250000' 22 = '5.500000' 23 = '5.750000' 24 = '6.000000' 25 = '6.250000' 26 = '6.500000' 27 = '6.750000' 28 = '7.000000' 29 = '7.250000' 3 = '0.750000' 30 = '7.500000' 31 = '7.750000' 32 = '8.000000' 33 = '8.250000' 34 = '8.500000' 35 = '8.750000' 36 = '9.000000' 37 = '9.250000' 38 = '9.500000' 39 = '9.750000' 4 = '1.000000' 40 = '10.000000' 5 = '1.250000' 6 = '1.500000' 7 = '1.750000' 8 = '2.000000' 9 = '2.250000' column = '0' rows = '41' } value { 0 = '' 1 = '0.000000' 10 = '0.000000' 11 = '0.000000' 12 = '0.000000' 13 = '0.000000' 14 = '0.000000' 15 = '0.000000' 16 = '0.000000' 17 = '0.000000' 18 = '0.000000' 19 = '0.000000' 2 = '0.000000' 20 = '0.000000' 21 = '0.000000' 22 = '0.000000' 23 = '0.000000' 24 = '0.000000' 25 = '0.000000' 26 = '0.000000' 27 = '0.000000' 28 = '0.000000' 29 = '0.000000' 3 = '0.000000' 30 = '0.000000' 31 = '0.000000' 32 = '0.000000' 33 = '0.000000' 34 = '0.000000' 35 = '0.000000' 36 = '0.000000' 37 = '0.000000' 38 = '0.000000' 39 = '0.000000' 4 = '0.000000' 40 = '0.000000' 5 = '0.000000' 6 = '0.000000' 7 = '0.000000' 8 = '0.000000' 9 = '0.000000' column = '1' rows = '41' } value { 0 = '' 1 = '-0.507285' 10 = '-0.355940' 11 = '-0.325466' 12 = '-0.294991' 13 = '-0.259472' 14 = '-0.223723' 15 = '-0.187973' 16 = '-0.152223' 17 = '-0.113281' 18 = '-0.074075' 19 = '-0.034868' 2 = '-0.507285' 20 = '0.004338' 21 = '0.045126' 22 = '0.086025' 23 = '0.126923' 24 = '0.167822' 25 = '0.209089' 26 = '0.250378' 27 = '0.291666' 28 = '0.332955' 29 = '0.372459' 3 = '-0.507285' 30 = '0.411859' 31 = '0.451259' 32 = '0.490660' 33 = '0.525669' 34 = '0.560369' 35 = '0.595069' 36 = '0.629769' 37 = '0.660198' 38 = '0.690327' 39 = '0.720455' 4 = '-0.507285' 40 = '0.750584' 5 = '-0.485357' 6 = '-0.462424' 7 = '-0.439491' 8 = '-0.416559' 9 = '-0.386415' column = '2' rows = '41' } } ttable { n_col_wid-c-0 = '1' n_col_wid-n = '1' n_col_wid-w-0 = '109' t_col_wid-n = '0' transposed = 'false' } } table_view { bottom = '382' control-visible = 'false' control-width = '145' f_date = 'false' f_orien = '2' f_size = '9' f_t_name = 'false' f_user = 'false' f_ws_name = 'false' fit = 'true' h_date = 'false' h_orien = '0' h_size = '12' h_t_name = 'false' h_user = 'false' h_ws_name = 'false' hide-weekends = 'true' holidays-0 = 'SWEDEN' id = '93' instr-n = '0' instr-table = '1' label = 'Optimal bond weights' left = '1038' margins-bottom = '2500' margins-left = '3000' margins-right = '3000' margins-top = '2500' maximized = 'false' minimal-frames = 'false' n-holidays = '1' p_page = 'true' page = 'true' right = '1246' show_cmd = '1' split = '54' style = '0' table-type = '1' top = '2' visible = '1' table-93 { n-instr = '0' instr-values { } } ttable { n_col_wid-c-0 = '0' n_col_wid-n = '1' n_col_wid-w-0 = '134' t_col_wid-n = '0' transposed = 'false' } } param { a_id = '8' convertable = 'false' curve_type-n = '0' func_id = '9' func_name = 'init_data - 1' imm_recalc = 'false' merged_param_id = '-1' merged_param_name = '' param_id = '10027' param_name = 'c' param_pos = '0' table = 'false' tooltip = '' type = '4' value = 'SEK3MSWAP' visible = 'true' } param { a_id = '8' convertable = 'false' curve_type-n = '0' func_id = '9' func_name = 'init_data - 1' imm_recalc = 'false' merged_param_id = '-1' merged_param_name = '' param_id = '10028' param_name = 'bonds' param_pos = '1' table = 'false' tooltip = '' type = '4' value = 'SEKGOVTBOND' visible = 'true' } param { a_id = '8' convertable = 'false' curve_type-n = '0' func_id = '9' func_name = 'init_data - 1' imm_recalc = 'false' merged_param_id = '-1' merged_param_name = '' param_id = '10029' param_name = 'to_date' param_pos = '2' table = 'false' tooltip = '' type = '5' value = '2016-10-06' visible = 'true' } param { a_id = '8' convertable = 'false' curve_type-n = '0' func_id = '9' func_name = 'init_data - 1' imm_recalc = 'false' merged_param_id = '-1' merged_param_name = '' param_id = '10030' param_name = 'periods' param_pos = '3' table = 'false' tooltip = '' type = '1' value = '25' visible = 'true' } param { a_id = '8' convertable = 'false' curve_type-n = '0' func_id = '9' func_name = 'init_data - 1' imm_recalc = 'false' merged_param_id = '-1' merged_param_name = '' param_id = '10031' param_name = 'freq_days' param_pos = '4' table = 'false' tooltip = '' type = '1' value = '90' visible = 'true' } param { a_id = '8' convertable = 'false' curve_type-n = '0' func_id = '9' func_name = 'init_data - 1' imm_recalc = 'false' merged_param_id = '-1' merged_param_name = '' param_id = '10032' param_name = 'q' param_pos = '5' table = 'false' tooltip = '' type = '8' value = 'Mid_db' visible = 'true' } param { a_id = '8' convertable = 'false' curve_type-n = '0' func_id = '9' func_name = 'init_data - 1' imm_recalc = 'false' merged_param_id = '-1' merged_param_name = '' param_id = '10033' param_name = 'pca_dim' param_pos = '6' table = 'false' tooltip = '' type = '1' value = '1' visible = 'true' } param { a_id = '9' convertable = 'false' curve_type-n = '0' func_id = '11' func_name = 'show_bondstuff - 1' imm_recalc = 'false' merged_param_id = '-1' merged_param_name = '' param_id = '10034' param_name = 'bond_nr' param_pos = '0' table = 'false' tooltip = '' type = '1' value = '0' visible = 'true' } param { a_id = '9' convertable = 'false' curve_type-n = '0' func_id = '11' func_name = 'show_bondstuff - 1' imm_recalc = 'false' merged_param_id = '-1' merged_param_name = '' param_id = '10035' param_name = 'b_name' param_pos = '1' table = 'false' tooltip = '' type = '0' value = 'SGB1052' visible = 'true' } param { a_id = '10' convertable = 'false' curve_type-n = '0' func_id = '12' func_name = 'show_bondstuff - 2' imm_recalc = 'false' merged_param_id = '-1' merged_param_name = '' param_id = '10036' param_name = 'bond_nr' param_pos = '0' table = 'false' tooltip = '' type = '1' value = '1' visible = 'true' } param { a_id = '10' convertable = 'false' curve_type-n = '0' func_id = '12' func_name = 'show_bondstuff - 2' imm_recalc = 'false' merged_param_id = '-1' merged_param_name = '' param_id = '10037' param_name = 'b_name' param_pos = '1' table = 'false' tooltip = '' type = '0' value = 'SGB1047' visible = 'true' } param { a_id = '11' convertable = 'false' curve_type-n = '0' func_id = '13' func_name = 'show_bondstuff - 3' imm_recalc = 'false' merged_param_id = '-1' merged_param_name = '' param_id = '10038' param_name = 'bond_nr' param_pos = '0' table = 'false' tooltip = '' type = '1' value = '2' visible = 'true' } param { a_id = '11' convertable = 'false' curve_type-n = '0' func_id = '13' func_name = 'show_bondstuff - 3' imm_recalc = 'false' merged_param_id = '-1' merged_param_name = '' param_id = '10039' param_name = 'b_name' param_pos = '1' table = 'false' tooltip = '' type = '0' value = 'SGB1054' visible = 'true' } param { a_id = '12' convertable = 'false' curve_type-n = '0' func_id = '14' func_name = 'show_bondstuff - 4' imm_recalc = 'false' merged_param_id = '-1' merged_param_name = '' param_id = '10040' param_name = 'bond_nr' param_pos = '0' table = 'false' tooltip = '' type = '1' value = '3' visible = 'true' } param { a_id = '12' convertable = 'false' curve_type-n = '0' func_id = '14' func_name = 'show_bondstuff - 4' imm_recalc = 'false' merged_param_id = '-1' merged_param_name = '' param_id = '10041' param_name = 'b_name' param_pos = '1' table = 'false' tooltip = '' type = '0' value = 'SGB1057' visible = 'true' } param { a_id = '13' convertable = 'false' curve_type-n = '0' func_id = '15' func_name = 'show_bondstuff - 5' imm_recalc = 'false' merged_param_id = '-1' merged_param_name = '' param_id = '10042' param_name = 'bond_nr' param_pos = '0' table = 'false' tooltip = '' type = '1' value = '4' visible = 'true' } param { a_id = '13' convertable = 'false' curve_type-n = '0' func_id = '15' func_name = 'show_bondstuff - 5' imm_recalc = 'false' merged_param_id = '-1' merged_param_name = '' param_id = '10043' param_name = 'b_name' param_pos = '1' table = 'false' tooltip = '' type = '0' value = 'SGB1058' visible = 'true' } param { a_id = '14' convertable = 'false' curve_type-n = '0' func_id = '16' func_name = 'show_bondstuff - 6' imm_recalc = 'false' merged_param_id = '-1' merged_param_name = '' param_id = '10044' param_name = 'bond_nr' param_pos = '0' table = 'false' tooltip = '' type = '1' value = '5' visible = 'true' } param { a_id = '14' convertable = 'false' curve_type-n = '0' func_id = '16' func_name = 'show_bondstuff - 6' imm_recalc = 'false' merged_param_id = '-1' merged_param_name = '' param_id = '10045' param_name = 'b_name' param_pos = '1' table = 'false' tooltip = '' type = '0' value = 'SGB1056' visible = 'true' } param { a_id = '15' convertable = 'false' curve_type-n = '0' func_id = '17' func_name = 'show_bondstuff - 7' imm_recalc = 'false' merged_param_id = '-1' merged_param_name = '' param_id = '10046' param_name = 'bond_nr' param_pos = '0' table = 'false' tooltip = '' type = '1' value = '6' visible = 'true' } param { a_id = '15' convertable = 'false' curve_type-n = '0' func_id = '17' func_name = 'show_bondstuff - 7' imm_recalc = 'false' merged_param_id = '-1' merged_param_name = '' param_id = '10047' param_name = 'b_name' param_pos = '1' table = 'false' tooltip = '' type = '0' value = 'SGB1053' visible = 'true' } } tab-0 { bottom = '400' cx = '174' cy = '352' index = '0' instr-n = '0' left = '10' right = '200' show_cmd = '1' split = '60' top = '10' visible = 'false' param { a_id = '8' convertable = 'false' curve_type-n = '0' func_id = '9' func_name = 'init_data - 1' imm_recalc = 'false' merged_param_id = '-1' merged_param_name = '' param_id = '10027' param_name = 'c' param_pos = '0' table = 'false' tooltip = '' type = '4' value = 'SEK3MSWAP' visible = 'true' } param { a_id = '8' convertable = 'false' curve_type-n = '0' func_id = '9' func_name = 'init_data - 1' imm_recalc = 'false' merged_param_id = '-1' merged_param_name = '' param_id = '10028' param_name = 'bonds' param_pos = '1' table = 'false' tooltip = '' type = '4' value = 'SEKGOVTBOND' visible = 'true' } param { a_id = '8' convertable = 'false' curve_type-n = '0' func_id = '9' func_name = 'init_data - 1' imm_recalc = 'false' merged_param_id = '-1' merged_param_name = '' param_id = '10029' param_name = 'to_date' param_pos = '2' table = 'false' tooltip = '' type = '5' value = '2016-10-06' visible = 'true' } param { a_id = '8' convertable = 'false' curve_type-n = '0' func_id = '9' func_name = 'init_data - 1' imm_recalc = 'false' merged_param_id = '-1' merged_param_name = '' param_id = '10030' param_name = 'periods' param_pos = '3' table = 'false' tooltip = '' type = '1' value = '25' visible = 'true' } param { a_id = '8' convertable = 'false' curve_type-n = '0' func_id = '9' func_name = 'init_data - 1' imm_recalc = 'false' merged_param_id = '-1' merged_param_name = '' param_id = '10031' param_name = 'freq_days' param_pos = '4' table = 'false' tooltip = '' type = '1' value = '90' visible = 'true' } param { a_id = '8' convertable = 'false' curve_type-n = '0' func_id = '9' func_name = 'init_data - 1' imm_recalc = 'false' merged_param_id = '-1' merged_param_name = '' param_id = '10032' param_name = 'q' param_pos = '5' table = 'false' tooltip = '' type = '8' value = 'Mid_db' visible = 'true' } param { a_id = '8' convertable = 'false' curve_type-n = '0' func_id = '9' func_name = 'init_data - 1' imm_recalc = 'false' merged_param_id = '-1' merged_param_name = '' param_id = '10033' param_name = 'pca_dim' param_pos = '6' table = 'false' tooltip = '' type = '1' value = '1' visible = 'true' } param { a_id = '9' convertable = 'false' curve_type-n = '0' func_id = '11' func_name = 'show_bondstuff - 1' imm_recalc = 'false' merged_param_id = '-1' merged_param_name = '' param_id = '10034' param_name = 'bond_nr' param_pos = '0' table = 'false' tooltip = '' type = '1' value = '0' visible = 'true' } param { a_id = '9' convertable = 'false' curve_type-n = '0' func_id = '11' func_name = 'show_bondstuff - 1' imm_recalc = 'false' merged_param_id = '-1' merged_param_name = '' param_id = '10035' param_name = 'b_name' param_pos = '1' table = 'false' tooltip = '' type = '0' value = 'SGB1052' visible = 'true' } param { a_id = '10' convertable = 'false' curve_type-n = '0' func_id = '12' func_name = 'show_bondstuff - 2' imm_recalc = 'false' merged_param_id = '-1' merged_param_name = '' param_id = '10036' param_name = 'bond_nr' param_pos = '0' table = 'false' tooltip = '' type = '1' value = '1' visible = 'true' } param { a_id = '10' convertable = 'false' curve_type-n = '0' func_id = '12' func_name = 'show_bondstuff - 2' imm_recalc = 'false' merged_param_id = '-1' merged_param_name = '' param_id = '10037' param_name = 'b_name' param_pos = '1' table = 'false' tooltip = '' type = '0' value = 'SGB1047' visible = 'true' } param { a_id = '11' convertable = 'false' curve_type-n = '0' func_id = '13' func_name = 'show_bondstuff - 3' imm_recalc = 'false' merged_param_id = '-1' merged_param_name = '' param_id = '10038' param_name = 'bond_nr' param_pos = '0' table = 'false' tooltip = '' type = '1' value = '2' visible = 'true' } param { a_id = '11' convertable = 'false' curve_type-n = '0' func_id = '13' func_name = 'show_bondstuff - 3' imm_recalc = 'false' merged_param_id = '-1' merged_param_name = '' param_id = '10039' param_name = 'b_name' param_pos = '1' table = 'false' tooltip = '' type = '0' value = 'SGB1054' visible = 'true' } param { a_id = '12' convertable = 'false' curve_type-n = '0' func_id = '14' func_name = 'show_bondstuff - 4' imm_recalc = 'false' merged_param_id = '-1' merged_param_name = '' param_id = '10040' param_name = 'bond_nr' param_pos = '0' table = 'false' tooltip = '' type = '1' value = '3' visible = 'true' } param { a_id = '12' convertable = 'false' curve_type-n = '0' func_id = '14' func_name = 'show_bondstuff - 4' imm_recalc = 'false' merged_param_id = '-1' merged_param_name = '' param_id = '10041' param_name = 'b_name' param_pos = '1' table = 'false' tooltip = '' type = '0' value = 'SGB1057' visible = 'true' } param { a_id = '13' convertable = 'false' curve_type-n = '0' func_id = '15' func_name = 'show_bondstuff - 5' imm_recalc = 'false' merged_param_id = '-1' merged_param_name = '' param_id = '10042' param_name = 'bond_nr' param_pos = '0' table = 'false' tooltip = '' type = '1' value = '4' visible = 'true' } param { a_id = '13' convertable = 'false' curve_type-n = '0' func_id = '15' func_name = 'show_bondstuff - 5' imm_recalc = 'false' merged_param_id = '-1' merged_param_name = '' param_id = '10043' param_name = 'b_name' param_pos = '1' table = 'false' tooltip = '' type = '0' value = 'SGB1058' visible = 'true' } param { a_id = '14' convertable = 'false' curve_type-n = '0' func_id = '16' func_name = 'show_bondstuff - 6' imm_recalc = 'false' merged_param_id = '-1' merged_param_name = '' param_id = '10044' param_name = 'bond_nr' param_pos = '0' table = 'false' tooltip = '' type = '1' value = '5' visible = 'true' } param { a_id = '14' convertable = 'false' curve_type-n = '0' func_id = '16' func_name = 'show_bondstuff - 6' imm_recalc = 'false' merged_param_id = '-1' merged_param_name = '' param_id = '10045' param_name = 'b_name' param_pos = '1' table = 'false' tooltip = '' type = '0' value = 'SGB1056' visible = 'true' } param { a_id = '15' convertable = 'false' curve_type-n = '0' func_id = '17' func_name = 'show_bondstuff - 7' imm_recalc = 'false' merged_param_id = '-1' merged_param_name = '' param_id = '10046' param_name = 'bond_nr' param_pos = '0' table = 'false' tooltip = '' type = '1' value = '6' visible = 'true' } param { a_id = '15' convertable = 'false' curve_type-n = '0' func_id = '17' func_name = 'show_bondstuff - 7' imm_recalc = 'false' merged_param_id = '-1' merged_param_name = '' param_id = '10047' param_name = 'b_name' param_pos = '1' table = 'false' tooltip = '' type = '0' value = 'SGB1053' visible = 'true' } } }