STLExtract 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1967) hide show
  1. data/.gitignore +14 -0
  2. data/Gemfile +4 -0
  3. data/LICENSE.txt +22 -0
  4. data/README.md +66 -0
  5. data/Rakefile +2 -0
  6. data/STLExtract-0.0.1.gem +0 -0
  7. data/STLExtract.gemspec +23 -0
  8. data/Slic3r/Linux/bin/slic3r +0 -0
  9. data/Slic3r/Linux/dll/libGLU.so +1 -0
  10. data/Slic3r/Linux/dll/libGLU.so.1 +1 -0
  11. data/Slic3r/Linux/dll/libGLU.so.1.3.08004 +0 -0
  12. data/Slic3r/Linux/dll/libperl.so +0 -0
  13. data/Slic3r/Linux/dll/libwx_baseu-2.9.so +1 -0
  14. data/Slic3r/Linux/dll/libwx_baseu-2.9.so.3 +1 -0
  15. data/Slic3r/Linux/dll/libwx_baseu-2.9.so.3.0.0 +0 -0
  16. data/Slic3r/Linux/dll/libwx_baseu_net-2.9.so +1 -0
  17. data/Slic3r/Linux/dll/libwx_baseu_net-2.9.so.3 +1 -0
  18. data/Slic3r/Linux/dll/libwx_baseu_net-2.9.so.3.0.0 +0 -0
  19. data/Slic3r/Linux/dll/libwx_gtk2u_adv-2.9.so +1 -0
  20. data/Slic3r/Linux/dll/libwx_gtk2u_adv-2.9.so.3 +1 -0
  21. data/Slic3r/Linux/dll/libwx_gtk2u_adv-2.9.so.3.0.0 +0 -0
  22. data/Slic3r/Linux/dll/libwx_gtk2u_core-2.9.so +1 -0
  23. data/Slic3r/Linux/dll/libwx_gtk2u_core-2.9.so.3 +1 -0
  24. data/Slic3r/Linux/dll/libwx_gtk2u_core-2.9.so.3.0.0 +0 -0
  25. data/Slic3r/Linux/dll/libwx_gtk2u_gl-2.9.so +1 -0
  26. data/Slic3r/Linux/dll/libwx_gtk2u_gl-2.9.so.3 +1 -0
  27. data/Slic3r/Linux/dll/libwx_gtk2u_gl-2.9.so.3.0.0 +0 -0
  28. data/Slic3r/Linux/dll/libwx_gtk2u_html-2.9.so +1 -0
  29. data/Slic3r/Linux/dll/libwx_gtk2u_html-2.9.so.3 +1 -0
  30. data/Slic3r/Linux/dll/libwx_gtk2u_html-2.9.so.3.0.0 +0 -0
  31. data/Slic3r/Linux/lib/std/Authen/SASL.pm +130 -0
  32. data/Slic3r/Linux/lib/std/Authen/SASL/CRAM_MD5.pm +18 -0
  33. data/Slic3r/Linux/lib/std/Authen/SASL/EXTERNAL.pm +18 -0
  34. data/Slic3r/Linux/lib/std/Authen/SASL/Perl.pm +344 -0
  35. data/Slic3r/Linux/lib/std/Authen/SASL/Perl/ANONYMOUS.pm +93 -0
  36. data/Slic3r/Linux/lib/std/Authen/SASL/Perl/CRAM_MD5.pm +105 -0
  37. data/Slic3r/Linux/lib/std/Authen/SASL/Perl/DIGEST_MD5.pm +877 -0
  38. data/Slic3r/Linux/lib/std/Authen/SASL/Perl/EXTERNAL.pm +97 -0
  39. data/Slic3r/Linux/lib/std/Authen/SASL/Perl/GSSAPI.pm +375 -0
  40. data/Slic3r/Linux/lib/std/Authen/SASL/Perl/LOGIN.pm +216 -0
  41. data/Slic3r/Linux/lib/std/Authen/SASL/Perl/PLAIN.pm +182 -0
  42. data/Slic3r/Linux/lib/std/B.pm +1202 -0
  43. data/Slic3r/Linux/lib/std/B/Deparse.pm +4900 -0
  44. data/Slic3r/Linux/lib/std/CPAN/Config.pm +55 -0
  45. data/Slic3r/Linux/lib/std/Cava/Global.pm +20 -0
  46. data/Slic3r/Linux/lib/std/Cava/Project.pm +19 -0
  47. data/Slic3r/Linux/lib/std/Class/Accessor.pm +744 -0
  48. data/Slic3r/Linux/lib/std/Class/Method/Modifiers.pm +481 -0
  49. data/Slic3r/Linux/lib/std/Class/Struct.pm +636 -0
  50. data/Slic3r/Linux/lib/std/Class/XSAccessor.pm +326 -0
  51. data/Slic3r/Linux/lib/std/Class/XSAccessor/Heavy.pm +76 -0
  52. data/Slic3r/Linux/lib/std/Compress/Raw/Bzip2.pm +361 -0
  53. data/Slic3r/Linux/lib/std/Compress/Raw/Zlib.pm +1429 -0
  54. data/Slic3r/Linux/lib/std/Config.pm +110 -0
  55. data/Slic3r/Linux/lib/std/Config_git.pl +12 -0
  56. data/Slic3r/Linux/lib/std/Config_heavy.pl +1355 -0
  57. data/Slic3r/Linux/lib/std/Crypt/CBC.pm +1050 -0
  58. data/Slic3r/Linux/lib/std/Crypt/SSLeay.pm +457 -0
  59. data/Slic3r/Linux/lib/std/Crypt/SSLeay/CTX.pm +4 -0
  60. data/Slic3r/Linux/lib/std/Crypt/SSLeay/Conn.pm +4 -0
  61. data/Slic3r/Linux/lib/std/Crypt/SSLeay/Err.pm +4 -0
  62. data/Slic3r/Linux/lib/std/Crypt/SSLeay/MainContext.pm +42 -0
  63. data/Slic3r/Linux/lib/std/Crypt/SSLeay/X509.pm +26 -0
  64. data/Slic3r/Linux/lib/std/Cwd.pm +855 -0
  65. data/Slic3r/Linux/lib/std/Data/Dumper.pm +1306 -0
  66. data/Slic3r/Linux/lib/std/Data/UUID.pm +204 -0
  67. data/Slic3r/Linux/lib/std/Devel/GlobalDestruction.pm +110 -0
  68. data/Slic3r/Linux/lib/std/Digest/HMAC.pm +120 -0
  69. data/Slic3r/Linux/lib/std/Digest/HMAC_MD5.pm +71 -0
  70. data/Slic3r/Linux/lib/std/Digest/MD5.pm +376 -0
  71. data/Slic3r/Linux/lib/std/Digest/SHA.pm +701 -0
  72. data/Slic3r/Linux/lib/std/Digest/base.pm +100 -0
  73. data/Slic3r/Linux/lib/std/Encode.pm +977 -0
  74. data/Slic3r/Linux/lib/std/Encode/Alias.pm +384 -0
  75. data/Slic3r/Linux/lib/std/Encode/Byte.pm +120 -0
  76. data/Slic3r/Linux/lib/std/Encode/CJKConstants.pm +66 -0
  77. data/Slic3r/Linux/lib/std/Encode/CN.pm +74 -0
  78. data/Slic3r/Linux/lib/std/Encode/CN/HZ.pm +198 -0
  79. data/Slic3r/Linux/lib/std/Encode/Config.pm +170 -0
  80. data/Slic3r/Linux/lib/std/Encode/EBCDIC.pm +45 -0
  81. data/Slic3r/Linux/lib/std/Encode/Encoder.pm +253 -0
  82. data/Slic3r/Linux/lib/std/Encode/Encoding.pm +360 -0
  83. data/Slic3r/Linux/lib/std/Encode/GSM0338.pm +292 -0
  84. data/Slic3r/Linux/lib/std/Encode/Guess.pm +355 -0
  85. data/Slic3r/Linux/lib/std/Encode/JP.pm +95 -0
  86. data/Slic3r/Linux/lib/std/Encode/JP/H2Z.pm +176 -0
  87. data/Slic3r/Linux/lib/std/Encode/JP/JIS7.pm +165 -0
  88. data/Slic3r/Linux/lib/std/Encode/KR.pm +69 -0
  89. data/Slic3r/Linux/lib/std/Encode/KR/2022_KR.pm +81 -0
  90. data/Slic3r/Linux/lib/std/Encode/Locale.pm +348 -0
  91. data/Slic3r/Linux/lib/std/Encode/MIME/Header.pm +242 -0
  92. data/Slic3r/Linux/lib/std/Encode/MIME/Header/ISO_2022_JP.pm +131 -0
  93. data/Slic3r/Linux/lib/std/Encode/MIME/Name.pm +94 -0
  94. data/Slic3r/Linux/lib/std/Encode/Symbol.pm +44 -0
  95. data/Slic3r/Linux/lib/std/Encode/TW.pm +75 -0
  96. data/Slic3r/Linux/lib/std/Encode/Unicode.pm +270 -0
  97. data/Slic3r/Linux/lib/std/Encode/Unicode/UTF7.pm +130 -0
  98. data/Slic3r/Linux/lib/std/Errno.pm +282 -0
  99. data/Slic3r/Linux/lib/std/Fcntl.pm +186 -0
  100. data/Slic3r/Linux/lib/std/File/Basename.pm +402 -0
  101. data/Slic3r/Linux/lib/std/File/Glob.pm +437 -0
  102. data/Slic3r/Linux/lib/std/File/GlobMapper.pm +679 -0
  103. data/Slic3r/Linux/lib/std/File/Listing.pm +435 -0
  104. data/Slic3r/Linux/lib/std/File/Path.pm +981 -0
  105. data/Slic3r/Linux/lib/std/File/Spec.pm +339 -0
  106. data/Slic3r/Linux/lib/std/File/Spec/Cygwin.pm +160 -0
  107. data/Slic3r/Linux/lib/std/File/Spec/Epoc.pm +79 -0
  108. data/Slic3r/Linux/lib/std/File/Spec/Functions.pm +130 -0
  109. data/Slic3r/Linux/lib/std/File/Spec/Mac.pm +786 -0
  110. data/Slic3r/Linux/lib/std/File/Spec/OS2.pm +276 -0
  111. data/Slic3r/Linux/lib/std/File/Spec/Unix.pm +595 -0
  112. data/Slic3r/Linux/lib/std/File/Spec/VMS.pm +679 -0
  113. data/Slic3r/Linux/lib/std/File/Spec/Win32.pm +446 -0
  114. data/Slic3r/Linux/lib/std/File/Temp.pm +2452 -0
  115. data/Slic3r/Linux/lib/std/File/stat.pm +345 -0
  116. data/Slic3r/Linux/lib/std/FileHandle.pm +262 -0
  117. data/Slic3r/Linux/lib/std/Filter/Util/Call.pm +498 -0
  118. data/Slic3r/Linux/lib/std/FindBin.pm +209 -0
  119. data/Slic3r/Linux/lib/std/Getopt/Long.pm +2693 -0
  120. data/Slic3r/Linux/lib/std/Growl/GNTP.pm +595 -0
  121. data/Slic3r/Linux/lib/std/HTML/Entities.pm +483 -0
  122. data/Slic3r/Linux/lib/std/HTML/HeadParser.pm +310 -0
  123. data/Slic3r/Linux/lib/std/HTML/Parser.pm +1240 -0
  124. data/Slic3r/Linux/lib/std/HTTP/Config.pm +436 -0
  125. data/Slic3r/Linux/lib/std/HTTP/Cookies.pm +781 -0
  126. data/Slic3r/Linux/lib/std/HTTP/Cookies/Netscape.pm +114 -0
  127. data/Slic3r/Linux/lib/std/HTTP/Date.pm +388 -0
  128. data/Slic3r/Linux/lib/std/HTTP/Headers.pm +849 -0
  129. data/Slic3r/Linux/lib/std/HTTP/Headers/Util.pm +199 -0
  130. data/Slic3r/Linux/lib/std/HTTP/Message.pm +1107 -0
  131. data/Slic3r/Linux/lib/std/HTTP/Negotiate.pm +528 -0
  132. data/Slic3r/Linux/lib/std/HTTP/Request.pm +242 -0
  133. data/Slic3r/Linux/lib/std/HTTP/Request/Common.pm +514 -0
  134. data/Slic3r/Linux/lib/std/HTTP/Response.pm +638 -0
  135. data/Slic3r/Linux/lib/std/HTTP/Status.pm +267 -0
  136. data/Slic3r/Linux/lib/std/I18N/Langinfo.pm +191 -0
  137. data/Slic3r/Linux/lib/std/IO.pm +68 -0
  138. data/Slic3r/Linux/lib/std/IO/Compress/Adapter/Bzip2.pm +162 -0
  139. data/Slic3r/Linux/lib/std/IO/Compress/Adapter/Deflate.pm +165 -0
  140. data/Slic3r/Linux/lib/std/IO/Compress/Base.pm +981 -0
  141. data/Slic3r/Linux/lib/std/IO/Compress/Base/Common.pm +956 -0
  142. data/Slic3r/Linux/lib/std/IO/Compress/Bzip2.pm +758 -0
  143. data/Slic3r/Linux/lib/std/IO/Compress/Deflate.pm +930 -0
  144. data/Slic3r/Linux/lib/std/IO/Compress/Gzip.pm +1242 -0
  145. data/Slic3r/Linux/lib/std/IO/Compress/Gzip/Constants.pm +148 -0
  146. data/Slic3r/Linux/lib/std/IO/Compress/RawDeflate.pm +1017 -0
  147. data/Slic3r/Linux/lib/std/IO/Compress/Zlib/Constants.pm +77 -0
  148. data/Slic3r/Linux/lib/std/IO/Compress/Zlib/Extra.pm +198 -0
  149. data/Slic3r/Linux/lib/std/IO/Dir.pm +248 -0
  150. data/Slic3r/Linux/lib/std/IO/File.pm +204 -0
  151. data/Slic3r/Linux/lib/std/IO/Handle.pm +646 -0
  152. data/Slic3r/Linux/lib/std/IO/Pipe.pm +257 -0
  153. data/Slic3r/Linux/lib/std/IO/Seekable.pm +128 -0
  154. data/Slic3r/Linux/lib/std/IO/Select.pm +387 -0
  155. data/Slic3r/Linux/lib/std/IO/Socket.pm +540 -0
  156. data/Slic3r/Linux/lib/std/IO/Socket/INET.pm +464 -0
  157. data/Slic3r/Linux/lib/std/IO/Socket/SSL.pm +2456 -0
  158. data/Slic3r/Linux/lib/std/IO/Socket/UNIX.pm +143 -0
  159. data/Slic3r/Linux/lib/std/IO/Uncompress/Adapter/Bunzip2.pm +112 -0
  160. data/Slic3r/Linux/lib/std/IO/Uncompress/Adapter/Inflate.pm +158 -0
  161. data/Slic3r/Linux/lib/std/IO/Uncompress/Base.pm +1483 -0
  162. data/Slic3r/Linux/lib/std/IO/Uncompress/Bunzip2.pm +858 -0
  163. data/Slic3r/Linux/lib/std/IO/Uncompress/Gunzip.pm +1111 -0
  164. data/Slic3r/Linux/lib/std/IO/Uncompress/Inflate.pm +982 -0
  165. data/Slic3r/Linux/lib/std/IO/Uncompress/RawInflate.pm +1110 -0
  166. data/Slic3r/Linux/lib/std/Import/Into.pm +289 -0
  167. data/Slic3r/Linux/lib/std/LWP.pm +667 -0
  168. data/Slic3r/Linux/lib/std/LWP/Authen/Basic.pm +65 -0
  169. data/Slic3r/Linux/lib/std/LWP/Authen/Digest.pm +68 -0
  170. data/Slic3r/Linux/lib/std/LWP/Authen/Ntlm.pm +180 -0
  171. data/Slic3r/Linux/lib/std/LWP/ConnCache.pm +313 -0
  172. data/Slic3r/Linux/lib/std/LWP/MediaTypes.pm +280 -0
  173. data/Slic3r/Linux/lib/std/LWP/MemberMixin.pm +44 -0
  174. data/Slic3r/Linux/lib/std/LWP/Protocol.pm +291 -0
  175. data/Slic3r/Linux/lib/std/LWP/Protocol/GHTTP.pm +73 -0
  176. data/Slic3r/Linux/lib/std/LWP/Protocol/cpan.pm +72 -0
  177. data/Slic3r/Linux/lib/std/LWP/Protocol/data.pm +52 -0
  178. data/Slic3r/Linux/lib/std/LWP/Protocol/file.pm +146 -0
  179. data/Slic3r/Linux/lib/std/LWP/Protocol/ftp.pm +543 -0
  180. data/Slic3r/Linux/lib/std/LWP/Protocol/gopher.pm +213 -0
  181. data/Slic3r/Linux/lib/std/LWP/Protocol/http.pm +501 -0
  182. data/Slic3r/Linux/lib/std/LWP/Protocol/https.pm +132 -0
  183. data/Slic3r/Linux/lib/std/LWP/Protocol/loopback.pm +26 -0
  184. data/Slic3r/Linux/lib/std/LWP/Protocol/mailto.pm +183 -0
  185. data/Slic3r/Linux/lib/std/LWP/Protocol/nntp.pm +145 -0
  186. data/Slic3r/Linux/lib/std/LWP/Protocol/nogo.pm +24 -0
  187. data/Slic3r/Linux/lib/std/LWP/UserAgent.pm +1859 -0
  188. data/Slic3r/Linux/lib/std/List/Util.pm +433 -0
  189. data/Slic3r/Linux/lib/std/MIME/Base64.pm +188 -0
  190. data/Slic3r/Linux/lib/std/MIME/QuotedPrint.pm +114 -0
  191. data/Slic3r/Linux/lib/std/Mail/Address.pm +273 -0
  192. data/Slic3r/Linux/lib/std/Mail/Header.pm +637 -0
  193. data/Slic3r/Linux/lib/std/Mail/Internet.pm +546 -0
  194. data/Slic3r/Linux/lib/std/Mail/Mailer.pm +215 -0
  195. data/Slic3r/Linux/lib/std/Mail/Util.pm +149 -0
  196. data/Slic3r/Linux/lib/std/Math/BigFloat.pm +4493 -0
  197. data/Slic3r/Linux/lib/std/Math/BigFloat/Trace.pm +58 -0
  198. data/Slic3r/Linux/lib/std/Math/BigInt.pm +5284 -0
  199. data/Slic3r/Linux/lib/std/Math/BigInt/Calc.pm +2970 -0
  200. data/Slic3r/Linux/lib/std/Math/BigInt/CalcEmu.pm +329 -0
  201. data/Slic3r/Linux/lib/std/Math/BigInt/FastCalc.pm +112 -0
  202. data/Slic3r/Linux/lib/std/Math/BigInt/Trace.pm +47 -0
  203. data/Slic3r/Linux/lib/std/Math/Complex.pm +2093 -0
  204. data/Slic3r/Linux/lib/std/Math/Libm.pm +199 -0
  205. data/Slic3r/Linux/lib/std/Math/PlanePath.pm +2211 -0
  206. data/Slic3r/Linux/lib/std/Math/PlanePath/ArchimedeanChords.pm +686 -0
  207. data/Slic3r/Linux/lib/std/Math/PlanePath/Base/Digits.pm +389 -0
  208. data/Slic3r/Linux/lib/std/Math/PlanePath/Base/Generic.pm +242 -0
  209. data/Slic3r/Linux/lib/std/Math/PlanePath/Base/NSEW.pm +114 -0
  210. data/Slic3r/Linux/lib/std/Math/PlanePath/Flowsnake.pm +886 -0
  211. data/Slic3r/Linux/lib/std/Math/PlanePath/FlowsnakeCentres.pm +1018 -0
  212. data/Slic3r/Linux/lib/std/Math/PlanePath/HilbertCurve.pm +772 -0
  213. data/Slic3r/Linux/lib/std/Math/PlanePath/MultipleRings.pm +1715 -0
  214. data/Slic3r/Linux/lib/std/Math/PlanePath/OctagramSpiral.pm +469 -0
  215. data/Slic3r/Linux/lib/std/Math/PlanePath/SacksSpiral.pm +440 -0
  216. data/Slic3r/Linux/lib/std/Math/Trig.pm +768 -0
  217. data/Slic3r/Linux/lib/std/Method/Generate/Accessor.pm +652 -0
  218. data/Slic3r/Linux/lib/std/Method/Generate/BuildAll.pm +33 -0
  219. data/Slic3r/Linux/lib/std/Method/Generate/Constructor.pm +221 -0
  220. data/Slic3r/Linux/lib/std/Method/Generate/DemolishAll.pm +48 -0
  221. data/Slic3r/Linux/lib/std/Module/Runtime.pm +494 -0
  222. data/Slic3r/Linux/lib/std/Moo.pm +989 -0
  223. data/Slic3r/Linux/lib/std/Moo/HandleMoose.pm +210 -0
  224. data/Slic3r/Linux/lib/std/Moo/HandleMoose/FakeMetaClass.pm +21 -0
  225. data/Slic3r/Linux/lib/std/Moo/HandleMoose/_TypeMap.pm +72 -0
  226. data/Slic3r/Linux/lib/std/Moo/Object.pm +80 -0
  227. data/Slic3r/Linux/lib/std/Moo/Role.pm +475 -0
  228. data/Slic3r/Linux/lib/std/Moo/_Utils.pm +124 -0
  229. data/Slic3r/Linux/lib/std/Moo/_mro.pm +10 -0
  230. data/Slic3r/Linux/lib/std/Moo/sification.pm +22 -0
  231. data/Slic3r/Linux/lib/std/Mozilla/CA.pm +99 -0
  232. data/Slic3r/Linux/lib/std/Mozilla/CA/cacert.pem +3366 -0
  233. data/Slic3r/Linux/lib/std/Net/Cmd.pm +783 -0
  234. data/Slic3r/Linux/lib/std/Net/Config.pm +312 -0
  235. data/Slic3r/Linux/lib/std/Net/Domain.pm +347 -0
  236. data/Slic3r/Linux/lib/std/Net/FTP.pm +1829 -0
  237. data/Slic3r/Linux/lib/std/Net/FTP/A.pm +111 -0
  238. data/Slic3r/Linux/lib/std/Net/FTP/E.pm +8 -0
  239. data/Slic3r/Linux/lib/std/Net/FTP/I.pm +80 -0
  240. data/Slic3r/Linux/lib/std/Net/FTP/L.pm +8 -0
  241. data/Slic3r/Linux/lib/std/Net/FTP/dataconn.pm +124 -0
  242. data/Slic3r/Linux/lib/std/Net/HTTP.pm +279 -0
  243. data/Slic3r/Linux/lib/std/Net/HTTP/Methods.pm +593 -0
  244. data/Slic3r/Linux/lib/std/Net/HTTPS.pm +110 -0
  245. data/Slic3r/Linux/lib/std/Net/NNTP.pm +1140 -0
  246. data/Slic3r/Linux/lib/std/Net/Netrc.pm +325 -0
  247. data/Slic3r/Linux/lib/std/Net/SMTP.pm +867 -0
  248. data/Slic3r/Linux/lib/std/Net/SSL.pm +639 -0
  249. data/Slic3r/Linux/lib/std/Net/SSLeay.pm +2692 -0
  250. data/Slic3r/Linux/lib/std/OpenGL.pm +6288 -0
  251. data/Slic3r/Linux/lib/std/POSIX.pm +1037 -0
  252. data/Slic3r/Linux/lib/std/Params/Validate/XS.pm +51 -0
  253. data/Slic3r/Linux/lib/std/PerlIO.pm +332 -0
  254. data/Slic3r/Linux/lib/std/PerlIO/encoding.pm +53 -0
  255. data/Slic3r/Linux/lib/std/PerlIO/scalar.pm +41 -0
  256. data/Slic3r/Linux/lib/std/PerlIO/via.pm +243 -0
  257. data/Slic3r/Linux/lib/std/PerlIO/via/QuotedPrint.pm +94 -0
  258. data/Slic3r/Linux/lib/std/Pod/Escapes.pm +721 -0
  259. data/Slic3r/Linux/lib/std/Pod/InputObjects.pm +936 -0
  260. data/Slic3r/Linux/lib/std/Pod/Parser.pm +1829 -0
  261. data/Slic3r/Linux/lib/std/Pod/PlainText.pm +738 -0
  262. data/Slic3r/Linux/lib/std/Pod/Select.pm +746 -0
  263. data/Slic3r/Linux/lib/std/Pod/Simple.pm +1535 -0
  264. data/Slic3r/Linux/lib/std/Pod/Simple/BlackBox.pm +1930 -0
  265. data/Slic3r/Linux/lib/std/Pod/Simple/LinkSection.pm +174 -0
  266. data/Slic3r/Linux/lib/std/Pod/Simple/TiedOutFH.pm +105 -0
  267. data/Slic3r/Linux/lib/std/Pod/Simple/Transcode.pm +35 -0
  268. data/Slic3r/Linux/lib/std/Pod/Text.pm +886 -0
  269. data/Slic3r/Linux/lib/std/Pod/Usage.pm +730 -0
  270. data/Slic3r/Linux/lib/std/Role/Tiny.pm +698 -0
  271. data/Slic3r/Linux/lib/std/SVG.pm +341 -0
  272. data/Slic3r/Linux/lib/std/SVG/DOM.pm +804 -0
  273. data/Slic3r/Linux/lib/std/SVG/Element.pm +1649 -0
  274. data/Slic3r/Linux/lib/std/SVG/Extension.pm +458 -0
  275. data/Slic3r/Linux/lib/std/SVG/XML.pm +185 -0
  276. data/Slic3r/Linux/lib/std/Scalar/Util.pm +325 -0
  277. data/Slic3r/Linux/lib/std/SelectSaver.pm +54 -0
  278. data/Slic3r/Linux/lib/std/Slic3r.pm +180 -0
  279. data/Slic3r/Linux/lib/std/Slic3r/Build.pm +8 -0
  280. data/Slic3r/Linux/lib/std/Slic3r/Config.pm +456 -0
  281. data/Slic3r/Linux/lib/std/Slic3r/ExPolygon.pm +53 -0
  282. data/Slic3r/Linux/lib/std/Slic3r/Extruder.pm +52 -0
  283. data/Slic3r/Linux/lib/std/Slic3r/ExtrusionLoop.pm +12 -0
  284. data/Slic3r/Linux/lib/std/Slic3r/ExtrusionPath.pm +12 -0
  285. data/Slic3r/Linux/lib/std/Slic3r/ExtrusionPath/Collection.pm +5 -0
  286. data/Slic3r/Linux/lib/std/Slic3r/Fill.pm +259 -0
  287. data/Slic3r/Linux/lib/std/Slic3r/Fill/ArchimedeanChords.pm +7 -0
  288. data/Slic3r/Linux/lib/std/Slic3r/Fill/Base.pm +81 -0
  289. data/Slic3r/Linux/lib/std/Slic3r/Fill/Concentric.pm +65 -0
  290. data/Slic3r/Linux/lib/std/Slic3r/Fill/Flowsnake.pm +18 -0
  291. data/Slic3r/Linux/lib/std/Slic3r/Fill/HilbertCurve.pm +7 -0
  292. data/Slic3r/Linux/lib/std/Slic3r/Fill/Honeycomb.pm +128 -0
  293. data/Slic3r/Linux/lib/std/Slic3r/Fill/Line.pm +8 -0
  294. data/Slic3r/Linux/lib/std/Slic3r/Fill/OctagramSpiral.pm +9 -0
  295. data/Slic3r/Linux/lib/std/Slic3r/Fill/PlanePath.pm +61 -0
  296. data/Slic3r/Linux/lib/std/Slic3r/Fill/Rectilinear.pm +110 -0
  297. data/Slic3r/Linux/lib/std/Slic3r/Flow.pm +12 -0
  298. data/Slic3r/Linux/lib/std/Slic3r/Format/AMF.pm +122 -0
  299. data/Slic3r/Linux/lib/std/Slic3r/Format/AMF/Parser.pm +157 -0
  300. data/Slic3r/Linux/lib/std/Slic3r/Format/OBJ.pm +36 -0
  301. data/Slic3r/Linux/lib/std/Slic3r/Format/STL.pm +39 -0
  302. data/Slic3r/Linux/lib/std/Slic3r/GCode.pm +696 -0
  303. data/Slic3r/Linux/lib/std/Slic3r/GCode/ArcFitting.pm +242 -0
  304. data/Slic3r/Linux/lib/std/Slic3r/GCode/CoolingBuffer.pm +80 -0
  305. data/Slic3r/Linux/lib/std/Slic3r/GCode/Layer.pm +238 -0
  306. data/Slic3r/Linux/lib/std/Slic3r/GCode/MotionPlanner.pm +317 -0
  307. data/Slic3r/Linux/lib/std/Slic3r/GCode/PlaceholderParser.pm +83 -0
  308. data/Slic3r/Linux/lib/std/Slic3r/GCode/Reader.pm +72 -0
  309. data/Slic3r/Linux/lib/std/Slic3r/GCode/SpiralVase.pm +81 -0
  310. data/Slic3r/Linux/lib/std/Slic3r/GCode/VibrationLimit.pm +64 -0
  311. data/Slic3r/Linux/lib/std/Slic3r/GUI.pm +586 -0
  312. data/Slic3r/Linux/lib/std/Slic3r/GUI/AboutDialog.pm +110 -0
  313. data/Slic3r/Linux/lib/std/Slic3r/GUI/ConfigWizard.pm +373 -0
  314. data/Slic3r/Linux/lib/std/Slic3r/GUI/OptionsGroup.pm +504 -0
  315. data/Slic3r/Linux/lib/std/Slic3r/GUI/Plater.pm +1437 -0
  316. data/Slic3r/Linux/lib/std/Slic3r/GUI/Plater/ObjectCutDialog.pm +153 -0
  317. data/Slic3r/Linux/lib/std/Slic3r/GUI/Plater/ObjectPartsPanel.pm +268 -0
  318. data/Slic3r/Linux/lib/std/Slic3r/GUI/Plater/ObjectPreviewDialog.pm +30 -0
  319. data/Slic3r/Linux/lib/std/Slic3r/GUI/Plater/ObjectSettingsDialog.pm +175 -0
  320. data/Slic3r/Linux/lib/std/Slic3r/GUI/Plater/OverrideSettingsPanel.pm +137 -0
  321. data/Slic3r/Linux/lib/std/Slic3r/GUI/Preferences.pm +78 -0
  322. data/Slic3r/Linux/lib/std/Slic3r/GUI/PreviewCanvas.pm +506 -0
  323. data/Slic3r/Linux/lib/std/Slic3r/GUI/SimpleTab.pm +230 -0
  324. data/Slic3r/Linux/lib/std/Slic3r/GUI/SkeinPanel.pm +550 -0
  325. data/Slic3r/Linux/lib/std/Slic3r/GUI/Tab.pm +944 -0
  326. data/Slic3r/Linux/lib/std/Slic3r/Geometry.pm +753 -0
  327. data/Slic3r/Linux/lib/std/Slic3r/Geometry/Clipper.pm +13 -0
  328. data/Slic3r/Linux/lib/std/Slic3r/Layer.pm +76 -0
  329. data/Slic3r/Linux/lib/std/Slic3r/Layer/BridgeDetector.pm +277 -0
  330. data/Slic3r/Linux/lib/std/Slic3r/Layer/Region.pm +545 -0
  331. data/Slic3r/Linux/lib/std/Slic3r/Line.pm +21 -0
  332. data/Slic3r/Linux/lib/std/Slic3r/Model.pm +608 -0
  333. data/Slic3r/Linux/lib/std/Slic3r/Point.pm +10 -0
  334. data/Slic3r/Linux/lib/std/Slic3r/Polygon.pm +95 -0
  335. data/Slic3r/Linux/lib/std/Slic3r/Polyline.pm +40 -0
  336. data/Slic3r/Linux/lib/std/Slic3r/Print.pm +1146 -0
  337. data/Slic3r/Linux/lib/std/Slic3r/Print/Object.pm +1023 -0
  338. data/Slic3r/Linux/lib/std/Slic3r/Print/Region.pm +63 -0
  339. data/Slic3r/Linux/lib/std/Slic3r/Print/Simple.pm +108 -0
  340. data/Slic3r/Linux/lib/std/Slic3r/Print/State.pm +28 -0
  341. data/Slic3r/Linux/lib/std/Slic3r/Print/SupportMaterial.pm +862 -0
  342. data/Slic3r/Linux/lib/std/Slic3r/SVG.pm +142 -0
  343. data/Slic3r/Linux/lib/std/Slic3r/Surface.pm +15 -0
  344. data/Slic3r/Linux/lib/std/Slic3r/Test/SectionCut.pm +170 -0
  345. data/Slic3r/Linux/lib/std/Slic3r/TriangleMesh.pm +22 -0
  346. data/Slic3r/Linux/lib/std/Slic3r/XS.pm +205 -0
  347. data/Slic3r/Linux/lib/std/Socket.pm +804 -0
  348. data/Slic3r/Linux/lib/std/Storable.pm +1227 -0
  349. data/Slic3r/Linux/lib/std/Sub/Defer.pm +141 -0
  350. data/Slic3r/Linux/lib/std/Sub/Exporter/Progressive.pm +158 -0
  351. data/Slic3r/Linux/lib/std/Sub/Quote.pm +368 -0
  352. data/Slic3r/Linux/lib/std/Symbol.pm +170 -0
  353. data/Slic3r/Linux/lib/std/Term/Cap.pm +799 -0
  354. data/Slic3r/Linux/lib/std/Text/ParseWords.pm +294 -0
  355. data/Slic3r/Linux/lib/std/Thread/Queue.pm +476 -0
  356. data/Slic3r/Linux/lib/std/Tie/Handle.pm +201 -0
  357. data/Slic3r/Linux/lib/std/Tie/Hash.pm +268 -0
  358. data/Slic3r/Linux/lib/std/Tie/Hash/NamedCapture.pm +49 -0
  359. data/Slic3r/Linux/lib/std/Tie/StdHandle.pm +71 -0
  360. data/Slic3r/Linux/lib/std/Time/HiRes.pm +591 -0
  361. data/Slic3r/Linux/lib/std/Time/Local.pm +384 -0
  362. data/Slic3r/Linux/lib/std/Time/Zone.pm +291 -0
  363. data/Slic3r/Linux/lib/std/UNIVERSAL.pm +214 -0
  364. data/Slic3r/Linux/lib/std/URI.pm +1131 -0
  365. data/Slic3r/Linux/lib/std/URI/Escape.pm +208 -0
  366. data/Slic3r/Linux/lib/std/URI/Heuristic.pm +253 -0
  367. data/Slic3r/Linux/lib/std/URI/IRI.pm +44 -0
  368. data/Slic3r/Linux/lib/std/URI/QueryParam.pm +193 -0
  369. data/Slic3r/Linux/lib/std/URI/Split.pm +96 -0
  370. data/Slic3r/Linux/lib/std/URI/URL.pm +305 -0
  371. data/Slic3r/Linux/lib/std/URI/WithBase.pm +171 -0
  372. data/Slic3r/Linux/lib/std/URI/_foreign.pm +6 -0
  373. data/Slic3r/Linux/lib/std/URI/_generic.pm +252 -0
  374. data/Slic3r/Linux/lib/std/URI/_idna.pm +87 -0
  375. data/Slic3r/Linux/lib/std/URI/_ldap.pm +140 -0
  376. data/Slic3r/Linux/lib/std/URI/_login.pm +10 -0
  377. data/Slic3r/Linux/lib/std/URI/_punycode.pm +202 -0
  378. data/Slic3r/Linux/lib/std/URI/_query.pm +93 -0
  379. data/Slic3r/Linux/lib/std/URI/_segment.pm +20 -0
  380. data/Slic3r/Linux/lib/std/URI/_server.pm +162 -0
  381. data/Slic3r/Linux/lib/std/URI/_userpass.pm +51 -0
  382. data/Slic3r/Linux/lib/std/URI/data.pm +140 -0
  383. data/Slic3r/Linux/lib/std/URI/file.pm +328 -0
  384. data/Slic3r/Linux/lib/std/URI/file/Base.pm +80 -0
  385. data/Slic3r/Linux/lib/std/URI/file/FAT.pm +23 -0
  386. data/Slic3r/Linux/lib/std/URI/file/Mac.pm +120 -0
  387. data/Slic3r/Linux/lib/std/URI/file/OS2.pm +28 -0
  388. data/Slic3r/Linux/lib/std/URI/file/QNX.pm +18 -0
  389. data/Slic3r/Linux/lib/std/URI/file/Unix.pm +55 -0
  390. data/Slic3r/Linux/lib/std/URI/file/Win32.pm +84 -0
  391. data/Slic3r/Linux/lib/std/URI/ftp.pm +45 -0
  392. data/Slic3r/Linux/lib/std/URI/gopher.pm +94 -0
  393. data/Slic3r/Linux/lib/std/URI/http.pm +25 -0
  394. data/Slic3r/Linux/lib/std/URI/https.pm +9 -0
  395. data/Slic3r/Linux/lib/std/URI/ldap.pm +122 -0
  396. data/Slic3r/Linux/lib/std/URI/ldapi.pm +30 -0
  397. data/Slic3r/Linux/lib/std/URI/ldaps.pm +9 -0
  398. data/Slic3r/Linux/lib/std/URI/mailto.pm +72 -0
  399. data/Slic3r/Linux/lib/std/URI/mms.pm +8 -0
  400. data/Slic3r/Linux/lib/std/URI/news.pm +68 -0
  401. data/Slic3r/Linux/lib/std/URI/nntp.pm +6 -0
  402. data/Slic3r/Linux/lib/std/URI/pop.pm +68 -0
  403. data/Slic3r/Linux/lib/std/URI/rlogin.pm +7 -0
  404. data/Slic3r/Linux/lib/std/URI/rsync.pm +12 -0
  405. data/Slic3r/Linux/lib/std/URI/rtsp.pm +8 -0
  406. data/Slic3r/Linux/lib/std/URI/rtspu.pm +8 -0
  407. data/Slic3r/Linux/lib/std/URI/sip.pm +86 -0
  408. data/Slic3r/Linux/lib/std/URI/sips.pm +9 -0
  409. data/Slic3r/Linux/lib/std/URI/snews.pm +10 -0
  410. data/Slic3r/Linux/lib/std/URI/ssh.pm +11 -0
  411. data/Slic3r/Linux/lib/std/URI/telnet.pm +7 -0
  412. data/Slic3r/Linux/lib/std/URI/tn3270.pm +7 -0
  413. data/Slic3r/Linux/lib/std/URI/urn.pm +97 -0
  414. data/Slic3r/Linux/lib/std/URI/urn/isbn.pm +102 -0
  415. data/Slic3r/Linux/lib/std/URI/urn/oid.pm +18 -0
  416. data/Slic3r/Linux/lib/std/Wx.pm +394 -0
  417. data/Slic3r/Linux/lib/std/Wx/App.pm +54 -0
  418. data/Slic3r/Linux/lib/std/Wx/DND.pm +74 -0
  419. data/Slic3r/Linux/lib/std/Wx/DropSource.pm +33 -0
  420. data/Slic3r/Linux/lib/std/Wx/Event.pm +469 -0
  421. data/Slic3r/Linux/lib/std/Wx/GLCanvas.pm +84 -0
  422. data/Slic3r/Linux/lib/std/Wx/Grid.pm +128 -0
  423. data/Slic3r/Linux/lib/std/Wx/Html.pm +67 -0
  424. data/Slic3r/Linux/lib/std/Wx/Locale.pm +61 -0
  425. data/Slic3r/Linux/lib/std/Wx/Menu.pm +74 -0
  426. data/Slic3r/Linux/lib/std/Wx/Mini.pm +181 -0
  427. data/Slic3r/Linux/lib/std/Wx/Print.pm +56 -0
  428. data/Slic3r/Linux/lib/std/Wx/RadioBox.pm +53 -0
  429. data/Slic3r/Linux/lib/std/Wx/Timer.pm +56 -0
  430. data/Slic3r/Linux/lib/std/Wx/Wx_Exp.pm +9494 -0
  431. data/Slic3r/Linux/lib/std/XML/NamespaceSupport.pm +583 -0
  432. data/Slic3r/Linux/lib/std/XML/SAX.pm +379 -0
  433. data/Slic3r/Linux/lib/std/XML/SAX/Base.pm +3176 -0
  434. data/Slic3r/Linux/lib/std/XML/SAX/BuildSAXBase.pl +847 -0
  435. data/Slic3r/Linux/lib/std/XML/SAX/DocumentLocator.pm +134 -0
  436. data/Slic3r/Linux/lib/std/XML/SAX/Exception.pm +129 -0
  437. data/Slic3r/Linux/lib/std/XML/SAX/ExpatXS.pm +354 -0
  438. data/Slic3r/Linux/lib/std/XML/SAX/ExpatXS/Encoding.pm +184 -0
  439. data/Slic3r/Linux/lib/std/XML/SAX/ExpatXS/Preload.pm +288 -0
  440. data/Slic3r/Linux/lib/std/XML/SAX/ParserDetails.ini +16 -0
  441. data/Slic3r/Linux/lib/std/XML/SAX/ParserFactory.pm +230 -0
  442. data/Slic3r/Linux/lib/std/XML/SAX/PurePerl.pm +751 -0
  443. data/Slic3r/Linux/lib/std/XML/SAX/PurePerl/DTDDecls.pm +603 -0
  444. data/Slic3r/Linux/lib/std/XML/SAX/PurePerl/DebugHandler.pm +95 -0
  445. data/Slic3r/Linux/lib/std/XML/SAX/PurePerl/DocType.pm +180 -0
  446. data/Slic3r/Linux/lib/std/XML/SAX/PurePerl/EncodingDetect.pm +105 -0
  447. data/Slic3r/Linux/lib/std/XML/SAX/PurePerl/Exception.pm +67 -0
  448. data/Slic3r/Linux/lib/std/XML/SAX/PurePerl/NoUnicodeExt.pm +28 -0
  449. data/Slic3r/Linux/lib/std/XML/SAX/PurePerl/Productions.pm +147 -0
  450. data/Slic3r/Linux/lib/std/XML/SAX/PurePerl/Reader.pm +136 -0
  451. data/Slic3r/Linux/lib/std/XML/SAX/PurePerl/Reader/NoUnicodeExt.pm +25 -0
  452. data/Slic3r/Linux/lib/std/XML/SAX/PurePerl/Reader/Stream.pm +84 -0
  453. data/Slic3r/Linux/lib/std/XML/SAX/PurePerl/Reader/String.pm +78 -0
  454. data/Slic3r/Linux/lib/std/XML/SAX/PurePerl/Reader/URI.pm +57 -0
  455. data/Slic3r/Linux/lib/std/XML/SAX/PurePerl/Reader/UnicodeExt.pm +23 -0
  456. data/Slic3r/Linux/lib/std/XML/SAX/PurePerl/UnicodeExt.pm +22 -0
  457. data/Slic3r/Linux/lib/std/XML/SAX/PurePerl/XMLDecl.pm +129 -0
  458. data/Slic3r/Linux/lib/std/attributes.pm +490 -0
  459. data/Slic3r/Linux/lib/std/auto/B/B.so +0 -0
  460. data/Slic3r/Linux/lib/std/auto/Class/XSAccessor/XSAccessor.so +0 -0
  461. data/Slic3r/Linux/lib/std/auto/Compress/Raw/Bzip2/Bzip2.so +0 -0
  462. data/Slic3r/Linux/lib/std/auto/Compress/Raw/Bzip2/autosplit.ix +3 -0
  463. data/Slic3r/Linux/lib/std/auto/Compress/Raw/Zlib/Zlib.so +0 -0
  464. data/Slic3r/Linux/lib/std/auto/Compress/Raw/Zlib/autosplit.ix +3 -0
  465. data/Slic3r/Linux/lib/std/auto/Crypt/SSLeay/SSLeay.so +0 -0
  466. data/Slic3r/Linux/lib/std/auto/Cwd/Cwd.so +0 -0
  467. data/Slic3r/Linux/lib/std/auto/Data/Dumper/Dumper.so +0 -0
  468. data/Slic3r/Linux/lib/std/auto/Data/UUID/UUID.so +0 -0
  469. data/Slic3r/Linux/lib/std/auto/Digest/MD5/MD5.so +0 -0
  470. data/Slic3r/Linux/lib/std/auto/Digest/SHA/SHA.so +0 -0
  471. data/Slic3r/Linux/lib/std/auto/Encode/Byte/Byte.so +0 -0
  472. data/Slic3r/Linux/lib/std/auto/Encode/CN/CN.so +0 -0
  473. data/Slic3r/Linux/lib/std/auto/Encode/EBCDIC/EBCDIC.so +0 -0
  474. data/Slic3r/Linux/lib/std/auto/Encode/Encode.so +0 -0
  475. data/Slic3r/Linux/lib/std/auto/Encode/JP/JP.so +0 -0
  476. data/Slic3r/Linux/lib/std/auto/Encode/KR/KR.so +0 -0
  477. data/Slic3r/Linux/lib/std/auto/Encode/Symbol/Symbol.so +0 -0
  478. data/Slic3r/Linux/lib/std/auto/Encode/TW/TW.so +0 -0
  479. data/Slic3r/Linux/lib/std/auto/Encode/Unicode/Unicode.so +0 -0
  480. data/Slic3r/Linux/lib/std/auto/Fcntl/Fcntl.so +0 -0
  481. data/Slic3r/Linux/lib/std/auto/File/Glob/Glob.so +0 -0
  482. data/Slic3r/Linux/lib/std/auto/Filter/Util/Call/Call.so +0 -0
  483. data/Slic3r/Linux/lib/std/auto/HTML/Parser/Parser.so +0 -0
  484. data/Slic3r/Linux/lib/std/auto/I18N/Langinfo/Langinfo.so +0 -0
  485. data/Slic3r/Linux/lib/std/auto/IO/IO.so +0 -0
  486. data/Slic3r/Linux/lib/std/auto/List/Util/Util.so +0 -0
  487. data/Slic3r/Linux/lib/std/auto/MIME/Base64/Base64.so +0 -0
  488. data/Slic3r/Linux/lib/std/auto/Math/BigInt/FastCalc/FastCalc.so +0 -0
  489. data/Slic3r/Linux/lib/std/auto/Math/Libm/Libm.so +0 -0
  490. data/Slic3r/Linux/lib/std/auto/Math/Libm/autosplit.ix +3 -0
  491. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/SSLeay.so +0 -0
  492. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/autosplit.ix +78 -0
  493. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/debug_read.al +22 -0
  494. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/do_https.al +18 -0
  495. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/do_https2.al +13 -0
  496. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/do_https3.al +13 -0
  497. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/do_https4.al +12 -0
  498. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/do_httpx2.al +18 -0
  499. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/do_httpx3.al +43 -0
  500. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/do_httpx4.al +19 -0
  501. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/dump_peer_certificate.al +29 -0
  502. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/get_http.al +9 -0
  503. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/get_http3.al +9 -0
  504. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/get_http4.al +9 -0
  505. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/get_https.al +9 -0
  506. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/get_https3.al +9 -0
  507. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/get_https4.al +9 -0
  508. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/get_httpx.al +9 -0
  509. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/get_httpx3.al +9 -0
  510. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/get_httpx4.al +9 -0
  511. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/head_http.al +10 -0
  512. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/head_http3.al +10 -0
  513. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/head_http4.al +12 -0
  514. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/head_https.al +10 -0
  515. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/head_https3.al +10 -0
  516. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/head_https4.al +12 -0
  517. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/head_httpx.al +10 -0
  518. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/head_httpx3.al +10 -0
  519. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/head_httpx4.al +13 -0
  520. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/http_cat.al +34 -0
  521. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/https_cat.al +97 -0
  522. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/httpx_cat.al +18 -0
  523. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/make_form.al +25 -0
  524. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/make_headers.al +21 -0
  525. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/new_x_ctx.al +16 -0
  526. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/open_proxy_tcp_connection.al +31 -0
  527. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/open_tcp_connection.al +40 -0
  528. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/post_http.al +9 -0
  529. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/post_http3.al +9 -0
  530. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/post_http4.al +9 -0
  531. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/post_https.al +9 -0
  532. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/post_https3.al +9 -0
  533. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/post_https4.al +9 -0
  534. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/post_httpx.al +9 -0
  535. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/post_httpx3.al +9 -0
  536. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/post_httpx4.al +9 -0
  537. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/put_http.al +9 -0
  538. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/put_http3.al +9 -0
  539. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/put_http4.al +9 -0
  540. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/put_https.al +9 -0
  541. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/put_https3.al +9 -0
  542. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/put_https4.al +9 -0
  543. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/put_httpx.al +9 -0
  544. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/put_httpx3.al +9 -0
  545. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/put_httpx4.al +9 -0
  546. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/randomize.al +31 -0
  547. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/set_cert_and_key.al +23 -0
  548. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/set_proxy.al +16 -0
  549. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/set_server_cert_and_key.al +14 -0
  550. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/ssl_read_CRLF.al +10 -0
  551. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/ssl_read_all.al +28 -0
  552. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/ssl_read_until.al +95 -0
  553. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/ssl_write_CRLF.al +23 -0
  554. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/ssl_write_all.al +149 -0
  555. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/sslcat.al +99 -0
  556. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/tcp_read_CRLF.al +11 -0
  557. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/tcp_read_all.al +26 -0
  558. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/tcp_read_until.al +34 -0
  559. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/tcp_write_CRLF.al +23 -0
  560. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/tcp_write_all.al +36 -0
  561. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/tcpcat.al +37 -0
  562. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/tcpxcat.al +17 -0
  563. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/want_X509_lookup.al +15 -0
  564. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/want_nothing.al +16 -0
  565. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/want_read.al +9 -0
  566. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/want_write.al +9 -0
  567. data/Slic3r/Linux/lib/std/auto/OpenGL/OpenGL.so +0 -0
  568. data/Slic3r/Linux/lib/std/auto/OpenGL/autosplit.ix +3 -0
  569. data/Slic3r/Linux/lib/std/auto/POSIX/POSIX.so +0 -0
  570. data/Slic3r/Linux/lib/std/auto/POSIX/SigAction/flags.al +9 -0
  571. data/Slic3r/Linux/lib/std/auto/POSIX/SigAction/handler.al +9 -0
  572. data/Slic3r/Linux/lib/std/auto/POSIX/SigAction/mask.al +9 -0
  573. data/Slic3r/Linux/lib/std/auto/POSIX/SigAction/new.al +11 -0
  574. data/Slic3r/Linux/lib/std/auto/POSIX/SigAction/safe.al +13 -0
  575. data/Slic3r/Linux/lib/std/auto/POSIX/SigRt/CLEAR.al +9 -0
  576. data/Slic3r/Linux/lib/std/auto/POSIX/SigRt/DELETE.al +9 -0
  577. data/Slic3r/Linux/lib/std/auto/POSIX/SigRt/EXISTS.al +9 -0
  578. data/Slic3r/Linux/lib/std/auto/POSIX/SigRt/FETCH.al +12 -0
  579. data/Slic3r/Linux/lib/std/auto/POSIX/SigRt/SCALAR.al +9 -0
  580. data/Slic3r/Linux/lib/std/auto/POSIX/SigRt/STORE.al +9 -0
  581. data/Slic3r/Linux/lib/std/auto/POSIX/SigRt/_check.al +15 -0
  582. data/Slic3r/Linux/lib/std/auto/POSIX/SigRt/_croak.al +13 -0
  583. data/Slic3r/Linux/lib/std/auto/POSIX/SigRt/_exist.al +14 -0
  584. data/Slic3r/Linux/lib/std/auto/POSIX/SigRt/_getsig.al +17 -0
  585. data/Slic3r/Linux/lib/std/auto/POSIX/SigRt/_init.al +14 -0
  586. data/Slic3r/Linux/lib/std/auto/POSIX/SigRt/new.al +17 -0
  587. data/Slic3r/Linux/lib/std/auto/POSIX/abs.al +13 -0
  588. data/Slic3r/Linux/lib/std/auto/POSIX/alarm.al +13 -0
  589. data/Slic3r/Linux/lib/std/auto/POSIX/assert.al +15 -0
  590. data/Slic3r/Linux/lib/std/auto/POSIX/atan2.al +13 -0
  591. data/Slic3r/Linux/lib/std/auto/POSIX/atexit.al +12 -0
  592. data/Slic3r/Linux/lib/std/auto/POSIX/atof.al +12 -0
  593. data/Slic3r/Linux/lib/std/auto/POSIX/atoi.al +12 -0
  594. data/Slic3r/Linux/lib/std/auto/POSIX/atol.al +12 -0
  595. data/Slic3r/Linux/lib/std/auto/POSIX/autosplit.ix +173 -0
  596. data/Slic3r/Linux/lib/std/auto/POSIX/bsearch.al +12 -0
  597. data/Slic3r/Linux/lib/std/auto/POSIX/calloc.al +12 -0
  598. data/Slic3r/Linux/lib/std/auto/POSIX/chdir.al +13 -0
  599. data/Slic3r/Linux/lib/std/auto/POSIX/chmod.al +13 -0
  600. data/Slic3r/Linux/lib/std/auto/POSIX/chown.al +13 -0
  601. data/Slic3r/Linux/lib/std/auto/POSIX/clearerr.al +12 -0
  602. data/Slic3r/Linux/lib/std/auto/POSIX/closedir.al +13 -0
  603. data/Slic3r/Linux/lib/std/auto/POSIX/cos.al +13 -0
  604. data/Slic3r/Linux/lib/std/auto/POSIX/creat.al +13 -0
  605. data/Slic3r/Linux/lib/std/auto/POSIX/div.al +12 -0
  606. data/Slic3r/Linux/lib/std/auto/POSIX/errno.al +13 -0
  607. data/Slic3r/Linux/lib/std/auto/POSIX/execl.al +12 -0
  608. data/Slic3r/Linux/lib/std/auto/POSIX/execle.al +12 -0
  609. data/Slic3r/Linux/lib/std/auto/POSIX/execlp.al +12 -0
  610. data/Slic3r/Linux/lib/std/auto/POSIX/execv.al +12 -0
  611. data/Slic3r/Linux/lib/std/auto/POSIX/execve.al +12 -0
  612. data/Slic3r/Linux/lib/std/auto/POSIX/execvp.al +12 -0
  613. data/Slic3r/Linux/lib/std/auto/POSIX/exit.al +13 -0
  614. data/Slic3r/Linux/lib/std/auto/POSIX/exp.al +13 -0
  615. data/Slic3r/Linux/lib/std/auto/POSIX/fabs.al +13 -0
  616. data/Slic3r/Linux/lib/std/auto/POSIX/fclose.al +12 -0
  617. data/Slic3r/Linux/lib/std/auto/POSIX/fcntl.al +13 -0
  618. data/Slic3r/Linux/lib/std/auto/POSIX/fdopen.al +12 -0
  619. data/Slic3r/Linux/lib/std/auto/POSIX/feof.al +12 -0
  620. data/Slic3r/Linux/lib/std/auto/POSIX/ferror.al +12 -0
  621. data/Slic3r/Linux/lib/std/auto/POSIX/fflush.al +12 -0
  622. data/Slic3r/Linux/lib/std/auto/POSIX/fgetc.al +12 -0
  623. data/Slic3r/Linux/lib/std/auto/POSIX/fgetpos.al +12 -0
  624. data/Slic3r/Linux/lib/std/auto/POSIX/fgets.al +12 -0
  625. data/Slic3r/Linux/lib/std/auto/POSIX/fileno.al +12 -0
  626. data/Slic3r/Linux/lib/std/auto/POSIX/fopen.al +12 -0
  627. data/Slic3r/Linux/lib/std/auto/POSIX/fork.al +13 -0
  628. data/Slic3r/Linux/lib/std/auto/POSIX/fprintf.al +12 -0
  629. data/Slic3r/Linux/lib/std/auto/POSIX/fputc.al +12 -0
  630. data/Slic3r/Linux/lib/std/auto/POSIX/fputs.al +12 -0
  631. data/Slic3r/Linux/lib/std/auto/POSIX/fread.al +12 -0
  632. data/Slic3r/Linux/lib/std/auto/POSIX/free.al +12 -0
  633. data/Slic3r/Linux/lib/std/auto/POSIX/freopen.al +12 -0
  634. data/Slic3r/Linux/lib/std/auto/POSIX/fscanf.al +12 -0
  635. data/Slic3r/Linux/lib/std/auto/POSIX/fseek.al +12 -0
  636. data/Slic3r/Linux/lib/std/auto/POSIX/fsetpos.al +12 -0
  637. data/Slic3r/Linux/lib/std/auto/POSIX/fstat.al +17 -0
  638. data/Slic3r/Linux/lib/std/auto/POSIX/fsync.al +12 -0
  639. data/Slic3r/Linux/lib/std/auto/POSIX/ftell.al +12 -0
  640. data/Slic3r/Linux/lib/std/auto/POSIX/fwrite.al +12 -0
  641. data/Slic3r/Linux/lib/std/auto/POSIX/getc.al +13 -0
  642. data/Slic3r/Linux/lib/std/auto/POSIX/getchar.al +13 -0
  643. data/Slic3r/Linux/lib/std/auto/POSIX/getegid.al +13 -0
  644. data/Slic3r/Linux/lib/std/auto/POSIX/getenv.al +13 -0
  645. data/Slic3r/Linux/lib/std/auto/POSIX/geteuid.al +13 -0
  646. data/Slic3r/Linux/lib/std/auto/POSIX/getgid.al +13 -0
  647. data/Slic3r/Linux/lib/std/auto/POSIX/getgrgid.al +13 -0
  648. data/Slic3r/Linux/lib/std/auto/POSIX/getgrnam.al +13 -0
  649. data/Slic3r/Linux/lib/std/auto/POSIX/getgroups.al +14 -0
  650. data/Slic3r/Linux/lib/std/auto/POSIX/getlogin.al +13 -0
  651. data/Slic3r/Linux/lib/std/auto/POSIX/getpgrp.al +13 -0
  652. data/Slic3r/Linux/lib/std/auto/POSIX/getpid.al +13 -0
  653. data/Slic3r/Linux/lib/std/auto/POSIX/getppid.al +13 -0
  654. data/Slic3r/Linux/lib/std/auto/POSIX/getpwnam.al +13 -0
  655. data/Slic3r/Linux/lib/std/auto/POSIX/getpwuid.al +13 -0
  656. data/Slic3r/Linux/lib/std/auto/POSIX/gets.al +13 -0
  657. data/Slic3r/Linux/lib/std/auto/POSIX/getuid.al +13 -0
  658. data/Slic3r/Linux/lib/std/auto/POSIX/gmtime.al +13 -0
  659. data/Slic3r/Linux/lib/std/auto/POSIX/isatty.al +13 -0
  660. data/Slic3r/Linux/lib/std/auto/POSIX/kill.al +13 -0
  661. data/Slic3r/Linux/lib/std/auto/POSIX/labs.al +12 -0
  662. data/Slic3r/Linux/lib/std/auto/POSIX/ldiv.al +12 -0
  663. data/Slic3r/Linux/lib/std/auto/POSIX/link.al +13 -0
  664. data/Slic3r/Linux/lib/std/auto/POSIX/load_imports.al +231 -0
  665. data/Slic3r/Linux/lib/std/auto/POSIX/localtime.al +13 -0
  666. data/Slic3r/Linux/lib/std/auto/POSIX/log.al +13 -0
  667. data/Slic3r/Linux/lib/std/auto/POSIX/longjmp.al +12 -0
  668. data/Slic3r/Linux/lib/std/auto/POSIX/malloc.al +12 -0
  669. data/Slic3r/Linux/lib/std/auto/POSIX/memchr.al +12 -0
  670. data/Slic3r/Linux/lib/std/auto/POSIX/memcmp.al +12 -0
  671. data/Slic3r/Linux/lib/std/auto/POSIX/memcpy.al +12 -0
  672. data/Slic3r/Linux/lib/std/auto/POSIX/memmove.al +12 -0
  673. data/Slic3r/Linux/lib/std/auto/POSIX/memset.al +12 -0
  674. data/Slic3r/Linux/lib/std/auto/POSIX/mkdir.al +13 -0
  675. data/Slic3r/Linux/lib/std/auto/POSIX/offsetof.al +12 -0
  676. data/Slic3r/Linux/lib/std/auto/POSIX/opendir.al +16 -0
  677. data/Slic3r/Linux/lib/std/auto/POSIX/perror.al +13 -0
  678. data/Slic3r/Linux/lib/std/auto/POSIX/pow.al +13 -0
  679. data/Slic3r/Linux/lib/std/auto/POSIX/printf.al +13 -0
  680. data/Slic3r/Linux/lib/std/auto/POSIX/putc.al +12 -0
  681. data/Slic3r/Linux/lib/std/auto/POSIX/putchar.al +12 -0
  682. data/Slic3r/Linux/lib/std/auto/POSIX/puts.al +12 -0
  683. data/Slic3r/Linux/lib/std/auto/POSIX/qsort.al +12 -0
  684. data/Slic3r/Linux/lib/std/auto/POSIX/raise.al +13 -0
  685. data/Slic3r/Linux/lib/std/auto/POSIX/rand.al +12 -0
  686. data/Slic3r/Linux/lib/std/auto/POSIX/readdir.al +13 -0
  687. data/Slic3r/Linux/lib/std/auto/POSIX/realloc.al +12 -0
  688. data/Slic3r/Linux/lib/std/auto/POSIX/redef.al +13 -0
  689. data/Slic3r/Linux/lib/std/auto/POSIX/remove.al +13 -0
  690. data/Slic3r/Linux/lib/std/auto/POSIX/rename.al +13 -0
  691. data/Slic3r/Linux/lib/std/auto/POSIX/rewind.al +13 -0
  692. data/Slic3r/Linux/lib/std/auto/POSIX/rewinddir.al +13 -0
  693. data/Slic3r/Linux/lib/std/auto/POSIX/rmdir.al +13 -0
  694. data/Slic3r/Linux/lib/std/auto/POSIX/scanf.al +12 -0
  695. data/Slic3r/Linux/lib/std/auto/POSIX/setbuf.al +12 -0
  696. data/Slic3r/Linux/lib/std/auto/POSIX/setjmp.al +12 -0
  697. data/Slic3r/Linux/lib/std/auto/POSIX/setvbuf.al +12 -0
  698. data/Slic3r/Linux/lib/std/auto/POSIX/siglongjmp.al +12 -0
  699. data/Slic3r/Linux/lib/std/auto/POSIX/sigsetjmp.al +12 -0
  700. data/Slic3r/Linux/lib/std/auto/POSIX/sin.al +13 -0
  701. data/Slic3r/Linux/lib/std/auto/POSIX/sleep.al +13 -0
  702. data/Slic3r/Linux/lib/std/auto/POSIX/sprintf.al +13 -0
  703. data/Slic3r/Linux/lib/std/auto/POSIX/sqrt.al +13 -0
  704. data/Slic3r/Linux/lib/std/auto/POSIX/srand.al +12 -0
  705. data/Slic3r/Linux/lib/std/auto/POSIX/sscanf.al +12 -0
  706. data/Slic3r/Linux/lib/std/auto/POSIX/stat.al +13 -0
  707. data/Slic3r/Linux/lib/std/auto/POSIX/strcat.al +12 -0
  708. data/Slic3r/Linux/lib/std/auto/POSIX/strchr.al +12 -0
  709. data/Slic3r/Linux/lib/std/auto/POSIX/strcmp.al +12 -0
  710. data/Slic3r/Linux/lib/std/auto/POSIX/strcpy.al +12 -0
  711. data/Slic3r/Linux/lib/std/auto/POSIX/strcspn.al +12 -0
  712. data/Slic3r/Linux/lib/std/auto/POSIX/strerror.al +14 -0
  713. data/Slic3r/Linux/lib/std/auto/POSIX/strlen.al +12 -0
  714. data/Slic3r/Linux/lib/std/auto/POSIX/strncat.al +12 -0
  715. data/Slic3r/Linux/lib/std/auto/POSIX/strncmp.al +12 -0
  716. data/Slic3r/Linux/lib/std/auto/POSIX/strncpy.al +12 -0
  717. data/Slic3r/Linux/lib/std/auto/POSIX/strpbrk.al +12 -0
  718. data/Slic3r/Linux/lib/std/auto/POSIX/strrchr.al +12 -0
  719. data/Slic3r/Linux/lib/std/auto/POSIX/strspn.al +12 -0
  720. data/Slic3r/Linux/lib/std/auto/POSIX/strstr.al +13 -0
  721. data/Slic3r/Linux/lib/std/auto/POSIX/strtok.al +12 -0
  722. data/Slic3r/Linux/lib/std/auto/POSIX/system.al +13 -0
  723. data/Slic3r/Linux/lib/std/auto/POSIX/time.al +13 -0
  724. data/Slic3r/Linux/lib/std/auto/POSIX/tmpfile.al +12 -0
  725. data/Slic3r/Linux/lib/std/auto/POSIX/tolower.al +13 -0
  726. data/Slic3r/Linux/lib/std/auto/POSIX/toupper.al +13 -0
  727. data/Slic3r/Linux/lib/std/auto/POSIX/umask.al +13 -0
  728. data/Slic3r/Linux/lib/std/auto/POSIX/ungetc.al +12 -0
  729. data/Slic3r/Linux/lib/std/auto/POSIX/unimpl.al +14 -0
  730. data/Slic3r/Linux/lib/std/auto/POSIX/unlink.al +13 -0
  731. data/Slic3r/Linux/lib/std/auto/POSIX/usage.al +13 -0
  732. data/Slic3r/Linux/lib/std/auto/POSIX/utime.al +13 -0
  733. data/Slic3r/Linux/lib/std/auto/POSIX/vfprintf.al +12 -0
  734. data/Slic3r/Linux/lib/std/auto/POSIX/vprintf.al +12 -0
  735. data/Slic3r/Linux/lib/std/auto/POSIX/vsprintf.al +12 -0
  736. data/Slic3r/Linux/lib/std/auto/POSIX/wait.al +13 -0
  737. data/Slic3r/Linux/lib/std/auto/POSIX/waitpid.al +13 -0
  738. data/Slic3r/Linux/lib/std/auto/Params/Validate/XS/XS.so +0 -0
  739. data/Slic3r/Linux/lib/std/auto/PerlIO/encoding/encoding.so +0 -0
  740. data/Slic3r/Linux/lib/std/auto/PerlIO/scalar/scalar.so +0 -0
  741. data/Slic3r/Linux/lib/std/auto/PerlIO/via/via.so +0 -0
  742. data/Slic3r/Linux/lib/std/auto/Slic3r/XS/XS.so +0 -0
  743. data/Slic3r/Linux/lib/std/auto/Socket/Socket.so +0 -0
  744. data/Slic3r/Linux/lib/std/auto/Storable/Storable.so +0 -0
  745. data/Slic3r/Linux/lib/std/auto/Tie/Hash/NamedCapture/NamedCapture.so +0 -0
  746. data/Slic3r/Linux/lib/std/auto/Time/HiRes/HiRes.so +0 -0
  747. data/Slic3r/Linux/lib/std/auto/Wx/DND/DND.so +0 -0
  748. data/Slic3r/Linux/lib/std/auto/Wx/GLCanvas/GLCanvas.so +0 -0
  749. data/Slic3r/Linux/lib/std/auto/Wx/Grid/Grid.so +0 -0
  750. data/Slic3r/Linux/lib/std/auto/Wx/Html/Html.so +0 -0
  751. data/Slic3r/Linux/lib/std/auto/Wx/Print/Print.so +0 -0
  752. data/Slic3r/Linux/lib/std/auto/Wx/Wx.so +0 -0
  753. data/Slic3r/Linux/lib/std/auto/XML/SAX/ExpatXS/ExpatXS.so +0 -0
  754. data/Slic3r/Linux/lib/std/auto/attributes/attributes.so +0 -0
  755. data/Slic3r/Linux/lib/std/auto/mro/mro.so +0 -0
  756. data/Slic3r/Linux/lib/std/auto/re/re.so +0 -0
  757. data/Slic3r/Linux/lib/std/auto/threads/shared/shared.so +0 -0
  758. data/Slic3r/Linux/lib/std/auto/threads/threads.so +0 -0
  759. data/Slic3r/Linux/lib/std/base.pm +265 -0
  760. data/Slic3r/Linux/lib/std/bytes.pm +100 -0
  761. data/Slic3r/Linux/lib/std/bytes_heavy.pl +40 -0
  762. data/Slic3r/Linux/lib/std/constant.pm +397 -0
  763. data/Slic3r/Linux/lib/std/constant/defer.pm +441 -0
  764. data/Slic3r/Linux/lib/std/encoding.pm +669 -0
  765. data/Slic3r/Linux/lib/std/encoding/warnings.pm +239 -0
  766. data/Slic3r/Linux/lib/std/feature.pm +249 -0
  767. data/Slic3r/Linux/lib/std/filetest.pm +117 -0
  768. data/Slic3r/Linux/lib/std/integer.pm +93 -0
  769. data/Slic3r/Linux/lib/std/less.pm +158 -0
  770. data/Slic3r/Linux/lib/std/mro.pm +363 -0
  771. data/Slic3r/Linux/lib/std/overload.pm +1701 -0
  772. data/Slic3r/Linux/lib/std/parent.pm +136 -0
  773. data/Slic3r/Linux/lib/std/re.pm +604 -0
  774. data/Slic3r/Linux/lib/std/slic3r.pl +491 -0
  775. data/Slic3r/Linux/lib/std/sort.pm +196 -0
  776. data/Slic3r/Linux/lib/std/strictures.pm +296 -0
  777. data/Slic3r/Linux/lib/std/threads.pm +1115 -0
  778. data/Slic3r/Linux/lib/std/threads/shared.pm +616 -0
  779. data/Slic3r/Linux/lib/std/unicore/Heavy.pl +3261 -0
  780. data/Slic3r/Linux/lib/std/unicore/To/Age.pl +1036 -0
  781. data/Slic3r/Linux/lib/std/unicore/To/Bc.pl +555 -0
  782. data/Slic3r/Linux/lib/std/unicore/To/Bmg.pl +375 -0
  783. data/Slic3r/Linux/lib/std/unicore/To/Digit.pl +433 -0
  784. data/Slic3r/Linux/lib/std/unicore/To/Dt.pl +759 -0
  785. data/Slic3r/Linux/lib/std/unicore/To/Ea.pl +245 -0
  786. data/Slic3r/Linux/lib/std/unicore/To/Fold.pl +1177 -0
  787. data/Slic3r/Linux/lib/std/unicore/To/GCB.pl +1177 -0
  788. data/Slic3r/Linux/lib/std/unicore/To/Gc.pl +2639 -0
  789. data/Slic3r/Linux/lib/std/unicore/To/Hst.pl +822 -0
  790. data/Slic3r/Linux/lib/std/unicore/To/Jg.pl +144 -0
  791. data/Slic3r/Linux/lib/std/unicore/To/Jt.pl +292 -0
  792. data/Slic3r/Linux/lib/std/unicore/To/Lb.pl +2195 -0
  793. data/Slic3r/Linux/lib/std/unicore/To/Lower.pl +1061 -0
  794. data/Slic3r/Linux/lib/std/unicore/To/NFCQC.pl +126 -0
  795. data/Slic3r/Linux/lib/std/unicore/To/NFDQC.pl +245 -0
  796. data/Slic3r/Linux/lib/std/unicore/To/NFKCCF.pl +9815 -0
  797. data/Slic3r/Linux/lib/std/unicore/To/NFKCQC.pl +265 -0
  798. data/Slic3r/Linux/lib/std/unicore/To/NFKDQC.pl +367 -0
  799. data/Slic3r/Linux/lib/std/unicore/To/Na1.pl +1996 -0
  800. data/Slic3r/Linux/lib/std/unicore/To/Nt.pl +198 -0
  801. data/Slic3r/Linux/lib/std/unicore/To/Nv.pl +1157 -0
  802. data/Slic3r/Linux/lib/std/unicore/To/SB.pl +1958 -0
  803. data/Slic3r/Linux/lib/std/unicore/To/Sc.pl +702 -0
  804. data/Slic3r/Linux/lib/std/unicore/To/Title.pl +1117 -0
  805. data/Slic3r/Linux/lib/std/unicore/To/Upper.pl +1144 -0
  806. data/Slic3r/Linux/lib/std/unicore/To/WB.pl +691 -0
  807. data/Slic3r/Linux/lib/std/unicore/To/_slc.pl +46 -0
  808. data/Slic3r/Linux/lib/std/unicore/To/_stc.pl +45 -0
  809. data/Slic3r/Linux/lib/std/unicore/To/_suc.pl +45 -0
  810. data/Slic3r/Linux/lib/std/unicore/lib/AHex/N.pl +16 -0
  811. data/Slic3r/Linux/lib/std/unicore/lib/AHex/Y.pl +15 -0
  812. data/Slic3r/Linux/lib/std/unicore/lib/Age/1_1.pl +300 -0
  813. data/Slic3r/Linux/lib/std/unicore/lib/Age/2_0.pl +41 -0
  814. data/Slic3r/Linux/lib/std/unicore/lib/Age/2_1.pl +14 -0
  815. data/Slic3r/Linux/lib/std/unicore/lib/Age/3_0.pl +133 -0
  816. data/Slic3r/Linux/lib/std/unicore/lib/Age/3_1.pl +48 -0
  817. data/Slic3r/Linux/lib/std/unicore/lib/Age/3_2.pl +71 -0
  818. data/Slic3r/Linux/lib/std/unicore/lib/Age/4_0.pl +89 -0
  819. data/Slic3r/Linux/lib/std/unicore/lib/Age/4_1.pl +98 -0
  820. data/Slic3r/Linux/lib/std/unicore/lib/Age/5_0.pl +47 -0
  821. data/Slic3r/Linux/lib/std/unicore/lib/Age/5_1.pl +101 -0
  822. data/Slic3r/Linux/lib/std/unicore/lib/Age/5_2.pl +102 -0
  823. data/Slic3r/Linux/lib/std/unicore/lib/Age/6_0.pl +118 -0
  824. data/Slic3r/Linux/lib/std/unicore/lib/Age/Unassign.pl +522 -0
  825. data/Slic3r/Linux/lib/std/unicore/lib/Alpha/N.pl +499 -0
  826. data/Slic3r/Linux/lib/std/unicore/lib/Alpha/Y.pl +498 -0
  827. data/Slic3r/Linux/lib/std/unicore/lib/Bc/AL.pl +30 -0
  828. data/Slic3r/Linux/lib/std/unicore/lib/Bc/AN.pl +17 -0
  829. data/Slic3r/Linux/lib/std/unicore/lib/Bc/B.pl +17 -0
  830. data/Slic3r/Linux/lib/std/unicore/lib/Bc/BN.pl +41 -0
  831. data/Slic3r/Linux/lib/std/unicore/lib/Bc/CS.pl +25 -0
  832. data/Slic3r/Linux/lib/std/unicore/lib/Bc/EN.pl +23 -0
  833. data/Slic3r/Linux/lib/std/unicore/lib/Bc/ES.pl +21 -0
  834. data/Slic3r/Linux/lib/std/unicore/lib/Bc/ET.pl +33 -0
  835. data/Slic3r/Linux/lib/std/unicore/lib/Bc/L.pl +358 -0
  836. data/Slic3r/Linux/lib/std/unicore/lib/Bc/LRE.pl +13 -0
  837. data/Slic3r/Linux/lib/std/unicore/lib/Bc/LRO.pl +13 -0
  838. data/Slic3r/Linux/lib/std/unicore/lib/Bc/NSM.pl +211 -0
  839. data/Slic3r/Linux/lib/std/unicore/lib/Bc/ON.pl +195 -0
  840. data/Slic3r/Linux/lib/std/unicore/lib/Bc/PDF.pl +13 -0
  841. data/Slic3r/Linux/lib/std/unicore/lib/Bc/R.pl +40 -0
  842. data/Slic3r/Linux/lib/std/unicore/lib/Bc/RLE.pl +13 -0
  843. data/Slic3r/Linux/lib/std/unicore/lib/Bc/RLO.pl +13 -0
  844. data/Slic3r/Linux/lib/std/unicore/lib/Bc/S.pl +15 -0
  845. data/Slic3r/Linux/lib/std/unicore/lib/Bc/WS.pl +20 -0
  846. data/Slic3r/Linux/lib/std/unicore/lib/BidiC/N.pl +15 -0
  847. data/Slic3r/Linux/lib/std/unicore/lib/BidiC/Y.pl +14 -0
  848. data/Slic3r/Linux/lib/std/unicore/lib/BidiM/N.pl +124 -0
  849. data/Slic3r/Linux/lib/std/unicore/lib/BidiM/Y.pl +123 -0
  850. data/Slic3r/Linux/lib/std/unicore/lib/Blk/ASCII.pl +13 -0
  851. data/Slic3r/Linux/lib/std/unicore/lib/Blk/AegeanNu.pl +13 -0
  852. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Alchemic.pl +13 -0
  853. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Alphabet.pl +13 -0
  854. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Ancient2.pl +13 -0
  855. data/Slic3r/Linux/lib/std/unicore/lib/Blk/AncientG.pl +13 -0
  856. data/Slic3r/Linux/lib/std/unicore/lib/Blk/AncientS.pl +13 -0
  857. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Arabic.pl +13 -0
  858. data/Slic3r/Linux/lib/std/unicore/lib/Blk/ArabicP2.pl +13 -0
  859. data/Slic3r/Linux/lib/std/unicore/lib/Blk/ArabicPr.pl +13 -0
  860. data/Slic3r/Linux/lib/std/unicore/lib/Blk/ArabicSu.pl +13 -0
  861. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Armenian.pl +13 -0
  862. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Arrows.pl +13 -0
  863. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Avestan.pl +13 -0
  864. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Balinese.pl +13 -0
  865. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Bamum.pl +13 -0
  866. data/Slic3r/Linux/lib/std/unicore/lib/Blk/BamumSup.pl +13 -0
  867. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Batak.pl +13 -0
  868. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Bengali.pl +13 -0
  869. data/Slic3r/Linux/lib/std/unicore/lib/Blk/BlockEle.pl +13 -0
  870. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Bopomof2.pl +13 -0
  871. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Bopomofo.pl +13 -0
  872. data/Slic3r/Linux/lib/std/unicore/lib/Blk/BoxDrawi.pl +13 -0
  873. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Brahmi.pl +13 -0
  874. data/Slic3r/Linux/lib/std/unicore/lib/Blk/BrailleP.pl +13 -0
  875. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Buginese.pl +13 -0
  876. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Buhid.pl +13 -0
  877. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Byzantin.pl +13 -0
  878. data/Slic3r/Linux/lib/std/unicore/lib/Blk/CJKComp2.pl +13 -0
  879. data/Slic3r/Linux/lib/std/unicore/lib/Blk/CJKComp3.pl +13 -0
  880. data/Slic3r/Linux/lib/std/unicore/lib/Blk/CJKComp4.pl +13 -0
  881. data/Slic3r/Linux/lib/std/unicore/lib/Blk/CJKCompa.pl +13 -0
  882. data/Slic3r/Linux/lib/std/unicore/lib/Blk/CJKRadic.pl +13 -0
  883. data/Slic3r/Linux/lib/std/unicore/lib/Blk/CJKStrok.pl +13 -0
  884. data/Slic3r/Linux/lib/std/unicore/lib/Blk/CJKSymbo.pl +13 -0
  885. data/Slic3r/Linux/lib/std/unicore/lib/Blk/CJKUnif2.pl +13 -0
  886. data/Slic3r/Linux/lib/std/unicore/lib/Blk/CJKUnif3.pl +13 -0
  887. data/Slic3r/Linux/lib/std/unicore/lib/Blk/CJKUnif4.pl +13 -0
  888. data/Slic3r/Linux/lib/std/unicore/lib/Blk/CJKUnif5.pl +13 -0
  889. data/Slic3r/Linux/lib/std/unicore/lib/Blk/CJKUnifi.pl +13 -0
  890. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Canadian.pl +13 -0
  891. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Carian.pl +13 -0
  892. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Cham.pl +13 -0
  893. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Cherokee.pl +13 -0
  894. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Combini2.pl +13 -0
  895. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Combini3.pl +13 -0
  896. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Combini4.pl +13 -0
  897. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Combinin.pl +13 -0
  898. data/Slic3r/Linux/lib/std/unicore/lib/Blk/CommonIn.pl +13 -0
  899. data/Slic3r/Linux/lib/std/unicore/lib/Blk/ControlP.pl +13 -0
  900. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Coptic.pl +13 -0
  901. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Counting.pl +13 -0
  902. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Cuneifo2.pl +13 -0
  903. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Cuneifor.pl +13 -0
  904. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Currency.pl +13 -0
  905. data/Slic3r/Linux/lib/std/unicore/lib/Blk/CypriotS.pl +13 -0
  906. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Cyrilli2.pl +13 -0
  907. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Cyrilli3.pl +13 -0
  908. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Cyrilli4.pl +13 -0
  909. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Cyrillic.pl +13 -0
  910. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Deseret.pl +13 -0
  911. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Devanag2.pl +13 -0
  912. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Devanaga.pl +13 -0
  913. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Dingbats.pl +13 -0
  914. data/Slic3r/Linux/lib/std/unicore/lib/Blk/DominoTi.pl +13 -0
  915. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Egyptian.pl +13 -0
  916. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Emoticon.pl +13 -0
  917. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Enclose2.pl +13 -0
  918. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Enclose3.pl +13 -0
  919. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Enclose4.pl +13 -0
  920. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Enclosed.pl +13 -0
  921. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Ethiopi2.pl +13 -0
  922. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Ethiopi3.pl +13 -0
  923. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Ethiopi4.pl +13 -0
  924. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Ethiopic.pl +13 -0
  925. data/Slic3r/Linux/lib/std/unicore/lib/Blk/GeneralP.pl +13 -0
  926. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Geometri.pl +13 -0
  927. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Georgia2.pl +13 -0
  928. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Georgian.pl +13 -0
  929. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Glagolit.pl +13 -0
  930. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Gothic.pl +13 -0
  931. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Greek.pl +13 -0
  932. data/Slic3r/Linux/lib/std/unicore/lib/Blk/GreekExt.pl +13 -0
  933. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Gujarati.pl +13 -0
  934. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Gurmukhi.pl +13 -0
  935. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Halfwidt.pl +13 -0
  936. data/Slic3r/Linux/lib/std/unicore/lib/Blk/HangulCo.pl +13 -0
  937. data/Slic3r/Linux/lib/std/unicore/lib/Blk/HangulJ2.pl +13 -0
  938. data/Slic3r/Linux/lib/std/unicore/lib/Blk/HangulJ3.pl +13 -0
  939. data/Slic3r/Linux/lib/std/unicore/lib/Blk/HangulJa.pl +13 -0
  940. data/Slic3r/Linux/lib/std/unicore/lib/Blk/HangulSy.pl +13 -0
  941. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Hanunoo.pl +13 -0
  942. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Hebrew.pl +13 -0
  943. data/Slic3r/Linux/lib/std/unicore/lib/Blk/HighPriv.pl +13 -0
  944. data/Slic3r/Linux/lib/std/unicore/lib/Blk/HighSurr.pl +13 -0
  945. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Hiragana.pl +13 -0
  946. data/Slic3r/Linux/lib/std/unicore/lib/Blk/IPAExten.pl +13 -0
  947. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Ideograp.pl +13 -0
  948. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Imperial.pl +13 -0
  949. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Inscrip2.pl +13 -0
  950. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Inscript.pl +13 -0
  951. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Javanese.pl +13 -0
  952. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Kaithi.pl +13 -0
  953. data/Slic3r/Linux/lib/std/unicore/lib/Blk/KanaSupp.pl +13 -0
  954. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Kanbun.pl +13 -0
  955. data/Slic3r/Linux/lib/std/unicore/lib/Blk/KangxiRa.pl +13 -0
  956. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Kannada.pl +13 -0
  957. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Katakan2.pl +13 -0
  958. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Katakana.pl +13 -0
  959. data/Slic3r/Linux/lib/std/unicore/lib/Blk/KayahLi.pl +13 -0
  960. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Kharosht.pl +13 -0
  961. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Khmer.pl +13 -0
  962. data/Slic3r/Linux/lib/std/unicore/lib/Blk/KhmerSym.pl +13 -0
  963. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Lao.pl +13 -0
  964. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Latin1.pl +13 -0
  965. data/Slic3r/Linux/lib/std/unicore/lib/Blk/LatinEx2.pl +13 -0
  966. data/Slic3r/Linux/lib/std/unicore/lib/Blk/LatinEx3.pl +13 -0
  967. data/Slic3r/Linux/lib/std/unicore/lib/Blk/LatinEx4.pl +13 -0
  968. data/Slic3r/Linux/lib/std/unicore/lib/Blk/LatinEx5.pl +13 -0
  969. data/Slic3r/Linux/lib/std/unicore/lib/Blk/LatinExt.pl +13 -0
  970. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Lepcha.pl +13 -0
  971. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Letterli.pl +13 -0
  972. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Limbu.pl +13 -0
  973. data/Slic3r/Linux/lib/std/unicore/lib/Blk/LinearBI.pl +13 -0
  974. data/Slic3r/Linux/lib/std/unicore/lib/Blk/LinearBS.pl +13 -0
  975. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Lisu.pl +13 -0
  976. data/Slic3r/Linux/lib/std/unicore/lib/Blk/LowSurro.pl +13 -0
  977. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Lycian.pl +13 -0
  978. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Lydian.pl +13 -0
  979. data/Slic3r/Linux/lib/std/unicore/lib/Blk/MahjongT.pl +13 -0
  980. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Malayala.pl +13 -0
  981. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Mandaic.pl +13 -0
  982. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Mathema2.pl +13 -0
  983. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Mathemat.pl +13 -0
  984. data/Slic3r/Linux/lib/std/unicore/lib/Blk/MeeteiMa.pl +13 -0
  985. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Miscell2.pl +13 -0
  986. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Miscell3.pl +13 -0
  987. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Miscell4.pl +13 -0
  988. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Miscell5.pl +13 -0
  989. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Miscell6.pl +13 -0
  990. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Miscella.pl +13 -0
  991. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Modifier.pl +13 -0
  992. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Mongolia.pl +13 -0
  993. data/Slic3r/Linux/lib/std/unicore/lib/Blk/MusicalS.pl +13 -0
  994. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Myanmar.pl +13 -0
  995. data/Slic3r/Linux/lib/std/unicore/lib/Blk/MyanmarE.pl +13 -0
  996. data/Slic3r/Linux/lib/std/unicore/lib/Blk/NKo.pl +13 -0
  997. data/Slic3r/Linux/lib/std/unicore/lib/Blk/NewTaiLu.pl +13 -0
  998. data/Slic3r/Linux/lib/std/unicore/lib/Blk/NoBlock.pl +45 -0
  999. data/Slic3r/Linux/lib/std/unicore/lib/Blk/NumberFo.pl +13 -0
  1000. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Ogham.pl +13 -0
  1001. data/Slic3r/Linux/lib/std/unicore/lib/Blk/OlChiki.pl +13 -0
  1002. data/Slic3r/Linux/lib/std/unicore/lib/Blk/OldItali.pl +13 -0
  1003. data/Slic3r/Linux/lib/std/unicore/lib/Blk/OldPersi.pl +13 -0
  1004. data/Slic3r/Linux/lib/std/unicore/lib/Blk/OldSouth.pl +13 -0
  1005. data/Slic3r/Linux/lib/std/unicore/lib/Blk/OldTurki.pl +13 -0
  1006. data/Slic3r/Linux/lib/std/unicore/lib/Blk/OpticalC.pl +13 -0
  1007. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Oriya.pl +13 -0
  1008. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Osmanya.pl +13 -0
  1009. data/Slic3r/Linux/lib/std/unicore/lib/Blk/PhagsPa.pl +13 -0
  1010. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Phaistos.pl +13 -0
  1011. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Phoenici.pl +13 -0
  1012. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Phoneti2.pl +13 -0
  1013. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Phonetic.pl +13 -0
  1014. data/Slic3r/Linux/lib/std/unicore/lib/Blk/PlayingC.pl +13 -0
  1015. data/Slic3r/Linux/lib/std/unicore/lib/Blk/PrivateU.pl +13 -0
  1016. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Rejang.pl +13 -0
  1017. data/Slic3r/Linux/lib/std/unicore/lib/Blk/RumiNume.pl +13 -0
  1018. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Runic.pl +13 -0
  1019. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Samarita.pl +13 -0
  1020. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Saurasht.pl +13 -0
  1021. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Shavian.pl +13 -0
  1022. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Sinhala.pl +13 -0
  1023. data/Slic3r/Linux/lib/std/unicore/lib/Blk/SmallFor.pl +13 -0
  1024. data/Slic3r/Linux/lib/std/unicore/lib/Blk/SpacingM.pl +13 -0
  1025. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Specials.pl +13 -0
  1026. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Sundanes.pl +13 -0
  1027. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Superscr.pl +13 -0
  1028. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Supplem2.pl +13 -0
  1029. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Supplem3.pl +13 -0
  1030. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Supplem4.pl +13 -0
  1031. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Supplem5.pl +13 -0
  1032. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Supplem6.pl +13 -0
  1033. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Suppleme.pl +13 -0
  1034. data/Slic3r/Linux/lib/std/unicore/lib/Blk/SylotiNa.pl +13 -0
  1035. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Syriac.pl +13 -0
  1036. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Tagalog.pl +13 -0
  1037. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Tagbanwa.pl +13 -0
  1038. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Tags.pl +13 -0
  1039. data/Slic3r/Linux/lib/std/unicore/lib/Blk/TaiLe.pl +13 -0
  1040. data/Slic3r/Linux/lib/std/unicore/lib/Blk/TaiTham.pl +13 -0
  1041. data/Slic3r/Linux/lib/std/unicore/lib/Blk/TaiViet.pl +13 -0
  1042. data/Slic3r/Linux/lib/std/unicore/lib/Blk/TaiXuanJ.pl +13 -0
  1043. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Tamil.pl +13 -0
  1044. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Telugu.pl +13 -0
  1045. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Thaana.pl +13 -0
  1046. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Thai.pl +13 -0
  1047. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Tibetan.pl +13 -0
  1048. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Tifinagh.pl +13 -0
  1049. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Transpor.pl +13 -0
  1050. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Ugaritic.pl +13 -0
  1051. data/Slic3r/Linux/lib/std/unicore/lib/Blk/UnifiedC.pl +13 -0
  1052. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Vai.pl +13 -0
  1053. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Variati2.pl +13 -0
  1054. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Variatio.pl +13 -0
  1055. data/Slic3r/Linux/lib/std/unicore/lib/Blk/VedicExt.pl +13 -0
  1056. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Vertical.pl +13 -0
  1057. data/Slic3r/Linux/lib/std/unicore/lib/Blk/YiRadica.pl +13 -0
  1058. data/Slic3r/Linux/lib/std/unicore/lib/Blk/YiSyllab.pl +13 -0
  1059. data/Slic3r/Linux/lib/std/unicore/lib/Blk/YijingHe.pl +13 -0
  1060. data/Slic3r/Linux/lib/std/unicore/lib/CE/N.pl +46 -0
  1061. data/Slic3r/Linux/lib/std/unicore/lib/CE/Y.pl +45 -0
  1062. data/Slic3r/Linux/lib/std/unicore/lib/CI/N.pl +290 -0
  1063. data/Slic3r/Linux/lib/std/unicore/lib/CI/Y.pl +289 -0
  1064. data/Slic3r/Linux/lib/std/unicore/lib/CWCF/N.pl +590 -0
  1065. data/Slic3r/Linux/lib/std/unicore/lib/CWCF/Y.pl +589 -0
  1066. data/Slic3r/Linux/lib/std/unicore/lib/CWCM/N.pl +112 -0
  1067. data/Slic3r/Linux/lib/std/unicore/lib/CWCM/Y.pl +111 -0
  1068. data/Slic3r/Linux/lib/std/unicore/lib/CWKCF/N.pl +765 -0
  1069. data/Slic3r/Linux/lib/std/unicore/lib/CWKCF/Y.pl +764 -0
  1070. data/Slic3r/Linux/lib/std/unicore/lib/CWL/N.pl +579 -0
  1071. data/Slic3r/Linux/lib/std/unicore/lib/CWL/Y.pl +578 -0
  1072. data/Slic3r/Linux/lib/std/unicore/lib/CWT/N.pl +596 -0
  1073. data/Slic3r/Linux/lib/std/unicore/lib/CWT/Y.pl +595 -0
  1074. data/Slic3r/Linux/lib/std/unicore/lib/CWU/N.pl +595 -0
  1075. data/Slic3r/Linux/lib/std/unicore/lib/CWU/Y.pl +594 -0
  1076. data/Slic3r/Linux/lib/std/unicore/lib/Cased/N.pl +125 -0
  1077. data/Slic3r/Linux/lib/std/unicore/lib/Cased/Y.pl +124 -0
  1078. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/10.pl +13 -0
  1079. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/103.pl +13 -0
  1080. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/107.pl +13 -0
  1081. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/11.pl +13 -0
  1082. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/118.pl +13 -0
  1083. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/12.pl +13 -0
  1084. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/122.pl +13 -0
  1085. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/129.pl +13 -0
  1086. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/13.pl +13 -0
  1087. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/130.pl +15 -0
  1088. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/132.pl +13 -0
  1089. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/14.pl +13 -0
  1090. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/15.pl +13 -0
  1091. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/16.pl +13 -0
  1092. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/17.pl +13 -0
  1093. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/18.pl +14 -0
  1094. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/19.pl +13 -0
  1095. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/20.pl +13 -0
  1096. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/21.pl +13 -0
  1097. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/22.pl +13 -0
  1098. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/23.pl +13 -0
  1099. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/24.pl +13 -0
  1100. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/25.pl +13 -0
  1101. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/26.pl +13 -0
  1102. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/27.pl +13 -0
  1103. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/28.pl +13 -0
  1104. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/29.pl +13 -0
  1105. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/30.pl +14 -0
  1106. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/31.pl +14 -0
  1107. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/32.pl +14 -0
  1108. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/33.pl +13 -0
  1109. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/34.pl +13 -0
  1110. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/35.pl +13 -0
  1111. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/36.pl +13 -0
  1112. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/84.pl +13 -0
  1113. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/91.pl +13 -0
  1114. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/A.pl +96 -0
  1115. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/AL.pl +15 -0
  1116. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/AR.pl +16 -0
  1117. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/ATA.pl +13 -0
  1118. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/ATAR.pl +16 -0
  1119. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/ATB.pl +15 -0
  1120. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/ATBL.pl +13 -0
  1121. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/B.pl +71 -0
  1122. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/BL.pl +13 -0
  1123. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/BR.pl +16 -0
  1124. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/DA.pl +15 -0
  1125. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/DB.pl +16 -0
  1126. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/IS.pl +13 -0
  1127. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/KV.pl +13 -0
  1128. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/L.pl +13 -0
  1129. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/NK.pl +24 -0
  1130. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/NR.pl +135 -0
  1131. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/OV.pl +21 -0
  1132. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/R.pl +13 -0
  1133. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/VR.pl +41 -0
  1134. data/Slic3r/Linux/lib/std/unicore/lib/CompEx/N.pl +87 -0
  1135. data/Slic3r/Linux/lib/std/unicore/lib/CompEx/Y.pl +86 -0
  1136. data/Slic3r/Linux/lib/std/unicore/lib/DI/N.pl +28 -0
  1137. data/Slic3r/Linux/lib/std/unicore/lib/DI/Y.pl +27 -0
  1138. data/Slic3r/Linux/lib/std/unicore/lib/Dash/N.pl +32 -0
  1139. data/Slic3r/Linux/lib/std/unicore/lib/Dash/Y.pl +31 -0
  1140. data/Slic3r/Linux/lib/std/unicore/lib/Dep/N.pl +22 -0
  1141. data/Slic3r/Linux/lib/std/unicore/lib/Dep/Y.pl +21 -0
  1142. data/Slic3r/Linux/lib/std/unicore/lib/Dia/N.pl +130 -0
  1143. data/Slic3r/Linux/lib/std/unicore/lib/Dia/Y.pl +129 -0
  1144. data/Slic3r/Linux/lib/std/unicore/lib/Dt/Com.pl +86 -0
  1145. data/Slic3r/Linux/lib/std/unicore/lib/Dt/Enc.pl +20 -0
  1146. data/Slic3r/Linux/lib/std/unicore/lib/Dt/Fin.pl +125 -0
  1147. data/Slic3r/Linux/lib/std/unicore/lib/Dt/Font.pl +46 -0
  1148. data/Slic3r/Linux/lib/std/unicore/lib/Dt/Fra.pl +15 -0
  1149. data/Slic3r/Linux/lib/std/unicore/lib/Dt/Init.pl +87 -0
  1150. data/Slic3r/Linux/lib/std/unicore/lib/Dt/Iso.pl +110 -0
  1151. data/Slic3r/Linux/lib/std/unicore/lib/Dt/Med.pl +66 -0
  1152. data/Slic3r/Linux/lib/std/unicore/lib/Dt/Nar.pl +18 -0
  1153. data/Slic3r/Linux/lib/std/unicore/lib/Dt/Nb.pl +17 -0
  1154. data/Slic3r/Linux/lib/std/unicore/lib/Dt/NonCanon.pl +161 -0
  1155. data/Slic3r/Linux/lib/std/unicore/lib/Dt/None.pl +362 -0
  1156. data/Slic3r/Linux/lib/std/unicore/lib/Dt/Sml.pl +15 -0
  1157. data/Slic3r/Linux/lib/std/unicore/lib/Dt/Sqr.pl +21 -0
  1158. data/Slic3r/Linux/lib/std/unicore/lib/Dt/Sub.pl +16 -0
  1159. data/Slic3r/Linux/lib/std/unicore/lib/Dt/Sup.pl +32 -0
  1160. data/Slic3r/Linux/lib/std/unicore/lib/Dt/Vert.pl +17 -0
  1161. data/Slic3r/Linux/lib/std/unicore/lib/Ea/A.pl +185 -0
  1162. data/Slic3r/Linux/lib/std/unicore/lib/Ea/F.pl +15 -0
  1163. data/Slic3r/Linux/lib/std/unicore/lib/Ea/H.pl +19 -0
  1164. data/Slic3r/Linux/lib/std/unicore/lib/Ea/N.pl +227 -0
  1165. data/Slic3r/Linux/lib/std/unicore/lib/Ea/Na.pl +19 -0
  1166. data/Slic3r/Linux/lib/std/unicore/lib/Ea/W.pl +49 -0
  1167. data/Slic3r/Linux/lib/std/unicore/lib/Ext/N.pl +33 -0
  1168. data/Slic3r/Linux/lib/std/unicore/lib/Ext/Y.pl +32 -0
  1169. data/Slic3r/Linux/lib/std/unicore/lib/GCB/CN.pl +32 -0
  1170. data/Slic3r/Linux/lib/std/unicore/lib/GCB/CR.pl +13 -0
  1171. data/Slic3r/Linux/lib/std/unicore/lib/GCB/EX.pl +227 -0
  1172. data/Slic3r/Linux/lib/std/unicore/lib/GCB/L.pl +14 -0
  1173. data/Slic3r/Linux/lib/std/unicore/lib/GCB/LF.pl +13 -0
  1174. data/Slic3r/Linux/lib/std/unicore/lib/GCB/LV.pl +411 -0
  1175. data/Slic3r/Linux/lib/std/unicore/lib/GCB/LVT.pl +411 -0
  1176. data/Slic3r/Linux/lib/std/unicore/lib/GCB/PP.pl +17 -0
  1177. data/Slic3r/Linux/lib/std/unicore/lib/GCB/SM.pl +125 -0
  1178. data/Slic3r/Linux/lib/std/unicore/lib/GCB/T.pl +14 -0
  1179. data/Slic3r/Linux/lib/std/unicore/lib/GCB/V.pl +14 -0
  1180. data/Slic3r/Linux/lib/std/unicore/lib/GCB/XX.pl +224 -0
  1181. data/Slic3r/Linux/lib/std/unicore/lib/Gc/C.pl +516 -0
  1182. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Cc.pl +14 -0
  1183. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Cf.pl +27 -0
  1184. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Cn.pl +513 -0
  1185. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Co.pl +15 -0
  1186. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Cs.pl +13 -0
  1187. data/Slic3r/Linux/lib/std/unicore/lib/Gc/L.pl +447 -0
  1188. data/Slic3r/Linux/lib/std/unicore/lib/Gc/LC.pl +122 -0
  1189. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Ll.pl +621 -0
  1190. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Lm.pl +61 -0
  1191. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Lo.pl +335 -0
  1192. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Lu.pl +615 -0
  1193. data/Slic3r/Linux/lib/std/unicore/lib/Gc/M.pl +205 -0
  1194. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Mc.pl +125 -0
  1195. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Me.pl +16 -0
  1196. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Mn.pl +215 -0
  1197. data/Slic3r/Linux/lib/std/unicore/lib/Gc/N.pl +95 -0
  1198. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Nl.pl +24 -0
  1199. data/Slic3r/Linux/lib/std/unicore/lib/Gc/No.pl +53 -0
  1200. data/Slic3r/Linux/lib/std/unicore/lib/Gc/P.pl +145 -0
  1201. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Pd.pl +27 -0
  1202. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Pe.pl +82 -0
  1203. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Pf.pl +22 -0
  1204. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Pi.pl +23 -0
  1205. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Po.pl +140 -0
  1206. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Ps.pl +84 -0
  1207. data/Slic3r/Linux/lib/std/unicore/lib/Gc/S.pl +220 -0
  1208. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Sc.pl +28 -0
  1209. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Sk.pl +39 -0
  1210. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Sm.pl +78 -0
  1211. data/Slic3r/Linux/lib/std/unicore/lib/Gc/So.pl +176 -0
  1212. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Z.pl +21 -0
  1213. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Zl.pl +13 -0
  1214. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Zp.pl +13 -0
  1215. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Zs.pl +20 -0
  1216. data/Slic3r/Linux/lib/std/unicore/lib/GrBase/N.pl +609 -0
  1217. data/Slic3r/Linux/lib/std/unicore/lib/GrBase/Y.pl +608 -0
  1218. data/Slic3r/Linux/lib/std/unicore/lib/GrExt/N.pl +228 -0
  1219. data/Slic3r/Linux/lib/std/unicore/lib/Hex/N.pl +19 -0
  1220. data/Slic3r/Linux/lib/std/unicore/lib/Hex/Y.pl +18 -0
  1221. data/Slic3r/Linux/lib/std/unicore/lib/Hst/NA.pl +18 -0
  1222. data/Slic3r/Linux/lib/std/unicore/lib/Hyphen/N.pl +23 -0
  1223. data/Slic3r/Linux/lib/std/unicore/lib/Hyphen/Y.pl +22 -0
  1224. data/Slic3r/Linux/lib/std/unicore/lib/IDC/N.pl +527 -0
  1225. data/Slic3r/Linux/lib/std/unicore/lib/IDC/Y.pl +526 -0
  1226. data/Slic3r/Linux/lib/std/unicore/lib/IDS/N.pl +450 -0
  1227. data/Slic3r/Linux/lib/std/unicore/lib/IDS/Y.pl +449 -0
  1228. data/Slic3r/Linux/lib/std/unicore/lib/IDSB/N.pl +15 -0
  1229. data/Slic3r/Linux/lib/std/unicore/lib/IDSB/Y.pl +14 -0
  1230. data/Slic3r/Linux/lib/std/unicore/lib/IDST/N.pl +14 -0
  1231. data/Slic3r/Linux/lib/std/unicore/lib/IDST/Y.pl +13 -0
  1232. data/Slic3r/Linux/lib/std/unicore/lib/Ideo/N.pl +25 -0
  1233. data/Slic3r/Linux/lib/std/unicore/lib/Ideo/Y.pl +24 -0
  1234. data/Slic3r/Linux/lib/std/unicore/lib/In/2_0.pl +324 -0
  1235. data/Slic3r/Linux/lib/std/unicore/lib/In/2_1.pl +324 -0
  1236. data/Slic3r/Linux/lib/std/unicore/lib/In/3_0.pl +381 -0
  1237. data/Slic3r/Linux/lib/std/unicore/lib/In/3_1.pl +414 -0
  1238. data/Slic3r/Linux/lib/std/unicore/lib/In/3_2.pl +409 -0
  1239. data/Slic3r/Linux/lib/std/unicore/lib/In/4_0.pl +424 -0
  1240. data/Slic3r/Linux/lib/std/unicore/lib/In/4_1.pl +442 -0
  1241. data/Slic3r/Linux/lib/std/unicore/lib/In/5_0.pl +452 -0
  1242. data/Slic3r/Linux/lib/std/unicore/lib/In/5_1.pl +467 -0
  1243. data/Slic3r/Linux/lib/std/unicore/lib/In/5_2.pl +507 -0
  1244. data/Slic3r/Linux/lib/std/unicore/lib/In/6_0.pl +523 -0
  1245. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Ain.pl +16 -0
  1246. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Alaph.pl +13 -0
  1247. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Alef.pl +18 -0
  1248. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Beh.pl +17 -0
  1249. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Beth.pl +14 -0
  1250. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Burushas.pl +13 -0
  1251. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Dal.pl +16 -0
  1252. data/Slic3r/Linux/lib/std/unicore/lib/Jg/DalathRi.pl +15 -0
  1253. data/Slic3r/Linux/lib/std/unicore/lib/Jg/E.pl +13 -0
  1254. data/Slic3r/Linux/lib/std/unicore/lib/Jg/FarsiYeh.pl +16 -0
  1255. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Fe.pl +13 -0
  1256. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Feh.pl +15 -0
  1257. data/Slic3r/Linux/lib/std/unicore/lib/Jg/FinalSem.pl +13 -0
  1258. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Gaf.pl +17 -0
  1259. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Gamal.pl +14 -0
  1260. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Hah.pl +19 -0
  1261. data/Slic3r/Linux/lib/std/unicore/lib/Jg/He.pl +13 -0
  1262. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Heh.pl +13 -0
  1263. data/Slic3r/Linux/lib/std/unicore/lib/Jg/HehGoal.pl +13 -0
  1264. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Heth.pl +13 -0
  1265. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Kaf.pl +15 -0
  1266. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Kaph.pl +13 -0
  1267. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Khaph.pl +13 -0
  1268. data/Slic3r/Linux/lib/std/unicore/lib/Jg/KnottedH.pl +14 -0
  1269. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Lam.pl +15 -0
  1270. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Lamadh.pl +13 -0
  1271. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Meem.pl +14 -0
  1272. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Mim.pl +13 -0
  1273. data/Slic3r/Linux/lib/std/unicore/lib/Jg/NoJoinin.pl +26 -0
  1274. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Noon.pl +15 -0
  1275. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Nun.pl +13 -0
  1276. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Nya.pl +13 -0
  1277. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Pe.pl +13 -0
  1278. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Qaf.pl +15 -0
  1279. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Qaph.pl +13 -0
  1280. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Reh.pl +18 -0
  1281. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Reversed.pl +13 -0
  1282. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Sad.pl +15 -0
  1283. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Sadhe.pl +13 -0
  1284. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Seen.pl +19 -0
  1285. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Semkath.pl +13 -0
  1286. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Shin.pl +13 -0
  1287. data/Slic3r/Linux/lib/std/unicore/lib/Jg/SwashKaf.pl +13 -0
  1288. data/Slic3r/Linux/lib/std/unicore/lib/Jg/SyriacWa.pl +13 -0
  1289. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Tah.pl +14 -0
  1290. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Taw.pl +13 -0
  1291. data/Slic3r/Linux/lib/std/unicore/lib/Jg/TehMarb2.pl +13 -0
  1292. data/Slic3r/Linux/lib/std/unicore/lib/Jg/TehMarbu.pl +15 -0
  1293. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Teth.pl +13 -0
  1294. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Waw.pl +18 -0
  1295. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Yeh.pl +18 -0
  1296. data/Slic3r/Linux/lib/std/unicore/lib/Jg/YehBarre.pl +13 -0
  1297. data/Slic3r/Linux/lib/std/unicore/lib/Jg/YehWithT.pl +13 -0
  1298. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Yudh.pl +13 -0
  1299. data/Slic3r/Linux/lib/std/unicore/lib/Jg/YudhHe.pl +13 -0
  1300. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Zain.pl +13 -0
  1301. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Zhain.pl +13 -0
  1302. data/Slic3r/Linux/lib/std/unicore/lib/JoinC/N.pl +14 -0
  1303. data/Slic3r/Linux/lib/std/unicore/lib/JoinC/Y.pl +13 -0
  1304. data/Slic3r/Linux/lib/std/unicore/lib/Jt/C.pl +15 -0
  1305. data/Slic3r/Linux/lib/std/unicore/lib/Jt/D.pl +41 -0
  1306. data/Slic3r/Linux/lib/std/unicore/lib/Jt/R.pl +40 -0
  1307. data/Slic3r/Linux/lib/std/unicore/lib/Jt/T.pl +226 -0
  1308. data/Slic3r/Linux/lib/std/unicore/lib/Jt/U.pl +231 -0
  1309. data/Slic3r/Linux/lib/std/unicore/lib/LOE/N.pl +18 -0
  1310. data/Slic3r/Linux/lib/std/unicore/lib/Lb/AI.pl +117 -0
  1311. data/Slic3r/Linux/lib/std/unicore/lib/Lb/AL.pl +576 -0
  1312. data/Slic3r/Linux/lib/std/unicore/lib/Lb/B2.pl +13 -0
  1313. data/Slic3r/Linux/lib/std/unicore/lib/Lb/BA.pl +74 -0
  1314. data/Slic3r/Linux/lib/std/unicore/lib/Lb/BB.pl +24 -0
  1315. data/Slic3r/Linux/lib/std/unicore/lib/Lb/BK.pl +14 -0
  1316. data/Slic3r/Linux/lib/std/unicore/lib/Lb/CB.pl +13 -0
  1317. data/Slic3r/Linux/lib/std/unicore/lib/Lb/CL.pl +91 -0
  1318. data/Slic3r/Linux/lib/std/unicore/lib/Lb/CM.pl +189 -0
  1319. data/Slic3r/Linux/lib/std/unicore/lib/Lb/CP.pl +14 -0
  1320. data/Slic3r/Linux/lib/std/unicore/lib/Lb/EX.pl +34 -0
  1321. data/Slic3r/Linux/lib/std/unicore/lib/Lb/GL.pl +23 -0
  1322. data/Slic3r/Linux/lib/std/unicore/lib/Lb/HY.pl +13 -0
  1323. data/Slic3r/Linux/lib/std/unicore/lib/Lb/ID.pl +85 -0
  1324. data/Slic3r/Linux/lib/std/unicore/lib/Lb/IN.pl +14 -0
  1325. data/Slic3r/Linux/lib/std/unicore/lib/Lb/IS.pl +22 -0
  1326. data/Slic3r/Linux/lib/std/unicore/lib/Lb/NL.pl +13 -0
  1327. data/Slic3r/Linux/lib/std/unicore/lib/Lb/NS.pl +49 -0
  1328. data/Slic3r/Linux/lib/std/unicore/lib/Lb/NU.pl +50 -0
  1329. data/Slic3r/Linux/lib/std/unicore/lib/Lb/OP.pl +91 -0
  1330. data/Slic3r/Linux/lib/std/unicore/lib/Lb/PO.pl +30 -0
  1331. data/Slic3r/Linux/lib/std/unicore/lib/Lb/PR.pl +31 -0
  1332. data/Slic3r/Linux/lib/std/unicore/lib/Lb/QU.pl +24 -0
  1333. data/Slic3r/Linux/lib/std/unicore/lib/Lb/SA.pl +49 -0
  1334. data/Slic3r/Linux/lib/std/unicore/lib/Lb/SG.pl +13 -0
  1335. data/Slic3r/Linux/lib/std/unicore/lib/Lb/SP.pl +13 -0
  1336. data/Slic3r/Linux/lib/std/unicore/lib/Lb/SY.pl +13 -0
  1337. data/Slic3r/Linux/lib/std/unicore/lib/Lb/WJ.pl +14 -0
  1338. data/Slic3r/Linux/lib/std/unicore/lib/Lb/XX.pl +505 -0
  1339. data/Slic3r/Linux/lib/std/unicore/lib/Lb/ZW.pl +13 -0
  1340. data/Slic3r/Linux/lib/std/unicore/lib/Lower/N.pl +625 -0
  1341. data/Slic3r/Linux/lib/std/unicore/lib/Lower/Y.pl +624 -0
  1342. data/Slic3r/Linux/lib/std/unicore/lib/Math/N.pl +119 -0
  1343. data/Slic3r/Linux/lib/std/unicore/lib/Math/Y.pl +118 -0
  1344. data/Slic3r/Linux/lib/std/unicore/lib/NChar/N.pl +30 -0
  1345. data/Slic3r/Linux/lib/std/unicore/lib/NChar/Y.pl +30 -0
  1346. data/Slic3r/Linux/lib/std/unicore/lib/NFCQC/Y.pl +118 -0
  1347. data/Slic3r/Linux/lib/std/unicore/lib/NFDQC/N.pl +239 -0
  1348. data/Slic3r/Linux/lib/std/unicore/lib/NFDQC/Y.pl +240 -0
  1349. data/Slic3r/Linux/lib/std/unicore/lib/NFKCQC/M.pl +46 -0
  1350. data/Slic3r/Linux/lib/std/unicore/lib/NFKCQC/N.pl +225 -0
  1351. data/Slic3r/Linux/lib/std/unicore/lib/NFKCQC/Y.pl +256 -0
  1352. data/Slic3r/Linux/lib/std/unicore/lib/NFKDQC/N.pl +361 -0
  1353. data/Slic3r/Linux/lib/std/unicore/lib/Nt/De.pl +50 -0
  1354. data/Slic3r/Linux/lib/std/unicore/lib/Nt/Di.pl +32 -0
  1355. data/Slic3r/Linux/lib/std/unicore/lib/Nt/Nu.pl +134 -0
  1356. data/Slic3r/Linux/lib/std/unicore/lib/Nv/0.pl +67 -0
  1357. data/Slic3r/Linux/lib/std/unicore/lib/Nv/1.pl +102 -0
  1358. data/Slic3r/Linux/lib/std/unicore/lib/Nv/10.pl +47 -0
  1359. data/Slic3r/Linux/lib/std/unicore/lib/Nv/100.pl +32 -0
  1360. data/Slic3r/Linux/lib/std/unicore/lib/Nv/1000.pl +28 -0
  1361. data/Slic3r/Linux/lib/std/unicore/lib/Nv/10000.pl +19 -0
  1362. data/Slic3r/Linux/lib/std/unicore/lib/Nv/100000.pl +13 -0
  1363. data/Slic3r/Linux/lib/std/unicore/lib/Nv/10000000.pl +14 -0
  1364. data/Slic3r/Linux/lib/std/unicore/lib/Nv/10000002.pl +13 -0
  1365. data/Slic3r/Linux/lib/std/unicore/lib/Nv/11.pl +18 -0
  1366. data/Slic3r/Linux/lib/std/unicore/lib/Nv/11_2.pl +13 -0
  1367. data/Slic3r/Linux/lib/std/unicore/lib/Nv/12.pl +18 -0
  1368. data/Slic3r/Linux/lib/std/unicore/lib/Nv/13.pl +16 -0
  1369. data/Slic3r/Linux/lib/std/unicore/lib/Nv/13_2.pl +13 -0
  1370. data/Slic3r/Linux/lib/std/unicore/lib/Nv/14.pl +16 -0
  1371. data/Slic3r/Linux/lib/std/unicore/lib/Nv/15.pl +16 -0
  1372. data/Slic3r/Linux/lib/std/unicore/lib/Nv/15_2.pl +13 -0
  1373. data/Slic3r/Linux/lib/std/unicore/lib/Nv/16.pl +17 -0
  1374. data/Slic3r/Linux/lib/std/unicore/lib/Nv/17.pl +17 -0
  1375. data/Slic3r/Linux/lib/std/unicore/lib/Nv/17_2.pl +13 -0
  1376. data/Slic3r/Linux/lib/std/unicore/lib/Nv/18.pl +17 -0
  1377. data/Slic3r/Linux/lib/std/unicore/lib/Nv/19.pl +17 -0
  1378. data/Slic3r/Linux/lib/std/unicore/lib/Nv/1_10.pl +13 -0
  1379. data/Slic3r/Linux/lib/std/unicore/lib/Nv/1_16.pl +15 -0
  1380. data/Slic3r/Linux/lib/std/unicore/lib/Nv/1_2.pl +21 -0
  1381. data/Slic3r/Linux/lib/std/unicore/lib/Nv/1_3.pl +16 -0
  1382. data/Slic3r/Linux/lib/std/unicore/lib/Nv/1_4.pl +21 -0
  1383. data/Slic3r/Linux/lib/std/unicore/lib/Nv/1_5.pl +13 -0
  1384. data/Slic3r/Linux/lib/std/unicore/lib/Nv/1_6.pl +14 -0
  1385. data/Slic3r/Linux/lib/std/unicore/lib/Nv/1_7.pl +13 -0
  1386. data/Slic3r/Linux/lib/std/unicore/lib/Nv/1_8.pl +17 -0
  1387. data/Slic3r/Linux/lib/std/unicore/lib/Nv/1_9.pl +13 -0
  1388. data/Slic3r/Linux/lib/std/unicore/lib/Nv/2.pl +105 -0
  1389. data/Slic3r/Linux/lib/std/unicore/lib/Nv/20.pl +30 -0
  1390. data/Slic3r/Linux/lib/std/unicore/lib/Nv/200.pl +14 -0
  1391. data/Slic3r/Linux/lib/std/unicore/lib/Nv/2000.pl +13 -0
  1392. data/Slic3r/Linux/lib/std/unicore/lib/Nv/20000.pl +13 -0
  1393. data/Slic3r/Linux/lib/std/unicore/lib/Nv/21.pl +13 -0
  1394. data/Slic3r/Linux/lib/std/unicore/lib/Nv/22.pl +13 -0
  1395. data/Slic3r/Linux/lib/std/unicore/lib/Nv/23.pl +13 -0
  1396. data/Slic3r/Linux/lib/std/unicore/lib/Nv/24.pl +13 -0
  1397. data/Slic3r/Linux/lib/std/unicore/lib/Nv/25.pl +13 -0
  1398. data/Slic3r/Linux/lib/std/unicore/lib/Nv/26.pl +13 -0
  1399. data/Slic3r/Linux/lib/std/unicore/lib/Nv/27.pl +13 -0
  1400. data/Slic3r/Linux/lib/std/unicore/lib/Nv/28.pl +13 -0
  1401. data/Slic3r/Linux/lib/std/unicore/lib/Nv/29.pl +13 -0
  1402. data/Slic3r/Linux/lib/std/unicore/lib/Nv/2_3.pl +17 -0
  1403. data/Slic3r/Linux/lib/std/unicore/lib/Nv/2_5.pl +13 -0
  1404. data/Slic3r/Linux/lib/std/unicore/lib/Nv/3.pl +103 -0
  1405. data/Slic3r/Linux/lib/std/unicore/lib/Nv/30.pl +22 -0
  1406. data/Slic3r/Linux/lib/std/unicore/lib/Nv/300.pl +15 -0
  1407. data/Slic3r/Linux/lib/std/unicore/lib/Nv/3000.pl +13 -0
  1408. data/Slic3r/Linux/lib/std/unicore/lib/Nv/30000.pl +13 -0
  1409. data/Slic3r/Linux/lib/std/unicore/lib/Nv/31.pl +13 -0
  1410. data/Slic3r/Linux/lib/std/unicore/lib/Nv/32.pl +13 -0
  1411. data/Slic3r/Linux/lib/std/unicore/lib/Nv/33.pl +13 -0
  1412. data/Slic3r/Linux/lib/std/unicore/lib/Nv/34.pl +13 -0
  1413. data/Slic3r/Linux/lib/std/unicore/lib/Nv/35.pl +13 -0
  1414. data/Slic3r/Linux/lib/std/unicore/lib/Nv/36.pl +13 -0
  1415. data/Slic3r/Linux/lib/std/unicore/lib/Nv/37.pl +13 -0
  1416. data/Slic3r/Linux/lib/std/unicore/lib/Nv/38.pl +13 -0
  1417. data/Slic3r/Linux/lib/std/unicore/lib/Nv/39.pl +13 -0
  1418. data/Slic3r/Linux/lib/std/unicore/lib/Nv/3_16.pl +15 -0
  1419. data/Slic3r/Linux/lib/std/unicore/lib/Nv/3_2.pl +13 -0
  1420. data/Slic3r/Linux/lib/std/unicore/lib/Nv/3_4.pl +18 -0
  1421. data/Slic3r/Linux/lib/std/unicore/lib/Nv/3_5.pl +13 -0
  1422. data/Slic3r/Linux/lib/std/unicore/lib/Nv/3_8.pl +13 -0
  1423. data/Slic3r/Linux/lib/std/unicore/lib/Nv/4.pl +97 -0
  1424. data/Slic3r/Linux/lib/std/unicore/lib/Nv/40.pl +21 -0
  1425. data/Slic3r/Linux/lib/std/unicore/lib/Nv/400.pl +14 -0
  1426. data/Slic3r/Linux/lib/std/unicore/lib/Nv/4000.pl +13 -0
  1427. data/Slic3r/Linux/lib/std/unicore/lib/Nv/40000.pl +13 -0
  1428. data/Slic3r/Linux/lib/std/unicore/lib/Nv/41.pl +13 -0
  1429. data/Slic3r/Linux/lib/std/unicore/lib/Nv/42.pl +13 -0
  1430. data/Slic3r/Linux/lib/std/unicore/lib/Nv/43.pl +13 -0
  1431. data/Slic3r/Linux/lib/std/unicore/lib/Nv/44.pl +13 -0
  1432. data/Slic3r/Linux/lib/std/unicore/lib/Nv/45.pl +13 -0
  1433. data/Slic3r/Linux/lib/std/unicore/lib/Nv/46.pl +13 -0
  1434. data/Slic3r/Linux/lib/std/unicore/lib/Nv/47.pl +13 -0
  1435. data/Slic3r/Linux/lib/std/unicore/lib/Nv/48.pl +13 -0
  1436. data/Slic3r/Linux/lib/std/unicore/lib/Nv/49.pl +13 -0
  1437. data/Slic3r/Linux/lib/std/unicore/lib/Nv/4_5.pl +13 -0
  1438. data/Slic3r/Linux/lib/std/unicore/lib/Nv/5.pl +97 -0
  1439. data/Slic3r/Linux/lib/std/unicore/lib/Nv/50.pl +28 -0
  1440. data/Slic3r/Linux/lib/std/unicore/lib/Nv/500.pl +20 -0
  1441. data/Slic3r/Linux/lib/std/unicore/lib/Nv/5000.pl +17 -0
  1442. data/Slic3r/Linux/lib/std/unicore/lib/Nv/50000.pl +16 -0
  1443. data/Slic3r/Linux/lib/std/unicore/lib/Nv/5_2.pl +13 -0
  1444. data/Slic3r/Linux/lib/std/unicore/lib/Nv/5_6.pl +14 -0
  1445. data/Slic3r/Linux/lib/std/unicore/lib/Nv/5_8.pl +13 -0
  1446. data/Slic3r/Linux/lib/std/unicore/lib/Nv/6.pl +90 -0
  1447. data/Slic3r/Linux/lib/std/unicore/lib/Nv/60.pl +17 -0
  1448. data/Slic3r/Linux/lib/std/unicore/lib/Nv/600.pl +14 -0
  1449. data/Slic3r/Linux/lib/std/unicore/lib/Nv/6000.pl +13 -0
  1450. data/Slic3r/Linux/lib/std/unicore/lib/Nv/60000.pl +13 -0
  1451. data/Slic3r/Linux/lib/std/unicore/lib/Nv/7.pl +87 -0
  1452. data/Slic3r/Linux/lib/std/unicore/lib/Nv/70.pl +17 -0
  1453. data/Slic3r/Linux/lib/std/unicore/lib/Nv/700.pl +14 -0
  1454. data/Slic3r/Linux/lib/std/unicore/lib/Nv/7000.pl +13 -0
  1455. data/Slic3r/Linux/lib/std/unicore/lib/Nv/70000.pl +13 -0
  1456. data/Slic3r/Linux/lib/std/unicore/lib/Nv/7_2.pl +13 -0
  1457. data/Slic3r/Linux/lib/std/unicore/lib/Nv/7_8.pl +13 -0
  1458. data/Slic3r/Linux/lib/std/unicore/lib/Nv/8.pl +84 -0
  1459. data/Slic3r/Linux/lib/std/unicore/lib/Nv/80.pl +17 -0
  1460. data/Slic3r/Linux/lib/std/unicore/lib/Nv/800.pl +14 -0
  1461. data/Slic3r/Linux/lib/std/unicore/lib/Nv/8000.pl +13 -0
  1462. data/Slic3r/Linux/lib/std/unicore/lib/Nv/80000.pl +13 -0
  1463. data/Slic3r/Linux/lib/std/unicore/lib/Nv/9.pl +86 -0
  1464. data/Slic3r/Linux/lib/std/unicore/lib/Nv/90.pl +18 -0
  1465. data/Slic3r/Linux/lib/std/unicore/lib/Nv/900.pl +15 -0
  1466. data/Slic3r/Linux/lib/std/unicore/lib/Nv/9000.pl +13 -0
  1467. data/Slic3r/Linux/lib/std/unicore/lib/Nv/90000.pl +13 -0
  1468. data/Slic3r/Linux/lib/std/unicore/lib/Nv/9_2.pl +13 -0
  1469. data/Slic3r/Linux/lib/std/unicore/lib/Nv/NaN.pl +170 -0
  1470. data/Slic3r/Linux/lib/std/unicore/lib/Nv/_1_2.pl +13 -0
  1471. data/Slic3r/Linux/lib/std/unicore/lib/OAlpha/N.pl +158 -0
  1472. data/Slic3r/Linux/lib/std/unicore/lib/OAlpha/Y.pl +157 -0
  1473. data/Slic3r/Linux/lib/std/unicore/lib/ODI/N.pl +23 -0
  1474. data/Slic3r/Linux/lib/std/unicore/lib/ODI/Y.pl +22 -0
  1475. data/Slic3r/Linux/lib/std/unicore/lib/OGrExt/N.pl +29 -0
  1476. data/Slic3r/Linux/lib/std/unicore/lib/OGrExt/Y.pl +28 -0
  1477. data/Slic3r/Linux/lib/std/unicore/lib/OIDC/N.pl +17 -0
  1478. data/Slic3r/Linux/lib/std/unicore/lib/OIDC/Y.pl +16 -0
  1479. data/Slic3r/Linux/lib/std/unicore/lib/OIDS/N.pl +16 -0
  1480. data/Slic3r/Linux/lib/std/unicore/lib/OIDS/Y.pl +15 -0
  1481. data/Slic3r/Linux/lib/std/unicore/lib/OLower/N.pl +26 -0
  1482. data/Slic3r/Linux/lib/std/unicore/lib/OLower/Y.pl +25 -0
  1483. data/Slic3r/Linux/lib/std/unicore/lib/OMath/N.pl +113 -0
  1484. data/Slic3r/Linux/lib/std/unicore/lib/OMath/Y.pl +112 -0
  1485. data/Slic3r/Linux/lib/std/unicore/lib/OUpper/N.pl +15 -0
  1486. data/Slic3r/Linux/lib/std/unicore/lib/OUpper/Y.pl +14 -0
  1487. data/Slic3r/Linux/lib/std/unicore/lib/PatSyn/N.pl +41 -0
  1488. data/Slic3r/Linux/lib/std/unicore/lib/PatSyn/Y.pl +40 -0
  1489. data/Slic3r/Linux/lib/std/unicore/lib/PatWS/N.pl +18 -0
  1490. data/Slic3r/Linux/lib/std/unicore/lib/PatWS/Y.pl +17 -0
  1491. data/Slic3r/Linux/lib/std/unicore/lib/Perl/Alnum.pl +521 -0
  1492. data/Slic3r/Linux/lib/std/unicore/lib/Perl/Any.pl +13 -0
  1493. data/Slic3r/Linux/lib/std/unicore/lib/Perl/Assigned.pl +513 -0
  1494. data/Slic3r/Linux/lib/std/unicore/lib/Perl/Blank.pl +21 -0
  1495. data/Slic3r/Linux/lib/std/unicore/lib/Perl/Graph.pl +518 -0
  1496. data/Slic3r/Linux/lib/std/unicore/lib/Perl/PerlSpac.pl +15 -0
  1497. data/Slic3r/Linux/lib/std/unicore/lib/Perl/PerlWord.pl +16 -0
  1498. data/Slic3r/Linux/lib/std/unicore/lib/Perl/PosixAln.pl +15 -0
  1499. data/Slic3r/Linux/lib/std/unicore/lib/Perl/PosixAlp.pl +14 -0
  1500. data/Slic3r/Linux/lib/std/unicore/lib/Perl/PosixBla.pl +14 -0
  1501. data/Slic3r/Linux/lib/std/unicore/lib/Perl/PosixCnt.pl +14 -0
  1502. data/Slic3r/Linux/lib/std/unicore/lib/Perl/PosixDig.pl +13 -0
  1503. data/Slic3r/Linux/lib/std/unicore/lib/Perl/PosixGra.pl +13 -0
  1504. data/Slic3r/Linux/lib/std/unicore/lib/Perl/PosixLow.pl +13 -0
  1505. data/Slic3r/Linux/lib/std/unicore/lib/Perl/PosixPri.pl +13 -0
  1506. data/Slic3r/Linux/lib/std/unicore/lib/Perl/PosixPun.pl +16 -0
  1507. data/Slic3r/Linux/lib/std/unicore/lib/Perl/PosixSpa.pl +14 -0
  1508. data/Slic3r/Linux/lib/std/unicore/lib/Perl/PosixUpp.pl +13 -0
  1509. data/Slic3r/Linux/lib/std/unicore/lib/Perl/Print.pl +515 -0
  1510. data/Slic3r/Linux/lib/std/unicore/lib/Perl/SpacePer.pl +24 -0
  1511. data/Slic3r/Linux/lib/std/unicore/lib/Perl/Title.pl +22 -0
  1512. data/Slic3r/Linux/lib/std/unicore/lib/Perl/VertSpac.pl +15 -0
  1513. data/Slic3r/Linux/lib/std/unicore/lib/Perl/Word.pl +526 -0
  1514. data/Slic3r/Linux/lib/std/unicore/lib/Perl/XPosixPu.pl +140 -0
  1515. data/Slic3r/Linux/lib/std/unicore/lib/Perl/_XBegin.pl +30 -0
  1516. data/Slic3r/Linux/lib/std/unicore/lib/Perl/_XExtend.pl +206 -0
  1517. data/Slic3r/Linux/lib/std/unicore/lib/Perl/_XLVLVTV.pl +15 -0
  1518. data/Slic3r/Linux/lib/std/unicore/lib/QMark/N.pl +25 -0
  1519. data/Slic3r/Linux/lib/std/unicore/lib/QMark/Y.pl +24 -0
  1520. data/Slic3r/Linux/lib/std/unicore/lib/Radical/N.pl +16 -0
  1521. data/Slic3r/Linux/lib/std/unicore/lib/Radical/Y.pl +15 -0
  1522. data/Slic3r/Linux/lib/std/unicore/lib/SB/AT.pl +16 -0
  1523. data/Slic3r/Linux/lib/std/unicore/lib/SB/CL.pl +53 -0
  1524. data/Slic3r/Linux/lib/std/unicore/lib/SB/EX.pl +207 -0
  1525. data/Slic3r/Linux/lib/std/unicore/lib/SB/FO.pl +28 -0
  1526. data/Slic3r/Linux/lib/std/unicore/lib/SB/LE.pl +362 -0
  1527. data/Slic3r/Linux/lib/std/unicore/lib/SB/LO.pl +623 -0
  1528. data/Slic3r/Linux/lib/std/unicore/lib/SB/SC.pl +31 -0
  1529. data/Slic3r/Linux/lib/std/unicore/lib/SB/SE.pl +14 -0
  1530. data/Slic3r/Linux/lib/std/unicore/lib/SB/ST.pl +56 -0
  1531. data/Slic3r/Linux/lib/std/unicore/lib/SB/Sp.pl +22 -0
  1532. data/Slic3r/Linux/lib/std/unicore/lib/SB/UP.pl +620 -0
  1533. data/Slic3r/Linux/lib/std/unicore/lib/SB/XX.pl +584 -0
  1534. data/Slic3r/Linux/lib/std/unicore/lib/SD/N.pl +44 -0
  1535. data/Slic3r/Linux/lib/std/unicore/lib/SD/Y.pl +43 -0
  1536. data/Slic3r/Linux/lib/std/unicore/lib/STerm/N.pl +60 -0
  1537. data/Slic3r/Linux/lib/std/unicore/lib/STerm/Y.pl +59 -0
  1538. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Arab.pl +31 -0
  1539. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Armi.pl +14 -0
  1540. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Armn.pl +17 -0
  1541. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Avst.pl +14 -0
  1542. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Bali.pl +14 -0
  1543. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Bamu.pl +14 -0
  1544. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Batk.pl +14 -0
  1545. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Beng.pl +26 -0
  1546. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Bopo.pl +15 -0
  1547. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Brah.pl +14 -0
  1548. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Bugi.pl +14 -0
  1549. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Buhd.pl +13 -0
  1550. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Cans.pl +14 -0
  1551. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Cari.pl +13 -0
  1552. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Cham.pl +16 -0
  1553. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Cher.pl +13 -0
  1554. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Copt.pl +15 -0
  1555. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Cprt.pl +18 -0
  1556. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Cyrl.pl +19 -0
  1557. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Deva.pl +18 -0
  1558. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Egyp.pl +13 -0
  1559. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Ethi.pl +44 -0
  1560. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Geor.pl +16 -0
  1561. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Glag.pl +14 -0
  1562. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Goth.pl +13 -0
  1563. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Grek.pl +45 -0
  1564. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Gujr.pl +26 -0
  1565. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Guru.pl +28 -0
  1566. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Han.pl +28 -0
  1567. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Hang.pl +26 -0
  1568. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Hano.pl +13 -0
  1569. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Hebr.pl +21 -0
  1570. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Hira.pl +16 -0
  1571. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Ital.pl +14 -0
  1572. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Java.pl +15 -0
  1573. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Kana.pl +20 -0
  1574. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Khar.pl +20 -0
  1575. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Khmr.pl +16 -0
  1576. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Knda.pl +26 -0
  1577. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Kthi.pl +13 -0
  1578. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Lana.pl +17 -0
  1579. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Lao.pl +30 -0
  1580. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Latn.pl +42 -0
  1581. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Lepc.pl +15 -0
  1582. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Limb.pl +17 -0
  1583. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Linb.pl +19 -0
  1584. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Lyci.pl +13 -0
  1585. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Lydi.pl +14 -0
  1586. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Mand.pl +14 -0
  1587. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Mlym.pl +23 -0
  1588. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Mong.pl +18 -0
  1589. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Mtei.pl +14 -0
  1590. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Mymr.pl +14 -0
  1591. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Nko.pl +13 -0
  1592. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Ogam.pl +13 -0
  1593. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Orkh.pl +13 -0
  1594. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Orya.pl +26 -0
  1595. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Osma.pl +14 -0
  1596. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Phag.pl +13 -0
  1597. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Phli.pl +14 -0
  1598. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Phnx.pl +14 -0
  1599. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Prti.pl +14 -0
  1600. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Rjng.pl +14 -0
  1601. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Runr.pl +14 -0
  1602. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Samr.pl +14 -0
  1603. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Saur.pl +14 -0
  1604. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Sinh.pl +23 -0
  1605. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Sund.pl +14 -0
  1606. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Sylo.pl +13 -0
  1607. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Syrc.pl +15 -0
  1608. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Tagb.pl +15 -0
  1609. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Tale.pl +14 -0
  1610. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Talu.pl +16 -0
  1611. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Taml.pl +28 -0
  1612. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Tavt.pl +14 -0
  1613. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Telu.pl +26 -0
  1614. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Tfng.pl +15 -0
  1615. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Tglg.pl +14 -0
  1616. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Thaa.pl +13 -0
  1617. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Thai.pl +14 -0
  1618. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Tibt.pl +19 -0
  1619. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Ugar.pl +14 -0
  1620. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Vai.pl +13 -0
  1621. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Xpeo.pl +14 -0
  1622. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Xsux.pl +15 -0
  1623. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Yi.pl +14 -0
  1624. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Zinh.pl +36 -0
  1625. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Zyyy.pl +181 -0
  1626. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Zzzz.pl +511 -0
  1627. data/Slic3r/Linux/lib/std/unicore/lib/Space/N.pl +24 -0
  1628. data/Slic3r/Linux/lib/std/unicore/lib/Space/Y.pl +23 -0
  1629. data/Slic3r/Linux/lib/std/unicore/lib/Term/N.pl +80 -0
  1630. data/Slic3r/Linux/lib/std/unicore/lib/Term/Y.pl +79 -0
  1631. data/Slic3r/Linux/lib/std/unicore/lib/UIdeo/N.pl +25 -0
  1632. data/Slic3r/Linux/lib/std/unicore/lib/UIdeo/Y.pl +24 -0
  1633. data/Slic3r/Linux/lib/std/unicore/lib/Upper/N.pl +618 -0
  1634. data/Slic3r/Linux/lib/std/unicore/lib/Upper/Y.pl +617 -0
  1635. data/Slic3r/Linux/lib/std/unicore/lib/VS/N.pl +16 -0
  1636. data/Slic3r/Linux/lib/std/unicore/lib/VS/Y.pl +15 -0
  1637. data/Slic3r/Linux/lib/std/unicore/lib/WB/EX.pl +18 -0
  1638. data/Slic3r/Linux/lib/std/unicore/lib/WB/FO.pl +27 -0
  1639. data/Slic3r/Linux/lib/std/unicore/lib/WB/KA.pl +21 -0
  1640. data/Slic3r/Linux/lib/std/unicore/lib/WB/LE.pl +388 -0
  1641. data/Slic3r/Linux/lib/std/unicore/lib/WB/MB.pl +19 -0
  1642. data/Slic3r/Linux/lib/std/unicore/lib/WB/ML.pl +20 -0
  1643. data/Slic3r/Linux/lib/std/unicore/lib/WB/MN.pl +26 -0
  1644. data/Slic3r/Linux/lib/std/unicore/lib/WB/NL.pl +15 -0
  1645. data/Slic3r/Linux/lib/std/unicore/lib/WB/NU.pl +50 -0
  1646. data/Slic3r/Linux/lib/std/unicore/lib/WB/XX.pl +539 -0
  1647. data/Slic3r/Linux/lib/std/unicore/lib/XIDC/N.pl +534 -0
  1648. data/Slic3r/Linux/lib/std/unicore/lib/XIDC/Y.pl +533 -0
  1649. data/Slic3r/Linux/lib/std/unicore/lib/XIDS/N.pl +457 -0
  1650. data/Slic3r/Linux/lib/std/unicore/lib/XIDS/Y.pl +456 -0
  1651. data/Slic3r/Linux/lib/std/utf8.pm +214 -0
  1652. data/Slic3r/Linux/lib/std/utf8_heavy.pl +550 -0
  1653. data/Slic3r/Linux/lib/vrt/528ccea98cad02a5f453a7135f9ca183/package.lib +0 -0
  1654. data/Slic3r/Linux/lib/vrt/804f15d0b003b04c3feb68e47adacf8d/package.lib +1 -0
  1655. data/Slic3r/Linux/lib/vrt/fa119178d164dcf97f19aecc876231c0/package.lib +0 -0
  1656. data/Slic3r/Linux/res/Slic3r.icns +0 -0
  1657. data/Slic3r/Linux/res/Slic3r.ico +0 -0
  1658. data/Slic3r/Linux/res/Slic3r.png +0 -0
  1659. data/Slic3r/Linux/res/Slic3r_128px.png +0 -0
  1660. data/Slic3r/Linux/res/Slic3r_192px.png +0 -0
  1661. data/Slic3r/Linux/res/Slic3r_192px_transparent.png +0 -0
  1662. data/Slic3r/Linux/res/add.png +0 -0
  1663. data/Slic3r/Linux/res/arrow_out.png +0 -0
  1664. data/Slic3r/Linux/res/arrow_rotate_anticlockwise.png +0 -0
  1665. data/Slic3r/Linux/res/arrow_rotate_clockwise.png +0 -0
  1666. data/Slic3r/Linux/res/arrow_up.png +0 -0
  1667. data/Slic3r/Linux/res/box.png +0 -0
  1668. data/Slic3r/Linux/res/brick.png +0 -0
  1669. data/Slic3r/Linux/res/brick_add.png +0 -0
  1670. data/Slic3r/Linux/res/brick_delete.png +0 -0
  1671. data/Slic3r/Linux/res/brick_go.png +0 -0
  1672. data/Slic3r/Linux/res/bricks.png +0 -0
  1673. data/Slic3r/Linux/res/building.png +0 -0
  1674. data/Slic3r/Linux/res/bullet_black.png +0 -0
  1675. data/Slic3r/Linux/res/bullet_blue.png +0 -0
  1676. data/Slic3r/Linux/res/bullet_white.png +0 -0
  1677. data/Slic3r/Linux/res/cog.png +0 -0
  1678. data/Slic3r/Linux/res/cog_go.png +0 -0
  1679. data/Slic3r/Linux/res/cross.png +0 -0
  1680. data/Slic3r/Linux/res/delete.png +0 -0
  1681. data/Slic3r/Linux/res/disk.png +0 -0
  1682. data/Slic3r/Linux/res/error.png +0 -0
  1683. data/Slic3r/Linux/res/funnel.png +0 -0
  1684. data/Slic3r/Linux/res/hourglass.png +0 -0
  1685. data/Slic3r/Linux/res/layers.png +0 -0
  1686. data/Slic3r/Linux/res/note.png +0 -0
  1687. data/Slic3r/Linux/res/package.png +0 -0
  1688. data/Slic3r/Linux/res/package_green.png +0 -0
  1689. data/Slic3r/Linux/res/page_white_go.png +0 -0
  1690. data/Slic3r/Linux/res/plugin.png +0 -0
  1691. data/Slic3r/Linux/res/printer_empty.png +0 -0
  1692. data/Slic3r/Linux/res/shading.png +0 -0
  1693. data/Slic3r/Linux/res/shape_ungroup.png +0 -0
  1694. data/Slic3r/Linux/res/spool.png +0 -0
  1695. data/Slic3r/Linux/res/tag_blue.png +0 -0
  1696. data/Slic3r/Linux/res/time.png +0 -0
  1697. data/Slic3r/Linux/res/wrench.png +0 -0
  1698. data/Slic3r/Mac/Slic3r.app/Contents/Frameworks/libperl.dylib +0 -0
  1699. data/Slic3r/Mac/Slic3r.app/Contents/Frameworks/libwx_baseu-2.9.3.0.0.dylib +0 -0
  1700. data/Slic3r/Mac/Slic3r.app/Contents/Frameworks/libwx_baseu-2.9.3.dylib +1 -0
  1701. data/Slic3r/Mac/Slic3r.app/Contents/Frameworks/libwx_baseu-2.9.dylib +1 -0
  1702. data/Slic3r/Mac/Slic3r.app/Contents/Frameworks/libwx_baseu_net-2.9.3.0.0.dylib +0 -0
  1703. data/Slic3r/Mac/Slic3r.app/Contents/Frameworks/libwx_baseu_net-2.9.3.dylib +1 -0
  1704. data/Slic3r/Mac/Slic3r.app/Contents/Frameworks/libwx_baseu_net-2.9.dylib +1 -0
  1705. data/Slic3r/Mac/Slic3r.app/Contents/Frameworks/libwx_osx_cocoau_adv-2.9.3.0.0.dylib +0 -0
  1706. data/Slic3r/Mac/Slic3r.app/Contents/Frameworks/libwx_osx_cocoau_adv-2.9.3.dylib +1 -0
  1707. data/Slic3r/Mac/Slic3r.app/Contents/Frameworks/libwx_osx_cocoau_adv-2.9.dylib +1 -0
  1708. data/Slic3r/Mac/Slic3r.app/Contents/Frameworks/libwx_osx_cocoau_core-2.9.3.0.0.dylib +0 -0
  1709. data/Slic3r/Mac/Slic3r.app/Contents/Frameworks/libwx_osx_cocoau_core-2.9.3.dylib +1 -0
  1710. data/Slic3r/Mac/Slic3r.app/Contents/Frameworks/libwx_osx_cocoau_core-2.9.dylib +1 -0
  1711. data/Slic3r/Mac/Slic3r.app/Contents/Frameworks/libwx_osx_cocoau_gl-2.9.3.0.0.dylib +0 -0
  1712. data/Slic3r/Mac/Slic3r.app/Contents/Frameworks/libwx_osx_cocoau_gl-2.9.3.dylib +1 -0
  1713. data/Slic3r/Mac/Slic3r.app/Contents/Frameworks/libwx_osx_cocoau_gl-2.9.dylib +1 -0
  1714. data/Slic3r/Mac/Slic3r.app/Contents/Frameworks/libwx_osx_cocoau_html-2.9.3.0.0.dylib +0 -0
  1715. data/Slic3r/Mac/Slic3r.app/Contents/Frameworks/libwx_osx_cocoau_html-2.9.3.dylib +1 -0
  1716. data/Slic3r/Mac/Slic3r.app/Contents/Frameworks/libwx_osx_cocoau_html-2.9.dylib +1 -0
  1717. data/Slic3r/Mac/Slic3r.app/Contents/Frameworks/libwx_osx_cocoau_media-2.9.3.0.0.dylib +0 -0
  1718. data/Slic3r/Mac/Slic3r.app/Contents/Frameworks/libwx_osx_cocoau_media-2.9.3.dylib +1 -0
  1719. data/Slic3r/Mac/Slic3r.app/Contents/Frameworks/libwx_osx_cocoau_media-2.9.dylib +1 -0
  1720. data/Slic3r/Mac/Slic3r.app/Contents/Info.plist +27 -0
  1721. data/Slic3r/Mac/Slic3r.app/Contents/MacOS/slic3r +0 -0
  1722. data/Slic3r/Mac/Slic3r.app/Contents/PkgInfo +1 -0
  1723. data/Slic3r/Mac/Slic3r.app/Contents/Resources/Slic3r.icns +0 -0
  1724. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/std/Mozilla/CA.pm +99 -0
  1725. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/std/Mozilla/CA/cacert.pem +3366 -0
  1726. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/std/XML/SAX/ParserDetails.ini +16 -0
  1727. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/00fe171e54eaa45f327269069a84261c/SHA.bundle +0 -0
  1728. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/01641a74022c3bbdcd3a4cd5ffa26f07/ExpatXS.bundle +0 -0
  1729. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/02275a9ba60dd2657ec564332cc8c8a6/mro.bundle +0 -0
  1730. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/0599c4249af65dd82091e4b41e75dcac/GLCanvas.bundle +0 -0
  1731. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/0b007f4858c19ac489b6482dc8d8e973/Base64.bundle +0 -0
  1732. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/11897113663a72e0cf3a40f86569d0d3/package.lib +437 -0
  1733. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/181b750c50b989ea215e0c9788700590/scalar.bundle +0 -0
  1734. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/18e56ac547628015c934d8e62b2e59fb/shared.bundle +0 -0
  1735. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/193e996343c27253990f34ec93d7ae14/XS.bundle +0 -0
  1736. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/1e7eafa7ded7f14757bba03f9721336f/MD5.bundle +0 -0
  1737. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/2203e7a3df69c390965a2aa240378b54/FastCalc.bundle +0 -0
  1738. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/3b0e1864ce168232981b0e0b6e4ba639/Zlib.bundle +0 -0
  1739. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/4219a41428dfbeccc0004f15dc4778d8/Unicode.bundle +0 -0
  1740. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/42c3d19347a691f255d231da3d91f1ab/package.lib +332 -0
  1741. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/446150103e8711b6887777b796b96e92/Storable.bundle +0 -0
  1742. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/471029ae61c0427e58f24ac9e5a0cca5/package.lib +41 -0
  1743. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/4b2be1b5f4e6e6643e35d2fcdd27000d/Fcntl.bundle +0 -0
  1744. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/4c8cb4098e6eacc0dda716777c02e08e/Print.bundle +0 -0
  1745. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/51a64b55f893bfcb317be27527adb1c6/XSAccessor.bundle +0 -0
  1746. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/528ccea98cad02a5f453a7135f9ca183/package.lib +0 -0
  1747. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/5abe14a55ea43955299905c968f6b868/NamedCapture.bundle +0 -0
  1748. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/5da723b19d0784844a5d9228c25b1022/IO.bundle +0 -0
  1749. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/5efcd6c8c536b3b2d25ffece18e6cc7f/Byte.bundle +0 -0
  1750. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/62d4f6d2fa13586d2f8d48e80fcaad8d/re.bundle +0 -0
  1751. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/65951cec1d16610098f09e209050a4e5/encoding.bundle +0 -0
  1752. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/72315e121508feb38a782d3bd60cf0e1/Encode.bundle +0 -0
  1753. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/72f45450977a0f098e76b5b1270fb1fa/TW.bundle +0 -0
  1754. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/74f1151ea68af8b93e28a8d7b59bc6f1/Util.bundle +0 -0
  1755. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/7a1d45f404be604381d8b95f374ecae2/POSIX.bundle +0 -0
  1756. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/7a9108dfb82f49ad15e339776671a0c9/KR.bundle +0 -0
  1757. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/7e549424075365bb7bac11a08b208145/XS.bundle +0 -0
  1758. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/7e7926fce7d528168853b8dab2c9ccd2/Socket.bundle +0 -0
  1759. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/804f15d0b003b04c3feb68e47adacf8d/package.lib +1 -0
  1760. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/826014915c535a7285f886166a778440/Cwd.bundle +0 -0
  1761. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/83e7bddbda22f4666134d95e35b3292e/Grid.bundle +0 -0
  1762. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/8efb4e8160ee47f9e953900fd189e72c/Symbol.bundle +0 -0
  1763. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/9077b3800b946e19da99a53a92321f77/JP.bundle +0 -0
  1764. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/9425135f44548a4e211eabfbba86fdf7/B.bundle +0 -0
  1765. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/94c9b361d23d6847d023b9e82acbc595/UUID.bundle +0 -0
  1766. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/953dbc6f080a921c10f4fb4adf0a6ea7/SealRequireHints.bundle +0 -0
  1767. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/9f303c03e9bb3b3307210ed1399034f4/Dumper.bundle +0 -0
  1768. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/a3809d03e71342d25daf495917654688/indirect.bundle +0 -0
  1769. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/a499207f115577de989dae697bccf1f7/via.bundle +0 -0
  1770. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/a4ff00c6243840a7c5a181800d0a0e9f/Glob.bundle +0 -0
  1771. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/a8a5488c950b4ae4ab726834ab1f4629/Parser.bundle +0 -0
  1772. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/a927c16eae43f6d2d1fcbca4288c2613/Bzip2.bundle +0 -0
  1773. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/b2467e1e23f7295c8b0e819807403777/Check.bundle +0 -0
  1774. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/b75af51104891e1861cf27a85a06248f/SSLeay.bundle +0 -0
  1775. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/c04409d610134c279178eaab1c0cd45e/multidimensional.bundle +0 -0
  1776. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/c37c19e69c64f01f83616050a4290081/filehandles.bundle +0 -0
  1777. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/c63ee2950efe3f9517034e269406a6f1/Call.bundle +0 -0
  1778. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/c8b43a9fa99c2589e0af3851636037ae/threads.bundle +0 -0
  1779. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/c9bc0bb4eaabb8b3b85268094134ae30/SSLeay.bundle +0 -0
  1780. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/cb9c4ab6b50a6ba6e9a1c58866acb842/HiRes.bundle +0 -0
  1781. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/d73dc34729c26340077a511c9aeae54c/Langinfo.bundle +0 -0
  1782. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/e0833c18d9957e5ef93fd12ea63dc88c/Libm.bundle +0 -0
  1783. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/e4596f5a53563fc95d87c9738c6ed3f1/attributes.bundle +0 -0
  1784. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/e69ac1437c1fe7ba8a391d4a6e017895/DND.bundle +0 -0
  1785. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/f0daa614fb85c8dc08ddd86ef81f8546/EBCDIC.bundle +0 -0
  1786. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/f3d865c9882d669a56d9890365558ef3/Wx.bundle +0 -0
  1787. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/f77494368a2754d99fc9ae63725241b9/CN.bundle +0 -0
  1788. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/f7b6e5c51850d9c5b8f9f118bf8c79e5/OpenGL.bundle +0 -0
  1789. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/fa119178d164dcf97f19aecc876231c0/package.lib +0 -0
  1790. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/ff1c32bbf4efed322b40618fa6cc887f/Html.bundle +0 -0
  1791. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/Slic3r.icns +0 -0
  1792. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/Slic3r.ico +0 -0
  1793. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/Slic3r.png +0 -0
  1794. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/Slic3r_128px.png +0 -0
  1795. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/Slic3r_192px.png +0 -0
  1796. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/Slic3r_192px_transparent.png +0 -0
  1797. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/add.png +0 -0
  1798. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/arrow_out.png +0 -0
  1799. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/arrow_rotate_anticlockwise.png +0 -0
  1800. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/arrow_rotate_clockwise.png +0 -0
  1801. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/arrow_up.png +0 -0
  1802. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/box.png +0 -0
  1803. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/brick.png +0 -0
  1804. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/brick_add.png +0 -0
  1805. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/brick_delete.png +0 -0
  1806. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/brick_go.png +0 -0
  1807. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/bricks.png +0 -0
  1808. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/building.png +0 -0
  1809. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/bullet_black.png +0 -0
  1810. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/bullet_blue.png +0 -0
  1811. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/bullet_white.png +0 -0
  1812. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/cog.png +0 -0
  1813. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/cog_go.png +0 -0
  1814. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/cross.png +0 -0
  1815. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/delete.png +0 -0
  1816. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/disk.png +0 -0
  1817. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/error.png +0 -0
  1818. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/funnel.png +0 -0
  1819. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/hourglass.png +0 -0
  1820. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/layers.png +0 -0
  1821. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/note.png +0 -0
  1822. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/package.png +0 -0
  1823. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/package_green.png +0 -0
  1824. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/page_white_go.png +0 -0
  1825. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/plugin.png +0 -0
  1826. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/printer_empty.png +0 -0
  1827. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/shading.png +0 -0
  1828. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/shape_ungroup.png +0 -0
  1829. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/spool.png +0 -0
  1830. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/tag_blue.png +0 -0
  1831. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/time.png +0 -0
  1832. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/wrench.png +0 -0
  1833. data/Slic3r/Win/bin/cpfworkrt/cpfworkrt.manifest +8 -0
  1834. data/Slic3r/Win/bin/cpfworkrt/libgcc_s_sjlj-1.dll +0 -0
  1835. data/Slic3r/Win/bin/cpfworkrt/libstdc++-6.dll +0 -0
  1836. data/Slic3r/Win/bin/cpfworkrt/perl514.dll +0 -0
  1837. data/Slic3r/Win/cpfworkrt/cpfworkrt.manifest +8 -0
  1838. data/Slic3r/Win/cpfworkrt/libgcc_s_sjlj-1.dll +0 -0
  1839. data/Slic3r/Win/cpfworkrt/libstdc++-6.dll +0 -0
  1840. data/Slic3r/Win/cpfworkrt/perl514.dll +0 -0
  1841. data/Slic3r/Win/dll/cpwgui.exe +0 -0
  1842. data/Slic3r/Win/dll/wxbase293u_gcc_citrusperl.dll +0 -0
  1843. data/Slic3r/Win/dll/wxbase293u_net_gcc_citrusperl.dll +0 -0
  1844. data/Slic3r/Win/dll/wxmsw293u_adv_gcc_citrusperl.dll +0 -0
  1845. data/Slic3r/Win/dll/wxmsw293u_core_gcc_citrusperl.dll +0 -0
  1846. data/Slic3r/Win/dll/wxmsw293u_gl_gcc_citrusperl.dll +0 -0
  1847. data/Slic3r/Win/dll/wxmsw293u_html_gcc_citrusperl.dll +0 -0
  1848. data/Slic3r/Win/lib/std/Mozilla/CA.pm +99 -0
  1849. data/Slic3r/Win/lib/std/Mozilla/CA/cacert.pem +3366 -0
  1850. data/Slic3r/Win/lib/std/XML/SAX/ParserDetails.ini +16 -0
  1851. data/Slic3r/Win/lib/vrt/00065b3cc7c31741588c51da0ebf7cfc/Storable.dll +0 -0
  1852. data/Slic3r/Win/lib/vrt/0e211ef5300e42b7129e72ce6934dd03/File.dll +0 -0
  1853. data/Slic3r/Win/lib/vrt/11897113663a72e0cf3a40f86569d0d3/package.lib +437 -0
  1854. data/Slic3r/Win/lib/vrt/13887bf5057dfc645e73f9cbc2107b0b/shared.dll +0 -0
  1855. data/Slic3r/Win/lib/vrt/13b74231834b96c1b29d9bb7ff9fc803/XSAccessor.dll +0 -0
  1856. data/Slic3r/Win/lib/vrt/17a8fd354d07706b1d8e07133653aefe/Unicode.dll +0 -0
  1857. data/Slic3r/Win/lib/vrt/1ff31eb32e672b10095dc07142eda94e/Byte.dll +0 -0
  1858. data/Slic3r/Win/lib/vrt/212acdb3b0d578c6c31b6f5b102aaf9f/OpenGL.dll +0 -0
  1859. data/Slic3r/Win/lib/vrt/212acdb3b0d578c6c31b6f5b102aaf9f/freeglut.dll +0 -0
  1860. data/Slic3r/Win/lib/vrt/2b09d17ec43a6c01f265254b54d60739/Dumper.dll +0 -0
  1861. data/Slic3r/Win/lib/vrt/2ce0a6f8648060f015cf6b795bedf11d/SHA.dll +0 -0
  1862. data/Slic3r/Win/lib/vrt/3545b2d83c9d9a29194f9ab80ec5474b/Fcntl.dll +0 -0
  1863. data/Slic3r/Win/lib/vrt/38786f297f552b7038b60152ad9b90fc/ExpatXS.dll +0 -0
  1864. data/Slic3r/Win/lib/vrt/3d306f1634430f34d0521f8ea684e9ec/SSLeay.dll +0 -0
  1865. data/Slic3r/Win/lib/vrt/3ea9b1cd80f790518c416324dd069ebd/encoding.dll +0 -0
  1866. data/Slic3r/Win/lib/vrt/41c42900fc0d462e9a31e174ac8a654c/Html.dll +0 -0
  1867. data/Slic3r/Win/lib/vrt/42c3d19347a691f255d231da3d91f1ab/package.lib +332 -0
  1868. data/Slic3r/Win/lib/vrt/4699e2a2c6a572106b4070861d78c22a/Parser.dll +0 -0
  1869. data/Slic3r/Win/lib/vrt/46c688003f4a63abb5816f68b951f727/MD5.dll +0 -0
  1870. data/Slic3r/Win/lib/vrt/471029ae61c0427e58f24ac9e5a0cca5/package.lib +41 -0
  1871. data/Slic3r/Win/lib/vrt/49bdccea41102e6d90906b74653d30ab/HiRes.dll +0 -0
  1872. data/Slic3r/Win/lib/vrt/4c9065158b425703c56336bd7fd5bbf2/SSLeay.dll +0 -0
  1873. data/Slic3r/Win/lib/vrt/50e0982503943dcf3f001fc2d17d4075/JP.dll +0 -0
  1874. data/Slic3r/Win/lib/vrt/528ccea98cad02a5f453a7135f9ca183/package.lib +0 -0
  1875. data/Slic3r/Win/lib/vrt/6419170f57dff2f058fefa3f8f37c897/EBCDIC.dll +0 -0
  1876. data/Slic3r/Win/lib/vrt/655af4e236089eadb910a60a39fbe815/attributes.dll +0 -0
  1877. data/Slic3r/Win/lib/vrt/6c123a3a5b411759cc21a293df5bed0e/SealRequireHints.dll +0 -0
  1878. data/Slic3r/Win/lib/vrt/7ba0890aa8ff0eed7abb9f76181bd637/Console.dll +0 -0
  1879. data/Slic3r/Win/lib/vrt/7ef678fd3db32983bdf488c788a3a763/IO.dll +0 -0
  1880. data/Slic3r/Win/lib/vrt/804f15d0b003b04c3feb68e47adacf8d/package.lib +1 -0
  1881. data/Slic3r/Win/lib/vrt/8f7c428c727a7d81643b50b598197734/API.dll +0 -0
  1882. data/Slic3r/Win/lib/vrt/8fa3f50b03f9cb0203031cf516aa3973/B.dll +0 -0
  1883. data/Slic3r/Win/lib/vrt/9573d0f8956394a9448b7cb70a24fed3/CN.dll +0 -0
  1884. data/Slic3r/Win/lib/vrt/9a02fe0b6c8a35ffbf56e88f9910abeb/Base64.dll +0 -0
  1885. data/Slic3r/Win/lib/vrt/9cc90b876890f13970933c948cbb4b2e/Print.dll +0 -0
  1886. data/Slic3r/Win/lib/vrt/9d4869e43aaebbcbfc9baec70819f444/indirect.dll +0 -0
  1887. data/Slic3r/Win/lib/vrt/a3600f18eb88b7c4835e2438eeda19b1/Symbol.dll +0 -0
  1888. data/Slic3r/Win/lib/vrt/a3719ad0fa76c06423d0397090ec4ed9/Libm.dll +0 -0
  1889. data/Slic3r/Win/lib/vrt/a40249e26296df558fcddd2c8cbfb2f6/UUID.dll +0 -0
  1890. data/Slic3r/Win/lib/vrt/aa455d4af51625c2acacb6716c0a6e01/scalar.dll +0 -0
  1891. data/Slic3r/Win/lib/vrt/aa976c80169f479f0613ff5283377098/Win32.dll +0 -0
  1892. data/Slic3r/Win/lib/vrt/ad648dbf31179700b4efd00b04f50dab/multidimensional.dll +0 -0
  1893. data/Slic3r/Win/lib/vrt/b48cd6cc5170110b04444736f8ca1a04/mro.dll +0 -0
  1894. data/Slic3r/Win/lib/vrt/b6a5c6ef2abf4a7046bb88d7a8b220ff/GLCanvas.dll +0 -0
  1895. data/Slic3r/Win/lib/vrt/bd26fbb8f6447c2e98cf359976a3c1a7/POSIX.dll +0 -0
  1896. data/Slic3r/Win/lib/vrt/c23df991c561704a8913289bdfea9462/Zlib.dll +0 -0
  1897. data/Slic3r/Win/lib/vrt/c8786c44f0a905ffe6d5d8a4068a75c2/Call.dll +0 -0
  1898. data/Slic3r/Win/lib/vrt/cbbb6d80da8c62ee893a65195943b803/re.dll +0 -0
  1899. data/Slic3r/Win/lib/vrt/cbfee14465f0627fbadfcc84b97d402b/KR.dll +0 -0
  1900. data/Slic3r/Win/lib/vrt/cd0b5b2fa854963191ca9718e26a0abc/Grid.dll +0 -0
  1901. data/Slic3r/Win/lib/vrt/ceb3487499a2d7f0edbcc6aa0c0536c1/NamedCapture.dll +0 -0
  1902. data/Slic3r/Win/lib/vrt/cfbd454ca865af139a419af806f1d4c7/DND.dll +0 -0
  1903. data/Slic3r/Win/lib/vrt/cfcde55111d441748de61cc95acb240e/Check.dll +0 -0
  1904. data/Slic3r/Win/lib/vrt/d0b4c3dceefb5d08dbe60f0e68d0da76/filehandles.dll +0 -0
  1905. data/Slic3r/Win/lib/vrt/d9c3e3943b3f28bc1f09e2f713cc6afb/Glob.dll +0 -0
  1906. data/Slic3r/Win/lib/vrt/da3813f7e06d5ace75632aaf1738303a/Cwd.dll +0 -0
  1907. data/Slic3r/Win/lib/vrt/e29b9764cd99fd442815834972733f63/Encode.dll +0 -0
  1908. data/Slic3r/Win/lib/vrt/e51409fbea61e7f44156de0a7d61ce6e/FastCalc.dll +0 -0
  1909. data/Slic3r/Win/lib/vrt/eaa3f41565bf2fe58068d68f47a06165/Bzip2.dll +0 -0
  1910. data/Slic3r/Win/lib/vrt/eb8576fa2c159886e7f37945c9fb302c/Util.dll +0 -0
  1911. data/Slic3r/Win/lib/vrt/ef0a1b3a50dcc9984703f576320986af/Socket.dll +0 -0
  1912. data/Slic3r/Win/lib/vrt/efa78e66d1d123d9a6f5890b6ca9167a/TW.dll +0 -0
  1913. data/Slic3r/Win/lib/vrt/f490c3f60de8989339da70e91e2faf32/threads.dll +0 -0
  1914. data/Slic3r/Win/lib/vrt/f6025e058c0367c56e8eed568e60077b/Clone.dll +0 -0
  1915. data/Slic3r/Win/lib/vrt/f8d8299b70fb38b8f4ba594e6f23c91f/XS.dll +0 -0
  1916. data/Slic3r/Win/lib/vrt/fa119178d164dcf97f19aecc876231c0/package.lib +0 -0
  1917. data/Slic3r/Win/lib/vrt/fadbe2ebaf950eb9e5e3c3d65739aa92/via.dll +0 -0
  1918. data/Slic3r/Win/lib/vrt/fb078e7d1a272046eb7bd617bd3ed5c4/Wx.dll +0 -0
  1919. data/Slic3r/Win/lib/vrt/ffa8ccc0f7f886ba695e841a491bce9a/XS.dll +0 -0
  1920. data/Slic3r/Win/res/Slic3r.icns +0 -0
  1921. data/Slic3r/Win/res/Slic3r.ico +0 -0
  1922. data/Slic3r/Win/res/Slic3r.png +0 -0
  1923. data/Slic3r/Win/res/Slic3r_128px.png +0 -0
  1924. data/Slic3r/Win/res/Slic3r_192px.png +0 -0
  1925. data/Slic3r/Win/res/Slic3r_192px_transparent.png +0 -0
  1926. data/Slic3r/Win/res/add.png +0 -0
  1927. data/Slic3r/Win/res/arrow_out.png +0 -0
  1928. data/Slic3r/Win/res/arrow_rotate_anticlockwise.png +0 -0
  1929. data/Slic3r/Win/res/arrow_rotate_clockwise.png +0 -0
  1930. data/Slic3r/Win/res/arrow_up.png +0 -0
  1931. data/Slic3r/Win/res/box.png +0 -0
  1932. data/Slic3r/Win/res/brick.png +0 -0
  1933. data/Slic3r/Win/res/brick_add.png +0 -0
  1934. data/Slic3r/Win/res/brick_delete.png +0 -0
  1935. data/Slic3r/Win/res/brick_go.png +0 -0
  1936. data/Slic3r/Win/res/bricks.png +0 -0
  1937. data/Slic3r/Win/res/building.png +0 -0
  1938. data/Slic3r/Win/res/bullet_black.png +0 -0
  1939. data/Slic3r/Win/res/bullet_blue.png +0 -0
  1940. data/Slic3r/Win/res/bullet_white.png +0 -0
  1941. data/Slic3r/Win/res/cog.png +0 -0
  1942. data/Slic3r/Win/res/cog_go.png +0 -0
  1943. data/Slic3r/Win/res/cross.png +0 -0
  1944. data/Slic3r/Win/res/delete.png +0 -0
  1945. data/Slic3r/Win/res/disk.png +0 -0
  1946. data/Slic3r/Win/res/error.png +0 -0
  1947. data/Slic3r/Win/res/funnel.png +0 -0
  1948. data/Slic3r/Win/res/hourglass.png +0 -0
  1949. data/Slic3r/Win/res/layers.png +0 -0
  1950. data/Slic3r/Win/res/note.png +0 -0
  1951. data/Slic3r/Win/res/package.png +0 -0
  1952. data/Slic3r/Win/res/package_green.png +0 -0
  1953. data/Slic3r/Win/res/page_white_go.png +0 -0
  1954. data/Slic3r/Win/res/plugin.png +0 -0
  1955. data/Slic3r/Win/res/printer_empty.png +0 -0
  1956. data/Slic3r/Win/res/shading.png +0 -0
  1957. data/Slic3r/Win/res/shape_ungroup.png +0 -0
  1958. data/Slic3r/Win/res/spool.png +0 -0
  1959. data/Slic3r/Win/res/tag_blue.png +0 -0
  1960. data/Slic3r/Win/res/time.png +0 -0
  1961. data/Slic3r/Win/res/wrench.png +0 -0
  1962. data/Slic3r/Win/slic3r-console.exe +0 -0
  1963. data/Slic3r/Win/slic3r.exe +0 -0
  1964. data/Slic3r/Win/temp.txt +278 -0
  1965. data/lib/STLExtract.rb +155 -0
  1966. data/lib/STLExtract/version.rb +3 -0
  1967. metadata +2044 -0
