diff options
| author | Randy Morgan <[email protected]> | 2012-07-03 20:41:56 +0900 |
|---|---|---|
| committer | Randy Morgan <[email protected]> | 2012-07-03 20:41:56 +0900 |
| commit | 0bc5ee2715578626ccd5c28e0246394917d55aea (patch) | |
| tree | 24d83f406c9fe60efe11787af6c1af244b152e39 | |
| parent | 807c9a3caccc9e96d06c31d8d55c1817e4718c0d (diff) | |
| download | caxlsx-0bc5ee2715578626ccd5c28e0246394917d55aea.tar.gz caxlsx-0bc5ee2715578626ccd5c28e0246394917d55aea.zip | |
more work on snake case standardization
27 files changed, 1393 insertions, 79 deletions
diff --git a/lib/axlsx/drawing/bar_3D_chart.rb b/lib/axlsx/drawing/bar_3D_chart.rb index abed702b..7f9165da 100644 --- a/lib/axlsx/drawing/bar_3D_chart.rb +++ b/lib/axlsx/drawing/bar_3D_chart.rb @@ -10,24 +10,29 @@ module Axlsx # the category axis # @return [CatAxis] - attr_reader :catAxis + attr_reader :cat_axis + alias :catAxis :cat_axis - # the valueaxis + # the value axis # @return [ValAxis] - attr_reader :valAxis + attr_reader :val_axis + alias :valAxis :val_axis # The direction of the bars in the chart # must be one of [:bar, :col] # @return [Symbol] - attr_reader :barDir + attr_reader :bar_dir + alias :barDir :bar_dir # space between bar or column clusters, as a percentage of the bar or column width. # @return [String] - attr_reader :gapDepth + attr_reader :gap_depth + alias :gapDepth :gap_depth # space between bar or column clusters, as a percentage of the bar or column width. # @return [String] - attr_reader :gapWidth + attr_reader :gap_width + alias :gapWidth :gap_width #grouping for a column, line, or area chart. # must be one of [:percentStacked, :clustered, :standard, :stacked] @@ -46,38 +51,39 @@ module Axlsx # @param [GraphicFrame] frame The workbook that owns this chart. # @option options [Cell, String] title # @option options [Boolean] show_legend - # @option options [Symbol] barDir + # @option options [Symbol] bar_dir # @option options [Symbol] grouping - # @option options [String] gapWidth - # @option options [String] gapDepth + # @option options [String] gap_width + # @option options [String] gap_depth # @option options [Symbol] shape - # @option options [Integer] rotX - # @option options [String] hPercent - # @option options [Integer] rotY - # @option options [String] depthPercent - # @option options [Boolean] rAngAx + # @option options [Integer] rot_x + # @option options [String] h_percent + # @option options [Integer] rot_y + # @option options [String] depth_percent + # @option options [Boolean] r_ang_ax # @option options [Integer] perspective # @see Chart # @see View3D def initialize(frame, options={}) - @barDir = :bar + @bar_dir = :bar @grouping = :clustered - @gapWidth, @gapDepth, @shape = nil, nil, nil - @catAxId = rand(8 ** 8) - @valAxId = rand(8 ** 8) - @catAxis = CatAxis.new(@catAxId, @valAxId) - @valAxis = ValAxis.new(@valAxId, @catAxId, :tickLblPos => :low) + @gap_width, @gap_depth, @shape = nil, nil, nil + @cat_ax_id = rand(8 ** 8) + @val_ax_id = rand(8 ** 8) + @cat_axis = CatAxis.new(@cat_ax_id, @val_ax_id) + @val_axis = ValAxis.new(@val_ax_id, @cat_ax_id, :tick_lbl_pos => :low) super(frame, options) @series_type = BarSeries - @view3D = View3D.new({:rAngAx=>1}.merge(options)) + @view_3D = View3D.new({:r_ang_ax=>1}.merge(options)) end # The direction of the bars in the chart # must be one of [:bar, :col] - def barDir=(v) - RestrictionValidator.validate "Bar3DChart.barDir", [:bar, :col], v - @barDir = v + def bar_dir=(v) + RestrictionValidator.validate "Bar3DChart.bar_dir", [:bar, :col], v + @bar_dir = v end + alias :barDir= :bar_dir= #grouping for a column, line, or area chart. # must be one of [:percentStacked, :clustered, :standard, :stacked] @@ -87,16 +93,18 @@ module Axlsx end # space between bar or column clusters, as a percentage of the bar or column width. - def gapWidth=(v) - RegexValidator.validate "Bar3DChart.gapWidth", GAP_AMOUNT_PERCENT, v - @gapWidth=(v) + def gap_width=(v) + RegexValidator.validate "Bar3DChart.gap_width", GAP_AMOUNT_PERCENT, v + @gap_width=(v) end + alias :gapWidth= :gap_width= # space between bar or column clusters, as a percentage of the bar or column width. - def gapDepth=(v) - RegexValidator.validate "Bar3DChart.gapWidth", GAP_AMOUNT_PERCENT, v - @gapDepth=(v) + def gap_depth=(v) + RegexValidator.validate "Bar3DChart.gap_didth", GAP_AMOUNT_PERCENT, v + @gap_depth=(v) end + alias :gapDepth= :gap_depth= # The shabe of the bars or columns # must be one of [:cone, :coneToMax, :box, :cylinder, :pyramid, :pyramidToMax] @@ -111,7 +119,7 @@ module Axlsx def to_xml_string(str = '') super(str) do |str_inner| str_inner << '<c:bar3DChart>' - str_inner << '<c:barDir val="' << barDir.to_s << '"/>' + str_inner << '<c:barDir val="' << bar_dir.to_s << '"/>' str_inner << '<c:grouping val="' << grouping.to_s << '"/>' str_inner << '<c:varyColors val="1"/>' @series.each { |ser| ser.to_xml_string(str_inner) } @@ -123,15 +131,15 @@ module Axlsx str_inner << '<c:showPercent val="0"/>' str_inner << '<c:showBubbleSize val="0"/>' str_inner << '</c:dLbls>' - str_inner << '<c:gapWidth val="' << @gapWidth.to_s << '"/>' unless @gapWidth.nil? - str_inner << '<c:gapDepth val="' << @gapDepth.to_s << '"/>' unless @gapDepth.nil? + str_inner << '<c:gapWidth val="' << @gap_width.to_s << '"/>' unless @gap_width.nil? + str_inner << '<c:gapDepth val="' << @gap_depth.to_s << '"/>' unless @gap_depth.nil? str_inner << '<c:shape val="' << @shape.to_s << '"/>' unless @shape.nil? - str_inner << '<c:axId val="' << @catAxId.to_s << '"/>' - str_inner << '<c:axId val="' << @valAxId.to_s << '"/>' + str_inner << '<c:axId val="' << @cat_ax_id.to_s << '"/>' + str_inner << '<c:axId val="' << @val_ax_id.to_s << '"/>' str_inner << '<c:axId val="0"/>' str_inner << '</c:bar3DChart>' - @catAxis.to_xml_string str_inner - @valAxis.to_xml_string str_inner + @cat_axis.to_xml_string str_inner + @val_axis.to_xml_string str_inner end end end diff --git a/lib/axlsx/drawing/chart.rb b/lib/axlsx/drawing/chart.rb index f0f0185b..1be4cf11 100644 --- a/lib/axlsx/drawing/chart.rb +++ b/lib/axlsx/drawing/chart.rb @@ -7,7 +7,8 @@ module Axlsx # The 3D view properties for the chart - attr_reader :view3D + attr_reader :view_3D + alias :view3D :view_3D # A reference to the graphic frame that owns this chart # @return [GraphicFrame] @@ -45,7 +46,7 @@ module Axlsx # @option options [Array|String|Cell] end_at The X, Y coordinates defining the bottom right corner of the chart. def initialize(frame, options={}) @style = 18 - @view3D = nil + @view_3D = nil @graphic_frame=frame @graphic_frame.anchor.drawing.worksheet.workbook.charts << self @series = SimpleTypedList.new Series @@ -127,7 +128,7 @@ module Axlsx @title.to_xml_string str # do these need the c: namespace as well??? str << '<c:autoTitleDeleted val="' << (@title == nil).to_s << '"/>' - @view3D.to_xml_string(str) if @view3D + @view_3D.to_xml_string(str) if @view_3D str << '<c:floor><c:thickness val="0"/></c:floor>' str << '<c:sideWall><c:thickness val="0"/></c:sideWall>' str << '<c:backWall><c:thickness val="0"/></c:backWall>' @@ -188,7 +189,8 @@ module Axlsx [x, y] end - def view3D=(v) DataTypeValidator.validate "#{self.class}.view3D", View3D, v; @view3D = v; end + def view_3D=(v) DataTypeValidator.validate "#{self.class}.view_3D", View3D, v; @view_3D = v; end + alias :view3D= :view_3D= end end diff --git a/lib/axlsx/drawing/pie_3D_chart.rb b/lib/axlsx/drawing/pie_3D_chart.rb index fea89d0e..d6928e6f 100644 --- a/lib/axlsx/drawing/pie_3D_chart.rb +++ b/lib/axlsx/drawing/pie_3D_chart.rb @@ -13,19 +13,19 @@ module Axlsx # @option options [Cell, String] title # @option options [Boolean] show_legend # @option options [Symbol] grouping - # @option options [String] gapDepth - # @option options [Integer] rotX - # @option options [String] hPercent - # @option options [Integer] rotY - # @option options [String] depthPercent - # @option options [Boolean] rAngAx + # @option options [String] gap_depth + # @option options [Integer] rot_x + # @option options [String] h_percent + # @option options [Integer] rot_y + # @option options [String] depth_percent + # @option options [Boolean] r_ang_ax # @option options [Integer] perspective # @see Chart # @see View3D def initialize(frame, options={}) super(frame, options) @series_type = PieSeries - @view3D = View3D.new({:rotX=>30, :perspective=>30}.merge(options)) + @view_3D = View3D.new({:rotX =>30, :perspective=>30}.merge(options)) end # Serializes the object diff --git a/lib/axlsx/drawing/view_3D.rb b/lib/axlsx/drawing/view_3D.rb index 07586b5f..241fcd3b 100644 --- a/lib/axlsx/drawing/view_3D.rb +++ b/lib/axlsx/drawing/view_3D.rb @@ -12,63 +12,73 @@ module Axlsx # x rotation for the chart # must be between -90 and 90 # @return [Integer] - attr_reader :rotX - + attr_reader :rot_x + alias :rotX :rot_x + # height of chart as % of chart # must be between 5% and 500% # @return [String] - attr_reader :hPercent + attr_reader :h_percent + alias :hPercent :h_percent # y rotation for the chart # must be between 0 and 360 # @return [Integer] - attr_reader :rotY - + attr_reader :rot_y + alias :rotY :rot_y + # depth or chart as % of chart width # must be between 20% and 2000% # @return [String] - attr_reader :depthPercent + attr_reader :depth_percent + alias :depthPercent :depth_percent # Chart axis are at right angles # @return [Boolean] - attr_reader :rAngAx + attr_reader :r_ang_ax + alias :rAngAx :r_ang_ax # field of view angle # @return [Integer] attr_reader :perspective # Creates a new View3D for charts - # @option options [Integer] rotX - # @option options [String] hPercent - # @option options [Integer] rotY - # @option options [String] depthPercent - # @option options [Boolean] rAngAx + # @option options [Integer] rot_x + # @option options [String] h_percent + # @option options [Integer] rot_y + # @option options [String] depth_percent + # @option options [Boolean] r_ang_ax # @option options [Integer] perspective def initialize(options={}) - @rotX, @hPercent, @rotY, @depthPercent, @rAngAx, @perspective = nil, nil, nil, nil, nil, nil + @rot_x, @h_percent, @rot_y, @depth_percent, @r_ang_ax, @perspective = nil, nil, nil, nil, nil, nil options.each do |o| self.send("#{o[0]}=", o[1]) if self.respond_to? "#{o[0]}=" end end - # @see rotX - def rotX=(v) DataTypeValidator.validate "#{self.class}.rotX", [Integer, Fixnum], v, lambda {|arg| arg >= -90 && arg <= 90 }; @rotX = v; end + # @see rot_x + def rot_x=(v) DataTypeValidator.validate "#{self.class}.rot_x", [Integer, Fixnum], v, lambda {|arg| arg >= -90 && arg <= 90 }; @rot_x = v; end + alias :rotX= :rot_x= - # @see hPercent - def hPercent=(v) - RegexValidator.validate "#{self.class}.hPercent", H_PERCENT_REGEX, v - @hPercent = v + # @see h_percent + def h_percent=(v) + RegexValidator.validate "#{self.class}.h_percent", H_PERCENT_REGEX, v + @h_percent = v end + alias :hPercent= :h_percent= - # @see rotY - def rotY=(v) DataTypeValidator.validate "#{self.class}.rotY", [Integer, Fixnum], v, lambda {|arg| arg >= 0 && arg <= 360 }; @rotY = v; end - - # @see depthPercent - def depthPercent=(v) RegexValidator.validate "#{self.class}.depthPercent", DEPTH_PERCENT_REGEX, v; @depthPercent = v; end + # @see rot_y + def rot_y=(v) DataTypeValidator.validate "#{self.class}.rot_y", [Integer, Fixnum], v, lambda {|arg| arg >= 0 && arg <= 360 }; @rot_y = v; end + alias :rotY= :rot_y= - # @see rAngAx - def rAngAx=(v) Axlsx::validate_boolean(v); @rAngAx = v; end + # @see depth_percent + def depth_percent=(v) RegexValidator.validate "#{self.class}.depth_percent", DEPTH_PERCENT_REGEX, v; @depth_percent = v; end + alias :depthPercent= :depth_percent= + # @see r_ang_ax + def r_ang_ax=(v) Axlsx::validate_boolean(v); @r_ang_ax = v; end + alias :rAngAx= :r_ang_ax= + # @see perspective def perspective=(v) DataTypeValidator.validate "#{self.class}.perspective", [Integer, Fixnum], v, lambda {|arg| arg >= 0 && arg <= 240 }; @perspective = v; end @@ -78,11 +88,11 @@ module Axlsx # @return [String] def to_xml_string(str = '') str << '<c:view3D>' - str << '<c:rotX val="' << @rotX.to_s << '"/>' unless @rotX.nil? - str << '<c:hPercent val="' << @hPercent.to_s << '"/>' unless @hPercent.nil? - str << '<c:rotY val="' << @rotY.to_s << '"/>' unless @rotY.nil? - str << '<c:depthPercent val="' << @depthPercent.to_s << '"/>' unless @depthPercent.nil? - str << '<c:rAngAx val="' << @rAngAx.to_s << '"/>' unless @rAngAx.nil? + str << '<c:rotX val="' << @rot_x.to_s << '"/>' unless @rot_x.nil? + str << '<c:hPercent val="' << @h_percent.to_s << '"/>' unless @h_percent.nil? + str << '<c:rotY val="' << @rot_y.to_s << '"/>' unless @rot_y.nil? + str << '<c:depthPercent val="' << @depth_percent.to_s << '"/>' unless @depth_percent.nil? + str << '<c:rAngAx val="' << @r_ang_ax.to_s << '"/>' unless @r_ang_ax.nil? str << '<c:perspective val="' << @perspective.to_s << '"/>' unless @perspective.nil? str << '</c:view3D>' end diff --git a/unzip_excel/[Content_Types].xml b/unzip_excel/[Content_Types].xml new file mode 100644 index 00000000..dddf69b0 --- /dev/null +++ b/unzip_excel/[Content_Types].xml @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<Types xmlns="http://schemas.openxmlformats.org/package/2006/content-types"><Default Extension="xml" ContentType="application/xml"/><Default Extension="rels" ContentType="application/vnd.openxmlformats-package.relationships+xml"/><Override PartName="/xl/workbook.xml" ContentType="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml"/><Override PartName="/xl/worksheets/sheet1.xml" ContentType="application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml"/><Override PartName="/xl/worksheets/sheet2.xml" ContentType="application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml"/><Override PartName="/xl/worksheets/sheet3.xml" ContentType="application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml"/><Override PartName="/xl/worksheets/sheet4.xml" ContentType="application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml"/><Override PartName="/xl/theme/theme1.xml" ContentType="application/vnd.openxmlformats-officedocument.theme+xml"/><Override PartName="/xl/styles.xml" ContentType="application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml"/><Override PartName="/xl/sharedStrings.xml" ContentType="application/vnd.openxmlformats-officedocument.spreadsheetml.sharedStrings+xml"/><Override PartName="/xl/drawings/drawing1.xml" ContentType="application/vnd.openxmlformats-officedocument.drawing+xml"/><Override PartName="/xl/charts/chart1.xml" ContentType="application/vnd.openxmlformats-officedocument.drawingml.chart+xml"/><Override PartName="/xl/drawings/drawing2.xml" ContentType="application/vnd.openxmlformats-officedocument.drawing+xml"/><Override PartName="/xl/charts/chart2.xml" ContentType="application/vnd.openxmlformats-officedocument.drawingml.chart+xml"/><Override PartName="/xl/calcChain.xml" ContentType="application/vnd.openxmlformats-officedocument.spreadsheetml.calcChain+xml"/><Override PartName="/docProps/core.xml" ContentType="application/vnd.openxmlformats-package.core-properties+xml"/><Override PartName="/docProps/app.xml" ContentType="application/vnd.openxmlformats-officedocument.extended-properties+xml"/><Override PartName="/docProps/core0.xml" ContentType="application/vnd.openxmlformats-package.core-properties+xml"/></Types>
\ No newline at end of file diff --git a/unzip_excel/_rels/.rels b/unzip_excel/_rels/.rels new file mode 100644 index 00000000..0eb5a3ed --- /dev/null +++ b/unzip_excel/_rels/.rels @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships"><Relationship Id="rId3" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties" Target="docProps/app.xml"/><Relationship Id="rId4" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/metadata/core-properties" Target="docProps/core0.xml"/><Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument" Target="xl/workbook.xml"/><Relationship Id="rId2" Type="http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties" Target="docProps/core.xml"/></Relationships>
\ No newline at end of file diff --git a/unzip_excel/docProps/app.xml b/unzip_excel/docProps/app.xml new file mode 100644 index 00000000..660058a0 --- /dev/null +++ b/unzip_excel/docProps/app.xml @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<Properties xmlns="http://schemas.openxmlformats.org/officeDocument/2006/extended-properties" xmlns:vt="http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes"><Application>Microsoft Macintosh Excel</Application><DocSecurity>0</DocSecurity><ScaleCrop>false</ScaleCrop><HeadingPairs><vt:vector size="2" baseType="variant"><vt:variant><vt:lpstr>Arbeitsblätter</vt:lpstr></vt:variant><vt:variant><vt:i4>4</vt:i4></vt:variant></vt:vector></HeadingPairs><TitlesOfParts><vt:vector size="4" baseType="lpstr"><vt:lpstr>Deckblatt</vt:lpstr><vt:lpstr>Meeting-Minuten gesamt</vt:lpstr><vt:lpstr>Meeting-Minuten pro Account</vt:lpstr><vt:lpstr>Bestandszahlen pro Account</vt:lpstr></vt:vector></TitlesOfParts><LinksUpToDate>false</LinksUpToDate><SharedDoc>false</SharedDoc><HyperlinksChanged>false</HyperlinksChanged><AppVersion>14.0300</AppVersion></Properties>
\ No newline at end of file diff --git a/unzip_excel/docProps/core.xml b/unzip_excel/docProps/core.xml new file mode 100644 index 00000000..b062326c --- /dev/null +++ b/unzip_excel/docProps/core.xml @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<cp:coreProperties xmlns:cp="http://schemas.openxmlformats.org/package/2006/metadata/core-properties" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:dcmitype="http://purl.org/dc/dcmitype/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><cp:lastModifiedBy>Frank Wöckener</cp:lastModifiedBy><dcterms:modified xsi:type="dcterms:W3CDTF">2012-07-03T04:03:26Z</dcterms:modified></cp:coreProperties>
\ No newline at end of file diff --git a/unzip_excel/docProps/core0.xml b/unzip_excel/docProps/core0.xml new file mode 100644 index 00000000..4e0e1a65 --- /dev/null +++ b/unzip_excel/docProps/core0.xml @@ -0,0 +1 @@ +<?xml version="1.0" encoding="UTF-8"?><cp:coreProperties xmlns:cp="http://schemas.openxmlformats.org/package/2006/metadata/core-properties" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcmitype="http://purl.org/dc/dcmitype/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><dc:creator>axlsx</dc:creator><dcterms:created xsi:type="dcterms:W3CDTF">2012-07-02T16:15:52</dcterms:created><cp:revision>0</cp:revision></cp:coreProperties> diff --git a/unzip_excel/xl/_rels/workbook.xml.rels b/unzip_excel/xl/_rels/workbook.xml.rels new file mode 100644 index 00000000..56a547ee --- /dev/null +++ b/unzip_excel/xl/_rels/workbook.xml.rels @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships"><Relationship Id="rId3" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/worksheet" Target="worksheets/sheet3.xml"/><Relationship Id="rId4" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/worksheet" Target="worksheets/sheet4.xml"/><Relationship Id="rId5" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/theme" Target="theme/theme1.xml"/><Relationship Id="rId6" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles" Target="styles.xml"/><Relationship Id="rId7" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/sharedStrings" Target="sharedStrings.xml"/><Relationship Id="rId8" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/calcChain" Target="calcChain.xml"/><Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/worksheet" Target="worksheets/sheet1.xml"/><Relationship Id="rId2" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/worksheet" Target="worksheets/sheet2.xml"/></Relationships>
\ No newline at end of file diff --git a/unzip_excel/xl/calcChain.xml b/unzip_excel/xl/calcChain.xml new file mode 100644 index 00000000..c1e8aa1e --- /dev/null +++ b/unzip_excel/xl/calcChain.xml @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<calcChain xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main"><c r="D2" i="2" l="1"/><c r="C2" i="2"/></calcChain>
\ No newline at end of file diff --git a/unzip_excel/xl/charts/chart1.xml b/unzip_excel/xl/charts/chart1.xml new file mode 100644 index 00000000..52410f96 --- /dev/null +++ b/unzip_excel/xl/charts/chart1.xml @@ -0,0 +1,1189 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<c:chartSpace xmlns:c="http://schemas.openxmlformats.org/drawingml/2006/chart" xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships">
+ <c:date1904 val="0"/>
+ <c:lang val="de-DE"/>
+ <c:roundedCorners val="1"/>
+ <c:style val="18"/>
+ <c:chart>
+ <c:title>
+ <c:tx>
+ <c:rich>
+ <a:bodyPr/>
+ <a:lstStyle/>
+ <a:p>
+ <a:r>
+ <a:rPr lang="de-DE"/>
+ <a:t>Geplante und aktive Meeting-Minuten (gesamt)</a:t>
+ </a:r>
+ </a:p>
+ </c:rich>
+ </c:tx>
+ <c:layout/>
+ <c:overlay val="0"/>
+ </c:title>
+ <c:autoTitleDeleted val="0"/>
+ <c:view3D>
+ <c:rotX val="0"/>
+ <c:rotY val="0"/>
+ <c:rAngAx val="1"/>
+ </c:view3D>
+ <c:floor>
+ <c:thickness val="0"/>
+ </c:floor>
+ <c:sideWall>
+ <c:thickness val="0"/>
+ </c:sideWall>
+ <c:backWall>
+ <c:thickness val="0"/>
+ </c:backWall>
+ <c:plotArea>
+ <c:layout/>
+ <c:bar3DChart>
+ <c:barDir val="col"/>
+ <c:grouping val="clustered"/>
+ <c:varyColors val="1"/>
+ <c:ser>
+ <c:idx val="0"/>
+ <c:order val="0"/>
+ <c:tx>
+ <c:v>geplant</c:v>
+ </c:tx>
+ <c:invertIfNegative val="1"/>
+ <c:cat>
+ <c:strRef>
+ <c:f>'Meeting-Minuten gesamt'!$B$4:$B$86</c:f>
+ <c:strCache>
+ <c:ptCount val="83"/>
+ <c:pt idx="0">
+ <c:v>Mon 00</c:v>
+ </c:pt>
+ <c:pt idx="1">
+ <c:v>02</c:v>
+ </c:pt>
+ <c:pt idx="2">
+ <c:v>04</c:v>
+ </c:pt>
+ <c:pt idx="3">
+ <c:v>06</c:v>
+ </c:pt>
+ <c:pt idx="4">
+ <c:v>08</c:v>
+ </c:pt>
+ <c:pt idx="5">
+ <c:v>10</c:v>
+ </c:pt>
+ <c:pt idx="6">
+ <c:v>12</c:v>
+ </c:pt>
+ <c:pt idx="7">
+ <c:v>14</c:v>
+ </c:pt>
+ <c:pt idx="8">
+ <c:v>16</c:v>
+ </c:pt>
+ <c:pt idx="9">
+ <c:v>18</c:v>
+ </c:pt>
+ <c:pt idx="10">
+ <c:v>20</c:v>
+ </c:pt>
+ <c:pt idx="11">
+ <c:v>22</c:v>
+ </c:pt>
+ <c:pt idx="12">
+ <c:v>Tue 00</c:v>
+ </c:pt>
+ <c:pt idx="13">
+ <c:v>02</c:v>
+ </c:pt>
+ <c:pt idx="14">
+ <c:v>04</c:v>
+ </c:pt>
+ <c:pt idx="15">
+ <c:v>06</c:v>
+ </c:pt>
+ <c:pt idx="16">
+ <c:v>08</c:v>
+ </c:pt>
+ <c:pt idx="17">
+ <c:v>10</c:v>
+ </c:pt>
+ <c:pt idx="18">
+ <c:v>12</c:v>
+ </c:pt>
+ <c:pt idx="19">
+ <c:v>14</c:v>
+ </c:pt>
+ <c:pt idx="20">
+ <c:v>16</c:v>
+ </c:pt>
+ <c:pt idx="21">
+ <c:v>18</c:v>
+ </c:pt>
+ <c:pt idx="22">
+ <c:v>20</c:v>
+ </c:pt>
+ <c:pt idx="23">
+ <c:v>22</c:v>
+ </c:pt>
+ <c:pt idx="24">
+ <c:v>Wed 00</c:v>
+ </c:pt>
+ <c:pt idx="25">
+ <c:v>02</c:v>
+ </c:pt>
+ <c:pt idx="26">
+ <c:v>04</c:v>
+ </c:pt>
+ <c:pt idx="27">
+ <c:v>06</c:v>
+ </c:pt>
+ <c:pt idx="28">
+ <c:v>08</c:v>
+ </c:pt>
+ <c:pt idx="29">
+ <c:v>10</c:v>
+ </c:pt>
+ <c:pt idx="30">
+ <c:v>12</c:v>
+ </c:pt>
+ <c:pt idx="31">
+ <c:v>14</c:v>
+ </c:pt>
+ <c:pt idx="32">
+ <c:v>16</c:v>
+ </c:pt>
+ <c:pt idx="33">
+ <c:v>18</c:v>
+ </c:pt>
+ <c:pt idx="34">
+ <c:v>20</c:v>
+ </c:pt>
+ <c:pt idx="35">
+ <c:v>22</c:v>
+ </c:pt>
+ <c:pt idx="36">
+ <c:v>Thu 00</c:v>
+ </c:pt>
+ <c:pt idx="37">
+ <c:v>02</c:v>
+ </c:pt>
+ <c:pt idx="38">
+ <c:v>04</c:v>
+ </c:pt>
+ <c:pt idx="39">
+ <c:v>06</c:v>
+ </c:pt>
+ <c:pt idx="40">
+ <c:v>08</c:v>
+ </c:pt>
+ <c:pt idx="41">
+ <c:v>10</c:v>
+ </c:pt>
+ <c:pt idx="42">
+ <c:v>12</c:v>
+ </c:pt>
+ <c:pt idx="43">
+ <c:v>14</c:v>
+ </c:pt>
+ <c:pt idx="44">
+ <c:v>16</c:v>
+ </c:pt>
+ <c:pt idx="45">
+ <c:v>18</c:v>
+ </c:pt>
+ <c:pt idx="46">
+ <c:v>20</c:v>
+ </c:pt>
+ <c:pt idx="47">
+ <c:v>22</c:v>
+ </c:pt>
+ <c:pt idx="48">
+ <c:v>Fri 00</c:v>
+ </c:pt>
+ <c:pt idx="49">
+ <c:v>02</c:v>
+ </c:pt>
+ <c:pt idx="50">
+ <c:v>04</c:v>
+ </c:pt>
+ <c:pt idx="51">
+ <c:v>06</c:v>
+ </c:pt>
+ <c:pt idx="52">
+ <c:v>08</c:v>
+ </c:pt>
+ <c:pt idx="53">
+ <c:v>10</c:v>
+ </c:pt>
+ <c:pt idx="54">
+ <c:v>12</c:v>
+ </c:pt>
+ <c:pt idx="55">
+ <c:v>14</c:v>
+ </c:pt>
+ <c:pt idx="56">
+ <c:v>16</c:v>
+ </c:pt>
+ <c:pt idx="57">
+ <c:v>18</c:v>
+ </c:pt>
+ <c:pt idx="58">
+ <c:v>20</c:v>
+ </c:pt>
+ <c:pt idx="59">
+ <c:v>22</c:v>
+ </c:pt>
+ <c:pt idx="60">
+ <c:v>Sat 00</c:v>
+ </c:pt>
+ <c:pt idx="61">
+ <c:v>02</c:v>
+ </c:pt>
+ <c:pt idx="62">
+ <c:v>04</c:v>
+ </c:pt>
+ <c:pt idx="63">
+ <c:v>06</c:v>
+ </c:pt>
+ <c:pt idx="64">
+ <c:v>08</c:v>
+ </c:pt>
+ <c:pt idx="65">
+ <c:v>10</c:v>
+ </c:pt>
+ <c:pt idx="66">
+ <c:v>12</c:v>
+ </c:pt>
+ <c:pt idx="67">
+ <c:v>14</c:v>
+ </c:pt>
+ <c:pt idx="68">
+ <c:v>16</c:v>
+ </c:pt>
+ <c:pt idx="69">
+ <c:v>18</c:v>
+ </c:pt>
+ <c:pt idx="70">
+ <c:v>20</c:v>
+ </c:pt>
+ <c:pt idx="71">
+ <c:v>22</c:v>
+ </c:pt>
+ <c:pt idx="72">
+ <c:v>Sun 00</c:v>
+ </c:pt>
+ <c:pt idx="73">
+ <c:v>02</c:v>
+ </c:pt>
+ <c:pt idx="74">
+ <c:v>04</c:v>
+ </c:pt>
+ <c:pt idx="75">
+ <c:v>06</c:v>
+ </c:pt>
+ <c:pt idx="76">
+ <c:v>08</c:v>
+ </c:pt>
+ <c:pt idx="77">
+ <c:v>10</c:v>
+ </c:pt>
+ <c:pt idx="78">
+ <c:v>12</c:v>
+ </c:pt>
+ <c:pt idx="79">
+ <c:v>14</c:v>
+ </c:pt>
+ <c:pt idx="80">
+ <c:v>16</c:v>
+ </c:pt>
+ <c:pt idx="81">
+ <c:v>18</c:v>
+ </c:pt>
+ <c:pt idx="82">
+ <c:v>20</c:v>
+ </c:pt>
+ </c:strCache>
+ </c:strRef>
+ </c:cat>
+ <c:val>
+ <c:numRef>
+ <c:f>'Meeting-Minuten gesamt'!$C$4:$C$86</c:f>
+ <c:numCache>
+ <c:formatCode>General</c:formatCode>
+ <c:ptCount val="83"/>
+ <c:pt idx="0">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="1">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="2">
+ <c:v>60.0</c:v>
+ </c:pt>
+ <c:pt idx="3">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="4">
+ <c:v>240.0</c:v>
+ </c:pt>
+ <c:pt idx="5">
+ <c:v>300.0</c:v>
+ </c:pt>
+ <c:pt idx="6">
+ <c:v>90.0</c:v>
+ </c:pt>
+ <c:pt idx="7">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="8">
+ <c:v>270.0</c:v>
+ </c:pt>
+ <c:pt idx="9">
+ <c:v>60.0</c:v>
+ </c:pt>
+ <c:pt idx="10">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="11">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="12">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="13">
+ <c:v>60.0</c:v>
+ </c:pt>
+ <c:pt idx="14">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="15">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="16">
+ <c:v>615.0</c:v>
+ </c:pt>
+ <c:pt idx="17">
+ <c:v>630.0</c:v>
+ </c:pt>
+ <c:pt idx="18">
+ <c:v>360.0</c:v>
+ </c:pt>
+ <c:pt idx="19">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="20">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="21">
+ <c:v>60.0</c:v>
+ </c:pt>
+ <c:pt idx="22">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="23">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="24">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="25">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="26">
+ <c:v>15.0</c:v>
+ </c:pt>
+ <c:pt idx="27">
+ <c:v>60.0</c:v>
+ </c:pt>
+ <c:pt idx="28">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="29">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="30">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="31">
+ <c:v>300.0</c:v>
+ </c:pt>
+ <c:pt idx="32">
+ <c:v>120.0</c:v>
+ </c:pt>
+ <c:pt idx="33">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="34">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="35">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="36">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="37">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="38">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="39">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="40">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="41">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="42">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="43">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="44">
+ <c:v>120.0</c:v>
+ </c:pt>
+ <c:pt idx="45">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="46">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="47">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="48">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="49">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="50">
+ <c:v>30.0</c:v>
+ </c:pt>
+ <c:pt idx="51">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="52">
+ <c:v>120.0</c:v>
+ </c:pt>
+ <c:pt idx="53">
+ <c:v>60.0</c:v>
+ </c:pt>
+ <c:pt idx="54">
+ <c:v>150.0</c:v>
+ </c:pt>
+ <c:pt idx="55">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="56">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="57">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="58">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="59">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="60">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="61">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="62">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="63">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="64">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="65">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="66">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="67">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="68">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="69">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="70">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="71">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="72">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="73">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="74">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="75">
+ <c:v>120.0</c:v>
+ </c:pt>
+ <c:pt idx="76">
+ <c:v>120.0</c:v>
+ </c:pt>
+ <c:pt idx="77">
+ <c:v>60.0</c:v>
+ </c:pt>
+ <c:pt idx="78">
+ <c:v>240.0</c:v>
+ </c:pt>
+ <c:pt idx="79">
+ <c:v>30.0</c:v>
+ </c:pt>
+ <c:pt idx="80">
+ <c:v>120.0</c:v>
+ </c:pt>
+ <c:pt idx="81">
+ <c:v>240.0</c:v>
+ </c:pt>
+ <c:pt idx="82">
+ <c:v>30.0</c:v>
+ </c:pt>
+ </c:numCache>
+ </c:numRef>
+ </c:val>
+ </c:ser>
+ <c:ser>
+ <c:idx val="1"/>
+ <c:order val="1"/>
+ <c:tx>
+ <c:v>aktiv</c:v>
+ </c:tx>
+ <c:invertIfNegative val="1"/>
+ <c:cat>
+ <c:strRef>
+ <c:f>'Meeting-Minuten gesamt'!$B$4:$B$86</c:f>
+ <c:strCache>
+ <c:ptCount val="83"/>
+ <c:pt idx="0">
+ <c:v>Mon 00</c:v>
+ </c:pt>
+ <c:pt idx="1">
+ <c:v>02</c:v>
+ </c:pt>
+ <c:pt idx="2">
+ <c:v>04</c:v>
+ </c:pt>
+ <c:pt idx="3">
+ <c:v>06</c:v>
+ </c:pt>
+ <c:pt idx="4">
+ <c:v>08</c:v>
+ </c:pt>
+ <c:pt idx="5">
+ <c:v>10</c:v>
+ </c:pt>
+ <c:pt idx="6">
+ <c:v>12</c:v>
+ </c:pt>
+ <c:pt idx="7">
+ <c:v>14</c:v>
+ </c:pt>
+ <c:pt idx="8">
+ <c:v>16</c:v>
+ </c:pt>
+ <c:pt idx="9">
+ <c:v>18</c:v>
+ </c:pt>
+ <c:pt idx="10">
+ <c:v>20</c:v>
+ </c:pt>
+ <c:pt idx="11">
+ <c:v>22</c:v>
+ </c:pt>
+ <c:pt idx="12">
+ <c:v>Tue 00</c:v>
+ </c:pt>
+ <c:pt idx="13">
+ <c:v>02</c:v>
+ </c:pt>
+ <c:pt idx="14">
+ <c:v>04</c:v>
+ </c:pt>
+ <c:pt idx="15">
+ <c:v>06</c:v>
+ </c:pt>
+ <c:pt idx="16">
+ <c:v>08</c:v>
+ </c:pt>
+ <c:pt idx="17">
+ <c:v>10</c:v>
+ </c:pt>
+ <c:pt idx="18">
+ <c:v>12</c:v>
+ </c:pt>
+ <c:pt idx="19">
+ <c:v>14</c:v>
+ </c:pt>
+ <c:pt idx="20">
+ <c:v>16</c:v>
+ </c:pt>
+ <c:pt idx="21">
+ <c:v>18</c:v>
+ </c:pt>
+ <c:pt idx="22">
+ <c:v>20</c:v>
+ </c:pt>
+ <c:pt idx="23">
+ <c:v>22</c:v>
+ </c:pt>
+ <c:pt idx="24">
+ <c:v>Wed 00</c:v>
+ </c:pt>
+ <c:pt idx="25">
+ <c:v>02</c:v>
+ </c:pt>
+ <c:pt idx="26">
+ <c:v>04</c:v>
+ </c:pt>
+ <c:pt idx="27">
+ <c:v>06</c:v>
+ </c:pt>
+ <c:pt idx="28">
+ <c:v>08</c:v>
+ </c:pt>
+ <c:pt idx="29">
+ <c:v>10</c:v>
+ </c:pt>
+ <c:pt idx="30">
+ <c:v>12</c:v>
+ </c:pt>
+ <c:pt idx="31">
+ <c:v>14</c:v>
+ </c:pt>
+ <c:pt idx="32">
+ <c:v>16</c:v>
+ </c:pt>
+ <c:pt idx="33">
+ <c:v>18</c:v>
+ </c:pt>
+ <c:pt idx="34">
+ <c:v>20</c:v>
+ </c:pt>
+ <c:pt idx="35">
+ <c:v>22</c:v>
+ </c:pt>
+ <c:pt idx="36">
+ <c:v>Thu 00</c:v>
+ </c:pt>
+ <c:pt idx="37">
+ <c:v>02</c:v>
+ </c:pt>
+ <c:pt idx="38">
+ <c:v>04</c:v>
+ </c:pt>
+ <c:pt idx="39">
+ <c:v>06</c:v>
+ </c:pt>
+ <c:pt idx="40">
+ <c:v>08</c:v>
+ </c:pt>
+ <c:pt idx="41">
+ <c:v>10</c:v>
+ </c:pt>
+ <c:pt idx="42">
+ <c:v>12</c:v>
+ </c:pt>
+ <c:pt idx="43">
+ <c:v>14</c:v>
+ </c:pt>
+ <c:pt idx="44">
+ <c:v>16</c:v>
+ </c:pt>
+ <c:pt idx="45">
+ <c:v>18</c:v>
+ </c:pt>
+ <c:pt idx="46">
+ <c:v>20</c:v>
+ </c:pt>
+ <c:pt idx="47">
+ <c:v>22</c:v>
+ </c:pt>
+ <c:pt idx="48">
+ <c:v>Fri 00</c:v>
+ </c:pt>
+ <c:pt idx="49">
+ <c:v>02</c:v>
+ </c:pt>
+ <c:pt idx="50">
+ <c:v>04</c:v>
+ </c:pt>
+ <c:pt idx="51">
+ <c:v>06</c:v>
+ </c:pt>
+ <c:pt idx="52">
+ <c:v>08</c:v>
+ </c:pt>
+ <c:pt idx="53">
+ <c:v>10</c:v>
+ </c:pt>
+ <c:pt idx="54">
+ <c:v>12</c:v>
+ </c:pt>
+ <c:pt idx="55">
+ <c:v>14</c:v>
+ </c:pt>
+ <c:pt idx="56">
+ <c:v>16</c:v>
+ </c:pt>
+ <c:pt idx="57">
+ <c:v>18</c:v>
+ </c:pt>
+ <c:pt idx="58">
+ <c:v>20</c:v>
+ </c:pt>
+ <c:pt idx="59">
+ <c:v>22</c:v>
+ </c:pt>
+ <c:pt idx="60">
+ <c:v>Sat 00</c:v>
+ </c:pt>
+ <c:pt idx="61">
+ <c:v>02</c:v>
+ </c:pt>
+ <c:pt idx="62">
+ <c:v>04</c:v>
+ </c:pt>
+ <c:pt idx="63">
+ <c:v>06</c:v>
+ </c:pt>
+ <c:pt idx="64">
+ <c:v>08</c:v>
+ </c:pt>
+ <c:pt idx="65">
+ <c:v>10</c:v>
+ </c:pt>
+ <c:pt idx="66">
+ <c:v>12</c:v>
+ </c:pt>
+ <c:pt idx="67">
+ <c:v>14</c:v>
+ </c:pt>
+ <c:pt idx="68">
+ <c:v>16</c:v>
+ </c:pt>
+ <c:pt idx="69">
+ <c:v>18</c:v>
+ </c:pt>
+ <c:pt idx="70">
+ <c:v>20</c:v>
+ </c:pt>
+ <c:pt idx="71">
+ <c:v>22</c:v>
+ </c:pt>
+ <c:pt idx="72">
+ <c:v>Sun 00</c:v>
+ </c:pt>
+ <c:pt idx="73">
+ <c:v>02</c:v>
+ </c:pt>
+ <c:pt idx="74">
+ <c:v>04</c:v>
+ </c:pt>
+ <c:pt idx="75">
+ <c:v>06</c:v>
+ </c:pt>
+ <c:pt idx="76">
+ <c:v>08</c:v>
+ </c:pt>
+ <c:pt idx="77">
+ <c:v>10</c:v>
+ </c:pt>
+ <c:pt idx="78">
+ <c:v>12</c:v>
+ </c:pt>
+ <c:pt idx="79">
+ <c:v>14</c:v>
+ </c:pt>
+ <c:pt idx="80">
+ <c:v>16</c:v>
+ </c:pt>
+ <c:pt idx="81">
+ <c:v>18</c:v>
+ </c:pt>
+ <c:pt idx="82">
+ <c:v>20</c:v>
+ </c:pt>
+ </c:strCache>
+ </c:strRef>
+ </c:cat>
+ <c:val>
+ <c:numRef>
+ <c:f>'Meeting-Minuten gesamt'!$D$4:$D$86</c:f>
+ <c:numCache>
+ <c:formatCode>General</c:formatCode>
+ <c:ptCount val="83"/>
+ <c:pt idx="0">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="1">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="2">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="3">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="4">
+ <c:v>222.0</c:v>
+ </c:pt>
+ <c:pt idx="5">
+ <c:v>38.0</c:v>
+ </c:pt>
+ <c:pt idx="6">
+ <c:v>20.0</c:v>
+ </c:pt>
+ <c:pt idx="7">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="8">
+ <c:v>114.0</c:v>
+ </c:pt>
+ <c:pt idx="9">
+ <c:v>3.0</c:v>
+ </c:pt>
+ <c:pt idx="10">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="11">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="12">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="13">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="14">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="15">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="16">
+ <c:v>76.0</c:v>
+ </c:pt>
+ <c:pt idx="17">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="18">
+ <c:v>8.0</c:v>
+ </c:pt>
+ <c:pt idx="19">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="20">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="21">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="22">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="23">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="24">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="25">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="26">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="27">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="28">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="29">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="30">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="31">
+ <c:v>1.0</c:v>
+ </c:pt>
+ <c:pt idx="32">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="33">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="34">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="35">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="36">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="37">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="38">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="39">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="40">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="41">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="42">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="43">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="44">
+ <c:v>20.0</c:v>
+ </c:pt>
+ <c:pt idx="45">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="46">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="47">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="48">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="49">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="50">
+ <c:v>6.0</c:v>
+ </c:pt>
+ <c:pt idx="51">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="52">
+ <c:v>2.0</c:v>
+ </c:pt>
+ <c:pt idx="53">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="54">
+ <c:v>50.0</c:v>
+ </c:pt>
+ <c:pt idx="55">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="56">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="57">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="58">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="59">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="60">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="61">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="62">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="63">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="64">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="65">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="66">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="67">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="68">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="69">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="70">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="71">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="72">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="73">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="74">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="75">
+ <c:v>3.0</c:v>
+ </c:pt>
+ <c:pt idx="76">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="77">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="78">
+ <c:v>224.0</c:v>
+ </c:pt>
+ <c:pt idx="79">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="80">
+ <c:v>34.0</c:v>
+ </c:pt>
+ <c:pt idx="81">
+ <c:v>0.0</c:v>
+ </c:pt>
+ <c:pt idx="82">
+ <c:v>0.0</c:v>
+ </c:pt>
+ </c:numCache>
+ </c:numRef>
+ </c:val>
+ </c:ser>
+ <c:dLbls>
+ <c:showLegendKey val="0"/>
+ <c:showVal val="0"/>
+ <c:showCatName val="0"/>
+ <c:showSerName val="0"/>
+ <c:showPercent val="0"/>
+ <c:showBubbleSize val="0"/>
+ </c:dLbls>
+ <c:gapWidth val="150"/>
+ <c:shape val="box"/>
+ <c:axId val="-2137198552"/>
+ <c:axId val="-2137188200"/>
+ <c:axId val="0"/>
+ </c:bar3DChart>
+ <c:catAx>
+ <c:axId val="-2137198552"/>
+ <c:scaling>
+ <c:orientation val="minMax"/>
+ </c:scaling>
+ <c:delete val="0"/>
+ <c:axPos val="b"/>
+ <c:majorGridlines>
+ <c:spPr>
+ <a:ln>
+ <a:noFill/>
+ </a:ln>
+ </c:spPr>
+ </c:majorGridlines>
+ <c:numFmt formatCode="General" sourceLinked="1"/>
+ <c:majorTickMark val="none"/>
+ <c:minorTickMark val="none"/>
+ <c:tickLblPos val="nextTo"/>
+ <c:txPr>
+ <a:bodyPr rot="0"/>
+ <a:lstStyle/>
+ <a:p>
+ <a:pPr>
+ <a:defRPr/>
+ </a:pPr>
+ <a:endParaRPr lang="de-DE"/>
+ </a:p>
+ </c:txPr>
+ <c:crossAx val="-2137188200"/>
+ <c:crosses val="autoZero"/>
+ <c:auto val="1"/>
+ <c:lblAlgn val="ctr"/>
+ <c:lblOffset val="100"/>
+ <c:tickLblSkip val="1"/>
+ <c:tickMarkSkip val="1"/>
+ <c:noMultiLvlLbl val="1"/>
+ </c:catAx>
+ <c:valAx>
+ <c:axId val="-2137188200"/>
+ <c:scaling>
+ <c:orientation val="minMax"/>
+ </c:scaling>
+ <c:delete val="0"/>
+ <c:axPos val="l"/>
+ <c:majorGridlines>
+ <c:spPr>
+ <a:ln>
+ <a:noFill/>
+ </a:ln>
+ </c:spPr>
+ </c:majorGridlines>
+ <c:numFmt formatCode="General" sourceLinked="1"/>
+ <c:majorTickMark val="none"/>
+ <c:minorTickMark val="none"/>
+ <c:tickLblPos val="low"/>
+ <c:txPr>
+ <a:bodyPr rot="0"/>
+ <a:lstStyle/>
+ <a:p>
+ <a:pPr>
+ <a:defRPr/>
+ </a:pPr>
+ <a:endParaRPr lang="de-DE"/>
+ </a:p>
+ </c:txPr>
+ <c:crossAx val="-2137198552"/>
+ <c:crosses val="autoZero"/>
+ <c:crossBetween val="between"/>
+ </c:valAx>
+ </c:plotArea>
+ <c:legend>
+ <c:legendPos val="r"/>
+ <c:layout/>
+ <c:overlay val="0"/>
+ </c:legend>
+ <c:plotVisOnly val="1"/>
+ <c:dispBlanksAs val="zero"/>
+ <c:showDLblsOverMax val="1"/>
+ </c:chart>
+ <c:printSettings>
+ <c:headerFooter/>
+ <c:pageMargins b="1.0" l="0.75" r="0.75" t="1.0" header="0.5" footer="0.5"/>
+ <c:pageSetup/>
+ </c:printSettings>
+</c:chartSpace>
diff --git a/unzip_excel/xl/charts/chart2.xml b/unzip_excel/xl/charts/chart2.xml new file mode 100644 index 00000000..604904b3 --- /dev/null +++ b/unzip_excel/xl/charts/chart2.xml @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<c:chartSpace xmlns:c="http://schemas.openxmlformats.org/drawingml/2006/chart" xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"><c:date1904 val="0"/><c:lang val="de-DE"/><c:roundedCorners val="1"/><c:style val="18"/><c:chart><c:title><c:tx><c:rich><a:bodyPr/><a:lstStyle/><a:p><a:r><a:rPr lang="de-DE"/><a:t>Geplante und aktive Meeting-Minuten (pro Account)</a:t></a:r></a:p></c:rich></c:tx><c:layout/><c:overlay val="0"/></c:title><c:autoTitleDeleted val="0"/><c:view3D><c:rotX val="10"/><c:rotY val="30"/><c:rAngAx val="1"/></c:view3D><c:floor><c:thickness val="0"/></c:floor><c:sideWall><c:thickness val="0"/></c:sideWall><c:backWall><c:thickness val="0"/></c:backWall><c:plotArea><c:layout/><c:bar3DChart><c:barDir val="col"/><c:grouping val="clustered"/><c:varyColors val="1"/><c:ser><c:idx val="0"/><c:order val="0"/><c:tx><c:v>geplant</c:v></c:tx><c:invertIfNegative val="1"/><c:cat><c:strRef><c:f>'Meeting-Minuten pro Account'!$A$3:$A$10</c:f><c:strCache><c:ptCount val="8"/><c:pt idx="0"><c:v>ACME Corp</c:v></c:pt><c:pt idx="1"><c:v>MobiSave</c:v></c:pt><c:pt idx="2"><c:v>LiveSein</c:v></c:pt><c:pt idx="3"><c:v>Udo Schork</c:v></c:pt><c:pt idx="4"><c:v>IT and Media 2012</c:v></c:pt><c:pt idx="5"><c:v>Nolte Home Studio</c:v></c:pt><c:pt idx="6"><c:v>Landesvorstand WJ NRW</c:v></c:pt><c:pt idx="7"><c:v>Michael Gauder</c:v></c:pt></c:strCache></c:strRef></c:cat><c:val><c:numRef><c:f>'Meeting-Minuten pro Account'!$B$3:$B$10</c:f><c:numCache><c:formatCode>General</c:formatCode><c:ptCount val="8"/><c:pt idx="0"><c:v>1230.0</c:v></c:pt><c:pt idx="1"><c:v>1500.0</c:v></c:pt><c:pt idx="2"><c:v>930.0</c:v></c:pt><c:pt idx="3"><c:v>450.0</c:v></c:pt><c:pt idx="4"><c:v>60.0</c:v></c:pt><c:pt idx="5"><c:v>60.0</c:v></c:pt><c:pt idx="6"><c:v>60.0</c:v></c:pt><c:pt idx="7"><c:v>510.0</c:v></c:pt></c:numCache></c:numRef></c:val></c:ser><c:ser><c:idx val="1"/><c:order val="1"/><c:tx><c:v>aktiv</c:v></c:tx><c:invertIfNegative val="1"/><c:cat><c:strRef><c:f>'Meeting-Minuten pro Account'!$A$3:$A$10</c:f><c:strCache><c:ptCount val="8"/><c:pt idx="0"><c:v>ACME Corp</c:v></c:pt><c:pt idx="1"><c:v>MobiSave</c:v></c:pt><c:pt idx="2"><c:v>LiveSein</c:v></c:pt><c:pt idx="3"><c:v>Udo Schork</c:v></c:pt><c:pt idx="4"><c:v>IT and Media 2012</c:v></c:pt><c:pt idx="5"><c:v>Nolte Home Studio</c:v></c:pt><c:pt idx="6"><c:v>Landesvorstand WJ NRW</c:v></c:pt><c:pt idx="7"><c:v>Michael Gauder</c:v></c:pt></c:strCache></c:strRef></c:cat><c:val><c:numRef><c:f>'Meeting-Minuten pro Account'!$C$3:$C$10</c:f><c:numCache><c:formatCode>General</c:formatCode><c:ptCount val="8"/><c:pt idx="0"><c:v>77.0</c:v></c:pt><c:pt idx="1"><c:v>75.0</c:v></c:pt><c:pt idx="2"><c:v>251.0</c:v></c:pt><c:pt idx="3"><c:v>152.0</c:v></c:pt><c:pt idx="4"><c:v>0.0</c:v></c:pt><c:pt idx="5"><c:v>0.0</c:v></c:pt><c:pt idx="6"><c:v>0.0</c:v></c:pt><c:pt idx="7"><c:v>267.0</c:v></c:pt></c:numCache></c:numRef></c:val></c:ser><c:dLbls><c:showLegendKey val="0"/><c:showVal val="0"/><c:showCatName val="0"/><c:showSerName val="0"/><c:showPercent val="0"/><c:showBubbleSize val="0"/></c:dLbls><c:gapWidth val="150"/><c:shape val="box"/><c:axId val="-2138685352"/><c:axId val="-2138722408"/><c:axId val="0"/></c:bar3DChart><c:catAx><c:axId val="-2138685352"/><c:scaling><c:orientation val="minMax"/></c:scaling><c:delete val="0"/><c:axPos val="b"/><c:majorGridlines/><c:numFmt formatCode="General" sourceLinked="1"/><c:majorTickMark val="none"/><c:minorTickMark val="none"/><c:tickLblPos val="nextTo"/><c:txPr><a:bodyPr rot="0"/><a:lstStyle/><a:p><a:pPr><a:defRPr/></a:pPr><a:endParaRPr lang="de-DE"/></a:p></c:txPr><c:crossAx val="-2138722408"/><c:crosses val="autoZero"/><c:auto val="1"/><c:lblAlgn val="ctr"/><c:lblOffset val="100"/><c:tickLblSkip val="1"/><c:tickMarkSkip val="1"/><c:noMultiLvlLbl val="1"/></c:catAx><c:valAx><c:axId val="-2138722408"/><c:scaling><c:orientation val="minMax"/></c:scaling><c:delete val="0"/><c:axPos val="l"/><c:majorGridlines/><c:numFmt formatCode="General" sourceLinked="1"/><c:majorTickMark val="none"/><c:minorTickMark val="none"/><c:tickLblPos val="low"/><c:txPr><a:bodyPr rot="0"/><a:lstStyle/><a:p><a:pPr><a:defRPr/></a:pPr><a:endParaRPr lang="de-DE"/></a:p></c:txPr><c:crossAx val="-2138685352"/><c:crosses val="autoZero"/><c:crossBetween val="between"/></c:valAx></c:plotArea><c:legend><c:legendPos val="r"/><c:layout/><c:overlay val="0"/></c:legend><c:plotVisOnly val="1"/><c:dispBlanksAs val="zero"/><c:showDLblsOverMax val="1"/></c:chart><c:printSettings><c:headerFooter/><c:pageMargins b="1.0" l="0.75" r="0.75" t="1.0" header="0.5" footer="0.5"/><c:pageSetup/></c:printSettings></c:chartSpace>
\ No newline at end of file diff --git a/unzip_excel/xl/drawings/_rels/drawing1.xml.rels b/unzip_excel/xl/drawings/_rels/drawing1.xml.rels new file mode 100644 index 00000000..abab7803 --- /dev/null +++ b/unzip_excel/xl/drawings/_rels/drawing1.xml.rels @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships"><Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/chart" Target="../charts/chart1.xml"/></Relationships>
\ No newline at end of file diff --git a/unzip_excel/xl/drawings/_rels/drawing2.xml.rels b/unzip_excel/xl/drawings/_rels/drawing2.xml.rels new file mode 100644 index 00000000..a3fb1398 --- /dev/null +++ b/unzip_excel/xl/drawings/_rels/drawing2.xml.rels @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships"><Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/chart" Target="../charts/chart2.xml"/></Relationships>
\ No newline at end of file diff --git a/unzip_excel/xl/drawings/drawing1.xml b/unzip_excel/xl/drawings/drawing1.xml new file mode 100644 index 00000000..c244d65d --- /dev/null +++ b/unzip_excel/xl/drawings/drawing1.xml @@ -0,0 +1,33 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<xdr:wsDr xmlns:xdr="http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing" xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main">
+ <xdr:twoCellAnchor>
+ <xdr:from>
+ <xdr:col>5</xdr:col>
+ <xdr:colOff>0</xdr:colOff>
+ <xdr:row>3</xdr:row>
+ <xdr:rowOff>0</xdr:rowOff>
+ </xdr:from>
+ <xdr:to>
+ <xdr:col>30</xdr:col>
+ <xdr:colOff>0</xdr:colOff>
+ <xdr:row>50</xdr:row>
+ <xdr:rowOff>0</xdr:rowOff>
+ </xdr:to>
+ <xdr:graphicFrame macro="">
+ <xdr:nvGraphicFramePr>
+ <xdr:cNvPr id="2" name="item_0"/>
+ <xdr:cNvGraphicFramePr/>
+ </xdr:nvGraphicFramePr>
+ <xdr:xfrm>
+ <a:off x="0" y="0"/>
+ <a:ext cx="0" cy="0"/>
+ </xdr:xfrm>
+ <a:graphic>
+ <a:graphicData uri="http://schemas.openxmlformats.org/drawingml/2006/chart">
+ <c:chart xmlns:c="http://schemas.openxmlformats.org/drawingml/2006/chart" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" r:id="rId1"/>
+ </a:graphicData>
+ </a:graphic>
+ </xdr:graphicFrame>
+ <xdr:clientData/>
+ </xdr:twoCellAnchor>
+</xdr:wsDr>
diff --git a/unzip_excel/xl/drawings/drawing2.xml b/unzip_excel/xl/drawings/drawing2.xml new file mode 100644 index 00000000..35577167 --- /dev/null +++ b/unzip_excel/xl/drawings/drawing2.xml @@ -0,0 +1,33 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<xdr:wsDr xmlns:xdr="http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing" xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main">
+ <xdr:twoCellAnchor>
+ <xdr:from>
+ <xdr:col>4</xdr:col>
+ <xdr:colOff>0</xdr:colOff>
+ <xdr:row>2</xdr:row>
+ <xdr:rowOff>0</xdr:rowOff>
+ </xdr:from>
+ <xdr:to>
+ <xdr:col>30</xdr:col>
+ <xdr:colOff>0</xdr:colOff>
+ <xdr:row>50</xdr:row>
+ <xdr:rowOff>0</xdr:rowOff>
+ </xdr:to>
+ <xdr:graphicFrame macro="">
+ <xdr:nvGraphicFramePr>
+ <xdr:cNvPr id="2" name="item_1"/>
+ <xdr:cNvGraphicFramePr/>
+ </xdr:nvGraphicFramePr>
+ <xdr:xfrm>
+ <a:off x="0" y="0"/>
+ <a:ext cx="0" cy="0"/>
+ </xdr:xfrm>
+ <a:graphic>
+ <a:graphicData uri="http://schemas.openxmlformats.org/drawingml/2006/chart">
+ <c:chart xmlns:c="http://schemas.openxmlformats.org/drawingml/2006/chart" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" r:id="rId1"/>
+ </a:graphicData>
+ </a:graphic>
+ </xdr:graphicFrame>
+ <xdr:clientData/>
+ </xdr:twoCellAnchor>
+</xdr:wsDr>
diff --git a/unzip_excel/xl/sharedStrings.xml b/unzip_excel/xl/sharedStrings.xml new file mode 100644 index 00000000..6abbbe92 --- /dev/null +++ b/unzip_excel/xl/sharedStrings.xml @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<sst xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main" count="544" uniqueCount="350"><si><r><rPr><sz val="24"/><rFont val="Arial"/></rPr><t>LiveSein Nutzungsstatistiken</t></r></si><si><r><rPr><sz val="10"/><rFont val="Arial"/></rPr><t/></r></si><si><r><rPr><sz val="18"/><rFont val="Arial"/></rPr><t>2012-06-25 00:00:00 UTC bis</t></r></si><si><r><rPr><sz val="5"/><rFont val="Arial"/></rPr><t/></r></si><si><r><rPr><sz val="18"/><rFont val="Arial"/></rPr><t>2012-07-01 23:59:59 UTC</t></r></si><si><r><rPr><sz val="24"/><rFont val="Arial"/></rPr><t/></r></si><si><r><rPr><sz val="18"/><rFont val="Arial"/></rPr><t>1) geplante und aktive Meeting-Minuten (gesamt)</t></r></si><si><r><rPr><sz val="18"/><rFont val="Arial"/></rPr><t>2) geplante und aktive Meeting-Minuten (pro Account)</t></r></si><si><r><rPr><sz val="18"/><rFont val="Arial"/></rPr><t>3) Teamraum- und Dokumentenbestand (pro Account)</t></r></si><si><t/></si><si><t>Zeitpunkt</t></si><si><t>geplante Minuten</t></si><si><t>aktive Minuten</t></si><si><t>Summe</t></si><si><t>Mon 00</t></si><si><t>02</t></si><si><t>04</t></si><si><t>06</t></si><si><t>08</t></si><si><t>10</t></si><si><t>12</t></si><si><t>14</t></si><si><t>16</t></si><si><t>18</t></si><si><t>20</t></si><si><t>22</t></si><si><t>Tue 00</t></si><si><t>Wed 00</t></si><si><t>Thu 00</t></si><si><t>Fri 00</t></si><si><t>Sat 00</t></si><si><t>Sun 00</t></si><si><t>Account</t></si><si><t>ACME Corp</t></si><si><t>MobiSave</t></si><si><t>LiveSein</t></si><si><t>Udo Schork</t></si><si><t>IT and Media 2012</t></si><si><t>Nolte Home Studio</t></si><si><t>Landesvorstand WJ NRW</t></si><si><t>Michael Gauder</t></si><si><t>Account-Id</t></si><si><t>Account-Name</t></si><si><t>Erstellung</t></si><si><t>Owner Name</t></si><si><t>Owner E-Mail</t></si><si><t>Teamraum-Verbrauch</t></si><si><t>Dokumenten-Verbrauch</t></si><si><t>4e0d7f62ad2bfd22ac000248</t></si><si><t>Frank Wöckener</t></si><si><t>[email protected]</t></si><si><t>4e0da31cad2bfd22ac0002ff</t></si><si><t>Webseminar Juni 2011</t></si><si><t>Thomas</t></si><si><t>[email protected]</t></si><si><t>4e165a33ad2bfd0cde00000b</t></si><si><t>defacto</t></si><si><t>Hans Lübken</t></si><si><t>[email protected]</t></si><si><t>4e16bb54ad2bfd0cd00003a9</t></si><si><t>Dreimannzelt</t></si><si><t>Matthias Orgler</t></si><si><t>[email protected]</t></si><si><t>4e1ee5e5ad2bfd48f4000047</t></si><si><t>Dialogic</t></si><si><t>Thomas Rock</t></si><si><t>[email protected]</t></si><si><t>4e30015020e3df476100005c</t></si><si><t>xenophobias</t></si><si><t>Benjamin</t></si><si><t>[email protected]</t></si><si><t>4e30282220e3df4761000180</t></si><si><t>Test</t></si><si><t>Andy K</t></si><si><t>[email protected]</t></si><si><t>4e3169aa20e3df0b7600001f</t></si><si><t>miripia</t></si><si><t>Deals RN</t></si><si><t>[email protected]</t></si><si><t>4e3bf8bc20e3df0b260007e2</t></si><si><t>test666</t></si><si><t>frank</t></si><si><t>[email protected]</t></si><si><t>4e3ebb1320e3df3bb700008c</t></si><si><t>LibS Bayern</t></si><si><t>Lukas Pollmann</t></si><si><t>[email protected]</t></si><si><t>4e4385f220e3df1b13000073</t></si><si><t>openinstitute</t></si><si><t>Niels Benson</t></si><si><t>[email protected]</t></si><si><t>4e534d8f20e3df5feb000007</t></si><si><t>Linkhelden</t></si><si><t>Alexander Holst</t></si><si><t>[email protected]</t></si><si><t>4e5c934b20e3df0498000013</t></si><si><t>04 Kinderintensiv</t></si><si><t>Thomas Tausend</t></si><si><t>[email protected]</t></si><si><t>4e68ae8f20e3df5c9500002c</t></si><si><t>Juggernaut</t></si><si><t>[email protected]</t></si><si><t>4e734fc020e3df4b3d0000bf</t></si><si><t>Regionaldirektion Heiko Vogler</t></si><si><t>Heiko Vogler</t></si><si><t>[email protected]</t></si><si><t>4e898a0d20e3df758a00009a</t></si><si><t>Test für Schüler als Bosse</t></si><si><t>Markus</t></si><si><t>[email protected]</t></si><si><t>4e8d629620e3df794e0000b0</t></si><si><t>sebi</t></si><si><t>Sebastian Lasse</t></si><si><t>[email protected]</t></si><si><t>4e941a9a20e3df5c54000058</t></si><si><t>SoGewollt</t></si><si><t>Uwe Kitzmann</t></si><si><t>[email protected]</t></si><si><t>4eae5f1820e3df0a2d000372</t></si><si><t>Admin1</t></si><si><t>Pity</t></si><si><t>[email protected]</t></si><si><t>4ebbe44420e3df340400003a</t></si><si><t>Communardo</t></si><si><t>Christoph Kirsten</t></si><si><t>[email protected]</t></si><si><t>4ecfa57a20e3df55be000026</t></si><si><t>INFA</t></si><si><t>Sabina Memedi</t></si><si><t>[email protected]</t></si><si><t>4edec44620e3df736a000044</t></si><si><t>radio</t></si><si><t>donsilver</t></si><si><t>[email protected]</t></si><si><t>4ee0f56920e3df6a2c000013</t></si><si><t>Learn Music Online</t></si><si><t>[email protected]</t></si><si><t>4f01b81d20e3df41f200031e</t></si><si><t>test1234</t></si><si><t>plotti</t></si><si><t>[email protected]</t></si><si><t>4f10321e20e3df6baa00014e</t></si><si><t>[email protected]</t></si><si><t>4f2159ab20e3df75e40003ae</t></si><si><t>So Lonely</t></si><si><t>Mr. DontKnowAnyone</t></si><si><t>[email protected]</t></si><si><t>4f2762f920e3df4ccb0003ec</t></si><si><t>Samuel Ng</t></si><si><t>[email protected]</t></si><si><t>4f3092fd20e3df5b340002a7</t></si><si><t>ESI Hong Kong</t></si><si><t>Keith Fong</t></si><si><t>[email protected]</t></si><si><t>4f31094620e3df7f75000001</t></si><si><t>Das MailArchiv</t></si><si><t>Tobias Müller</t></si><si><t>[email protected]</t></si><si><t>4f310a8120e3df0e81000001</t></si><si><t>c.l.u.</t></si><si><t>Michael Grundmann</t></si><si><t>[email protected]</t></si><si><t>4f32580d20e3df3a41000001</t></si><si><t>WJ-Kassel</t></si><si><t>Hanno Rogall</t></si><si><t>[email protected]</t></si><si><t>4f39afd920e3df2367000001</t></si><si><t>University of Mannheim</t></si><si><t>Stephan Kopf</t></si><si><t>[email protected]</t></si><si><t>4f45bb2920e3df2757000339</t></si><si><t>grayfox</t></si><si><t>[email protected]</t></si><si><t>4f45d16720e3df274c000433</t></si><si><t>JMONTEROHN</t></si><si><t>JAVIER MONTERO</t></si><si><t>[email protected]</t></si><si><t>4f4b694f20e3df4e6d000004</t></si><si><t>CTModule</t></si><si><t>Bruno Schwägli</t></si><si><t>[email protected]</t></si><si><t>4f56192720e3df3e9d000004</t></si><si><t>MorseCode</t></si><si><t>Maximilian Wich</t></si><si><t>[email protected]</t></si><si><t>4f56493020e3df234c00007a</t></si><si><t>testt</t></si><si><t>dwking</t></si><si><t>[email protected]</t></si><si><t>4f5775c520e3df389d000001</t></si><si><t>Gaming-Community-Germany</t></si><si><t>[email protected]</t></si><si><t>4e70458a20e3df3c17000002</t></si><si><t>Flashphoner</t></si><si><t>pavel</t></si><si><t>[email protected]</t></si><si><t>4f585bdb20e3df221b000001</t></si><si><t>Verkaufshilfe</t></si><si><t>Thomas Frick</t></si><si><t>[email protected]</t></si><si><t>4e0da436ad2bfd22ac00040b</t></si><si><t>4f5cc9f320e3df6e12000001</t></si><si><t>seacio</t></si><si><t>Marcio</t></si><si><t>[email protected]</t></si><si><t>4e7c3c0520e3df4bf0000020</t></si><si><t>Brain AG</t></si><si><t>Jutta Berg</t></si><si><t>[email protected]</t></si><si><t>4f6b176c20e3df0dee000006</t></si><si><t>issho</t></si><si><t>Arved Stiller</t></si><si><t>[email protected]</t></si><si><t>4f71ba6e20e3df53bf000001</t></si><si><t>Profilwerkstatt</t></si><si><t>Ralf Ansorge</t></si><si><t>[email protected]</t></si><si><t>4f72aae520e3df218a000001</t></si><si><t>4e8aed1620e3df198b000031</t></si><si><t>Die eLearning AG</t></si><si><t>Bernd Wiest</t></si><si><t>[email protected]</t></si><si><t>4f7a974220e3df2dce000003</t></si><si><t>BlueMars</t></si><si><t>Tobias Kirchhofer</t></si><si><t>[email protected]</t></si><si><t>4f8570af20e3df1b2500017d</t></si><si><t>daschug</t></si><si><t>Matthias Lüders</t></si><si><t>[email protected]</t></si><si><t>4f8d36d320e3df739400001d</t></si><si><t>quirin bank</t></si><si><t>Mandy Wulstein</t></si><si><t>[email protected]</t></si><si><t>4f97e9d220e3df19f4000028</t></si><si><t>Jens Pathenschneider</t></si><si><t>[email protected]</t></si><si><t>4f73280b20e3df140c0000d8</t></si><si><t>d.kratz.rheinmedia</t></si><si><t>David Kratz</t></si><si><t>[email protected]</t></si><si><t>4f9da22820e3df42bc000003</t></si><si><t>gonzo</t></si><si><t>Fred Opoku</t></si><si><t>[email protected]</t></si><si><t>4fa7e78e20e3df2f8f000029</t></si><si><t>alperionGmbH</t></si><si><t>alperion GmbH</t></si><si><t>[email protected]</t></si><si><t>4faad9c920e3df6976000035</t></si><si><t>reiz</t></si><si><t>Robert Reiz</t></si><si><t>[email protected]</t></si><si><t>4ee8b9f720e3df1e7f00000c</t></si><si><t>[email protected]</t></si><si><t>4fb391f920e3df5cab000013</t></si><si><t>OrganisedMinds</t></si><si><t>Diarmuid Daltún</t></si><si><t>[email protected]</t></si><si><t>4fbcb05420e3df3202000001</t></si><si><t>oncote</t></si><si><t>Mark</t></si><si><t>[email protected]</t></si><si><t>4fc4a76120e3df386a00004d</t></si><si><t>Chairi</t></si><si><t>Yassin Chairi</t></si><si><t>[email protected]</t></si><si><t>4fc5cbc520e3df417e000001</t></si><si><t>Thomas Plotkowiak</t></si><si><t>[email protected]</t></si><si><t>4fc5e85620e3df418a00008f</t></si><si><t>D&B INTERACTIVE</t></si><si><t>Carsten Prüser</t></si><si><t>[email protected]</t></si><si><t>4fc7354f20e3df416c000145</t></si><si><t>music-benchmark</t></si><si><t>Thomas Gueffroy</t></si><si><t>[email protected]</t></si><si><t>4e7305ad20e3df4b3d000018</t></si><si><t>Muster-Firma GmbH</t></si><si><t>Annette Schell</t></si><si><t>[email protected]</t></si><si><t>4e94425020e3df5c77000291</t></si><si><t>WJ-Darmstadt</t></si><si><t>[email protected]</t></si><si><t>4fcdda8420e3df5a12000032</t></si><si><t>Agnes</t></si><si><t>Johannes Schön</t></si><si><t>[email protected]</t></si><si><t>4fce018020e3df5a0f00004a</t></si><si><t>MeinStartup</t></si><si><t>Bastian Kennel</t></si><si><t>[email protected]</t></si><si><t>4fce018a20e3df5a21000076</t></si><si><t>sasadsadsad</t></si><si><t>4fce090320e3df5a2100007b</t></si><si><t>test1</t></si><si><t>Christian Kohout</t></si><si><t>[email protected]</t></si><si><t>4fce388420e3df5a240000c9</t></si><si><t>Demann</t></si><si><t>Tim Demann</t></si><si><t>[email protected]</t></si><si><t>4fcf3c4120e3df57dc0001dc</t></si><si><t>sanogas</t></si><si><t>Jürgen Greulich</t></si><si><t>[email protected]</t></si><si><t>4fcf418920e3df57c1000058</t></si><si><t>acura beteiligungen</t></si><si><t>[email protected]</t></si><si><t>4fd0928620e3df637d000003</t></si><si><t>david.negro</t></si><si><t>[email protected]</t></si><si><t>4fd4b8fe20e3df5613000006</t></si><si><t>takii</t></si><si><t>Dominic Grabner</t></si><si><t>[email protected]</t></si><si><t>4fd512d920e3df562b000022</t></si><si><t>Testaccount AH</t></si><si><t>Dr. Andreas Hoss</t></si><si><t>[email protected]</t></si><si><t>4fd7293d20e3df498300000b</t></si><si><t>byon</t></si><si><t>Alexander Nohles</t></si><si><t>[email protected]</t></si><si><t>4fd7431220e3df498000002a</t></si><si><t>STAUDTEVENTS</t></si><si><t>Arne Schlender</t></si><si><t>[email protected]</t></si><si><t>4fd839f720e3df1f95000001</t></si><si><t>Jörg Barth</t></si><si><t>[email protected]</t></si><si><t>4fd9dffc20e3df61b9000004</t></si><si><t>viewsandvision</t></si><si><t>Kees Wiebering</t></si><si><t>[email protected]</t></si><si><t>4fd9fa2620e3df61b0000029</t></si><si><t>Karsten Gerigk</t></si><si><t>[email protected]</t></si><si><t>4fe1d12320e3df0d0e00001e</t></si><si><t>Eresource</t></si><si><t>vaibhav</t></si><si><t>[email protected]</t></si><si><t>4fe30b0620e3df3f8b00009c</t></si><si><t>hallward</t></si><si><t>Bas Hallward</t></si><si><t>[email protected]</t></si><si><t>4feaae8020e3df3e51000005</t></si><si><t>Lisa Arnold</t></si><si><t>[email protected]</t></si></sst>
\ No newline at end of file diff --git a/unzip_excel/xl/styles.xml b/unzip_excel/xl/styles.xml new file mode 100644 index 00000000..3d2677c1 --- /dev/null +++ b/unzip_excel/xl/styles.xml @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<styleSheet xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="x14ac" xmlns:x14ac="http://schemas.microsoft.com/office/spreadsheetml/2009/9/ac"><fonts count="5" x14ac:knownFonts="1"><font><sz val="11"/><name val="Arial"/><family val="1"/></font><font><sz val="24"/><name val="Arial"/></font><font><sz val="10"/><name val="Arial"/></font><font><sz val="18"/><name val="Arial"/></font><font><sz val="5"/><name val="Arial"/></font></fonts><fills count="2"><fill><patternFill patternType="none"/></fill><fill><patternFill patternType="gray125"/></fill></fills><borders count="1"><border><left/><right/><top/><bottom/><diagonal/></border></borders><cellStyleXfs count="1"><xf numFmtId="0" fontId="0" fillId="0" borderId="0"/></cellStyleXfs><cellXfs count="2"><xf numFmtId="0" fontId="0" fillId="0" borderId="0" xfId="0"/><xf numFmtId="14" fontId="0" fillId="0" borderId="0" xfId="0" applyNumberFormat="1"/></cellXfs><cellStyles count="1"><cellStyle name="Standard" xfId="0" builtinId="0"/></cellStyles><dxfs count="0"/><tableStyles count="0" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16"/></styleSheet>
\ No newline at end of file diff --git a/unzip_excel/xl/theme/theme1.xml b/unzip_excel/xl/theme/theme1.xml new file mode 100644 index 00000000..a7d01483 --- /dev/null +++ b/unzip_excel/xl/theme/theme1.xml @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<a:theme xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" name="Office-Design"><a:themeElements><a:clrScheme name="Office"><a:dk1><a:sysClr val="windowText" lastClr="000000"/></a:dk1><a:lt1><a:sysClr val="window" lastClr="FFFFFF"/></a:lt1><a:dk2><a:srgbClr val="1F497D"/></a:dk2><a:lt2><a:srgbClr val="EEECE1"/></a:lt2><a:accent1><a:srgbClr val="4F81BD"/></a:accent1><a:accent2><a:srgbClr val="C0504D"/></a:accent2><a:accent3><a:srgbClr val="9BBB59"/></a:accent3><a:accent4><a:srgbClr val="8064A2"/></a:accent4><a:accent5><a:srgbClr val="4BACC6"/></a:accent5><a:accent6><a:srgbClr val="F79646"/></a:accent6><a:hlink><a:srgbClr val="0000FF"/></a:hlink><a:folHlink><a:srgbClr val="800080"/></a:folHlink></a:clrScheme><a:fontScheme name="Office"><a:majorFont><a:latin typeface="Cambria"/><a:ea typeface=""/><a:cs typeface=""/><a:font script="Jpan" typeface="MS Pゴシック"/><a:font script="Hang" typeface="맑은 고딕"/><a:font script="Hans" typeface="宋体"/><a:font script="Hant" typeface="新細明體"/><a:font script="Arab" typeface="Times New Roman"/><a:font script="Hebr" typeface="Times New Roman"/><a:font script="Thai" typeface="Tahoma"/><a:font script="Ethi" typeface="Nyala"/><a:font script="Beng" typeface="Vrinda"/><a:font script="Gujr" typeface="Shruti"/><a:font script="Khmr" typeface="MoolBoran"/><a:font script="Knda" typeface="Tunga"/><a:font script="Guru" typeface="Raavi"/><a:font script="Cans" typeface="Euphemia"/><a:font script="Cher" typeface="Plantagenet Cherokee"/><a:font script="Yiii" typeface="Microsoft Yi Baiti"/><a:font script="Tibt" typeface="Microsoft Himalaya"/><a:font script="Thaa" typeface="MV Boli"/><a:font script="Deva" typeface="Mangal"/><a:font script="Telu" typeface="Gautami"/><a:font script="Taml" typeface="Latha"/><a:font script="Syrc" typeface="Estrangelo Edessa"/><a:font script="Orya" typeface="Kalinga"/><a:font script="Mlym" typeface="Kartika"/><a:font script="Laoo" typeface="DokChampa"/><a:font script="Sinh" typeface="Iskoola Pota"/><a:font script="Mong" typeface="Mongolian Baiti"/><a:font script="Viet" typeface="Times New Roman"/><a:font script="Uigh" typeface="Microsoft Uighur"/><a:font script="Geor" typeface="Sylfaen"/></a:majorFont><a:minorFont><a:latin typeface="Calibri"/><a:ea typeface=""/><a:cs typeface=""/><a:font script="Jpan" typeface="MS Pゴシック"/><a:font script="Hang" typeface="맑은 고딕"/><a:font script="Hans" typeface="宋体"/><a:font script="Hant" typeface="新細明體"/><a:font script="Arab" typeface="Arial"/><a:font script="Hebr" typeface="Arial"/><a:font script="Thai" typeface="Tahoma"/><a:font script="Ethi" typeface="Nyala"/><a:font script="Beng" typeface="Vrinda"/><a:font script="Gujr" typeface="Shruti"/><a:font script="Khmr" typeface="DaunPenh"/><a:font script="Knda" typeface="Tunga"/><a:font script="Guru" typeface="Raavi"/><a:font script="Cans" typeface="Euphemia"/><a:font script="Cher" typeface="Plantagenet Cherokee"/><a:font script="Yiii" typeface="Microsoft Yi Baiti"/><a:font script="Tibt" typeface="Microsoft Himalaya"/><a:font script="Thaa" typeface="MV Boli"/><a:font script="Deva" typeface="Mangal"/><a:font script="Telu" typeface="Gautami"/><a:font script="Taml" typeface="Latha"/><a:font script="Syrc" typeface="Estrangelo Edessa"/><a:font script="Orya" typeface="Kalinga"/><a:font script="Mlym" typeface="Kartika"/><a:font script="Laoo" typeface="DokChampa"/><a:font script="Sinh" typeface="Iskoola Pota"/><a:font script="Mong" typeface="Mongolian Baiti"/><a:font script="Viet" typeface="Arial"/><a:font script="Uigh" typeface="Microsoft Uighur"/><a:font script="Geor" typeface="Sylfaen"/></a:minorFont></a:fontScheme><a:fmtScheme name="Office"><a:fillStyleLst><a:solidFill><a:schemeClr val="phClr"/></a:solidFill><a:gradFill rotWithShape="1"><a:gsLst><a:gs pos="0"><a:schemeClr val="phClr"><a:tint val="50000"/><a:satMod val="300000"/></a:schemeClr></a:gs><a:gs pos="35000"><a:schemeClr val="phClr"><a:tint val="37000"/><a:satMod val="300000"/></a:schemeClr></a:gs><a:gs pos="100000"><a:schemeClr val="phClr"><a:tint val="15000"/><a:satMod val="350000"/></a:schemeClr></a:gs></a:gsLst><a:lin ang="16200000" scaled="1"/></a:gradFill><a:gradFill rotWithShape="1"><a:gsLst><a:gs pos="0"><a:schemeClr val="phClr"><a:tint val="100000"/><a:shade val="100000"/><a:satMod val="130000"/></a:schemeClr></a:gs><a:gs pos="100000"><a:schemeClr val="phClr"><a:tint val="50000"/><a:shade val="100000"/><a:satMod val="350000"/></a:schemeClr></a:gs></a:gsLst><a:lin ang="16200000" scaled="0"/></a:gradFill></a:fillStyleLst><a:lnStyleLst><a:ln w="9525" cap="flat" cmpd="sng" algn="ctr"><a:solidFill><a:schemeClr val="phClr"><a:shade val="95000"/><a:satMod val="105000"/></a:schemeClr></a:solidFill><a:prstDash val="solid"/></a:ln><a:ln w="25400" cap="flat" cmpd="sng" algn="ctr"><a:solidFill><a:schemeClr val="phClr"/></a:solidFill><a:prstDash val="solid"/></a:ln><a:ln w="38100" cap="flat" cmpd="sng" algn="ctr"><a:solidFill><a:schemeClr val="phClr"/></a:solidFill><a:prstDash val="solid"/></a:ln></a:lnStyleLst><a:effectStyleLst><a:effectStyle><a:effectLst><a:outerShdw blurRad="40000" dist="20000" dir="5400000" rotWithShape="0"><a:srgbClr val="000000"><a:alpha val="38000"/></a:srgbClr></a:outerShdw></a:effectLst></a:effectStyle><a:effectStyle><a:effectLst><a:outerShdw blurRad="40000" dist="23000" dir="5400000" rotWithShape="0"><a:srgbClr val="000000"><a:alpha val="35000"/></a:srgbClr></a:outerShdw></a:effectLst></a:effectStyle><a:effectStyle><a:effectLst><a:outerShdw blurRad="40000" dist="23000" dir="5400000" rotWithShape="0"><a:srgbClr val="000000"><a:alpha val="35000"/></a:srgbClr></a:outerShdw></a:effectLst><a:scene3d><a:camera prst="orthographicFront"><a:rot lat="0" lon="0" rev="0"/></a:camera><a:lightRig rig="threePt" dir="t"><a:rot lat="0" lon="0" rev="1200000"/></a:lightRig></a:scene3d><a:sp3d><a:bevelT w="63500" h="25400"/></a:sp3d></a:effectStyle></a:effectStyleLst><a:bgFillStyleLst><a:solidFill><a:schemeClr val="phClr"/></a:solidFill><a:gradFill rotWithShape="1"><a:gsLst><a:gs pos="0"><a:schemeClr val="phClr"><a:tint val="40000"/><a:satMod val="350000"/></a:schemeClr></a:gs><a:gs pos="40000"><a:schemeClr val="phClr"><a:tint val="45000"/><a:shade val="99000"/><a:satMod val="350000"/></a:schemeClr></a:gs><a:gs pos="100000"><a:schemeClr val="phClr"><a:shade val="20000"/><a:satMod val="255000"/></a:schemeClr></a:gs></a:gsLst><a:path path="circle"><a:fillToRect l="50000" t="-80000" r="50000" b="180000"/></a:path></a:gradFill><a:gradFill rotWithShape="1"><a:gsLst><a:gs pos="0"><a:schemeClr val="phClr"><a:tint val="80000"/><a:satMod val="300000"/></a:schemeClr></a:gs><a:gs pos="100000"><a:schemeClr val="phClr"><a:shade val="30000"/><a:satMod val="200000"/></a:schemeClr></a:gs></a:gsLst><a:path path="circle"><a:fillToRect l="50000" t="50000" r="50000" b="50000"/></a:path></a:gradFill></a:bgFillStyleLst></a:fmtScheme></a:themeElements><a:objectDefaults><a:spDef><a:spPr/><a:bodyPr/><a:lstStyle/><a:style><a:lnRef idx="1"><a:schemeClr val="accent1"/></a:lnRef><a:fillRef idx="3"><a:schemeClr val="accent1"/></a:fillRef><a:effectRef idx="2"><a:schemeClr val="accent1"/></a:effectRef><a:fontRef idx="minor"><a:schemeClr val="lt1"/></a:fontRef></a:style></a:spDef><a:lnDef><a:spPr/><a:bodyPr/><a:lstStyle/><a:style><a:lnRef idx="2"><a:schemeClr val="accent1"/></a:lnRef><a:fillRef idx="0"><a:schemeClr val="accent1"/></a:fillRef><a:effectRef idx="1"><a:schemeClr val="accent1"/></a:effectRef><a:fontRef idx="minor"><a:schemeClr val="tx1"/></a:fontRef></a:style></a:lnDef></a:objectDefaults><a:extraClrSchemeLst/></a:theme>
\ No newline at end of file diff --git a/unzip_excel/xl/workbook.xml b/unzip_excel/xl/workbook.xml new file mode 100644 index 00000000..64ee6154 --- /dev/null +++ b/unzip_excel/xl/workbook.xml @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<workbook xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"><fileVersion appName="xl" lastEdited="5" lowestEdited="5" rupBuild="22221"/><workbookPr autoCompressPictures="0"/><bookViews><workbookView xWindow="0" yWindow="440" windowWidth="25600" windowHeight="15620" tabRatio="500" firstSheet="1" activeTab="3"/></bookViews><sheets><sheet name="Deckblatt" sheetId="1" r:id="rId1"/><sheet name="Meeting-Minuten gesamt" sheetId="2" r:id="rId2"/><sheet name="Meeting-Minuten pro Account" sheetId="3" r:id="rId3"/><sheet name="Bestandszahlen pro Account" sheetId="4" r:id="rId4"/></sheets><calcPr calcId="140001" concurrentCalc="0"/><extLst><ext uri="{7523E5D3-25F3-A5E0-1632-64F254C22452}" xmlns:mx="http://schemas.microsoft.com/office/mac/excel/2008/main"><mx:ArchID Flags="2"/></ext></extLst></workbook>
\ No newline at end of file diff --git a/unzip_excel/xl/worksheets/_rels/sheet2.xml.rels b/unzip_excel/xl/worksheets/_rels/sheet2.xml.rels new file mode 100644 index 00000000..4babdeca --- /dev/null +++ b/unzip_excel/xl/worksheets/_rels/sheet2.xml.rels @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships"><Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/drawing" Target="../drawings/drawing1.xml"/></Relationships>
\ No newline at end of file diff --git a/unzip_excel/xl/worksheets/_rels/sheet3.xml.rels b/unzip_excel/xl/worksheets/_rels/sheet3.xml.rels new file mode 100644 index 00000000..27e1d83c --- /dev/null +++ b/unzip_excel/xl/worksheets/_rels/sheet3.xml.rels @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships"><Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/drawing" Target="../drawings/drawing2.xml"/></Relationships>
\ No newline at end of file diff --git a/unzip_excel/xl/worksheets/sheet1.xml b/unzip_excel/xl/worksheets/sheet1.xml new file mode 100644 index 00000000..f858e19c --- /dev/null +++ b/unzip_excel/xl/worksheets/sheet1.xml @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<worksheet xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="x14ac" xmlns:x14ac="http://schemas.microsoft.com/office/spreadsheetml/2009/9/ac"><dimension ref="A1:A12"/><sheetViews><sheetView workbookViewId="0"/></sheetViews><sheetFormatPr baseColWidth="10" defaultRowHeight="15" x14ac:dyDescent="0"/><cols><col min="1" max="1" width="55.42578125" bestFit="1" customWidth="1"/></cols><sheetData><row r="1" spans="1:1" ht="28"><c r="A1" t="s"><v>0</v></c></row><row r="2" spans="1:1" ht="13"><c r="A2" t="s"><v>1</v></c></row><row r="3" spans="1:1" ht="21"><c r="A3" t="s"><v>2</v></c></row><row r="4" spans="1:1" ht="13"><c r="A4" t="s"><v>3</v></c></row><row r="5" spans="1:1" ht="21"><c r="A5" t="s"><v>4</v></c></row><row r="6" spans="1:1" ht="28"><c r="A6" t="s"><v>5</v></c></row><row r="7" spans="1:1" ht="21"><c r="A7" t="s"><v>6</v></c></row><row r="8" spans="1:1" ht="13"><c r="A8" t="s"><v>3</v></c></row><row r="9" spans="1:1" ht="21"><c r="A9" t="s"><v>7</v></c></row><row r="10" spans="1:1" ht="13"><c r="A10" t="s"><v>3</v></c></row><row r="11" spans="1:1" ht="21"><c r="A11" t="s"><v>8</v></c></row><row r="12" spans="1:1" ht="13"><c r="A12" t="s"><v>3</v></c></row></sheetData><pageMargins left="0.75" right="0.75" top="1" bottom="1" header="0.5" footer="0.5"/><extLst><ext uri="{64002731-A6B0-56B0-2670-7721B7C09600}" xmlns:mx="http://schemas.microsoft.com/office/mac/excel/2008/main"><mx:PLV Mode="0" OnePage="0" WScale="0"/></ext></extLst></worksheet>
\ No newline at end of file diff --git a/unzip_excel/xl/worksheets/sheet2.xml b/unzip_excel/xl/worksheets/sheet2.xml new file mode 100644 index 00000000..5b0c9823 --- /dev/null +++ b/unzip_excel/xl/worksheets/sheet2.xml @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<worksheet xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="x14ac" xmlns:x14ac="http://schemas.microsoft.com/office/spreadsheetml/2009/9/ac"><dimension ref="A1:D86"/><sheetViews><sheetView workbookViewId="0"/></sheetViews><sheetFormatPr baseColWidth="10" defaultRowHeight="15" x14ac:dyDescent="0"/><cols><col min="1" max="1" width="7.42578125" bestFit="1" customWidth="1"/><col min="2" max="2" width="9.7109375" bestFit="1" customWidth="1"/><col min="3" max="3" width="11.85546875" bestFit="1" customWidth="1"/><col min="4" max="4" width="9.7109375" bestFit="1" customWidth="1"/></cols><sheetData><row r="1" spans="1:4" ht="13"><c r="A1" t="s"><v>9</v></c><c r="B1" t="s"><v>10</v></c><c r="C1" t="s"><v>11</v></c><c r="D1" t="s"><v>12</v></c></row><row r="2" spans="1:4" ht="13"><c r="A2" t="s"><v>13</v></c><c r="B2" t="s"><v>9</v></c><c r="C2"><f>SUM(C4:C86)</f><v>4680</v></c><c r="D2"><f>SUM(D4:D86)</f><v>821</v></c></row><row r="3" spans="1:4" ht="13"><c r="A3" t="s"><v>9</v></c><c r="B3" t="s"><v>9</v></c><c r="C3" t="s"><v>9</v></c><c r="D3" t="s"><v>9</v></c></row><row r="4" spans="1:4" ht="13"><c r="A4" t="s"><v>9</v></c><c r="B4" t="s"><v>14</v></c><c r="C4"><v>0</v></c><c r="D4"><v>0</v></c></row><row r="5" spans="1:4" ht="13"><c r="A5" t="s"><v>9</v></c><c r="B5" t="s"><v>15</v></c><c r="C5"><v>0</v></c><c r="D5"><v>0</v></c></row><row r="6" spans="1:4" ht="13"><c r="A6" t="s"><v>9</v></c><c r="B6" t="s"><v>16</v></c><c r="C6"><v>60</v></c><c r="D6"><v>0</v></c></row><row r="7" spans="1:4" ht="13"><c r="A7" t="s"><v>9</v></c><c r="B7" t="s"><v>17</v></c><c r="C7"><v>0</v></c><c r="D7"><v>0</v></c></row><row r="8" spans="1:4" ht="13"><c r="A8" t="s"><v>9</v></c><c r="B8" t="s"><v>18</v></c><c r="C8"><v>240</v></c><c r="D8"><v>222</v></c></row><row r="9" spans="1:4" ht="13"><c r="A9" t="s"><v>9</v></c><c r="B9" t="s"><v>19</v></c><c r="C9"><v>300</v></c><c r="D9"><v>38</v></c></row><row r="10" spans="1:4" ht="13"><c r="A10" t="s"><v>9</v></c><c r="B10" t="s"><v>20</v></c><c r="C10"><v>90</v></c><c r="D10"><v>20</v></c></row><row r="11" spans="1:4" ht="13"><c r="A11" t="s"><v>9</v></c><c r="B11" t="s"><v>21</v></c><c r="C11"><v>0</v></c><c r="D11"><v>0</v></c></row><row r="12" spans="1:4" ht="13"><c r="A12" t="s"><v>9</v></c><c r="B12" t="s"><v>22</v></c><c r="C12"><v>270</v></c><c r="D12"><v>114</v></c></row><row r="13" spans="1:4" ht="13"><c r="A13" t="s"><v>9</v></c><c r="B13" t="s"><v>23</v></c><c r="C13"><v>60</v></c><c r="D13"><v>3</v></c></row><row r="14" spans="1:4" ht="13"><c r="A14" t="s"><v>9</v></c><c r="B14" t="s"><v>24</v></c><c r="C14"><v>0</v></c><c r="D14"><v>0</v></c></row><row r="15" spans="1:4" ht="13"><c r="A15" t="s"><v>9</v></c><c r="B15" t="s"><v>25</v></c><c r="C15"><v>0</v></c><c r="D15"><v>0</v></c></row><row r="16" spans="1:4" ht="13"><c r="A16" t="s"><v>9</v></c><c r="B16" t="s"><v>26</v></c><c r="C16"><v>0</v></c><c r="D16"><v>0</v></c></row><row r="17" spans="1:4" ht="13"><c r="A17" t="s"><v>9</v></c><c r="B17" t="s"><v>15</v></c><c r="C17"><v>60</v></c><c r="D17"><v>0</v></c></row><row r="18" spans="1:4" ht="13"><c r="A18" t="s"><v>9</v></c><c r="B18" t="s"><v>16</v></c><c r="C18"><v>0</v></c><c r="D18"><v>0</v></c></row><row r="19" spans="1:4" ht="13"><c r="A19" t="s"><v>9</v></c><c r="B19" t="s"><v>17</v></c><c r="C19"><v>0</v></c><c r="D19"><v>0</v></c></row><row r="20" spans="1:4" ht="13"><c r="A20" t="s"><v>9</v></c><c r="B20" t="s"><v>18</v></c><c r="C20"><v>615</v></c><c r="D20"><v>76</v></c></row><row r="21" spans="1:4" ht="13"><c r="A21" t="s"><v>9</v></c><c r="B21" t="s"><v>19</v></c><c r="C21"><v>630</v></c><c r="D21"><v>0</v></c></row><row r="22" spans="1:4" ht="13"><c r="A22" t="s"><v>9</v></c><c r="B22" t="s"><v>20</v></c><c r="C22"><v>360</v></c><c r="D22"><v>8</v></c></row><row r="23" spans="1:4" ht="13"><c r="A23" t="s"><v>9</v></c><c r="B23" t="s"><v>21</v></c><c r="C23"><v>0</v></c><c r="D23"><v>0</v></c></row><row r="24" spans="1:4" ht="13"><c r="A24" t="s"><v>9</v></c><c r="B24" t="s"><v>22</v></c><c r="C24"><v>0</v></c><c r="D24"><v>0</v></c></row><row r="25" spans="1:4" ht="13"><c r="A25" t="s"><v>9</v></c><c r="B25" t="s"><v>23</v></c><c r="C25"><v>60</v></c><c r="D25"><v>0</v></c></row><row r="26" spans="1:4" ht="13"><c r="A26" t="s"><v>9</v></c><c r="B26" t="s"><v>24</v></c><c r="C26"><v>0</v></c><c r="D26"><v>0</v></c></row><row r="27" spans="1:4" ht="13"><c r="A27" t="s"><v>9</v></c><c r="B27" t="s"><v>25</v></c><c r="C27"><v>0</v></c><c r="D27"><v>0</v></c></row><row r="28" spans="1:4" ht="13"><c r="A28" t="s"><v>9</v></c><c r="B28" t="s"><v>27</v></c><c r="C28"><v>0</v></c><c r="D28"><v>0</v></c></row><row r="29" spans="1:4" ht="13"><c r="A29" t="s"><v>9</v></c><c r="B29" t="s"><v>15</v></c><c r="C29"><v>0</v></c><c r="D29"><v>0</v></c></row><row r="30" spans="1:4" ht="13"><c r="A30" t="s"><v>9</v></c><c r="B30" t="s"><v>16</v></c><c r="C30"><v>15</v></c><c r="D30"><v>0</v></c></row><row r="31" spans="1:4" ht="13"><c r="A31" t="s"><v>9</v></c><c r="B31" t="s"><v>17</v></c><c r="C31"><v>60</v></c><c r="D31"><v>0</v></c></row><row r="32" spans="1:4" ht="13"><c r="A32" t="s"><v>9</v></c><c r="B32" t="s"><v>18</v></c><c r="C32"><v>0</v></c><c r="D32"><v>0</v></c></row><row r="33" spans="1:4" ht="13"><c r="A33" t="s"><v>9</v></c><c r="B33" t="s"><v>19</v></c><c r="C33"><v>0</v></c><c r="D33"><v>0</v></c></row><row r="34" spans="1:4" ht="13"><c r="A34" t="s"><v>9</v></c><c r="B34" t="s"><v>20</v></c><c r="C34"><v>0</v></c><c r="D34"><v>0</v></c></row><row r="35" spans="1:4" ht="13"><c r="A35" t="s"><v>9</v></c><c r="B35" t="s"><v>21</v></c><c r="C35"><v>300</v></c><c r="D35"><v>1</v></c></row><row r="36" spans="1:4" ht="13"><c r="A36" t="s"><v>9</v></c><c r="B36" t="s"><v>22</v></c><c r="C36"><v>120</v></c><c r="D36"><v>0</v></c></row><row r="37" spans="1:4" ht="13"><c r="A37" t="s"><v>9</v></c><c r="B37" t="s"><v>23</v></c><c r="C37"><v>0</v></c><c r="D37"><v>0</v></c></row><row r="38" spans="1:4" ht="13"><c r="A38" t="s"><v>9</v></c><c r="B38" t="s"><v>24</v></c><c r="C38"><v>0</v></c><c r="D38"><v>0</v></c></row><row r="39" spans="1:4" ht="13"><c r="A39" t="s"><v>9</v></c><c r="B39" t="s"><v>25</v></c><c r="C39"><v>0</v></c><c r="D39"><v>0</v></c></row><row r="40" spans="1:4" ht="13"><c r="A40" t="s"><v>9</v></c><c r="B40" t="s"><v>28</v></c><c r="C40"><v>0</v></c><c r="D40"><v>0</v></c></row><row r="41" spans="1:4" ht="13"><c r="A41" t="s"><v>9</v></c><c r="B41" t="s"><v>15</v></c><c r="C41"><v>0</v></c><c r="D41"><v>0</v></c></row><row r="42" spans="1:4" ht="13"><c r="A42" t="s"><v>9</v></c><c r="B42" t="s"><v>16</v></c><c r="C42"><v>0</v></c><c r="D42"><v>0</v></c></row><row r="43" spans="1:4" ht="13"><c r="A43" t="s"><v>9</v></c><c r="B43" t="s"><v>17</v></c><c r="C43"><v>0</v></c><c r="D43"><v>0</v></c></row><row r="44" spans="1:4" ht="13"><c r="A44" t="s"><v>9</v></c><c r="B44" t="s"><v>18</v></c><c r="C44"><v>0</v></c><c r="D44"><v>0</v></c></row><row r="45" spans="1:4" ht="13"><c r="A45" t="s"><v>9</v></c><c r="B45" t="s"><v>19</v></c><c r="C45"><v>0</v></c><c r="D45"><v>0</v></c></row><row r="46" spans="1:4" ht="13"><c r="A46" t="s"><v>9</v></c><c r="B46" t="s"><v>20</v></c><c r="C46"><v>0</v></c><c r="D46"><v>0</v></c></row><row r="47" spans="1:4" ht="13"><c r="A47" t="s"><v>9</v></c><c r="B47" t="s"><v>21</v></c><c r="C47"><v>0</v></c><c r="D47"><v>0</v></c></row><row r="48" spans="1:4" ht="13"><c r="A48" t="s"><v>9</v></c><c r="B48" t="s"><v>22</v></c><c r="C48"><v>120</v></c><c r="D48"><v>20</v></c></row><row r="49" spans="1:4" ht="13"><c r="A49" t="s"><v>9</v></c><c r="B49" t="s"><v>23</v></c><c r="C49"><v>0</v></c><c r="D49"><v>0</v></c></row><row r="50" spans="1:4" ht="13"><c r="A50" t="s"><v>9</v></c><c r="B50" t="s"><v>24</v></c><c r="C50"><v>0</v></c><c r="D50"><v>0</v></c></row><row r="51" spans="1:4" ht="13"><c r="A51" t="s"><v>9</v></c><c r="B51" t="s"><v>25</v></c><c r="C51"><v>0</v></c><c r="D51"><v>0</v></c></row><row r="52" spans="1:4" ht="13"><c r="A52" t="s"><v>9</v></c><c r="B52" t="s"><v>29</v></c><c r="C52"><v>0</v></c><c r="D52"><v>0</v></c></row><row r="53" spans="1:4" ht="13"><c r="A53" t="s"><v>9</v></c><c r="B53" t="s"><v>15</v></c><c r="C53"><v>0</v></c><c r="D53"><v>0</v></c></row><row r="54" spans="1:4" ht="13"><c r="A54" t="s"><v>9</v></c><c r="B54" t="s"><v>16</v></c><c r="C54"><v>30</v></c><c r="D54"><v>6</v></c></row><row r="55" spans="1:4" ht="13"><c r="A55" t="s"><v>9</v></c><c r="B55" t="s"><v>17</v></c><c r="C55"><v>0</v></c><c r="D55"><v>0</v></c></row><row r="56" spans="1:4" ht="13"><c r="A56" t="s"><v>9</v></c><c r="B56" t="s"><v>18</v></c><c r="C56"><v>120</v></c><c r="D56"><v>2</v></c></row><row r="57" spans="1:4" ht="13"><c r="A57" t="s"><v>9</v></c><c r="B57" t="s"><v>19</v></c><c r="C57"><v>60</v></c><c r="D57"><v>0</v></c></row><row r="58" spans="1:4" ht="13"><c r="A58" t="s"><v>9</v></c><c r="B58" t="s"><v>20</v></c><c r="C58"><v>150</v></c><c r="D58"><v>50</v></c></row><row r="59" spans="1:4" ht="13"><c r="A59" t="s"><v>9</v></c><c r="B59" t="s"><v>21</v></c><c r="C59"><v>0</v></c><c r="D59"><v>0</v></c></row><row r="60" spans="1:4" ht="13"><c r="A60" t="s"><v>9</v></c><c r="B60" t="s"><v>22</v></c><c r="C60"><v>0</v></c><c r="D60"><v>0</v></c></row><row r="61" spans="1:4" ht="13"><c r="A61" t="s"><v>9</v></c><c r="B61" t="s"><v>23</v></c><c r="C61"><v>0</v></c><c r="D61"><v>0</v></c></row><row r="62" spans="1:4" ht="13"><c r="A62" t="s"><v>9</v></c><c r="B62" t="s"><v>24</v></c><c r="C62"><v>0</v></c><c r="D62"><v>0</v></c></row><row r="63" spans="1:4" ht="13"><c r="A63" t="s"><v>9</v></c><c r="B63" t="s"><v>25</v></c><c r="C63"><v>0</v></c><c r="D63"><v>0</v></c></row><row r="64" spans="1:4" ht="13"><c r="A64" t="s"><v>9</v></c><c r="B64" t="s"><v>30</v></c><c r="C64"><v>0</v></c><c r="D64"><v>0</v></c></row><row r="65" spans="1:4" ht="13"><c r="A65" t="s"><v>9</v></c><c r="B65" t="s"><v>15</v></c><c r="C65"><v>0</v></c><c r="D65"><v>0</v></c></row><row r="66" spans="1:4" ht="13"><c r="A66" t="s"><v>9</v></c><c r="B66" t="s"><v>16</v></c><c r="C66"><v>0</v></c><c r="D66"><v>0</v></c></row><row r="67" spans="1:4" ht="13"><c r="A67" t="s"><v>9</v></c><c r="B67" t="s"><v>17</v></c><c r="C67"><v>0</v></c><c r="D67"><v>0</v></c></row><row r="68" spans="1:4" ht="13"><c r="A68" t="s"><v>9</v></c><c r="B68" t="s"><v>18</v></c><c r="C68"><v>0</v></c><c r="D68"><v>0</v></c></row><row r="69" spans="1:4" ht="13"><c r="A69" t="s"><v>9</v></c><c r="B69" t="s"><v>19</v></c><c r="C69"><v>0</v></c><c r="D69"><v>0</v></c></row><row r="70" spans="1:4" ht="13"><c r="A70" t="s"><v>9</v></c><c r="B70" t="s"><v>20</v></c><c r="C70"><v>0</v></c><c r="D70"><v>0</v></c></row><row r="71" spans="1:4" ht="13"><c r="A71" t="s"><v>9</v></c><c r="B71" t="s"><v>21</v></c><c r="C71"><v>0</v></c><c r="D71"><v>0</v></c></row><row r="72" spans="1:4" ht="13"><c r="A72" t="s"><v>9</v></c><c r="B72" t="s"><v>22</v></c><c r="C72"><v>0</v></c><c r="D72"><v>0</v></c></row><row r="73" spans="1:4" ht="13"><c r="A73" t="s"><v>9</v></c><c r="B73" t="s"><v>23</v></c><c r="C73"><v>0</v></c><c r="D73"><v>0</v></c></row><row r="74" spans="1:4" ht="13"><c r="A74" t="s"><v>9</v></c><c r="B74" t="s"><v>24</v></c><c r="C74"><v>0</v></c><c r="D74"><v>0</v></c></row><row r="75" spans="1:4" ht="13"><c r="A75" t="s"><v>9</v></c><c r="B75" t="s"><v>25</v></c><c r="C75"><v>0</v></c><c r="D75"><v>0</v></c></row><row r="76" spans="1:4" ht="13"><c r="A76" t="s"><v>9</v></c><c r="B76" t="s"><v>31</v></c><c r="C76"><v>0</v></c><c r="D76"><v>0</v></c></row><row r="77" spans="1:4" ht="13"><c r="A77" t="s"><v>9</v></c><c r="B77" t="s"><v>15</v></c><c r="C77"><v>0</v></c><c r="D77"><v>0</v></c></row><row r="78" spans="1:4" ht="13"><c r="A78" t="s"><v>9</v></c><c r="B78" t="s"><v>16</v></c><c r="C78"><v>0</v></c><c r="D78"><v>0</v></c></row><row r="79" spans="1:4" ht="13"><c r="A79" t="s"><v>9</v></c><c r="B79" t="s"><v>17</v></c><c r="C79"><v>120</v></c><c r="D79"><v>3</v></c></row><row r="80" spans="1:4" ht="13"><c r="A80" t="s"><v>9</v></c><c r="B80" t="s"><v>18</v></c><c r="C80"><v>120</v></c><c r="D80"><v>0</v></c></row><row r="81" spans="1:4" ht="13"><c r="A81" t="s"><v>9</v></c><c r="B81" t="s"><v>19</v></c><c r="C81"><v>60</v></c><c r="D81"><v>0</v></c></row><row r="82" spans="1:4" ht="13"><c r="A82" t="s"><v>9</v></c><c r="B82" t="s"><v>20</v></c><c r="C82"><v>240</v></c><c r="D82"><v>224</v></c></row><row r="83" spans="1:4" ht="13"><c r="A83" t="s"><v>9</v></c><c r="B83" t="s"><v>21</v></c><c r="C83"><v>30</v></c><c r="D83"><v>0</v></c></row><row r="84" spans="1:4" ht="13"><c r="A84" t="s"><v>9</v></c><c r="B84" t="s"><v>22</v></c><c r="C84"><v>120</v></c><c r="D84"><v>34</v></c></row><row r="85" spans="1:4" ht="13"><c r="A85" t="s"><v>9</v></c><c r="B85" t="s"><v>23</v></c><c r="C85"><v>240</v></c><c r="D85"><v>0</v></c></row><row r="86" spans="1:4" ht="13"><c r="A86" t="s"><v>9</v></c><c r="B86" t="s"><v>24</v></c><c r="C86"><v>30</v></c><c r="D86"><v>0</v></c></row></sheetData><pageMargins left="0.75" right="0.75" top="1" bottom="1" header="0.5" footer="0.5"/><drawing r:id="rId1"/><extLst><ext uri="{64002731-A6B0-56B0-2670-7721B7C09600}" xmlns:mx="http://schemas.microsoft.com/office/mac/excel/2008/main"><mx:PLV Mode="0" OnePage="0" WScale="0"/></ext></extLst></worksheet>
\ No newline at end of file diff --git a/unzip_excel/xl/worksheets/sheet3.xml b/unzip_excel/xl/worksheets/sheet3.xml new file mode 100644 index 00000000..f6f7d7d0 --- /dev/null +++ b/unzip_excel/xl/worksheets/sheet3.xml @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<worksheet xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="x14ac" xmlns:x14ac="http://schemas.microsoft.com/office/spreadsheetml/2009/9/ac"><dimension ref="A1:C10"/><sheetViews><sheetView workbookViewId="0"/></sheetViews><sheetFormatPr baseColWidth="10" defaultRowHeight="15" x14ac:dyDescent="0"/><cols><col min="1" max="1" width="16.28515625" bestFit="1" customWidth="1"/><col min="2" max="2" width="11.85546875" bestFit="1" customWidth="1"/><col min="3" max="3" width="9.7109375" bestFit="1" customWidth="1"/></cols><sheetData><row r="1" spans="1:3" ht="13"><c r="A1" t="s"><v>32</v></c><c r="B1" t="s"><v>11</v></c><c r="C1" t="s"><v>12</v></c></row><row r="2" spans="1:3" ht="13"><c r="A2" t="s"><v>9</v></c><c r="B2" t="s"><v>9</v></c><c r="C2" t="s"><v>9</v></c></row><row r="3" spans="1:3" ht="13"><c r="A3" t="s"><v>33</v></c><c r="B3"><v>1230</v></c><c r="C3"><v>77</v></c></row><row r="4" spans="1:3" ht="13"><c r="A4" t="s"><v>34</v></c><c r="B4"><v>1500</v></c><c r="C4"><v>75</v></c></row><row r="5" spans="1:3" ht="13"><c r="A5" t="s"><v>35</v></c><c r="B5"><v>930</v></c><c r="C5"><v>251</v></c></row><row r="6" spans="1:3" ht="13"><c r="A6" t="s"><v>36</v></c><c r="B6"><v>450</v></c><c r="C6"><v>152</v></c></row><row r="7" spans="1:3" ht="13"><c r="A7" t="s"><v>37</v></c><c r="B7"><v>60</v></c><c r="C7"><v>0</v></c></row><row r="8" spans="1:3" ht="13"><c r="A8" t="s"><v>38</v></c><c r="B8"><v>60</v></c><c r="C8"><v>0</v></c></row><row r="9" spans="1:3" ht="13"><c r="A9" t="s"><v>39</v></c><c r="B9"><v>60</v></c><c r="C9"><v>0</v></c></row><row r="10" spans="1:3" ht="13"><c r="A10" t="s"><v>40</v></c><c r="B10"><v>510</v></c><c r="C10"><v>267</v></c></row></sheetData><pageMargins left="0.75" right="0.75" top="1" bottom="1" header="0.5" footer="0.5"/><drawing r:id="rId1"/><extLst><ext uri="{64002731-A6B0-56B0-2670-7721B7C09600}" xmlns:mx="http://schemas.microsoft.com/office/mac/excel/2008/main"><mx:PLV Mode="0" OnePage="0" WScale="0"/></ext></extLst></worksheet>
\ No newline at end of file diff --git a/unzip_excel/xl/worksheets/sheet4.xml b/unzip_excel/xl/worksheets/sheet4.xml new file mode 100644 index 00000000..e709ada6 --- /dev/null +++ b/unzip_excel/xl/worksheets/sheet4.xml @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<worksheet xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="x14ac" xmlns:x14ac="http://schemas.microsoft.com/office/spreadsheetml/2009/9/ac"><dimension ref="A1:G84"/><sheetViews><sheetView tabSelected="1" workbookViewId="0"/></sheetViews><sheetFormatPr baseColWidth="10" defaultRowHeight="15" x14ac:dyDescent="0"/><cols><col min="1" max="1" width="26.140625" bestFit="1" customWidth="1"/><col min="2" max="2" width="20.7109375" bestFit="1" customWidth="1"/><col min="3" max="3" width="28.42578125" bestFit="1" customWidth="1"/><col min="4" max="4" width="19.5703125" bestFit="1" customWidth="1"/><col min="5" max="5" width="21.85546875" bestFit="1" customWidth="1"/><col min="6" max="6" width="11.85546875" bestFit="1" customWidth="1"/><col min="7" max="7" width="14.140625" bestFit="1" customWidth="1"/></cols><sheetData><row r="1" spans="1:7" ht="13"><c r="A1" t="s"><v>41</v></c><c r="B1" t="s"><v>42</v></c><c r="C1" t="s"><v>43</v></c><c r="D1" t="s"><v>44</v></c><c r="E1" t="s"><v>45</v></c><c r="F1" t="s"><v>46</v></c><c r="G1" t="s"><v>47</v></c></row><row r="2" spans="1:7" ht="13"><c r="A2" t="s"><v>9</v></c><c r="B2" t="s"><v>9</v></c><c r="C2" t="s"><v>9</v></c><c r="D2" t="s"><v>9</v></c><c r="E2" t="s"><v>9</v></c><c r="F2" t="s"><v>9</v></c><c r="G2" t="s"><v>9</v></c></row><row r="3" spans="1:7" ht="13"><c r="A3" t="s"><v>48</v></c><c r="B3" t="s"><v>33</v></c><c r="C3" s="1"><v>40725.335949074077</v></c><c r="D3" t="s"><v>49</v></c><c r="E3" t="s"><v>50</v></c><c r="F3"><v>2</v></c><c r="G3"><v>23</v></c></row><row r="4" spans="1:7" ht="13"><c r="A4" t="s"><v>51</v></c><c r="B4" t="s"><v>52</v></c><c r="C4" s="1"><v>40725.441805555558</v></c><c r="D4" t="s"><v>53</v></c><c r="E4" t="s"><v>54</v></c><c r="F4"><v>1</v></c><c r="G4"><v>1</v></c></row><row r="5" spans="1:7" ht="13"><c r="A5" t="s"><v>55</v></c><c r="B5" t="s"><v>56</v></c><c r="C5" s="1"><v>40732.052442129629</v></c><c r="D5" t="s"><v>57</v></c><c r="E5" t="s"><v>58</v></c><c r="F5"><v>1</v></c><c r="G5"><v>2</v></c></row><row r="6" spans="1:7" ht="13"><c r="A6" t="s"><v>59</v></c><c r="B6" t="s"><v>60</v></c><c r="C6" s="1"><v>40732.340231481481</v></c><c r="D6" t="s"><v>61</v></c><c r="E6" t="s"><v>62</v></c><c r="F6"><v>3</v></c><c r="G6"><v>2</v></c></row><row r="7" spans="1:7" ht="13"><c r="A7" t="s"><v>63</v></c><c r="B7" t="s"><v>64</v></c><c r="C7" s="1"><v>40738.534502314818</v></c><c r="D7" t="s"><v>65</v></c><c r="E7" t="s"><v>66</v></c><c r="F7"><v>1</v></c><c r="G7"><v>1</v></c></row><row r="8" spans="1:7" ht="13"><c r="A8" t="s"><v>67</v></c><c r="B8" t="s"><v>68</v></c><c r="C8" s="1"><v>40751.510555555556</v></c><c r="D8" t="s"><v>69</v></c><c r="E8" t="s"><v>70</v></c><c r="F8"><v>1</v></c><c r="G8"><v>4</v></c></row><row r="9" spans="1:7" ht="13"><c r="A9" t="s"><v>71</v></c><c r="B9" t="s"><v>72</v></c><c r="C9" s="1"><v>40751.625578703701</v></c><c r="D9" t="s"><v>73</v></c><c r="E9" t="s"><v>74</v></c><c r="F9"><v>1</v></c><c r="G9"><v>1</v></c></row><row r="10" spans="1:7" ht="13"><c r="A10" t="s"><v>75</v></c><c r="B10" t="s"><v>76</v></c><c r="C10" s="1"><v>40752.578263888892</v></c><c r="D10" t="s"><v>77</v></c><c r="E10" t="s"><v>78</v></c><c r="F10"><v>1</v></c><c r="G10"><v>1</v></c></row><row r="11" spans="1:7" ht="13"><c r="A11" t="s"><v>79</v></c><c r="B11" t="s"><v>80</v></c><c r="C11" s="1"><v>40760.587361111109</v></c><c r="D11" t="s"><v>81</v></c><c r="E11" t="s"><v>82</v></c><c r="F11"><v>0</v></c><c r="G11"><v>0</v></c></row><row r="12" spans="1:7" ht="13"><c r="A12" t="s"><v>83</v></c><c r="B12" t="s"><v>84</v></c><c r="C12" s="1"><v>40762.680219907408</v></c><c r="D12" t="s"><v>85</v></c><c r="E12" t="s"><v>86</v></c><c r="F12"><v>0</v></c><c r="G12"><v>0</v></c></row><row r="13" spans="1:7" ht="13"><c r="A13" t="s"><v>87</v></c><c r="B13" t="s"><v>88</v></c><c r="C13" s="1"><v>40766.315393518518</v></c><c r="D13" t="s"><v>89</v></c><c r="E13" t="s"><v>90</v></c><c r="F13"><v>1</v></c><c r="G13"><v>0</v></c></row><row r="14" spans="1:7" ht="13"><c r="A14" t="s"><v>91</v></c><c r="B14" t="s"><v>92</v></c><c r="C14" s="1"><v>40778.284618055557</v></c><c r="D14" t="s"><v>93</v></c><c r="E14" t="s"><v>94</v></c><c r="F14"><v>1</v></c><c r="G14"><v>1</v></c></row><row r="15" spans="1:7" ht="13"><c r="A15" t="s"><v>95</v></c><c r="B15" t="s"><v>96</v></c><c r="C15" s="1"><v>40785.31790509259</v></c><c r="D15" t="s"><v>97</v></c><c r="E15" t="s"><v>98</v></c><c r="F15"><v>1</v></c><c r="G15"><v>0</v></c></row><row r="16" spans="1:7" ht="13"><c r="A16" t="s"><v>99</v></c><c r="B16" t="s"><v>100</v></c><c r="C16" s="1"><v>40794.500914351855</v></c><c r="D16" t="s"><v>61</v></c><c r="E16" t="s"><v>101</v></c><c r="F16"><v>1</v></c><c r="G16"><v>0</v></c></row><row r="17" spans="1:7" ht="13"><c r="A17" t="s"><v>102</v></c><c r="B17" t="s"><v>103</v></c><c r="C17" s="1"><v>40802.563703703701</v></c><c r="D17" t="s"><v>104</v></c><c r="E17" t="s"><v>105</v></c><c r="F17"><v>8</v></c><c r="G17"><v>17</v></c></row><row r="18" spans="1:7" ht="13"><c r="A18" t="s"><v>106</v></c><c r="B18" t="s"><v>107</v></c><c r="C18" s="1"><v>40819.423854166664</v></c><c r="D18" t="s"><v>108</v></c><c r="E18" t="s"><v>109</v></c><c r="F18"><v>1</v></c><c r="G18"><v>3</v></c></row><row r="19" spans="1:7" ht="13"><c r="A19" t="s"><v>110</v></c><c r="B19" t="s"><v>111</v></c><c r="C19" s="1"><v>40822.340995370374</v></c><c r="D19" t="s"><v>112</v></c><c r="E19" t="s"><v>113</v></c><c r="F19"><v>1</v></c><c r="G19"><v>0</v></c></row><row r="20" spans="1:7" ht="13"><c r="A20" t="s"><v>114</v></c><c r="B20" t="s"><v>115</v></c><c r="C20" s="1"><v>40827.437337962961</v></c><c r="D20" t="s"><v>116</v></c><c r="E20" t="s"><v>117</v></c><c r="F20"><v>1</v></c><c r="G20"><v>0</v></c></row><row r="21" spans="1:7" ht="13"><c r="A21" t="s"><v>118</v></c><c r="B21" t="s"><v>119</v></c><c r="C21" s="1"><v>40847.361759259256</v></c><c r="D21" t="s"><v>120</v></c><c r="E21" t="s"><v>121</v></c><c r="F21"><v>1</v></c><c r="G21"><v>1</v></c></row><row r="22" spans="1:7" ht="13"><c r="A22" t="s"><v>122</v></c><c r="B22" t="s"><v>123</v></c><c r="C22" s="1"><v>40857.617083333331</v></c><c r="D22" t="s"><v>124</v></c><c r="E22" t="s"><v>125</v></c><c r="F22"><v>1</v></c><c r="G22"><v>0</v></c></row><row r="23" spans="1:7" ht="13"><c r="A23" t="s"><v>126</v></c><c r="B23" t="s"><v>127</v></c><c r="C23" s="1"><v>40872.601412037038</v></c><c r="D23" t="s"><v>128</v></c><c r="E23" t="s"><v>129</v></c><c r="F23"><v>1</v></c><c r="G23"><v>0</v></c></row><row r="24" spans="1:7" ht="13"><c r="A24" t="s"><v>130</v></c><c r="B24" t="s"><v>131</v></c><c r="C24" s="1"><v>40884.070439814815</v></c><c r="D24" t="s"><v>132</v></c><c r="E24" t="s"><v>133</v></c><c r="F24"><v>1</v></c><c r="G24"><v>0</v></c></row><row r="25" spans="1:7" ht="13"><c r="A25" t="s"><v>134</v></c><c r="B25" t="s"><v>135</v></c><c r="C25" s="1"><v>40885.733067129629</v></c><c r="D25" t="s"><v>61</v></c><c r="E25" t="s"><v>136</v></c><c r="F25"><v>2</v></c><c r="G25"><v>1</v></c></row><row r="26" spans="1:7" ht="13"><c r="A26" t="s"><v>137</v></c><c r="B26" t="s"><v>138</v></c><c r="C26" s="1"><v>40910.582557870373</v></c><c r="D26" t="s"><v>139</v></c><c r="E26" t="s"><v>140</v></c><c r="F26"><v>1</v></c><c r="G26"><v>0</v></c></row><row r="27" spans="1:7" ht="13"><c r="A27" t="s"><v>141</v></c><c r="B27" t="s"><v>39</v></c><c r="C27" s="1"><v>40921.563310185185</v></c><c r="D27" t="s"><v>40</v></c><c r="E27" t="s"><v>142</v></c><c r="F27"><v>5</v></c><c r="G27"><v>15</v></c></row><row r="28" spans="1:7" ht="13"><c r="A28" t="s"><v>143</v></c><c r="B28" t="s"><v>144</v></c><c r="C28" s="1"><v>40934.575312499997</v></c><c r="D28" t="s"><v>145</v></c><c r="E28" t="s"><v>146</v></c><c r="F28"><v>1</v></c><c r="G28"><v>0</v></c></row><row r="29" spans="1:7" ht="13"><c r="A29" t="s"><v>147</v></c><c r="B29" t="s"><v>148</v></c><c r="C29" s="1"><v>40939.153993055559</v></c><c r="D29" t="s"><v>148</v></c><c r="E29" t="s"><v>149</v></c><c r="F29"><v>1</v></c><c r="G29"><v>1</v></c></row><row r="30" spans="1:7" ht="13"><c r="A30" t="s"><v>150</v></c><c r="B30" t="s"><v>151</v></c><c r="C30" s="1"><v>40946.122928240744</v></c><c r="D30" t="s"><v>152</v></c><c r="E30" t="s"><v>153</v></c><c r="F30"><v>1</v></c><c r="G30"><v>0</v></c></row><row r="31" spans="1:7" ht="13"><c r="A31" t="s"><v>154</v></c><c r="B31" t="s"><v>155</v></c><c r="C31" s="1"><v>40946.473402777781</v></c><c r="D31" t="s"><v>156</v></c><c r="E31" t="s"><v>157</v></c><c r="F31"><v>2</v></c><c r="G31"><v>7</v></c></row><row r="32" spans="1:7" ht="13"><c r="A32" t="s"><v>158</v></c><c r="B32" t="s"><v>159</v></c><c r="C32" s="1"><v>40946.477048611108</v></c><c r="D32" t="s"><v>160</v></c><c r="E32" t="s"><v>161</v></c><c r="F32"><v>1</v></c><c r="G32"><v>5</v></c></row><row r="33" spans="1:7" ht="13"><c r="A33" t="s"><v>162</v></c><c r="B33" t="s"><v>163</v></c><c r="C33" s="1"><v>40947.46533564815</v></c><c r="D33" t="s"><v>164</v></c><c r="E33" t="s"><v>165</v></c><c r="F33"><v>3</v></c><c r="G33"><v>6</v></c></row><row r="34" spans="1:7" ht="13"><c r="A34" t="s"><v>166</v></c><c r="B34" t="s"><v>167</v></c><c r="C34" s="1"><v>40953.035113460646</v></c><c r="D34" t="s"><v>168</v></c><c r="E34" t="s"><v>169</v></c><c r="F34"><v>12</v></c><c r="G34"><v>7</v></c></row><row r="35" spans="1:7" ht="13"><c r="A35" t="s"><v>170</v></c><c r="B35" t="s"><v>171</v></c><c r="C35" s="1"><v>40962.170852118055</v></c><c r="D35" t="s"><v>171</v></c><c r="E35" t="s"><v>172</v></c><c r="F35"><v>1</v></c><c r="G35"><v>0</v></c></row><row r="36" spans="1:7" ht="13"><c r="A36" t="s"><v>173</v></c><c r="B36" t="s"><v>174</v></c><c r="C36" s="1"><v>40962.236748113421</v></c><c r="D36" t="s"><v>175</v></c><c r="E36" t="s"><v>176</v></c><c r="F36"><v>1</v></c><c r="G36"><v>0</v></c></row><row r="37" spans="1:7" ht="13"><c r="A37" t="s"><v>177</v></c><c r="B37" t="s"><v>178</v></c><c r="C37" s="1"><v>40966.479441099538</v></c><c r="D37" t="s"><v>179</v></c><c r="E37" t="s"><v>180</v></c><c r="F37"><v>1</v></c><c r="G37"><v>0</v></c></row><row r="38" spans="1:7" ht="13"><c r="A38" t="s"><v>181</v></c><c r="B38" t="s"><v>182</v></c><c r="C38" s="1"><v>40974.585645289357</v></c><c r="D38" t="s"><v>183</v></c><c r="E38" t="s"><v>184</v></c><c r="F38"><v>1</v></c><c r="G38"><v>0</v></c></row><row r="39" spans="1:7" ht="13"><c r="A39" t="s"><v>185</v></c><c r="B39" t="s"><v>186</v></c><c r="C39" s="1"><v>40974.727970266205</v></c><c r="D39" t="s"><v>187</v></c><c r="E39" t="s"><v>188</v></c><c r="F39"><v>1</v></c><c r="G39"><v>1</v></c></row><row r="40" spans="1:7" ht="13"><c r="A40" t="s"><v>189</v></c><c r="B40" t="s"><v>190</v></c><c r="C40" s="1"><v>40975.618583796298</v></c><c r="D40" t="s"><v>40</v></c><c r="E40" t="s"><v>191</v></c><c r="F40"><v>0</v></c><c r="G40"><v>0</v></c></row><row r="41" spans="1:7" ht="13"><c r="A41" t="s"><v>192</v></c><c r="B41" t="s"><v>193</v></c><c r="C41" s="1"><v>40800.257893518516</v></c><c r="D41" t="s"><v>194</v></c><c r="E41" t="s"><v>195</v></c><c r="F41"><v>1</v></c><c r="G41"><v>0</v></c></row><row r="42" spans="1:7" ht="13"><c r="A42" t="s"><v>196</v></c><c r="B42" t="s"><v>197</v></c><c r="C42" s="1"><v>40976.30031958333</v></c><c r="D42" t="s"><v>198</v></c><c r="E42" t="s"><v>199</v></c><c r="F42"><v>0</v></c><c r="G42"><v>0</v></c></row><row r="43" spans="1:7" ht="13"><c r="A43" t="s"><v>200</v></c><c r="B43" t="s"><v>35</v></c><c r="C43" s="1"><v>40725.445069444446</v></c><c r="D43" t="s"><v>40</v></c><c r="E43" t="s"><v>191</v></c><c r="F43"><v>13</v></c><c r="G43"><v>97</v></c></row><row r="44" spans="1:7" ht="13"><c r="A44" t="s"><v>201</v></c><c r="B44" t="s"><v>202</v></c><c r="C44" s="1"><v>40979.660595844907</v></c><c r="D44" t="s"><v>203</v></c><c r="E44" t="s"><v>204</v></c><c r="F44"><v>1</v></c><c r="G44"><v>0</v></c></row><row r="45" spans="1:7" ht="13"><c r="A45" t="s"><v>205</v></c><c r="B45" t="s"><v>206</v></c><c r="C45" s="1"><v>40809.331909722219</v></c><c r="D45" t="s"><v>207</v></c><c r="E45" t="s"><v>208</v></c><c r="F45"><v>3</v></c><c r="G45"><v>5</v></c></row><row r="46" spans="1:7" ht="13"><c r="A46" t="s"><v>209</v></c><c r="B46" t="s"><v>210</v></c><c r="C46" s="1"><v>40990.509409293983</v></c><c r="D46" t="s"><v>211</v></c><c r="E46" t="s"><v>212</v></c><c r="F46"><v>1</v></c><c r="G46"><v>1</v></c></row><row r="47" spans="1:7" ht="13"><c r="A47" t="s"><v>213</v></c><c r="B47" t="s"><v>214</v></c><c r="C47" s="1"><v>40995.543503981484</v></c><c r="D47" t="s"><v>215</v></c><c r="E47" t="s"><v>216</v></c><c r="F47"><v>1</v></c><c r="G47"><v>2</v></c></row><row r="48" spans="1:7" ht="13"><c r="A48" t="s"><v>217</v></c><c r="B48" t="s"><v>40</v></c><c r="C48" s="1"><v>40996.255987916666</v></c><c r="D48" t="s"><v>40</v></c><c r="E48" t="s"><v>191</v></c><c r="F48"><v>14</v></c><c r="G48"><v>129</v></c></row><row r="49" spans="1:7" ht="13"><c r="A49" t="s"><v>218</v></c><c r="B49" t="s"><v>219</v></c><c r="C49" s="1"><v>40820.475810185184</v></c><c r="D49" t="s"><v>220</v></c><c r="E49" t="s"><v>221</v></c><c r="F49"><v>1</v></c><c r="G49"><v>0</v></c></row><row r="50" spans="1:7" ht="13"><c r="A50" t="s"><v>222</v></c><c r="B50" t="s"><v>223</v></c><c r="C50" s="1"><v>41002.265952685186</v></c><c r="D50" t="s"><v>224</v></c><c r="E50" t="s"><v>225</v></c><c r="F50"><v>1</v></c><c r="G50"><v>0</v></c></row><row r="51" spans="1:7" ht="13"><c r="A51" t="s"><v>226</v></c><c r="B51" t="s"><v>227</v></c><c r="C51" s="1"><v>41010.49536004629</v></c><c r="D51" t="s"><v>228</v></c><c r="E51" t="s"><v>229</v></c><c r="F51"><v>1</v></c><c r="G51"><v>0</v></c></row><row r="52" spans="1:7" ht="13"><c r="A52" t="s"><v>230</v></c><c r="B52" t="s"><v>231</v></c><c r="C52" s="1"><v>41016.392075173615</v></c><c r="D52" t="s"><v>232</v></c><c r="E52" t="s"><v>233</v></c><c r="F52"><v>1</v></c><c r="G52"><v>0</v></c></row><row r="53" spans="1:7" ht="13"><c r="A53" t="s"><v>234</v></c><c r="B53" t="s"><v>235</v></c><c r="C53" s="1"><v>41024.507625416663</v></c><c r="D53" t="s"><v>235</v></c><c r="E53" t="s"><v>236</v></c><c r="F53"><v>1</v></c><c r="G53"><v>2</v></c></row><row r="54" spans="1:7" ht="13"><c r="A54" t="s"><v>237</v></c><c r="B54" t="s"><v>238</v></c><c r="C54" s="1"><v>40996.626798518519</v></c><c r="D54" t="s"><v>239</v></c><c r="E54" t="s"><v>240</v></c><c r="F54"><v>1</v></c><c r="G54"><v>5</v></c></row><row r="55" spans="1:7" ht="13"><c r="A55" t="s"><v>241</v></c><c r="B55" t="s"><v>242</v></c><c r="C55" s="1"><v>41028.84639903935</v></c><c r="D55" t="s"><v>243</v></c><c r="E55" t="s"><v>244</v></c><c r="F55"><v>0</v></c><c r="G55"><v>0</v></c></row><row r="56" spans="1:7" ht="13"><c r="A56" t="s"><v>245</v></c><c r="B56" t="s"><v>246</v></c><c r="C56" s="1"><v>41036.63720824074</v></c><c r="D56" t="s"><v>247</v></c><c r="E56" t="s"><v>248</v></c><c r="F56"><v>0</v></c><c r="G56"><v>0</v></c></row><row r="57" spans="1:7" ht="13"><c r="A57" t="s"><v>249</v></c><c r="B57" t="s"><v>250</v></c><c r="C57" s="1"><v>41038.871958796291</v></c><c r="D57" t="s"><v>251</v></c><c r="E57" t="s"><v>252</v></c><c r="F57"><v>1</v></c><c r="G57"><v>1</v></c></row><row r="58" spans="1:7" ht="13"><c r="A58" t="s"><v>253</v></c><c r="B58" t="s"><v>36</v></c><c r="C58" s="1"><v>40891.625081018516</v></c><c r="D58" t="s"><v>36</v></c><c r="E58" t="s"><v>254</v></c><c r="F58"><v>4</v></c><c r="G58"><v>23</v></c></row><row r="59" spans="1:7" ht="13"><c r="A59" t="s"><v>255</v></c><c r="B59" t="s"><v>256</v></c><c r="C59" s="1"><v>41045.485849398152</v></c><c r="D59" t="s"><v>257</v></c><c r="E59" t="s"><v>258</v></c><c r="F59"><v>1</v></c><c r="G59"><v>1</v></c></row><row r="60" spans="1:7" ht="13"><c r="A60" t="s"><v>259</v></c><c r="B60" t="s"><v>260</v></c><c r="C60" s="1"><v>41052.402462731479</v></c><c r="D60" t="s"><v>261</v></c><c r="E60" t="s"><v>262</v></c><c r="F60"><v>1</v></c><c r="G60"><v>0</v></c></row><row r="61" spans="1:7" ht="13"><c r="A61" t="s"><v>263</v></c><c r="B61" t="s"><v>264</v></c><c r="C61" s="1"><v>41058.444093842598</v></c><c r="D61" t="s"><v>265</v></c><c r="E61" t="s"><v>266</v></c><c r="F61"><v>1</v></c><c r="G61"><v>0</v></c></row><row r="62" spans="1:7" ht="13"><c r="A62" t="s"><v>267</v></c><c r="B62" t="s"><v>37</v></c><c r="C62" s="1"><v>41059.310435405096</v></c><c r="D62" t="s"><v>268</v></c><c r="E62" t="s"><v>269</v></c><c r="F62"><v>6</v></c><c r="G62"><v>14</v></c></row><row r="63" spans="1:7" ht="13"><c r="A63" t="s"><v>270</v></c><c r="B63" t="s"><v>271</v></c><c r="C63" s="1"><v>41059.395077962967</v></c><c r="D63" t="s"><v>272</v></c><c r="E63" t="s"><v>273</v></c><c r="F63"><v>1</v></c><c r="G63"><v>1</v></c></row><row r="64" spans="1:7" ht="13"><c r="A64" t="s"><v>274</v></c><c r="B64" t="s"><v>275</v></c><c r="C64" s="1"><v>41060.381657175931</v></c><c r="D64" t="s"><v>276</v></c><c r="E64" t="s"><v>277</v></c><c r="F64"><v>1</v></c><c r="G64"><v>0</v></c></row><row r="65" spans="1:7" ht="13"><c r="A65" t="s"><v>278</v></c><c r="B65" t="s"><v>279</v></c><c r="C65" s="1"><v>40802.344224537039</v></c><c r="D65" t="s"><v>280</v></c><c r="E65" t="s"><v>281</v></c><c r="F65"><v>7</v></c><c r="G65"><v>45</v></c></row><row r="66" spans="1:7" ht="13"><c r="A66" t="s"><v>282</v></c><c r="B66" t="s"><v>283</v></c><c r="C66" s="1"><v>40827.555</v></c><c r="D66" t="s"><v>40</v></c><c r="E66" t="s"><v>284</v></c><c r="F66"><v>7</v></c><c r="G66"><v>29</v></c></row><row r="67" spans="1:7" ht="13"><c r="A67" t="s"><v>285</v></c><c r="B67" t="s"><v>286</v></c><c r="C67" s="1"><v>41065.422272893513</v></c><c r="D67" t="s"><v>287</v></c><c r="E67" t="s"><v>288</v></c><c r="F67"><v>1</v></c><c r="G67"><v>0</v></c></row><row r="68" spans="1:7" ht="13"><c r="A68" t="s"><v>289</v></c><c r="B68" t="s"><v>290</v></c><c r="C68" s="1"><v>41065.537783159722</v></c><c r="D68" t="s"><v>291</v></c><c r="E68" t="s"><v>292</v></c><c r="F68"><v>1</v></c><c r="G68"><v>0</v></c></row><row r="69" spans="1:7" ht="13"><c r="A69" t="s"><v>293</v></c><c r="B69" t="s"><v>294</v></c><c r="C69" s="1"><v>41065.537897604161</v></c><c r="D69" t="s"><v>291</v></c><c r="E69" t="s"><v>292</v></c><c r="F69"><v>0</v></c><c r="G69"><v>0</v></c></row><row r="70" spans="1:7" ht="13"><c r="A70" t="s"><v>295</v></c><c r="B70" t="s"><v>296</v></c><c r="C70" s="1"><v>41065.560037337964</v></c><c r="D70" t="s"><v>297</v></c><c r="E70" t="s"><v>298</v></c><c r="F70"><v>1</v></c><c r="G70"><v>0</v></c></row><row r="71" spans="1:7" ht="13"><c r="A71" t="s"><v>299</v></c><c r="B71" t="s"><v>300</v></c><c r="C71" s="1"><v>41065.7007925</v></c><c r="D71" t="s"><v>301</v></c><c r="E71" t="s"><v>302</v></c><c r="F71"><v>1</v></c><c r="G71"><v>1</v></c></row><row r="72" spans="1:7" ht="13"><c r="A72" t="s"><v>303</v></c><c r="B72" t="s"><v>304</v></c><c r="C72" s="1"><v>41066.470389027774</v></c><c r="D72" t="s"><v>305</v></c><c r="E72" t="s"><v>306</v></c><c r="F72"><v>1</v></c><c r="G72"><v>3</v></c></row><row r="73" spans="1:7" ht="13"><c r="A73" t="s"><v>307</v></c><c r="B73" t="s"><v>308</v></c><c r="C73" s="1"><v>41066.486030671302</v></c><c r="D73" t="s"><v>305</v></c><c r="E73" t="s"><v>309</v></c><c r="F73"><v>1</v></c><c r="G73"><v>0</v></c></row><row r="74" spans="1:7" ht="13"><c r="A74" t="s"><v>310</v></c><c r="B74" t="s"><v>311</v></c><c r="C74" s="1"><v>41067.484513888892</v></c><c r="D74" t="s"><v>312</v></c><c r="E74" t="s"><v>312</v></c><c r="F74"><v>1</v></c><c r="G74"><v>0</v></c></row><row r="75" spans="1:7" ht="13"><c r="A75" t="s"><v>313</v></c><c r="B75" t="s"><v>314</v></c><c r="C75" s="1"><v>41070.632569444446</v></c><c r="D75" t="s"><v>315</v></c><c r="E75" t="s"><v>316</v></c><c r="F75"><v>0</v></c><c r="G75"><v>0</v></c></row><row r="76" spans="1:7" ht="13"><c r="A76" t="s"><v>317</v></c><c r="B76" t="s"><v>318</v></c><c r="C76" s="1"><v>41070.89880787037</v></c><c r="D76" t="s"><v>319</v></c><c r="E76" t="s"><v>320</v></c><c r="F76"><v>1</v></c><c r="G76"><v>0</v></c></row><row r="77" spans="1:7" ht="13"><c r="A77" t="s"><v>321</v></c><c r="B77" t="s"><v>322</v></c><c r="C77" s="1"><v>41072.482187499998</v></c><c r="D77" t="s"><v>323</v></c><c r="E77" t="s"><v>324</v></c><c r="F77"><v>1</v></c><c r="G77"><v>2</v></c></row><row r="78" spans="1:7" ht="13"><c r="A78" t="s"><v>325</v></c><c r="B78" t="s"><v>326</v></c><c r="C78" s="1"><v>41072.55872685185</v></c><c r="D78" t="s"><v>327</v></c><c r="E78" t="s"><v>328</v></c><c r="F78"><v>1</v></c><c r="G78"><v>3</v></c></row><row r="79" spans="1:7" ht="13"><c r="A79" t="s"><v>329</v></c><c r="B79" t="s"><v>34</v></c><c r="C79" s="1"><v>41073.290266203701</v></c><c r="D79" t="s"><v>330</v></c><c r="E79" t="s"><v>331</v></c><c r="F79"><v>1</v></c><c r="G79"><v>3</v></c></row><row r="80" spans="1:7" ht="13"><c r="A80" t="s"><v>332</v></c><c r="B80" t="s"><v>333</v></c><c r="C80" s="1"><v>41074.540694444448</v></c><c r="D80" t="s"><v>334</v></c><c r="E80" t="s"><v>335</v></c><c r="F80"><v>1</v></c><c r="G80"><v>13</v></c></row><row r="81" spans="1:7" ht="13"><c r="A81" t="s"><v>336</v></c><c r="B81" t="s"><v>337</v></c><c r="C81" s="1"><v>41074.618217592593</v></c><c r="D81" t="s"><v>337</v></c><c r="E81" t="s"><v>338</v></c><c r="F81"><v>0</v></c><c r="G81"><v>0</v></c></row><row r="82" spans="1:7" ht="13"><c r="A82" t="s"><v>339</v></c><c r="B82" t="s"><v>340</v></c><c r="C82" s="1"><v>41080.564849537041</v></c><c r="D82" t="s"><v>341</v></c><c r="E82" t="s"><v>342</v></c><c r="F82"><v>1</v></c><c r="G82"><v>0</v></c></row><row r="83" spans="1:7" ht="13"><c r="A83" t="s"><v>343</v></c><c r="B83" t="s"><v>344</v></c><c r="C83" s="1"><v>41081.494884259257</v></c><c r="D83" t="s"><v>345</v></c><c r="E83" t="s"><v>346</v></c><c r="F83"><v>1</v></c><c r="G83"><v>0</v></c></row><row r="84" spans="1:7" ht="13"><c r="A84" t="s"><v>347</v></c><c r="B84" t="s"><v>38</v></c><c r="C84" s="1"><v>41087.288888888892</v></c><c r="D84" t="s"><v>348</v></c><c r="E84" t="s"><v>349</v></c><c r="F84"><v>1</v></c><c r="G84"><v>2</v></c></row></sheetData><pageMargins left="0.75" right="0.75" top="1" bottom="1" header="0.5" footer="0.5"/><extLst><ext uri="{64002731-A6B0-56B0-2670-7721B7C09600}" xmlns:mx="http://schemas.microsoft.com/office/mac/excel/2008/main"><mx:PLV Mode="0" OnePage="0" WScale="0"/></ext></extLst></worksheet>
\ No newline at end of file |
