rspreadsheet 0.4.9 → 0.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -35,10 +35,6 @@ class Worksheet
35
35
  def name; Tools.get_ns_attribute_value(@xmlnode,'table','name') end
36
36
  def name=(value); Tools.set_ns_attribute(@xmlnode,'table','name', value) end
37
37
 
38
- def rowxmlnode(rowi)
39
- my_subnode(rowi)
40
- end
41
-
42
38
  def first_unused_row_index
43
39
  first_unused_subitem_index
44
40
  end
@@ -1,5 +1,4 @@
1
1
  require 'spec_helper'
2
- require 'pry'
3
2
 
4
3
  describe Rspreadsheet::Cell do
5
4
  before do
@@ -240,6 +239,7 @@ describe Rspreadsheet::Cell do
240
239
  dyear = 1899; dmonth = 12; dday = 30
241
240
  Rspreadsheet::Cell.parse_time_value('PT923451H33M00S').should == Time.new(2005,5,5,3,33,00,0)
242
241
  Rspreadsheet::Cell.parse_time_value('PT1H33M00S').should == Time.new(dyear,dmonth,dday,1,33,00,0)
242
+ Rspreadsheet::Cell.parse_time_value('11:50').should == Time.parse('11:50')
243
243
  end
244
244
  it 'handles time of day correctly on assignement' do
245
245
  @sheet1.A11 = Rspreadsheet::Tools.new_time_value(2,13,27)
@@ -367,4 +367,9 @@ describe Rspreadsheet::Cell do
367
367
  sheet.B2.should == 'Course'
368
368
  sheet.A3.should == 'Teacher'
369
369
  end
370
+ it 'responds by exception to unusual cases' do
371
+ cell = @sheet1.cell('A1')
372
+ cell.define_singleton_method(:mode) { :intenionally_unusual_mode_just_for_test }
373
+ expect { cell.value }.to raise_error(/Unknown cell mode/)
374
+ end
370
375
  end
@@ -1,7 +1,9 @@
1
1
  require 'spec_helper'
2
2
 
3
+
3
4
  if RUBY_VERSION > '2.1'
4
5
  # testing ClassExtensionsForSpec
6
+ using ClassExtensions
5
7
  describe LibXML::XML::Node do
6
8
  before do
7
9
  @n = LibXML::XML::Node.new('a')
@@ -19,13 +21,24 @@ if RUBY_VERSION > '2.1'
19
21
  @m << LibXML::XML::Node.new_text('textnode')
20
22
 
21
23
  @m2 = LibXML::XML::Node.new('a')
24
+
25
+ @m3 = LibXML::XML::Node.new('a')
26
+ @m3 << LibXML::XML::Node.new('i','italic')
27
+ c = LibXML::XML::Node.new('p','paragraph')
28
+ c << LibXML::XML::Node.new('b','boldtext-another')
29
+ @m3 << c
30
+ @m3 << LibXML::XML::Node.new_text('textnode-other')
22
31
  end
23
32
  it 'can compare nodes' do
24
- @n.to_s.should be == @m.to_s
33
+ @n.to_s.should == @m.to_s
25
34
  @n.to_s.should_not == @m2.to_s
35
+ (@n === @m).should == true
36
+ (@n === @m2).should_not == true
26
37
  end
27
- it 'has correct elements' do
28
- # raise @n.first_diff(@m).inspect
38
+ it 'has correct text' do
39
+ @n.first_diff(@m).should == nil
40
+ @n.first_diff(nil).inspect.should_not == nil
41
+ @n.first_diff(@m3).inspect.should include 'boldtext-another'
29
42
  end
30
43
  end
31
44
 
@@ -0,0 +1,70 @@
1
+ require 'spec_helper'
2
+ using ClassExtensions if RUBY_VERSION > '2.1'
3
+
4
+ describe 'Rspreadsheet flat ODS format' do
5
+ before do
6
+ delete_tmpfile(@tmp_filename_fods = '/tmp/testfile.fods') # delete temp file before tests
7
+ delete_tmpfile(@tmp_filename_ods = '/tmp/testfile.ods')
8
+ end
9
+ after do
10
+ delete_tmpfile(@tmp_filename_fods)
11
+ delete_tmpfile(@tmp_filename_ods)
12
+ end
13
+
14
+ it 'can open flat ods testfile and reads its content correctly' do
15
+ book = Rspreadsheet.open($test_filename_fods, format: :fods )
16
+ s = book.worksheets(1)
17
+ (1..10).each do |i|
18
+ s[i,1].should === i
19
+ end
20
+ s[1,2].should === 'text'
21
+ s[2,2].should === Date.new(2014,1,1)
22
+
23
+ cell = s.cell(6,3)
24
+ cell.format.bold.should == true
25
+ cell = s.cell(6,4)
26
+ cell.format.bold.should == false
27
+ cell.format.italic.should == true
28
+ cell = s.cell(6,5)
29
+ cell.format.italic.should == false
30
+ cell.format.color.should == '#ff3333'
31
+ cell = s.cell(6,6)
32
+ cell.format.color.should_not == '#ff3333'
33
+ cell.format.background_color.should == '#6666ff'
34
+ cell = s.cell(6,7)
35
+ cell.format.font_size.should == '7pt'
36
+ end
37
+
38
+ it 'does not change when opened and saved again' do
39
+ book = Rspreadsheet.new($test_filename_fods, format: :flat) # open test file
40
+ book.save(@tmp_filename_fods) # and save it as temp file
41
+ Rspreadsheet::Tools.xml_file_diff($test_filename_fods, @tmp_filename_fods).should be_nil
42
+ end
43
+
44
+ it 'can be converted to normal format with convert_format_to_normal', :pending do
45
+ book = Rspreadsheet.open($test_filename_fods, format: :flat)
46
+ book.convert_format_to_normal
47
+ book.save_as(@tmp_filename_ods)
48
+ Rspreadsheet::Tools.content_xml_diff($test_filename_fods, @tmp_filename_ods).should be_nil
49
+ end
50
+
51
+ it 'pick format automaticaaly' do
52
+ book = Rspreadsheet.open($test_filename_fods)
53
+ book.flat_format?.should == true
54
+ book.save_as(@tmp_filename_fods)
55
+ expect {book = Rspreadsheet.open(@tmp_filename_fods)}.not_to raise_error
56
+ book.normal_format?.should == false
57
+
58
+ book = Rspreadsheet.open($test_filename_ods)
59
+ book.normal_format?.should == true
60
+ book.save_as(@tmp_filename_ods)
61
+ expect {book = Rspreadsheet.open(@tmp_filename_ods)}.not_to raise_error
62
+ book.flat_format?.should == false
63
+ end
64
+
65
+ private
66
+ def delete_tmpfile(afile)
67
+ File.delete(afile) if File.exist?(afile)
68
+ end
69
+
70
+ end
@@ -73,7 +73,9 @@ describe Rspreadsheet do
73
73
  end
74
74
  it 'can create new worksheet' do
75
75
  book = Rspreadsheet.new
76
+ book.worksheet_count.should == 0
76
77
  book.create_worksheet
78
+ book.worksheet_count.should == 1
77
79
  end
78
80
  it 'examples from README file are working' do
79
81
  Rspreadsheet.open($test_filename).save(@tmp_filename)
@@ -166,13 +168,29 @@ describe Rspreadsheet do
166
168
  book.save('/tmp/testfile.ods')
167
169
  end.not_to raise_error
168
170
  end
169
- it 'can save file to io stream and the content is the same as when saving to file', :skip do
171
+ it 'can save file to io stream and the content is the same as when saving to file' do
170
172
  book = Rspreadsheet.new($test_filename) # open test file
171
173
 
172
- file = File.open(@tmp_filename, 'w') # and save the stream to @tmp_filename
173
- file.write(book.save_to_io)
174
- file.close
174
+ File.open(@tmp_filename, 'w') do |file|
175
+ file.write(book.to_io.read) # this does not work
176
+ end
177
+
178
+ book1 = Rspreadsheet.new($test_filename) # now open both again
179
+ book2 = Rspreadsheet.new(@tmp_filename)
180
+ @sheet1 = book1.worksheets(1)
181
+ @sheet2 = book2.worksheets(1)
175
182
 
183
+ @sheet1.nonemptycells.each do |cell| # and test if they are identical
184
+ @sheet2[cell.rowi,cell.coli].should == cell.value
185
+ end
186
+ end
187
+ it 'can save file to file and the content is the same as when saving to file' do
188
+ book = Rspreadsheet.new($test_filename) # open test file
189
+
190
+ file = open(@tmp_filename, 'w')
191
+ book.save_to_io(file) # and save the stream to @tmp_filename
192
+ file.close
193
+
176
194
  book1 = Rspreadsheet.new($test_filename) # now open both again
177
195
  book2 = Rspreadsheet.new(@tmp_filename)
178
196
  @sheet1 = book1.worksheets(1)
@@ -30,10 +30,8 @@ Coveralls.wear!
30
30
 
31
31
  # some variables used everywhere
32
32
  $test_filename = './spec/testfile1.ods'
33
+ $test_filename_fods = './spec/testfile1.fods'
33
34
  $test_filename_images = './spec/testfile2-images.ods'
34
35
 
35
36
  # require my gem
36
37
  require 'rspreadsheet'
