pyEQL 1.4.0rc9__cp312-cp312-win_amd64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (519) hide show
  1. pyEQL/__init__.py +50 -0
  2. pyEQL/_phreeqc.cp312-win_amd64.pyd +0 -0
  3. pyEQL/activity_correction.py +879 -0
  4. pyEQL/database/geothermal.dat +5693 -0
  5. pyEQL/database/llnl.dat +19305 -0
  6. pyEQL/database/phreeqc_license.txt +54 -0
  7. pyEQL/database/pyeql_db.json +35607 -0
  8. pyEQL/engines.py +1153 -0
  9. pyEQL/equilibrium.py +227 -0
  10. pyEQL/functions.py +281 -0
  11. pyEQL/phreeqc/__init__.py +5 -0
  12. pyEQL/phreeqc/bindings.cpp +84 -0
  13. pyEQL/phreeqc/core.py +239 -0
  14. pyEQL/phreeqc/database/Amm.dat +1968 -0
  15. pyEQL/phreeqc/database/CMakeLists.txt +32 -0
  16. pyEQL/phreeqc/database/ColdChem.dat +267 -0
  17. pyEQL/phreeqc/database/Concrete_PHR.dat +158 -0
  18. pyEQL/phreeqc/database/Concrete_PZ.dat +195 -0
  19. pyEQL/phreeqc/database/Kinec.v2.dat +12039 -0
  20. pyEQL/phreeqc/database/Kinec_v3.dat +12159 -0
  21. pyEQL/phreeqc/database/Makefile.am +28 -0
  22. pyEQL/phreeqc/database/Makefile.in +530 -0
  23. pyEQL/phreeqc/database/PHREEQC_ThermoddemV1.10_15Dec2020.dat +12965 -0
  24. pyEQL/phreeqc/database/Tipping_Hurley.dat +4137 -0
  25. pyEQL/phreeqc/database/__init__.py +0 -0
  26. pyEQL/phreeqc/database/core10.dat +6824 -0
  27. pyEQL/phreeqc/database/frezchem.dat +634 -0
  28. pyEQL/phreeqc/database/iso.dat +7235 -0
  29. pyEQL/phreeqc/database/llnl.dat +19310 -0
  30. pyEQL/phreeqc/database/minteq.dat +5654 -0
  31. pyEQL/phreeqc/database/minteq.v4.dat +13212 -0
  32. pyEQL/phreeqc/database/phreeqc.dat +1972 -0
  33. pyEQL/phreeqc/database/phreeqc_rates.dat +3158 -0
  34. pyEQL/phreeqc/database/pitzer.dat +1044 -0
  35. pyEQL/phreeqc/database/sit.dat +14348 -0
  36. pyEQL/phreeqc/database/wateq4f.dat +4036 -0
  37. pyEQL/phreeqc/ext/README.md +10 -0
  38. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/CMakeLists.txt +476 -0
  39. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/INSTALL +302 -0
  40. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/IPhreeqc.rc +61 -0
  41. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/IPhreeqcConfig.cmake.in +4 -0
  42. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/Makefile.am +8 -0
  43. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/Makefile.in +816 -0
  44. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/aclocal.m4 +1217 -0
  45. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/ALL_BUILD.vcxproj +185 -0
  46. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/ALL_BUILD.vcxproj.filters +8 -0
  47. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/generate.stamp +1 -0
  48. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/generate.stamp.depend +79 -0
  49. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CTestTestfile.cmake +6 -0
  50. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/Continuous.vcxproj +240 -0
  51. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/Continuous.vcxproj.filters +17 -0
  52. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/DartConfiguration.tcl +109 -0
  53. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/Experimental.vcxproj +240 -0
  54. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/Experimental.vcxproj.filters +17 -0
  55. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/INSTALL.vcxproj +209 -0
  56. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/INSTALL.vcxproj.filters +13 -0
  57. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/CSelectedOutput.obj +0 -0
  58. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/Dictionary.obj +0 -0
  59. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/ExchComp.obj +0 -0
  60. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/Exchange.obj +0 -0
  61. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/GasComp.obj +0 -0
  62. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/GasPhase.obj +0 -0
  63. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/IPhreeqc.lib.recipe +11 -0
  64. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/IPhreeqc.obj +0 -0
  65. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/IPhreeqc.tlog/CL.command.1.tlog +0 -0
  66. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/IPhreeqc.tlog/CL.read.1.tlog +0 -0
  67. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/IPhreeqc.tlog/CL.write.1.tlog +0 -0
  68. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/IPhreeqc.tlog/Cl.items.tlog +82 -0
  69. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/IPhreeqc.tlog/CustomBuild.command.1.tlog +10 -0
  70. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/IPhreeqc.tlog/CustomBuild.read.1.tlog +78 -0
  71. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/IPhreeqc.tlog/CustomBuild.write.1.tlog +2 -0
  72. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/IPhreeqc.tlog/IPhreeqc.lastbuildstate +2 -0
  73. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/IPhreeqc.tlog/Lib-link.read.1.tlog +0 -0
  74. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/IPhreeqc.tlog/Lib-link.write.1.tlog +0 -0
  75. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/IPhreeqc.tlog/Lib.command.1.tlog +0 -0
  76. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/IPhreeqcLib.obj +0 -0
  77. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/IPhreeqc_interface_F.obj +0 -0
  78. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/ISolution.obj +0 -0
  79. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/ISolutionComp.obj +0 -0
  80. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/Keywords.obj +0 -0
  81. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/KineticsComp.obj +0 -0
  82. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/NameDouble.obj +0 -0
  83. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/NumKeyword.obj +0 -0
  84. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/PBasic.obj +0 -0
  85. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/PHRQ_base.obj +0 -0
  86. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/PHRQ_io.obj +0 -0
  87. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/PHRQ_io_output.obj +0 -0
  88. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/PPassemblage.obj +0 -0
  89. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/PPassemblageComp.obj +0 -0
  90. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/Parser.obj +0 -0
  91. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/Phreeqc.obj +0 -0
  92. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/Pressure.obj +0 -0
  93. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/Reaction.obj +0 -0
  94. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/ReadClass.obj +0 -0
  95. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/SS.obj +0 -0
  96. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/SSassemblage.obj +0 -0
  97. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/SScomp.obj +0 -0
  98. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/SelectedOutput.obj +0 -0
  99. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/Serializer.obj +0 -0
  100. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/Solution.obj +0 -0
  101. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/SolutionIsotope.obj +0 -0
  102. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/StorageBin.obj +0 -0
  103. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/StorageBinList.obj +0 -0
  104. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/Surface.obj +0 -0
  105. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/SurfaceCharge.obj +0 -0
  106. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/SurfaceComp.obj +0 -0
  107. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/System.obj +0 -0
  108. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/Temperature.obj +0 -0
  109. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/Use.obj +0 -0
  110. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/UserPunch.obj +0 -0
  111. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/Utils.obj +0 -0
  112. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/Var.obj +0 -0
  113. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/advection.obj +0 -0
  114. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/basicsubs.obj +0 -0
  115. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/cl1.obj +0 -0
  116. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/cvdense.obj +0 -0
  117. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/cvode.obj +0 -0
  118. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/cxxKinetics.obj +0 -0
  119. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/cxxMix.obj +0 -0
  120. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/dense.obj +0 -0
  121. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/dumper.obj +0 -0
  122. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/gases.obj +0 -0
  123. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/input.obj +0 -0
  124. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/integrate.obj +0 -0
  125. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/inverse.obj +0 -0
  126. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/isotopes.obj +0 -0
  127. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/kinetics.obj +0 -0
  128. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/mainsubs.obj +0 -0
  129. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/model.obj +0 -0
  130. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/nvector.obj +0 -0
  131. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/nvector_serial.obj +0 -0
  132. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/parse.obj +0 -0
  133. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/phqalloc.obj +0 -0
  134. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/pitzer.obj +0 -0
  135. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/pitzer_structures.obj +0 -0
  136. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/prep.obj +0 -0
  137. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/print.obj +0 -0
  138. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/read.obj +0 -0
  139. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/readtr.obj +0 -0
  140. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/runner.obj +0 -0
  141. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/sit.obj +0 -0
  142. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/smalldense.obj +0 -0
  143. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/spread.obj +0 -0
  144. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/step.obj +0 -0
  145. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/structures.obj +0 -0
  146. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/sundialsmath.obj +0 -0
  147. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/tally.obj +0 -0
  148. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/tidy.obj +0 -0
  149. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/transport.obj +0 -0
  150. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/utilities.obj +0 -0
  151. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.sln +116 -0
  152. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.vcxproj +443 -0
  153. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.vcxproj.filters +456 -0
  154. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/Nightly.vcxproj +240 -0
  155. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/Nightly.vcxproj.filters +17 -0
  156. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/NightlyMemoryCheck.vcxproj +240 -0
  157. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/NightlyMemoryCheck.vcxproj.filters +17 -0
  158. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/Release/IPhreeqc.lib +0 -0
  159. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/cmake_install.cmake +40 -0
  160. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/config/ar-lib +270 -0
  161. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/config/compile +347 -0
  162. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/config/config.guess +1441 -0
  163. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/config/config.sub +1813 -0
  164. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/config/depcomp +791 -0
  165. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/config/install-sh +508 -0
  166. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/config/ltmain.sh +11156 -0
  167. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/config/missing +215 -0
  168. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/config/test-driver +148 -0
  169. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/configure +23867 -0
  170. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/configure.ac +136 -0
  171. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/Amm.dat +1968 -0
  172. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/CMakeLists.txt +32 -0
  173. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/ColdChem.dat +267 -0
  174. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/Concrete_PHR.dat +158 -0
  175. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/Concrete_PZ.dat +195 -0
  176. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/Kinec.v2.dat +12039 -0
  177. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/Kinec_v3.dat +12159 -0
  178. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/Makefile.am +28 -0
  179. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/Makefile.in +530 -0
  180. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/PHREEQC_ThermoddemV1.10_15Dec2020.dat +12965 -0
  181. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/Tipping_Hurley.dat +4137 -0
  182. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/core10.dat +6824 -0
  183. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/frezchem.dat +634 -0
  184. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/iso.dat +7235 -0
  185. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/llnl.dat +19310 -0
  186. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/minteq.dat +5654 -0
  187. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/minteq.v4.dat +13212 -0
  188. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/phreeqc.dat +1972 -0
  189. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/phreeqc_rates.dat +3158 -0
  190. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/pitzer.dat +1044 -0
  191. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/sit.dat +14348 -0
  192. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/wateq4f.dat +4036 -0
  193. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/CMakeLists.txt +35 -0
  194. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/IPhreeqc.pdf +0 -0
  195. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/Makefile.am +24 -0
  196. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/Makefile.in +545 -0
  197. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/NOTICE +51 -0
  198. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/Phreeqc_2_1999_manual.pdf +0 -0
  199. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/Phreeqc_3_2013_manual.pdf +0 -0
  200. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/README +428 -0
  201. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/RELEASE +7294 -0
  202. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/IPhreeqc_8h.html +5096 -0
  203. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/IPhreeqc_8h_source.html +389 -0
  204. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/IPhreeqc_8hpp.html +83 -0
  205. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/IPhreeqc_8hpp_source.html +478 -0
  206. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/Var_8h.html +318 -0
  207. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/Var_8h_source.html +200 -0
  208. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/bc_s.png +0 -0
  209. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/bdwn.png +0 -0
  210. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/classIPhreeqc.html +2274 -0
  211. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/classIPhreeqc.png +0 -0
  212. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/classIPhreeqcStop.html +69 -0
  213. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/classIPhreeqcStop.png +0 -0
  214. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/closed.png +0 -0
  215. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/dir_68267d1309a1af8e8297ef4c3efbcdba.html +68 -0
  216. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/doxygen.css +1440 -0
  217. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/doxygen.png +0 -0
  218. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/dynsections.js +97 -0
  219. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/ftv2blank.png +0 -0
  220. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/ftv2doc.png +0 -0
  221. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/ftv2folderclosed.png +0 -0
  222. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/ftv2folderopen.png +0 -0
  223. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/ftv2lastnode.png +0 -0
  224. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/ftv2link.png +0 -0
  225. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/ftv2mlastnode.png +0 -0
  226. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/ftv2mnode.png +0 -0
  227. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/ftv2node.png +0 -0
  228. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/ftv2plastnode.png +0 -0
  229. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/ftv2pnode.png +0 -0
  230. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/ftv2splitbar.png +0 -0
  231. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/ftv2vertline.png +0 -0
  232. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/index.html +58 -0
  233. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/jquery.js +31 -0
  234. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/nav_f.png +0 -0
  235. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/nav_g.png +0 -0
  236. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/nav_h.png +0 -0
  237. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/open.png +0 -0
  238. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/structVAR.html +143 -0
  239. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/sync_off.png +0 -0
  240. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/sync_on.png +0 -0
  241. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/tab_a.png +0 -0
  242. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/tab_b.png +0 -0
  243. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/tab_h.png +0 -0
  244. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/tab_s.png +0 -0
  245. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/tabs.css +60 -0
  246. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/phreeqc3.chm +0 -0
  247. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/CMakeLists.txt +11 -0
  248. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/Makefile.am +88 -0
  249. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/Makefile.in +696 -0
  250. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/c/CMakeLists.txt +1 -0
  251. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/c/advect/CMakeLists.txt +35 -0
  252. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/c/advect/CMakeLists.txt.in +21 -0
  253. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/c/advect/README.txt +44 -0
  254. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/c/advect/advect.c +101 -0
  255. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/c/advect/ic +17 -0
  256. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/c/advect/phreeqc.dat +1579 -0
  257. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/com/CMakeLists.txt +10 -0
  258. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/com/README.txt +3 -0
  259. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/com/excel/CMakeLists.txt +9 -0
  260. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/com/excel/phreeqc.dat +1582 -0
  261. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/com/excel/runphreeqc.xls +0 -0
  262. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/com/excel/withcallback.xls +0 -0
  263. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/com/python/CMakeLists.txt +11 -0
  264. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/com/python/Gypsum.py +52 -0
  265. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/com/python/parallel_advect.py +465 -0
  266. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/com/python/phreeqc.dat +1582 -0
  267. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/com/python/pitzer.dat +790 -0
  268. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/com/python/wateq4f.dat +3846 -0
  269. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/cpp/CMakeLists.txt +1 -0
  270. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/cpp/advect/CMakeLists.txt +35 -0
  271. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/cpp/advect/CMakeLists.txt.in +20 -0
  272. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/cpp/advect/README.txt +45 -0
  273. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/cpp/advect/advect.cpp +110 -0
  274. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/cpp/advect/ic +17 -0
  275. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/cpp/advect/phreeqc.dat +1579 -0
  276. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/fortran/CMakeLists.txt +1 -0
  277. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/fortran/advect/CMakeLists.txt +44 -0
  278. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/fortran/advect/CMakeLists.txt.in +24 -0
  279. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/fortran/advect/README.txt +45 -0
  280. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/fortran/advect/advect.F90 +102 -0
  281. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/fortran/advect/ic +17 -0
  282. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/fortran/advect/phreeqc.dat +1579 -0
  283. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/using-cmake/CMakeLists.txt +26 -0
  284. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/using-cmake/CMakeLists.txt.in +20 -0
  285. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/using-cmake/README.txt +37 -0
  286. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/using-cmake/ex2 +26 -0
  287. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/using-cmake/main.cpp +20 -0
  288. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/using-cmake/phreeqc.dat +1837 -0
  289. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/using-cmake/post-install.cmake.in +7 -0
  290. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/CMakeLists.txt +185 -0
  291. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/FileTest.cpp +171 -0
  292. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/FileTest.h +34 -0
  293. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/Makefile.am +18 -0
  294. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/Makefile.in +466 -0
  295. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/TestCVar.cpp +9 -0
  296. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/TestIPhreeqc.cpp +4901 -0
  297. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/TestIPhreeqcLib.cpp +4644 -0
  298. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/TestSelectedOutput.cpp +669 -0
  299. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/TestVar.cpp +10 -0
  300. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/conv_fail.in +11 -0
  301. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/dump +42 -0
  302. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/iso.dat +7231 -0
  303. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/kinn20140218 +349 -0
  304. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/missing_e.dat +1556 -0
  305. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/multi_punch +105 -0
  306. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/multi_punch_no_set +102 -0
  307. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/phreeqc.dat.90a6449 +1935 -0
  308. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/phreeqc.dat.old +1556 -0
  309. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/m4/libtool.m4 +8388 -0
  310. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/m4/ltoptions.m4 +437 -0
  311. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/m4/ltsugar.m4 +124 -0
  312. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/m4/ltversion.m4 +23 -0
  313. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/m4/lt~obsolete.m4 +99 -0
  314. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/resource.h +14 -0
  315. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/CSelectedOutput.cpp +401 -0
  316. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/CSelectedOutput.hxx +77 -0
  317. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/CVar.hxx +162 -0
  318. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/Debug.h +12 -0
  319. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/ErrorReporter.hxx +70 -0
  320. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/IPhreeqc.cpp +1889 -0
  321. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/IPhreeqc.f.inc +91 -0
  322. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/IPhreeqc.f90.inc +603 -0
  323. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/IPhreeqc.h +2182 -0
  324. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/IPhreeqc.hpp +1027 -0
  325. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/IPhreeqcCallbacks.h +19 -0
  326. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/IPhreeqcF.f +653 -0
  327. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/IPhreeqcLib.cpp +1098 -0
  328. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/IPhreeqc_interface.F90 +1283 -0
  329. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/IPhreeqc_interface_F.cpp +535 -0
  330. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/IPhreeqc_interface_F.h +162 -0
  331. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/Makefile.am +210 -0
  332. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/Makefile.in +1294 -0
  333. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/README.Fortran +17 -0
  334. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/Var.c +84 -0
  335. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/Var.h +152 -0
  336. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/Version.h +36 -0
  337. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/fimpl.h +282 -0
  338. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/fwrap.cpp +646 -0
  339. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/fwrap.h +163 -0
  340. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/fwrap1.cpp +24 -0
  341. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/fwrap2.cpp +24 -0
  342. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/fwrap3.cpp +24 -0
  343. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/fwrap4.cpp +24 -0
  344. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/fwrap5.cpp +24 -0
  345. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/fwrap6.cpp +25 -0
  346. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/fwrap7.cpp +25 -0
  347. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/fwrap8.cpp +24 -0
  348. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/ChartHandler.cpp +225 -0
  349. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/ChartHandler.h +59 -0
  350. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/ChartObject.cpp +1382 -0
  351. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/ChartObject.h +444 -0
  352. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/CurveObject.cpp +42 -0
  353. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/CurveObject.h +79 -0
  354. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Dictionary.cpp +41 -0
  355. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Dictionary.h +28 -0
  356. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/ExchComp.cxx +398 -0
  357. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/ExchComp.h +117 -0
  358. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Exchange.cxx +466 -0
  359. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Exchange.h +74 -0
  360. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Form1.h +1184 -0
  361. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Form1.resX +36 -0
  362. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/GasComp.cxx +265 -0
  363. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/GasComp.h +59 -0
  364. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/GasPhase.cxx +659 -0
  365. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/GasPhase.h +103 -0
  366. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/ISolution.cxx +40 -0
  367. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/ISolution.h +53 -0
  368. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/ISolutionComp.cxx +202 -0
  369. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/ISolutionComp.h +138 -0
  370. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/KineticsComp.cxx +318 -0
  371. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/KineticsComp.h +81 -0
  372. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/NA.h +1 -0
  373. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/NameDouble.cxx +537 -0
  374. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/NameDouble.h +66 -0
  375. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/NumKeyword.cxx +190 -0
  376. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/NumKeyword.h +67 -0
  377. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/PBasic.cpp +8350 -0
  378. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/PBasic.h +572 -0
  379. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/PHRQ_io_output.cpp +411 -0
  380. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/PPassemblage.cxx +375 -0
  381. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/PPassemblage.h +70 -0
  382. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/PPassemblageComp.cxx +441 -0
  383. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/PPassemblageComp.h +83 -0
  384. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Phreeqc.cpp +2087 -0
  385. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Phreeqc.h +2164 -0
  386. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/PhreeqcKeywords/Keywords.cpp +242 -0
  387. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/PhreeqcKeywords/Keywords.h +104 -0
  388. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Pressure.cxx +417 -0
  389. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Pressure.h +43 -0
  390. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Reaction.cxx +284 -0
  391. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Reaction.h +57 -0
  392. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/ReadClass.cxx +1150 -0
  393. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/SS.cxx +609 -0
  394. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/SS.h +128 -0
  395. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/SSassemblage.cxx +317 -0
  396. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/SSassemblage.h +59 -0
  397. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/SScomp.cxx +297 -0
  398. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/SScomp.h +66 -0
  399. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/SelectedOutput.cpp +115 -0
  400. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/SelectedOutput.h +209 -0
  401. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Serializer.cxx +213 -0
  402. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Serializer.h +42 -0
  403. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Solution.cxx +1795 -0
  404. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Solution.h +154 -0
  405. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/SolutionIsotope.cxx +333 -0
  406. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/SolutionIsotope.h +85 -0
  407. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/StorageBin.cxx +1507 -0
  408. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/StorageBin.h +141 -0
  409. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/StorageBinList.cpp +358 -0
  410. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/StorageBinList.h +81 -0
  411. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Surface.cxx +837 -0
  412. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Surface.h +108 -0
  413. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/SurfaceCharge.cxx +617 -0
  414. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/SurfaceCharge.h +137 -0
  415. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/SurfaceComp.cxx +509 -0
  416. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/SurfaceComp.h +70 -0
  417. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/System.cxx +103 -0
  418. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/System.h +89 -0
  419. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Temperature.cxx +423 -0
  420. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Temperature.h +42 -0
  421. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Use.cpp +78 -0
  422. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Use.h +159 -0
  423. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/UserPunch.cpp +32 -0
  424. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/UserPunch.h +39 -0
  425. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/ZedGraph.dll +0 -0
  426. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/advection.cpp +140 -0
  427. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/basicsubs.cpp +4333 -0
  428. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/cl1.cpp +881 -0
  429. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/common/PHRQ_base.cxx +117 -0
  430. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/common/PHRQ_base.h +48 -0
  431. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/common/PHRQ_exports.h +20 -0
  432. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/common/PHRQ_io.cpp +914 -0
  433. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/common/PHRQ_io.h +207 -0
  434. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/common/Parser.cxx +1331 -0
  435. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/common/Parser.h +310 -0
  436. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/common/Utils.cxx +263 -0
  437. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/common/Utils.h +29 -0
  438. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/common/phrqtype.h +18 -0
  439. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/cvdense.cpp +566 -0
  440. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/cvdense.h +267 -0
  441. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/cvode.cpp +3939 -0
  442. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/cvode.h +940 -0
  443. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/cxxKinetics.cxx +617 -0
  444. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/cxxKinetics.h +78 -0
  445. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/cxxMix.cxx +154 -0
  446. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/cxxMix.h +58 -0
  447. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/dense.cpp +175 -0
  448. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/dense.h +341 -0
  449. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/dumper.cpp +277 -0
  450. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/dumper.h +60 -0
  451. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/gases.cpp +748 -0
  452. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/global_structures.h +1672 -0
  453. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/input.cpp +133 -0
  454. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/integrate.cpp +1219 -0
  455. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/inverse.cpp +5135 -0
  456. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/isotopes.cpp +1813 -0
  457. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/kinetics.cpp +3180 -0
  458. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/mainsubs.cpp +2320 -0
  459. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/model.cpp +5843 -0
  460. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/nvector.cpp +272 -0
  461. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/nvector.h +485 -0
  462. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/nvector_serial.cpp +1032 -0
  463. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/nvector_serial.h +369 -0
  464. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/parse.cpp +1044 -0
  465. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/phqalloc.cpp +316 -0
  466. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/phqalloc.h +47 -0
  467. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/pitzer.cpp +2709 -0
  468. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/pitzer_structures.cpp +225 -0
  469. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/prep.cpp +6267 -0
  470. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/print.cpp +3673 -0
  471. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/read.cpp +10245 -0
  472. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/readtr.cpp +1495 -0
  473. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/runner.cpp +158 -0
  474. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/runner.h +33 -0
  475. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/sit.cpp +1684 -0
  476. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/smalldense.cpp +324 -0
  477. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/smalldense.h +261 -0
  478. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/spread.cpp +1309 -0
  479. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/step.cpp +1566 -0
  480. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/structures.cpp +3381 -0
  481. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/sundialsmath.cpp +133 -0
  482. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/sundialsmath.h +162 -0
  483. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/sundialstypes.h +183 -0
  484. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/tally.cpp +1288 -0
  485. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/tidy.cpp +5600 -0
  486. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/transport.cpp +6403 -0
  487. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/utilities.cpp +1339 -0
  488. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/thread.h +64 -0
  489. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/tests/CMakeLists.txt +133 -0
  490. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/tests/Makefile.am +45 -0
  491. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/tests/Makefile.in +1128 -0
  492. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/tests/ex2.in +26 -0
  493. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/tests/main.f90 +31 -0
  494. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/tests/main77.f +6 -0
  495. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/tests/main_fortran.cxx +8 -0
  496. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/tests/phreeqc.dat.in +1556 -0
  497. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/tests/test_c.c +148 -0
  498. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/tests/test_cxx.cxx +152 -0
  499. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/tests/test_f90.F90 +328 -0
  500. pyEQL/phreeqc/iphreeqc_wrapper.cpp +75 -0
  501. pyEQL/phreeqc/solution.py +74 -0
  502. pyEQL/phreeqc/var.py +50 -0
  503. pyEQL/presets/Ringers lactate.yaml +20 -0
  504. pyEQL/presets/__init__.py +17 -0
  505. pyEQL/presets/normal saline.yaml +17 -0
  506. pyEQL/presets/rainwater.yaml +17 -0
  507. pyEQL/presets/seawater.yaml +29 -0
  508. pyEQL/presets/urine.yaml +26 -0
  509. pyEQL/presets/wastewater.yaml +21 -0
  510. pyEQL/py.typed +0 -0
  511. pyEQL/salt_ion_match.py +112 -0
  512. pyEQL/solute.py +163 -0
  513. pyEQL/solution.py +2714 -0
  514. pyEQL/utils.py +237 -0
  515. pyeql-1.4.0rc9.dist-info/METADATA +130 -0
  516. pyeql-1.4.0rc9.dist-info/RECORD +519 -0
  517. pyeql-1.4.0rc9.dist-info/WHEEL +5 -0
  518. pyeql-1.4.0rc9.dist-info/licenses/AUTHORS.md +21 -0
  519. pyeql-1.4.0rc9.dist-info/licenses/LICENSE.txt +20 -0
