gitextract_50oqu3c_/ ├── .gitattributes ├── .gitignore ├── .travis.yml ├── Build/ │ ├── PharStub.php │ ├── build-release-documentation.bat │ ├── build-release-pear.bat │ ├── build-release-phar.bat │ ├── build-release-standard.bat │ └── build.xml ├── Classes/ │ ├── PHPExcel/ │ │ ├── Autoloader.php │ │ ├── CachedObjectStorage/ │ │ │ ├── APC.php │ │ │ ├── CacheBase.php │ │ │ ├── DiscISAM.php │ │ │ ├── ICache.php │ │ │ ├── Igbinary.php │ │ │ ├── Memcache.php │ │ │ ├── Memory.php │ │ │ ├── MemoryGZip.php │ │ │ ├── MemorySerialized.php │ │ │ ├── PHPTemp.php │ │ │ ├── SQLite.php │ │ │ ├── SQLite3.php │ │ │ └── Wincache.php │ │ ├── CachedObjectStorageFactory.php │ │ ├── CalcEngine/ │ │ │ ├── CyclicReferenceStack.php │ │ │ └── Logger.php │ │ ├── Calculation/ │ │ │ ├── Database.php │ │ │ ├── DateTime.php │ │ │ ├── Engineering.php │ │ │ ├── Exception.php │ │ │ ├── ExceptionHandler.php │ │ │ ├── Financial.php │ │ │ ├── FormulaParser.php │ │ │ ├── FormulaToken.php │ │ │ ├── Function.php │ │ │ ├── Functions.php │ │ │ ├── Logical.php │ │ │ ├── LookupRef.php │ │ │ ├── MathTrig.php │ │ │ ├── Statistical.php │ │ │ ├── TextData.php │ │ │ ├── Token/ │ │ │ │ └── Stack.php │ │ │ └── functionlist.txt │ │ ├── Calculation.php │ │ ├── Cell/ │ │ │ ├── AdvancedValueBinder.php │ │ │ ├── DataType.php │ │ │ ├── DataValidation.php │ │ │ ├── DefaultValueBinder.php │ │ │ ├── Hyperlink.php │ │ │ └── IValueBinder.php │ │ ├── Cell.php │ │ ├── Chart/ │ │ │ ├── Axis.php │ │ │ ├── DataSeries.php │ │ │ ├── DataSeriesValues.php │ │ │ ├── Exception.php │ │ │ ├── GridLines.php │ │ │ ├── Layout.php │ │ │ ├── Legend.php │ │ │ ├── PlotArea.php │ │ │ ├── Properties.php │ │ │ ├── Renderer/ │ │ │ │ ├── PHP Charting Libraries.txt │ │ │ │ └── jpgraph.php │ │ │ └── Title.php │ │ ├── Chart.php │ │ ├── Comment.php │ │ ├── DocumentProperties.php │ │ ├── DocumentSecurity.php │ │ ├── Exception.php │ │ ├── HashTable.php │ │ ├── Helper/ │ │ │ └── HTML.php │ │ ├── IComparable.php │ │ ├── IOFactory.php │ │ ├── NamedRange.php │ │ ├── Reader/ │ │ │ ├── Abstract.php │ │ │ ├── CSV.php │ │ │ ├── DefaultReadFilter.php │ │ │ ├── Excel2003XML.php │ │ │ ├── Excel2007/ │ │ │ │ ├── Chart.php │ │ │ │ └── Theme.php │ │ │ ├── Excel2007.php │ │ │ ├── Excel5/ │ │ │ │ ├── Color/ │ │ │ │ │ ├── BIFF5.php │ │ │ │ │ ├── BIFF8.php │ │ │ │ │ └── BuiltIn.php │ │ │ │ ├── Color.php │ │ │ │ ├── ErrorCode.php │ │ │ │ ├── Escher.php │ │ │ │ ├── MD5.php │ │ │ │ ├── RC4.php │ │ │ │ └── Style/ │ │ │ │ ├── Border.php │ │ │ │ └── FillPattern.php │ │ │ ├── Excel5.php │ │ │ ├── Exception.php │ │ │ ├── Gnumeric.php │ │ │ ├── HTML.php │ │ │ ├── IReadFilter.php │ │ │ ├── IReader.php │ │ │ ├── OOCalc.php │ │ │ └── SYLK.php │ │ ├── ReferenceHelper.php │ │ ├── RichText/ │ │ │ ├── ITextElement.php │ │ │ ├── Run.php │ │ │ └── TextElement.php │ │ ├── RichText.php │ │ ├── Settings.php │ │ ├── Shared/ │ │ │ ├── CodePage.php │ │ │ ├── Date.php │ │ │ ├── Drawing.php │ │ │ ├── Escher/ │ │ │ │ ├── DgContainer/ │ │ │ │ │ ├── SpgrContainer/ │ │ │ │ │ │ └── SpContainer.php │ │ │ │ │ └── SpgrContainer.php │ │ │ │ ├── DgContainer.php │ │ │ │ ├── DggContainer/ │ │ │ │ │ ├── BstoreContainer/ │ │ │ │ │ │ ├── BSE/ │ │ │ │ │ │ │ └── Blip.php │ │ │ │ │ │ └── BSE.php │ │ │ │ │ └── BstoreContainer.php │ │ │ │ └── DggContainer.php │ │ │ ├── Escher.php │ │ │ ├── Excel5.php │ │ │ ├── File.php │ │ │ ├── Font.php │ │ │ ├── JAMA/ │ │ │ │ ├── CHANGELOG.TXT │ │ │ │ ├── CholeskyDecomposition.php │ │ │ │ ├── EigenvalueDecomposition.php │ │ │ │ ├── LUDecomposition.php │ │ │ │ ├── Matrix.php │ │ │ │ ├── QRDecomposition.php │ │ │ │ ├── SingularValueDecomposition.php │ │ │ │ └── utils/ │ │ │ │ ├── Error.php │ │ │ │ └── Maths.php │ │ │ ├── OLE/ │ │ │ │ ├── ChainedBlockStream.php │ │ │ │ ├── PPS/ │ │ │ │ │ ├── File.php │ │ │ │ │ └── Root.php │ │ │ │ └── PPS.php │ │ │ ├── OLE.php │ │ │ ├── OLERead.php │ │ │ ├── PCLZip/ │ │ │ │ ├── gnu-lgpl.txt │ │ │ │ ├── pclzip.lib.php │ │ │ │ └── readme.txt │ │ │ ├── PasswordHasher.php │ │ │ ├── String.php │ │ │ ├── TimeZone.php │ │ │ ├── XMLWriter.php │ │ │ ├── ZipArchive.php │ │ │ ├── ZipStreamWrapper.php │ │ │ └── trend/ │ │ │ ├── bestFitClass.php │ │ │ ├── exponentialBestFitClass.php │ │ │ ├── linearBestFitClass.php │ │ │ ├── logarithmicBestFitClass.php │ │ │ ├── polynomialBestFitClass.php │ │ │ ├── powerBestFitClass.php │ │ │ └── trendClass.php │ │ ├── Style/ │ │ │ ├── Alignment.php │ │ │ ├── Border.php │ │ │ ├── Borders.php │ │ │ ├── Color.php │ │ │ ├── Conditional.php │ │ │ ├── Fill.php │ │ │ ├── Font.php │ │ │ ├── NumberFormat.php │ │ │ ├── Protection.php │ │ │ └── Supervisor.php │ │ ├── Style.php │ │ ├── Worksheet/ │ │ │ ├── AutoFilter/ │ │ │ │ ├── Column/ │ │ │ │ │ └── Rule.php │ │ │ │ └── Column.php │ │ │ ├── AutoFilter.php │ │ │ ├── BaseDrawing.php │ │ │ ├── CellIterator.php │ │ │ ├── Column.php │ │ │ ├── ColumnCellIterator.php │ │ │ ├── ColumnDimension.php │ │ │ ├── ColumnIterator.php │ │ │ ├── Dimension.php │ │ │ ├── Drawing/ │ │ │ │ └── Shadow.php │ │ │ ├── Drawing.php │ │ │ ├── HeaderFooter.php │ │ │ ├── HeaderFooterDrawing.php │ │ │ ├── MemoryDrawing.php │ │ │ ├── PageMargins.php │ │ │ ├── PageSetup.php │ │ │ ├── Protection.php │ │ │ ├── Row.php │ │ │ ├── RowCellIterator.php │ │ │ ├── RowDimension.php │ │ │ ├── RowIterator.php │ │ │ └── SheetView.php │ │ ├── Worksheet.php │ │ ├── WorksheetIterator.php │ │ ├── Writer/ │ │ │ ├── Abstract.php │ │ │ ├── CSV.php │ │ │ ├── Excel2007/ │ │ │ │ ├── Chart.php │ │ │ │ ├── Comments.php │ │ │ │ ├── ContentTypes.php │ │ │ │ ├── DocProps.php │ │ │ │ ├── Drawing.php │ │ │ │ ├── Rels.php │ │ │ │ ├── RelsRibbon.php │ │ │ │ ├── RelsVBA.php │ │ │ │ ├── StringTable.php │ │ │ │ ├── Style.php │ │ │ │ ├── Theme.php │ │ │ │ ├── Workbook.php │ │ │ │ ├── Worksheet.php │ │ │ │ └── WriterPart.php │ │ │ ├── Excel2007.php │ │ │ ├── Excel5/ │ │ │ │ ├── BIFFwriter.php │ │ │ │ ├── Escher.php │ │ │ │ ├── Font.php │ │ │ │ ├── Parser.php │ │ │ │ ├── Workbook.php │ │ │ │ ├── Worksheet.php │ │ │ │ └── Xf.php │ │ │ ├── Excel5.php │ │ │ ├── Exception.php │ │ │ ├── HTML.php │ │ │ ├── IWriter.php │ │ │ ├── OpenDocument/ │ │ │ │ ├── Cell/ │ │ │ │ │ └── Comment.php │ │ │ │ ├── Content.php │ │ │ │ ├── Meta.php │ │ │ │ ├── MetaInf.php │ │ │ │ ├── Mimetype.php │ │ │ │ ├── Settings.php │ │ │ │ ├── Styles.php │ │ │ │ ├── Thumbnails.php │ │ │ │ └── WriterPart.php │ │ │ ├── OpenDocument.php │ │ │ ├── PDF/ │ │ │ │ ├── Core.php │ │ │ │ ├── DomPDF.php │ │ │ │ ├── mPDF.php │ │ │ │ └── tcPDF.php │ │ │ └── PDF.php │ │ └── locale/ │ │ ├── bg/ │ │ │ └── config │ │ ├── cs/ │ │ │ ├── config │ │ │ └── functions │ │ ├── da/ │ │ │ ├── config │ │ │ └── functions │ │ ├── de/ │ │ │ ├── config │ │ │ └── functions │ │ ├── en/ │ │ │ └── uk/ │ │ │ └── config │ │ ├── es/ │ │ │ ├── config │ │ │ └── functions │ │ ├── fi/ │ │ │ ├── config │ │ │ └── functions │ │ ├── fr/ │ │ │ ├── config │ │ │ └── functions │ │ ├── hu/ │ │ │ ├── config │ │ │ └── functions │ │ ├── it/ │ │ │ ├── config │ │ │ └── functions │ │ ├── nl/ │ │ │ ├── config │ │ │ └── functions │ │ ├── no/ │ │ │ ├── config │ │ │ └── functions │ │ ├── pl/ │ │ │ ├── config │ │ │ └── functions │ │ ├── pt/ │ │ │ ├── br/ │ │ │ │ ├── config │ │ │ │ └── functions │ │ │ ├── config │ │ │ └── functions │ │ ├── ru/ │ │ │ ├── config │ │ │ └── functions │ │ ├── sv/ │ │ │ ├── config │ │ │ └── functions │ │ └── tr/ │ │ ├── config │ │ └── functions │ └── PHPExcel.php ├── Documentation/ │ ├── Examples/ │ │ ├── Calculations/ │ │ │ ├── Database/ │ │ │ │ ├── DAVERAGE.php │ │ │ │ ├── DCOUNT.php │ │ │ │ ├── DGET.php │ │ │ │ ├── DMAX.php │ │ │ │ ├── DMIN.php │ │ │ │ ├── DPRODUCT.php │ │ │ │ ├── DSTDEV.php │ │ │ │ ├── DSTDEVP.php │ │ │ │ ├── DVAR.php │ │ │ │ └── DVARP.php │ │ │ ├── DateTime/ │ │ │ │ ├── DATE.php │ │ │ │ ├── DATEVALUE.php │ │ │ │ ├── TIME.php │ │ │ │ └── TIMEVALUE.php │ │ │ └── index.php │ │ ├── Reader/ │ │ │ ├── exampleReader01.php │ │ │ ├── exampleReader02.php │ │ │ ├── exampleReader03.php │ │ │ ├── exampleReader04.php │ │ │ ├── exampleReader05.php │ │ │ ├── exampleReader06.php │ │ │ ├── exampleReader07.php │ │ │ ├── exampleReader08.php │ │ │ ├── exampleReader09.php │ │ │ ├── exampleReader10.php │ │ │ ├── exampleReader11.php │ │ │ ├── exampleReader12.php │ │ │ ├── exampleReader13.php │ │ │ ├── exampleReader14.php │ │ │ ├── exampleReader15.php │ │ │ ├── exampleReader16.php │ │ │ ├── exampleReader17.php │ │ │ ├── exampleReader18.php │ │ │ ├── exampleReader19.php │ │ │ └── sampleData/ │ │ │ ├── example1.csv │ │ │ ├── example1.tsv │ │ │ ├── example1.xls │ │ │ ├── example2.csv │ │ │ └── example2.xls │ │ ├── Reading WorkBook Data/ │ │ │ ├── exampleWorkBookReader01.php │ │ │ ├── exampleWorkBookReader02.php │ │ │ ├── exampleWorkBookReader03.php │ │ │ ├── exampleWorkBookReader04.php │ │ │ └── sampleData/ │ │ │ ├── example1.xls │ │ │ ├── example1.xlsx │ │ │ └── example2.xls │ │ └── index.php │ ├── FunctionListByCategory.txt │ ├── FunctionListByName.txt │ ├── Functionality Cross-Reference.xls │ ├── PHPExcel AutoFilter Reference developer documentation.doc │ ├── PHPExcel Function Reference developer documentation.doc │ ├── PHPExcel User Documentation - Reading Spreadsheet Files.doc │ ├── PHPExcel developer documentation.doc │ ├── assets/ │ │ └── ClassDiagrams/ │ │ ├── Architecture.cd │ │ ├── ClassDiagrams.csproj │ │ ├── ClassDiagrams.csproj.user │ │ ├── ClassDiagrams.sln │ │ ├── Classes/ │ │ │ ├── IReader.cs │ │ │ ├── IWriter.cs │ │ │ ├── PHPExcel.cs │ │ │ ├── PHPExcel_IOFactory.cs │ │ │ ├── PHPExcel_Reader_Excel2007.cs │ │ │ ├── PHPExcel_Reader_Excel5.cs │ │ │ ├── PHPExcel_Reader_Serialized.cs │ │ │ ├── PHPExcel_Writer_Excel2007.cs │ │ │ ├── PHPExcel_Writer_Serialized.cs │ │ │ └── Worksheet.cs │ │ └── ReaderWriter.cd │ └── markdown/ │ ├── CalculationEngine/ │ │ └── FunctionReference/ │ │ ├── 01-Introduction.md │ │ ├── 02-01-Date-and-Time-Handling.md │ │ ├── 02-General-Introduction.md │ │ ├── 03-01-Cube-Functions.md │ │ ├── 03-02-Database-Functions.md │ │ └── 03-03-Date-and-Time-Functions.md │ ├── Features/ │ │ └── Autofilters/ │ │ ├── 01-Autofilters.md │ │ ├── 02-Setting-an-Autofilter.md │ │ ├── 03-Autofilter-Expressions.md │ │ ├── 04-01-Autofilter-Expressions-Simple.md │ │ ├── 04-02-Autofilter-Expressions-Dategroup.md │ │ ├── 04-03-Autofilter-Expressions-Custom.md │ │ ├── 04-04-Autofilter-Expressions-Dynamic.md │ │ ├── 04-05-Autofilter-Expressions-Topten.md │ │ ├── 05-Executing-Autofilters.md │ │ └── 06-Autofilter-Sorting.md │ ├── Functions/ │ │ ├── FunctionListByCategory.md │ │ └── FunctionListByName.md │ ├── Overview/ │ │ ├── 01-Getting-Started.md │ │ ├── 02-Architecture.md │ │ ├── 03-Creating-a-Spreadsheet.md │ │ ├── 04-Configuration-Settings.md │ │ ├── 05-Deleting-a-Workbook.md │ │ ├── 06-Worksheets.md │ │ ├── 07-Accessing-Cells.md │ │ ├── 08-Recipes.md │ │ ├── 09-Calculation-Engine.md │ │ ├── 10-Reading-and-Writing.md │ │ └── 11-Appendices.md │ └── ReadingSpreadsheetFiles/ │ ├── 01-File-Formats.md │ ├── 02-Security.md │ ├── 03-Loading-a-Spreadsheet.md │ ├── 04-Loading-with-a-Reader.md │ ├── 05-Reader-Options.md │ ├── 06-Error-Handling.md │ └── 07-Helper-Methods.md ├── Examples/ │ ├── .gitignore │ ├── 01pharSimple.php │ ├── 01simple-download-ods.php │ ├── 01simple-download-pdf.php │ ├── 01simple-download-xls.php │ ├── 01simple-download-xlsx.php │ ├── 01simple.php │ ├── 01simplePCLZip.php │ ├── 02types-xls.php │ ├── 02types.php │ ├── 03formulas.php │ ├── 04printing.php │ ├── 05featuredemo.inc.php │ ├── 05featuredemo.php │ ├── 06largescale-with-cellcaching-sqlite.php │ ├── 06largescale-with-cellcaching-sqlite3.php │ ├── 06largescale-with-cellcaching.php │ ├── 06largescale-xls.php │ ├── 06largescale.php │ ├── 07reader.php │ ├── 07readerPCLZip.php │ ├── 08conditionalformatting.php │ ├── 08conditionalformatting2.php │ ├── 09pagebreaks.php │ ├── 10autofilter-selection-1.php │ ├── 10autofilter-selection-2.php │ ├── 10autofilter-selection-display.php │ ├── 10autofilter.php │ ├── 11documentsecurity-xls.php │ ├── 11documentsecurity.php │ ├── 12cellProtection.php │ ├── 13calculation.php │ ├── 13calculationCyclicFormulae.php │ ├── 14excel5.php │ ├── 15datavalidation-xls.php │ ├── 15datavalidation.php │ ├── 16csv.php │ ├── 17html.php │ ├── 18extendedcalculation.php │ ├── 19namedrange.php │ ├── 20readexcel5.php │ ├── 21pdf.php │ ├── 22heavilyformatted.php │ ├── 23sharedstyles.php │ ├── 24readfilter.php │ ├── 25inmemoryimage.php │ ├── 26utf8.php │ ├── 27imagesexcel5.php │ ├── 28iterator.php │ ├── 29advancedvaluebinder.php │ ├── 30template.php │ ├── 31docproperties_write-xls.php │ ├── 31docproperties_write.php │ ├── 32chartreadwrite.php │ ├── 33chartcreate-area.php │ ├── 33chartcreate-bar-stacked.php │ ├── 33chartcreate-bar.php │ ├── 33chartcreate-column-2.php │ ├── 33chartcreate-column.php │ ├── 33chartcreate-composite.php │ ├── 33chartcreate-line.php │ ├── 33chartcreate-multiple-charts.php │ ├── 33chartcreate-pie.php │ ├── 33chartcreate-radar.php │ ├── 33chartcreate-scatter.php │ ├── 33chartcreate-stock.php │ ├── 34chartupdate.php │ ├── 35chartrender.php │ ├── 36chartreadwriteHTML.php │ ├── 36chartreadwritePDF.php │ ├── 37page_layout_view.php │ ├── 38cloneWorksheet.php │ ├── 39dropdown.php │ ├── 40duplicateStyle.php │ ├── 41password.php │ ├── 42richText.php │ ├── 43mergeWorkbooks.php │ ├── 44worksheetInfo.php │ ├── Excel2003XMLReader.php │ ├── Excel2003XMLTest.xml │ ├── GnumericReader.php │ ├── GnumericTest.gnumeric │ ├── OOCalcReader.php │ ├── OOCalcReaderPCLZip.php │ ├── OOCalcTest.ods │ ├── Quadratic.php │ ├── Quadratic2.php │ ├── SylkReader.php │ ├── SylkTest.slk │ ├── XMLReader.php │ ├── XMLTest.xml │ ├── data/ │ │ └── continents/ │ │ ├── Africa.txt │ │ ├── Asia.txt │ │ ├── Europe.txt │ │ ├── North America.txt │ │ ├── Oceania.txt │ │ └── South America.txt │ └── runall.php ├── README.md ├── changelog.txt ├── composer.json ├── install.txt ├── license.md └── unitTests/ ├── Classes/ │ └── PHPExcel/ │ ├── AutoloaderTest.php │ ├── Calculation/ │ │ ├── DateTimeTest.php │ │ ├── EngineeringTest.php │ │ ├── FinancialTest.php │ │ ├── FunctionsTest.php │ │ ├── LogicalTest.php │ │ ├── LookupRefTest.php │ │ ├── MathTrigTest.php │ │ └── TextDataTest.php │ ├── CalculationTest.php │ ├── Cell/ │ │ ├── AdvancedValueBinderTest.php │ │ ├── DataTypeTest.php │ │ ├── DefaultValueBinderTest.php │ │ └── HyperlinkTest.php │ ├── CellTest.php │ ├── Chart/ │ │ ├── DataSeriesValuesTest.php │ │ ├── LayoutTest.php │ │ └── LegendTest.php │ ├── Reader/ │ │ └── XEEValidatorTest.php │ ├── ReferenceHelperTest.php │ ├── SettingsTest.php │ ├── Shared/ │ │ ├── CodePageTest.php │ │ ├── DateTest.php │ │ ├── FileTest.php │ │ ├── FontTest.php │ │ ├── PasswordHasherTest.php │ │ ├── StringTest.php │ │ └── TimeZoneTest.php │ ├── Style/ │ │ ├── ColorTest.php │ │ ├── NumberFormatDateTest.php │ │ └── NumberFormatTest.php │ └── Worksheet/ │ ├── AutoFilter/ │ │ ├── Column/ │ │ │ └── RuleTest.php │ │ └── ColumnTest.php │ ├── AutoFilterTest.php │ ├── CellCollectionTest.php │ ├── ColumnCellIteratorTest.php │ ├── ColumnIteratorTest.php │ ├── RowCellIteratorTest.php │ ├── RowIteratorTest.php │ ├── WorksheetColumnTest.php │ └── WorksheetRowTest.php ├── bootstrap.php ├── custom/ │ ├── Complex.php │ └── complexAssert.php ├── phpunit-cc.xml ├── phpunit.xml ├── rawTestData/ │ ├── Calculation/ │ │ ├── DateTime/ │ │ │ ├── DATE.data │ │ │ ├── DATEDIF.data │ │ │ ├── DATEVALUE.data │ │ │ ├── DAY.data │ │ │ ├── DAYS360.data │ │ │ ├── EDATE.data │ │ │ ├── EOMONTH.data │ │ │ ├── HOUR.data │ │ │ ├── MINUTE.data │ │ │ ├── MONTH.data │ │ │ ├── NETWORKDAYS.data │ │ │ ├── SECOND.data │ │ │ ├── TIME.data │ │ │ ├── TIMEVALUE.data │ │ │ ├── WEEKDAY.data │ │ │ ├── WEEKNUM.data │ │ │ ├── WORKDAY.data │ │ │ ├── YEAR.data │ │ │ └── YEARFRAC.data │ │ ├── Engineering/ │ │ │ ├── BESSELI.data │ │ │ ├── BESSELJ.data │ │ │ ├── BESSELK.data │ │ │ ├── BESSELY.data │ │ │ ├── BIN2DEC.data │ │ │ ├── BIN2HEX.data │ │ │ ├── BIN2OCT.data │ │ │ ├── COMPLEX.data │ │ │ ├── CONVERTUOM.data │ │ │ ├── DEC2BIN.data │ │ │ ├── DEC2HEX.data │ │ │ ├── DEC2OCT.data │ │ │ ├── DELTA.data │ │ │ ├── ERF.data │ │ │ ├── ERFC.data │ │ │ ├── GESTEP.data │ │ │ ├── HEX2BIN.data │ │ │ ├── HEX2DEC.data │ │ │ ├── HEX2OCT.data │ │ │ ├── IMABS.data │ │ │ ├── IMAGINARY.data │ │ │ ├── IMARGUMENT.data │ │ │ ├── IMCONJUGATE.data │ │ │ ├── IMCOS.data │ │ │ ├── IMDIV.data │ │ │ ├── IMEXP.data │ │ │ ├── IMLN.data │ │ │ ├── IMLOG10.data │ │ │ ├── IMLOG2.data │ │ │ ├── IMPOWER.data │ │ │ ├── IMPRODUCT.data │ │ │ ├── IMREAL.data │ │ │ ├── IMSIN.data │ │ │ ├── IMSQRT.data │ │ │ ├── IMSUB.data │ │ │ ├── IMSUM.data │ │ │ ├── OCT2BIN.data │ │ │ ├── OCT2DEC.data │ │ │ └── OCT2HEX.data │ │ ├── Financial/ │ │ │ ├── ACCRINT.data │ │ │ ├── ACCRINTM.data │ │ │ ├── AMORDEGRC.data │ │ │ ├── AMORLINC.data │ │ │ ├── COUPDAYBS.data │ │ │ ├── COUPDAYS.data │ │ │ ├── COUPDAYSNC.data │ │ │ ├── COUPNCD.data │ │ │ ├── COUPNUM.data │ │ │ ├── COUPPCD.data │ │ │ ├── CUMIPMT.data │ │ │ ├── CUMPRINC.data │ │ │ ├── DB.data │ │ │ ├── DDB.data │ │ │ ├── DISC.data │ │ │ ├── DOLLARDE.data │ │ │ ├── DOLLARFR.data │ │ │ ├── EFFECT.data │ │ │ ├── FV.data │ │ │ ├── FVSCHEDULE.data │ │ │ ├── INTRATE.data │ │ │ ├── IPMT.data │ │ │ ├── IRR.data │ │ │ ├── ISPMT.data │ │ │ ├── MIRR.data │ │ │ ├── NOMINAL.data │ │ │ ├── NPER.data │ │ │ ├── NPV.data │ │ │ ├── PRICE.data │ │ │ ├── RATE.data │ │ │ └── XIRR.data │ │ ├── Functions/ │ │ │ ├── ERROR_TYPE.data │ │ │ ├── IS_BLANK.data │ │ │ ├── IS_ERR.data │ │ │ ├── IS_ERROR.data │ │ │ ├── IS_EVEN.data │ │ │ ├── IS_LOGICAL.data │ │ │ ├── IS_NA.data │ │ │ ├── IS_NONTEXT.data │ │ │ ├── IS_NUMBER.data │ │ │ ├── IS_ODD.data │ │ │ ├── IS_TEXT.data │ │ │ ├── N.data │ │ │ └── TYPE.data │ │ ├── Logical/ │ │ │ ├── AND.data │ │ │ ├── IF.data │ │ │ ├── IFERROR.data │ │ │ ├── NOT.data │ │ │ └── OR.data │ │ ├── LookupRef/ │ │ │ ├── HLOOKUP.data │ │ │ └── VLOOKUP.data │ │ ├── MathTrig/ │ │ │ ├── ATAN2.data │ │ │ ├── CEILING.data │ │ │ ├── COMBIN.data │ │ │ ├── EVEN.data │ │ │ ├── FACT.data │ │ │ ├── FACTDOUBLE.data │ │ │ ├── FLOOR.data │ │ │ ├── GCD.data │ │ │ ├── INT.data │ │ │ ├── LCM.data │ │ │ ├── LOG.data │ │ │ ├── MDETERM.data │ │ │ ├── MINVERSE.data │ │ │ ├── MMULT.data │ │ │ ├── MOD.data │ │ │ ├── MROUND.data │ │ │ ├── MULTINOMIAL.data │ │ │ ├── ODD.data │ │ │ ├── POWER.data │ │ │ ├── PRODUCT.data │ │ │ ├── QUOTIENT.data │ │ │ ├── ROMAN.data │ │ │ ├── ROUNDDOWN.data │ │ │ ├── ROUNDUP.data │ │ │ ├── SERIESSUM.data │ │ │ ├── SIGN.data │ │ │ ├── SQRTPI.data │ │ │ ├── SUMIFS.data │ │ │ ├── SUMSQ.data │ │ │ └── TRUNC.data │ │ └── TextData/ │ │ ├── CHAR.data │ │ ├── CLEAN.data │ │ ├── CODE.data │ │ ├── CONCATENATE.data │ │ ├── DOLLAR.data │ │ ├── FIND.data │ │ ├── FIXED.data │ │ ├── LEFT.data │ │ ├── LEN.data │ │ ├── LOWER.data │ │ ├── MID.data │ │ ├── PROPER.data │ │ ├── REPLACE.data │ │ ├── RIGHT.data │ │ ├── SEARCH.data │ │ ├── SUBSTITUTE.data │ │ ├── T.data │ │ ├── TEXT.data │ │ ├── TRIM.data │ │ ├── UPPER.data │ │ └── VALUE.data │ ├── CalculationBinaryComparisonOperation.data │ ├── Cell/ │ │ └── DefaultValueBinder.data │ ├── CellAbsoluteCoordinate.data │ ├── CellAbsoluteReference.data │ ├── CellBuildRange.data │ ├── CellCoordinates.data │ ├── CellExtractAllCellReferencesInRange.data │ ├── CellGetRangeBoundaries.data │ ├── CellRangeBoundaries.data │ ├── CellRangeDimension.data │ ├── CellSplitRange.data │ ├── ColumnIndex.data │ ├── ColumnString.data │ ├── Reader/ │ │ ├── XEETestInvalidUTF-16.xml │ │ ├── XEETestInvalidUTF-16BE.xml │ │ ├── XEETestInvalidUTF-16LE.xml │ │ ├── XEETestInvalidUTF-8.xml │ │ ├── XEETestValidUTF-16.xml │ │ ├── XEETestValidUTF-16BE.xml │ │ ├── XEETestValidUTF-16LE.xml │ │ └── XEETestValidUTF-8.xml │ ├── Shared/ │ │ ├── CentimeterSizeToPixels.data │ │ ├── CodePage.data │ │ ├── DateTimeExcelToPHP1900.data │ │ ├── DateTimeExcelToPHP1900Timezone.data │ │ ├── DateTimeExcelToPHP1904.data │ │ ├── DateTimeFormatCodes.data │ │ ├── DateTimeFormattedPHPToExcel1900.data │ │ ├── DateTimePHPToExcel1900.data │ │ ├── DateTimePHPToExcel1904.data │ │ ├── FontSizeToPixels.data │ │ ├── InchSizeToPixels.data │ │ └── PasswordHashes.data │ └── Style/ │ ├── ColorChangeBrightness.data │ ├── ColorGetBlue.data │ ├── ColorGetGreen.data │ ├── ColorGetRed.data │ ├── NumberFormat.data │ └── NumberFormatDates.data └── testDataFileIterator.php