37
-
38
-
39
-
@@ -0,0 +1,1039 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+
3
+ <office:document xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:presentation="urn:oasis:names:tc:opendocument:xmlns:presentation:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:rpt="http://openoffice.org/2005/report" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:css3t="http://www.w3.org/TR/css3-text/" office:version="1.2" office:mimetype="application/vnd.oasis.opendocument.spreadsheet">
4
+ <office:meta><meta:creation-date>2014-05-17T14:48:24.207534932</meta:creation-date><dc:date>2017-03-25T18:11:28.237662270</dc:date><meta:editing-duration>PT12H45M9S</meta:editing-duration><meta:editing-cycles>40</meta:editing-cycles><meta:generator>LibreOffice/6.1.5.2$Linux_X86_64 LibreOffice_project/10$Build-2</meta:generator><dc:creator>Jakub Tesinsky</dc:creator><meta:document-statistic meta:table-count="1" meta:cell-count="41" meta:object-count="0"/></office:meta>
5
+ <office:settings>
6
+ <config:config-item-set config:name="ooo:view-settings">
7
+ <config:config-item config:name="VisibleAreaTop" config:type="int">0</config:config-item>
8
+ <config:config-item config:name="VisibleAreaLeft" config:type="int">0</config:config-item>
9
+ <config:config-item config:name="VisibleAreaWidth" config:type="int">18090</config:config-item>
10
+ <config:config-item config:name="VisibleAreaHeight" config:type="int">10385</config:config-item>
11
+ <config:config-item-map-indexed config:name="Views">
12
+ <config:config-item-map-entry>
13
+ <config:config-item config:name="ViewId" config:type="string">view1</config:config-item>
14
+ <config:config-item-map-named config:name="Tables">
15
+ <config:config-item-map-entry config:name="List1">
16
+ <config:config-item config:name="CursorPositionX" config:type="int">1</config:config-item>
17
+ <config:config-item config:name="CursorPositionY" config:type="int">8</config:config-item>
18
+ <config:config-item config:name="HorizontalSplitMode" config:type="short">0</config:config-item>
19
+ <config:config-item config:name="VerticalSplitMode" config:type="short">0</config:config-item>
20
+ <config:config-item config:name="HorizontalSplitPosition" config:type="int">0</config:config-item>
21
+ <config:config-item config:name="VerticalSplitPosition" config:type="int">0</config:config-item>
22
+ <config:config-item config:name="ActiveSplitRange" config:type="short">2</config:config-item>
23
+ <config:config-item config:name="PositionLeft" config:type="int">0</config:config-item>
24
+ <config:config-item config:name="PositionRight" config:type="int">0</config:config-item>
25
+ <config:config-item config:name="PositionTop" config:type="int">0</config:config-item>
26
+ <config:config-item config:name="PositionBottom" config:type="int">0</config:config-item>
27
+ <config:config-item config:name="ZoomType" config:type="short">0</config:config-item>
28
+ <config:config-item config:name="ZoomValue" config:type="int">100</config:config-item>
29
+ <config:config-item config:name="PageViewZoomValue" config:type="int">60</config:config-item>
30
+ <config:config-item config:name="ShowGrid" config:type="boolean">true</config:config-item>
31
+ <config:config-item config:name="AnchoredTextOverflowLegacy" config:type="boolean">false</config:config-item>
32
+ </config:config-item-map-entry>
33
+ </config:config-item-map-named>
34
+ <config:config-item config:name="ActiveTable" config:type="string">List1</config:config-item>
35
+ <config:config-item config:name="HorizontalScrollbarWidth" config:type="int">778</config:config-item>
36
+ <config:config-item config:name="ZoomType" config:type="short">0</config:config-item>
37
+ <config:config-item config:name="ZoomValue" config:type="int">100</config:config-item>
38
+ <config:config-item config:name="PageViewZoomValue" config:type="int">60</config:config-item>
39
+ <config:config-item config:name="ShowPageBreakPreview" config:type="boolean">false</config:config-item>
40
+ <config:config-item config:name="ShowZeroValues" config:type="boolean">true</config:config-item>
41
+ <config:config-item config:name="ShowNotes" config:type="boolean">true</config:config-item>
42
+ <config:config-item config:name="ShowGrid" config:type="boolean">true</config:config-item>
43
+ <config:config-item config:name="GridColor" config:type="int">12632256</config:config-item>
44
+ <config:config-item config:name="ShowPageBreaks" config:type="boolean">true</config:config-item>
45
+ <config:config-item config:name="HasColumnRowHeaders" config:type="boolean">true</config:config-item>
46
+ <config:config-item config:name="HasSheetTabs" config:type="boolean">true</config:config-item>
47
+ <config:config-item config:name="IsOutlineSymbolsSet" config:type="boolean">true</config:config-item>
48
+ <config:config-item config:name="IsValueHighlightingEnabled" config:type="boolean">false</config:config-item>
49
+ <config:config-item config:name="IsSnapToRaster" config:type="boolean">false</config:config-item>
50
+ <config:config-item config:name="RasterIsVisible" config:type="boolean">false</config:config-item>
51
+ <config:config-item config:name="RasterResolutionX" config:type="int">1000</config:config-item>
52
+ <config:config-item config:name="RasterResolutionY" config:type="int">1000</config:config-item>
53
+ <config:config-item config:name="RasterSubdivisionX" config:type="int">1</config:config-item>
54
+ <config:config-item config:name="RasterSubdivisionY" config:type="int">1</config:config-item>
55
+ <config:config-item config:name="IsRasterAxisSynchronized" config:type="boolean">true</config:config-item>
56
+ <config:config-item config:name="AnchoredTextOverflowLegacy" config:type="boolean">false</config:config-item>
57
+ </config:config-item-map-entry>
58
+ </config:config-item-map-indexed>
59
+ </config:config-item-set>
60
+ <config:config-item-set config:name="ooo:configuration-settings">
61
+ <config:config-item config:name="SyntaxStringRef" config:type="short">7</config:config-item>
62
+ <config:config-item config:name="AllowPrintJobCancel" config:type="boolean">true</config:config-item>
63
+ <config:config-item config:name="SaveVersionOnClose" config:type="boolean">false</config:config-item>
64
+ <config:config-item config:name="IsKernAsianPunctuation" config:type="boolean">false</config:config-item>
65
+ <config:config-item config:name="CharacterCompressionType" config:type="short">0</config:config-item>
66
+ <config:config-item config:name="ApplyUserData" config:type="boolean">true</config:config-item>
67
+ <config:config-item config:name="PrinterSetup" config:type="base64Binary">rQH+/0xleG1hcmstSW50ZXJuYXRpb25hbC1MZXhtYXJrLUNYMzE3ZG4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ1VQUzpMZXhtYXJrLUludGVybmF0aW9uYWwtTGV4bQAWAAMAzgAAAAAAAAAIAFZUAAAkbQAASm9iRGF0YSAxCnByaW50ZXI9TGV4bWFyay1JbnRlcm5hdGlvbmFsLUxleG1hcmstQ1gzMTdkbgpvcmllbnRhdGlvbj1Qb3J0cmFpdApjb3BpZXM9MQpjb2xsYXRlPWZhbHNlCm1hcmdpbmRhanVzdG1lbnQ9MCwwLDAsMApjb2xvcmRlcHRoPTI0CnBzbGV2ZWw9MApwZGZkZXZpY2U9MQpjb2xvcmRldmljZT0wClBQRENvbnRleERhdGEKUGFnZVNpemU6TGV0dGVyAAASAENPTVBBVF9EVVBMRVhfTU9ERQ8ARHVwbGV4TW9kZTo6T2Zm</config:config-item>
68
+ <config:config-item config:name="PrinterName" config:type="string">Lexmark-International-Lexmark-CX317dn</config:config-item>
69
+ <config:config-item-map-indexed config:name="ForbiddenCharacters">
70
+ <config:config-item-map-entry>
71
+ <config:config-item config:name="Language" config:type="string">cs</config:config-item>
72
+ <config:config-item config:name="Country" config:type="string">CZ</config:config-item>
73
+ <config:config-item config:name="Variant" config:type="string"/>
74
+ <config:config-item config:name="BeginLine" config:type="string"/>
75
+ <config:config-item config:name="EndLine" config:type="string"/>
76
+ </config:config-item-map-entry>
77
+ </config:config-item-map-indexed>
78
+ <config:config-item config:name="AutoCalculate" config:type="boolean">true</config:config-item>
79
+ <config:config-item config:name="LinkUpdateMode" config:type="short">3</config:config-item>
80
+ <config:config-item config:name="HasColumnRowHeaders" config:type="boolean">true</config:config-item>
81
+ <config:config-item config:name="LoadReadonly" config:type="boolean">false</config:config-item>
82
+ <config:config-item config:name="UpdateFromTemplate" config:type="boolean">true</config:config-item>
83
+ <config:config-item config:name="ShowZeroValues" config:type="boolean">true</config:config-item>
84
+ <config:config-item config:name="GridColor" config:type="int">12632256</config:config-item>
85
+ <config:config-item config:name="ShowPageBreaks" config:type="boolean">true</config:config-item>
86
+ <config:config-item config:name="ShowGrid" config:type="boolean">true</config:config-item>
87
+ <config:config-item config:name="PrinterPaperFromSetup" config:type="boolean">false</config:config-item>
88
+ <config:config-item config:name="IsOutlineSymbolsSet" config:type="boolean">true</config:config-item>
89
+ <config:config-item config:name="IsDocumentShared" config:type="boolean">false</config:config-item>
90
+ <config:config-item config:name="ShowNotes" config:type="boolean">true</config:config-item>
91
+ <config:config-item config:name="EmbedFonts" config:type="boolean">false</config:config-item>
92
+ <config:config-item config:name="HasSheetTabs" config:type="boolean">true</config:config-item>
93
+ <config:config-item config:name="RasterSubdivisionY" config:type="int">1</config:config-item>
94
+ <config:config-item config:name="RasterIsVisible" config:type="boolean">false</config:config-item>
95
+ <config:config-item config:name="RasterResolutionX" config:type="int">1000</config:config-item>
96
+ <config:config-item config:name="RasterResolutionY" config:type="int">1000</config:config-item>
97
+ <config:config-item config:name="IsSnapToRaster" config:type="boolean">false</config:config-item>
98
+ <config:config-item config:name="RasterSubdivisionX" config:type="int">1</config:config-item>
99
+ <config:config-item config:name="IsRasterAxisSynchronized" config:type="boolean">true</config:config-item>
100
+ </config:config-item-set>
101
+ </office:settings>
102
+ <office:scripts>
103
+ <office:script script:language="ooo:Basic">
104
+ <ooo:libraries xmlns:ooo="http://openoffice.org/2004/office" xmlns:xlink="http://www.w3.org/1999/xlink"/>
105
+ </office:script>
106
+ </office:scripts>
107
+ <office:font-face-decls>
108
+ <style:font-face style:name="Arial" svg:font-family="Arial" style:font-family-generic="swiss"/>
109
+ <style:font-face style:name="Arial1" svg:font-family="Arial" style:font-family-generic="swiss" style:font-pitch="variable"/>
110
+ <style:font-face style:name="Liberation Sans" svg:font-family="&apos;Liberation Sans&apos;" style:font-family-generic="swiss" style:font-pitch="variable"/>
111
+ <style:font-face style:name="DejaVu Sans" svg:font-family="&apos;DejaVu Sans&apos;" style:font-family-generic="system" style:font-pitch="variable"/>
112
+ <style:font-face style:name="Droid Sans Fallback" svg:font-family="&apos;Droid Sans Fallback&apos;" style:font-family-generic="system" style:font-pitch="variable"/>
113
+ <style:font-face style:name="FreeSans" svg:font-family="FreeSans" style:font-family-generic="system" style:font-pitch="variable"/>
114
+ <style:font-face style:name="Noto Sans CJK SC Regular" svg:font-family="&apos;Noto Sans CJK SC Regular&apos;" style:font-family-generic="system" style:font-pitch="variable"/>
115
+ </office:font-face-decls>
116
+ <office:styles>
117
+ <style:default-style style:family="table-cell">
118
+ <style:paragraph-properties style:tab-stop-distance="12.5mm"/>
119
+ <style:text-properties style:font-name="Liberation Sans" fo:language="cs" fo:country="CZ" style:font-name-asian="DejaVu Sans" style:language-asian="zh" style:country-asian="CN" style:font-name-complex="DejaVu Sans" style:language-complex="hi" style:country-complex="IN"/>
120
+ </style:default-style>
121
+ <number:number-style style:name="N0">
122
+ <number:number number:min-integer-digits="1"/>
123
+ </number:number-style>
124
+ <number:currency-style style:name="N108P0" style:volatile="true">
125
+ <number:number number:decimal-places="2" loext:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
126
+ <number:text> </number:text>
127
+ <number:currency-symbol number:language="cs" number:country="CZ">Kč</number:currency-symbol>
128
+ </number:currency-style>
129
+ <number:currency-style style:name="N108">
130
+ <style:text-properties fo:color="#ff0000"/>
131
+ <number:text>-</number:text>
132
+ <number:number number:decimal-places="2" loext:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
133
+ <number:text> </number:text>
134
+ <number:currency-symbol number:language="cs" number:country="CZ">Kč</number:currency-symbol>
135
+ <style:map style:condition="value()&gt;=0" style:apply-style-name="N108P0"/>
136
+ </number:currency-style>
137
+ <number:number-style style:name="N110P0" style:volatile="true">
138
+ <number:number number:decimal-places="0" loext:min-decimal-places="0" number:min-integer-digits="1" number:grouping="true" number:display-factor="1000"/>
139
+ </number:number-style>
140
+ <number:number-style style:name="N110">
141
+ <style:text-properties fo:color="#ff0000"/>
142
+ <number:text>-</number:text>
143
+ <number:number number:decimal-places="0" loext:min-decimal-places="0" number:min-integer-digits="1" number:grouping="true" number:display-factor="1000"/>
144
+ <style:map style:condition="value()&gt;=0" style:apply-style-name="N110P0"/>
145
+ </number:number-style>
146
+ <number:number-style style:name="N111">
147
+ <number:text>(</number:text>
148
+ <number:number number:decimal-places="0" loext:min-decimal-places="0" number:min-integer-digits="1" number:grouping="true"/>
149
+ <number:text>)</number:text>
150
+ </number:number-style>
151
+ <number:date-style style:name="N112">
152
+ <number:day/>
153
+ <number:text>.</number:text>
154
+ <number:month/>
155
+ <number:text>.</number:text>
156
+ <number:year number:style="long"/>
157
+ </number:date-style>
158
+ <number:number-style style:name="N113P0" style:volatile="true">
159
+ <number:number number:decimal-places="0" loext:min-decimal-places="0" number:min-integer-digits="1" number:grouping="true"/>
160
+ </number:number-style>
161
+ <number:number-style style:name="N113">
162
+ <style:text-properties fo:color="#ff0000"/>
163
+ <number:text>-</number:text>
164
+ <number:number number:decimal-places="0" loext:min-decimal-places="0" number:min-integer-digits="1" number:grouping="true"/>
165
+ <style:map style:condition="value()&gt;=0" style:apply-style-name="N113P0"/>
166
+ </number:number-style>
167
+ <number:number-style style:name="N114">
168
+ <number:number number:decimal-places="1" loext:min-decimal-places="1" number:min-integer-digits="1"/>
169
+ </number:number-style>
170
+ <number:currency-style style:name="N116P0" style:volatile="true">
171
+ <number:number number:decimal-places="2" loext:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
172
+ <number:text> </number:text>
173
+ <number:currency-symbol number:language="de" number:country="DE">€</number:currency-symbol>
174
+ </number:currency-style>
175
+ <number:currency-style style:name="N116">
176
+ <style:text-properties fo:color="#ff0000"/>
177
+ <number:text>-</number:text>
178
+ <number:number number:decimal-places="2" loext:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
179
+ <number:text> </number:text>
180
+ <number:currency-symbol number:language="de" number:country="DE">€</number:currency-symbol>
181
+ <style:map style:condition="value()&gt;=0" style:apply-style-name="N116P0"/>
182
+ </number:currency-style>
183
+ <number:number-style style:name="N117">
184
+ <number:number number:decimal-places="3" loext:min-decimal-places="3" number:min-integer-digits="1" number:grouping="true"/>
185
+ </number:number-style>
186
+ <number:number-style style:name="N118">
187
+ <number:number number:decimal-places="1" loext:min-decimal-places="1" number:min-integer-digits="1" number:grouping="true"/>
188
+ </number:number-style>
189
+ <number:percentage-style style:name="N119">
190
+ <number:number number:decimal-places="1" loext:min-decimal-places="1" number:min-integer-digits="1"/>
191
+ <number:text>%</number:text>
192
+ </number:percentage-style>
193
+ <number:time-style style:name="N120">
194
+ <number:minutes number:style="long"/>
195
+ <number:text>:</number:text>
196
+ <number:seconds number:style="long"/>
197
+ </number:time-style>
198
+ <number:time-style style:name="N121" number:truncate-on-overflow="false">
199
+ <number:hours/>
200
+ <number:text>:</number:text>
201
+ <number:minutes number:style="long"/>
202
+ <number:text>:</number:text>
203
+ <number:seconds number:style="long"/>
204
+ </number:time-style>
205
+ <number:time-style style:name="N122">
206
+ <number:minutes number:style="long"/>
207
+ <number:text>:</number:text>
208
+ <number:seconds number:style="long" number:decimal-places="1"/>
209
+ </number:time-style>
210
+ <number:number-style style:name="N123">
211
+ <number:scientific-number number:decimal-places="1" loext:min-decimal-places="1" number:min-integer-digits="3" number:min-exponent-digits="1" loext:exponent-interval="3" loext:forced-exponent-sign="true"/>
212
+ </number:number-style>
213
+ <number:number-style style:name="N124">
214
+ <number:number number:decimal-places="9" loext:min-decimal-places="9" number:min-integer-digits="1"/>
215
+ </number:number-style>
216
+ <number:number-style style:name="N125">
217
+ <number:number number:decimal-places="8" loext:min-decimal-places="8" number:min-integer-digits="1"/>
218
+ </number:number-style>
219
+ <number:number-style style:name="N126">
220
+ <number:number number:decimal-places="7" loext:min-decimal-places="7" number:min-integer-digits="1"/>
221
+ </number:number-style>
222
+ <number:number-style style:name="N127">
223
+ <number:number number:decimal-places="6" loext:min-decimal-places="6" number:min-integer-digits="1"/>
224
+ </number:number-style>
225
+ <number:number-style style:name="N128">
226
+ <number:number number:decimal-places="5" loext:min-decimal-places="5" number:min-integer-digits="1"/>
227
+ </number:number-style>
228
+ <number:number-style style:name="N129">
229
+ <number:number number:decimal-places="4" loext:min-decimal-places="4" number:min-integer-digits="1"/>
230
+ </number:number-style>
231
+ <number:number-style style:name="N130">
232
+ <number:number number:decimal-places="3" loext:min-decimal-places="3" number:min-integer-digits="1"/>
233
+ </number:number-style>
234
+ <number:currency-style style:name="N132P0" style:volatile="true">
235
+ <number:number number:decimal-places="1" loext:min-decimal-places="1" number:min-integer-digits="1" number:grouping="true"/>
236
+ <number:text> </number:text>
237
+ <number:currency-symbol number:language="cs" number:country="CZ">Kč</number:currency-symbol>
238
+ </number:currency-style>
239
+ <number:currency-style style:name="N132">
240
+ <style:text-properties fo:color="#ff0000"/>
241
+ <number:text>-</number:text>
242
+ <number:number number:decimal-places="1" loext:min-decimal-places="1" number:min-integer-digits="1" number:grouping="true"/>
243
+ <number:text> </number:text>
244
+ <number:currency-symbol number:language="cs" number:country="CZ">Kč</number:currency-symbol>
245
+ <style:map style:condition="value()&gt;=0" style:apply-style-name="N132P0"/>
246
+ </number:currency-style>
247
+ <number:currency-style style:name="N134P0" style:volatile="true">
248
+ <number:currency-symbol number:language="en" number:country="US">$</number:currency-symbol>
249
+ <number:number number:decimal-places="2" loext:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
250
+ </number:currency-style>
251
+ <number:currency-style style:name="N134">
252
+ <style:text-properties fo:color="#ff0000"/>
253
+ <number:text>-</number:text>
254
+ <number:currency-symbol number:language="en" number:country="US">$</number:currency-symbol>
255
+ <number:number number:decimal-places="2" loext:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
256
+ <style:map style:condition="value()&gt;=0" style:apply-style-name="N134P0"/>
257
+ </number:currency-style>
258
+ <number:currency-style style:name="N136P0" style:volatile="true">
259
+ <number:currency-symbol number:language="en" number:country="US">$</number:currency-symbol>
260
+ <number:number number:decimal-places="1" loext:min-decimal-places="1" number:min-integer-digits="1" number:grouping="true"/>
261
+ </number:currency-style>
262
+ <number:currency-style style:name="N136">
263
+ <style:text-properties fo:color="#ff0000"/>
264
+ <number:text>-</number:text>
265
+ <number:currency-symbol number:language="en" number:country="US">$</number:currency-symbol>
266
+ <number:number number:decimal-places="1" loext:min-decimal-places="1" number:min-integer-digits="1" number:grouping="true"/>
267
+ <style:map style:condition="value()&gt;=0" style:apply-style-name="N136P0"/>
268
+ </number:currency-style>
269
+ <number:currency-style style:name="N138P0" style:volatile="true">
270
+ <number:currency-symbol number:language="en" number:country="US">$</number:currency-symbol>
271
+ <number:number number:decimal-places="0" loext:min-decimal-places="0" number:min-integer-digits="1" number:grouping="true"/>
272
+ </number:currency-style>
273
+ <number:currency-style style:name="N138">
274
+ <style:text-properties fo:color="#ff0000"/>
275
+ <number:text>-</number:text>
276
+ <number:currency-symbol number:language="en" number:country="US">$</number:currency-symbol>
277
+ <number:number number:decimal-places="0" loext:min-decimal-places="0" number:min-integer-digits="1" number:grouping="true"/>
278
+ <style:map style:condition="value()&gt;=0" style:apply-style-name="N138P0"/>
279
+ </number:currency-style>
280
+ <number:currency-style style:name="N140P0" style:volatile="true">
281
+ <number:currency-symbol number:language="en" number:country="US">$</number:currency-symbol>
282
+ <number:text> </number:text>
283
+ <number:number number:decimal-places="5" loext:min-decimal-places="0" number:min-integer-digits="0" number:decimal-replacement=""/>
284
+ <number:text>.</number:text>
285
+ </number:currency-style>
286
+ <number:currency-style style:name="N140">
287
+ <style:text-properties fo:color="#ff0000"/>
288
+ <number:currency-symbol number:language="en" number:country="US">$</number:currency-symbol>
289
+ <number:text> (</number:text>
290
+ <number:number number:decimal-places="5" loext:min-decimal-places="0" number:min-integer-digits="0" number:decimal-replacement=""/>
291
+ <number:text>.)</number:text>
292
+ <style:map style:condition="value()&gt;=0" style:apply-style-name="N140P0"/>
293
+ </number:currency-style>
294
+ <number:currency-style style:name="N142P0" style:volatile="true">
295
+ <number:number number:decimal-places="2" loext:min-decimal-places="0" number:min-integer-digits="1" number:decimal-replacement="--" number:grouping="true"/>
296
+ <number:text> </number:text>
297
+ <number:currency-symbol number:language="cs" number:country="CZ">Kč</number:currency-symbol>
298
+ </number:currency-style>
299
+ <number:currency-style style:name="N142">
300
+ <style:text-properties fo:color="#ff0000"/>
301
+ <number:text>-</number:text>
302
+ <number:number number:decimal-places="2" loext:min-decimal-places="0" number:min-integer-digits="1" number:decimal-replacement="--" number:grouping="true"/>
303
+ <number:text> </number:text>
304
+ <number:currency-symbol number:language="cs" number:country="CZ">Kč</number:currency-symbol>
305
+ <style:map style:condition="value()&gt;=0" style:apply-style-name="N142P0"/>
306
+ </number:currency-style>
307
+ <number:date-style style:name="N143">
308
+ <number:day number:style="long"/>
309
+ <number:text>.</number:text>
310
+ <number:month number:style="long"/>
311
+ <number:text>.</number:text>
312
+ <number:year number:style="long"/>
313
+ <number:text> </number:text>
314
+ <number:year number:style="long"/>
315
+ <number:text> </number:text>
316
+ <number:hours number:style="long"/>
317
+ <number:text>:</number:text>
318
+ <number:minutes number:style="long"/>
319
+ <number:text>:</number:text>
320
+ <number:seconds number:style="long"/>
321
+ <number:text> </number:text>
322
+ <number:year number:style="long"/>
323
+ </number:date-style>
324
+ <number:percentage-style style:name="N144">
325
+ <number:number number:decimal-places="2" loext:min-decimal-places="2" number:min-integer-digits="1"/>
326
+ <number:text>%</number:text>
327
+ </number:percentage-style>
328
+ <number:number-style style:name="N10108P0" style:volatile="true" number:language="cs" number:country="CZ">
329
+ <number:number number:decimal-places="0" loext:min-decimal-places="0" number:min-integer-digits="1" number:grouping="true"/>
330
+ <number:text> Kč</number:text>
331
+ </number:number-style>
332
+ <number:number-style style:name="N10108" number:language="cs" number:country="CZ">
333
+ <number:text>-</number:text>
334
+ <number:number number:decimal-places="0" loext:min-decimal-places="0" number:min-integer-digits="1" number:grouping="true"/>
335
+ <number:text> Kč</number:text>
336
+ <style:map style:condition="value()&gt;=0" style:apply-style-name="N10108P0"/>
337
+ </number:number-style>
338
+ <number:number-style style:name="N10109P0" style:volatile="true" number:language="cs" number:country="CZ">
339
+ <number:number number:decimal-places="0" loext:min-decimal-places="0" number:min-integer-digits="1" number:grouping="true"/>
340
+ <number:text> Kč</number:text>
341
+ </number:number-style>
342
+ <number:number-style style:name="N10109" number:language="cs" number:country="CZ">
343
+ <style:text-properties fo:color="#ff0000"/>
344
+ <number:text>-</number:text>
345
+ <number:number number:decimal-places="0" loext:min-decimal-places="0" number:min-integer-digits="1" number:grouping="true"/>
346
+ <number:text> Kč</number:text>
347
+ <style:map style:condition="value()&gt;=0" style:apply-style-name="N10109P0"/>
348
+ </number:number-style>
349
+ <number:number-style style:name="N10111P0" style:volatile="true" number:language="cs" number:country="CZ">
350
+ <number:number number:decimal-places="2" loext:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
351
+ <number:text> Kč</number:text>
352
+ </number:number-style>
353
+ <number:number-style style:name="N10111" number:language="cs" number:country="CZ">
354
+ <number:text>-</number:text>
355
+ <number:number number:decimal-places="2" loext:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
356
+ <number:text> Kč</number:text>
357
+ <style:map style:condition="value()&gt;=0" style:apply-style-name="N10111P0"/>
358
+ </number:number-style>
359
+ <number:number-style style:name="N10112P0" style:volatile="true" number:language="cs" number:country="CZ">
360
+ <number:number number:decimal-places="2" loext:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
361
+ <number:text> Kč</number:text>
362
+ </number:number-style>
363
+ <number:number-style style:name="N10112" number:language="cs" number:country="CZ">
364
+ <style:text-properties fo:color="#ff0000"/>
365
+ <number:text>-</number:text>
366
+ <number:number number:decimal-places="2" loext:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
367
+ <number:text> Kč</number:text>
368
+ <style:map style:condition="value()&gt;=0" style:apply-style-name="N10112P0"/>
369
+ </number:number-style>
370
+ <number:date-style style:name="N10113" number:language="cs" number:country="CZ">
371
+ <number:day/>
372
+ <number:text>.</number:text>
373
+ <number:month/>
374
+ <number:text>.</number:text>
375
+ <number:year number:style="long"/>
376
+ </number:date-style>
377
+ <number:date-style style:name="N10114" number:language="cs" number:country="CZ">
378
+ <number:day/>
379
+ <number:text>.</number:text>
380
+ <number:month number:textual="true"/>
381
+ <number:text>.</number:text>
382
+ <number:year/>
383
+ </number:date-style>
384
+ <number:date-style style:name="N10115" number:language="cs" number:country="CZ">
385
+ <number:day/>
386
+ <number:text>.</number:text>
387
+ <number:month number:textual="true"/>
388
+ </number:date-style>
389
+ <number:date-style style:name="N10116" number:language="cs" number:country="CZ">
390
+ <number:month number:textual="true"/>
391
+ <number:text>.</number:text>
392
+ <number:year/>
393
+ </number:date-style>
394
+ <number:time-style style:name="N10117" number:language="cs" number:country="CZ">
395
+ <number:hours/>
396
+ <number:text>:</number:text>
397
+ <number:minutes number:style="long"/>
398
+ <number:text> </number:text>
399
+ <number:am-pm/>
400
+ </number:time-style>
401
+ <number:time-style style:name="N10118" number:language="cs" number:country="CZ">
402
+ <number:hours/>
403
+ <number:text>:</number:text>
404
+ <number:minutes number:style="long"/>
405
+ <number:text>:</number:text>
406
+ <number:seconds number:style="long"/>
407
+ <number:text> </number:text>
408
+ <number:am-pm/>
409
+ </number:time-style>
410
+ <number:time-style style:name="N10119" number:language="cs" number:country="CZ">
411
+ <number:hours/>
412
+ <number:text>:</number:text>
413
+ <number:minutes number:style="long"/>
414
+ </number:time-style>
415
+ <number:time-style style:name="N10120" number:language="cs" number:country="CZ">
416
+ <number:hours/>
417
+ <number:text>:</number:text>
418
+ <number:minutes number:style="long"/>
419
+ <number:text>:</number:text>
420
+ <number:seconds number:style="long"/>
421
+ </number:time-style>
422
+ <number:date-style style:name="N10121" number:language="cs" number:country="CZ">
423
+ <number:day/>
424
+ <number:text>.</number:text>
425
+ <number:month/>
426
+ <number:text>.</number:text>
427
+ <number:year number:style="long"/>
428
+ <number:text> </number:text>
429
+ <number:hours/>
430
+ <number:text>:</number:text>
431
+ <number:minutes number:style="long"/>
432
+ </number:date-style>
433
+ <number:number-style style:name="N10123P0" style:volatile="true" number:language="cs" number:country="CZ">
434
+ <number:number number:decimal-places="0" loext:min-decimal-places="0" number:min-integer-digits="1" number:grouping="true"/>
435
+ <number:text> </number:text>
436
+ </number:number-style>
437
+ <number:number-style style:name="N10123" number:language="cs" number:country="CZ">
438
+ <number:text>-</number:text>
439
+ <number:number number:decimal-places="0" loext:min-decimal-places="0" number:min-integer-digits="1" number:grouping="true"/>
440
+ <number:text> </number:text>
441
+ <style:map style:condition="value()&gt;=0" style:apply-style-name="N10123P0"/>
442
+ </number:number-style>
443
+ <number:number-style style:name="N10124P0" style:volatile="true" number:language="cs" number:country="CZ">
444
+ <number:number number:decimal-places="0" loext:min-decimal-places="0" number:min-integer-digits="1" number:grouping="true"/>
445
+ <number:text> </number:text>
446
+ </number:number-style>
447
+ <number:number-style style:name="N10124" number:language="cs" number:country="CZ">
448
+ <style:text-properties fo:color="#ff0000"/>
449
+ <number:text>-</number:text>
450
+ <number:number number:decimal-places="0" loext:min-decimal-places="0" number:min-integer-digits="1" number:grouping="true"/>
451
+ <number:text> </number:text>
452
+ <style:map style:condition="value()&gt;=0" style:apply-style-name="N10124P0"/>
453
+ </number:number-style>
454
+ <number:number-style style:name="N10126P0" style:volatile="true" number:language="cs" number:country="CZ">
455
+ <number:number number:decimal-places="2" loext:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
456
+ <number:text> </number:text>
457
+ </number:number-style>
458
+ <number:number-style style:name="N10126" number:language="cs" number:country="CZ">
459
+ <number:text>-</number:text>
460
+ <number:number number:decimal-places="2" loext:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
461
+ <number:text> </number:text>
462
+ <style:map style:condition="value()&gt;=0" style:apply-style-name="N10126P0"/>
463
+ </number:number-style>
464
+ <number:number-style style:name="N10127P0" style:volatile="true" number:language="cs" number:country="CZ">
465
+ <number:number number:decimal-places="2" loext:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
466
+ <number:text> </number:text>
467
+ </number:number-style>
468
+ <number:number-style style:name="N10127" number:language="cs" number:country="CZ">
469
+ <style:text-properties fo:color="#ff0000"/>
470
+ <number:text>-</number:text>
471
+ <number:number number:decimal-places="2" loext:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
472
+ <number:text> </number:text>
473
+ <style:map style:condition="value()&gt;=0" style:apply-style-name="N10127P0"/>
474
+ </number:number-style>
475
+ <number:number-style style:name="N10130P0" style:volatile="true" number:language="cs" number:country="CZ">
476
+ <loext:fill-character> </loext:fill-character>
477
+ <number:number number:decimal-places="0" loext:min-decimal-places="0" number:min-integer-digits="1" number:grouping="true"/>
478
+ <number:text> </number:text>
479
+ </number:number-style>
480
+ <number:number-style style:name="N10130P1" style:volatile="true" number:language="cs" number:country="CZ">
481
+ <loext:fill-character> </loext:fill-character>
482
+ <number:number number:decimal-places="0" loext:min-decimal-places="0" number:min-integer-digits="1" number:grouping="true"/>
483
+ <number:text> </number:text>
484
+ </number:number-style>
485
+ <number:number-style style:name="N10130P2" style:volatile="true" number:language="cs" number:country="CZ">
486
+ <loext:fill-character> </loext:fill-character>
487
+ <number:text>- </number:text>
488
+ </number:number-style>
489
+ <number:text-style style:name="N10130" number:language="cs" number:country="CZ">
490
+ <number:text-content/>
491
+ <number:text> </number:text>
492
+ <style:map style:condition="value()&gt;0" style:apply-style-name="N10130P0"/>
493
+ <style:map style:condition="value()&lt;0" style:apply-style-name="N10130P1"/>
494
+ <style:map style:condition="value()=0" style:apply-style-name="N10130P2"/>
495
+ </number:text-style>
496
+ <number:number-style style:name="N10133P0" style:volatile="true" number:language="cs" number:country="CZ">
497
+ <loext:fill-character> </loext:fill-character>
498
+ <number:number number:decimal-places="0" loext:min-decimal-places="0" number:min-integer-digits="1" number:grouping="true"/>
499
+ <number:text> Kč </number:text>
500
+ </number:number-style>
501
+ <number:number-style style:name="N10133P1" style:volatile="true" number:language="cs" number:country="CZ">
502
+ <loext:fill-character> </loext:fill-character>
503
+ <number:number number:decimal-places="0" loext:min-decimal-places="0" number:min-integer-digits="1" number:grouping="true"/>
504
+ <number:text> Kč </number:text>
505
+ </number:number-style>
506
+ <number:number-style style:name="N10133P2" style:volatile="true" number:language="cs" number:country="CZ">
507
+ <loext:fill-character> </loext:fill-character>
508
+ <number:text>- Kč </number:text>
509
+ </number:number-style>
510
+ <number:text-style style:name="N10133" number:language="cs" number:country="CZ">
511
+ <number:text-content/>
512
+ <number:text> </number:text>
513
+ <style:map style:condition="value()&gt;0" style:apply-style-name="N10133P0"/>
514
+ <style:map style:condition="value()&lt;0" style:apply-style-name="N10133P1"/>
515
+ <style:map style:condition="value()=0" style:apply-style-name="N10133P2"/>
516
+ </number:text-style>
517
+ <number:number-style style:name="N10136P0" style:volatile="true" number:language="cs" number:country="CZ">
518
+ <loext:fill-character> </loext:fill-character>
519
+ <number:number number:decimal-places="2" loext:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
520
+ <number:text> </number:text>
521
+ </number:number-style>
522
+ <number:number-style style:name="N10136P1" style:volatile="true" number:language="cs" number:country="CZ">
523
+ <loext:fill-character> </loext:fill-character>
524
+ <number:number number:decimal-places="2" loext:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
525
+ <number:text> </number:text>
526
+ </number:number-style>
527
+ <number:number-style style:name="N10136P2" style:volatile="true" number:language="cs" number:country="CZ">
528
+ <loext:fill-character> </loext:fill-character>
529
+ <number:text>-</number:text>
530
+ <number:number number:decimal-places="0" loext:min-decimal-places="0" number:min-integer-digits="0"/>
531
+ <number:text> </number:text>
532
+ </number:number-style>
533
+ <number:text-style style:name="N10136" number:language="cs" number:country="CZ">
534
+ <number:text-content/>
535
+ <number:text> </number:text>
536
+ <style:map style:condition="value()&gt;0" style:apply-style-name="N10136P0"/>
537
+ <style:map style:condition="value()&lt;0" style:apply-style-name="N10136P1"/>
538
+ <style:map style:condition="value()=0" style:apply-style-name="N10136P2"/>
539
+ </number:text-style>
540
+ <number:number-style style:name="N10139P0" style:volatile="true" number:language="cs" number:country="CZ">
541
+ <loext:fill-character> </loext:fill-character>
542
+ <number:number number:decimal-places="2" loext:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
543
+ <number:text> Kč </number:text>
544
+ </number:number-style>
545
+ <number:number-style style:name="N10139P1" style:volatile="true" number:language="cs" number:country="CZ">
546
+ <loext:fill-character> </loext:fill-character>
547
+ <number:number number:decimal-places="2" loext:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
548
+ <number:text> Kč </number:text>
549
+ </number:number-style>
550
+ <number:number-style style:name="N10139P2" style:volatile="true" number:language="cs" number:country="CZ">
551
+ <loext:fill-character> </loext:fill-character>
552
+ <number:text>-</number:text>
553
+ <number:number number:decimal-places="0" loext:min-decimal-places="0" number:min-integer-digits="0"/>
554
+ <number:text> Kč </number:text>
555
+ </number:number-style>
556
+ <number:text-style style:name="N10139" number:language="cs" number:country="CZ">
557
+ <number:text-content/>
558
+ <number:text> </number:text>
559
+ <style:map style:condition="value()&gt;0" style:apply-style-name="N10139P0"/>
560
+ <style:map style:condition="value()&lt;0" style:apply-style-name="N10139P1"/>
561
+ <style:map style:condition="value()=0" style:apply-style-name="N10139P2"/>
562
+ </number:text-style>
563
+ <number:time-style style:name="N10140" number:language="cs" number:country="CZ">
564
+ <number:minutes number:style="long"/>
565
+ <number:text>:</number:text>
566
+ <number:seconds number:style="long"/>
567
+ </number:time-style>
568
+ <number:time-style style:name="N10141" number:language="cs" number:country="CZ" number:truncate-on-overflow="false">
569
+ <number:hours/>
570
+ <number:text>:</number:text>
571
+ <number:minutes number:style="long"/>
572
+ <number:text>:</number:text>
573
+ <number:seconds number:style="long"/>
574
+ </number:time-style>
575
+ <number:time-style style:name="N10142" number:language="cs" number:country="CZ">
576
+ <number:minutes number:style="long"/>
577
+ <number:text>:</number:text>
578
+ <number:seconds number:style="long" number:decimal-places="1"/>
579
+ </number:time-style>
580
+ <number:number-style style:name="N10143" number:language="cs" number:country="CZ">
581
+ <number:scientific-number number:decimal-places="1" loext:min-decimal-places="1" number:min-integer-digits="3" number:min-exponent-digits="1" loext:exponent-interval="3" loext:forced-exponent-sign="true"/>
582
+ </number:number-style>
583
+ <number:currency-style style:name="N20123P0" style:volatile="true" number:language="en" number:country="US">
584
+ <number:currency-symbol number:language="en" number:country="US">$</number:currency-symbol>
585
+ <number:text> </number:text>
586
+ <number:number number:decimal-places="2" loext:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
587
+ </number:currency-style>
588
+ <number:currency-style style:name="N20123P1" style:volatile="true" number:language="en" number:country="US">
589
+ <style:text-properties fo:color="#ff0000"/>
590
+ <number:currency-symbol number:language="en" number:country="US">$</number:currency-symbol>
591
+ <number:text> (</number:text>
592
+ <number:number number:decimal-places="2" loext:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
593
+ <number:text>)</number:text>
594
+ </number:currency-style>
595
+ <number:currency-style style:name="N20123" number:language="en" number:country="US" number:title="USD účetní formát">
596
+ <number:currency-symbol number:language="en" number:country="US">$</number:currency-symbol>
597
+ <number:text> -</number:text>
598
+ <style:map style:condition="value()&gt;0" style:apply-style-name="N20123P0"/>
599
+ <style:map style:condition="value()&lt;0" style:apply-style-name="N20123P1"/>
600
+ </number:currency-style>
601
+ <number:currency-style style:name="N20125P0" style:volatile="true" number:language="en" number:country="US">
602
+ <number:currency-symbol number:language="en" number:country="US">$</number:currency-symbol>
603
+ <number:text> </number:text>
604
+ <number:number number:decimal-places="2" loext:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
605
+ </number:currency-style>
606
+ <number:currency-style style:name="N20125P1" style:volatile="true" number:language="en" number:country="US">
607
+ <number:currency-symbol number:language="en" number:country="US">$</number:currency-symbol>
608
+ <number:text> (</number:text>
609
+ <number:number number:decimal-places="2" loext:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
610
+ <number:text>)</number:text>
611
+ </number:currency-style>
612
+ <number:currency-style style:name="N20125" number:language="en" number:country="US">
613
+ <number:currency-symbol number:language="en" number:country="US">$</number:currency-symbol>
614
+ <number:text> -</number:text>
615
+ <style:map style:condition="value()&gt;0" style:apply-style-name="N20125P0"/>
616
+ <style:map style:condition="value()&lt;0" style:apply-style-name="N20125P1"/>
617
+ </number:currency-style>
618
+ <style:style style:name="Default" style:family="table-cell">
619
+ <style:text-properties style:font-name-asian="Droid Sans Fallback" style:font-family-asian="&apos;Droid Sans Fallback&apos;" style:font-family-generic-asian="system" style:font-pitch-asian="variable" style:font-name-complex="FreeSans" style:font-family-complex="FreeSans" style:font-family-generic-complex="system" style:font-pitch-complex="variable"/>
620
+ </style:style>
621
+ <style:style style:name="Result" style:family="table-cell" style:parent-style-name="Default">
622
+ <style:text-properties fo:font-style="italic" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color" fo:font-weight="bold"/>
623
+ </style:style>
624
+ <style:style style:name="Result2" style:family="table-cell" style:parent-style-name="Result" style:data-style-name="N108"/>
625
+ <style:style style:name="Heading" style:family="table-cell" style:parent-style-name="Default">
626
+ <style:table-cell-properties style:text-align-source="fix" style:repeat-content="false"/>
627
+ <style:paragraph-properties fo:text-align="center"/>
628
+ <style:text-properties fo:font-size="16pt" fo:font-style="italic" fo:font-weight="bold"/>
629
+ </style:style>
630
+ <style:style style:name="Heading1" style:family="table-cell" style:parent-style-name="Heading">
631
+ <style:table-cell-properties style:rotation-angle="90"/>
632
+ </style:style>
633
+ </office:styles>
634
+ <office:automatic-styles>
635
+ <style:style style:name="co1" style:family="table-column">
636
+ <style:table-column-properties fo:break-before="auto" style:column-width="8.01mm"/>
637
+ </style:style>
638
+ <style:style style:name="co2" style:family="table-column">
639
+ <style:table-column-properties fo:break-before="auto" style:column-width="26.53mm"/>
640
+ </style:style>
641
+ <style:style style:name="co3" style:family="table-column">
642
+ <style:table-column-properties fo:break-before="auto" style:column-width="22.58mm"/>
643
+ </style:style>
644
+ <style:style style:name="co4" style:family="table-column">
645
+ <style:table-column-properties fo:break-before="auto" style:column-width="20.51mm"/>
646
+ </style:style>
647
+ <style:style style:name="co5" style:family="table-column">
648
+ <style:table-column-properties fo:break-before="auto" style:column-width="40.9mm"/>
649
+ </style:style>
650
+ <style:style style:name="co6" style:family="table-column">
651
+ <style:table-column-properties fo:break-before="auto" style:column-width="39.79mm"/>
652
+ </style:style>
653
+ <style:style style:name="ro1" style:family="table-row">
654
+ <style:table-row-properties style:row-height="4.52mm" fo:break-before="auto" style:use-optimal-row-height="true"/>
655
+ </style:style>
656
+ <style:style style:name="ro2" style:family="table-row">
657
+ <style:table-row-properties style:row-height="4.52mm" fo:break-before="auto" style:use-optimal-row-height="true"/>
658
+ </style:style>
659
+ <style:style style:name="ta1" style:family="table" style:master-page-name="Default">
660
+ <style:table-properties table:display="true" style:writing-mode="lr-tb"/>
661
+ </style:style>
662
+ <number:number-style style:name="N3">
663
+ <number:number number:decimal-places="0" loext:min-decimal-places="0" number:min-integer-digits="1" number:grouping="true"/>
664
+ </number:number-style>
665
+ <number:date-style style:name="N36" number:automatic-order="true">
666
+ <number:day number:style="long"/>
667
+ <number:text>.</number:text>
668
+ <number:month number:style="long"/>
669
+ <number:text>.</number:text>
670
+ <number:year number:style="long"/>
671
+ </number:date-style>
672
+ <number:time-style style:name="N40">
673
+ <number:hours number:style="long"/>
674
+ <number:text>:</number:text>
675
+ <number:minutes number:style="long"/>
676
+ </number:time-style>
677
+ <number:time-style style:name="N42">
678
+ <number:hours number:style="long"/>
679
+ <number:text>:</number:text>
680
+ <number:minutes number:style="long"/>
681
+ <number:text> </number:text>
682
+ <number:am-pm/>
683
+ </number:time-style>
684
+ <number:date-style style:name="N52">
685
+ <number:year number:style="long"/>
686
+ <number:text>-</number:text>
687
+ <number:month number:style="long"/>
688
+ <number:text>-</number:text>
689
+ <number:day number:style="long"/>
690
+ <number:text> </number:text>
691
+ <number:hours number:style="long"/>
692
+ <number:text>:</number:text>
693
+ <number:minutes number:style="long"/>
694
+ <number:text>:</number:text>
695
+ <number:seconds number:style="long"/>
696
+ </number:date-style>
697
+ <style:style style:name="ce1" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N3">
698
+ <style:table-cell-properties fo:background-color="#c0c0c0" style:diagonal-bl-tr="none" style:diagonal-tl-br="none" style:text-align-source="value-type" style:repeat-content="false" fo:wrap-option="no-wrap" fo:border="none" style:direction="ltr" style:rotation-angle="0" style:rotation-align="none" style:shrink-to-fit="false" style:vertical-align="bottom" loext:vertical-justify="auto"/>
699
+ <style:paragraph-properties css3t:text-justify="auto" fo:margin-left="0mm" style:writing-mode="page"/>
700
+ <style:text-properties fo:color="#c0c0c0" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Arial" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="10pt" style:font-style-complex="normal" style:font-weight-complex="normal"/>
701
+ </style:style>
702
+ <style:style style:name="ce10" style:family="table-cell" style:parent-style-name="Default">
703
+ <style:text-properties fo:color="#0000ff"/>
704
+ </style:style>
705
+ <style:style style:name="ce11" style:family="table-cell" style:parent-style-name="Default">
706
+ <style:text-properties fo:font-style="italic" style:font-style-asian="italic" style:font-style-complex="italic"/>
707
+ </style:style>
708
+ <style:style style:name="ce12" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N40"/>
709
+ <style:style style:name="ce13" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N42"/>
710
+ <style:style style:name="ce14" style:family="table-cell" style:parent-style-name="Default">
711
+ <style:text-properties fo:color="#ff3333"/>
712
+ </style:style>
713
+ <style:style style:name="ce15" style:family="table-cell" style:parent-style-name="Default">
714
+ <style:table-cell-properties fo:border-bottom="none" fo:border-left="0.06pt solid #ff3333" fo:border-right="none" fo:border-top="none"/>
715
+ </style:style>
716
+ <style:style style:name="ce16" style:family="table-cell" style:parent-style-name="Default">
717
+ <style:table-cell-properties fo:background-color="#6666ff"/>
718
+ </style:style>
719
+ <style:style style:name="ce17" style:family="table-cell" style:parent-style-name="Default">
720
+ <style:table-cell-properties fo:border-bottom="none" fo:border-left="none" fo:border-right="none" fo:border-top="2.01pt dotted #009900"/>
721
+ </style:style>
722
+ <style:style style:name="ce18" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N52"/>
723
+ <style:style style:name="ce19" style:family="table-cell" style:parent-style-name="Default">
724
+ <style:text-properties fo:font-size="7pt" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
725
+ </style:style>
726
+ <style:style style:name="ce2" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N36"/>
727
+ <style:style style:name="ce3" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N144"/>
728
+ <style:style style:name="ce4" style:family="table-cell" style:parent-style-name="Default">
729
+ <style:text-properties fo:color="#999999" style:font-name="Arial" style:font-name-asian="Droid Sans Fallback" style:font-name-complex="Arial"/>
730
+ </style:style>
731
+ <style:style style:name="ce5" style:family="table-cell" style:parent-style-name="Default">
732
+ <style:text-properties fo:color="#666666" fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
733
+ </style:style>
734
+ <style:style style:name="ce6" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N140">
735
+ <style:table-cell-properties style:text-align-source="fix" style:repeat-content="false"/>
736
+ <style:paragraph-properties fo:text-align="end" fo:margin-left="0mm"/>
737
+ <style:text-properties style:font-name="Arial1"/>
738
+ </style:style>
739
+ <style:style style:name="ce7" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N142"/>
740
+ <style:style style:name="ce8" style:family="table-cell" style:parent-style-name="Default">
741
+ <style:text-properties fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
742
+ </style:style>
743
+ <style:style style:name="ce9" style:family="table-cell" style:parent-style-name="Default">
744
+ <style:table-cell-properties fo:border="0.06pt solid #000000"/>
745
+ </style:style>
746
+ <style:style style:name="ce39" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N3">
747
+ <style:table-cell-properties fo:background-color="#c0c0c0" style:diagonal-bl-tr="none" style:diagonal-tl-br="none" style:text-align-source="value-type" style:repeat-content="false" fo:wrap-option="no-wrap" fo:border="none" style:direction="ltr" style:rotation-angle="0" style:rotation-align="none" style:shrink-to-fit="false" style:vertical-align="bottom" loext:vertical-justify="auto"/>
748
+ <style:paragraph-properties css3t:text-justify="auto" fo:margin-left="0mm" style:writing-mode="page"/>
749
+ <style:text-properties fo:color="#c0c0c0" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Arial" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="10pt" style:font-style-complex="normal" style:font-weight-complex="normal"/>
750
+ </style:style>
751
+ <style:style style:name="ce40" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N36"/>
752
+ <style:style style:name="ce41" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N144"/>
753
+ <style:style style:name="ce42" style:family="table-cell" style:parent-style-name="Default">
754
+ <style:text-properties fo:color="#999999" style:font-name="Arial" style:font-name-asian="Droid Sans Fallback" style:font-name-complex="Arial"/>
755
+ </style:style>
756
+ <style:style style:name="ce43" style:family="table-cell" style:parent-style-name="Default">
757
+ <style:text-properties fo:color="#666666" fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
758
+ </style:style>
759
+ <style:style style:name="ce44" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N140">
760
+ <style:table-cell-properties style:text-align-source="fix" style:repeat-content="false"/>
761
+ <style:paragraph-properties fo:text-align="end" fo:margin-left="0mm"/>
762
+ <style:text-properties style:font-name="Arial1"/>
763
+ </style:style>
764
+ <style:style style:name="ce45" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N142"/>
765
+ <style:style style:name="ce46" style:family="table-cell" style:parent-style-name="Default">
766
+ <style:text-properties fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
767
+ </style:style>
768
+ <style:style style:name="ce47" style:family="table-cell" style:parent-style-name="Default">
769
+ <style:table-cell-properties fo:border="0.06pt solid #000000"/>
770
+ </style:style>
771
+ <style:style style:name="ce48" style:family="table-cell" style:parent-style-name="Default">
772
+ <style:text-properties fo:color="#0000ff"/>
773
+ </style:style>
774
+ <style:style style:name="ce49" style:family="table-cell" style:parent-style-name="Default">
775
+ <style:text-properties fo:font-style="italic" style:font-style-asian="italic" style:font-style-complex="italic"/>
776
+ </style:style>
777
+ <style:style style:name="ce50" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N40"/>
778
+ <style:style style:name="ce51" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N42"/>
779
+ <style:style style:name="ce52" style:family="table-cell" style:parent-style-name="Default">
780
+ <style:text-properties fo:color="#ff3333"/>
781
+ </style:style>
782
+ <style:style style:name="ce53" style:family="table-cell" style:parent-style-name="Default">
783
+ <style:table-cell-properties fo:border-bottom="none" fo:border-left="0.06pt solid #ff3333" fo:border-right="none" fo:border-top="none"/>
784
+ </style:style>
785
+ <style:style style:name="ce54" style:family="table-cell" style:parent-style-name="Default">
786
+ <style:table-cell-properties fo:background-color="#6666ff"/>
787
+ </style:style>
788
+ <style:style style:name="ce55" style:family="table-cell" style:parent-style-name="Default">
789
+ <style:table-cell-properties fo:border-bottom="none" fo:border-left="none" fo:border-right="none" fo:border-top="2.01pt dotted #009900"/>
790
+ </style:style>
791
+ <style:style style:name="ce56" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N52"/>
792
+ <style:style style:name="ce57" style:family="table-cell" style:parent-style-name="Default">
793
+ <style:text-properties fo:font-size="7pt" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
794
+ </style:style>
795
+ <style:page-layout style:name="pm1">
796
+ <style:page-layout-properties style:writing-mode="lr-tb"/>
797
+ <style:header-style>
798
+ <style:header-footer-properties fo:min-height="7.5mm" fo:margin-left="0mm" fo:margin-right="0mm" fo:margin-bottom="2.5mm"/>
799
+ </style:header-style>
800
+ <style:footer-style>
801
+ <style:header-footer-properties fo:min-height="7.5mm" fo:margin-left="0mm" fo:margin-right="0mm" fo:margin-top="2.5mm"/>
802
+ </style:footer-style>
803
+ </style:page-layout>
804
+ <style:page-layout style:name="pm2">
805
+ <style:page-layout-properties style:writing-mode="lr-tb"/>
806
+ <style:header-style>
807
+ <style:header-footer-properties fo:min-height="7.5mm" fo:margin-left="0mm" fo:margin-right="0mm" fo:margin-bottom="2.5mm" fo:border="2.49pt solid #000000" fo:padding="0.18mm" fo:background-color="#c0c0c0">
808
+ <style:background-image/>
809
+ </style:header-footer-properties>
810
+ </style:header-style>
811
+ <style:footer-style>
812
+ <style:header-footer-properties fo:min-height="7.5mm" fo:margin-left="0mm" fo:margin-right="0mm" fo:margin-top="2.5mm" fo:border="2.49pt solid #000000" fo:padding="0.18mm" fo:background-color="#c0c0c0">
813
+ <style:background-image/>
814
+ </style:header-footer-properties>
815
+ </style:footer-style>
816
+ </style:page-layout>
817
+ </office:automatic-styles>
818
+ <office:master-styles>
819
+ <style:master-page style:name="Default" style:page-layout-name="pm1">
820
+ <style:header>
821
+ <text:p><text:sheet-name>???</text:sheet-name></text:p>
822
+ </style:header>
823
+ <style:header-left style:display="false"/>
824
+ <style:footer>
825
+ <text:p>Stránka <text:page-number>1</text:page-number></text:p>
826
+ </style:footer>
827
+ <style:footer-left style:display="false"/>
828
+ </style:master-page>
829
+ <style:master-page style:name="Report" style:page-layout-name="pm2">
830
+ <style:header>
831
+ <style:region-left>
832
+ <text:p><text:sheet-name>???</text:sheet-name><text:s/>(<text:title>???</text:title>)</text:p>
833
+ </style:region-left>
834
+ <style:region-right>
835
+ <text:p><text:date style:data-style-name="N2" text:date-value="2019-06-03">00.00.0000</text:date>, <text:time style:data-style-name="N2" text:time-value="17:43:00.784830851">00:00:00</text:time></text:p>
836
+ </style:region-right>
837
+ </style:header>
838
+ <style:header-left style:display="false"/>
839
+ <style:footer>
840
+ <text:p>Stránka <text:page-number>1</text:page-number><text:s/>/ <text:page-count>99</text:page-count></text:p>
841
+ </style:footer>
842
+ <style:footer-left style:display="false"/>
843
+ </style:master-page>
844
+ </office:master-styles>
845
+ <office:body>
846
+ <office:spreadsheet>
847
+ <table:table table:name="List1" table:style-name="ta1">
848
+ <table:table-column table:style-name="co1" table:default-cell-style-name="Default"/>
849
+ <table:table-column table:style-name="co2" table:default-cell-style-name="Default"/>
850
+ <table:table-column table:style-name="co3" table:default-cell-style-name="Default"/>
851
+ <table:table-column table:style-name="co4" table:default-cell-style-name="Default"/>
852
+ <table:table-column table:style-name="co5" table:default-cell-style-name="Default"/>
853
+ <table:table-column table:style-name="co6" table:default-cell-style-name="Default"/>
854
+ <table:table-column table:style-name="co3" table:default-cell-style-name="Default"/>
855
+ <table:table-row table:style-name="ro1">
856
+ <table:table-cell office:value-type="float" office:value="1" calcext:value-type="float">
857
+ <text:p>1</text:p>
858
+ </table:table-cell>
859
+ <table:table-cell office:value-type="string" calcext:value-type="string">
860
+ <text:p>text</text:p>
861
+ </table:table-cell>
862
+ <table:table-cell table:number-columns-repeated="5"/>
863
+ </table:table-row>
864
+ <table:table-row table:style-name="ro1">
865
+ <table:table-cell office:value-type="float" office:value="2" calcext:value-type="float">
866
+ <text:p>2</text:p>
867
+ </table:table-cell>
868
+ <table:table-cell table:style-name="ce40" office:value-type="date" office:date-value="2014-01-01" calcext:value-type="date">
869
+ <text:p>01.01.2014</text:p>
870
+ </table:table-cell>
871
+ <table:table-cell table:number-columns-repeated="5"/>
872
+ </table:table-row>
873
+ <table:table-row table:style-name="ro1">
874
+ <table:table-cell office:value-type="float" office:value="3" calcext:value-type="float">
875
+ <text:p>3</text:p>
876
+ </table:table-cell>
877
+ <table:table-cell table:style-name="ce41" office:value-type="percentage" office:value="0.45" calcext:value-type="percentage">
878
+ <text:p>45,00%</text:p>
879
+ </table:table-cell>
880
+ <table:table-cell table:number-columns-repeated="5"/>
881
+ </table:table-row>
882
+ <table:table-row table:style-name="ro1">
883
+ <table:table-cell office:value-type="float" office:value="4" calcext:value-type="float">
884
+ <text:p>4</text:p>
885
+ </table:table-cell>
886
+ <table:table-cell table:style-name="ce42" table:formula="of:=IF(ISBLANK([.C4]);&quot;nic&quot;;&quot;nesmysl&quot;)" office:value-type="string" office:string-value="nic" calcext:value-type="string">
887
+ <text:p>nic</text:p>
888
+ </table:table-cell>
889
+ <table:table-cell/>
890
+ <table:table-cell table:number-columns-repeated="4" table:style-name="ce48" office:value-type="float" office:value="7" calcext:value-type="float">
891
+ <text:p>7</text:p>
892
+ </table:table-cell>
893
+ </table:table-row>
894
+ <table:table-row table:style-name="ro1">
895
+ <table:table-cell office:value-type="float" office:value="5" calcext:value-type="float">
896
+ <text:p>5</text:p>
897
+ </table:table-cell>
898
+ <table:table-cell table:number-columns-repeated="6"/>
899
+ </table:table-row>
900
+ <table:table-row table:style-name="ro1">
901
+ <table:table-cell office:value-type="float" office:value="6" calcext:value-type="float">
902
+ <text:p>6</text:p>
903
+ </table:table-cell>
904
+ <table:table-cell/>
905
+ <table:table-cell table:style-name="ce46" office:value-type="string" calcext:value-type="string">
906
+ <text:p>bold</text:p>
907
+ </table:table-cell>
908
+ <table:table-cell table:style-name="ce49" office:value-type="string" calcext:value-type="string">
909
+ <text:p>italic</text:p>
910
+ </table:table-cell>
911
+ <table:table-cell table:style-name="ce52" office:value-type="string" calcext:value-type="string">
912
+ <text:p>red font</text:p>
913
+ </table:table-cell>
914
+ <table:table-cell table:style-name="ce54" office:value-type="string" calcext:value-type="string">
915
+ <text:p>blue backgound</text:p>
916
+ </table:table-cell>
917
+ <table:table-cell table:style-name="ce57" office:value-type="string" calcext:value-type="string">
918
+ <text:p>font size 7</text:p>
919
+ </table:table-cell>
920
+ </table:table-row>
921
+ <table:table-row table:style-name="ro1">
922
+ <table:table-cell office:value-type="float" office:value="7" calcext:value-type="float">
923
+ <text:p>7</text:p>
924
+ </table:table-cell>
925
+ <table:table-cell table:number-columns-repeated="6"/>
926
+ </table:table-row>
927
+ <table:table-row table:style-name="ro1">
928
+ <table:table-cell office:value-type="float" office:value="8" calcext:value-type="float">
929
+ <text:p>8</text:p>
930
+ </table:table-cell>
931
+ <table:table-cell/>
932
+ <table:table-cell table:style-name="ce47" office:value-type="string" calcext:value-type="string">
933
+ <text:p>border</text:p>
934
+ </table:table-cell>
935
+ <table:table-cell/>
936
+ <table:table-cell table:style-name="ce53"/>
937
+ <table:table-cell table:style-name="ce55"/>
938
+ <table:table-cell/>
939
+ </table:table-row>
940
+ <table:table-row table:style-name="ro1">
941
+ <table:table-cell office:value-type="float" office:value="9" calcext:value-type="float">
942
+ <text:p>9</text:p>
943
+ </table:table-cell>
944
+ <table:table-cell table:style-name="ce43" table:number-columns-repeated="2"/>
945
+ <table:table-cell table:number-columns-repeated="4"/>
946
+ </table:table-row>
947
+ <table:table-row table:style-name="ro1">
948
+ <table:table-cell office:value-type="float" office:value="10" calcext:value-type="float">
949
+ <text:p>10</text:p>
950
+ </table:table-cell>
951
+ <table:table-cell table:number-columns-repeated="6"/>
952
+ </table:table-row>
953
+ <table:table-row table:style-name="ro1">
954
+ <table:table-cell table:number-columns-repeated="7"/>
955
+ </table:table-row>
956
+ <table:table-row table:style-name="ro1">
957
+ <table:table-cell office:value-type="string" calcext:value-type="string"><text:p>[<text:a xlink:href="http://example.org/" xlink:type="simple">http://example.org/</text:a>]</text:p>
958
+ </table:table-cell>
959
+ <table:table-cell table:number-columns-repeated="6"/>
960
+ </table:table-row>
961
+ <table:table-row table:style-name="ro1">
962
+ <table:table-cell table:style-name="ce39" table:number-columns-repeated="4"/>
963
+ <table:table-cell office:value-type="string" calcext:value-type="string">
964
+ <text:p>afterrepeated</text:p>
965
+ </table:table-cell>
966
+ <table:table-cell table:number-columns-repeated="2"/>
967
+ </table:table-row>
968
+ <table:table-row table:style-name="ro1" table:number-rows-repeated="5">
969
+ <table:table-cell table:number-columns-repeated="7"/>
970
+ </table:table-row>
971
+ <table:table-row table:style-name="ro1">
972
+ <table:table-cell table:number-columns-repeated="5"/>
973
+ <table:table-cell office:value-type="string" calcext:value-type="string">
974
+ <text:p>F19</text:p>
975
+ </table:table-cell>
976
+ <table:table-cell/>
977
+ </table:table-row>
978
+ <table:table-row table:style-name="ro1">
979
+ <table:table-cell table:number-columns-repeated="7"/>
980
+ </table:table-row>
981
+ <table:table-row table:style-name="ro1">
982
+ <table:table-cell/>
983
+ <table:table-cell office:value-type="string" calcext:value-type="string">
984
+ <text:p>Currency types</text:p>
985
+ </table:table-cell>
986
+ <table:table-cell office:value-type="string" calcext:value-type="string">
987
+ <text:p>note</text:p>
988
+ </table:table-cell>
989
+ <table:table-cell office:value-type="string" calcext:value-type="string">
990
+ <text:p>Time types</text:p>
991
+ </table:table-cell>
992
+ <table:table-cell office:value-type="string" calcext:value-type="string">
993
+ <text:p>note</text:p>
994
+ </table:table-cell>
995
+ <table:table-cell office:value-type="string" calcext:value-type="string">
996
+ <text:p>Date types</text:p>
997
+ </table:table-cell>
998
+ <table:table-cell office:value-type="string" calcext:value-type="string">
999
+ <text:p>note</text:p>
1000
+ </table:table-cell>
1001
+ </table:table-row>
1002
+ <table:table-row table:style-name="ro1">
1003
+ <table:table-cell/>
1004
+ <table:table-cell table:style-name="ce44" office:value-type="currency" office:currency="USD" office:value="-147984.84" calcext:value-type="currency">
1005
+ <text:p>$ (147984,84.)</text:p>
1006
+ </table:table-cell>
1007
+ <table:table-cell/>
1008
+ <table:table-cell table:style-name="ce50" office:value-type="time" office:time-value="PT02H22M00S" calcext:value-type="time">
1009
+ <text:p>02:22</text:p>
1010
+ </table:table-cell>
1011
+ <table:table-cell office:value-type="string" calcext:value-type="string">
1012
+ <text:p>simplest example – time only</text:p>
1013
+ </table:table-cell>
1014
+ <table:table-cell table:style-name="ce56" office:value-type="date" office:date-value="2006-06-06T03:44:21" calcext:value-type="date">
1015
+ <text:p>2006-06-06 03:44:21</text:p>
1016
+ </table:table-cell>
1017
+ <table:table-cell office:value-type="string" calcext:value-type="string">
1018
+ <text:p>date and time</text:p>
1019
+ </table:table-cell>
1020
+ </table:table-row>
1021
+ <table:table-row table:style-name="ro1">
1022
+ <table:table-cell/>
1023
+ <table:table-cell table:style-name="ce45" office:value-type="currency" office:currency="CZK" office:value="344" calcext:value-type="currency">
1024
+ <text:p>344,-- Kč</text:p>
1025
+ </table:table-cell>
1026
+ <table:table-cell/>
1027
+ <table:table-cell table:style-name="ce51" office:value-type="time" office:time-value="PT923451H33M00.000000168S" calcext:value-type="time">
1028
+ <text:p>03:33 dop.</text:p>
1029
+ </table:table-cell>
1030
+ <table:table-cell office:value-type="string" calcext:value-type="string">
1031
+ <text:p>time with „hidden date“ (date converted to time)</text:p>
1032
+ </table:table-cell>
1033
+ <table:table-cell table:number-columns-repeated="2"/>
1034
+ </table:table-row>
1035
+ </table:table>
1036
+ <table:named-expressions/>
1037
+ </office:spreadsheet>
1038
+ </office:body>
1039
+ </office:document>