@@ -0,0 +1,2456 @@
1
+ #!/usr/bin/perl -w
2
+ #
3
+ # IO::Socket::SSL:
4
+ # a drop-in replacement for IO::Socket::INET that encapsulates
5
+ # data passed over a network with SSL.
6
+ #
7
+ # Current Code Shepherd: Steffen Ullrich <steffen at genua.de>
8
+ # Code Shepherd before: Peter Behroozi, <behrooz at fas.harvard.edu>
9
+ #
10
+ # The original version of this module was written by
11
+ # Marko Asplund, <marko.asplund at kronodoc.fi>, who drew from
12
+ # Crypt::SSLeay (Net::SSL) by Gisle Aas.
13
+ #
14
+
15
+ package IO::Socket::SSL;
16
+
17
+ use IO::Socket;
18
+ use Net::SSLeay 1.21;
19
+ use Exporter ();
20
+ use Errno qw( EAGAIN ETIMEDOUT );
21
+ use Carp;
22
+ use strict;
23
+
24
+ use constant SSL_VERIFY_NONE => Net::SSLeay::VERIFY_NONE();
25
+ use constant SSL_VERIFY_PEER => Net::SSLeay::VERIFY_PEER();
26
+ use constant SSL_VERIFY_FAIL_IF_NO_PEER_CERT => Net::SSLeay::VERIFY_FAIL_IF_NO_PEER_CERT();
27
+ use constant SSL_VERIFY_CLIENT_ONCE => Net::SSLeay::VERIFY_CLIENT_ONCE();
28
+
29
+ # from openssl/ssl.h; should be better in Net::SSLeay
30
+ use constant SSL_SENT_SHUTDOWN => 1;
31
+ use constant SSL_RECEIVED_SHUTDOWN => 2;
32
+
33
+ # non-XS Versions of Scalar::Util will fail
34
+ BEGIN{
35
+ eval { use Scalar::Util 'dualvar'; dualvar(0,'') };
36
+ die "You need the XS Version of Scalar::Util for dualvar() support"
37
+ if $@;
38
+ }
39
+
40
+ use vars qw(@ISA $VERSION $DEBUG $SSL_ERROR $GLOBAL_CONTEXT_ARGS @EXPORT );
41
+
42
+ {
43
+ # These constants will be used in $! at return from SSL_connect,
44
+ # SSL_accept, generic_read and write, thus notifying the caller
45
+ # the usual way of problems. Like with EAGAIN, EINPROGRESS..
46
+ # these are especially important for non-blocking sockets
47
+
48
+ my $x = Net::SSLeay::ERROR_WANT_READ();
49
+ use constant SSL_WANT_READ => dualvar( \$x, 'SSL wants a read first' );
50
+ my $y = Net::SSLeay::ERROR_WANT_WRITE();
51
+ use constant SSL_WANT_WRITE => dualvar( \$y, 'SSL wants a write first' );
52
+
53
+ @EXPORT = qw(
54
+ SSL_WANT_READ SSL_WANT_WRITE SSL_VERIFY_NONE SSL_VERIFY_PEER
55
+ SSL_VERIFY_FAIL_IF_NO_PEER_CERT SSL_VERIFY_CLIENT_ONCE
56
+ $SSL_ERROR GEN_DNS GEN_IPADD
57
+ );
58
+ }
59
+
60
+ my @caller_force_inet4; # in case inet4 gets forced we store here who forced it
61
+ my $can_ipv6; # true if we successfully enabled ipv6 while loading
62
+
63
+ BEGIN {
64
+ # Declare @ISA, $VERSION, $GLOBAL_CONTEXT_ARGS
65
+
66
+ # if we have IO::Socket::INET6 we will use this not IO::Socket::INET, because
67
+ # it can handle both IPv4 and IPv6. If we don't have INET6 available fall back
68
+ # to INET
69
+ if ( ! eval {
70
+ require Socket6;
71
+ Socket6->import( 'inet_pton' );
72
+ require IO::Socket::INET6;
73
+ @ISA = qw(IO::Socket::INET6);
74
+ $can_ipv6 = 1;
75
+ }) {
76
+ @ISA = qw(IO::Socket::INET);
77
+ }
78
+ $VERSION = '1.61';
79
+ $GLOBAL_CONTEXT_ARGS = {};
80
+
81
+ #Make $DEBUG another name for $Net::SSLeay::trace
82
+ *DEBUG = \$Net::SSLeay::trace;
83
+
84
+ #Compability
85
+ *ERROR = \$SSL_ERROR;
86
+
87
+ # Do Net::SSLeay initialization
88
+ Net::SSLeay::load_error_strings();
89
+ Net::SSLeay::SSLeay_add_ssl_algorithms();
90
+ Net::SSLeay::randomize();
91
+ }
92
+
93
+ sub DEBUG {
94
+ $DEBUG>=shift or return; # check against debug level
95
+ my (undef,$file,$line) = caller;
96
+ my $msg = shift;
97
+ $file = '...'.substr( $file,-17 ) if length($file)>20;
98
+ $msg = sprintf $msg,@_ if @_;
99
+ print STDERR "DEBUG: $file:$line: $msg\n";
100
+ }
101
+
102
+ BEGIN {
103
+ # import some constants from Net::SSLeay or use hard-coded defaults
104
+ # if Net::SSLeay isn't recent enough to provide the constants
105
+ my %const = (
106
+ NID_CommonName => 13,
107
+ GEN_DNS => 2,
108
+ GEN_IPADD => 7,
109
+ );
110
+ while ( my ($name,$value) = each %const ) {
111
+ no strict 'refs';
112
+ *{$name} = UNIVERSAL::can( 'Net::SSLeay', $name ) || sub { $value };
113
+ }
114
+
115
+ # check if we have something to handle IDN
116
+ local $SIG{__DIE__}; local $SIG{__WARN__}; # be silent
117
+ if ( eval { require Net::IDN::Encode }) {
118
+ *{idn_to_ascii} = \&Net::IDN::Encode::domain_to_ascii;
119
+ } elsif ( eval { require Net::LibIDN }) {
120
+ *{idn_to_ascii} = \&Net::LibIDN::idn_to_ascii;
121
+ } elsif ( eval { require URI; URI->VERSION(1.50) }) {
122
+ *{idn_to_ascii} = sub { URI->new("http://" . shift)->host }
123
+ } else {
124
+ # default: croak if we really got an unencoded international domain
125
+ *{idn_to_ascii} = sub {
126
+ my $domain = shift;
127
+ return $domain if $domain =~m{^[a-zA-Z0-9-_\.]+$};
128
+ croak "cannot handle international domains, please install Net::LibIDN, Net::IDN::Encode or URI"
129
+ }
130
+ }
131
+ }
132
+
133
+ # Export some stuff
134
+ # inet4|inet6|debug will be handeled by myself, everything
135
+ # else will be handeld the Exporter way
136
+ sub import {
137
+ my $class = shift;
138
+
139
+ my @export;
140
+ foreach (@_) {
141
+ if ( /^inet4$/i ) {
142
+ # explicitly fall back to inet4
143
+ @ISA = 'IO::Socket::INET';
144
+ @caller_force_inet4 = caller(); # save for warnings for 'inet6' case
145
+ } elsif ( /^inet6$/i ) {
146
+ # check if we have already ipv6 as base
147
+ if ( ! UNIVERSAL::isa( $class, 'IO::Socket::INET6' )) {
148
+ # either we don't support it or we disabled it by explicitly
149
+ # loading it with 'inet4'. In this case re-enable but warn
150
+ # because this is probably an error
151
+ if ( $can_ipv6 ) {
152
+ @ISA = 'IO::Socket::INET6';
153
+ warn "IPv6 support re-enabled in __PACKAGE__, got disabled in file $caller_force_inet4[1] line $caller_force_inet4[2]";
154
+ } else {
155
+ die "INET6 is not supported, missing Socket6 or IO::Socket::INET6";
156
+ }
157
+ }
158
+ } elsif ( /^:?debug(\d+)/ ) {
159
+ $DEBUG=$1;
160
+ } else {
161
+ push @export,$_
162
+ }
163
+ }
164
+
165
+ @_ = ( $class,@export );
166
+ goto &Exporter::import;
167
+ }
168
+
169
+ # You might be expecting to find a new() subroutine here, but that is
170
+ # not how IO::Socket::INET works. All configuration gets performed in
171
+ # the calls to configure() and either connect() or accept().
172
+
173
+ #Call to configure occurs when a new socket is made using
174
+ #IO::Socket::INET. Returns false (empty list) on failure.
175
+ sub configure {
176
+ my ($self, $arg_hash) = @_;
177
+ return _invalid_object() unless($self);
178
+
179
+ # work around Bug in IO::Socket::INET6 where it doesn't use the
180
+ # right family for the socket on BSD systems:
181
+ # http://rt.cpan.org/Ticket/Display.html?id=39550
182
+ if ( $can_ipv6 && ! $arg_hash->{Domain} &&
183
+ ! ( $arg_hash->{LocalAddr} || $arg_hash->{LocalHost} ) &&
184
+ (my $peer = $arg_hash->{PeerAddr} || $arg_hash->{PeerHost})) {
185
+ # set Domain to AF_INET/AF_INET6 if there is only one choice
186
+ ($peer, my $port) = IO::Socket::INET6::_sock_info( $peer,$arg_hash->{PeerPort},6 );
187
+ my @res = Socket6::getaddrinfo( $peer,$port,AF_UNSPEC,SOCK_STREAM );
188
+ if (@res == 5) {
189
+ $arg_hash->{Domain} = $res[0];
190
+ DEBUG(2,'set domain to '.$res[0] );
191
+ }
192
+ }
193
+
194
+ # force initial blocking
195
+ # otherwise IO::Socket::SSL->new might return undef if the
196
+ # socket is nonblocking and it fails to connect immediatly
197
+ # for real nonblocking behavior one should create a nonblocking
198
+ # socket and later call connect explicitly
199
+ my $blocking = delete $arg_hash->{Blocking};
200
+
201
+ # because Net::HTTPS simple redefines blocking() to {} (e.g
202
+ # return undef) and IO::Socket::INET does not like this we
203
+
204
+ # set Blocking only explicitly if it was set
205
+ $arg_hash->{Blocking} = 1 if defined ($blocking);
206
+
207
+ $self->configure_SSL($arg_hash) || return;
208
+
209
+ $self->SUPER::configure($arg_hash)
210
+ || return $self->error("@ISA configuration failed");
211
+
212
+ $self->blocking(0) if defined $blocking && !$blocking;
213
+ return $self;
214
+ }
215
+
216
+ sub configure_SSL {
217
+ my ($self, $arg_hash) = @_;
218
+
219
+ my $is_server = $arg_hash->{'SSL_server'} || $arg_hash->{'Listen'} || 0;
220
+
221
+ my %default_args = (
222
+ Proto => 'tcp',
223
+ SSL_server => $is_server,
224
+ SSL_use_cert => $is_server,
225
+ SSL_check_crl => 0,
226
+ SSL_version => 'sslv23',
227
+ SSL_verify_mode => SSL_VERIFY_NONE,
228
+ SSL_verify_callback => undef,
229
+ SSL_verifycn_scheme => undef, # don't verify cn
230
+ SSL_verifycn_name => undef, # use from PeerAddr/PeerHost
231
+ );
232
+
233
+ # common problem forgetting SSL_use_cert
234
+ # if client cert is given but SSL_use_cert undef assume that it
235
+ # should be set
236
+ if ( ! $is_server && ! defined $arg_hash->{SSL_use_cert}
237
+ && ( grep { $arg_hash->{$_} } qw(SSL_cert SSL_cert_file))
238
+ && ( grep { $arg_hash->{$_} } qw(SSL_key SSL_key_file)) ) {
239
+ $arg_hash->{SSL_use_cert} = 1
240
+ }
241
+
242
+ # SSL_key_file and SSL_cert_file will only be set in defaults if
243
+ # SSL_key|SSL_key_file resp SSL_cert|SSL_cert_file are not set in
244
+ # $args_hash
245
+ foreach my $k (qw( key cert )) {
246
+ next if exists $arg_hash->{ "SSL_${k}" };
247
+ next if exists $arg_hash->{ "SSL_${k}_file" };
248
+ $default_args{ "SSL_${k}_file" } = $is_server
249
+ ? "certs/server-${k}.pem"
250
+ : "certs/client-${k}.pem";
251
+ }
252
+
253
+ # add only SSL_ca_* if not in args
254
+ if ( ! exists $arg_hash->{SSL_ca_file} && ! exists $arg_hash->{SSL_ca_path} ) {
255
+ if ( -f 'certs/my-ca.pem' ) {
256
+ $default_args{SSL_ca_file} = 'certs/my-ca.pem'
257
+ } elsif ( -d 'ca/' ) {
258
+ $default_args{SSL_ca_path} = 'ca/'
259
+ }
260
+ }
261
+
262
+ #Replace nonexistent entries with defaults
263
+ %$arg_hash = ( %default_args, %$GLOBAL_CONTEXT_ARGS, %$arg_hash );
264
+
265
+ #Avoid passing undef arguments to Net::SSLeay
266
+ defined($arg_hash->{$_}) or delete($arg_hash->{$_}) foreach (keys %$arg_hash);
267
+
268
+ my $vcn_scheme = delete $arg_hash->{SSL_verifycn_scheme};
269
+ if ( $vcn_scheme && $vcn_scheme ne 'none' ) {
270
+ # don't access ${*self} inside callback - this seems to create
271
+ # circular references from the ssl object to the context and back
272
+
273
+ # use SSL_verifycn_name or determine from PeerAddr
274
+ my $host = $arg_hash->{SSL_verifycn_name};
275
+ if (not defined($host)) {
276
+ if ( $host = $arg_hash->{PeerAddr} || $arg_hash->{PeerHost} ) {
277
+ $host =~s{:[a-zA-Z0-9_\-]+$}{};
278
+ }
279
+ }
280
+ $host ||= ref($vcn_scheme) && $vcn_scheme->{callback} && 'unknown';
281
+ $host or return $self->error( "Cannot determine peer hostname for verification" );
282
+
283
+ my $vcb = $arg_hash->{SSL_verify_callback};
284
+ $arg_hash->{SSL_verify_callback} = sub {
285
+ my ($ok,$ctx_store,$certname,$error,$cert) = @_;
286
+ $ok = $vcb->($ok,$ctx_store,$certname,$error,$cert) if $vcb;
287
+ $ok or return 0;
288
+ my $depth = Net::SSLeay::X509_STORE_CTX_get_error_depth($ctx_store);
289
+ return $ok if $depth != 0;
290
+
291
+ # verify name
292
+ my $rv = verify_hostname_of_cert( $host,$cert,$vcn_scheme );
293
+ # just do some code here against optimization because x509 has no
294
+ # increased reference and CRYPTO_add is not available from Net::SSLeay
295
+ return $rv;
296
+ };
297
+ }
298
+
299
+ ${*$self}{'_SSL_arguments'} = $arg_hash;
300
+ ${*$self}{'_SSL_ctx'} = IO::Socket::SSL::SSL_Context->new($arg_hash) || return;
301
+ ${*$self}{'_SSL_opened'} = 1 if $is_server;
302
+
303
+ return $self;
304
+ }
305
+
306
+
307
+ sub _set_rw_error {
308
+ my ($self,$ssl,$rv) = @_;
309
+ my $err = Net::SSLeay::get_error($ssl,$rv);
310
+ $SSL_ERROR =
311
+ $err == Net::SSLeay::ERROR_WANT_READ() ? SSL_WANT_READ :
312
+ $err == Net::SSLeay::ERROR_WANT_WRITE() ? SSL_WANT_WRITE :
313
+ return;
314
+ $! ||= EAGAIN;
315
+ ${*$self}{'_SSL_last_err'} = $SSL_ERROR if ref($self);
316
+ return 1;
317
+ }
318
+
319
+
320
+ #Call to connect occurs when a new client socket is made using
321
+ #IO::Socket::INET
322
+ sub connect {
323
+ my $self = shift || return _invalid_object();
324
+ return $self if ${*$self}{'_SSL_opened'}; # already connected
325
+
326
+ if ( ! ${*$self}{'_SSL_opening'} ) {
327
+ # call SUPER::connect if the underlying socket is not connected
328
+ # if this fails this might not be an error (e.g. if $! = EINPROGRESS
329
+ # and socket is nonblocking this is normal), so keep any error
330
+ # handling to the client
331
+ DEBUG(2, 'socket not yet connected' );
332
+ $self->SUPER::connect(@_) || return;
333
+ DEBUG(2,'socket connected' );
334
+
335
+ # IO::Socket works around systems, which return EISCONN or similar
336
+ # on non-blocking re-connect by returning true, even if $! is set
337
+ # but it does not clear $!, so do it here
338
+ $! = undef;
339
+ }
340
+ return $self->connect_SSL;
341
+ }
342
+
343
+
344
+ sub connect_SSL {
345
+ my $self = shift;
346
+ my $args = @_>1 ? {@_}: $_[0]||{};
347
+
348
+ my ($ssl,$ctx);
349
+ if ( ! ${*$self}{'_SSL_opening'} ) {
350
+ # start ssl connection
351
+ DEBUG(2,'ssl handshake not started' );
352
+ ${*$self}{'_SSL_opening'} = 1;
353
+ my $arg_hash = ${*$self}{'_SSL_arguments'};
354
+
355
+ my $fileno = ${*$self}{'_SSL_fileno'} = fileno($self);
356
+ return $self->error("Socket has no fileno") unless (defined $fileno);
357
+
358
+ $ctx = ${*$self}{'_SSL_ctx'}; # Reference to real context
359
+ $ssl = ${*$self}{'_SSL_object'} = Net::SSLeay::new($ctx->{context})
360
+ || return $self->error("SSL structure creation failed");
361
+
362
+ Net::SSLeay::set_fd($ssl, $fileno)
363
+ || return $self->error("SSL filehandle association failed");
364
+
365
+ if ( my $cl = $arg_hash->{SSL_cipher_list} ) {
366
+ Net::SSLeay::set_cipher_list($ssl, $cl )
367
+ || return $self->error("Failed to set SSL cipher list");
368
+ }
369
+
370
+ if (Net::SSLeay::OPENSSL_VERSION_NUMBER() >= 0x009080ef) {
371
+ my $host;
372
+ if ( exists $arg_hash->{SSL_hostname} ) {
373
+ # explicitly given
374
+ # can be set to undef/'' to not use extension
375
+ $host = $arg_hash->{SSL_hostname}
376
+ } elsif ( $host = $arg_hash->{PeerAddr} || $arg_hash->{PeerHost} ) {
377
+ # implicitly given
378
+ $host =~s{:[a-zA-Z0-9_\-]+$}{};
379
+ # should be hostname, not IPv4/6
380
+ $host = undef if $host !~m{[a-z_]} or $host =~m{:};
381
+ }
382
+ # define SSL_CTRL_SET_TLSEXT_HOSTNAME 55
383
+ # define TLSEXT_NAMETYPE_host_name 0
384
+ Net::SSLeay::ctrl($ssl,55,0,$host) if $host;
385
+ }
386
+
387
+ $arg_hash->{PeerAddr} || $self->_update_peer;
388
+ my $session = $ctx->session_cache( $arg_hash->{PeerAddr}, $arg_hash->{PeerPort} );
389
+ Net::SSLeay::set_session($ssl, $session) if ($session);
390
+ }
391
+
392
+ $ssl ||= ${*$self}{'_SSL_object'};
393
+
394
+ $SSL_ERROR = undef;
395
+ my $timeout = exists $args->{Timeout}
396
+ ? $args->{Timeout}
397
+ : ${*$self}{io_socket_timeout}; # from IO::Socket
398
+ if ( defined($timeout) && $timeout>0 && $self->blocking(0) ) {
399
+ DEBUG(2, "set socket to non-blocking to enforce timeout=$timeout" );
400
+ # timeout was given and socket was blocking
401
+ # enforce timeout with now non-blocking socket
402
+ } else {
403
+ # timeout does not apply because invalid or socket non-blocking
404
+ $timeout = undef;
405
+ }
406
+
407
+ my $start = defined($timeout) && time();
408
+ for my $dummy (1) {
409
+ #DEBUG( 'calling ssleay::connect' );
410
+ my $rv = Net::SSLeay::connect($ssl);
411
+ DEBUG( 3,"Net::SSLeay::connect -> $rv" );
412
+ if ( $rv < 0 ) {
413
+ unless ( $self->_set_rw_error( $ssl,$rv )) {
414
+ $self->error("SSL connect attempt failed with unknown error");
415
+ delete ${*$self}{'_SSL_opening'};
416
+ ${*$self}{'_SSL_opened'} = -1;
417
+ DEBUG(1, "fatal SSL error: $SSL_ERROR" );
418
+ return $self->fatal_ssl_error();
419
+ }
420
+
421
+ DEBUG(2,'ssl handshake in progress' );
422
+ # connect failed because handshake needs to be completed
423
+ # if socket was non-blocking or no timeout was given return with this error
424
+ return if ! defined($timeout);
425
+
426
+ # wait until socket is readable or writable
427
+ my $rv;
428
+ if ( $timeout>0 ) {
429
+ my $vec = '';
430
+ vec($vec,$self->fileno,1) = 1;
431
+ DEBUG(2, "waiting for fd to become ready: $SSL_ERROR" );
432
+ $rv =
433
+ $SSL_ERROR == SSL_WANT_READ ? select( $vec,undef,undef,$timeout) :
434
+ $SSL_ERROR == SSL_WANT_WRITE ? select( undef,$vec,undef,$timeout) :
435
+ undef;
436
+ } else {
437
+ DEBUG(2,"handshake failed because no more time" );
438
+ $! = ETIMEDOUT
439
+ }
440
+ if ( ! $rv ) {
441
+ DEBUG(2,"handshake failed because socket did not became ready" );
442
+ # failed because of timeout, return
443
+ $! ||= ETIMEDOUT;
444
+ delete ${*$self}{'_SSL_opening'};
445
+ ${*$self}{'_SSL_opened'} = -1;
446
+ $self->blocking(1); # was blocking before
447
+ return
448
+ }
449
+
450
+ # socket is ready, try non-blocking connect again after recomputing timeout
451
+ DEBUG(2,"socket ready, retrying connect" );
452
+ my $now = time();
453
+ $timeout -= $now - $start;
454
+ $start = $now;
455
+ redo;
456
+
457
+ } elsif ( $rv == 0 ) {
458
+ delete ${*$self}{'_SSL_opening'};
459
+ DEBUG(2,"connection failed - connect returned 0" );
460
+ $self->error("SSL connect attempt failed because of handshake problems" );
461
+ ${*$self}{'_SSL_opened'} = -1;
462
+ return $self->fatal_ssl_error();
463
+ }
464
+ }
465
+
466
+ DEBUG(2,'ssl handshake done' );
467
+ # ssl connect successful
468
+ delete ${*$self}{'_SSL_opening'};
469
+ ${*$self}{'_SSL_opened'}=1;
470
+ $self->blocking(1) if defined($timeout); # was blocking before
471
+
472
+ $ctx ||= ${*$self}{'_SSL_ctx'};
473
+ if ( $ctx->has_session_cache ) {
474
+ my $arg_hash = ${*$self}{'_SSL_arguments'};
475
+ $arg_hash->{PeerAddr} || $self->_update_peer;
476
+ my ($addr,$port) = ( $arg_hash->{PeerAddr}, $arg_hash->{PeerPort} );
477
+ my $session = $ctx->session_cache( $addr,$port );
478
+ $ctx->session_cache( $addr,$port, Net::SSLeay::get1_session($ssl) ) if !$session;
479
+ }
480
+
481
+ tie *{$self}, "IO::Socket::SSL::SSL_HANDLE", $self;
482
+
483
+ return $self;
484
+ }
485
+
486
+ # called if PeerAddr is not set in ${*$self}{'_SSL_arguments'}
487
+ # this can be the case if start_SSL is called with a normal IO::Socket::INET
488
+ # so that PeerAddr|PeerPort are not set from args
489
+ sub _update_peer {
490
+ my $self = shift;
491
+ my $arg_hash = ${*$self}{'_SSL_arguments'};
492
+ eval {
493
+ my ($port,$addr) = sockaddr_in( getpeername( $self ));
494
+ $arg_hash->{PeerAddr} = inet_ntoa( $addr );
495
+ $arg_hash->{PeerPort} = $port;
496
+ }
497
+ }
498
+
499
+ #Call to accept occurs when a new client connects to a server using
500
+ #IO::Socket::SSL
501
+ sub accept {
502
+ my $self = shift || return _invalid_object();
503
+ my $class = shift || 'IO::Socket::SSL';
504
+
505
+ my $socket = ${*$self}{'_SSL_opening'};
506
+ if ( ! $socket ) {
507
+ # underlying socket not done
508
+ DEBUG(2,'no socket yet' );
509
+ $socket = $self->SUPER::accept($class) || return;
510
+ DEBUG(2,'accept created normal socket '.$socket );
511
+ }
512
+
513
+ $self->accept_SSL($socket) || return;
514
+ DEBUG(2,'accept_SSL ok' );
515
+
516
+ return wantarray ? ($socket, getpeername($socket) ) : $socket;
517
+ }
518
+
519
+ sub accept_SSL {
520
+ my $self = shift;
521
+ my $socket = ( @_ && UNIVERSAL::isa( $_[0], 'IO::Handle' )) ? shift : $self;
522
+ my $args = @_>1 ? {@_}: $_[0]||{};
523
+
524
+ my $ssl;
525
+ if ( ! ${*$self}{'_SSL_opening'} ) {
526
+ DEBUG(2,'starting sslifying' );
527
+ ${*$self}{'_SSL_opening'} = $socket;
528
+ my $arg_hash = ${*$self}{'_SSL_arguments'};
529
+ ${*$socket}{'_SSL_arguments'} = { %$arg_hash, SSL_server => 0 };
530
+ my $ctx = ${*$socket}{'_SSL_ctx'} = ${*$self}{'_SSL_ctx'};
531
+
532
+ my $fileno = ${*$socket}{'_SSL_fileno'} = fileno($socket);
533
+ return $socket->error("Socket has no fileno") unless (defined $fileno);
534
+
535
+ $ssl = ${*$socket}{'_SSL_object'} = Net::SSLeay::new($ctx->{context})
536
+ || return $socket->error("SSL structure creation failed");
537
+
538
+ Net::SSLeay::set_fd($ssl, $fileno)
539
+ || return $socket->error("SSL filehandle association failed");
540
+
541
+ if ( my $cl = $arg_hash->{SSL_cipher_list} ) {
542
+ Net::SSLeay::set_cipher_list($ssl, $cl )
543
+ || return $socket->error("Failed to set SSL cipher list");
544
+ }
545
+ }
546
+
547
+ $ssl ||= ${*$socket}{'_SSL_object'};
548
+
549
+ $SSL_ERROR = undef;
550
+ #DEBUG(2,'calling ssleay::accept' );
551
+
552
+ my $timeout = exists $args->{Timeout}
553
+ ? $args->{Timeout}
554
+ : ${*$self}{io_socket_timeout}; # from IO::Socket
555
+ if ( defined($timeout) && $timeout>0 && $socket->blocking(0) ) {
556
+ # timeout was given and socket was blocking
557
+ # enforce timeout with now non-blocking socket
558
+ } else {
559
+ # timeout does not apply because invalid or socket non-blocking
560
+ $timeout = undef;
561
+ }
562
+
563
+ my $start = defined($timeout) && time();
564
+ for my $dummy (1) {
565
+ my $rv = Net::SSLeay::accept($ssl);
566
+ DEBUG(3, "Net::SSLeay::accept -> $rv" );
567
+ if ( $rv < 0 ) {
568
+ unless ( $socket->_set_rw_error( $ssl,$rv )) {
569
+ $socket->error("SSL accept attempt failed with unknown error");
570
+ delete ${*$self}{'_SSL_opening'};
571
+ ${*$socket}{'_SSL_opened'} = -1;
572
+ return $socket->fatal_ssl_error();
573
+ }
574
+
575
+ # accept failed because handshake needs to be completed
576
+ # if socket was non-blocking or no timeout was given return with this error
577
+ return if ! defined($timeout);
578
+
579
+ # wait until socket is readable or writable
580
+ my $rv;
581
+ if ( $timeout>0 ) {
582
+ my $vec = '';
583
+ vec($vec,$socket->fileno,1) = 1;
584
+ $rv =
585
+ $SSL_ERROR == SSL_WANT_READ ? select( $vec,undef,undef,$timeout) :
586
+ $SSL_ERROR == SSL_WANT_WRITE ? select( undef,$vec,undef,$timeout) :
587
+ undef;
588
+ } else {
589
+ $! = ETIMEDOUT
590
+ }
591
+ if ( ! $rv ) {
592
+ # failed because of timeout, return
593
+ $! ||= ETIMEDOUT;
594
+ delete ${*$self}{'_SSL_opening'};
595
+ ${*$socket}{'_SSL_opened'} = -1;
596
+ $socket->blocking(1); # was blocking before
597
+ return
598
+ }
599
+
600
+ # socket is ready, try non-blocking accept again after recomputing timeout
601
+ my $now = time();
602
+ $timeout -= $now - $start;
603
+ $start = $now;
604
+ redo;
605
+
606
+ } elsif ( $rv == 0 ) {
607
+ $socket->error("SSL connect accept failed because of handshake problems" );
608
+ delete ${*$self}{'_SSL_opening'};
609
+ ${*$socket}{'_SSL_opened'} = -1;
610
+ return $socket->fatal_ssl_error();
611
+ }
612
+ }
613
+
614
+ DEBUG(2,'handshake done, socket ready' );
615
+ # socket opened
616
+ delete ${*$self}{'_SSL_opening'};
617
+ ${*$socket}{'_SSL_opened'} = 1;
618
+ $socket->blocking(1) if defined($timeout); # was blocking before
619
+
620
+ tie *{$socket}, "IO::Socket::SSL::SSL_HANDLE", $socket;
621
+
622
+ return $socket;
623
+ }
624
+
625
+
626
+ ####### I/O subroutines ########################
627
+
628
+ sub generic_read {
629
+ my ($self, $read_func, undef, $length, $offset) = @_;
630
+ my $ssl = $self->_get_ssl_object || return;
631
+ my $buffer=\$_[2];
632
+
633
+ $SSL_ERROR = undef;
634
+ my $data = $read_func->($ssl, $length);
635
+ if ( !defined($data)) {
636
+ $self->_set_rw_error( $ssl,-1 ) || $self->error("SSL read error");
637
+ return;
638
+ }
639
+
640
+ $length = length($data);
641
+ $$buffer = '' if !defined $$buffer;
642
+ $offset ||= 0;
643
+ if ($offset>length($$buffer)) {
644
+ $$buffer.="\0" x ($offset-length($$buffer)); #mimic behavior of read
645
+ }
646
+
647
+ substr($$buffer, $offset, length($$buffer), $data);
648
+ return $length;
649
+ }
650
+
651
+ sub read {
652
+ my $self = shift;
653
+ return $self->generic_read(
654
+ $self->blocking ? \&Net::SSLeay::ssl_read_all : \&Net::SSLeay::read,
655
+ @_
656
+ );
657
+ }
658
+
659
+ # contrary to the behavior of read sysread can read partial data
660
+ sub sysread {
661
+ my $self = shift;
662
+ return $self->generic_read( \&Net::SSLeay::read, @_ );
663
+ }
664
+
665
+ sub peek {
666
+ my $self = shift;
667
+ if (Net::SSLeay::OPENSSL_VERSION_NUMBER() >= 0x0090601f) {
668
+ return $self->generic_read(\&Net::SSLeay::peek, @_);
669
+ } else {
670
+ return $self->error("SSL_peek not supported for OpenSSL < v0.9.6a");
671
+ }
672
+ }
673
+
674
+
675
+ sub generic_write {
676
+ my ($self, $write_all, undef, $length, $offset) = @_;
677
+
678
+ my $ssl = $self->_get_ssl_object || return;
679
+ my $buffer = \$_[2];
680
+
681
+ my $buf_len = length($$buffer);
682
+ $length ||= $buf_len;
683
+ $offset ||= 0;
684
+ return $self->error("Invalid offset for SSL write") if ($offset>$buf_len);
685
+ return 0 if ($offset == $buf_len);
686
+
687
+ $SSL_ERROR = undef;
688
+ my $written;
689
+ if ( $write_all ) {
690
+ my $data = $length < $buf_len-$offset ? substr($$buffer, $offset, $length) : $$buffer;
691
+ ($written, my $errs) = Net::SSLeay::ssl_write_all($ssl, $data);
692
+ # ssl_write_all returns number of bytes written
693
+ $written = undef if ! $written && $errs;
694
+ } else {
695
+ $written = Net::SSLeay::write_partial( $ssl,$offset,$length,$$buffer );
696
+ # write_partial does SSL_write which returns -1 on error
697
+ $written = undef if $written < 0;
698
+ }
699
+ if ( !defined($written) ) {
700
+ $self->_set_rw_error( $ssl,-1 )
701
+ || $self->error("SSL write error");
702
+ return;
703
+ }
704
+
705
+ return $written;
706
+ }
707
+
708
+ # if socket is blocking write() should return only on error or
709
+ # if all data are written
710
+ sub write {
711
+ my $self = shift;
712
+ return $self->generic_write( scalar($self->blocking),@_ );
713
+ }
714
+
715
+ # contrary to write syswrite() returns already if only
716
+ # a part of the data is written
717
+ sub syswrite {
718
+ my $self = shift;
719
+ return $self->generic_write( 0,@_ );
720
+ }
721
+
722
+ sub print {
723
+ my $self = shift;
724
+ my $string = join(($, or ''), @_, ($\ or ''));
725
+ return $self->write( $string );
726
+ }
727
+
728
+ sub printf {
729
+ my ($self,$format) = (shift,shift);
730
+ return $self->write(sprintf($format, @_));
731
+ }
732
+
733
+ sub getc {
734
+ my ($self, $buffer) = (shift, undef);
735
+ return $buffer if $self->read($buffer, 1, 0);
736
+ }
737
+
738
+ sub readline {
739
+ my $self = shift;
740
+
741
+ if ( not defined $/ or wantarray) {
742
+ # read all and split
743
+
744
+ my $buf = '';
745
+ while (1) {
746
+ my $rv = $self->sysread($buf,2**16,length($buf));
747
+ if ( ! defined $rv ) {
748
+ next if $!{EINTR};
749
+ return;
750
+ } elsif ( ! $rv ) {
751
+ last
752
+ }
753
+ }
754
+
755
+ if ( ! defined $/ ) {
756
+ return $buf
757
+ } elsif ( ref($/)) {
758
+ my $size = ${$/};
759
+ die "bad value in ref \$/: $size" unless $size>0;
760
+ return $buf=~m{\G(.{1,$size})}g;
761
+ } elsif ( $/ eq '' ) {
762
+ return $buf =~m{\G(.*\n\n+|.+)}g;
763
+ } else {
764
+ return $buf =~m{\G(.*$/|.+)}g;
765
+ }
766
+ }
767
+
768
+ # read only one line
769
+ if ( ref($/) ) {
770
+ my $size = ${$/};
771
+ # read record of $size bytes
772
+ die "bad value in ref \$/: $size" unless $size>0;
773
+ my $buf = '';
774
+ while ( $size>length($buf)) {
775
+ my $rv = $self->sysread($buf,$size-length($buf),length($buf));
776
+ if ( ! defined $rv ) {
777
+ next if $!{EINTR};
778
+ return;
779
+ } elsif ( ! $rv ) {
780
+ last
781
+ }
782
+ }
783
+ return $buf;
784
+ }
785
+
786
+ my ($delim0,$delim1) = $/ eq '' ? ("\n\n","\n"):($/,'');
787
+
788
+ if ( Net::SSLeay::OPENSSL_VERSION_NUMBER() < 0x0090601f ) {
789
+ # no usable peek - need to read byte after byte
790
+ die "empty \$/ is not supported if I don't have peek" if $delim1 ne '';
791
+ my $buf = '';
792
+ while (1) {
793
+ my $rv = $self->sysread($buf,1,length($buf));
794
+ if ( ! defined $rv ) {
795
+ next if $!{EINTR};
796
+ return;
797
+ } elsif ( ! $rv ) {
798
+ last
799
+ }
800
+ index($buf,$delim0) >= 0 and last;
801
+ }
802
+ return $buf;
803
+ }
804
+
805
+
806
+ # find first occurence of $delim0 followed by as much as possible $delim1
807
+ my $buf = '';
808
+ my $eod = 0; # pointer into $buf after $delim0 $delim1*
809
+ my $ssl = $self->_get_ssl_object or return;
810
+ while (1) {
811
+
812
+ # block until we have more data or eof
813
+ my $poke = Net::SSLeay::peek($ssl,1);
814
+ if ( ! defined $poke or $poke eq '' ) {
815
+ next if $!{EINTR};
816
+ }
817
+
818
+ my $skip = 0;
819
+
820
+ # peek into available data w/o reading
821
+ my $pending = Net::SSLeay::pending($ssl);
822
+ if ( $pending and
823
+ ( my $pb = Net::SSLeay::peek( $ssl,$pending )) ne '' ) {
824
+ $buf .= $pb
825
+ } else {
826
+ return $buf eq '' ? ():$buf;
827
+ };
828
+ if ( !$eod ) {
829
+ my $pos = index( $buf,$delim0 );
830
+ if ( $pos<0 ) {
831
+ $skip = $pending
832
+ } else {
833
+ $eod = $pos + length($delim0); # pos after delim0
834
+ }
835
+ }
836
+
837
+ if ( $eod ) {
838
+ if ( $delim1 ne '' ) {
839
+ # delim0 found, check for as much delim1 as possible
840
+ while ( index( $buf,$delim1,$eod ) == $eod ) {
841
+ $eod+= length($delim1);
842
+ }
843
+ }
844
+ $skip = $pending - ( length($buf) - $eod );
845
+ }
846
+
847
+ # remove data from $self which I already have in buf
848
+ while ( $skip>0 ) {
849
+ if ($self->sysread(my $p,$skip,0)) {
850
+ $skip -= length($p);
851
+ next;
852
+ }
853
+ $!{EINTR} or last;
854
+ }
855
+
856
+ if ( $eod and ( $delim1 eq '' or $eod < length($buf))) {
857
+ # delim0 found and there can be no more delim1 pending
858
+ last
859
+ }
860
+ }
861
+ return substr($buf,0,$eod);
862
+ }
863
+
864
+ sub close {
865
+ my $self = shift || return _invalid_object();
866
+ my $close_args = (ref($_[0]) eq 'HASH') ? $_[0] : {@_};
867
+
868
+ return if ! $self->stop_SSL(
869
+ SSL_fast_shutdown => 1,
870
+ %$close_args,
871
+ _SSL_ioclass_downgrade => 0,
872
+ );
873
+
874
+ if ( ! $close_args->{_SSL_in_DESTROY} ) {
875
+ untie( *$self );
876
+ undef ${*$self}{_SSL_fileno};
877
+ return $self->SUPER::close;
878
+ }
879
+ return 1;
880
+ }
881
+
882
+ sub stop_SSL {
883
+ my $self = shift || return _invalid_object();
884
+ my $stop_args = (ref($_[0]) eq 'HASH') ? $_[0] : {@_};
885
+ $stop_args->{SSL_no_shutdown} = 1 if ! ${*$self}{_SSL_opened};
886
+
887
+ if (my $ssl = ${*$self}{'_SSL_object'}) {
888
+ my $shutdown_done;
889
+ if ( $stop_args->{SSL_no_shutdown} ) {
890
+ $shutdown_done = 1;
891
+ } else {
892
+ my $fast = $stop_args->{SSL_fast_shutdown};
893
+ my $status = Net::SSLeay::get_shutdown($ssl);
894
+ if ( $fast && $status != 0) {
895
+ # shutdown done, either status has
896
+ # SSL_SENT_SHUTDOWN or SSL_RECEIVED_SHUTDOWN or both,
897
+ # so the handshake is at least in process
898
+ $shutdown_done = 1;
899
+ } elsif ( ( $status & SSL_SENT_SHUTDOWN ) == 0 ) {
900
+ # need to initiate/continue shutdown
901
+ local $SIG{PIPE} = 'IGNORE';
902
+ for my $try (1,2 ) {
903
+ my $rv = Net::SSLeay::shutdown($ssl);
904
+ if ( $rv < 0 ) {
905
+ # non-blocking socket?
906
+ $self->_set_rw_error( $ssl,$rv );
907
+ # need to try again
908
+ return;
909
+ } elsif ( $rv
910
+ || ( $rv == 0 && $fast )) {
911
+ # shutdown finished
912
+ $shutdown_done = 1;
913
+ last;
914
+ } else {
915
+ # shutdown partly initiated (e.g. one direction)
916
+ # call again
917
+ }
918
+ }
919
+ } elsif ( $status & SSL_RECEIVED_SHUTDOWN ) {
920
+ # SSL_SENT_SHUTDOWN is done already (previous if-case)
921
+ # and because SSL_RECEIVED_SHUTDOWN is done also we
922
+ # consider the shutdown done
923
+ $shutdown_done = 1;
924
+ }
925
+ }
926
+
927
+ return if ! $shutdown_done;
928
+ Net::SSLeay::free($ssl);
929
+ delete ${*$self}{_SSL_object};
930
+ }
931
+
932
+ if ($stop_args->{'SSL_ctx_free'}) {
933
+ my $ctx = delete ${*$self}{'_SSL_ctx'};
934
+ $ctx && $ctx->DESTROY();
935
+ }
936
+
937
+ if (my $cert = delete ${*$self}{'_SSL_certificate'}) {
938
+ Net::SSLeay::X509_free($cert);
939
+ }
940
+
941
+ ${*$self}{'_SSL_opened'} = 0;
942
+
943
+ if ( ! $stop_args->{_SSL_in_DESTROY} ) {
944
+
945
+ my $downgrade = $stop_args->{_SSL_ioclass_downgrade};
946
+ if ( $downgrade || ! defined $downgrade ) {
947
+ # rebless to original class from start_SSL
948
+ if ( my $orig_class = delete ${*$self}{'_SSL_ioclass_upgraded'} ) {
949
+ bless $self,$orig_class;
950
+ untie(*$self);
951
+ # FIXME: if original class was tied too we need to restore the tie
952
+ }
953
+ # remove all _SSL related from *$self
954
+ my @sslkeys = grep { m{^_?SSL_} } keys %{*$self};
955
+ delete @{*$self}{@sslkeys} if @sslkeys;
956
+ }
957
+ }
958
+ return 1;
959
+ }
960
+
961
+
962
+ sub fileno {
963
+ my $self = shift;
964
+ my $fn = ${*$self}{'_SSL_fileno'};
965
+ return defined($fn) ? $fn : $self->SUPER::fileno();
966
+ }
967
+
968
+
969
+ ####### IO::Socket::SSL specific functions #######
970
+ # _get_ssl_object is for internal use ONLY!
971
+ sub _get_ssl_object {
972
+ my $self = shift;
973
+ my $ssl = ${*$self}{'_SSL_object'};
974
+ return IO::Socket::SSL->error("Undefined SSL object") unless($ssl);
975
+ return $ssl;
976
+ }
977
+
978
+ # _get_ctx_object is for internal use ONLY!
979
+ sub _get_ctx_object {
980
+ my $self = shift;
981
+ my $ctx_object = ${*$self}{_SSL_ctx};
982
+ return $ctx_object && $ctx_object->{context};
983
+ }
984
+
985
+ # default error for undefined arguments
986
+ sub _invalid_object {
987
+ return IO::Socket::SSL->error("Undefined IO::Socket::SSL object");
988
+ }
989
+
990
+
991
+ sub pending {
992
+ my $ssl = shift()->_get_ssl_object || return;
993
+ return Net::SSLeay::pending($ssl);
994
+ }
995
+
996
+ sub start_SSL {
997
+ my ($class,$socket) = (shift,shift);
998
+ return $class->error("Not a socket") unless(ref($socket));
999
+ my $arg_hash = (ref($_[0]) eq 'HASH') ? $_[0] : {@_};
1000
+ my %to = exists $arg_hash->{Timeout} ? ( Timeout => delete $arg_hash->{Timeout} ) :();
1001
+ my $original_class = ref($socket);
1002
+ my $original_fileno = (UNIVERSAL::can($socket, "fileno"))
1003
+ ? $socket->fileno : CORE::fileno($socket);
1004
+ return $class->error("Socket has no fileno") unless defined $original_fileno;
1005
+
1006
+ bless $socket, $class;
1007
+ $socket->configure_SSL($arg_hash) or bless($socket, $original_class) && return;
1008
+
1009
+ ${*$socket}{'_SSL_fileno'} = $original_fileno;
1010
+ ${*$socket}{'_SSL_ioclass_upgraded'} = $original_class;
1011
+
1012
+ my $start_handshake = $arg_hash->{SSL_startHandshake};
1013
+ if ( ! defined($start_handshake) || $start_handshake ) {
1014
+ # if we have no callback force blocking mode
1015
+ DEBUG(2, "start handshake" );
1016
+ my $blocking = $socket->blocking(1);
1017
+ my $result = ${*$socket}{'_SSL_arguments'}{SSL_server}
1018
+ ? $socket->accept_SSL(%to)
1019
+ : $socket->connect_SSL(%to);
1020
+ $socket->blocking(0) if !$blocking;
1021
+ return $result ? $socket : (bless($socket, $original_class) && ());
1022
+ } else {
1023
+ DEBUG(2, "dont start handshake: $socket" );
1024
+ return $socket; # just return upgraded socket
1025
+ }
1026
+
1027
+ }
1028
+
1029
+ sub new_from_fd {
1030
+ my ($class, $fd) = (shift,shift);
1031
+ # Check for accidental inclusion of MODE in the argument list
1032
+ if (length($_[0]) < 4) {
1033
+ (my $mode = $_[0]) =~ tr/+<>//d;
1034
+ shift unless length($mode);
1035
+ }
1036
+ my $handle = $ISA[0]->new_from_fd($fd, '+<')
1037
+ || return($class->error("Could not create socket from file descriptor."));
1038
+
1039
+ # Annoying workaround for Perl 5.6.1 and below:
1040
+ $handle = $ISA[0]->new_from_fd($handle, '+<');
1041
+
1042
+ return $class->start_SSL($handle, @_);
1043
+ }
1044
+
1045
+
1046
+ sub dump_peer_certificate {
1047
+ my $ssl = shift()->_get_ssl_object || return;
1048
+ return Net::SSLeay::dump_peer_certificate($ssl);
1049
+ }
1050
+
1051
+ {
1052
+ my %dispatcher = (
1053
+ issuer => sub { Net::SSLeay::X509_NAME_oneline( Net::SSLeay::X509_get_issuer_name( shift )) },
1054
+ subject => sub { Net::SSLeay::X509_NAME_oneline( Net::SSLeay::X509_get_subject_name( shift )) },
1055
+ );
1056
+ if ( $Net::SSLeay::VERSION >= 1.30 ) {
1057
+ # I think X509_NAME_get_text_by_NID got added in 1.30
1058
+ $dispatcher{commonName} = sub {
1059
+ my $cn = Net::SSLeay::X509_NAME_get_text_by_NID(
1060
+ Net::SSLeay::X509_get_subject_name( shift ), NID_CommonName);
1061
+ $cn =~s{\0$}{}; # work around Bug in Net::SSLeay <1.33
1062
+ $cn;
1063
+ }
1064
+ } else {
1065
+ $dispatcher{commonName} = sub {
1066
+ croak "you need at least Net::SSLeay version 1.30 for getting commonName"
1067
+ }
1068
+ }
1069
+
1070
+ if ( $Net::SSLeay::VERSION >= 1.33 ) {
1071
+ # X509_get_subjectAltNames did not really work before
1072
+ $dispatcher{subjectAltNames} = sub { Net::SSLeay::X509_get_subjectAltNames( shift ) };
1073
+ } else {
1074
+ $dispatcher{subjectAltNames} = sub {
1075
+ croak "you need at least Net::SSLeay version 1.33 for getting subjectAltNames"
1076
+ };
1077
+ }
1078
+
1079
+ # alternative names
1080
+ $dispatcher{authority} = $dispatcher{issuer};
1081
+ $dispatcher{owner} = $dispatcher{subject};
1082
+ $dispatcher{cn} = $dispatcher{commonName};
1083
+
1084
+ sub peer_certificate {
1085
+ my ($self, $field) = @_;
1086
+ my $ssl = $self->_get_ssl_object or return;
1087
+
1088
+ my $cert = ${*$self}{_SSL_certificate}
1089
+ ||= Net::SSLeay::get_peer_certificate($ssl)
1090
+ or return $self->error("Could not retrieve peer certificate");
1091
+
1092
+ if ($field) {
1093
+ my $sub = $dispatcher{$field} or croak
1094
+ "invalid argument for peer_certificate, valid are: ".join( " ",keys %dispatcher ).
1095
+ "\nMaybe you need to upgrade your Net::SSLeay";
1096
+ return $sub->($cert);
1097
+ } else {
1098
+ return $cert
1099
+ }
1100
+ }
1101
+
1102
+ # known schemes, possible attributes are:
1103
+ # - wildcards_in_alt (0, 'leftmost', 'anywhere')
1104
+ # - wildcards_in_cn (0, 'leftmost', 'anywhere')
1105
+ # - check_cn (0, 'always', 'when_only')
1106
+
1107
+ my %scheme = (
1108
+ # rfc 4513
1109
+ ldap => {
1110
+ wildcards_in_cn => 0,
1111
+ wildcards_in_alt => 'leftmost',
1112
+ check_cn => 'always',
1113
+ },
1114
+ # rfc 2818
1115
+ http => {
1116
+ wildcards_in_cn => 'anywhere',
1117
+ wildcards_in_alt => 'anywhere',
1118
+ check_cn => 'when_only',
1119
+ },
1120
+ # rfc 3207
1121
+ # This is just a dumb guess
1122
+ # RFC3207 itself just says, that the client should expect the
1123
+ # domain name of the server in the certificate. It doesn't say
1124
+ # anything about wildcards, so I forbid them. It doesn't say
1125
+ # anything about alt names, but other documents show, that alt
1126
+ # names should be possible. The check_cn value again is a guess.
1127
+ # Fix the spec!
1128
+ smtp => {
1129
+ wildcards_in_cn => 0,
1130
+ wildcards_in_alt => 0,
1131
+ check_cn => 'always'
1132
+ },
1133
+ none => {}, # do not check
1134
+ );
1135
+
1136
+ $scheme{www} = $scheme{http}; # alias
1137
+ $scheme{xmpp} = $scheme{http}; # rfc 3920
1138
+ $scheme{pop3} = $scheme{ldap}; # rfc 2595
1139
+ $scheme{imap} = $scheme{ldap}; # rfc 2595
1140
+ $scheme{acap} = $scheme{ldap}; # rfc 2595
1141
+ $scheme{nntp} = $scheme{ldap}; # rfc 4642
1142
+ $scheme{ftp} = $scheme{http}; # rfc 4217
1143
+
1144
+ # function to verify the hostname
1145
+ #
1146
+ # as every application protocol has its own rules to do this
1147
+ # we provide some default rules as well as a user-defined
1148
+ # callback
1149
+
1150
+ sub verify_hostname_of_cert {
1151
+ my $identity = shift;
1152
+ my $cert = shift;
1153
+ my $scheme = shift || 'none';
1154
+ if ( ! ref($scheme) ) {
1155
+ DEBUG(3, "scheme=$scheme cert=$cert" );
1156
+ $scheme = $scheme{$scheme} or croak "scheme $scheme not defined";
1157
+ }
1158
+
1159
+ # get data from certificate
1160
+ my $commonName = $dispatcher{cn}->($cert);
1161
+ my @altNames = $dispatcher{subjectAltNames}->($cert);
1162
+ DEBUG(3,"identity=$identity cn=$commonName alt=@altNames" );
1163
+
1164
+ if ( my $sub = $scheme->{callback} ) {
1165
+ # use custom callback
1166
+ return $sub->($identity,$commonName,@altNames);
1167
+ }
1168
+
1169
+ # is the given hostname an IP address? Then we have to convert to network byte order [RFC791][RFC2460]
1170
+
1171
+ my $ipn;
1172
+ if ( $identity =~m{:} ) {
1173
+ # no IPv4 or hostname have ':' in it, try IPv6.
1174
+ # make sure that Socket6 was loaded properly
1175
+ UNIVERSAL::can( __PACKAGE__, 'inet_pton' ) or croak
1176
+ q[Looks like IPv6 address, make sure that Socket6 is loaded or make "use IO::Socket::SSL 'inet6'];
1177
+ $ipn = inet_pton(AF_INET6,$identity)
1178
+ or croak "'$identity' is not IPv6, but neither IPv4 nor hostname";
1179
+ } elsif ( $identity =~m{^\d+\.\d+\.\d+\.\d+$} ) {
1180
+ # definitly no hostname, try IPv4
1181
+ $ipn = inet_aton( $identity ) or croak "'$identity' is not IPv4, but neither IPv6 nor hostname";
1182
+ } else {
1183
+ # assume hostname, check for umlauts etc
1184
+ if ( $identity =~m{[^a-zA-Z0-9_.\-]} ) {
1185
+ $identity =~m{\0} and croak("name '$identity' has \\0 byte");
1186
+ $identity = idn_to_ascii($identity) or
1187
+ croak "Warning: Given name '$identity' could not be converted to IDNA!";
1188
+ }
1189
+ }
1190
+
1191
+ # do the actual verification
1192
+ my $check_name = sub {
1193
+ my ($name,$identity,$wtyp) = @_;
1194
+ $wtyp ||= '';
1195
+ my $pattern;
1196
+ ### IMPORTANT!
1197
+ # we accept only a single wildcard and only for a single part of the FQDN
1198
+ # e.g *.example.org does match www.example.org but not bla.www.example.org
1199
+ # The RFCs are in this regard unspecific but we don't want to have to
1200
+ # deal with certificates like *.com, *.co.uk or even *
1201
+ # see also http://nils.toedtmann.net/pub/subjectAltName.txt
1202
+ if ( $wtyp eq 'anywhere' and $name =~m{^([a-zA-Z0-9_\-]*)\*(.+)} ) {
1203
+ $pattern = qr{^\Q$1\E[a-zA-Z0-9_\-]*\Q$2\E$}i;
1204
+ } elsif ( $wtyp eq 'leftmost' and $name =~m{^\*(\..+)$} ) {
1205
+ $pattern = qr{^[a-zA-Z0-9_\-]*\Q$1\E$}i;
1206
+ } else {
1207
+ $pattern = qr{^\Q$name\E$}i;
1208
+ }
1209
+ return $identity =~ $pattern;
1210
+ };
1211
+
1212
+ my $alt_dnsNames = 0;
1213
+ while (@altNames) {
1214
+ my ($type, $name) = splice (@altNames, 0, 2);
1215
+ if ( $ipn and $type == GEN_IPADD ) {
1216
+ # exakt match needed for IP
1217
+ # $name is already packed format (inet_xton)
1218
+ return 1 if $ipn eq $name;
1219
+
1220
+ } elsif ( ! $ipn and $type == GEN_DNS ) {
1221
+ $name =~s/\s+$//; $name =~s/^\s+//;
1222
+ $alt_dnsNames++;
1223
+ $check_name->($name,$identity,$scheme->{wildcards_in_alt})
1224
+ and return 1;
1225
+ }
1226
+ }
1227
+
1228
+ if ( ! $ipn and (
1229
+ $scheme->{check_cn} eq 'always' or
1230
+ $scheme->{check_cn} eq 'when_only' and !$alt_dnsNames)) {
1231
+ $check_name->($commonName,$identity,$scheme->{wildcards_in_cn})
1232
+ and return 1;
1233
+ }
1234
+
1235
+ return 0; # no match
1236
+ }
1237
+ }
1238
+
1239
+ sub verify_hostname {
1240
+ my $self = shift;
1241
+ my $host = shift;
1242
+ my $cert = $self->peer_certificate;
1243
+ return verify_hostname_of_cert( $host,$cert,@_ );
1244
+ }
1245
+
1246
+
1247
+ sub get_cipher {
1248
+ my $ssl = shift()->_get_ssl_object || return;
1249
+ return Net::SSLeay::get_cipher($ssl);
1250
+ }
1251
+
1252
+ sub errstr {
1253
+ my $self = shift;
1254
+ return ((ref($self) ? ${*$self}{'_SSL_last_err'} : $SSL_ERROR) or '');
1255
+ }
1256
+
1257
+ sub fatal_ssl_error {
1258
+ my $self = shift;
1259
+ my $error_trap = ${*$self}{'_SSL_arguments'}->{'SSL_error_trap'};
1260
+ $@ = $self->errstr;
1261
+ if (defined $error_trap and ref($error_trap) eq 'CODE') {
1262
+ $error_trap->($self, $self->errstr()."\n".$self->get_ssleay_error());
1263
+ } elsif ( ${*$self}{'_SSL_ioclass_upgraded'} ) {
1264
+ # downgrade only
1265
+ $self->stop_SSL;
1266
+ } else {
1267
+ # kill socket
1268
+ $self->close
1269
+ }
1270
+ return;
1271
+ }
1272
+
1273
+ sub get_ssleay_error {
1274
+ #Net::SSLeay will print out the errors itself unless we explicitly
1275
+ #undefine $Net::SSLeay::trace while running print_errs()
1276
+ local $Net::SSLeay::trace;
1277
+ return Net::SSLeay::print_errs('SSL error: ') || '';
1278
+ }
1279
+
1280
+ sub error {
1281
+ my ($self, $error, $destroy_socket) = @_;
1282
+ $error .= ' '.Net::SSLeay::ERR_error_string(Net::SSLeay::ERR_get_error());
1283
+ DEBUG(2, $error."\n".$self->get_ssleay_error());
1284
+ $SSL_ERROR = dualvar( -1, $error );
1285
+ ${*$self}{'_SSL_last_err'} = $SSL_ERROR if (ref($self));
1286
+ return;
1287
+ }
1288
+
1289
+
1290
+ sub DESTROY {
1291
+ my $self = shift || return;
1292
+ $self->close(_SSL_in_DESTROY => 1, SSL_no_shutdown => 1)
1293
+ if ${*$self}{'_SSL_opened'};
1294
+ delete(${*$self}{'_SSL_ctx'});
1295
+ }
1296
+
1297
+
1298
+ #######Extra Backwards Compatibility Functionality#######
1299
+ sub socket_to_SSL { IO::Socket::SSL->start_SSL(@_); }
1300
+ sub socketToSSL { IO::Socket::SSL->start_SSL(@_); }
1301
+ sub kill_socket { shift->close }
1302
+
1303
+ sub issuer_name { return(shift()->peer_certificate("issuer")) }
1304
+ sub subject_name { return(shift()->peer_certificate("subject")) }
1305
+ sub get_peer_certificate { return shift() }
1306
+
1307
+ sub context_init {
1308
+ return($GLOBAL_CONTEXT_ARGS = (ref($_[0]) eq 'HASH') ? $_[0] : {@_});
1309
+ }
1310
+
1311
+ sub set_default_context {
1312
+ $GLOBAL_CONTEXT_ARGS->{'SSL_reuse_ctx'} = shift;
1313
+ }
1314
+
1315
+ sub set_default_session_cache {
1316
+ $GLOBAL_CONTEXT_ARGS->{SSL_session_cache} = shift;
1317
+ }
1318
+
1319
+ sub set_ctx_defaults {
1320
+ my %args = @_;
1321
+ while ( my ($k,$v) = each %args ) {
1322
+ $k =~s{^(SSL_)?}{SSL_};
1323
+ $GLOBAL_CONTEXT_ARGS->{$k} = $v;
1324
+ }
1325
+ }
1326
+
1327
+
1328
+ sub opened {
1329
+ my $self = shift;
1330
+ return IO::Handle::opened($self) && ${*$self}{'_SSL_opened'};
1331
+ }
1332
+
1333
+ sub opening {
1334
+ my $self = shift;
1335
+ return ${*$self}{'_SSL_opening'};
1336
+ }
1337
+
1338
+ sub want_read { shift->errstr == SSL_WANT_READ }
1339
+ sub want_write { shift->errstr == SSL_WANT_WRITE }
1340
+
1341
+
1342
+ #Redundant IO::Handle functionality
1343
+ sub getline { return(scalar shift->readline()) }
1344
+ sub getlines {
1345
+ return(shift->readline()) if wantarray();
1346
+ croak("Use of getlines() not allowed in scalar context");
1347
+ }
1348
+
1349
+ #Useless IO::Handle functionality
1350
+ sub truncate { croak("Use of truncate() not allowed with SSL") }
1351
+ sub stat { croak("Use of stat() not allowed with SSL" ) }
1352
+ sub setbuf { croak("Use of setbuf() not allowed with SSL" ) }
1353
+ sub setvbuf { croak("Use of setvbuf() not allowed with SSL" ) }
1354
+ sub fdopen { croak("Use of fdopen() not allowed with SSL" ) }
1355
+
1356
+ #Unsupported socket functionality
1357
+ sub ungetc { croak("Use of ungetc() not implemented in IO::Socket::SSL") }
1358
+ sub send { croak("Use of send() not implemented in IO::Socket::SSL; use print/printf/syswrite instead") }
1359
+ sub recv { croak("Use of recv() not implemented in IO::Socket::SSL; use read/sysread instead") }
1360
+
1361
+ package IO::Socket::SSL::SSL_HANDLE;
1362
+ use strict;
1363
+ use vars qw($HAVE_WEAKREF);
1364
+ use Errno 'EBADF';
1365
+
1366
+ BEGIN {
1367
+ local ($@, $SIG{__DIE__});
1368
+
1369
+ #Use Scalar::Util or WeakRef if possible:
1370
+ eval "use Scalar::Util qw(weaken isweak); 1" or
1371
+ eval "use WeakRef";
1372
+ $HAVE_WEAKREF = $@ ? 0 : 1;
1373
+ }
1374
+
1375
+
1376
+ sub TIEHANDLE {
1377
+ my ($class, $handle) = @_;
1378
+ weaken($handle) if $HAVE_WEAKREF;
1379
+ bless \$handle, $class;
1380
+ }
1381
+
1382
+ sub READ { ${shift()}->sysread(@_) }
1383
+ sub READLINE { ${shift()}->readline(@_) }
1384
+ sub GETC { ${shift()}->getc(@_) }
1385
+
1386
+ sub PRINT { ${shift()}->print(@_) }
1387
+ sub PRINTF { ${shift()}->printf(@_) }
1388
+ sub WRITE { ${shift()}->syswrite(@_) }
1389
+
1390
+ sub FILENO { ${shift()}->fileno(@_) }
1391
+
1392
+ sub TELL { $! = EBADF; return -1 }
1393
+ sub BINMODE { return 0 } # not perfect, but better than not implementing the method
1394
+
1395
+ sub CLOSE { #<---- Do not change this function!
1396
+ my $ssl = ${$_[0]};
1397
+ local @_;
1398
+ $ssl->close();
1399
+ }
1400
+
1401
+
1402
+ package IO::Socket::SSL::SSL_Context;
1403
+ use Carp;
1404
+ use strict;
1405
+
1406
+ my %CTX_CREATED_IN_THIS_THREAD;
1407
+ *DEBUG = *IO::Socket::SSL::DEBUG;
1408
+
1409
+ # should be better taken from Net::SSLeay, but they are not (yet) defined there
1410
+ use constant SSL_MODE_ENABLE_PARTIAL_WRITE => 1;
1411
+ use constant SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER => 2;
1412
+
1413
+
1414
+ # Note that the final object will actually be a reference to the scalar
1415
+ # (C-style pointer) returned by Net::SSLeay::CTX_*_new() so that
1416
+ # it can be blessed.
1417
+ sub new {
1418
+ my $class = shift;
1419
+ #DEBUG( "$class @_" );
1420
+ my $arg_hash = (ref($_[0]) eq 'HASH') ? $_[0] : {@_};
1421
+
1422
+ my $ctx_object = $arg_hash->{'SSL_reuse_ctx'};
1423
+ if ($ctx_object) {
1424
+ return $ctx_object if ($ctx_object->isa('IO::Socket::SSL::SSL_Context') and
1425
+ $ctx_object->{context});
1426
+
1427
+ # The following "double entendre" applies only if someone passed
1428
+ # in an IO::Socket::SSL object instead of an actual context.
1429
+ return $ctx_object if ($ctx_object = ${*$ctx_object}{'_SSL_ctx'});
1430
+ }
1431
+
1432
+ my $sub = UNIVERSAL::can('Net::SSLeay',
1433
+ $arg_hash->{SSL_version} =~m{^(?:ssl(v2)|ssl(v3)|(tlsv1))$}i ?
1434
+ "CTX_".lc($1||$2||$3)."_new" : "CTX_new" );
1435
+ return IO::Socket::SSL->error(
1436
+ "SSL Version $arg_hash->{SSL_version} not supported")
1437
+ if ! $sub;
1438
+ my $ctx = $sub->() or return IO::Socket::SSL->error(
1439
+ "SSL Context init failed");
1440
+
1441
+ Net::SSLeay::CTX_set_options($ctx, Net::SSLeay::OP_ALL());
1442
+
1443
+ # if we don't set session_id_context if client certicate is expected
1444
+ # client session caching will fail
1445
+ # if user does not provide explicit id just use the stringification
1446
+ # of the context
1447
+ if ( my $id = $arg_hash->{SSL_session_id_context}
1448
+ || ( $arg_hash->{SSL_verify_mode} & 0x02 ) && "$ctx" ) {
1449
+ Net::SSLeay::CTX_set_session_id_context($ctx,$id,length($id));
1450
+ }
1451
+
1452
+ # SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER makes syswrite return if at least one
1453
+ # buffer was written and not block for the rest
1454
+ # SSL_MODE_ENABLE_PARTIAL_WRITE can be necessary for non-blocking because we
1455
+ # cannot guarantee, that the location of the buffer stays constant
1456
+ Net::SSLeay::CTX_set_mode( $ctx,
1457
+ SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER|SSL_MODE_ENABLE_PARTIAL_WRITE);
1458
+
1459
+
1460
+ my $verify_mode = $arg_hash->{SSL_verify_mode};
1461
+ if ( $verify_mode != Net::SSLeay::VERIFY_NONE() and
1462
+ ( defined $arg_hash->{SSL_ca_file} || defined $arg_hash->{SSL_ca_path}) and
1463
+ ! Net::SSLeay::CTX_load_verify_locations(
1464
+ $ctx, $arg_hash->{SSL_ca_file} || '',$arg_hash->{SSL_ca_path} || '') ) {
1465
+ return IO::Socket::SSL->error("Invalid certificate authority locations");
1466
+ }
1467
+
1468
+ if ($arg_hash->{'SSL_check_crl'}) {
1469
+ if (Net::SSLeay::OPENSSL_VERSION_NUMBER() >= 0x0090702f) {
1470
+ Net::SSLeay::X509_STORE_set_flags(
1471
+ Net::SSLeay::CTX_get_cert_store($ctx),
1472
+ Net::SSLeay::X509_V_FLAG_CRL_CHECK()
1473
+ );
1474
+ if ($arg_hash->{'SSL_crl_file'}) {
1475
+ my $bio = Net::SSLeay::BIO_new_file($arg_hash->{'SSL_crl_file'}, 'r');
1476
+ my $crl = Net::SSLeay::PEM_read_bio_X509_CRL($bio);
1477
+ if ( $crl ) {
1478
+ Net::SSLeay::X509_STORE_add_crl(Net::SSLeay::CTX_get_cert_store($ctx), $crl);
1479
+ } else {
1480
+ return IO::Socket::SSL->error("Invalid certificate revocation list");
1481
+ }
1482
+ }
1483
+ } else {
1484
+ return IO::Socket::SSL->error("CRL not supported for OpenSSL < v0.9.7b");
1485
+ }
1486
+ }
1487
+
1488
+ if ($arg_hash->{'SSL_server'} || $arg_hash->{'SSL_use_cert'}) {
1489
+ my $filetype = Net::SSLeay::FILETYPE_PEM();
1490
+
1491
+ if ($arg_hash->{'SSL_passwd_cb'}) {
1492
+ Net::SSLeay::CTX_set_default_passwd_cb($ctx, $arg_hash->{'SSL_passwd_cb'});
1493
+ }
1494
+
1495
+ if ( my $pkey= $arg_hash->{SSL_key} ) {
1496
+ # binary, e.g. EVP_PKEY*
1497
+ Net::SSLeay::CTX_use_PrivateKey($ctx, $pkey)
1498
+ || return IO::Socket::SSL->error("Failed to use Private Key");
1499
+ } elsif ( my $f = $arg_hash->{SSL_key_file} ) {
1500
+ Net::SSLeay::CTX_use_PrivateKey_file($ctx, $f, $filetype)
1501
+ || return IO::Socket::SSL->error("Failed to open Private Key");
1502
+ }
1503
+
1504
+ if ( my $x509 = $arg_hash->{SSL_cert} ) {
1505
+ # binary, e.g. X509*
1506
+ # we habe either a single certificate or a list with
1507
+ # a chain of certificates
1508
+ my @x509 = ref($x509) eq 'ARRAY' ? @$x509: ($x509);
1509
+ my $cert = shift @x509;
1510
+ Net::SSLeay::CTX_use_certificate( $ctx,$cert )
1511
+ || return IO::Socket::SSL->error("Failed to use Certificate");
1512
+ foreach my $ca (@x509) {
1513
+ Net::SSLeay::CTX_add_extra_chain_cert( $ctx,$ca )
1514
+ || return IO::Socket::SSL->error("Failed to use Certificate");
1515
+ }
1516
+ } elsif ( my $f = $arg_hash->{SSL_cert_file} ) {
1517
+ Net::SSLeay::CTX_use_certificate_chain_file($ctx, $f)
1518
+ || return IO::Socket::SSL->error("Failed to open Certificate");
1519
+ }
1520
+
1521
+ if ( my $dh = $arg_hash->{SSL_dh} ) {
1522
+ # binary, e.g. DH*
1523
+ Net::SSLeay::CTX_set_tmp_dh( $ctx,$dh )
1524
+ || return IO::Socket::SSL->error( "Failed to set DH from SSL_dh" );
1525
+ } elsif ( my $f = $arg_hash->{SSL_dh_file} ) {
1526
+ my $bio = Net::SSLeay::BIO_new_file( $f,'r' )
1527
+ || return IO::Socket::SSL->error( "Failed to open DH file $f" );
1528
+ my $dh = Net::SSLeay::PEM_read_bio_DHparams($bio);
1529
+ Net::SSLeay::BIO_free($bio);
1530
+ $dh || return IO::Socket::SSL->error( "Failed to read PEM for DH from $f - wrong format?" );
1531
+ my $rv = Net::SSLeay::CTX_set_tmp_dh( $ctx,$dh );
1532
+ Net::SSLeay::DH_free( $dh );
1533
+ $rv || return IO::Socket::SSL->error( "Failed to set DH from $f" );
1534
+ }
1535
+ }
1536
+
1537
+ my $verify_cb = $arg_hash->{SSL_verify_callback};
1538
+ my $verify_callback = $verify_cb && sub {
1539
+ my ($ok, $ctx_store) = @_;
1540
+ my ($certname,$cert,$error);
1541
+ if ($ctx_store) {
1542
+ $cert = Net::SSLeay::X509_STORE_CTX_get_current_cert($ctx_store);
1543
+ $error = Net::SSLeay::X509_STORE_CTX_get_error($ctx_store);
1544
+ $certname = Net::SSLeay::X509_NAME_oneline(Net::SSLeay::X509_get_issuer_name($cert)).
1545
+ Net::SSLeay::X509_NAME_oneline(Net::SSLeay::X509_get_subject_name($cert));
1546
+ $error &&= Net::SSLeay::ERR_error_string($error);
1547
+ }
1548
+ DEBUG(3, "ok=$ok cert=$cert" );
1549
+ return $verify_cb->($ok,$ctx_store,$certname,$error,$cert);
1550
+ };
1551
+
1552
+ Net::SSLeay::CTX_set_verify($ctx, $verify_mode, $verify_callback);
1553
+
1554
+ if ( my $cb = $arg_hash->{SSL_create_ctx_callback} ) {
1555
+ $cb->($ctx);
1556
+ }
1557
+
1558
+ $ctx_object = { context => $ctx };
1559
+ $ctx_object->{has_verifycb} = 1 if $verify_callback;
1560
+ DEBUG(3, "new ctx $ctx" );
1561
+ $CTX_CREATED_IN_THIS_THREAD{$ctx} = 1;
1562
+
1563
+ if ( my $cache = $arg_hash->{SSL_session_cache} ) {
1564
+ # use predefined cache
1565
+ $ctx_object->{session_cache} = $cache
1566
+ } elsif ( my $size = $arg_hash->{SSL_session_cache_size}) {
1567
+ return IO::Socket::SSL->error("Session caches not supported for Net::SSLeay < v1.26")
1568
+ if $Net::SSLeay::VERSION < 1.26;
1569
+ $ctx_object->{session_cache} = IO::Socket::SSL::Session_Cache->new( $size );
1570
+ }
1571
+
1572
+
1573
+ return bless $ctx_object, $class;
1574
+ }
1575
+
1576
+
1577
+ sub session_cache {
1578
+ my $ctx = shift;
1579
+ my $cache = $ctx->{'session_cache'} || return;
1580
+ my ($addr,$port,$session) = @_;
1581
+ $port ||= $addr =~s{:(\w+)$}{} && $1; # host:port
1582
+ my $key = "$addr:$port";
1583
+ return defined($session)
1584
+ ? $cache->add_session($key, $session)
1585
+ : $cache->get_session($key);
1586
+ }
1587
+
1588
+ sub has_session_cache {
1589
+ return defined shift->{session_cache};
1590
+ }
1591
+
1592
+
1593
+ sub CLONE { %CTX_CREATED_IN_THIS_THREAD = (); }
1594
+ sub DESTROY {
1595
+ my $self = shift;
1596
+ if ( my $ctx = $self->{context} ) {
1597
+ DEBUG( 3,"free ctx $ctx open=".join( " ",keys %CTX_CREATED_IN_THIS_THREAD ));
1598
+ if ( %CTX_CREATED_IN_THIS_THREAD and
1599
+ delete $CTX_CREATED_IN_THIS_THREAD{$ctx} ) {
1600
+ # remove any verify callback for this context
1601
+ if ( $self->{has_verifycb}) {
1602
+ DEBUG( 3,"free ctx $ctx callback" );
1603
+ Net::SSLeay::CTX_set_verify($ctx, 0,undef);
1604
+ }
1605
+ DEBUG( 3,"OK free ctx $ctx" );
1606
+ Net::SSLeay::CTX_free($ctx);
1607
+ }
1608
+ }
1609
+ delete(@{$self}{'context','session_cache'});
1610
+ }
1611
+
1612
+ package IO::Socket::SSL::Session_Cache;
1613
+ use strict;
1614
+
1615
+ sub new {
1616
+ my ($class, $size) = @_;
1617
+ $size>0 or return;
1618
+ return bless { _maxsize => $size }, $class;
1619
+ }
1620
+
1621
+
1622
+ sub get_session {
1623
+ my ($self, $key) = @_;
1624
+ my $session = $self->{$key} || return;
1625
+ return $session->{session} if ($self->{'_head'} eq $session);
1626
+ $session->{prev}->{next} = $session->{next};
1627
+ $session->{next}->{prev} = $session->{prev};
1628
+ $session->{next} = $self->{'_head'};
1629
+ $session->{prev} = $self->{'_head'}->{prev};
1630
+ $self->{'_head'}->{prev} = $self->{'_head'}->{prev}->{next} = $session;
1631
+ $self->{'_head'} = $session;
1632
+ return $session->{session};
1633
+ }
1634
+
1635
+ sub add_session {
1636
+ my ($self, $key, $val) = @_;
1637
+ return if ($key eq '_maxsize' or $key eq '_head');
1638
+
1639
+ if ((keys %$self) > $self->{'_maxsize'} + 1) {
1640
+ my $last = $self->{'_head'}->{prev};
1641
+ Net::SSLeay::SESSION_free($last->{session});
1642
+ delete($self->{$last->{key}});
1643
+ $self->{'_head'}->{prev} = $self->{'_head'}->{prev}->{prev};
1644
+ delete($self->{'_head'}) if ($self->{'_maxsize'} == 1);
1645
+ }
1646
+
1647
+ my $session = $self->{$key} = { session => $val, key => $key };
1648
+
1649
+ if ($self->{'_head'}) {
1650
+ $session->{next} = $self->{'_head'};
1651
+ $session->{prev} = $self->{'_head'}->{prev};
1652
+ $self->{'_head'}->{prev}->{next} = $session;
1653
+ $self->{'_head'}->{prev} = $session;
1654
+ } else {
1655
+ $session->{next} = $session->{prev} = $session;
1656
+ }
1657
+ $self->{'_head'} = $session;
1658
+ return $session;
1659
+ }
1660
+
1661
+ sub DESTROY {
1662
+ my $self = shift;
1663
+ delete(@{$self}{'_head','_maxsize'});
1664
+ foreach my $key (keys %$self) {
1665
+ Net::SSLeay::SESSION_free($self->{$key}->{session});
1666
+ }
1667
+ }
1668
+
1669
+
1670
+ 1;
1671
+
1672
+
1673
+ =head1 NAME
1674
+
1675
+ IO::Socket::SSL -- Nearly transparent SSL encapsulation for IO::Socket::INET.
1676
+
1677
+ =head1 SYNOPSIS
1678
+
1679
+ use strict;
1680
+ use IO::Socket::SSL;
1681
+
1682
+ my $client = IO::Socket::SSL->new("www.example.com:https")
1683
+ || warn "I encountered a problem: ".IO::Socket::SSL::errstr();
1684
+ $client->verify_hostname( 'www.example.com','http' )
1685
+ || die "hostname verification failed";
1686
+
1687
+ print $client "GET / HTTP/1.0\r\n\r\n";
1688
+ print <$client>;
1689
+
1690
+
1691
+ =head1 DESCRIPTION
1692
+
1693
+ This module is a true drop-in replacement for IO::Socket::INET that uses
1694
+ SSL to encrypt data before it is transferred to a remote server or
1695
+ client. IO::Socket::SSL supports all the extra features that one needs
1696
+ to write a full-featured SSL client or server application: multiple SSL contexts,
1697
+ cipher selection, certificate verification, and SSL version selection. As an
1698
+ extra bonus, it works perfectly with mod_perl.
1699
+
1700
+ If you have never used SSL before, you should read the appendix labelled 'Using SSL'
1701
+ before attempting to use this module.
1702
+
1703
+ If you have used this module before, read on, as versions 0.93 and above
1704
+ have several changes from the previous IO::Socket::SSL versions (especially
1705
+ see the note about return values).
1706
+
1707
+ If you are using non-blocking sockets read on, as version 0.98 added better
1708
+ support for non-blocking.
1709
+
1710
+ If you are trying to use it with threads see the BUGS section.
1711
+
1712
+ =head1 METHODS
1713
+
1714
+ IO::Socket::SSL inherits its methods from IO::Socket::INET, overriding them
1715
+ as necessary. If there is an SSL error, the method or operation will return an
1716
+ empty list (false in all contexts). The methods that have changed from the
1717
+ perspective of the user are re-documented here:
1718
+
1719
+ =over 4
1720
+
1721
+ =item B<new(...)>
1722
+
1723
+ Creates a new IO::Socket::SSL object. You may use all the friendly options
1724
+ that came bundled with IO::Socket::INET, plus (optionally) the ones that follow:
1725
+
1726
+ =over 2
1727
+
1728
+ =item SSL_hostname
1729
+
1730
+ This can be given to specifiy the hostname used for SNI, which is needed if you
1731
+ have multiple SSL hostnames on the same IP address. If not given it will try to
1732
+ determine hostname from PeerAddr, which will fail if only IP was given or if
1733
+ this argument is used within start_SSL.
1734
+
1735
+ If you want to disable SNI set this argument to ''.
1736
+
1737
+ Currently only supported for the client side and will be ignored for the server
1738
+ side.
1739
+
1740
+ =item SSL_version
1741
+
1742
+ Sets the version of the SSL protocol used to transmit data. The default is SSLv2/3,
1743
+ which auto-negotiates between SSLv2 and SSLv3. You may specify 'SSLv2', 'SSLv3', or
1744
+ 'TLSv1' (case-insensitive) if you do not want this behavior.
1745
+
1746
+ =item SSL_cipher_list
1747
+
1748
+ If this option is set the cipher list for the connection will be set to the
1749
+ given value, e.g. something like 'ALL:!LOW:!EXP:!ADH'. Look into the OpenSSL
1750
+ documentation (L<http://www.openssl.org/docs/apps/ciphers.html#CIPHER_STRINGS>)
1751
+ for more details.
1752
+ If this option is not used the openssl builtin default is used which is suitable
1753
+ for most cases.
1754
+
1755
+ =item SSL_use_cert
1756
+
1757
+ If this is set, it forces IO::Socket::SSL to use a certificate and key, even if
1758
+ you are setting up an SSL client. If this is set to 0 (the default), then you will
1759
+ only need a certificate and key if you are setting up a server.
1760
+
1761
+ SSL_use_cert will implicitly be set if SSL_server is set.
1762
+ For convinience it is also set if it was not given but a cert was given for use
1763
+ (SSL_cert_file or similar).
1764
+
1765
+ =item SSL_server
1766
+
1767
+ Use this, if the socket should be used as a server.
1768
+ If this is not explicitly set it is assumed, if Listen with given when creating
1769
+ the socket.
1770
+
1771
+ =item SSL_key_file
1772
+
1773
+ If your RSA private key is not in default place (F<certs/server-key.pem> for servers,
1774
+ F<certs/client-key.pem> for clients), then this is the option that you would use to
1775
+ specify a different location. Keys should be PEM formatted, and if they are
1776
+ encrypted, you will be prompted to enter a password before the socket is formed
1777
+ (unless you specified the SSL_passwd_cb option).
1778
+
1779
+ =item SSL_key
1780
+
1781
+ This is an EVP_PKEY* and can be used instead of SSL_key_file.
1782
+ Useful if you don't have your key in a file but create it dynamically or get it from
1783
+ a string (see openssl PEM_read_bio_PrivateKey etc for getting a EVP_PKEY* from
1784
+ a string).
1785
+
1786
+ =item SSL_cert_file
1787
+
1788
+ If your SSL certificate is not in the default place (F<certs/server-cert.pem> for servers,
1789
+ F<certs/client-cert.pem> for clients), then you should use this option to specify the
1790
+ location of your certificate. Note that a key and certificate are only required for an
1791
+ SSL server, so you do not need to bother with these trifling options should you be
1792
+ setting up an unauthenticated client.
1793
+
1794
+ =item SSL_cert
1795
+
1796
+ This is an X509* or an array of X509*.
1797
+ The first X509* is the internal representation of the certificate while the following
1798
+ ones are extra certificates. Useful if you create your certificate dynamically (like
1799
+ in a SSL intercepting proxy) or get it from a string (see openssl PEM_read_bio_X509 etc
1800
+ for getting a X509* from a string).
1801
+
1802
+ =item SSL_dh_file
1803
+
1804
+ If you want Diffie-Hellman key exchange you need to supply a suitable file here
1805
+ or use the SSL_dh parameter. See dhparam command in openssl for more information.
1806
+
1807
+ =item SSL_dh
1808
+
1809
+ Like SSL_dh_file, but instead of giving a file you use a preloaded or generated DH*.
1810
+
1811
+ =item SSL_passwd_cb
1812
+
1813
+ If your private key is encrypted, you might not want the default password prompt from
1814
+ Net::SSLeay. This option takes a reference to a subroutine that should return the
1815
+ password required to decrypt your private key.
1816
+
1817
+ =item SSL_ca_file
1818
+
1819
+ If you want to verify that the peer certificate has been signed by a reputable
1820
+ certificate authority, then you should use this option to locate the file
1821
+ containing the certificateZ<>(s) of the reputable certificate authorities if it is
1822
+ not already in the file F<certs/my-ca.pem>.
1823
+ If you definitly want no SSL_ca_file used you should set it to undef.
1824
+
1825
+ =item SSL_ca_path
1826
+
1827
+ If you are unusually friendly with the OpenSSL documentation, you might have set
1828
+ yourself up a directory containing several trusted certificates as separate files
1829
+ as well as an index of the certificates. If you want to use that directory for
1830
+ validation purposes, and that directory is not F<ca/>, then use this option to
1831
+ point IO::Socket::SSL to the right place to look.
1832
+ If you definitly want no SSL_ca_path used you should set it to undef.
1833
+
1834
+ =item SSL_verify_mode
1835
+
1836
+ This option sets the verification mode for the peer certificate. The default
1837
+ (0x00) does no authentication. You may combine 0x01 (verify peer), 0x02 (fail
1838
+ verification if no peer certificate exists; ignored for clients), and 0x04
1839
+ (verify client once) to change the default.
1840
+
1841
+ See OpenSSL man page for SSL_CTX_set_verify for more information.
1842
+
1843
+ =item SSL_verify_callback
1844
+
1845
+ If you want to verify certificates yourself, you can pass a sub reference along
1846
+ with this parameter to do so. When the callback is called, it will be passed:
1847
+
1848
+ =over 4
1849
+
1850
+ =item 1.
1851
+ a true/false value that indicates what OpenSSL thinks of the certificate,
1852
+
1853
+ =item 2.
1854
+ a C-style memory address of the certificate store,
1855
+
1856
+ =item 3.
1857
+ a string containing the certificate's issuer attributes and owner attributes, and
1858
+
1859
+ =item 4.
1860
+ a string containing any errors encountered (0 if no errors).
1861
+
1862
+ =item 5.
1863
+ a C-style memory address of the peer's own certificate (convertible to
1864
+ PEM form with Net::SSLeay::PEM_get_string_X509()).
1865
+
1866
+ =back
1867
+
1868
+ The function should return 1 or 0, depending on whether it thinks the certificate
1869
+ is valid or invalid. The default is to let OpenSSL do all of the busy work.
1870
+
1871
+ The callback will be called for each element in the certificate chain.
1872
+
1873
+ See the OpenSSL documentation for SSL_CTX_set_verify for more information.
1874
+
1875
+ =item SSL_verifycn_scheme
1876
+
1877
+ Set the scheme used to automatically verify the hostname of the peer.
1878
+ See the information about the verification schemes in B<verify_hostname>.
1879
+ The default is undef, e.g. to not automatically verify the hostname.
1880
+
1881
+ =item SSL_verifycn_name
1882
+
1883
+ Set the name which is used in verification of hostname. If SSL_verifycn_scheme
1884
+ is set and no SSL_verifycn_name is given it will try to use the PeerHost and
1885
+ PeerAddr settings and fail if no name caan be determined.
1886
+
1887
+ Using PeerHost or PeerAddr works only if you create the connection directly
1888
+ with C<< IO::Socket::SSL->new >>, if an IO::Socket::INET object is upgraded
1889
+ with B<start_SSL> the name has to be given in B<SSL_verifycn_name>.
1890
+
1891
+ =item SSL_check_crl
1892
+
1893
+ If you want to verify that the peer certificate has not been revoked
1894
+ by the signing authority, set this value to true. OpenSSL will search
1895
+ for the CRL in your SSL_ca_path, or use the file specified by
1896
+ SSL_crl_file. See the Net::SSLeay documentation for more details.
1897
+ Note that this functionality appears to be broken with OpenSSL <
1898
+ v0.9.7b, so its use with lower versions will result in an error.
1899
+
1900
+ =item SSL_crl_file
1901
+
1902
+ If you want to specify the CRL file to be used, set this value to the
1903
+ pathname to be used. This must be used in addition to setting
1904
+ SSL_check_crl.
1905
+
1906
+ =item SSL_reuse_ctx
1907
+
1908
+ If you have already set the above options (SSL_version through SSL_check_crl;
1909
+ this does not include SSL_cipher_list yet) for a previous instance of
1910
+ IO::Socket::SSL, then you can reuse the SSL context of that instance by passing
1911
+ it as the value for the SSL_reuse_ctx parameter. You may also create a
1912
+ new instance of the IO::Socket::SSL::SSL_Context class, using any context options
1913
+ that you desire without specifying connection options, and pass that here instead.
1914
+
1915
+ If you use this option, all other context-related options that you pass
1916
+ in the same call to new() will be ignored unless the context supplied was invalid.
1917
+ Note that, contrary to versions of IO::Socket::SSL below v0.90, a global SSL context
1918
+ will not be implicitly used unless you use the set_default_context() function.
1919
+
1920
+ =item SSL_create_ctx_callback
1921
+
1922
+ With this callback you can make individual settings to the context after it
1923
+ got created and the default setup was done.
1924
+ The callback will be called with the CTX object from Net::SSLeay as the single
1925
+ argument.
1926
+
1927
+ Example for limiting the server session cache size:
1928
+
1929
+ SSL_create_ctx_callback => sub {
1930
+ my $ctx = shift;
1931
+ Net::SSLeay::CTX_sess_set_cache_size($ctx,128);
1932
+ }
1933
+
1934
+ =item SSL_session_cache_size
1935
+
1936
+ If you make repeated connections to the same host/port and the SSL renegotiation time
1937
+ is an issue, you can turn on client-side session caching with this option by specifying a
1938
+ positive cache size. For successive connections, pass the SSL_reuse_ctx option to
1939
+ the new() calls (or use set_default_context()) to make use of the cached sessions.
1940
+ The session cache size refers to the number of unique host/port pairs that can be
1941
+ stored at one time; the oldest sessions in the cache will be removed if new ones are
1942
+ added.
1943
+
1944
+ This option does not effect the session cache a server has for it's clients, e.g. it
1945
+ does not affect SSL objects with SSL_server set.
1946
+
1947
+ =item SSL_session_cache
1948
+
1949
+ Specifies session cache object which should be used instead of creating a new.
1950
+ Overrules SSL_session_cache_size.
1951
+ This option is useful if you want to reuse the cache, but not the rest of
1952
+ the context.
1953
+
1954
+ A session cache object can be created using
1955
+ C<< IO::Socket::SSL::Session_Cache->new( cachesize ) >>.
1956
+
1957
+ Use set_default_session_cache() to set a global cache object.
1958
+
1959
+ =item SSL_session_id_context
1960
+
1961
+ This gives an id for the servers session cache. It's necessary if you want
1962
+ clients to connect with a client certificate. If not given but SSL_verify_mode
1963
+ specifies the need for client certificate a context unique id will be picked.
1964
+
1965
+ =item SSL_error_trap
1966
+
1967
+ When using the accept() or connect() methods, it may be the case that the
1968
+ actual socket connection works but the SSL negotiation fails, as in the case of
1969
+ an HTTP client connecting to an HTTPS server. Passing a subroutine ref attached
1970
+ to this parameter allows you to gain control of the orphaned socket instead of having it
1971
+ be closed forcibly. The subroutine, if called, will be passed two parameters:
1972
+ a reference to the socket on which the SSL negotiation failed and and the full
1973
+ text of the error message.
1974
+
1975
+ =back
1976
+
1977
+ =item B<close(...)>
1978
+
1979
+ There are a number of nasty traps that lie in wait if you are not careful about using
1980
+ close(). The first of these will bite you if you have been using shutdown() on your
1981
+ sockets. Since the SSL protocol mandates that a SSL "close notify" message be
1982
+ sent before the socket is closed, a shutdown() that closes the socket's write channel
1983
+ will cause the close() call to hang. For a similar reason, if you try to close a
1984
+ copy of a socket (as in a forking server) you will affect the original socket as well.
1985
+ To get around these problems, call close with an object-oriented syntax
1986
+ (e.g. $socket->close(SSL_no_shutdown => 1))
1987
+ and one or more of the following parameters:
1988
+
1989
+ =over 2
1990
+
1991
+ =item SSL_no_shutdown
1992
+
1993
+ If set to a true value, this option will make close() not use the SSL_shutdown() call
1994
+ on the socket in question so that the close operation can complete without problems
1995
+ if you have used shutdown() or are working on a copy of a socket.
1996
+
1997
+ =item SSL_fast_shutdown
1998
+
1999
+ If set to true only a unidirectional shutdown will be done, e.g. only the
2000
+ close_notify (see SSL_shutdown(3)) will be called. Otherwise a bidrectional
2001
+ shutdown will be done. If used within close() it defaults to true, if used
2002
+ within stop_SSL() it defaults to false.
2003
+
2004
+ =item SSL_ctx_free
2005
+
2006
+ If you want to make sure that the SSL context of the socket is destroyed when
2007
+ you close it, set this option to a true value.
2008
+
2009
+ =back
2010
+
2011
+ =item B<peek(...)>
2012
+
2013
+ This function has exactly the same syntax as sysread(), and performs nearly the same
2014
+ task (reading data from the socket) but will not advance the read position so
2015
+ that successive calls to peek() with the same arguments will return the same results.
2016
+ This function requires OpenSSL 0.9.6a or later to work.
2017
+
2018
+
2019
+ =item B<pending()>
2020
+
2021
+ This function will let you know how many bytes of data are immediately ready for reading
2022
+ from the socket. This is especially handy if you are doing reads on a blocking socket
2023
+ or just want to know if new data has been sent over the socket.
2024
+
2025
+
2026
+ =item B<get_cipher()>
2027
+
2028
+ Returns the string form of the cipher that the IO::Socket::SSL object is using.
2029
+
2030
+ =item B<dump_peer_certificate()>
2031
+
2032
+ Returns a parsable string with select fields from the peer SSL certificate. This
2033
+ method directly returns the result of the dump_peer_certificate() method of Net::SSLeay.
2034
+
2035
+ =item B<peer_certificate($field)>
2036
+
2037
+ If a peer certificate exists, this function can retrieve values from it.
2038
+ If no field is given the internal representation of certificate from Net::SSLeay is
2039
+ returned.
2040
+ The following fields can be queried:
2041
+
2042
+ =over 8
2043
+
2044
+ =item authority (alias issuer)
2045
+
2046
+ The certificate authority which signed the certificate.
2047
+
2048
+ =item owner (alias subject)
2049
+
2050
+ The owner of the certificate.
2051
+
2052
+ =item commonName (alias cn) - only for Net::SSLeay version >=1.30
2053
+
2054
+ The common name, usually the server name for SSL certificates.
2055
+
2056
+ =item subjectAltNames - only for Net::SSLeay version >=1.33
2057
+
2058
+ Alternative names for the subject, usually different names for the same
2059
+ server, like example.org, example.com, *.example.com.
2060
+
2061
+ It returns a list of (typ,value) with typ GEN_DNS, GEN_IPADD etc (these
2062
+ constants are exported from IO::Socket::SSL).
2063
+ See Net::SSLeay::X509_get_subjectAltNames.
2064
+
2065
+ =back
2066
+
2067
+ =item B<verify_hostname($hostname,$scheme)>
2068
+
2069
+ This verifies the given hostname against the peer certificate using the
2070
+ given scheme. Hostname is usually what you specify within the PeerAddr.
2071
+
2072
+ Verification of hostname against a certificate is different between various
2073
+ applications and RFCs. Some scheme allow wildcards for hostnames, some only
2074
+ in subjectAltNames, and even their different wildcard schemes are possible.
2075
+
2076
+ To ease the verification the following schemes are predefined:
2077
+
2078
+ =over 8
2079
+
2080
+ =item ldap (rfc4513), pop3,imap,acap (rfc2995), nntp (rfc4642)
2081
+
2082
+ Simple wildcards in subjectAltNames are possible, e.g. *.example.org matches
2083
+ www.example.org but not lala.www.example.org. If nothing from subjectAltNames
2084
+ match it checks against the common name, but there are no wildcards allowed.
2085
+
2086
+ =item http (rfc2818), alias is www
2087
+
2088
+ Extended wildcards in subjectAltNames and common name are possible, e.g.
2089
+ *.example.org or even www*.example.org. The common
2090
+ name will be only checked if no names are given in subjectAltNames.
2091
+
2092
+ =item smtp (rfc3207)
2093
+
2094
+ This RFC doesn't say much useful about the verification so it just assumes
2095
+ that subjectAltNames are possible, but no wildcards are possible anywhere.
2096
+
2097
+ =back
2098
+
2099
+ The scheme can be given either by specifying the name for one of the above predefined
2100
+ schemes, by using a callback (see below) or by using a hash which can have the
2101
+ following keys and values:
2102
+
2103
+ =over 8
2104
+
2105
+ =item check_cn: 0|'always'|'when_only'
2106
+
2107
+ Determines if the common name gets checked. If 'always' it will always be checked
2108
+ (like in ldap), if 'when_only' it will only be checked if no names are given in
2109
+ subjectAltNames (like in http), for any other values the common name will not be checked.
2110
+
2111
+ =item wildcards_in_alt: 0|'leftmost'|'anywhere'
2112
+
2113
+ Determines if and where wildcards in subjectAltNames are possible. If 'leftmost'
2114
+ only cases like *.example.org will be possible (like in ldap), for 'anywhere'
2115
+ www*.example.org is possible too (like http), dangerous things like but www.*.org
2116
+ or even '*' will not be allowed.
2117
+
2118
+ =item wildcards_in_cn: 0|'leftmost'|'anywhere'
2119
+
2120
+ Similar to wildcards_in_alt, but checks the common name. There is no predefined
2121
+ scheme which allows wildcards in common names.
2122
+
2123
+ =back
2124
+
2125
+ If you give a subroutine for verification it will be called with the arguments
2126
+ ($hostname,$commonName,@subjectAltNames), where hostname is the name given for
2127
+ verification, commonName is the result from peer_certificate('cn') and
2128
+ subjectAltNames is the result from peer_certificate('subjectAltNames').
2129
+
2130
+ =item B<errstr()>
2131
+
2132
+ Returns the last error (in string form) that occurred. If you do not have a real
2133
+ object to perform this method on, call IO::Socket::SSL::errstr() instead.
2134
+
2135
+ For read and write errors on non-blocking sockets, this method may include the string
2136
+ C<SSL wants a read first!> or C<SSL wants a write first!> meaning that the other side
2137
+ is expecting to read from or write to the socket and wants to be satisfied before you
2138
+ get to do anything. But with version 0.98 you are better comparing the global exported
2139
+ variable $SSL_ERROR against the exported symbols SSL_WANT_READ and SSL_WANT_WRITE.
2140
+
2141
+ =item B<opened()>
2142
+
2143
+ This returns false if the socket could not be opened, 1 if the socket could be opened
2144
+ and the SSL handshake was successful done and -1 if the underlying IO::Handle is open,
2145
+ but the SSL handshake failed.
2146
+
2147
+ =item B<< IO::Socket::SSL->start_SSL($socket, ... ) >>
2148
+
2149
+ This will convert a glob reference or a socket that you provide to an IO::Socket::SSL
2150
+ object. You may also pass parameters to specify context or connection options as with
2151
+ a call to new(). If you are using this function on an accept()ed socket, you must
2152
+ set the parameter "SSL_server" to 1, i.e. IO::Socket::SSL->start_SSL($socket, SSL_server => 1).
2153
+ If you have a class that inherits from IO::Socket::SSL and you want the $socket to be blessed
2154
+ into your own class instead, use MyClass->start_SSL($socket) to achieve the desired effect.
2155
+
2156
+ Note that if start_SSL() fails in SSL negotiation, $socket will remain blessed in its
2157
+ original class. For non-blocking sockets you better just upgrade the socket to
2158
+ IO::Socket::SSL and call accept_SSL or connect_SSL and the upgraded object. To
2159
+ just upgrade the socket set B<SSL_startHandshake> explicitly to 0. If you call start_SSL
2160
+ w/o this parameter it will revert to blocking behavior for accept_SSL and connect_SSL.
2161
+
2162
+ If given the parameter "Timeout" it will stop if after the timeout no SSL connection
2163
+ was established. This parameter is only used for blocking sockets, if it is not given the
2164
+ default Timeout from the underlying IO::Socket will be used.
2165
+
2166
+ =item B<stop_SSL(...)>
2167
+
2168
+ This is the opposite of start_SSL(), e.g. it will shutdown the SSL connection
2169
+ and return to the class before start_SSL(). It gets the same arguments as close(),
2170
+ in fact close() calls stop_SSL() (but without downgrading the class).
2171
+
2172
+ Will return true if it suceeded and undef if failed. This might be the case for
2173
+ non-blocking sockets. In this case $! is set to EAGAIN and the ssl error to
2174
+ SSL_WANT_READ or SSL_WANT_WRITE. In this case the call should be retried again with
2175
+ the same arguments once the socket is ready is until it succeeds.
2176
+
2177
+ =item B<< IO::Socket::SSL->new_from_fd($fd, ...) >>
2178
+
2179
+ This will convert a socket identified via a file descriptor into an SSL socket.
2180
+ Note that the argument list does not include a "MODE" argument; if you supply one,
2181
+ it will be thoughtfully ignored (for compatibility with IO::Socket::INET). Instead,
2182
+ a mode of '+<' is assumed, and the file descriptor passed must be able to handle such
2183
+ I/O because the initial SSL handshake requires bidirectional communication.
2184
+
2185
+ =item B<IO::Socket::SSL::set_default_context(...)>
2186
+
2187
+ You may use this to make IO::Socket::SSL automatically re-use a given context (unless
2188
+ specifically overridden in a call to new()). It accepts one argument, which should
2189
+ be either an IO::Socket::SSL object or an IO::Socket::SSL::SSL_Context object. See
2190
+ the SSL_reuse_ctx option of new() for more details. Note that this sets the default
2191
+ context globally, so use with caution (esp. in mod_perl scripts).
2192
+
2193
+ =item B<IO::Socket::SSL::set_default_session_cache(...)>
2194
+
2195
+ You may use this to make IO::Socket::SSL automatically re-use a given session cache
2196
+ (unless specifically overridden in a call to new()). It accepts one argument, which should
2197
+ be an IO::Socket::SSL::Session_Cache object or similar (e.g something which implements
2198
+ get_session and add_session like IO::Socket::SSL::Session_Cache does).
2199
+ See the SSL_session_cache option of new() for more details. Note that this sets the default
2200
+ cache globally, so use with caution.
2201
+
2202
+ =item B<IO::Socket::SSL::set_ctx_defaults(%args)>
2203
+
2204
+ With this function one can set defaults for all SSL_* parameter used for creation of
2205
+ the context, like the SSL_verify* parameter.
2206
+
2207
+ =over 8
2208
+
2209
+ =item mode - set default SSL_verify_mode
2210
+
2211
+ =item callback - set default SSL_verify_callback
2212
+
2213
+ =item scheme - set default SSL_verifycn_scheme
2214
+
2215
+ =item name - set default SSL_verifycn_name
2216
+
2217
+ If not given and scheme is hash reference with key callback it will be set to 'unknown'
2218
+
2219
+ =back
2220
+
2221
+ =back
2222
+
2223
+ The following methods are unsupported (not to mention futile!) and IO::Socket::SSL
2224
+ will emit a large CROAK() if you are silly enough to use them:
2225
+
2226
+ =over 4
2227
+
2228
+ =item truncate
2229
+
2230
+ =item stat
2231
+
2232
+ =item ungetc
2233
+
2234
+ =item setbuf
2235
+
2236
+ =item setvbuf
2237
+
2238
+ =item fdopen
2239
+
2240
+ =item send/recv
2241
+
2242
+ Note that send() and recv() cannot be reliably trapped by a tied filehandle (such as
2243
+ that used by IO::Socket::SSL) and so may send unencrypted data over the socket. Object-oriented
2244
+ calls to these functions will fail, telling you to use the print/printf/syswrite
2245
+ and read/sysread families instead.
2246
+
2247
+ =back
2248
+
2249
+ =head1 IPv6
2250
+
2251
+ Support for IPv6 with IO::Socket::SSL is expected to work and basic testing is done.
2252
+ If IO::Socket::INET6 is available it will automatically use it instead of
2253
+ IO::Socket::INET4.
2254
+
2255
+ Please be aware of the associated problems: If you give a name as a host and the
2256
+ host resolves to both IPv6 and IPv4 it will try IPv6 first and if there is no IPv6
2257
+ connectivity it will fail.
2258
+
2259
+ To avoid these problems you can either force IPv4 by specifying and AF_INET as the
2260
+ Domain (this is per socket) or load IO::Socket::SSL with the option 'inet4'
2261
+ (This is a global setting, e.g. affects all IO::Socket::SSL objects in the program).
2262
+
2263
+ =head1 RETURN VALUES
2264
+
2265
+ A few changes have gone into IO::Socket::SSL v0.93 and later with respect to
2266
+ return values. The behavior on success remains unchanged, but for I<all> functions,
2267
+ the return value on error is now an empty list. Therefore, the return value will be
2268
+ false in all contexts, but those who have been using the return values as arguments
2269
+ to subroutines (like C<mysub(IO::Socket::SSL(...)->new, ...)>) may run into problems.
2270
+ The moral of the story: I<always> check the return values of these functions before
2271
+ using them in any way that you consider meaningful.
2272
+
2273
+
2274
+ =head1 DEBUGGING
2275
+
2276
+ If you are having problems using IO::Socket::SSL despite the fact that can recite backwards
2277
+ the section of this documentation labelled 'Using SSL', you should try enabling debugging. To
2278
+ specify the debug level, pass 'debug#' (where # is a number from 0 to 3) to IO::Socket::SSL
2279
+ when calling it.
2280
+ The debug level will also be propagated to Net::SSLeay::trace, see also L<Net::SSLeay>:
2281
+
2282
+ =over 4
2283
+
2284
+ =item use IO::Socket::SSL qw(debug0);
2285
+
2286
+ No debugging (default).
2287
+
2288
+ =item use IO::Socket::SSL qw(debug1);
2289
+
2290
+ Print out errors from IO::Socket::SSL and ciphers from Net::SSLeay.
2291
+
2292
+ =item use IO::Socket::SSL qw(debug2);
2293
+
2294
+ Print also information about call flow from IO::Socket::SSL and progress
2295
+ information from Net::SSLeay.
2296
+
2297
+ =item use IO::Socket::SSL qw(debug3);
2298
+
2299
+ Print also some data dumps from IO::Socket::SSL and from Net::SSLeay.
2300
+
2301
+ =back
2302
+
2303
+ =head1 EXAMPLES
2304
+
2305
+ See the 'example' directory.
2306
+
2307
+ =head1 BUGS
2308
+
2309
+ IO::Socket::SSL depends on Net::SSLeay. Up to version 1.43 of Net::SSLeay
2310
+ it was not thread safe, although it did probably work if you did not use
2311
+ SSL_verify_callback and SSL_password_cb.
2312
+
2313
+ IO::Socket::SSL does not work together with Storable::fd_retrieve/fd_store.
2314
+ See BUGS file for more information and how to work around the problem.
2315
+
2316
+ Non-blocking and timeouts (which are based on non-blocking) are not
2317
+ supported on Win32, because the underlying IO::Socket::INET does not support
2318
+ non-blocking on this platform.
2319
+
2320
+ If you have a server and it looks like you have a memory leak you might
2321
+ check the size of your session cache. Default for Net::SSLeay seems to be
2322
+ 20480, see the example for SSL_create_ctx_callback for how to limit it.
2323
+
2324
+ =head1 LIMITATIONS
2325
+
2326
+ IO::Socket::SSL uses Net::SSLeay as the shiny interface to OpenSSL, which is
2327
+ the shiny interface to the ugliness of SSL. As a result, you will need both Net::SSLeay
2328
+ and OpenSSL on your computer before using this module.
2329
+
2330
+ If you have Scalar::Util (standard with Perl 5.8.0 and above) or WeakRef, IO::Socket::SSL
2331
+ sockets will auto-close when they go out of scope, just like IO::Socket::INET sockets. If
2332
+ you do not have one of these modules, then IO::Socket::SSL sockets will stay open until the
2333
+ program ends or you explicitly close them. This is due to the fact that a circular reference
2334
+ is required to make IO::Socket::SSL sockets act simultaneously like objects and glob references.
2335
+
2336
+ =head1 DEPRECATIONS
2337
+
2338
+ The following functions are deprecated and are only retained for compatibility:
2339
+
2340
+ =over 2
2341
+
2342
+ =item context_init()
2343
+
2344
+ use the SSL_reuse_ctx option if you want to re-use a context
2345
+
2346
+
2347
+ =item socketToSSL() and socket_to_SSL()
2348
+
2349
+ use IO::Socket::SSL->start_SSL() instead
2350
+
2351
+ =item kill_socket()
2352
+
2353
+ use close() instead
2354
+
2355
+ =item get_peer_certificate()
2356
+
2357
+ use the peer_certificate() function instead.
2358
+ Used to return X509_Certificate with methods subject_name and issuer_name.
2359
+ Now simply returns $self which has these methods (although depreceated).
2360
+
2361
+ =item issuer_name()
2362
+
2363
+ use peer_certificate( 'issuer' ) instead
2364
+
2365
+ =item subject_name()
2366
+
2367
+ use peer_certificate( 'subject' ) instead
2368
+
2369
+ =back
2370
+
2371
+ The following classes have been removed:
2372
+
2373
+ =over 2
2374
+
2375
+ =item SSL_SSL
2376
+
2377
+ (not that you should have been directly accessing this anyway):
2378
+
2379
+ =item X509_Certificate
2380
+
2381
+ (but get_peer_certificate() will still Do The Right Thing)
2382
+
2383
+ =back
2384
+
2385
+ =head1 SEE ALSO
2386
+
2387
+ IO::Socket::INET, IO::Socket::INET6, Net::SSLeay.
2388
+
2389
+ =head1 AUTHORS
2390
+
2391
+ Steffen Ullrich, <steffen at genua.de> is the current maintainer.
2392
+
2393
+ Peter Behroozi, <behrooz at fas.harvard.edu> (Note the lack of an "i" at the end of "behrooz")
2394
+
2395
+ Marko Asplund, <marko.asplund at kronodoc.fi>, was the original author of IO::Socket::SSL.
2396
+
2397
+ Patches incorporated from various people, see file Changes.
2398
+
2399
+ =head1 COPYRIGHT
2400
+
2401
+ Working support for non-blocking was added by Steffen Ullrich.
2402
+
2403
+ The rewrite of this module is Copyright (C) 2002-2005 Peter Behroozi.
2404
+
2405
+ The original versions of this module are Copyright (C) 1999-2002 Marko Asplund.
2406
+
2407
+ This module is free software; you can redistribute it and/or
2408
+ modify it under the same terms as Perl itself.
2409
+
2410
+
2411
+ =head1 Appendix: Using SSL
2412
+
2413
+ If you are unfamiliar with the way OpenSSL works, good references may be found in
2414
+ both the book "Network Security with OpenSSL" (Oreilly & Assoc.) and the web site
2415
+ L<http://www.tldp.org/HOWTO/SSL-Certificates-HOWTO/>. Read on for a quick overview.
2416
+
2417
+ =head2 The Long of It (Detail)
2418
+
2419
+ The usual reason for using SSL is to keep your data safe. This means that not only
2420
+ do you have to encrypt the data while it is being transported over a network, but
2421
+ you also have to make sure that the right person gets the data. To accomplish this
2422
+ with SSL, you have to use certificates. A certificate closely resembles a
2423
+ Government-issued ID (at least in places where you can trust them). The ID contains some sort of
2424
+ identifying information such as a name and address, and is usually stamped with a seal
2425
+ of Government Approval. Theoretically, this means that you may trust the information on
2426
+ the card and do business with the owner of the card. The same ideas apply to SSL certificates,
2427
+ which have some identifying information and are "stamped" [most people refer to this as
2428
+ I<signing> instead] by someone (a Certificate Authority) who you trust will adequately
2429
+ verify the identifying information. In this case, because of some clever number theory,
2430
+ it is extremely difficult to falsify the stamping process. Another useful consequence
2431
+ of number theory is that the certificate is linked to the encryption process, so you may
2432
+ encrypt data (using information on the certificate) that only the certificate owner can
2433
+ decrypt.
2434
+
2435
+ What does this mean for you? It means that at least one person in the party has to
2436
+ have an ID to get drinks :-). Seriously, it means that one of the people communicating
2437
+ has to have a certificate to ensure that your data is safe. For client/server
2438
+ interactions, the server must B<always> have a certificate. If the server wants to
2439
+ verify that the client is safe, then the client must also have a personal certificate.
2440
+ To verify that a certificate is safe, one compares the stamped "seal" [commonly called
2441
+ an I<encrypted digest/hash/signature>] on the certificate with the official "seal" of
2442
+ the Certificate Authority to make sure that they are the same. To do this, you will
2443
+ need the [unfortunately named] certificate of the Certificate Authority. With all these
2444
+ in hand, you can set up a SSL connection and be reasonably confident that no-one is
2445
+ reading your data.
2446
+
2447
+ =head2 The Short of It (Summary)
2448
+
2449
+ For servers, you will need to generate a cryptographic private key and a certificate
2450
+ request. You will need to send the certificate request to a Certificate Authority to
2451
+ get a real certificate back, after which you can start serving people. For clients,
2452
+ you will not need anything unless the server wants validation, in which case you will
2453
+ also need a private key and a real certificate. For more information about how to
2454
+ get these, see L<http://www.modssl.org/docs/2.8/ssl_faq.html#ToC24>.
2455
+
2456
+ =cut