@@ -0,0 +1,1440 @@
1
+ /* The standard CSS for doxygen 1.8.8 */
2
+
3
+ body, table, div, p, dl {
4
+ font: 400 14px/22px Roboto,sans-serif;
5
+ }
6
+
7
+ /* @group Heading Levels */
8
+
9
+ h1.groupheader {
10
+ font-size: 150%;
11
+ }
12
+
13
+ .title {
14
+ font: 400 14px/28px Roboto,sans-serif;
15
+ font-size: 150%;
16
+ font-weight: bold;
17
+ margin: 10px 2px;
18
+ }
19
+
20
+ h2.groupheader {
21
+ border-bottom: 1px solid #879ECB;
22
+ color: #354C7B;
23
+ font-size: 150%;
24
+ font-weight: normal;
25
+ margin-top: 1.75em;
26
+ padding-top: 8px;
27
+ padding-bottom: 4px;
28
+ width: 100%;
29
+ }
30
+
31
+ h3.groupheader {
32
+ font-size: 100%;
33
+ }
34
+
35
+ h1, h2, h3, h4, h5, h6 {
36
+ -webkit-transition: text-shadow 0.5s linear;
37
+ -moz-transition: text-shadow 0.5s linear;
38
+ -ms-transition: text-shadow 0.5s linear;
39
+ -o-transition: text-shadow 0.5s linear;
40
+ transition: text-shadow 0.5s linear;
41
+ margin-right: 15px;
42
+ }
43
+
44
+ h1.glow, h2.glow, h3.glow, h4.glow, h5.glow, h6.glow {
45
+ text-shadow: 0 0 15px cyan;
46
+ }
47
+
48
+ dt {
49
+ font-weight: bold;
50
+ }
51
+
52
+ div.multicol {
53
+ -moz-column-gap: 1em;
54
+ -webkit-column-gap: 1em;
55
+ -moz-column-count: 3;
56
+ -webkit-column-count: 3;
57
+ }
58
+
59
+ p.startli, p.startdd {
60
+ margin-top: 2px;
61
+ }
62
+
63
+ p.starttd {
64
+ margin-top: 0px;
65
+ }
66
+
67
+ p.endli {
68
+ margin-bottom: 0px;
69
+ }
70
+
71
+ p.enddd {
72
+ margin-bottom: 4px;
73
+ }
74
+
75
+ p.endtd {
76
+ margin-bottom: 2px;
77
+ }
78
+
79
+ /* @end */
80
+
81
+ caption {
82
+ font-weight: bold;
83
+ }
84
+
85
+ span.legend {
86
+ font-size: 70%;
87
+ text-align: center;
88
+ }
89
+
90
+ h3.version {
91
+ font-size: 90%;
92
+ text-align: center;
93
+ }
94
+
95
+ div.qindex, div.navtab{
96
+ background-color: #EBEFF6;
97
+ border: 1px solid #A3B4D7;
98
+ text-align: center;
99
+ }
100
+
101
+ div.qindex, div.navpath {
102
+ width: 100%;
103
+ line-height: 140%;
104
+ }
105
+
106
+ div.navtab {
107
+ margin-right: 15px;
108
+ }
109
+
110
+ /* @group Link Styling */
111
+
112
+ a {
113
+ color: #3D578C;
114
+ font-weight: normal;
115
+ text-decoration: none;
116
+ }
117
+
118
+ .contents a:visited {
119
+ color: #4665A2;
120
+ }
121
+
122
+ a:hover {
123
+ text-decoration: underline;
124
+ }
125
+
126
+ a.qindex {
127
+ font-weight: bold;
128
+ }
129
+
130
+ a.qindexHL {
131
+ font-weight: bold;
132
+ background-color: #9CAFD4;
133
+ color: #ffffff;
134
+ border: 1px double #869DCA;
135
+ }
136
+
137
+ .contents a.qindexHL:visited {
138
+ color: #ffffff;
139
+ }
140
+
141
+ a.el {
142
+ font-weight: bold;
143
+ }
144
+
145
+ a.elRef {
146
+ }
147
+
148
+ a.code, a.code:visited, a.line, a.line:visited {
149
+ color: #4665A2;
150
+ }
151
+
152
+ a.codeRef, a.codeRef:visited, a.lineRef, a.lineRef:visited {
153
+ color: #4665A2;
154
+ }
155
+
156
+ /* @end */
157
+
158
+ dl.el {
159
+ margin-left: -1cm;
160
+ }
161
+
162
+ pre.fragment {
163
+ border: 1px solid #C4CFE5;
164
+ background-color: #FBFCFD;
165
+ padding: 4px 6px;
166
+ margin: 4px 8px 4px 2px;
167
+ overflow: auto;
168
+ word-wrap: break-word;
169
+ font-size: 9pt;
170
+ line-height: 125%;
171
+ font-family: monospace, fixed;
172
+ font-size: 105%;
173
+ }
174
+
175
+ div.fragment {
176
+ padding: 4px 6px;
177
+ margin: 4px 8px 4px 2px;
178
+ background-color: #FBFCFD;
179
+ border: 1px solid #C4CFE5;
180
+ }
181
+
182
+ div.line {
183
+ font-family: monospace, fixed;
184
+ font-size: 13px;
185
+ min-height: 13px;
186
+ line-height: 1.0;
187
+ text-wrap: unrestricted;
188
+ white-space: -moz-pre-wrap; /* Moz */
189
+ white-space: -pre-wrap; /* Opera 4-6 */
190
+ white-space: -o-pre-wrap; /* Opera 7 */
191
+ white-space: pre-wrap; /* CSS3 */
192
+ word-wrap: break-word; /* IE 5.5+ */
193
+ text-indent: -53px;
194
+ padding-left: 53px;
195
+ padding-bottom: 0px;
196
+ margin: 0px;
197
+ -webkit-transition-property: background-color, box-shadow;
198
+ -webkit-transition-duration: 0.5s;
199
+ -moz-transition-property: background-color, box-shadow;
200
+ -moz-transition-duration: 0.5s;
201
+ -ms-transition-property: background-color, box-shadow;
202
+ -ms-transition-duration: 0.5s;
203
+ -o-transition-property: background-color, box-shadow;
204
+ -o-transition-duration: 0.5s;
205
+ transition-property: background-color, box-shadow;
206
+ transition-duration: 0.5s;
207
+ }
208
+
209
+ div.line.glow {
210
+ background-color: cyan;
211
+ box-shadow: 0 0 10px cyan;
212
+ }
213
+
214
+
215
+ span.lineno {
216
+ padding-right: 4px;
217
+ text-align: right;
218
+ border-right: 2px solid #0F0;
219
+ background-color: #E8E8E8;
220
+ white-space: pre;
221
+ }
222
+ span.lineno a {
223
+ background-color: #D8D8D8;
224
+ }
225
+
226
+ span.lineno a:hover {
227
+ background-color: #C8C8C8;
228
+ }
229
+
230
+ div.ah {
231
+ background-color: black;
232
+ font-weight: bold;
233
+ color: #ffffff;
234
+ margin-bottom: 3px;
235
+ margin-top: 3px;
236
+ padding: 0.2em;
237
+ border: solid thin #333;
238
+ border-radius: 0.5em;
239
+ -webkit-border-radius: .5em;
240
+ -moz-border-radius: .5em;
241
+ box-shadow: 2px 2px 3px #999;
242
+ -webkit-box-shadow: 2px 2px 3px #999;
243
+ -moz-box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 2px;
244
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#000),color-stop(0.3, #444));
245
+ background-image: -moz-linear-gradient(center top, #eee 0%, #444 40%, #000);
246
+ }
247
+
248
+ div.groupHeader {
249
+ margin-left: 16px;
250
+ margin-top: 12px;
251
+ font-weight: bold;
252
+ }
253
+
254
+ div.groupText {
255
+ margin-left: 16px;
256
+ font-style: italic;
257
+ }
258
+
259
+ body {
260
+ background-color: white;
261
+ color: black;
262
+ margin: 0;
263
+ }
264
+
265
+ div.contents {
266
+ margin-top: 10px;
267
+ margin-left: 12px;
268
+ margin-right: 8px;
269
+ }
270
+
271
+ td.indexkey {
272
+ background-color: #EBEFF6;
273
+ font-weight: bold;
274
+ border: 1px solid #C4CFE5;
275
+ margin: 2px 0px 2px 0;
276
+ padding: 2px 10px;
277
+ white-space: nowrap;
278
+ vertical-align: top;
279
+ }
280
+
281
+ td.indexvalue {
282
+ background-color: #EBEFF6;
283
+ border: 1px solid #C4CFE5;
284
+ padding: 2px 10px;
285
+ margin: 2px 0px;
286
+ }
287
+
288
+ tr.memlist {
289
+ background-color: #EEF1F7;
290
+ }
291
+
292
+ p.formulaDsp {
293
+ text-align: center;
294
+ }
295
+
296
+ img.formulaDsp {
297
+
298
+ }
299
+
300
+ img.formulaInl {
301
+ vertical-align: middle;
302
+ }
303
+
304
+ div.center {
305
+ text-align: center;
306
+ margin-top: 0px;
307
+ margin-bottom: 0px;
308
+ padding: 0px;
309
+ }
310
+
311
+ div.center img {
312
+ border: 0px;
313
+ }
314
+
315
+ address.footer {
316
+ text-align: right;
317
+ padding-right: 12px;
318
+ }
319
+
320
+ img.footer {
321
+ border: 0px;
322
+ vertical-align: middle;
323
+ }
324
+
325
+ /* @group Code Colorization */
326
+
327
+ span.keyword {
328
+ color: #008000
329
+ }
330
+
331
+ span.keywordtype {
332
+ color: #604020
333
+ }
334
+
335
+ span.keywordflow {
336
+ color: #e08000
337
+ }
338
+
339
+ span.comment {
340
+ color: #800000
341
+ }
342
+
343
+ span.preprocessor {
344
+ color: #806020
345
+ }
346
+
347
+ span.stringliteral {
348
+ color: #002080
349
+ }
350
+
351
+ span.charliteral {
352
+ color: #008080
353
+ }
354
+
355
+ span.vhdldigit {
356
+ color: #ff00ff
357
+ }
358
+
359
+ span.vhdlchar {
360
+ color: #000000
361
+ }
362
+
363
+ span.vhdlkeyword {
364
+ color: #700070
365
+ }
366
+
367
+ span.vhdllogic {
368
+ color: #ff0000
369
+ }
370
+
371
+ blockquote {
372
+ background-color: #F7F8FB;
373
+ border-left: 2px solid #9CAFD4;
374
+ margin: 0 24px 0 4px;
375
+ padding: 0 12px 0 16px;
376
+ }
377
+
378
+ /* @end */
379
+
380
+ /*
381
+ .search {
382
+ color: #003399;
383
+ font-weight: bold;
384
+ }
385
+
386
+ form.search {
387
+ margin-bottom: 0px;
388
+ margin-top: 0px;
389
+ }
390
+
391
+ input.search {
392
+ font-size: 75%;
393
+ color: #000080;
394
+ font-weight: normal;
395
+ background-color: #e8eef2;
396
+ }
397
+ */
398
+
399
+ td.tiny {
400
+ font-size: 75%;
401
+ }
402
+
403
+ .dirtab {
404
+ padding: 4px;
405
+ border-collapse: collapse;
406
+ border: 1px solid #A3B4D7;
407
+ }
408
+
409
+ th.dirtab {
410
+ background: #EBEFF6;
411
+ font-weight: bold;
412
+ }
413
+
414
+ hr {
415
+ height: 0px;
416
+ border: none;
417
+ border-top: 1px solid #4A6AAA;
418
+ }
419
+
420
+ hr.footer {
421
+ height: 1px;
422
+ }
423
+
424
+ /* @group Member Descriptions */
425
+
426
+ table.memberdecls {
427
+ border-spacing: 0px;
428
+ padding: 0px;
429
+ }
430
+
431
+ .memberdecls td, .fieldtable tr {
432
+ -webkit-transition-property: background-color, box-shadow;
433
+ -webkit-transition-duration: 0.5s;
434
+ -moz-transition-property: background-color, box-shadow;
435
+ -moz-transition-duration: 0.5s;
436
+ -ms-transition-property: background-color, box-shadow;
437
+ -ms-transition-duration: 0.5s;
438
+ -o-transition-property: background-color, box-shadow;
439
+ -o-transition-duration: 0.5s;
440
+ transition-property: background-color, box-shadow;
441
+ transition-duration: 0.5s;
442
+ }
443
+
444
+ .memberdecls td.glow, .fieldtable tr.glow {
445
+ background-color: cyan;
446
+ box-shadow: 0 0 15px cyan;
447
+ }
448
+
449
+ .mdescLeft, .mdescRight,
450
+ .memItemLeft, .memItemRight,
451
+ .memTemplItemLeft, .memTemplItemRight, .memTemplParams {
452
+ background-color: #F9FAFC;
453
+ border: none;
454
+ margin: 4px;
455
+ padding: 1px 0 0 8px;
456
+ }
457
+
458
+ .mdescLeft, .mdescRight {
459
+ padding: 0px 8px 4px 8px;
460
+ color: #555;
461
+ }
462
+
463
+ .memSeparator {
464
+ border-bottom: 1px solid #DEE4F0;
465
+ line-height: 1px;
466
+ margin: 0px;
467
+ padding: 0px;
468
+ }
469
+
470
+ .memItemLeft, .memTemplItemLeft {
471
+ white-space: nowrap;
472
+ }
473
+
474
+ .memItemRight {
475
+ width: 100%;
476
+ }
477
+
478
+ .memTemplParams {
479
+ color: #4665A2;
480
+ white-space: nowrap;
481
+ font-size: 80%;
482
+ }
483
+
484
+ /* @end */
485
+
486
+ /* @group Member Details */
487
+
488
+ /* Styles for detailed member documentation */
489
+
490
+ .memtemplate {
491
+ font-size: 80%;
492
+ color: #4665A2;
493
+ font-weight: normal;
494
+ margin-left: 9px;
495
+ }
496
+
497
+ .memnav {
498
+ background-color: #EBEFF6;
499
+ border: 1px solid #A3B4D7;
500
+ text-align: center;
501
+ margin: 2px;
502
+ margin-right: 15px;
503
+ padding: 2px;
504
+ }
505
+
506
+ .mempage {
507
+ width: 100%;
508
+ }
509
+
510
+ .memitem {
511
+ padding: 0;
512
+ margin-bottom: 10px;
513
+ margin-right: 5px;
514
+ -webkit-transition: box-shadow 0.5s linear;
515
+ -moz-transition: box-shadow 0.5s linear;
516
+ -ms-transition: box-shadow 0.5s linear;
517
+ -o-transition: box-shadow 0.5s linear;
518
+ transition: box-shadow 0.5s linear;
519
+ display: table !important;
520
+ width: 100%;
521
+ }
522
+
523
+ .memitem.glow {
524
+ box-shadow: 0 0 15px cyan;
525
+ }
526
+
527
+ .memname {
528
+ font-weight: bold;
529
+ margin-left: 6px;
530
+ }
531
+
532
+ .memname td {
533
+ vertical-align: bottom;
534
+ }
535
+
536
+ .memproto, dl.reflist dt {
537
+ border-top: 1px solid #A8B8D9;
538
+ border-left: 1px solid #A8B8D9;
539
+ border-right: 1px solid #A8B8D9;
540
+ padding: 6px 0px 6px 0px;
541
+ color: #253555;
542
+ font-weight: bold;
543
+ text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9);
544
+ background-image:url('nav_f.png');
545
+ background-repeat:repeat-x;
546
+ background-color: #E2E8F2;
547
+ /* opera specific markup */
548
+ box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
549
+ border-top-right-radius: 4px;
550
+ border-top-left-radius: 4px;
551
+ /* firefox specific markup */
552
+ -moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px;
553
+ -moz-border-radius-topright: 4px;
554
+ -moz-border-radius-topleft: 4px;
555
+ /* webkit specific markup */
556
+ -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
557
+ -webkit-border-top-right-radius: 4px;
558
+ -webkit-border-top-left-radius: 4px;
559
+
560
+ }
561
+
562
+ .memdoc, dl.reflist dd {
563
+ border-bottom: 1px solid #A8B8D9;
564
+ border-left: 1px solid #A8B8D9;
565
+ border-right: 1px solid #A8B8D9;
566
+ padding: 6px 10px 2px 10px;
567
+ background-color: #FBFCFD;
568
+ border-top-width: 0;
569
+ background-image:url('nav_g.png');
570
+ background-repeat:repeat-x;
571
+ background-color: #FFFFFF;
572
+ /* opera specific markup */
573
+ border-bottom-left-radius: 4px;
574
+ border-bottom-right-radius: 4px;
575
+ box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
576
+ /* firefox specific markup */
577
+ -moz-border-radius-bottomleft: 4px;
578
+ -moz-border-radius-bottomright: 4px;
579
+ -moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px;
580
+ /* webkit specific markup */
581
+ -webkit-border-bottom-left-radius: 4px;
582
+ -webkit-border-bottom-right-radius: 4px;
583
+ -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
584
+ }
585
+
586
+ dl.reflist dt {
587
+ padding: 5px;
588
+ }
589
+
590
+ dl.reflist dd {
591
+ margin: 0px 0px 10px 0px;
592
+ padding: 5px;
593
+ }
594
+
595
+ .paramkey {
596
+ text-align: right;
597
+ }
598
+
599
+ .paramtype {
600
+ white-space: nowrap;
601
+ }
602
+
603
+ .paramname {
604
+ color: #602020;
605
+ white-space: nowrap;
606
+ }
607
+ .paramname em {
608
+ font-style: normal;
609
+ }
610
+ .paramname code {
611
+ line-height: 14px;
612
+ }
613
+
614
+ .params, .retval, .exception, .tparams {
615
+ margin-left: 0px;
616
+ padding-left: 0px;
617
+ }
618
+
619
+ .params .paramname, .retval .paramname {
620
+ font-weight: bold;
621
+ vertical-align: top;
622
+ }
623
+
624
+ .params .paramtype {
625
+ font-style: italic;
626
+ vertical-align: top;
627
+ }
628
+
629
+ .params .paramdir {
630
+ font-family: "courier new",courier,monospace;
631
+ vertical-align: top;
632
+ }
633
+
634
+ table.mlabels {
635
+ border-spacing: 0px;
636
+ }
637
+
638
+ td.mlabels-left {
639
+ width: 100%;
640
+ padding: 0px;
641
+ }
642
+
643
+ td.mlabels-right {
644
+ vertical-align: bottom;
645
+ padding: 0px;
646
+ white-space: nowrap;
647
+ }
648
+
649
+ span.mlabels {
650
+ margin-left: 8px;
651
+ }
652
+
653
+ span.mlabel {
654
+ background-color: #728DC1;
655
+ border-top:1px solid #5373B4;
656
+ border-left:1px solid #5373B4;
657
+ border-right:1px solid #C4CFE5;
658
+ border-bottom:1px solid #C4CFE5;
659
+ text-shadow: none;
660
+ color: white;
661
+ margin-right: 4px;
662
+ padding: 2px 3px;
663
+ border-radius: 3px;
664
+ font-size: 7pt;
665
+ white-space: nowrap;
666
+ vertical-align: middle;
667
+ }
668
+
669
+
670
+
671
+ /* @end */
672
+
673
+ /* these are for tree view inside a (index) page */
674
+
675
+ div.directory {
676
+ margin: 10px 0px;
677
+ border-top: 1px solid #9CAFD4;
678
+ border-bottom: 1px solid #9CAFD4;
679
+ width: 100%;
680
+ }
681
+
682
+ .directory table {
683
+ border-collapse:collapse;
684
+ }
685
+
686
+ .directory td {
687
+ margin: 0px;
688
+ padding: 0px;
689
+ vertical-align: top;
690
+ }
691
+
692
+ .directory td.entry {
693
+ white-space: nowrap;
694
+ padding-right: 6px;
695
+ padding-top: 3px;
696
+ }
697
+
698
+ .directory td.entry a {
699
+ outline:none;
700
+ }
701
+
702
+ .directory td.entry a img {
703
+ border: none;
704
+ }
705
+
706
+ .directory td.desc {
707
+ width: 100%;
708
+ padding-left: 6px;
709
+ padding-right: 6px;
710
+ padding-top: 3px;
711
+ border-left: 1px solid rgba(0,0,0,0.05);
712
+ }
713
+
714
+ .directory tr.even {
715
+ padding-left: 6px;
716
+ background-color: #F7F8FB;
717
+ }
718
+
719
+ .directory img {
720
+ vertical-align: -30%;
721
+ }
722
+
723
+ .directory .levels {
724
+ white-space: nowrap;
725
+ width: 100%;
726
+ text-align: right;
727
+ font-size: 9pt;
728
+ }
729
+
730
+ .directory .levels span {
731
+ cursor: pointer;
732
+ padding-left: 2px;
733
+ padding-right: 2px;
734
+ color: #3D578C;
735
+ }
736
+
737
+ .arrow {
738
+ color: #9CAFD4;
739
+ -webkit-user-select: none;
740
+ -khtml-user-select: none;
741
+ -moz-user-select: none;
742
+ -ms-user-select: none;
743
+ user-select: none;
744
+ cursor: pointer;
745
+ font-size: 80%;
746
+ display: inline-block;
747
+ width: 16px;
748
+ height: 22px;
749
+ }
750
+
751
+ .icon {
752
+ font-family: Arial, Helvetica;
753
+ font-weight: bold;
754
+ font-size: 12px;
755
+ height: 14px;
756
+ width: 16px;
757
+ display: inline-block;
758
+ background-color: #728DC1;
759
+ color: white;
760
+ text-align: center;
761
+ border-radius: 4px;
762
+ margin-left: 2px;
763
+ margin-right: 2px;
764
+ }
765
+
766
+ .icona {
767
+ width: 24px;
768
+ height: 22px;
769
+ display: inline-block;
770
+ }
771
+
772
+ .iconfopen {
773
+ width: 24px;
774
+ height: 18px;
775
+ margin-bottom: 4px;
776
+ background-image:url('ftv2folderopen.png');
777
+ background-position: 0px -4px;
778
+ background-repeat: repeat-y;
779
+ vertical-align:top;
780
+ display: inline-block;
781
+ }
782
+
783
+ .iconfclosed {
784
+ width: 24px;
785
+ height: 18px;
786
+ margin-bottom: 4px;
787
+ background-image:url('ftv2folderclosed.png');
788
+ background-position: 0px -4px;
789
+ background-repeat: repeat-y;
790
+ vertical-align:top;
791
+ display: inline-block;
792
+ }
793
+
794
+ .icondoc {
795
+ width: 24px;
796
+ height: 18px;
797
+ margin-bottom: 4px;
798
+ background-image:url('ftv2doc.png');
799
+ background-position: 0px -4px;
800
+ background-repeat: repeat-y;
801
+ vertical-align:top;
802
+ display: inline-block;
803
+ }
804
+
805
+ table.directory {
806
+ font: 400 14px Roboto,sans-serif;
807
+ }
808
+
809
+ /* @end */
810
+
811
+ div.dynheader {
812
+ margin-top: 8px;
813
+ -webkit-touch-callout: none;
814
+ -webkit-user-select: none;
815
+ -khtml-user-select: none;
816
+ -moz-user-select: none;
817
+ -ms-user-select: none;
818
+ user-select: none;
819
+ }
820
+
821
+ address {
822
+ font-style: normal;
823
+ color: #2A3D61;
824
+ }
825
+
826
+ table.doxtable {
827
+ border-collapse:collapse;
828
+ margin-top: 4px;
829
+ margin-bottom: 4px;
830
+ }
831
+
832
+ table.doxtable td, table.doxtable th {
833
+ border: 1px solid #2D4068;
834
+ padding: 3px 7px 2px;
835
+ }
836
+
837
+ table.doxtable th {
838
+ background-color: #374F7F;
839
+ color: #FFFFFF;
840
+ font-size: 110%;
841
+ padding-bottom: 4px;
842
+ padding-top: 5px;
843
+ }
844
+
845
+ table.fieldtable {
846
+ /*width: 100%;*/
847
+ margin-bottom: 10px;
848
+ border: 1px solid #A8B8D9;
849
+ border-spacing: 0px;
850
+ -moz-border-radius: 4px;
851
+ -webkit-border-radius: 4px;
852
+ border-radius: 4px;
853
+ -moz-box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 2px;
854
+ -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15);
855
+ box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15);
856
+ }
857
+
858
+ .fieldtable td, .fieldtable th {
859
+ padding: 3px 7px 2px;
860
+ }
861
+
862
+ .fieldtable td.fieldtype, .fieldtable td.fieldname {
863
+ white-space: nowrap;
864
+ border-right: 1px solid #A8B8D9;
865
+ border-bottom: 1px solid #A8B8D9;
866
+ vertical-align: top;
867
+ }
868
+
869
+ .fieldtable td.fieldname {
870
+ padding-top: 3px;
871
+ }
872
+
873
+ .fieldtable td.fielddoc {
874
+ border-bottom: 1px solid #A8B8D9;
875
+ /*width: 100%;*/
876
+ }
877
+
878
+ .fieldtable td.fielddoc p:first-child {
879
+ margin-top: 0px;
880
+ }
881
+
882
+ .fieldtable td.fielddoc p:last-child {
883
+ margin-bottom: 2px;
884
+ }
885
+
886
+ .fieldtable tr:last-child td {
887
+ border-bottom: none;
888
+ }
889
+
890
+ .fieldtable th {
891
+ background-image:url('nav_f.png');
892
+ background-repeat:repeat-x;
893
+ background-color: #E2E8F2;
894
+ font-size: 90%;
895
+ color: #253555;
896
+ padding-bottom: 4px;
897
+ padding-top: 5px;
898
+ text-align:left;
899
+ -moz-border-radius-topleft: 4px;
900
+ -moz-border-radius-topright: 4px;
901
+ -webkit-border-top-left-radius: 4px;
902
+ -webkit-border-top-right-radius: 4px;
903
+ border-top-left-radius: 4px;
904
+ border-top-right-radius: 4px;
905
+ border-bottom: 1px solid #A8B8D9;
906
+ }
907
+
908
+
909
+ .tabsearch {
910
+ top: 0px;
911
+ left: 10px;
912
+ height: 36px;
913
+ background-image: url('tab_b.png');
914
+ z-index: 101;
915
+ overflow: hidden;
916
+ font-size: 13px;
917
+ }
918
+
919
+ .navpath ul
920
+ {
921
+ font-size: 11px;
922
+ background-image:url('tab_b.png');
923
+ background-repeat:repeat-x;
924
+ background-position: 0 -5px;
925
+ height:30px;
926
+ line-height:30px;
927
+ color:#8AA0CC;
928
+ border:solid 1px #C2CDE4;
929
+ overflow:hidden;
930
+ margin:0px;
931
+ padding:0px;
932
+ }
933
+
934
+ .navpath li
935
+ {
936
+ list-style-type:none;
937
+ float:left;
938
+ padding-left:10px;
939
+ padding-right:15px;
940
+ background-image:url('bc_s.png');
941
+ background-repeat:no-repeat;
942
+ background-position:right;
943
+ color:#364D7C;
944
+ }
945
+
946
+ .navpath li.navelem a
947
+ {
948
+ height:32px;
949
+ display:block;
950
+ text-decoration: none;
951
+ outline: none;
952
+ color: #283A5D;
953
+ font-family: 'Lucida Grande',Geneva,Helvetica,Arial,sans-serif;
954
+ text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9);
955
+ text-decoration: none;
956
+ }
957
+
958
+ .navpath li.navelem a:hover
959
+ {
960
+ color:#6884BD;
961
+ }
962
+
963
+ .navpath li.footer
964
+ {
965
+ list-style-type:none;
966
+ float:right;
967
+ padding-left:10px;
968
+ padding-right:15px;
969
+ background-image:none;
970
+ background-repeat:no-repeat;
971
+ background-position:right;
972
+ color:#364D7C;
973
+ font-size: 8pt;
974
+ }
975
+
976
+
977
+ div.summary
978
+ {
979
+ float: right;
980
+ font-size: 8pt;
981
+ padding-right: 5px;
982
+ width: 50%;
983
+ text-align: right;
984
+ }
985
+
986
+ div.summary a
987
+ {
988
+ white-space: nowrap;
989
+ }
990
+
991
+ div.ingroups
992
+ {
993
+ font-size: 8pt;
994
+ width: 50%;
995
+ text-align: left;
996
+ }
997
+
998
+ div.ingroups a
999
+ {
1000
+ white-space: nowrap;
1001
+ }
1002
+
1003
+ div.header
1004
+ {
1005
+ background-image:url('nav_h.png');
1006
+ background-repeat:repeat-x;
1007
+ background-color: #F9FAFC;
1008
+ margin: 0px;
1009
+ border-bottom: 1px solid #C4CFE5;
1010
+ }
1011
+
1012
+ div.headertitle
1013
+ {
1014
+ padding: 5px 5px 5px 10px;
1015
+ }
1016
+
1017
+ dl
1018
+ {
1019
+ padding: 0 0 0 10px;
1020
+ }
1021
+
1022
+ /* dl.note, dl.warning, dl.attention, dl.pre, dl.post, dl.invariant, dl.deprecated, dl.todo, dl.test, dl.bug */
1023
+ dl.section
1024
+ {
1025
+ margin-left: 0px;
1026
+ padding-left: 0px;
1027
+ }
1028
+
1029
+ dl.note
1030
+ {
1031
+ margin-left:-7px;
1032
+ padding-left: 3px;
1033
+ border-left:4px solid;
1034
+ border-color: #D0C000;
1035
+ }
1036
+
1037
+ dl.warning, dl.attention
1038
+ {
1039
+ margin-left:-7px;
1040
+ padding-left: 3px;
1041
+ border-left:4px solid;
1042
+ border-color: #FF0000;
1043
+ }
1044
+
1045
+ dl.pre, dl.post, dl.invariant
1046
+ {
1047
+ margin-left:-7px;
1048
+ padding-left: 3px;
1049
+ border-left:4px solid;
1050
+ border-color: #00D000;
1051
+ }
1052
+
1053
+ dl.deprecated
1054
+ {
1055
+ margin-left:-7px;
1056
+ padding-left: 3px;
1057
+ border-left:4px solid;
1058
+ border-color: #505050;
1059
+ }
1060
+
1061
+ dl.todo
1062
+ {
1063
+ margin-left:-7px;
1064
+ padding-left: 3px;
1065
+ border-left:4px solid;
1066
+ border-color: #00C0E0;
1067
+ }
1068
+
1069
+ dl.test
1070
+ {
1071
+ margin-left:-7px;
1072
+ padding-left: 3px;
1073
+ border-left:4px solid;
1074
+ border-color: #3030E0;
1075
+ }
1076
+
1077
+ dl.bug
1078
+ {
1079
+ margin-left:-7px;
1080
+ padding-left: 3px;
1081
+ border-left:4px solid;
1082
+ border-color: #C08050;
1083
+ }
1084
+
1085
+ dl.section dd {
1086
+ margin-bottom: 6px;
1087
+ }
1088
+
1089
+
1090
+ #projectlogo
1091
+ {
1092
+ text-align: center;
1093
+ vertical-align: bottom;
1094
+ border-collapse: separate;
1095
+ }
1096
+
1097
+ #projectlogo img
1098
+ {
1099
+ border: 0px none;
1100
+ }
1101
+
1102
+ #projectname
1103
+ {
1104
+ font: 300% Tahoma, Arial,sans-serif;
1105
+ margin: 0px;
1106
+ padding: 2px 0px;
1107
+ }
1108
+
1109
+ #projectbrief
1110
+ {
1111
+ font: 120% Tahoma, Arial,sans-serif;
1112
+ margin: 0px;
1113
+ padding: 0px;
1114
+ }
1115
+
1116
+ #projectnumber
1117
+ {
1118
+ font: 50% Tahoma, Arial,sans-serif;
1119
+ margin: 0px;
1120
+ padding: 0px;
1121
+ }
1122
+
1123
+ #titlearea
1124
+ {
1125
+ padding: 0px;
1126
+ margin: 0px;
1127
+ width: 100%;
1128
+ border-bottom: 1px solid #5373B4;
1129
+ }
1130
+
1131
+ .image
1132
+ {
1133
+ text-align: center;
1134
+ }
1135
+
1136
+ .dotgraph
1137
+ {
1138
+ text-align: center;
1139
+ }
1140
+
1141
+ .mscgraph
1142
+ {
1143
+ text-align: center;
1144
+ }
1145
+
1146
+ .diagraph
1147
+ {
1148
+ text-align: center;
1149
+ }
1150
+
1151
+ .caption
1152
+ {
1153
+ font-weight: bold;
1154
+ }
1155
+
1156
+ div.zoom
1157
+ {
1158
+ border: 1px solid #90A5CE;
1159
+ }
1160
+
1161
+ dl.citelist {
1162
+ margin-bottom:50px;
1163
+ }
1164
+
1165
+ dl.citelist dt {
1166
+ color:#334975;
1167
+ float:left;
1168
+ font-weight:bold;
1169
+ margin-right:10px;
1170
+ padding:5px;
1171
+ }
1172
+
1173
+ dl.citelist dd {
1174
+ margin:2px 0;
1175
+ padding:5px 0;
1176
+ }
1177
+
1178
+ div.toc {
1179
+ padding: 14px 25px;
1180
+ background-color: #F4F6FA;
1181
+ border: 1px solid #D8DFEE;
1182
+ border-radius: 7px 7px 7px 7px;
1183
+ float: right;
1184
+ height: auto;
1185
+ margin: 0 20px 10px 10px;
1186
+ width: 200px;
1187
+ }
1188
+
1189
+ div.toc li {
1190
+ background: url("bdwn.png") no-repeat scroll 0 5px transparent;
1191
+ font: 10px/1.2 Verdana,DejaVu Sans,Geneva,sans-serif;
1192
+ margin-top: 5px;
1193
+ padding-left: 10px;
1194
+ padding-top: 2px;
1195
+ }
1196
+
1197
+ div.toc h3 {
1198
+ font: bold 12px/1.2 Arial,FreeSans,sans-serif;
1199
+ color: #4665A2;
1200
+ border-bottom: 0 none;
1201
+ margin: 0;
1202
+ }
1203
+
1204
+ div.toc ul {
1205
+ list-style: none outside none;
1206
+ border: medium none;
1207
+ padding: 0px;
1208
+ }
1209
+
1210
+ div.toc li.level1 {
1211
+ margin-left: 0px;
1212
+ }
1213
+
1214
+ div.toc li.level2 {
1215
+ margin-left: 15px;
1216
+ }
1217
+
1218
+ div.toc li.level3 {
1219
+ margin-left: 30px;
1220
+ }
1221
+
1222
+ div.toc li.level4 {
1223
+ margin-left: 45px;
1224
+ }
1225
+
1226
+ .inherit_header {
1227
+ font-weight: bold;
1228
+ color: gray;
1229
+ cursor: pointer;
1230
+ -webkit-touch-callout: none;
1231
+ -webkit-user-select: none;
1232
+ -khtml-user-select: none;
1233
+ -moz-user-select: none;
1234
+ -ms-user-select: none;
1235
+ user-select: none;
1236
+ }
1237
+
1238
+ .inherit_header td {
1239
+ padding: 6px 0px 2px 5px;
1240
+ }
1241
+
1242
+ .inherit {
1243
+ display: none;
1244
+ }
1245
+
1246
+ tr.heading h2 {
1247
+ margin-top: 12px;
1248
+ margin-bottom: 4px;
1249
+ }
1250
+
1251
+ /* tooltip related style info */
1252
+
1253
+ .ttc {
1254
+ position: absolute;
1255
+ display: none;
1256
+ }
1257
+
1258
+ #powerTip {
1259
+ cursor: default;
1260
+ white-space: nowrap;
1261
+ background-color: white;
1262
+ border: 1px solid gray;
1263
+ border-radius: 4px 4px 4px 4px;
1264
+ box-shadow: 1px 1px 7px gray;
1265
+ display: none;
1266
+ font-size: smaller;
1267
+ max-width: 80%;
1268
+ opacity: 0.9;
1269
+ padding: 1ex 1em 1em;
1270
+ position: absolute;
1271
+ z-index: 2147483647;
1272
+ }
1273
+
1274
+ #powerTip div.ttdoc {
1275
+ color: grey;
1276
+ font-style: italic;
1277
+ }
1278
+
1279
+ #powerTip div.ttname a {
1280
+ font-weight: bold;
1281
+ }
1282
+
1283
+ #powerTip div.ttname {
1284
+ font-weight: bold;
1285
+ }
1286
+
1287
+ #powerTip div.ttdeci {
1288
+ color: #006318;
1289
+ }
1290
+
1291
+ #powerTip div {
1292
+ margin: 0px;
1293
+ padding: 0px;
1294
+ font: 12px/16px Roboto,sans-serif;
1295
+ }
1296
+
1297
+ #powerTip:before, #powerTip:after {
1298
+ content: "";
1299
+ position: absolute;
1300
+ margin: 0px;
1301
+ }
1302
+
1303
+ #powerTip.n:after, #powerTip.n:before,
1304
+ #powerTip.s:after, #powerTip.s:before,
1305
+ #powerTip.w:after, #powerTip.w:before,
1306
+ #powerTip.e:after, #powerTip.e:before,
1307
+ #powerTip.ne:after, #powerTip.ne:before,
1308
+ #powerTip.se:after, #powerTip.se:before,
1309
+ #powerTip.nw:after, #powerTip.nw:before,
1310
+ #powerTip.sw:after, #powerTip.sw:before {
1311
+ border: solid transparent;
1312
+ content: " ";
1313
+ height: 0;
1314
+ width: 0;
1315
+ position: absolute;
1316
+ }
1317
+
1318
+ #powerTip.n:after, #powerTip.s:after,
1319
+ #powerTip.w:after, #powerTip.e:after,
1320
+ #powerTip.nw:after, #powerTip.ne:after,
1321
+ #powerTip.sw:after, #powerTip.se:after {
1322
+ border-color: rgba(255, 255, 255, 0);
1323
+ }
1324
+
1325
+ #powerTip.n:before, #powerTip.s:before,
1326
+ #powerTip.w:before, #powerTip.e:before,
1327
+ #powerTip.nw:before, #powerTip.ne:before,
1328
+ #powerTip.sw:before, #powerTip.se:before {
1329
+ border-color: rgba(128, 128, 128, 0);
1330
+ }
1331
+
1332
+ #powerTip.n:after, #powerTip.n:before,
1333
+ #powerTip.ne:after, #powerTip.ne:before,
1334
+ #powerTip.nw:after, #powerTip.nw:before {
1335
+ top: 100%;
1336
+ }
1337
+
1338
+ #powerTip.n:after, #powerTip.ne:after, #powerTip.nw:after {
1339
+ border-top-color: #ffffff;
1340
+ border-width: 10px;
1341
+ margin: 0px -10px;
1342
+ }
1343
+ #powerTip.n:before {
1344
+ border-top-color: #808080;
1345
+ border-width: 11px;
1346
+ margin: 0px -11px;
1347
+ }
1348
+ #powerTip.n:after, #powerTip.n:before {
1349
+ left: 50%;
1350
+ }
1351
+
1352
+ #powerTip.nw:after, #powerTip.nw:before {
1353
+ right: 14px;
1354
+ }
1355
+
1356
+ #powerTip.ne:after, #powerTip.ne:before {
1357
+ left: 14px;
1358
+ }
1359
+
1360
+ #powerTip.s:after, #powerTip.s:before,
1361
+ #powerTip.se:after, #powerTip.se:before,
1362
+ #powerTip.sw:after, #powerTip.sw:before {
1363
+ bottom: 100%;
1364
+ }
1365
+
1366
+ #powerTip.s:after, #powerTip.se:after, #powerTip.sw:after {
1367
+ border-bottom-color: #ffffff;
1368
+ border-width: 10px;
1369
+ margin: 0px -10px;
1370
+ }
1371
+
1372
+ #powerTip.s:before, #powerTip.se:before, #powerTip.sw:before {
1373
+ border-bottom-color: #808080;
1374
+ border-width: 11px;
1375
+ margin: 0px -11px;
1376
+ }
1377
+
1378
+ #powerTip.s:after, #powerTip.s:before {
1379
+ left: 50%;
1380
+ }
1381
+
1382
+ #powerTip.sw:after, #powerTip.sw:before {
1383
+ right: 14px;
1384
+ }
1385
+
1386
+ #powerTip.se:after, #powerTip.se:before {
1387
+ left: 14px;
1388
+ }
1389
+
1390
+ #powerTip.e:after, #powerTip.e:before {
1391
+ left: 100%;
1392
+ }
1393
+ #powerTip.e:after {
1394
+ border-left-color: #ffffff;
1395
+ border-width: 10px;
1396
+ top: 50%;
1397
+ margin-top: -10px;
1398
+ }
1399
+ #powerTip.e:before {
1400
+ border-left-color: #808080;
1401
+ border-width: 11px;
1402
+ top: 50%;
1403
+ margin-top: -11px;
1404
+ }
1405
+
1406
+ #powerTip.w:after, #powerTip.w:before {
1407
+ right: 100%;
1408
+ }
1409
+ #powerTip.w:after {
1410
+ border-right-color: #ffffff;
1411
+ border-width: 10px;
1412
+ top: 50%;
1413
+ margin-top: -10px;
1414
+ }
1415
+ #powerTip.w:before {
1416
+ border-right-color: #808080;
1417
+ border-width: 11px;
1418
+ top: 50%;
1419
+ margin-top: -11px;
1420
+ }
1421
+
1422
+ @media print
1423
+ {
1424
+ #top { display: none; }
1425
+ #side-nav { display: none; }
1426
+ #nav-path { display: none; }
1427
+ body { overflow:visible; }
1428
+ h1, h2, h3, h4, h5, h6 { page-break-after: avoid; }
1429
+ .summary { display: none; }
1430
+ .memitem { page-break-inside: avoid; }
1431
+ #doc-content
1432
+ {
1433
+ margin-left:0 !important;
1434
+ height:auto !important;
1435
+ width:auto !important;
1436
+ overflow:inherit;
1437
+ display:inline;
1438
+ }
1439
+ }
1440
+