From 1a44b71e26207dc6262690bccbe2d5950aa87977 Mon Sep 17 00:00:00 2001 From: Don Allingham Date: Wed, 23 Feb 2005 04:30:08 +0000 Subject: [PATCH] * src/gramps.glade: use ComboBox instead of ComboBoxEntry for temple * src/EditPerson.py: use ComboBox instead of ComboBoxEntry for temple svn: r4080 --- gramps2/ChangeLog | 6 + gramps2/src/AutoComp.py | 2 +- gramps2/src/EditPerson.py | 44 +- gramps2/src/gramps.glade | 1933 ++++++++++++++++++++++++++++++++++++- 4 files changed, 1917 insertions(+), 68 deletions(-) diff --git a/gramps2/ChangeLog b/gramps2/ChangeLog index 560b0ae1e..3692ad088 100644 --- a/gramps2/ChangeLog +++ b/gramps2/ChangeLog @@ -1,3 +1,9 @@ +2005-02-22 Don Allingham + * src/gramps.glade: use ComboBox instead of ComboBoxEntry + for temple + * src/EditPerson.py: use ComboBox instead of ComboBoxEntry + for temple + 2005-02-22 Alex Roitman * configure.in: Bump up the version. * src/docgen/PdfDoc.py (write_note): Attempt latin1 encoding. diff --git a/gramps2/src/AutoComp.py b/gramps2/src/AutoComp.py index 0540c1501..a11a137a5 100644 --- a/gramps2/src/AutoComp.py +++ b/gramps2/src/AutoComp.py @@ -54,7 +54,7 @@ def fill_entry(entry,data_list): entry.set_completion(completion) def fill_option_text(combobox,data): - store = gtk.ListStore(gobject.TYPE_STRING) + store = gtk.ListStore(str) for item in data: store.append(row=[item]) combobox.set_model(store) diff --git a/gramps2/src/EditPerson.py b/gramps2/src/EditPerson.py index 896762230..c97321e53 100644 --- a/gramps2/src/EditPerson.py +++ b/gramps2/src/EditPerson.py @@ -621,18 +621,15 @@ class EditPerson: tree.append_column(column) def lds_field(self,lds_ord,combo,date,place): - AutoComp.fill_combo(combo,_temple_names) + build_combo(combo,_temple_names) + temple_code = const.lds_temple_to_abrev.get(lds_ord.get_temple(),"") + index = _temple_names.index(temple_code) + combo.set_active(index) if not lds_ord.is_empty(): stat = lds_ord.get_status() date.set_text(lds_ord.get_date()) - if lds_ord.get_temple() != "": - name = const.lds_temple_to_abrev[lds_ord.get_temple()] - else: - name = "" - combo.child.set_text(name) else: stat = 0 - combo.child.set_text("") build_dropdown(place,self.place_list) if lds_ord and lds_ord.get_place_handle(): @@ -768,7 +765,7 @@ class EditPerson: opt_menu.set_model(store) opt_menu.connect('changed',task) opt_menu.set_active(type) - + def build_bap_menu(self): self.build_menu(const.lds_baptism,self.set_lds_bap,self.ldsbapstat, self.bstat) @@ -777,6 +774,11 @@ class EditPerson: self.build_menu(const.lds_baptism,self.set_lds_endow,self.ldsendowstat, self.estat) + def build_seal_menu(self): + self.build_menu(const.lds_csealing,self.set_lds_seal,self.ldssealstat, + self.seal_stat) + + def build_seal_menu(self): self.build_menu(const.lds_csealing,self.set_lds_seal,self.ldssealstat, self.seal_stat) @@ -1335,7 +1337,7 @@ class EditPerson: def check_lds(self): self.lds_baptism.set_date(unicode(self.ldsbap_date.get_text())) - temple = unicode(self.ldsbap_temple.child.get_text()) + temple = _temple_names[self.ldsbap_temple.get_active()] if const.lds_temple_codes.has_key(temple): self.lds_baptism.set_temple(const.lds_temple_codes[temple]) else: @@ -1343,7 +1345,7 @@ class EditPerson: self.lds_baptism.set_place_handle(self.get_place(self.ldsbapplace,1)) self.lds_endowment.set_date(unicode(self.ldsend_date.get_text())) - temple = unicode(self.ldsend_temple.child.get_text()) + temple = _temple_names[self.ldsend_temple.get_active()] if const.lds_temple_codes.has_key(temple): self.lds_endowment.set_temple(const.lds_temple_codes[temple]) else: @@ -1351,7 +1353,7 @@ class EditPerson: self.lds_endowment.set_place_handle(self.get_place(self.ldsendowplace,1)) self.lds_sealing.set_date(unicode(self.ldsseal_date.get_text())) - temple = unicode(self.ldsseal_temple.child.get_text()) + temple = _temple_names[self.ldsseal_temple.get_active()] if const.lds_temple_codes.has_key(temple): self.lds_sealing.set_temple(const.lds_temple_codes[temple]) else: @@ -1585,7 +1587,7 @@ class EditPerson: def check_lds(self): self.lds_baptism.set_date(unicode(self.ldsbap_date.get_text())) - temple = unicode(self.ldsbap_temple.child.get_text()) + temple = _temple_names[self.ldsbap_temple.get_active()] if const.lds_temple_codes.has_key(temple): self.lds_baptism.set_temple(const.lds_temple_codes[temple]) else: @@ -1593,7 +1595,7 @@ class EditPerson: self.lds_baptism.set_place_handle(self.get_place(self.ldsbapplace,1)) self.lds_endowment.set_date(unicode(self.ldsend_date.get_text())) - temple = unicode(self.ldsend_temple.child.get_text()) + temple = _temple_names[self.ldsend_temple.get_active()] if const.lds_temple_codes.has_key(temple): self.lds_endowment.set_temple(const.lds_temple_codes[temple]) else: @@ -1601,7 +1603,7 @@ class EditPerson: self.lds_endowment.set_place_handle(self.get_place(self.ldsendowplace,1)) self.lds_sealing.set_date(unicode(self.ldsseal_date.get_text())) - temple = unicode(self.ldsseal_temple.child.get_text()) + temple = _temple_names[self.ldsseal_temple.get_active()] if const.lds_temple_codes.has_key(temple): self.lds_sealing.set_temple(const.lds_temple_codes[temple]) else: @@ -2285,11 +2287,21 @@ def place_title(db,event): return u'' def build_dropdown(entry,strings): - store = gtk.ListStore(gobject.TYPE_STRING) + store = gtk.ListStore(str) for value in strings: node = store.append() - store.set(node,0,value) + store.set(node,0,unicode(value)) completion = gtk.EntryCompletion() completion.set_text_column(0) completion.set_model(store) entry.set_completion(completion) + +def build_combo(entry,strings): + cell = gtk.CellRendererText() + entry.pack_start(cell,True) + entry.add_attribute(cell,'text',0) + store = gtk.ListStore(str) + for value in strings: + node = store.append() + store.set(node,0,unicode(value)) + entry.set_model(store) diff --git a/gramps2/src/gramps.glade b/gramps2/src/gramps.glade index 18c80446f..8135f2644 100644 --- a/gramps2/src/gramps.glade +++ b/gramps2/src/gramps.glade @@ -19,6 +19,7 @@ False GDK_WINDOW_TYPE_HINT_NORMAL GDK_GRAVITY_NORTH_WEST + True True @@ -1018,6 +1019,9 @@ 0 views PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1067,6 +1071,9 @@ 0 views PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1116,6 +1123,9 @@ 0 views PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1165,6 +1175,9 @@ 0 views PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1214,6 +1227,9 @@ 0 views PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1263,6 +1279,9 @@ 0 views PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1380,6 +1399,8 @@ False True False + False + False @@ -1410,6 +1431,9 @@ 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -1699,6 +1723,8 @@ False True False + False + False @@ -1823,6 +1849,9 @@ 0 chlist PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1849,6 +1878,9 @@ 0 ap_data PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1875,6 +1907,9 @@ 0 ap_parents PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -1901,6 +1936,9 @@ 0 sp_list PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1927,6 +1965,9 @@ 0 sp_parents PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -1957,6 +1998,8 @@ True True False + False + False @@ -1988,6 +2031,8 @@ False True False + False + False @@ -2019,6 +2064,8 @@ False True False + False + False @@ -2050,6 +2097,8 @@ True True False + False + False @@ -2206,6 +2255,9 @@ 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -2241,6 +2293,8 @@ True True False + False + False @@ -2268,6 +2322,9 @@ 0 chlist2 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -2298,6 +2355,8 @@ True True False + False + False @@ -2329,6 +2388,8 @@ False True False + False + False @@ -2360,6 +2421,8 @@ False True False + False + False @@ -2391,6 +2454,8 @@ False True False + False + False @@ -2542,6 +2607,9 @@ 0 sp_parents2 PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -2665,6 +2733,9 @@ 0 sp_list2 PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -2788,6 +2859,9 @@ 0 ap_data2 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -2814,6 +2888,9 @@ 0 ap_parents2 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -2972,6 +3049,9 @@ 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -3020,6 +3100,9 @@ 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -3050,6 +3133,8 @@ False True False + False + False @@ -3080,6 +3165,9 @@ 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -3110,6 +3198,8 @@ False True False + False + False @@ -3140,6 +3230,9 @@ 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -3192,6 +3285,9 @@ 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 label_item @@ -3229,6 +3325,9 @@ 0 2 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -3255,6 +3354,9 @@ 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -3279,6 +3381,9 @@ 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -3303,6 +3408,9 @@ 0 2 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -3329,6 +3437,9 @@ 0 2 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -3355,6 +3466,9 @@ 0 2 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -3381,6 +3495,9 @@ 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -3405,6 +3522,9 @@ 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -3429,6 +3549,9 @@ 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -3453,6 +3576,9 @@ 0 2 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -3479,6 +3605,9 @@ 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -3523,6 +3652,8 @@ False True False + False + False @@ -3553,6 +3684,9 @@ 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -3605,6 +3739,7 @@ False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -3682,6 +3817,9 @@ 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -3721,6 +3859,8 @@ False True False + False + False @@ -3829,6 +3969,9 @@ 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -3855,6 +3998,9 @@ 5 5 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -3934,6 +4080,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -4019,6 +4166,9 @@ Other 0 6 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -4058,6 +4208,9 @@ Other 0 frel PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -4087,6 +4240,9 @@ Other 0 mrel PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -4115,6 +4271,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -4141,6 +4300,9 @@ Other 0 father_list PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -4237,6 +4399,9 @@ Other 0 mother_list PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -4262,6 +4427,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -4292,6 +4460,8 @@ Other False True False + False + False @@ -4322,6 +4492,8 @@ Other False True False + False + False @@ -4424,6 +4596,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -4447,6 +4622,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -4470,6 +4648,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -4493,6 +4674,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -4516,6 +4700,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -4539,6 +4726,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -4562,6 +4752,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -4624,6 +4817,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -4647,6 +4843,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -4670,6 +4869,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -4693,6 +4895,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -4716,6 +4921,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -4739,6 +4947,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -4762,6 +4973,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -4840,6 +5054,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -4925,6 +5140,9 @@ Other 0 6 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -4971,6 +5189,8 @@ Other False True False + False + False @@ -5109,6 +5329,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -5132,6 +5355,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -5155,6 +5381,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -5178,6 +5407,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -5201,6 +5433,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -5224,6 +5459,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -5295,6 +5533,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -5318,6 +5559,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -5341,6 +5585,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -5364,6 +5611,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -5387,6 +5637,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -5410,6 +5663,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -5442,6 +5698,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -5468,6 +5727,9 @@ Other 0 frel PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -5505,6 +5767,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -5592,6 +5855,9 @@ Other 0 5 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -5637,6 +5903,9 @@ Other 0 source_title PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -5663,6 +5932,9 @@ Other 0 author PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -5735,6 +6007,9 @@ Other 0 pubinfo PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -5803,6 +6078,9 @@ Other 0 abbrev PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -5834,6 +6112,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -5905,6 +6186,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -5990,6 +6274,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -6021,6 +6308,8 @@ Other False True False + False + False @@ -6121,6 +6410,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -6335,6 +6627,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -6359,6 +6654,8 @@ Other False True False + False + False @@ -6382,6 +6679,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -6421,6 +6721,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -6507,6 +6808,9 @@ Other 10 10 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -6580,6 +6884,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -6662,6 +6967,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 10 @@ -6700,6 +7008,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -6725,6 +7036,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -6750,6 +7064,9 @@ Other 0 frel PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -6810,6 +7127,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -6833,6 +7153,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -6856,6 +7179,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -6879,6 +7205,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -6902,6 +7231,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -6925,6 +7257,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -6948,6 +7283,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -6978,6 +7316,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -7004,6 +7345,9 @@ Other 0 mrel PANGO_ELLIPSIZE_NONE + -1 + False + 0 Relationship: @@ -7065,6 +7409,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -7088,6 +7435,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -7111,6 +7461,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -7134,6 +7487,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -7157,6 +7513,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -7180,6 +7539,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -7203,6 +7565,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -7233,6 +7598,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -7258,6 +7626,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -7283,6 +7654,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -7307,6 +7681,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -7378,6 +7755,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -7469,6 +7847,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -7505,6 +7886,9 @@ Other 0 entry PANGO_ELLIPSIZE_NONE + -1 + False + 0 6 @@ -7562,6 +7946,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -7640,6 +8025,9 @@ Other 6 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 6 @@ -7704,6 +8092,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -7727,6 +8118,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -7750,6 +8144,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -7773,6 +8170,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -7796,6 +8196,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -7819,6 +8222,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -7881,6 +8287,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -7904,6 +8313,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -7927,6 +8339,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -7950,6 +8365,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -7973,6 +8391,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -7996,6 +8417,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -8026,6 +8450,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -8052,6 +8479,9 @@ Other 0 frel PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -8087,6 +8517,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -8164,6 +8595,8 @@ Other True True False + False + False @@ -8189,6 +8622,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -8224,6 +8660,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -8305,6 +8742,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 10 @@ -8364,6 +8804,9 @@ Other 0 givenName PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -8390,6 +8833,9 @@ Other 0 surname PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -8416,6 +8862,9 @@ Other 0 prefix PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -8442,6 +8891,9 @@ Other 0 suffix PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -8468,6 +8920,9 @@ Other 0 title PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -8494,6 +8949,9 @@ Other 0 nickname PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -8519,6 +8977,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -8545,6 +9006,9 @@ Other 0 birthDate PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -8636,6 +9100,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -8739,6 +9206,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -8765,6 +9235,9 @@ Other 0 gid PANGO_ELLIPSIZE_NONE + -1 + False + 0 7 @@ -8812,6 +9285,9 @@ Other 0 birth_place PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -8837,6 +9313,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 6 @@ -8863,6 +9342,9 @@ Other 0 deathDate PANGO_ELLIPSIZE_NONE + -1 + False + 0 Date: @@ -8892,6 +9374,9 @@ Other 0 death_place PANGO_ELLIPSIZE_NONE + -1 + False + 0 7 @@ -9164,6 +9649,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -9188,6 +9676,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 6 @@ -9328,6 +9819,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 label_item @@ -9425,6 +9919,9 @@ Other 6 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -9467,6 +9964,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -9492,6 +9992,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -9517,6 +10020,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -9542,6 +10048,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -9567,6 +10076,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -9592,6 +10104,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -9617,6 +10132,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -9642,6 +10160,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -9667,6 +10188,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -9692,6 +10216,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -9717,6 +10244,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -9741,6 +10271,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -9765,6 +10298,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -9789,6 +10325,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -9813,6 +10352,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -9837,6 +10379,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -9861,6 +10406,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -9885,6 +10433,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -9948,6 +10499,8 @@ Other False True False + False + False @@ -10087,6 +10640,9 @@ Other 6 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -10129,6 +10685,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -10154,6 +10713,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -10179,6 +10741,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -10204,6 +10769,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -10229,6 +10797,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -10254,6 +10825,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -10279,6 +10853,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -10304,6 +10881,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -10329,6 +10909,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -10354,6 +10937,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -10379,6 +10965,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -10404,6 +10993,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -10429,6 +11021,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -10454,6 +11049,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -10478,6 +11076,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -10502,6 +11103,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -10545,6 +11149,8 @@ Other True True False + False + False @@ -10691,6 +11297,9 @@ Other 6 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -10733,6 +11342,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -10758,6 +11370,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -10783,6 +11398,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -10808,6 +11426,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -10833,6 +11454,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -10858,6 +11482,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -10883,6 +11510,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -10908,6 +11538,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -10932,6 +11565,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -10956,6 +11592,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -10999,6 +11638,8 @@ Other False True False + False + False @@ -11145,6 +11786,9 @@ Other 6 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -11181,6 +11825,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -11206,6 +11853,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -11231,6 +11881,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -11256,6 +11909,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -11281,6 +11937,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -11306,6 +11965,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -11331,6 +11993,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -11356,6 +12021,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -11381,6 +12049,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -11406,6 +12077,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -11431,6 +12105,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -11456,6 +12133,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -11481,6 +12161,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -11506,6 +12189,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -11531,6 +12217,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -11555,6 +12244,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -11579,6 +12271,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -11604,6 +12299,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -11629,6 +12327,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -11654,6 +12355,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -11729,6 +12433,8 @@ Other False True False + False + False @@ -11875,6 +12581,9 @@ Other 6 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -11949,6 +12658,9 @@ Other 0 flowed PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -12034,6 +12746,9 @@ Other 6 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -12064,6 +12779,8 @@ Other False True False + False + False @@ -12191,6 +12908,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -12390,6 +13110,9 @@ Other 6 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -12426,6 +13149,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -12451,6 +13177,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -12476,6 +13205,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -12501,6 +13233,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -12525,6 +13260,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -12568,6 +13306,8 @@ Other False True False + False + False @@ -12735,6 +13475,9 @@ Other 6 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -12765,6 +13508,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -12812,6 +13558,9 @@ Other 0 ldsbapdate PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -12840,6 +13589,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 Temple: @@ -12889,6 +13641,9 @@ Other 0 lds_bap_place PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -12958,6 +13713,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -12984,6 +13742,9 @@ Other 0 endowdate PANGO_ELLIPSIZE_NONE + -1 + False + 0 Date: @@ -13013,6 +13774,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -13039,6 +13803,9 @@ Other 0 lds_end_place PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -13150,6 +13917,9 @@ Other 0 sealdate PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -13199,6 +13969,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -13245,6 +14018,9 @@ Other 0 lds_seal_place PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -13315,6 +14091,9 @@ Other 0 sealparents PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -13340,6 +14119,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -13351,57 +14133,6 @@ Other - - - True - False - True - True - - - 2 - 3 - 2 - 3 - fill - fill - - - - - - True - False - True - True - - - 2 - 3 - 7 - 8 - fill - fill - - - - - - True - False - True - True - - - 2 - 3 - 12 - 13 - fill - fill - - - True @@ -13465,6 +14196,54 @@ Other fill + + + + True + False + True + + + 2 + 3 + 2 + 3 + fill + fill + + + + + + True + False + True + + + 2 + 3 + 7 + 8 + fill + fill + + + + + + True + False + True + + + 2 + 3 + 12 + 13 + fill + fill + + False @@ -13485,6 +14264,9 @@ Other 6 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -13516,6 +14298,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -13604,6 +14387,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -13653,6 +14439,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -13679,6 +14468,9 @@ Other 0 gid PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -13745,6 +14537,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -13770,6 +14565,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -13830,6 +14628,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -13866,6 +14667,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -13891,6 +14695,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -13916,6 +14723,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -13941,6 +14751,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -13966,6 +14779,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -13991,6 +14807,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -14016,6 +14835,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -14041,6 +14863,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -14065,6 +14890,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -14090,6 +14918,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -14115,6 +14946,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -14139,6 +14973,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -14163,6 +15000,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -14188,6 +15028,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -14213,6 +15056,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -14237,6 +15083,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -14279,6 +15128,8 @@ Other False True False + False + False @@ -14415,6 +15266,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -14451,6 +15305,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -14476,6 +15333,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -14501,6 +15361,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -14526,6 +15389,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -14551,6 +15417,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -14576,6 +15445,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -14601,6 +15473,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -14626,6 +15501,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -14650,6 +15528,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -14674,6 +15555,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -14716,6 +15600,8 @@ Other False True False + False + False @@ -14852,6 +15738,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -14923,6 +15812,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -15008,6 +15900,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -15038,6 +15933,8 @@ Other False True False + False + False @@ -15162,6 +16059,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -15348,6 +16248,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -15384,6 +16287,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -15409,6 +16315,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -15434,6 +16343,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -15459,6 +16371,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -15608,6 +16523,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -15647,6 +16565,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -15732,6 +16651,9 @@ Other 0 5 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -15776,6 +16698,9 @@ Other 0 place_title PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -15805,6 +16730,9 @@ Other 0 city PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -15834,6 +16762,9 @@ Other 0 state PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -15863,6 +16794,9 @@ Other 0 county PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -15892,6 +16826,9 @@ Other 0 country PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -15921,6 +16858,9 @@ Other 0 longitude PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -15950,6 +16890,9 @@ Other 0 latitude PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -15979,6 +16922,9 @@ Other 0 parish PANGO_ELLIPSIZE_NONE + -1 + False + 0 Church Parish: @@ -16177,6 +17123,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -16203,6 +17152,9 @@ Other 0 postal PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -16250,6 +17202,9 @@ Other 0 phone PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -16296,6 +17251,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -16321,6 +17279,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -16352,6 +17313,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -16388,6 +17352,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -16413,6 +17380,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -16438,6 +17408,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -16463,6 +17436,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -16488,6 +17464,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -16513,6 +17492,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -16539,6 +17521,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -16566,6 +17551,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -16593,6 +17581,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -16618,6 +17609,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -16644,6 +17638,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -16668,6 +17665,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -16693,6 +17693,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -16720,6 +17723,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -16745,6 +17751,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -16787,6 +17796,8 @@ Other False True False + False + False @@ -16934,6 +17945,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -17005,6 +18019,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -17090,6 +18107,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -17126,6 +18146,8 @@ Other False True False + False + False @@ -17270,6 +18292,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -17482,6 +18507,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -17518,6 +18546,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -17543,6 +18574,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -17568,6 +18602,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -17592,6 +18629,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -17617,6 +18657,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -17659,6 +18702,8 @@ Other False True False + False + False @@ -17833,6 +18878,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -17887,6 +18935,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -17923,6 +18974,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -17994,6 +19046,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 6 @@ -18032,6 +19087,8 @@ Other False True False + False + False @@ -18111,6 +19168,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -18141,6 +19201,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -18177,6 +19240,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -18225,6 +19291,9 @@ Other 3 lastnamegen PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -18279,6 +19348,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -18315,6 +19387,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -18386,6 +19461,9 @@ Other 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -18445,6 +19523,9 @@ Text Beside Icons 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -18505,6 +19586,9 @@ Text Beside Icons 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -18530,6 +19614,9 @@ Text Beside Icons 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -18601,6 +19688,9 @@ Text Beside Icons 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -18709,6 +19799,9 @@ Text Beside Icons 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -18746,6 +19839,9 @@ Text Beside Icons 5 date_format PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -18771,6 +19867,9 @@ Text Beside Icons 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -18825,6 +19924,9 @@ Text Beside Icons 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -18862,6 +19964,9 @@ Text Beside Icons 0 resname PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -18888,6 +19993,9 @@ Text Beside Icons 0 resaddr PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -18914,6 +20022,9 @@ Text Beside Icons 0 rescity PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -18940,6 +20051,9 @@ Text Beside Icons 0 resstate PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -18966,6 +20080,9 @@ Text Beside Icons 0 rescountry PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -18992,6 +20109,9 @@ Text Beside Icons 0 respostal PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -19018,6 +20138,9 @@ Text Beside Icons 0 resphone PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -19044,6 +20167,9 @@ Text Beside Icons 0 resemail PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -19237,6 +20363,9 @@ Text Beside Icons 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -19275,6 +20404,9 @@ Text Beside Icons 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -19312,6 +20444,9 @@ Text Beside Icons 2 iprefix PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -19338,6 +20473,9 @@ Text Beside Icons 2 fprefix PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -19364,6 +20502,9 @@ Text Beside Icons 2 pprefix PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -19390,6 +20531,9 @@ Text Beside Icons 2 sprefix PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -19416,6 +20560,9 @@ Text Beside Icons 2 oprefix PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -19546,6 +20693,9 @@ Text Beside Icons 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -19584,6 +20734,9 @@ Text Beside Icons 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -19635,6 +20788,7 @@ Text Beside Icons False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -19720,6 +20874,9 @@ Text Beside Icons 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -19759,6 +20916,9 @@ Text Beside Icons 0 conf PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -19785,6 +20945,9 @@ Text Beside Icons 0 spage PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -19811,6 +20974,9 @@ Text Beside Icons 0 sdate PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -19839,6 +21005,9 @@ Text Beside Icons 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -19867,6 +21036,9 @@ Text Beside Icons 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -19895,6 +21067,9 @@ Text Beside Icons 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -19920,6 +21095,9 @@ Text Beside Icons 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -19945,6 +21123,9 @@ Text Beside Icons 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -19970,6 +21151,9 @@ Text Beside Icons 3 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -19995,6 +21179,9 @@ Text Beside Icons 3 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -20020,6 +21207,9 @@ Text Beside Icons 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -20045,6 +21235,9 @@ Text Beside Icons 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -20341,6 +21534,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -20425,6 +21619,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -20458,6 +21655,8 @@ Very High False True False + False + False @@ -20609,6 +21808,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -20677,6 +21877,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -20703,6 +21906,8 @@ Very High False True False + False + False @@ -20756,6 +21961,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -20823,6 +22029,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -20871,6 +22080,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 label_item @@ -20908,6 +22120,9 @@ Very High 0 2 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -20934,6 +22149,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -20958,6 +22176,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -20982,6 +22203,9 @@ Very High 0 2 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -21008,6 +22232,9 @@ Very High 0 2 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -21034,6 +22261,9 @@ Very High 0 2 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -21060,6 +22290,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -21084,6 +22317,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -21108,6 +22344,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -21132,6 +22371,9 @@ Very High 0 2 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -21158,6 +22400,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -21202,6 +22447,8 @@ Very High False True False + False + False @@ -21238,6 +22485,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -21307,6 +22555,9 @@ Very High 0 10 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -21339,6 +22590,8 @@ Very High False True False + False + False @@ -21459,6 +22712,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -21529,6 +22783,9 @@ Very High 5 5 PANGO_ELLIPSIZE_NONE + -1 + False + 0 10 @@ -21558,6 +22815,9 @@ Very High 0 style_name PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -21629,6 +22889,8 @@ Very High False True False + False + False @@ -21669,6 +22931,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -21691,6 +22956,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -21719,6 +22987,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -21749,6 +23020,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -21881,6 +23155,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -21906,6 +23183,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -21931,6 +23211,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -21956,6 +23239,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -21982,6 +23268,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -22058,6 +23347,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -22108,6 +23400,9 @@ Very High 0 rmargin PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -22137,6 +23432,9 @@ Very High 0 lmargin PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -22166,6 +23464,9 @@ Very High 0 pad PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -22194,6 +23495,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -22219,6 +23523,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -22244,6 +23551,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -22423,6 +23733,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -22448,6 +23761,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -22474,6 +23790,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -22499,6 +23818,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -22524,6 +23846,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -22637,6 +23962,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -22683,6 +24011,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -22709,6 +24040,9 @@ Very High 0 pad PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -22740,6 +24074,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -22785,6 +24122,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -22867,6 +24205,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 6 @@ -22935,6 +24276,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 label_item @@ -22983,6 +24327,9 @@ Very High 0 photoDescription PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -23070,6 +24417,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -23156,6 +24504,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -23203,6 +24554,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 label_item @@ -23240,6 +24594,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -23265,6 +24622,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -23290,6 +24650,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -23315,6 +24678,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -23340,6 +24706,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -23365,6 +24734,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -23391,6 +24763,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -23416,6 +24791,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -23476,6 +24854,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -23501,6 +24882,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -23526,6 +24910,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -23551,6 +24938,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -23660,6 +25050,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -23707,6 +25100,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -23738,6 +25134,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -23809,6 +25208,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -23894,6 +25296,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -23950,6 +25355,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -23986,6 +25394,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -24011,6 +25422,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -24036,6 +25450,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -24060,6 +25477,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -24085,6 +25505,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -24128,6 +25551,8 @@ Very High False True False + False + False @@ -24277,6 +25702,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -24313,6 +25741,8 @@ Very High False True False + False + False @@ -24457,6 +25887,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -24496,6 +25929,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -24582,6 +26016,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -24629,6 +26066,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 label_item @@ -24666,6 +26106,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -24691,6 +26134,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -24716,6 +26162,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -24741,6 +26190,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -24765,6 +26217,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -24790,6 +26245,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -24857,6 +26315,9 @@ Very High 0 description PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -24903,6 +26364,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -24929,6 +26393,9 @@ Very High 0 place PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -25048,6 +26515,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -25084,6 +26554,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -25109,6 +26582,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -25133,6 +26609,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -25158,6 +26637,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -25183,6 +26665,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -25225,6 +26710,8 @@ Very High False True False + False + False @@ -25375,6 +26862,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -25446,6 +26936,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -25531,6 +27024,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -25554,6 +27050,8 @@ Very High False True False + False + False @@ -25577,6 +27075,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -25613,6 +27114,8 @@ Very High False True False + False + False @@ -25757,6 +27260,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -25793,6 +27299,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -25851,6 +27358,9 @@ Very High 6 12 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -25876,6 +27386,9 @@ Very High 6 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -25929,6 +27442,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -26015,6 +27529,9 @@ Very High 6 12 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -26060,6 +27577,9 @@ Very High 6 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -26115,6 +27635,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -26186,6 +27707,9 @@ Very High 6 12 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -26231,6 +27755,9 @@ Very High 6 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -26264,6 +27791,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -26335,6 +27863,9 @@ Very High 6 12 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -26380,6 +27911,9 @@ Very High 6 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -26413,6 +27947,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -26471,6 +28006,9 @@ Very High 6 12 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -26516,6 +28054,9 @@ Very High 6 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -26549,6 +28090,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -26607,6 +28149,9 @@ Very High 6 12 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -26652,6 +28197,9 @@ Very High 6 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -26685,6 +28233,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -26757,6 +28306,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -26846,6 +28398,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -26892,6 +28447,9 @@ Very High 6 24 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -26937,6 +28495,9 @@ Very High 6 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -26996,6 +28557,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -27084,6 +28646,9 @@ Very High 0 10 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -27127,6 +28692,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -27153,6 +28721,9 @@ Very High 0 eventDate PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -27182,6 +28753,9 @@ Very High 0 event_description PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -27211,6 +28785,9 @@ Very High 3 eventPlace PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -27240,6 +28817,9 @@ Very High 0 eventCause PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -27424,6 +29004,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -27460,6 +29043,8 @@ Very High False True False + False + False @@ -27604,6 +29189,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -27678,6 +29266,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -27763,6 +29354,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -27800,6 +29394,8 @@ Very High False True False + False + False @@ -27944,6 +29540,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -28156,6 +29755,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -28194,6 +29796,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -28279,6 +29882,9 @@ Very High 0 10 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -28322,6 +29928,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -28348,6 +29957,9 @@ Very High 0 attr_value PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -28442,6 +30054,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -28478,6 +30093,8 @@ Very High False True False + False + False @@ -28622,6 +30239,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -28694,6 +30314,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -28779,6 +30402,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -28817,6 +30443,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -28902,6 +30529,9 @@ Very High 0 10 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -28935,6 +30565,9 @@ Very High 0 city PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -28964,6 +30597,9 @@ Very High 0 county PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -28993,6 +30629,9 @@ Very High 0 country PANGO_ELLIPSIZE_NONE + -1 + False + 0 Country: @@ -29023,6 +30662,9 @@ Very High 0 state PANGO_ELLIPSIZE_NONE + -1 + False + 0 State: @@ -29053,6 +30695,9 @@ Very High 0 parish PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -29188,6 +30833,9 @@ Very High 0 phone PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -29235,6 +30883,9 @@ Very High 0 postal PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -29299,6 +30950,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -29385,6 +31037,9 @@ Very High 0 10 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -29429,6 +31084,9 @@ Very High 0 address_start PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -29458,6 +31116,9 @@ Very High 0 street PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -29487,6 +31148,9 @@ Very High 0 city PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -29516,6 +31180,9 @@ Very High 0 state PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -29545,6 +31212,9 @@ Very High 0 country PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -29574,6 +31244,9 @@ Very High 0 postal PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -29752,6 +31425,9 @@ Very High 0 phone PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -29831,6 +31507,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -29867,6 +31546,8 @@ Very High False True False + False + False @@ -30011,6 +31692,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -30083,6 +31767,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -30168,6 +31855,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -30206,6 +31896,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -30292,6 +31983,9 @@ Very High 0 10 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -30325,6 +32019,9 @@ Very High 0 url_addr PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -30354,6 +32051,9 @@ Very High 0 url_des PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -30479,6 +32179,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True True @@ -30566,6 +32267,9 @@ Very High 0 10 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -30610,6 +32314,9 @@ Very High 0 alt_given PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -30639,6 +32346,9 @@ Very High 0 alt_suffix PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -30667,6 +32377,9 @@ Very High 1 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -30696,6 +32409,9 @@ Very High 0 alt_title PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -30747,6 +32463,9 @@ Very High 0 alt_prefix PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -30861,6 +32580,9 @@ Very High 0 patronymic PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -30889,6 +32611,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -30959,6 +32684,9 @@ Very High 0 group_as PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -30987,6 +32715,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -31037,6 +32768,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -31065,6 +32799,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -31090,6 +32827,9 @@ Very High 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -31200,6 +32940,9 @@ Family name Given name 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -31237,6 +32980,8 @@ Family name Given name False True False + False + False @@ -31381,6 +33126,9 @@ Family name Given name 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -31454,6 +33202,9 @@ Family name Given name 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -31539,6 +33290,9 @@ Family name Given name 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -31577,6 +33331,7 @@ Family name Given name False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -31661,6 +33416,9 @@ Family name Given name 0 6 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -31694,6 +33452,9 @@ Family name Given name 0 name PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -31723,6 +33484,9 @@ Family name Given name 0 scrolledwindow30 PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -31903,6 +33667,7 @@ Family name Given name False GDK_WINDOW_TYPE_HINT_NORMAL GDK_GRAVITY_NORTH_WEST + True False @@ -31974,6 +33739,9 @@ Family name Given name 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -32074,6 +33842,9 @@ Family name Given name 6 6 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -32098,6 +33869,9 @@ Family name Given name 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -32132,6 +33906,7 @@ Family name Given name False GDK_WINDOW_TYPE_HINT_NORMAL GDK_GRAVITY_NORTH_WEST + True @@ -32157,6 +33932,9 @@ Family name Given name 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -32182,6 +33960,9 @@ Family name Given name 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -32207,6 +33988,9 @@ Family name Given name 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -32254,6 +34038,7 @@ Family name Given name False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -32334,6 +34119,9 @@ Family name Given name 0 6 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -32369,6 +34157,9 @@ Family name Given name 0 calendar_box PANGO_ELLIPSIZE_NONE + -1 + False + 0 6 @@ -32422,6 +34213,9 @@ Family name Given name 0 quality_box PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -32467,6 +34261,9 @@ Family name Given name 0 type_box PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -32511,6 +34308,9 @@ Family name Given name 6 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -32537,6 +34337,9 @@ Family name Given name 0 start_day PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -32563,6 +34366,9 @@ Family name Given name 0 start_month_box PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -32589,6 +34395,9 @@ Family name Given name 0 start_year PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -32675,6 +34484,9 @@ Family name Given name 6 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -32701,6 +34513,9 @@ Family name Given name 0 stop_day PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -32727,6 +34542,9 @@ Family name Given name 0 stop_month_box PANGO_ELLIPSIZE_NONE + -1 + False + 0 6 @@ -32753,6 +34571,9 @@ Family name Given name 0 stop_year PANGO_ELLIPSIZE_NONE + -1 + False + 0 7 @@ -32853,6 +34674,9 @@ Family name Given name 0 date_text_entry PANGO_ELLIPSIZE_NONE + -1 + False + 0 6 @@ -32919,6 +34743,7 @@ Family name Given name False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -32987,6 +34812,9 @@ Family name Given name 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -33015,6 +34843,9 @@ Family name Given name 0 0 PANGO_ELLIPSIZE_NONE + -1 + False + 0 0