javonet-nodejs-sdk 2.5.15 → 2.5.17

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 (2047) hide show
  1. package/dist/core/delegatesCache/DelegatesCache.cjs +55 -0
  2. package/dist/core/handler/AbstractHandler.cjs +60 -0
  3. package/dist/core/handler/ArrayGetItemHandler.cjs +59 -0
  4. package/dist/core/handler/ArrayGetRankHandler.cjs +50 -0
  5. package/dist/core/handler/ArrayGetSizeHandler.cjs +50 -0
  6. package/dist/core/handler/ArrayHandler.cjs +41 -0
  7. package/dist/core/handler/ArraySetItemHandler.cjs +60 -0
  8. package/dist/core/handler/CastingHandler.cjs +34 -0
  9. package/dist/core/handler/ConvertTypeHandler.cjs +53 -0
  10. package/dist/core/handler/CreateClassInstanceHandler.cjs +60 -0
  11. package/dist/core/handler/DestructReferenceHandler.cjs +42 -0
  12. package/dist/core/handler/EnableNamespaceHandler.cjs +56 -0
  13. package/dist/core/handler/EnableTypeHandler.cjs +56 -0
  14. package/dist/core/handler/GetGlobalStaticFieldHandler.cjs +60 -0
  15. package/dist/core/handler/GetInstanceFieldHandler.cjs +59 -0
  16. package/dist/core/handler/GetInstanceMethodAsDelegateHandler.cjs +83 -0
  17. package/dist/core/handler/GetStaticFieldHandler.cjs +59 -0
  18. package/dist/core/handler/GetStaticMethodAsDelegateHandler.cjs +83 -0
  19. package/dist/core/handler/GetTypeHandler.cjs +87 -0
  20. package/dist/core/handler/Handler.cjs +136 -0
  21. package/dist/core/handler/InvokeDelegateHandler.cjs +53 -0
  22. package/dist/core/handler/InvokeGlobalFunctionHandler.cjs +60 -0
  23. package/dist/core/handler/InvokeInstanceMethodHandler.cjs +62 -0
  24. package/dist/core/handler/InvokeStaticMethodHandler.cjs +62 -0
  25. package/dist/core/handler/LoadLibraryHandler.cjs +68 -0
  26. package/dist/core/handler/PassDelegateHandler.cjs +162 -0
  27. package/dist/core/handler/ResolveReferenceHandler.cjs +41 -0
  28. package/dist/core/handler/SetGlobalStaticFieldHandler.cjs +61 -0
  29. package/dist/core/handler/SetInstanceFieldHandler.cjs +59 -0
  30. package/dist/core/handler/SetStaticFieldHandler.cjs +57 -0
  31. package/dist/core/handler/ValueHandler.cjs +37 -0
  32. package/dist/core/interpreter/Interpreter.cjs +159 -0
  33. package/dist/core/namespaceCache/NamespaceCache.cjs +58 -0
  34. package/dist/core/protocol/CommandDeserializer.cjs +188 -0
  35. package/dist/core/protocol/CommandSerializer.cjs +64 -0
  36. package/dist/core/protocol/TypeDeserializer.cjs +91 -0
  37. package/dist/core/protocol/TypeSerializer.cjs +153 -0
  38. package/dist/core/receiver/Receiver.cjs +63 -0
  39. package/dist/core/receiver/ReceiverNative.cjs +37 -0
  40. package/dist/core/referenceCache/ReferencesCache.cjs +65 -0
  41. package/dist/core/transmitter/Transmitter.cjs +42 -0
  42. package/dist/core/transmitter/TransmitterWebsocket.cjs +55 -0
  43. package/dist/core/transmitter/TransmitterWebsocketBrowser.cjs +59 -0
  44. package/dist/core/transmitter/TransmitterWrapper.cjs +75 -0
  45. package/dist/core/typeCache/TypeCache.cjs +58 -0
  46. package/dist/core/webSocketClient/WebSocketClient.cjs +150 -0
  47. package/dist/core/webSocketClient/WebSocketClientBrowser.cjs +153 -0
  48. package/dist/sdk/ConfigRuntimeFactory.cjs +198 -0
  49. package/dist/sdk/InvocationContext.cjs +463 -0
  50. package/dist/sdk/Javonet.cjs +150 -0
  51. package/dist/sdk/RuntimeContext.cjs +288 -0
  52. package/dist/sdk/RuntimeFactory.cjs +98 -0
  53. package/dist/sdk/tools/browser/ConfigSourceResolver.cjs +153 -0
  54. package/dist/sdk/tools/browser/SdkExceptionHelper.cjs +37 -0
  55. package/dist/sdk/tools/nodejs/JsonFileResolver.cjs +120 -0
  56. package/dist/sdk/tools/nodejs/SdkExceptionHelper.cjs +100 -0
  57. package/dist/types/core/delegatesCache/DelegatesCache.d.ts +21 -0
  58. package/dist/types/core/handler/AbstractHandler.d.ts +7 -0
  59. package/dist/types/core/handler/ArrayGetItemHandler.d.ts +5 -0
  60. package/dist/types/core/handler/ArrayGetRankHandler.d.ts +5 -0
  61. package/dist/types/core/handler/ArrayGetSizeHandler.d.ts +5 -0
  62. package/dist/types/core/handler/ArrayHandler.d.ts +4 -0
  63. package/dist/types/core/handler/ArraySetItemHandler.d.ts +5 -0
  64. package/dist/types/core/handler/CastingHandler.d.ts +3 -0
  65. package/dist/types/core/handler/ConvertTypeHandler.d.ts +22 -0
  66. package/dist/types/core/handler/CreateClassInstanceHandler.d.ts +5 -0
  67. package/dist/types/core/handler/DestructReferenceHandler.d.ts +4 -0
  68. package/dist/types/core/handler/EnableNamespaceHandler.d.ts +5 -0
  69. package/dist/types/core/handler/EnableTypeHandler.d.ts +5 -0
  70. package/dist/types/core/handler/GetGlobalStaticFieldHandler.d.ts +5 -0
  71. package/dist/types/core/handler/GetInstanceFieldHandler.d.ts +5 -0
  72. package/dist/types/core/handler/GetInstanceMethodAsDelegateHandler.d.ts +38 -0
  73. package/dist/types/core/handler/GetStaticFieldHandler.d.ts +5 -0
  74. package/dist/types/core/handler/GetStaticMethodAsDelegateHandler.d.ts +36 -0
  75. package/dist/types/core/handler/GetTypeHandler.d.ts +16 -0
  76. package/dist/types/core/handler/Handler.d.ts +27 -0
  77. package/dist/types/core/handler/InvokeDelegateHandler.d.ts +15 -0
  78. package/dist/types/core/handler/InvokeGlobalFunctionHandler.d.ts +5 -0
  79. package/dist/types/core/handler/InvokeInstanceMethodHandler.d.ts +5 -0
  80. package/dist/types/core/handler/InvokeStaticMethodHandler.d.ts +5 -0
  81. package/dist/types/core/handler/LoadLibraryHandler.d.ts +7 -0
  82. package/dist/types/core/handler/PassDelegateHandler.d.ts +104 -0
  83. package/dist/types/core/handler/ResolveReferenceHandler.d.ts +12 -0
  84. package/dist/types/core/handler/SetGlobalStaticFieldHandler.d.ts +4 -0
  85. package/dist/types/core/handler/SetInstanceFieldHandler.d.ts +5 -0
  86. package/dist/types/core/handler/SetStaticFieldHandler.d.ts +5 -0
  87. package/dist/types/core/handler/ValueHandler.d.ts +4 -0
  88. package/dist/types/core/interpreter/Interpreter.d.ts +27 -0
  89. package/dist/types/core/namespaceCache/NamespaceCache.d.ts +9 -0
  90. package/dist/types/core/protocol/CommandDeserializer.d.ts +25 -0
  91. package/dist/types/core/protocol/CommandSerializer.d.ts +4 -0
  92. package/dist/types/core/protocol/TypeDeserializer.d.ts +15 -0
  93. package/dist/types/core/protocol/TypeSerializer.d.ts +17 -0
  94. package/dist/types/core/receiver/Receiver.d.ts +14 -0
  95. package/dist/types/core/receiver/ReceiverNative.d.ts +4 -0
  96. package/dist/types/core/referenceCache/ReferencesCache.d.ts +24 -0
  97. package/dist/types/core/transmitter/Transmitter.d.ts +6 -0
  98. package/dist/types/core/transmitter/TransmitterWebsocket.d.ts +21 -0
  99. package/dist/types/core/transmitter/TransmitterWebsocketBrowser.d.ts +30 -0
  100. package/dist/types/core/transmitter/TransmitterWrapper.d.ts +11 -0
  101. package/dist/types/core/typeCache/TypeCache.d.ts +9 -0
  102. package/dist/types/core/webSocketClient/WebSocketClient.d.ts +50 -0
  103. package/dist/types/core/webSocketClient/WebSocketClientBrowser.d.ts +63 -0
  104. package/dist/types/sdk/ConfigRuntimeFactory.d.ts +73 -0
  105. package/dist/types/sdk/InvocationContext.d.ts +207 -0
  106. package/dist/types/sdk/Javonet.d.ts +63 -0
  107. package/dist/types/sdk/RuntimeContext.d.ts +103 -0
  108. package/dist/types/sdk/RuntimeFactory.d.ts +58 -0
  109. package/dist/types/sdk/tools/browser/ConfigSourceResolver.d.ts +46 -0
  110. package/dist/types/sdk/tools/browser/SdkExceptionHelper.d.ts +7 -0
  111. package/dist/types/sdk/tools/nodejs/JsonFileResolver.d.ts +13 -0
  112. package/dist/types/sdk/tools/nodejs/SdkExceptionHelper.d.ts +6 -0
  113. package/dist/types/utils/Command.d.ts +42 -0
  114. package/dist/types/utils/CommandType.d.ts +44 -0
  115. package/dist/types/utils/ConnectionType.d.ts +5 -0
  116. package/dist/types/utils/CreateRequire.browser.d.ts +1 -0
  117. package/dist/types/utils/CreateRequire.node.d.ts +2 -0
  118. package/dist/types/utils/CustomError.d.ts +3 -0
  119. package/dist/types/utils/ExceptionType.d.ts +10 -0
  120. package/dist/types/utils/Runtime.d.ts +24 -0
  121. package/dist/types/utils/RuntimeLogger.d.ts +5 -0
  122. package/dist/types/utils/RuntimeLoggerBrowser.d.ts +15 -0
  123. package/dist/types/utils/RuntimeName.d.ts +13 -0
  124. package/dist/types/utils/RuntimeNameHandler.d.ts +7 -0
  125. package/dist/types/utils/StringEncodingMode.d.ts +6 -0
  126. package/dist/types/utils/Type.d.ts +14 -0
  127. package/dist/types/utils/connectionData/IConnectionData.d.ts +5 -0
  128. package/dist/types/utils/connectionData/InMemoryConnectionData.d.ts +16 -0
  129. package/dist/types/utils/connectionData/WsConnectionData.d.ts +31 -0
  130. package/dist/types/utils/exception/ExceptionSerializer.d.ts +6 -0
  131. package/dist/types/utils/exception/ExceptionThrower.d.ts +4 -0
  132. package/dist/types/utils/guid/generateGuid.d.ts +1 -0
  133. package/dist/types/utils/nodejs/TypesConverter.d.ts +48 -0
  134. package/dist/types/utils/nodejs/connectionData/TcpConnectionData.d.ts +25 -0
  135. package/dist/types/utils/nodejs/uuid/REGEX.d.ts +1 -0
  136. package/dist/types/utils/nodejs/uuid/rng.d.ts +1 -0
  137. package/dist/types/utils/nodejs/uuid/stringify.d.ts +1 -0
  138. package/dist/types/utils/nodejs/uuid/v4.d.ts +1 -0
  139. package/dist/types/utils/nodejs/uuid/validate.d.ts +1 -0
  140. package/dist/utils/Command.cjs +87 -0
  141. package/dist/utils/CommandType.cjs +74 -0
  142. package/dist/utils/ConnectionType.cjs +35 -0
  143. package/dist/utils/CreateRequire.browser.cjs +30 -0
  144. package/dist/utils/CreateRequire.node.cjs +28 -0
  145. package/dist/utils/CustomError.cjs +33 -0
  146. package/dist/utils/ExceptionType.cjs +40 -0
  147. package/dist/utils/Runtime.cjs +109 -0
  148. package/dist/utils/RuntimeLogger.cjs +61 -0
  149. package/dist/utils/RuntimeLoggerBrowser.cjs +56 -0
  150. package/dist/utils/RuntimeName.cjs +43 -0
  151. package/dist/utils/RuntimeNameHandler.cjs +62 -0
  152. package/dist/utils/StringEncodingMode.cjs +36 -0
  153. package/dist/utils/Type.cjs +44 -0
  154. package/dist/utils/connectionData/IConnectionData.cjs +38 -0
  155. package/dist/utils/connectionData/InMemoryConnectionData.cjs +52 -0
  156. package/dist/utils/connectionData/WsConnectionData.cjs +61 -0
  157. package/dist/utils/exception/ExceptionSerializer.cjs +82 -0
  158. package/dist/utils/exception/ExceptionThrower.cjs +111 -0
  159. package/dist/utils/guid/generateGuid.cjs +34 -0
  160. package/dist/utils/nodejs/TypesConverter.cjs +102 -0
  161. package/dist/utils/nodejs/connectionData/TcpConnectionData.cjs +101 -0
  162. package/dist/utils/nodejs/uuid/REGEX.cjs +28 -0
  163. package/dist/utils/nodejs/uuid/rng.cjs +47 -0
  164. package/dist/utils/nodejs/uuid/stringify.cjs +39 -0
  165. package/dist/utils/nodejs/uuid/v4.cjs +43 -0
  166. package/dist/utils/nodejs/uuid/validate.cjs +31 -0
  167. package/lib/core/delegatesCache/DelegatesCache.js +37 -0
  168. package/lib/core/handler/AbstractHandler.js +2 -2
  169. package/lib/core/handler/ArrayGetItemHandler.js +2 -2
  170. package/lib/core/handler/ArrayGetRankHandler.js +2 -2
  171. package/lib/core/handler/ArrayGetSizeHandler.js +2 -2
  172. package/lib/core/handler/ArrayHandler.js +2 -2
  173. package/lib/core/handler/ArraySetItemHandler.js +2 -2
  174. package/lib/core/handler/CastingHandler.js +2 -2
  175. package/lib/core/handler/ConvertTypeHandler.js +3 -3
  176. package/lib/core/handler/CreateClassInstanceHandler.js +4 -2
  177. package/lib/core/handler/DestructReferenceHandler.js +3 -3
  178. package/lib/core/handler/EnableNamespaceHandler.js +3 -3
  179. package/lib/core/handler/EnableTypeHandler.js +3 -3
  180. package/lib/core/handler/GetGlobalStaticFieldHandler.js +2 -2
  181. package/lib/core/handler/GetInstanceFieldHandler.js +2 -2
  182. package/lib/core/handler/GetInstanceMethodAsDelegateHandler.js +2 -2
  183. package/lib/core/handler/GetStaticFieldHandler.js +3 -2
  184. package/lib/core/handler/GetStaticMethodAsDelegateHandler.js +2 -3
  185. package/lib/core/handler/GetTypeHandler.js +16 -7
  186. package/lib/core/handler/Handler.js +91 -60
  187. package/lib/core/handler/InvokeDelegateHandler.js +4 -4
  188. package/lib/core/handler/InvokeGlobalFunctionHandler.js +3 -5
  189. package/lib/core/handler/InvokeInstanceMethodHandler.js +2 -2
  190. package/lib/core/handler/InvokeStaticMethodHandler.js +2 -2
  191. package/lib/core/handler/LoadLibraryHandler.js +7 -4
  192. package/lib/core/handler/PassDelegateHandler.js +38 -24
  193. package/lib/core/handler/ResolveReferenceHandler.js +13 -3
  194. package/lib/core/handler/SetGlobalStaticFieldHandler.js +2 -2
  195. package/lib/core/handler/SetInstanceFieldHandler.js +2 -2
  196. package/lib/core/handler/SetStaticFieldHandler.js +2 -2
  197. package/lib/core/handler/ValueHandler.js +2 -2
  198. package/lib/core/interpreter/Interpreter.js +164 -0
  199. package/lib/core/namespaceCache/NamespaceCache.js +1 -1
  200. package/lib/core/protocol/CommandDeserializer.js +180 -0
  201. package/lib/core/protocol/CommandSerializer.js +48 -0
  202. package/lib/core/protocol/TypeDeserializer.js +81 -0
  203. package/lib/core/protocol/TypeSerializer.js +143 -0
  204. package/lib/core/receiver/Receiver.js +17 -8
  205. package/lib/core/receiver/ReceiverNative.js +2 -2
  206. package/lib/core/referenceCache/ReferencesCache.js +27 -4
  207. package/lib/core/transmitter/Transmitter.js +6 -8
  208. package/lib/core/transmitter/TransmitterWebsocket.js +2 -6
  209. package/lib/core/transmitter/TransmitterWebsocketBrowser.js +39 -0
  210. package/lib/core/transmitter/TransmitterWrapper.js +26 -13
  211. package/lib/core/typeCache/TypeCache.js +1 -1
  212. package/lib/core/webSocketClient/WebSocketClient.js +56 -24
  213. package/lib/core/webSocketClient/WebSocketClientBrowser.js +174 -0
  214. package/lib/declarations.d.ts +35 -0
  215. package/lib/sdk/ConfigRuntimeFactory.js +108 -58
  216. package/lib/sdk/InvocationContext.js +487 -0
  217. package/lib/sdk/Javonet.js +63 -29
  218. package/lib/sdk/RuntimeContext.js +289 -0
  219. package/lib/sdk/RuntimeFactory.js +12 -5
  220. package/lib/sdk/tools/browser/ConfigSourceResolver.js +146 -0
  221. package/lib/sdk/tools/browser/SdkExceptionHelper.js +20 -0
  222. package/lib/sdk/tools/nodejs/JsonFileResolver.js +106 -0
  223. package/lib/sdk/tools/nodejs/SdkExceptionHelper.js +89 -0
  224. package/lib/utils/Command.js +67 -0
  225. package/lib/utils/CommandType.js +45 -0
  226. package/lib/utils/ConnectionType.js +6 -0
  227. package/lib/utils/CreateRequire.browser.js +5 -0
  228. package/lib/utils/CreateRequire.node.js +3 -0
  229. package/lib/utils/CustomError.js +6 -0
  230. package/lib/utils/ExceptionType.js +13 -0
  231. package/lib/utils/Runtime.js +113 -0
  232. package/lib/utils/RuntimeLogger.js +19 -9
  233. package/lib/utils/RuntimeLoggerBrowser.js +35 -0
  234. package/lib/utils/RuntimeName.js +14 -0
  235. package/lib/utils/RuntimeNameHandler.js +38 -0
  236. package/lib/utils/StringEncodingMode.js +7 -0
  237. package/lib/utils/Type.js +15 -0
  238. package/lib/utils/connectionData/IConnectionData.js +13 -0
  239. package/lib/utils/connectionData/InMemoryConnectionData.js +35 -0
  240. package/lib/utils/connectionData/WsConnectionData.js +48 -0
  241. package/lib/utils/exception/ExceptionSerializer.js +64 -0
  242. package/lib/utils/exception/ExceptionThrower.js +96 -0
  243. package/lib/utils/guid/generateGuid.js +9 -0
  244. package/lib/utils/nodejs/TypesConverter.js +91 -0
  245. package/lib/utils/nodejs/connectionData/TcpConnectionData.js +89 -0
  246. package/lib/utils/nodejs/uuid/REGEX.js +2 -0
  247. package/lib/utils/nodejs/uuid/rng.js +23 -0
  248. package/lib/utils/nodejs/uuid/stringify.js +51 -0
  249. package/lib/utils/nodejs/uuid/v4.js +26 -0
  250. package/lib/utils/nodejs/uuid/validate.js +7 -0
  251. package/package.json +68 -47
  252. package/Binaries/Clr/Javonet.Clr.Utils.dll +0 -0
  253. package/Binaries/Clr/JavonetClrRuntime.dll +0 -0
  254. package/Binaries/Jvm/JavonetJvmRuntime.jar +0 -0
  255. package/Binaries/Native/Linux/ARM64/NetVersion31LatestPatch.runtimeconfig.json +0 -10
  256. package/Binaries/Native/Linux/ARM64/NetVersion60LatestPatch.runtimeconfig.json +0 -10
  257. package/Binaries/Native/Linux/ARM64/NetVersion70LatestPatch.runtimeconfig.json +0 -10
  258. package/Binaries/Native/Linux/ARM64/NetVersion80LatestPatch.runtimeconfig.json +0 -10
  259. package/Binaries/Native/Linux/ARM64/NetVersion90LatestPatch.runtimeconfig.json +0 -10
  260. package/Binaries/Native/Linux/ARM64/NetVersionLatest.runtimeconfig.json +0 -10
  261. package/Binaries/Native/Linux/ARM64/dynamicCompilationHeaders/Linux/jni.h +0 -1960
  262. package/Binaries/Native/Linux/ARM64/dynamicCompilationHeaders/Linux/jni_md.h +0 -51
  263. package/Binaries/Native/Linux/ARM64/dynamicCompilationHeaders/MacOs/jni.h +0 -1960
  264. package/Binaries/Native/Linux/ARM64/dynamicCompilationHeaders/MacOs/jni_md.h +0 -51
  265. package/Binaries/Native/Linux/ARM64/dynamicCompilationHeaders/Windows/jni.h +0 -1960
  266. package/Binaries/Native/Linux/ARM64/dynamicCompilationHeaders/Windows/jni_md.h +0 -37
  267. package/Binaries/Native/Linux/ARM64/libJavonetActivationService.so +0 -0
  268. package/Binaries/Native/Linux/ARM64/libJavonetCppRuntimeNative.so +0 -0
  269. package/Binaries/Native/Linux/ARM64/libJavonetGoRuntimeNative.so +0 -0
  270. package/Binaries/Native/Linux/ARM64/libJavonetJvmRuntimeNative.so +0 -0
  271. package/Binaries/Native/Linux/ARM64/libJavonetNetcoreRuntimeNative.so +0 -0
  272. package/Binaries/Native/Linux/ARM64/libJavonetPhpRuntimeNative.so +0 -0
  273. package/Binaries/Native/Linux/ARM64/libJavonetPythonRuntimeNative.so +0 -0
  274. package/Binaries/Native/Linux/ARM64/libJavonetRuby342RuntimeNative.so +0 -0
  275. package/Binaries/Native/Linux/ARM64/libJavonetRubyRuntimeNative.so +0 -0
  276. package/Binaries/Native/Linux/ARM64/libJavonetTcpClient.so +0 -0
  277. package/Binaries/Native/Linux/ARM64/libJavonetTcpTlsClient.so +0 -0
  278. package/Binaries/Native/Linux/ARM64/libUtils.so +0 -0
  279. package/Binaries/Native/Linux/ARM64/libnethost.so +0 -0
  280. package/Binaries/Native/Linux/ARM64/version.txt +0 -1
  281. package/Binaries/Native/Linux/X64/NetVersion31LatestPatch.runtimeconfig.json +0 -10
  282. package/Binaries/Native/Linux/X64/NetVersion60LatestPatch.runtimeconfig.json +0 -10
  283. package/Binaries/Native/Linux/X64/NetVersion70LatestPatch.runtimeconfig.json +0 -10
  284. package/Binaries/Native/Linux/X64/NetVersion80LatestPatch.runtimeconfig.json +0 -10
  285. package/Binaries/Native/Linux/X64/NetVersion90LatestPatch.runtimeconfig.json +0 -10
  286. package/Binaries/Native/Linux/X64/NetVersionLatest.runtimeconfig.json +0 -10
  287. package/Binaries/Native/Linux/X64/dynamicCompilationHeaders/Linux/jni.h +0 -1960
  288. package/Binaries/Native/Linux/X64/dynamicCompilationHeaders/Linux/jni_md.h +0 -51
  289. package/Binaries/Native/Linux/X64/dynamicCompilationHeaders/MacOs/jni.h +0 -1960
  290. package/Binaries/Native/Linux/X64/dynamicCompilationHeaders/MacOs/jni_md.h +0 -51
  291. package/Binaries/Native/Linux/X64/dynamicCompilationHeaders/Windows/jni.h +0 -1960
  292. package/Binaries/Native/Linux/X64/dynamicCompilationHeaders/Windows/jni_md.h +0 -37
  293. package/Binaries/Native/Linux/X64/libJavonetActivationService.so +0 -0
  294. package/Binaries/Native/Linux/X64/libJavonetCppRuntimeNative.so +0 -0
  295. package/Binaries/Native/Linux/X64/libJavonetGoRuntimeNative.so +0 -0
  296. package/Binaries/Native/Linux/X64/libJavonetJvmRuntimeNative.so +0 -0
  297. package/Binaries/Native/Linux/X64/libJavonetNetcoreRuntimeNative.so +0 -0
  298. package/Binaries/Native/Linux/X64/libJavonetNodejs1816RuntimeNative.so +0 -0
  299. package/Binaries/Native/Linux/X64/libJavonetNodejsRuntimeNative.so +0 -0
  300. package/Binaries/Native/Linux/X64/libJavonetPerlRuntimeNative.so +0 -0
  301. package/Binaries/Native/Linux/X64/libJavonetPhpRuntimeNative.so +0 -0
  302. package/Binaries/Native/Linux/X64/libJavonetPython2RuntimeNative.so +0 -0
  303. package/Binaries/Native/Linux/X64/libJavonetPythonRuntimeNative.so +0 -0
  304. package/Binaries/Native/Linux/X64/libJavonetRuby278RuntimeNative.so +0 -0
  305. package/Binaries/Native/Linux/X64/libJavonetRuby342RuntimeNative.so +0 -0
  306. package/Binaries/Native/Linux/X64/libJavonetRubyRuntimeNative.so +0 -0
  307. package/Binaries/Native/Linux/X64/libJavonetTcpClient.so +0 -0
  308. package/Binaries/Native/Linux/X64/libJavonetTcpTlsClient.so +0 -0
  309. package/Binaries/Native/Linux/X64/libUtils.so +0 -0
  310. package/Binaries/Native/Linux/X64/libnethost.so +0 -0
  311. package/Binaries/Native/Linux/X64/libnode.so.108 +0 -0
  312. package/Binaries/Native/Linux/X64/libperl.so.5.34.0 +0 -0
  313. package/Binaries/Native/Linux/X64/libpython2.7.so.1.0 +0 -0
  314. package/Binaries/Native/Linux/X64/libruby.so.2.7.8 +0 -0
  315. package/Binaries/Native/Linux/X64/libruby.so.3.4.2 +0 -0
  316. package/Binaries/Native/Linux/X64/version.txt +0 -1
  317. package/Binaries/Native/MacOs/X64/NetVersion31LatestPatch.runtimeconfig.json +0 -10
  318. package/Binaries/Native/MacOs/X64/NetVersion60LatestPatch.runtimeconfig.json +0 -10
  319. package/Binaries/Native/MacOs/X64/NetVersion70LatestPatch.runtimeconfig.json +0 -10
  320. package/Binaries/Native/MacOs/X64/NetVersion80LatestPatch.runtimeconfig.json +0 -10
  321. package/Binaries/Native/MacOs/X64/NetVersion90LatestPatch.runtimeconfig.json +0 -10
  322. package/Binaries/Native/MacOs/X64/NetVersionLatest.runtimeconfig.json +0 -10
  323. package/Binaries/Native/MacOs/X64/dynamicCompilationHeaders/Linux/jni.h +0 -1960
  324. package/Binaries/Native/MacOs/X64/dynamicCompilationHeaders/Linux/jni_md.h +0 -51
  325. package/Binaries/Native/MacOs/X64/dynamicCompilationHeaders/MacOs/jni.h +0 -1960
  326. package/Binaries/Native/MacOs/X64/dynamicCompilationHeaders/MacOs/jni_md.h +0 -51
  327. package/Binaries/Native/MacOs/X64/dynamicCompilationHeaders/Windows/jni.h +0 -1960
  328. package/Binaries/Native/MacOs/X64/dynamicCompilationHeaders/Windows/jni_md.h +0 -37
  329. package/Binaries/Native/MacOs/X64/libJavonetActivationService.dylib +0 -0
  330. package/Binaries/Native/MacOs/X64/libJavonetCppRuntimeNative.dylib +0 -0
  331. package/Binaries/Native/MacOs/X64/libJavonetGoRuntimeNative.dylib +0 -0
  332. package/Binaries/Native/MacOs/X64/libJavonetJvmRuntimeNative.dylib +0 -0
  333. package/Binaries/Native/MacOs/X64/libJavonetNetcoreRuntimeNative.dylib +0 -0
  334. package/Binaries/Native/MacOs/X64/libJavonetNodejs1816RuntimeNative.dylib +0 -0
  335. package/Binaries/Native/MacOs/X64/libJavonetNodejsRuntimeNative.dylib +0 -0
  336. package/Binaries/Native/MacOs/X64/libJavonetPhpRuntimeNative.dylib +0 -0
  337. package/Binaries/Native/MacOs/X64/libJavonetPythonRuntimeNative.dylib +0 -0
  338. package/Binaries/Native/MacOs/X64/libJavonetRuby278RuntimeNative.dylib +0 -0
  339. package/Binaries/Native/MacOs/X64/libJavonetRuby342RuntimeNative.dylib +0 -0
  340. package/Binaries/Native/MacOs/X64/libJavonetRubyRuntimeNative.dylib +0 -0
  341. package/Binaries/Native/MacOs/X64/libJavonetTcpClient.dylib +0 -0
  342. package/Binaries/Native/MacOs/X64/libJavonetTcpTlsClient.dylib +0 -0
  343. package/Binaries/Native/MacOs/X64/libUtils.dylib +0 -0
  344. package/Binaries/Native/MacOs/X64/libnethost.dylib +0 -0
  345. package/Binaries/Native/MacOs/X64/libnode.108.dylib +0 -0
  346. package/Binaries/Native/MacOs/X64/libruby.2.7.dylib +0 -0
  347. package/Binaries/Native/MacOs/X64/libruby.3.4.dylib +0 -0
  348. package/Binaries/Native/MacOs/X64/version.txt +0 -1
  349. package/Binaries/Native/Windows/ARM64/JavonetActivationService.dll +0 -0
  350. package/Binaries/Native/Windows/ARM64/JavonetCppRuntimeNative.dll +0 -0
  351. package/Binaries/Native/Windows/ARM64/JavonetGoRuntimeNative.dll +0 -0
  352. package/Binaries/Native/Windows/ARM64/JavonetJvmRuntimeNative.dll +0 -0
  353. package/Binaries/Native/Windows/ARM64/JavonetNetcoreRuntimeNative.dll +0 -0
  354. package/Binaries/Native/Windows/ARM64/JavonetPhpRuntimeNative.dll +0 -0
  355. package/Binaries/Native/Windows/ARM64/JavonetPythonRuntimeNative.dll +0 -0
  356. package/Binaries/Native/Windows/ARM64/JavonetRuby278RuntimeNative.dll +0 -0
  357. package/Binaries/Native/Windows/ARM64/JavonetRubyRuntimeNative.dll +0 -0
  358. package/Binaries/Native/Windows/ARM64/JavonetTcpClient.dll +0 -0
  359. package/Binaries/Native/Windows/ARM64/JavonetTcpTlsClient.dll +0 -0
  360. package/Binaries/Native/Windows/ARM64/NetVersion31LatestPatch.runtimeconfig.json +0 -10
  361. package/Binaries/Native/Windows/ARM64/NetVersion60LatestPatch.runtimeconfig.json +0 -10
  362. package/Binaries/Native/Windows/ARM64/NetVersion70LatestPatch.runtimeconfig.json +0 -10
  363. package/Binaries/Native/Windows/ARM64/NetVersion80LatestPatch.runtimeconfig.json +0 -10
  364. package/Binaries/Native/Windows/ARM64/NetVersion90LatestPatch.runtimeconfig.json +0 -10
  365. package/Binaries/Native/Windows/ARM64/NetVersionLatest.runtimeconfig.json +0 -10
  366. package/Binaries/Native/Windows/ARM64/Utils.dll +0 -0
  367. package/Binaries/Native/Windows/ARM64/dynamicCompilationHeaders/Linux/jni.h +0 -1960
  368. package/Binaries/Native/Windows/ARM64/dynamicCompilationHeaders/Linux/jni_md.h +0 -51
  369. package/Binaries/Native/Windows/ARM64/dynamicCompilationHeaders/MacOs/jni.h +0 -1960
  370. package/Binaries/Native/Windows/ARM64/dynamicCompilationHeaders/MacOs/jni_md.h +0 -51
  371. package/Binaries/Native/Windows/ARM64/dynamicCompilationHeaders/Windows/jni.h +0 -1960
  372. package/Binaries/Native/Windows/ARM64/dynamicCompilationHeaders/Windows/jni_md.h +0 -37
  373. package/Binaries/Native/Windows/ARM64/libcrypto-3-arm64.dll +0 -0
  374. package/Binaries/Native/Windows/ARM64/libssl-3-arm64.dll +0 -0
  375. package/Binaries/Native/Windows/ARM64/libxml2.dll +0 -0
  376. package/Binaries/Native/Windows/ARM64/libxmlsec-openssl.dll +0 -0
  377. package/Binaries/Native/Windows/ARM64/libxmlsec.dll +0 -0
  378. package/Binaries/Native/Windows/ARM64/libxslt.dll +0 -0
  379. package/Binaries/Native/Windows/ARM64/nethost.dll +0 -0
  380. package/Binaries/Native/Windows/ARM64/version.txt +0 -0
  381. package/Binaries/Native/Windows/X64/JavonetActivationService.dll +0 -0
  382. package/Binaries/Native/Windows/X64/JavonetClrRuntimeNative.dll +0 -0
  383. package/Binaries/Native/Windows/X64/JavonetCppRuntimeNative.dll +0 -0
  384. package/Binaries/Native/Windows/X64/JavonetGoRuntimeNative.dll +0 -0
  385. package/Binaries/Native/Windows/X64/JavonetJvmRuntimeNative.dll +0 -0
  386. package/Binaries/Native/Windows/X64/JavonetNetcoreRuntimeNative.dll +0 -0
  387. package/Binaries/Native/Windows/X64/JavonetNodejs1816RuntimeNative.dll +0 -0
  388. package/Binaries/Native/Windows/X64/JavonetNodejsRuntimeNative.dll +0 -0
  389. package/Binaries/Native/Windows/X64/JavonetPerl532RuntimeNativeAuxiliary.dll +0 -0
  390. package/Binaries/Native/Windows/X64/JavonetPerl540RuntimeNativeAuxiliary.dll +0 -0
  391. package/Binaries/Native/Windows/X64/JavonetPerlRuntimeNative.dll +0 -0
  392. package/Binaries/Native/Windows/X64/JavonetPhpRuntimeNative.dll +0 -0
  393. package/Binaries/Native/Windows/X64/JavonetPython2RuntimeNative.dll +0 -0
  394. package/Binaries/Native/Windows/X64/JavonetPythonRuntimeNative.dll +0 -0
  395. package/Binaries/Native/Windows/X64/JavonetRuby278RuntimeNative.dll +0 -0
  396. package/Binaries/Native/Windows/X64/JavonetRubyRuntimeNative.dll +0 -0
  397. package/Binaries/Native/Windows/X64/JavonetRubyRuntimeNativeAuxiliary.dll +0 -0
  398. package/Binaries/Native/Windows/X64/JavonetTcpClient.dll +0 -0
  399. package/Binaries/Native/Windows/X64/JavonetTcpTlsClient.dll +0 -0
  400. package/Binaries/Native/Windows/X64/NetVersion31LatestPatch.runtimeconfig.json +0 -10
  401. package/Binaries/Native/Windows/X64/NetVersion60LatestPatch.runtimeconfig.json +0 -10
  402. package/Binaries/Native/Windows/X64/NetVersion70LatestPatch.runtimeconfig.json +0 -10
  403. package/Binaries/Native/Windows/X64/NetVersion80LatestPatch.runtimeconfig.json +0 -10
  404. package/Binaries/Native/Windows/X64/NetVersion90LatestPatch.runtimeconfig.json +0 -10
  405. package/Binaries/Native/Windows/X64/NetVersionLatest.runtimeconfig.json +0 -10
  406. package/Binaries/Native/Windows/X64/Utils.dll +0 -0
  407. package/Binaries/Native/Windows/X64/dynamicCompilationHeaders/Linux/jni.h +0 -1960
  408. package/Binaries/Native/Windows/X64/dynamicCompilationHeaders/Linux/jni_md.h +0 -51
  409. package/Binaries/Native/Windows/X64/dynamicCompilationHeaders/MacOs/jni.h +0 -1960
  410. package/Binaries/Native/Windows/X64/dynamicCompilationHeaders/MacOs/jni_md.h +0 -51
  411. package/Binaries/Native/Windows/X64/dynamicCompilationHeaders/Windows/jni.h +0 -1960
  412. package/Binaries/Native/Windows/X64/dynamicCompilationHeaders/Windows/jni_md.h +0 -37
  413. package/Binaries/Native/Windows/X64/libcrypto-3-x64.dll +0 -0
  414. package/Binaries/Native/Windows/X64/libnode.dll +0 -0
  415. package/Binaries/Native/Windows/X64/libssl-3-x64.dll +0 -0
  416. package/Binaries/Native/Windows/X64/libxml2.dll +0 -0
  417. package/Binaries/Native/Windows/X64/libxmlsec-openssl.dll +0 -0
  418. package/Binaries/Native/Windows/X64/libxmlsec.dll +0 -0
  419. package/Binaries/Native/Windows/X64/libxslt.dll +0 -0
  420. package/Binaries/Native/Windows/X64/nethost.dll +0 -0
  421. package/Binaries/Native/Windows/X64/python27.dll +0 -0
  422. package/Binaries/Native/Windows/X64/version.txt +0 -1
  423. package/Binaries/Native/Windows/X64/x64-msvcrt-ruby270.dll +0 -0
  424. package/Binaries/Native/Windows/X64/x64-ucrt-ruby340.dll +0 -0
  425. package/Binaries/Native/Windows/X86/JavonetActivationService.dll +0 -0
  426. package/Binaries/Native/Windows/X86/JavonetClrRuntimeNative.dll +0 -0
  427. package/Binaries/Native/Windows/X86/JavonetCppRuntimeNative.dll +0 -0
  428. package/Binaries/Native/Windows/X86/JavonetGoRuntimeNative.dll +0 -0
  429. package/Binaries/Native/Windows/X86/JavonetJvmRuntimeNative.dll +0 -0
  430. package/Binaries/Native/Windows/X86/JavonetNetcoreRuntimeNative.dll +0 -0
  431. package/Binaries/Native/Windows/X86/JavonetPhpRuntimeNative.dll +0 -0
  432. package/Binaries/Native/Windows/X86/JavonetPython2RuntimeNative.dll +0 -0
  433. package/Binaries/Native/Windows/X86/JavonetPythonRuntimeNative.dll +0 -0
  434. package/Binaries/Native/Windows/X86/JavonetTcpClient.dll +0 -0
  435. package/Binaries/Native/Windows/X86/JavonetTcpTlsClient.dll +0 -0
  436. package/Binaries/Native/Windows/X86/NetVersion31LatestPatch.runtimeconfig.json +0 -10
  437. package/Binaries/Native/Windows/X86/NetVersion60LatestPatch.runtimeconfig.json +0 -10
  438. package/Binaries/Native/Windows/X86/NetVersion70LatestPatch.runtimeconfig.json +0 -10
  439. package/Binaries/Native/Windows/X86/NetVersion80LatestPatch.runtimeconfig.json +0 -10
  440. package/Binaries/Native/Windows/X86/NetVersion90LatestPatch.runtimeconfig.json +0 -10
  441. package/Binaries/Native/Windows/X86/NetVersionLatest.runtimeconfig.json +0 -10
  442. package/Binaries/Native/Windows/X86/Utils.dll +0 -0
  443. package/Binaries/Native/Windows/X86/dynamicCompilationHeaders/Linux/jni.h +0 -1960
  444. package/Binaries/Native/Windows/X86/dynamicCompilationHeaders/Linux/jni_md.h +0 -51
  445. package/Binaries/Native/Windows/X86/dynamicCompilationHeaders/MacOs/jni.h +0 -1960
  446. package/Binaries/Native/Windows/X86/dynamicCompilationHeaders/MacOs/jni_md.h +0 -51
  447. package/Binaries/Native/Windows/X86/dynamicCompilationHeaders/Windows/jni.h +0 -1960
  448. package/Binaries/Native/Windows/X86/dynamicCompilationHeaders/Windows/jni_md.h +0 -37
  449. package/Binaries/Native/Windows/X86/libcrypto-3.dll +0 -0
  450. package/Binaries/Native/Windows/X86/libssl-3.dll +0 -0
  451. package/Binaries/Native/Windows/X86/libxml2.dll +0 -0
  452. package/Binaries/Native/Windows/X86/libxmlsec-openssl.dll +0 -0
  453. package/Binaries/Native/Windows/X86/libxmlsec.dll +0 -0
  454. package/Binaries/Native/Windows/X86/libxslt.dll +0 -0
  455. package/Binaries/Native/Windows/X86/nethost.dll +0 -0
  456. package/Binaries/Native/Windows/X86/version.txt +0 -1
  457. package/Binaries/Netcore/Javonet.Netcore.Core.dll +0 -0
  458. package/Binaries/Netcore/Javonet.Netcore.Utils.dll +0 -0
  459. package/Binaries/Nodejs/index.js +0 -66
  460. package/Binaries/Nodejs/lib/core/delegatesCache/DelegatesCache.js +0 -35
  461. package/Binaries/Nodejs/lib/core/handler/AbstractHandler.js +0 -41
  462. package/Binaries/Nodejs/lib/core/handler/ArrayGetItemHandler.js +0 -38
  463. package/Binaries/Nodejs/lib/core/handler/ArrayGetRankHandler.js +0 -28
  464. package/Binaries/Nodejs/lib/core/handler/ArrayGetSizeHandler.js +0 -29
  465. package/Binaries/Nodejs/lib/core/handler/ArrayHandler.js +0 -18
  466. package/Binaries/Nodejs/lib/core/handler/ArraySetItemHandler.js +0 -43
  467. package/Binaries/Nodejs/lib/core/handler/CastingHandler.js +0 -10
  468. package/Binaries/Nodejs/lib/core/handler/ConvertTypeHandler.js +0 -38
  469. package/Binaries/Nodejs/lib/core/handler/CreateClassInstanceHandler.js +0 -36
  470. package/Binaries/Nodejs/lib/core/handler/DestructReferenceHandler.js +0 -19
  471. package/Binaries/Nodejs/lib/core/handler/EnableNamespaceHandler.js +0 -34
  472. package/Binaries/Nodejs/lib/core/handler/EnableTypeHandler.js +0 -35
  473. package/Binaries/Nodejs/lib/core/handler/GetGlobalStaticFieldHandler.js +0 -37
  474. package/Binaries/Nodejs/lib/core/handler/GetInstanceFieldHandler.js +0 -35
  475. package/Binaries/Nodejs/lib/core/handler/GetInstanceMethodAsDelegateHandler.js +0 -73
  476. package/Binaries/Nodejs/lib/core/handler/GetStaticFieldHandler.js +0 -36
  477. package/Binaries/Nodejs/lib/core/handler/GetStaticMethodAsDelegateHandler.js +0 -74
  478. package/Binaries/Nodejs/lib/core/handler/GetTypeHandler.js +0 -63
  479. package/Binaries/Nodejs/lib/core/handler/Handler.js +0 -98
  480. package/Binaries/Nodejs/lib/core/handler/InvokeDelegateHandler.js +0 -36
  481. package/Binaries/Nodejs/lib/core/handler/InvokeGlobalFunctionHandler.js +0 -39
  482. package/Binaries/Nodejs/lib/core/handler/InvokeInstanceMethodHandler.js +0 -38
  483. package/Binaries/Nodejs/lib/core/handler/InvokeStaticMethodHandler.js +0 -38
  484. package/Binaries/Nodejs/lib/core/handler/LoadLibraryHandler.js +0 -48
  485. package/Binaries/Nodejs/lib/core/handler/PassDelegateHandler.js +0 -157
  486. package/Binaries/Nodejs/lib/core/handler/ResolveReferenceHandler.js +0 -13
  487. package/Binaries/Nodejs/lib/core/handler/SetGlobalStaticFieldHandler.js +0 -38
  488. package/Binaries/Nodejs/lib/core/handler/SetInstanceFieldHandler.js +0 -35
  489. package/Binaries/Nodejs/lib/core/handler/SetStaticFieldHandler.js +0 -33
  490. package/Binaries/Nodejs/lib/core/handler/ValueHandler.js +0 -13
  491. package/Binaries/Nodejs/lib/core/interpreter/Interpreter.js +0 -142
  492. package/Binaries/Nodejs/lib/core/namespaceCache/NamespaceCache.js +0 -39
  493. package/Binaries/Nodejs/lib/core/protocol/CommandDeserializer.js +0 -181
  494. package/Binaries/Nodejs/lib/core/protocol/CommandSerializer.js +0 -50
  495. package/Binaries/Nodejs/lib/core/protocol/TypeDeserializer.js +0 -83
  496. package/Binaries/Nodejs/lib/core/protocol/TypeSerializer.js +0 -143
  497. package/Binaries/Nodejs/lib/core/receiver/Receiver.js +0 -32
  498. package/Binaries/Nodejs/lib/core/receiver/ReceiverNative.js +0 -13
  499. package/Binaries/Nodejs/lib/core/referenceCache/ReferencesCache.js +0 -30
  500. package/Binaries/Nodejs/lib/core/transmitter/Transmitter.js +0 -21
  501. package/Binaries/Nodejs/lib/core/transmitter/TransmitterWebsocket.js +0 -33
  502. package/Binaries/Nodejs/lib/core/transmitter/TransmitterWrapper.js +0 -47
  503. package/Binaries/Nodejs/lib/core/typeCache/TypeCache.js +0 -39
  504. package/Binaries/Nodejs/lib/core/webSocketClient/WebSocketClient.js +0 -136
  505. package/Binaries/Nodejs/lib/declarations.d.ts +0 -64
  506. package/Binaries/Nodejs/lib/sdk/ConfigRuntimeFactory.js +0 -155
  507. package/Binaries/Nodejs/lib/sdk/InvocationContext.js +0 -485
  508. package/Binaries/Nodejs/lib/sdk/Javonet.js +0 -105
  509. package/Binaries/Nodejs/lib/sdk/RuntimeContext.js +0 -300
  510. package/Binaries/Nodejs/lib/sdk/RuntimeFactory.js +0 -87
  511. package/Binaries/Nodejs/lib/sdk/tools/JsonFileResolver.js +0 -101
  512. package/Binaries/Nodejs/lib/sdk/tools/SdkExceptionHelper.js +0 -79
  513. package/Binaries/Nodejs/lib/utils/Command.js +0 -69
  514. package/Binaries/Nodejs/lib/utils/CommandType.js +0 -47
  515. package/Binaries/Nodejs/lib/utils/ConnectionType.js +0 -8
  516. package/Binaries/Nodejs/lib/utils/CustomError.js +0 -8
  517. package/Binaries/Nodejs/lib/utils/ExceptionType.js +0 -13
  518. package/Binaries/Nodejs/lib/utils/RuntimeLogger.js +0 -30
  519. package/Binaries/Nodejs/lib/utils/RuntimeName.js +0 -16
  520. package/Binaries/Nodejs/lib/utils/RuntimeNameHandler.js +0 -38
  521. package/Binaries/Nodejs/lib/utils/StringEncodingMode.js +0 -9
  522. package/Binaries/Nodejs/lib/utils/Type.js +0 -17
  523. package/Binaries/Nodejs/lib/utils/TypesConverter.js +0 -91
  524. package/Binaries/Nodejs/lib/utils/connectionData/IConnectionData.js +0 -15
  525. package/Binaries/Nodejs/lib/utils/connectionData/InMemoryConnectionData.js +0 -35
  526. package/Binaries/Nodejs/lib/utils/connectionData/TcpConnectionData.js +0 -77
  527. package/Binaries/Nodejs/lib/utils/connectionData/WsConnectionData.js +0 -50
  528. package/Binaries/Nodejs/lib/utils/exception/ExceptionSerializer.js +0 -64
  529. package/Binaries/Nodejs/lib/utils/exception/ExceptionThrower.js +0 -95
  530. package/Binaries/Nodejs/lib/utils/guid/generateGuid.js +0 -9
  531. package/Binaries/Nodejs/lib/utils/uuid/REGEX.js +0 -2
  532. package/Binaries/Nodejs/lib/utils/uuid/rng.js +0 -12
  533. package/Binaries/Nodejs/lib/utils/uuid/stringify.js +0 -51
  534. package/Binaries/Nodejs/lib/utils/uuid/v4.js +0 -27
  535. package/Binaries/Nodejs/lib/utils/uuid/validate.js +0 -6
  536. package/Binaries/Perl/Linux/X64/deps/bin/moose-outdated +0 -22
  537. package/Binaries/Perl/Linux/X64/deps/bin/package-stash-conflicts +0 -22
  538. package/Binaries/Perl/Linux/X64/deps/bin/yamlpp-events +0 -62
  539. package/Binaries/Perl/Linux/X64/deps/bin/yamlpp-highlight +0 -54
  540. package/Binaries/Perl/Linux/X64/deps/bin/yamlpp-load +0 -155
  541. package/Binaries/Perl/Linux/X64/deps/bin/yamlpp-load-dump +0 -314
  542. package/Binaries/Perl/Linux/X64/deps/bin/yamlpp-parse-emit +0 -123
  543. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Attribute/Abstract.pm +0 -74
  544. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Attribute/Alias.pm +0 -75
  545. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Attribute/Memoize.pm +0 -77
  546. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Attribute/Method.pm +0 -151
  547. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Attribute/SigHandler.pm +0 -61
  548. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Attribute/Util.pm +0 -101
  549. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Capture/Tiny.pm +0 -917
  550. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Class/Load/PP.pm +0 -59
  551. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Class/Load.pm +0 -420
  552. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Data/Cmp/Numeric.pm +0 -188
  553. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Data/Cmp/StrOrNumeric.pm +0 -200
  554. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Data/Cmp.pm +0 -278
  555. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Data/OptList.pm +0 -416
  556. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Devel/GlobalDestruction.pm +0 -110
  557. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Devel/OverloadInfo.pm +0 -309
  558. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Devel/StackTrace/Frame.pm +0 -272
  559. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Devel/StackTrace.pm +0 -624
  560. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Eval/Closure.pm +0 -379
  561. package/Binaries/Perl/Linux/X64/deps/lib/perl5/ExtUtils/Config/MakeMaker.pm +0 -141
  562. package/Binaries/Perl/Linux/X64/deps/lib/perl5/ExtUtils/Config.pm +0 -152
  563. package/Binaries/Perl/Linux/X64/deps/lib/perl5/ExtUtils/Helpers/Unix.pm +0 -97
  564. package/Binaries/Perl/Linux/X64/deps/lib/perl5/ExtUtils/Helpers/VMS.pm +0 -118
  565. package/Binaries/Perl/Linux/X64/deps/lib/perl5/ExtUtils/Helpers/Windows.pm +0 -125
  566. package/Binaries/Perl/Linux/X64/deps/lib/perl5/ExtUtils/Helpers.pm +0 -122
  567. package/Binaries/Perl/Linux/X64/deps/lib/perl5/ExtUtils/InstallPaths.pm +0 -627
  568. package/Binaries/Perl/Linux/X64/deps/lib/perl5/FFI/CheckLib.pm +0 -856
  569. package/Binaries/Perl/Linux/X64/deps/lib/perl5/File/Which.pm +0 -398
  570. package/Binaries/Perl/Linux/X64/deps/lib/perl5/IPC/System/Simple.pm +0 -1115
  571. package/Binaries/Perl/Linux/X64/deps/lib/perl5/MRO/Compat.pm +0 -407
  572. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Module/Implementation.pm +0 -290
  573. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Module/Runtime/Conflicts.pm +0 -105
  574. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Module/Runtime.pm +0 -520
  575. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Nice/Try.pm +0 -3257
  576. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Cache.pm +0 -301
  577. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Document/File.pm +0 -136
  578. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Document/Fragment.pm +0 -90
  579. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Document/Normalized.pm +0 -315
  580. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Document.pm +0 -1012
  581. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Dumper.pm +0 -309
  582. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Element.pm +0 -907
  583. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Exception/ParserRejection.pm +0 -10
  584. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Exception.pm +0 -108
  585. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Find.pm +0 -391
  586. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Lexer.pm +0 -1584
  587. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Node.pm +0 -831
  588. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Normal/Standard.pm +0 -139
  589. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Normal.pm +0 -257
  590. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Singletons.pm +0 -92
  591. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Break.pm +0 -75
  592. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Compound.pm +0 -205
  593. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Data.pm +0 -81
  594. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/End.pm +0 -79
  595. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Expression.pm +0 -67
  596. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Given.pm +0 -90
  597. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Include/Perl6.pm +0 -87
  598. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Include.pm +0 -365
  599. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Null.pm +0 -75
  600. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Package.pm +0 -145
  601. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Scheduled.pm +0 -124
  602. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Sub.pm +0 -222
  603. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Unknown.pm +0 -68
  604. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/UnmatchedBrace.pm +0 -80
  605. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Variable.pm +0 -195
  606. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/When.pm +0 -100
  607. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement.pm +0 -344
  608. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/Block.pm +0 -82
  609. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/Condition.pm +0 -67
  610. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/Constructor.pm +0 -62
  611. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/For.pm +0 -77
  612. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/Given.pm +0 -63
  613. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/List.pm +0 -87
  614. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/Signature.pm +0 -61
  615. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/Subscript.pm +0 -68
  616. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/Unknown.pm +0 -69
  617. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/When.pm +0 -63
  618. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure.pm +0 -348
  619. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/ArrayIndex.pm +0 -77
  620. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Attribute.pm +0 -176
  621. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/BOM.pm +0 -113
  622. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Cast.pm +0 -87
  623. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Comment.pm +0 -146
  624. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/DashedWord.pm +0 -96
  625. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Data.pm +0 -116
  626. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/End.pm +0 -111
  627. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/HereDoc.pm +0 -338
  628. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Label.pm +0 -58
  629. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Magic.pm +0 -200
  630. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Number/Binary.pm +0 -117
  631. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Number/Exp.pm +0 -146
  632. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Number/Float.pm +0 -140
  633. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Number/Hex.pm +0 -108
  634. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Number/Octal.pm +0 -115
  635. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Number/Version.pm +0 -164
  636. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Number.pm +0 -166
  637. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Operator.pm +0 -124
  638. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Pod.pm +0 -159
  639. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Prototype.pm +0 -100
  640. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Quote/Double.pm +0 -138
  641. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Quote/Interpolate.pm +0 -76
  642. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Quote/Literal.pm +0 -81
  643. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Quote/Single.pm +0 -93
  644. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Quote.pm +0 -120
  645. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/QuoteLike/Backtick.pm +0 -62
  646. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/QuoteLike/Command.pm +0 -62
  647. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/QuoteLike/Readline.pm +0 -71
  648. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/QuoteLike/Regexp.pm +0 -126
  649. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/QuoteLike/Words.pm +0 -88
  650. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/QuoteLike.pm +0 -77
  651. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Regexp/Match.pm +0 -76
  652. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Regexp/Substitute.pm +0 -66
  653. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Regexp/Transliterate.pm +0 -70
  654. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Regexp.pm +0 -136
  655. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Separator.pm +0 -64
  656. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Structure.pm +0 -209
  657. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Symbol.pm +0 -241
  658. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Unknown.pm +0 -506
  659. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Whitespace.pm +0 -454
  660. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Word.pm +0 -375
  661. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/_QuoteEngine/Full.pm +0 -450
  662. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/_QuoteEngine/Simple.pm +0 -67
  663. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/_QuoteEngine.pm +0 -240
  664. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token.pm +0 -245
  665. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Tokenizer.pm +0 -1123
  666. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Transform/UpdateCopyright.pm +0 -179
  667. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Transform.pm +0 -240
  668. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Util.pm +0 -72
  669. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/XSAccessor.pm +0 -165
  670. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI.pm +0 -822
  671. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Package/DeprecationManager.pm +0 -368
  672. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Package/Stash/Conflicts.pm +0 -35
  673. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Package/Stash/PP.pm +0 -503
  674. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Package/Stash.pm +0 -308
  675. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Path/Tiny.pm +0 -3946
  676. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Safe/Isa.pm +0 -213
  677. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Scope/Guard.pm +0 -183
  678. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Sub/Exporter/Cookbook.pod +0 -602
  679. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Sub/Exporter/Progressive.pm +0 -174
  680. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Sub/Exporter/Tutorial.pod +0 -539
  681. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Sub/Exporter/Util.pm +0 -488
  682. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Sub/Exporter.pm +0 -1769
  683. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Sub/Install.pm +0 -486
  684. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Task/Weaken.pm +0 -95
  685. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Test/Fatal.pm +0 -477
  686. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Try/Tiny.pm +0 -820
  687. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Common.pm +0 -273
  688. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Constructor.pm +0 -435
  689. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Dumper.pm +0 -283
  690. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Emitter.pm +0 -1165
  691. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Exception.pm +0 -79
  692. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Grammar.pm +0 -2150
  693. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Highlight.pm +0 -235
  694. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Lexer.pm +0 -962
  695. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Loader.pm +0 -103
  696. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Parser.pm +0 -1469
  697. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Perl.pm +0 -83
  698. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Reader.pm +0 -78
  699. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Render.pm +0 -155
  700. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Representer.pm +0 -230
  701. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/Binary.pm +0 -102
  702. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/Catchall.pm +0 -76
  703. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/Core.pm +0 -155
  704. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/Failsafe.pm +0 -71
  705. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/Include.pm +0 -259
  706. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/JSON.pm +0 -259
  707. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/Merge.pm +0 -109
  708. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/Perl.pm +0 -1004
  709. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/Tie/IxHash.pm +0 -156
  710. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/YAML1_1.pm +0 -249
  711. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema.pm +0 -447
  712. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Type/MergeKey.pm +0 -40
  713. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Writer/File.pm +0 -104
  714. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Writer.pm +0 -89
  715. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP.pm +0 -1547
  716. package/Binaries/Perl/Linux/X64/deps/lib/perl5/aliased.pm +0 -371
  717. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Attribute-Util-1.07/MYMETA.json +0 -43
  718. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Attribute-Util-1.07/install.json +0 -1
  719. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Capture-Tiny-0.50/MYMETA.json +0 -124
  720. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Capture-Tiny-0.50/install.json +0 -1
  721. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Class-Load-0.25/MYMETA.json +0 -1290
  722. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Class-Load-0.25/install.json +0 -1
  723. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Class-Load-XS-0.10/MYMETA.json +0 -1222
  724. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Class-Load-XS-0.10/install.json +0 -1
  725. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Data-Cmp-0.010/MYMETA.json +0 -591
  726. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Data-Cmp-0.010/install.json +0 -1
  727. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Data-OptList-0.114/MYMETA.json +0 -570
  728. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Data-OptList-0.114/install.json +0 -1
  729. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Data-UUID-1.227/MYMETA.json +0 -50
  730. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Data-UUID-1.227/install.json +0 -1
  731. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Devel-GlobalDestruction-0.14/MYMETA.json +0 -65
  732. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Devel-GlobalDestruction-0.14/install.json +0 -1
  733. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Devel-OverloadInfo-0.007/MYMETA.json +0 -73
  734. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Devel-OverloadInfo-0.007/install.json +0 -1
  735. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Devel-StackTrace-2.05/MYMETA.json +0 -1081
  736. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Devel-StackTrace-2.05/install.json +0 -1
  737. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Dist-CheckConflicts-0.11/MYMETA.json +0 -463
  738. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Dist-CheckConflicts-0.11/install.json +0 -1
  739. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Eval-Closure-0.14/MYMETA.json +0 -599
  740. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Eval-Closure-0.14/install.json +0 -1
  741. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/ExtUtils-Config-0.010/MYMETA.json +0 -79
  742. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/ExtUtils-Config-0.010/install.json +0 -1
  743. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/ExtUtils-Helpers-0.028/MYMETA.json +0 -89
  744. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/ExtUtils-Helpers-0.028/install.json +0 -1
  745. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/ExtUtils-InstallPaths-0.014/MYMETA.json +0 -76
  746. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/ExtUtils-InstallPaths-0.014/install.json +0 -1
  747. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/FFI-CheckLib-0.31/MYMETA.json +0 -156
  748. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/FFI-CheckLib-0.31/install.json +0 -1
  749. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/FFI-Platypus-2.10/MYMETA.json +0 -198
  750. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/FFI-Platypus-2.10/install.json +0 -1
  751. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/File-Which-1.27/MYMETA.json +0 -81
  752. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/File-Which-1.27/install.json +0 -1
  753. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/IPC-System-Simple-1.30/MYMETA.json +0 -69
  754. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/IPC-System-Simple-1.30/install.json +0 -1
  755. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/MRO-Compat-0.15/MYMETA.json +0 -66
  756. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/MRO-Compat-0.15/install.json +0 -1
  757. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Build-Tiny-0.051/MYMETA.json +0 -122
  758. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Build-Tiny-0.051/install.json +0 -1
  759. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Implementation-0.09/MYMETA.json +0 -625
  760. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Implementation-0.09/install.json +0 -1
  761. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Runtime-0.018/MYMETA.json +0 -83
  762. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Runtime-0.018/install.json +0 -1
  763. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Runtime-Conflicts-0.003/MYMETA.json +0 -1162
  764. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Runtime-Conflicts-0.003/install.json +0 -1
  765. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Moose-2.2207/MYMETA.json +0 -3189
  766. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Moose-2.2207/install.json +0 -1
  767. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Nice-Try-v1.3.15/MYMETA.json +0 -68
  768. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Nice-Try-v1.3.15/install.json +0 -1
  769. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/PPI-1.281/MYMETA.json +0 -1115
  770. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/PPI-1.281/install.json +0 -1
  771. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/PPI-XS-0.910/MYMETA.json +0 -1045
  772. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/PPI-XS-0.910/install.json +0 -1
  773. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Package-DeprecationManager-0.18/MYMETA.json +0 -1069
  774. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Package-DeprecationManager-0.18/install.json +0 -1
  775. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Package-Stash-0.40/MYMETA.json +0 -1371
  776. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Package-Stash-0.40/install.json +0 -1
  777. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Package-Stash-XS-0.30/MYMETA.json +0 -1331
  778. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Package-Stash-XS-0.30/install.json +0 -1
  779. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Params-Util-1.102/MYMETA.json +0 -89
  780. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Params-Util-1.102/install.json +0 -1
  781. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Path-Tiny-0.148/MYMETA.json +0 -186
  782. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Path-Tiny-0.148/install.json +0 -1
  783. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Safe-Isa-1.000010/MYMETA.json +0 -64
  784. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Safe-Isa-1.000010/install.json +0 -1
  785. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Scalar-Util-Numeric-0.40/MYMETA.json +0 -50
  786. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Scalar-Util-Numeric-0.40/install.json +0 -1
  787. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Scope-Guard-0.21/MYMETA.json +0 -53
  788. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Scope-Guard-0.21/install.json +0 -1
  789. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Sub-Exporter-0.991/MYMETA.json +0 -595
  790. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Sub-Exporter-0.991/install.json +0 -1
  791. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Sub-Exporter-Progressive-0.001013/MYMETA.json +0 -55
  792. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Sub-Exporter-Progressive-0.001013/install.json +0 -1
  793. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Sub-Install-0.929/MYMETA.json +0 -572
  794. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Sub-Install-0.929/install.json +0 -1
  795. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Task-Weaken-1.06/MYMETA.json +0 -1092
  796. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Task-Weaken-1.06/install.json +0 -1
  797. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Test-Fatal-0.017/MYMETA.json +0 -598
  798. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Test-Fatal-0.017/install.json +0 -1
  799. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Try-Tiny-0.32/MYMETA.json +0 -1344
  800. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Try-Tiny-0.32/install.json +0 -1
  801. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Want-0.29/MYMETA.json +0 -40
  802. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Want-0.29/install.json +0 -1
  803. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/YAML-PP-v0.39.0/MYMETA.json +0 -222
  804. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/YAML-PP-v0.39.0/install.json +0 -1
  805. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/aliased-0.34/MYMETA.json +0 -1035
  806. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/aliased-0.34/install.json +0 -1
  807. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/autobox-v3.0.2/MYMETA.json +0 -53
  808. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/autobox-v3.0.2/install.json +0 -1
  809. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/Load/XS.pm +0 -89
  810. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Attribute.pm +0 -1100
  811. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Class/Immutable/Trait.pm +0 -172
  812. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Class.pm +0 -2312
  813. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Deprecated.pm +0 -95
  814. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Instance.pm +0 -533
  815. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Method/Accessor.pm +0 -404
  816. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Method/Constructor.pm +0 -251
  817. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Method/Generated.pm +0 -142
  818. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Method/Inlined.pm +0 -191
  819. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Method/Meta.pm +0 -169
  820. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Method/Wrapped.pm +0 -333
  821. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Method.pm +0 -356
  822. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/MiniTrait.pm +0 -113
  823. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Mixin/AttributeCore.pm +0 -125
  824. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Mixin/HasAttributes.pm +0 -171
  825. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Mixin/HasMethods.pm +0 -304
  826. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Mixin/HasOverloads.pm +0 -243
  827. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Mixin.pm +0 -107
  828. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Module.pm +0 -209
  829. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Object.pm +0 -196
  830. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Overload.pm +0 -340
  831. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Package.pm +0 -460
  832. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP.pm +0 -1222
  833. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Data/UUID.pm +0 -158
  834. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Build.pm +0 -634
  835. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/API.pm +0 -293
  836. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Buffer.pm +0 -366
  837. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Bundle.pm +0 -795
  838. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Closure.pm +0 -199
  839. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Constant.pm +0 -246
  840. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/DL.pm +0 -231
  841. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Function.pm +0 -229
  842. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Internal.pm +0 -96
  843. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Lang/ASM.pm +0 -126
  844. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Lang/C.pm +0 -123
  845. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Lang/Win32.pm +0 -457
  846. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Lang.pm +0 -141
  847. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Legacy.pm +0 -140
  848. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Memory.pm +0 -268
  849. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Record/Meta.pm +0 -148
  850. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Record/TieArray.pm +0 -174
  851. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Record.pm +0 -575
  852. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/ShareConfig.pm +0 -122
  853. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Type/PointerSizeBuffer.pm +0 -162
  854. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Type/StringArray.pm +0 -272
  855. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Type/StringPointer.pm +0 -190
  856. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Type/WideString.pm +0 -529
  857. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Type.pm +0 -1399
  858. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/TypeParser/Version0.pm +0 -285
  859. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/TypeParser/Version1.pm +0 -390
  860. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/TypeParser/Version2.pm +0 -115
  861. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/TypeParser.pm +0 -183
  862. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus.pm +0 -3302
  863. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Probe/Runner/Builder.pm +0 -538
  864. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Probe/Runner/Result.pm +0 -134
  865. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Probe/Runner.pm +0 -204
  866. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Probe.pm +0 -715
  867. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Temp.pm +0 -147
  868. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/typemap +0 -46
  869. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Conflicts.pm +0 -132
  870. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/BankAccount_MethodModifiersAndSubclassing.pod +0 -384
  871. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/BinaryTree_AttributeFeatures.pod +0 -397
  872. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/BinaryTree_BuilderAndLazyBuild.pod +0 -176
  873. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/Company_Subtypes.pod +0 -615
  874. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/DateTime_ExtendingNonMooseParent.pod +0 -127
  875. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/Document_AugmentAndInner.pod +0 -197
  876. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/Genome_OverloadingSubtypesAndCoercion.pod +0 -318
  877. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/HTTP_SubtypesAndCoercion.pod +0 -345
  878. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/Immutable.pod +0 -99
  879. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/Person_BUILDARGSAndBUILD.pod +0 -180
  880. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/Point_AttributesAndSubclassing.pod +0 -489
  881. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Extending/Debugging_BaseClassRole.pod +0 -153
  882. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Extending/ExtensionOverview.pod +0 -404
  883. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Extending/Mooseish_MooseSugar.pod +0 -160
  884. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Legacy/Debugging_BaseClassReplacement.pod +0 -172
  885. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Legacy/Labeled_AttributeMetaclass.pod +0 -337
  886. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Legacy/Table_ClassMetaclass.pod +0 -132
  887. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Meta/GlobRef_InstanceMetaclass.pod +0 -304
  888. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Meta/Labeled_AttributeTrait.pod +0 -325
  889. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Meta/PrivateOrPublic_MethodMetaclass.pod +0 -224
  890. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Meta/Table_MetaclassTrait.pod +0 -157
  891. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Meta/WhyMeta.pod +0 -117
  892. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Roles/ApplicationToInstance.pod +0 -191
  893. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Roles/Comparable_CodeReuse.pod +0 -379
  894. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Roles/Restartable_AdvancedComposition.pod +0 -230
  895. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Snack/Keywords.pod +0 -240
  896. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Snack/Types.pod +0 -130
  897. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Style.pod +0 -77
  898. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook.pod +0 -289
  899. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Deprecated.pm +0 -98
  900. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AccessorMustReadWrite.pm +0 -14
  901. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AddParameterizableTypeTakesParameterizableType.pm +0 -19
  902. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AddRoleTakesAMooseMetaRoleInstance.pm +0 -19
  903. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AddRoleToARoleTakesAMooseMetaRole.pm +0 -19
  904. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ApplyTakesABlessedInstance.pm +0 -19
  905. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttachToClassNeedsAClassMOPClassInstanceOrASubclass.pm +0 -19
  906. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttributeConflictInRoles.pm +0 -32
  907. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttributeConflictInSummation.pm +0 -28
  908. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttributeExtensionIsNotSupportedInRoles.pm +0 -19
  909. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttributeIsRequired.pm +0 -45
  910. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttributeMustBeAnClassMOPMixinAttributeCoreOrSubclass.pm +0 -19
  911. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttributeNamesDoNotMatch.pm +0 -25
  912. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttributeValueIsNotAnObject.pm +0 -28
  913. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttributeValueIsNotDefined.pm +0 -22
  914. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AutoDeRefNeedsArrayRefOrHashRef.pm +0 -14
  915. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/BadOptionFormat.pm +0 -25
  916. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/BothBuilderAndDefaultAreNotAllowed.pm +0 -19
  917. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/BuilderDoesNotExist.pm +0 -14
  918. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/BuilderMethodNotSupportedForAttribute.pm +0 -14
  919. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/BuilderMethodNotSupportedForInlineAttribute.pm +0 -26
  920. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/BuilderMustBeAMethodName.pm +0 -19
  921. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CallingMethodOnAnImmutableInstance.pm +0 -19
  922. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CallingReadOnlyMethodOnAnImmutableInstance.pm +0 -19
  923. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CanExtendOnlyClasses.pm +0 -15
  924. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CanOnlyConsumeRole.pm +0 -18
  925. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CanOnlyWrapBlessedCode.pm +0 -25
  926. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CanReblessOnlyIntoASubclass.pm +0 -15
  927. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CanReblessOnlyIntoASuperclass.pm +0 -14
  928. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotAddAdditionalTypeCoercionsToUnion.pm +0 -18
  929. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotAddAsAnAttributeToARole.pm +0 -20
  930. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotApplyBaseClassRolesToRole.pm +0 -13
  931. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotAssignValueToReadOnlyAccessor.pm +0 -20
  932. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotAugmentIfLocalMethodPresent.pm +0 -13
  933. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotAugmentNoSuperMethod.pm +0 -26
  934. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotAutoDerefWithoutIsa.pm +0 -14
  935. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotAutoDereferenceTypeConstraint.pm +0 -14
  936. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotCalculateNativeType.pm +0 -14
  937. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotCallAnAbstractBaseMethod.pm +0 -19
  938. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotCallAnAbstractMethod.pm +0 -12
  939. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotCoerceAWeakRef.pm +0 -14
  940. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotCoerceAttributeWhichHasNoCoercion.pm +0 -17
  941. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotCreateHigherOrderTypeWithoutATypeParameter.pm +0 -13
  942. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotCreateMethodAliasLocalMethodIsPresent.pm +0 -25
  943. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotCreateMethodAliasLocalMethodIsPresentInClass.pm +0 -19
  944. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotDelegateLocalMethodIsPresent.pm +0 -14
  945. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotDelegateWithoutIsa.pm +0 -13
  946. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotFindDelegateMetaclass.pm +0 -14
  947. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotFindType.pm +0 -19
  948. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotFindTypeGivenToMatchOnType.pm +0 -33
  949. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotFixMetaclassCompatibility.pm +0 -26
  950. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotGenerateInlineConstraint.pm +0 -30
  951. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotInitializeMooseMetaRoleComposite.pm +0 -30
  952. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotInlineTypeConstraintCheck.pm +0 -14
  953. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotLocatePackageInINC.pm +0 -41
  954. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotMakeMetaclassCompatible.pm +0 -23
  955. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotOverrideALocalMethod.pm +0 -20
  956. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotOverrideBodyOfMetaMethods.pm +0 -19
  957. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotOverrideLocalMethodIsPresent.pm +0 -13
  958. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotOverrideNoSuperMethod.pm +0 -26
  959. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotRegisterUnnamedTypeConstraint.pm +0 -12
  960. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotUseLazyBuildAndDefaultSimultaneously.pm +0 -14
  961. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CircularReferenceInAlso.pm +0 -31
  962. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ClassDoesNotHaveInitMeta.pm +0 -22
  963. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ClassDoesTheExcludedRole.pm +0 -22
  964. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ClassNamesDoNotMatch.pm +0 -25
  965. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CloneObjectExpectsAnInstanceOfMetaclass.pm +0 -20
  966. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CodeBlockMustBeACodeRef.pm +0 -13
  967. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CoercingWithoutCoercions.pm +0 -12
  968. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CoercionAlreadyExists.pm +0 -20
  969. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CoercionNeedsTypeConstraint.pm +0 -14
  970. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ConflictDetectedInCheckRoleExclusions.pm +0 -22
  971. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ConflictDetectedInCheckRoleExclusionsInToClass.pm +0 -16
  972. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ConstructClassInstanceTakesPackageName.pm +0 -12
  973. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CouldNotCreateMethod.pm +0 -32
  974. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CouldNotCreateWriter.pm +0 -24
  975. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CouldNotEvalConstructor.pm +0 -34
  976. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CouldNotEvalDestructor.pm +0 -34
  977. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CouldNotFindTypeConstraintToCoerceFrom.pm +0 -20
  978. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CouldNotGenerateInlineAttributeMethod.pm +0 -26
  979. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CouldNotLocateTypeConstraintForUnion.pm +0 -14
  980. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CouldNotParseType.pm +0 -30
  981. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CreateMOPClassTakesArrayRefOfAttributes.pm +0 -13
  982. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CreateMOPClassTakesArrayRefOfSuperclasses.pm +0 -13
  983. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CreateMOPClassTakesHashRefOfMethods.pm +0 -13
  984. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CreateTakesArrayRefOfRoles.pm +0 -13
  985. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CreateTakesHashRefOfAttributes.pm +0 -13
  986. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CreateTakesHashRefOfMethods.pm +0 -13
  987. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/DefaultToMatchOnTypeMustBeCodeRef.pm +0 -33
  988. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/DelegationToAClassWhichIsNotLoaded.pm +0 -20
  989. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/DelegationToARoleWhichIsNotLoaded.pm +0 -20
  990. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/DelegationToATypeWhichIsNotAClass.pm +0 -14
  991. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/DoesRequiresRoleName.pm +0 -13
  992. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/EnumCalledWithAnArrayRefAndAdditionalArgs.pm +0 -24
  993. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/EnumValuesMustBeString.pm +0 -26
  994. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ExtendsMissingArgs.pm +0 -13
  995. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/HandlesMustBeAHashRef.pm +0 -20
  996. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/IllegalInheritedOptions.pm +0 -23
  997. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/IllegalMethodTypeToAddMethodModifier.pm +0 -31
  998. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/IncompatibleMetaclassOfSuperclass.pm +0 -27
  999. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InitMetaRequiresClass.pm +0 -13
  1000. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InitializeTakesUnBlessedPackageName.pm +0 -18
  1001. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InstanceBlessedIntoWrongClass.pm +0 -14
  1002. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InstanceMustBeABlessedReference.pm +0 -20
  1003. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidArgPassedToMooseUtilMetaRole.pm +0 -41
  1004. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidArgumentToMethod.pm +0 -45
  1005. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidArgumentsToTraitAliases.pm +0 -32
  1006. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidBaseTypeGivenToCreateParameterizedTypeConstraint.pm +0 -14
  1007. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidHandleValue.pm +0 -20
  1008. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidHasProvidedInARole.pm +0 -19
  1009. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidNameForType.pm +0 -17
  1010. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidOverloadOperator.pm +0 -21
  1011. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidRoleApplication.pm +0 -19
  1012. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidTypeConstraint.pm +0 -24
  1013. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidTypeGivenToCreateParameterizedTypeConstraint.pm +0 -14
  1014. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidValueForIs.pm +0 -14
  1015. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/IsaDoesNotDoTheRole.pm +0 -14
  1016. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/IsaLacksDoesMethod.pm +0 -14
  1017. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/LazyAttributeNeedsADefault.pm +0 -14
  1018. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Legacy.pm +0 -8
  1019. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MOPAttributeNewNeedsAttributeName.pm +0 -19
  1020. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MatchActionMustBeACodeRef.pm +0 -28
  1021. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MessageParameterMustBeCodeRef.pm +0 -19
  1022. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MetaclassIsAClassNotASubclassOfGivenMetaclass.pm +0 -24
  1023. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MetaclassIsARoleNotASubclassOfGivenMetaclass.pm +0 -26
  1024. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MetaclassIsNotASubclassOfGivenMetaclass.pm +0 -23
  1025. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MetaclassMustBeASubclassOfMooseMetaClass.pm +0 -14
  1026. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MetaclassMustBeASubclassOfMooseMetaRole.pm +0 -14
  1027. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MetaclassMustBeDerivedFromClassMOPClass.pm +0 -19
  1028. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MetaclassNotLoaded.pm +0 -14
  1029. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MetaclassTypeIncompatible.pm +0 -39
  1030. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MethodExpectedAMetaclassObject.pm +0 -24
  1031. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MethodExpectsFewerArgs.pm +0 -27
  1032. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MethodExpectsMoreArgs.pm +0 -25
  1033. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MethodModifierNeedsMethodName.pm +0 -13
  1034. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MethodNameConflictInRoles.pm +0 -47
  1035. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MethodNameNotFoundInInheritanceHierarchy.pm +0 -20
  1036. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MethodNameNotGiven.pm +0 -13
  1037. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustDefineAMethodName.pm +0 -13
  1038. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustDefineAnAttributeName.pm +0 -13
  1039. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustDefineAnOverloadOperator.pm +0 -13
  1040. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustHaveAtLeastOneValueToEnumerate.pm +0 -19
  1041. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustPassAHashOfOptions.pm +0 -19
  1042. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustPassAMooseMetaRoleInstanceOrSubclass.pm +0 -24
  1043. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustPassAPackageNameOrAnExistingClassMOPPackageInstance.pm +0 -19
  1044. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustPassEvenNumberOfArguments.pm +0 -25
  1045. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustPassEvenNumberOfAttributeOptions.pm +0 -24
  1046. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustProvideANameForTheAttribute.pm +0 -19
  1047. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSpecifyAtleastOneMethod.pm +0 -13
  1048. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSpecifyAtleastOneRole.pm +0 -13
  1049. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSpecifyAtleastOneRoleToApplicant.pm +0 -19
  1050. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSupplyAClassMOPAttributeInstance.pm +0 -19
  1051. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSupplyADelegateToMethod.pm +0 -19
  1052. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSupplyAMetaclass.pm +0 -20
  1053. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSupplyAMooseMetaAttributeInstance.pm +0 -19
  1054. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSupplyAnAccessorTypeToConstructWith.pm +0 -19
  1055. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSupplyAnAttributeToConstructWith.pm +0 -19
  1056. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSupplyArrayRefAsCurriedArguments.pm +0 -13
  1057. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSupplyPackageNameAndName.pm +0 -20
  1058. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NeedsTypeConstraintUnionForTypeCoercionUnion.pm +0 -25
  1059. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NeitherAttributeNorAttributeNameIsGiven.pm +0 -12
  1060. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NeitherClassNorClassNameIsGiven.pm +0 -12
  1061. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NeitherRoleNorRoleNameIsGiven.pm +0 -12
  1062. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NeitherTypeNorTypeNameIsGiven.pm +0 -12
  1063. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NoAttributeFoundInSuperClass.pm +0 -14
  1064. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NoBodyToInitializeInAnAbstractBaseClass.pm +0 -19
  1065. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NoCasesMatched.pm +0 -27
  1066. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NoConstraintCheckForTypeConstraint.pm +0 -14
  1067. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NoDestructorClassSpecified.pm +0 -13
  1068. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NoImmutableTraitSpecifiedForClass.pm +0 -17
  1069. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NoParentGivenToSubtype.pm +0 -18
  1070. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OnlyInstancesCanBeCloned.pm +0 -20
  1071. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OperatorIsRequired.pm +0 -19
  1072. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverloadConflictInSummation.pm +0 -62
  1073. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverloadRequiresAMetaClass.pm +0 -13
  1074. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverloadRequiresAMetaMethod.pm +0 -13
  1075. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverloadRequiresAMetaOverload.pm +0 -13
  1076. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverloadRequiresAMethodNameOrCoderef.pm +0 -13
  1077. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverloadRequiresAnOperator.pm +0 -13
  1078. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverloadRequiresNamesForCoderef.pm +0 -13
  1079. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverrideConflictInComposition.pm +0 -43
  1080. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverrideConflictInSummation.pm +0 -66
  1081. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/PackageDoesNotUseMooseExporter.pm +0 -28
  1082. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/PackageNameAndNameParamsNotGivenToWrap.pm +0 -25
  1083. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/PackagesAndModulesAreNotCachable.pm +0 -26
  1084. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ParameterIsNotSubtypeOfParent.pm +0 -26
  1085. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ReferencesAreNotAllowedAsDefault.pm +0 -27
  1086. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RequiredAttributeLacksInitialization.pm +0 -19
  1087. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RequiredAttributeNeedsADefault.pm +0 -14
  1088. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RequiredMethodsImportedByClass.pm +0 -46
  1089. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RequiredMethodsNotImplementedByClass.pm +0 -31
  1090. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/Attribute.pm +0 -12
  1091. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/AttributeName.pm +0 -12
  1092. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/Class.pm +0 -14
  1093. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/EitherAttributeOrAttributeName.pm +0 -49
  1094. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/Instance.pm +0 -12
  1095. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/InstanceClass.pm +0 -12
  1096. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/InvalidAttributeOptions.pm +0 -13
  1097. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/Method.pm +0 -12
  1098. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/ParamsHash.pm +0 -12
  1099. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/Role.pm +0 -16
  1100. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/RoleForCreate.pm +0 -13
  1101. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/RoleForCreateMOPClass.pm +0 -13
  1102. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/TypeConstraint.pm +0 -14
  1103. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RoleDoesTheExcludedRole.pm +0 -28
  1104. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RoleExclusionConflict.pm +0 -27
  1105. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RoleNameRequired.pm +0 -13
  1106. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RoleNameRequiredForMooseMetaRole.pm +0 -13
  1107. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RolesDoNotSupportAugment.pm +0 -12
  1108. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RolesDoNotSupportExtends.pm +0 -12
  1109. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RolesDoNotSupportInner.pm +0 -12
  1110. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RolesDoNotSupportRegexReferencesForMethodModifiers.pm +0 -20
  1111. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RolesInCreateTakesAnArrayRef.pm +0 -14
  1112. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RolesListMustBeInstancesOfMooseMetaRole.pm +0 -26
  1113. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/SingleParamsToNewMustBeHashRef.pm +0 -12
  1114. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/TriggerMustBeACodeRef.pm +0 -14
  1115. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/TypeConstraintCannotBeUsedForAParameterizableType.pm +0 -25
  1116. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/TypeConstraintIsAlreadyCreated.pm +0 -26
  1117. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/TypeParameterMustBeMooseMetaType.pm +0 -13
  1118. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/UnableToCanonicalizeHandles.pm +0 -20
  1119. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/UnableToCanonicalizeNonRolePackage.pm +0 -20
  1120. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/UnableToRecognizeDelegateMetaclass.pm +0 -22
  1121. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/UndefinedHashKeysPassedToMethod.pm +0 -25
  1122. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/UnionCalledWithAnArrayRefAndAdditionalArgs.pm +0 -24
  1123. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/UnionTakesAtleastTwoTypeNames.pm +0 -12
  1124. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ValidationFailedForInlineTypeConstraint.pm +0 -49
  1125. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ValidationFailedForTypeConstraint.pm +0 -33
  1126. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/WrapTakesACodeRefToBless.pm +0 -26
  1127. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/WrongTypeConstraintGiven.pm +0 -21
  1128. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception.pm +0 -211
  1129. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exporter.pm +0 -1048
  1130. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Intro.pod +0 -77
  1131. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Attributes.pod +0 -709
  1132. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/BestPractices.pod +0 -292
  1133. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Classes.pod +0 -218
  1134. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Concepts.pod +0 -439
  1135. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Construction.pod +0 -228
  1136. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Contributing.pod +0 -545
  1137. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Delegation.pod +0 -313
  1138. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Delta.pod +0 -1275
  1139. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Exceptions/Manifest.pod +0 -4124
  1140. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Exceptions.pod +0 -239
  1141. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/FAQ.pod +0 -470
  1142. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/MOP.pod +0 -214
  1143. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/MethodModifiers.pod +0 -449
  1144. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/MooseX.pod +0 -326
  1145. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Resources.pod +0 -526
  1146. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Roles.pod +0 -557
  1147. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Support.pod +0 -204
  1148. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Types.pod +0 -501
  1149. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Unsweetened.pod +0 -386
  1150. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual.pod +0 -334
  1151. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native/Trait/Array.pm +0 -387
  1152. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native/Trait/Bool.pm +0 -146
  1153. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native/Trait/Code.pm +0 -129
  1154. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native/Trait/Counter.pm +0 -157
  1155. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native/Trait/Hash.pm +0 -227
  1156. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native/Trait/Number.pm +0 -155
  1157. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native/Trait/String.pm +0 -187
  1158. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native/Trait.pm +0 -244
  1159. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native.pm +0 -299
  1160. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute.pm +0 -1810
  1161. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Class/Immutable/Trait.pm +0 -123
  1162. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Class.pm +0 -1014
  1163. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Instance.pm +0 -109
  1164. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/Writer.pm +0 -27
  1165. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/accessor.pm +0 -56
  1166. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/clear.pm +0 -28
  1167. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/count.pm +0 -22
  1168. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/delete.pm +0 -50
  1169. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/elements.pm +0 -22
  1170. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/first.pm +0 -42
  1171. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/first_index.pm +0 -51
  1172. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/get.pm +0 -31
  1173. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/grep.pm +0 -41
  1174. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/insert.pm +0 -58
  1175. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/is_empty.pm +0 -22
  1176. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/join.pm +0 -41
  1177. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/map.pm +0 -41
  1178. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/natatime.pm +0 -66
  1179. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/pop.pm +0 -47
  1180. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/push.pm +0 -36
  1181. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/reduce.pm +0 -42
  1182. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/set.pm +0 -64
  1183. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/shallow_clone.pm +0 -26
  1184. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/shift.pm +0 -47
  1185. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/shuffle.pm +0 -24
  1186. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/sort.pm +0 -44
  1187. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/sort_in_place.pm +0 -45
  1188. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/splice.pm +0 -72
  1189. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/uniq.pm +0 -24
  1190. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/unshift.pm +0 -36
  1191. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array.pm +0 -28
  1192. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Bool/not.pm +0 -20
  1193. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Bool/set.pm +0 -24
  1194. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Bool/toggle.pm +0 -29
  1195. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Bool/unset.pm +0 -24
  1196. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Code/execute.pm +0 -20
  1197. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Code/execute_method.pm +0 -20
  1198. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Collection.pm +0 -167
  1199. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Counter/Writer.pm +0 -24
  1200. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Counter/dec.pm +0 -30
  1201. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Counter/inc.pm +0 -30
  1202. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Counter/reset.pm +0 -36
  1203. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Counter/set.pm +0 -25
  1204. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/Writer.pm +0 -41
  1205. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/accessor.pm +0 -61
  1206. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/clear.pm +0 -37
  1207. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/count.pm +0 -22
  1208. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/defined.pm +0 -31
  1209. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/delete.pm +0 -46
  1210. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/elements.pm +0 -23
  1211. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/exists.pm +0 -31
  1212. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/get.pm +0 -35
  1213. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/is_empty.pm +0 -22
  1214. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/keys.pm +0 -22
  1215. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/kv.pm +0 -23
  1216. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/set.pm +0 -99
  1217. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/shallow_clone.pm +0 -26
  1218. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/values.pm +0 -22
  1219. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash.pm +0 -28
  1220. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Number/abs.pm +0 -29
  1221. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Number/add.pm +0 -31
  1222. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Number/div.pm +0 -31
  1223. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Number/mod.pm +0 -31
  1224. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Number/mul.pm +0 -31
  1225. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Number/set.pm +0 -25
  1226. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Number/sub.pm +0 -31
  1227. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Reader.pm +0 -47
  1228. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/append.pm +0 -31
  1229. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/chomp.pm +0 -40
  1230. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/chop.pm +0 -40
  1231. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/clear.pm +0 -24
  1232. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/inc.pm +0 -33
  1233. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/length.pm +0 -22
  1234. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/match.pm +0 -42
  1235. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/prepend.pm +0 -31
  1236. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/replace.pm +0 -69
  1237. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/substr.pm +0 -123
  1238. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Writer.pm +0 -174
  1239. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native.pm +0 -157
  1240. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor.pm +0 -208
  1241. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Augmented.pm +0 -171
  1242. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Constructor.pm +0 -145
  1243. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Delegation.pm +0 -307
  1244. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Destructor.pm +0 -251
  1245. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Meta.pm +0 -112
  1246. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Overridden.pm +0 -160
  1247. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method.pm +0 -100
  1248. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Mixin/AttributeCore.pm +0 -185
  1249. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Object/Trait.pm +0 -107
  1250. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Application/RoleSummation.pm +0 -440
  1251. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Application/ToClass.pm +0 -314
  1252. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Application/ToInstance.pm +0 -142
  1253. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Application/ToRole.pm +0 -283
  1254. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Application.pm +0 -225
  1255. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Attribute.pm +0 -259
  1256. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Composite.pm +0 -320
  1257. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Method/Conflicting.pm +0 -135
  1258. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Method/Required.pm +0 -127
  1259. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Method.pm +0 -101
  1260. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role.pm +0 -1059
  1261. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeCoercion/Union.pm +0 -141
  1262. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeCoercion.pm +0 -239
  1263. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint/Class.pm +0 -261
  1264. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint/DuckType.pm +0 -217
  1265. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint/Enum.pm +0 -235
  1266. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint/Parameterizable.pm +0 -200
  1267. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint/Parameterized.pm +0 -188
  1268. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint/Registry.pm +0 -206
  1269. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint/Role.pm +0 -235
  1270. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint/Union.pm +0 -346
  1271. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint.pm +0 -607
  1272. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Object.pm +0 -271
  1273. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Role.pm +0 -377
  1274. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Spec/Role.pod +0 -397
  1275. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Unsweetened.pod +0 -77
  1276. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Util/MetaRole.pm +0 -329
  1277. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Util/TypeConstraints/Builtins.pm +0 -305
  1278. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Util/TypeConstraints.pm +0 -1443
  1279. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Util.pm +0 -725
  1280. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose.pm +0 -1268
  1281. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/PPI/XS.pm +0 -137
  1282. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Package/Stash/XS.pm +0 -110
  1283. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Params/Util/PP.pm +0 -276
  1284. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Params/Util.pm +0 -486
  1285. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Scalar/Util/Numeric.pm +0 -137
  1286. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Test/Moose.pm +0 -228
  1287. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Want.pm +0 -742
  1288. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Attribute/Util/.packlist +0 -12
  1289. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Capture/Tiny/.packlist +0 -2
  1290. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Class/Load/.packlist +0 -3
  1291. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Class/Load/XS/.packlist +0 -3
  1292. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Class/Load/XS/XS.so +0 -0
  1293. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Data/Cmp/.packlist +0 -6
  1294. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Data/OptList/.packlist +0 -2
  1295. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Data/UUID/.packlist +0 -3
  1296. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Data/UUID/UUID.so +0 -0
  1297. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Devel/GlobalDestruction/.packlist +0 -2
  1298. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Devel/OverloadInfo/.packlist +0 -2
  1299. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Devel/StackTrace/.packlist +0 -4
  1300. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Eval/Closure/.packlist +0 -2
  1301. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/ExtUtils/Config/.packlist +0 -4
  1302. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/ExtUtils/Helpers/.packlist +0 -8
  1303. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/ExtUtils/InstallPaths/.packlist +0 -2
  1304. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/FFI/CheckLib/.packlist +0 -2
  1305. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/FFI/Platypus/.packlist +0 -98
  1306. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/FFI/Platypus/Constant/Constant.txt +0 -1
  1307. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/FFI/Platypus/Memory/Memory.txt +0 -1
  1308. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/FFI/Platypus/Platypus.so +0 -0
  1309. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/FFI/Platypus/Record/Meta/Meta.txt +0 -1
  1310. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/File/Which/.packlist +0 -2
  1311. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/IPC/System/Simple/.packlist +0 -2
  1312. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/MRO/Compat/.packlist +0 -2
  1313. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Module/Implementation/.packlist +0 -2
  1314. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Module/Runtime/.packlist +0 -2
  1315. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Module/Runtime/Conflicts/.packlist +0 -2
  1316. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Moose/.packlist +0 -574
  1317. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Moose/Moose.so +0 -0
  1318. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Nice/Try/.packlist +0 -2
  1319. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/PPI/.packlist +0 -186
  1320. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/PPI/XS/.packlist +0 -3
  1321. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/PPI/XS/XS.so +0 -0
  1322. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Package/DeprecationManager/.packlist +0 -2
  1323. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Package/Stash/.packlist +0 -6
  1324. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Package/Stash/XS/.packlist +0 -3
  1325. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Package/Stash/XS/XS.so +0 -0
  1326. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Params/Util/.packlist +0 -5
  1327. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Params/Util/Util.so +0 -0
  1328. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Path/Tiny/.packlist +0 -2
  1329. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Safe/Isa/.packlist +0 -2
  1330. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Scalar/Util/Numeric/.packlist +0 -3
  1331. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Scalar/Util/Numeric/Numeric.so +0 -0
  1332. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Scope/Guard/.packlist +0 -2
  1333. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Sub/Exporter/.packlist +0 -8
  1334. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Sub/Exporter/Progressive/.packlist +0 -2
  1335. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Sub/Install/.packlist +0 -2
  1336. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Task/Weaken/.packlist +0 -2
  1337. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Test/Fatal/.packlist +0 -2
  1338. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Try/Tiny/.packlist +0 -2
  1339. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Want/.packlist +0 -3
  1340. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Want/Want.so +0 -0
  1341. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/YAML/PP/.packlist +0 -55
  1342. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/aliased/.packlist +0 -2
  1343. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/autobox/.packlist +0 -5
  1344. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/autobox/autobox.so +0 -0
  1345. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/autobox/universal.pm +0 -13
  1346. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/autobox.pm +0 -404
  1347. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/autobox.pod +0 -709
  1348. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/metaclass.pm +0 -155
  1349. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/oose.pm +0 -137
  1350. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/perllocal.pod +0 -968
  1351. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Exception/Exception.pm +0 -29
  1352. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Exception/ExceptionSerializer.pm +0 -25
  1353. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Exception/ExceptionThrower.pm +0 -40
  1354. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Exception/SdkExceptionHelper.pm +0 -93
  1355. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/AbstractHandler.pm +0 -11
  1356. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/AbstractCommandHandler.pm +0 -48
  1357. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/ArrayGetItemHandler.pm +0 -38
  1358. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/ArrayGetRankHandler.pm +0 -29
  1359. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/ArrayGetSizeHandler.pm +0 -37
  1360. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/ArraySetItemHandler.pm +0 -40
  1361. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/CastingHandler.pm +0 -22
  1362. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/CreateClassInstanceHandler.pm +0 -37
  1363. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/DestructReferenceHandler.pm +0 -39
  1364. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/GetInstanceFieldHandler.pm +0 -39
  1365. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/GetStaticFieldHandler.pm +0 -40
  1366. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/GetTypeHandler.pm +0 -40
  1367. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/InvokeGlobalFunctionHandler.pm +0 -63
  1368. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/InvokeInstanceMethodHandler.pm +0 -51
  1369. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/InvokeStaticMethodHandler.pm +0 -51
  1370. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/LoadLibraryHandler.pm +0 -42
  1371. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/ResolveInstanceHandler.pm +0 -38
  1372. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/SetInstanceFieldHandler.pm +0 -40
  1373. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/SetStaticFieldHandler.pm +0 -42
  1374. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/ValueHandler.pm +0 -29
  1375. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/HandlerDictionary.pm +0 -24
  1376. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/PerlHandler.pm +0 -174
  1377. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/ReferencesCache.pm +0 -45
  1378. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Interpreter/Interpreter.pm +0 -44
  1379. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Protocol/CommandDeserializer.pm +0 -204
  1380. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Protocol/CommandSerializer.pm +0 -88
  1381. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Protocol/TypeDeserializer.pm +0 -97
  1382. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Protocol/TypeSerializer.pm +0 -145
  1383. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Receiver/Receiver.pm +0 -41
  1384. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Transmitter/PerlTransmitter.pm +0 -29
  1385. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Transmitter/PerlTransmitterWrapper.pm +0 -131
  1386. package/Binaries/Perl/Linux/X64/lib/Javonet/Javonet.pm +0 -82
  1387. package/Binaries/Perl/Linux/X64/lib/Javonet/JavonetPerlSdk.pm +0 -2
  1388. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Core/PerlCommand.pm +0 -101
  1389. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Core/PerlCommandType.pm +0 -58
  1390. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Core/RuntimeLib.pm +0 -29
  1391. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Core/RuntimeLogger.pm +0 -37
  1392. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Core/StringEncodingMode.pm +0 -22
  1393. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Core/Type.pm +0 -30
  1394. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractEnumInvocationContext.pm +0 -22
  1395. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractInstanceContext.pm +0 -18
  1396. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractInvocationContext.pm +0 -13
  1397. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractMethodInvocationContext.pm +0 -18
  1398. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractRuntimeContext.pm +0 -17
  1399. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractRuntimeFactory.pm +0 -26
  1400. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractTypeContext.pm +0 -15
  1401. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/ConnectionType.pm +0 -19
  1402. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/InvocationContext.pm +0 -450
  1403. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/RuntimeContext.pm +0 -292
  1404. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/RuntimeFactory.pm +0 -114
  1405. package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-events +0 -62
  1406. package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-events.bat +0 -79
  1407. package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-highlight +0 -54
  1408. package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-highlight.bat +0 -71
  1409. package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-load +0 -155
  1410. package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-load-dump +0 -314
  1411. package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-load-dump.bat +0 -331
  1412. package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-load.bat +0 -172
  1413. package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-parse-emit +0 -123
  1414. package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-parse-emit.bat +0 -140
  1415. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Attribute/Abstract.pm +0 -74
  1416. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Attribute/Alias.pm +0 -75
  1417. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Attribute/Memoize.pm +0 -77
  1418. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Attribute/Method.pm +0 -151
  1419. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Attribute/SigHandler.pm +0 -61
  1420. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Attribute/Util.pm +0 -101
  1421. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Data/Cmp/Numeric.pm +0 -188
  1422. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Data/Cmp/StrOrNumeric.pm +0 -200
  1423. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Data/Cmp.pm +0 -278
  1424. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Attribute-Util-1.07/MYMETA.json +0 -43
  1425. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Attribute-Util-1.07/install.json +0 -1
  1426. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Data-Cmp-0.010/MYMETA.json +0 -591
  1427. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Data-Cmp-0.010/install.json +0 -1
  1428. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Data-UUID-1.227/MYMETA.json +0 -50
  1429. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Data-UUID-1.227/install.json +0 -1
  1430. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Nice-Try-v1.3.15/MYMETA.json +0 -68
  1431. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Nice-Try-v1.3.15/install.json +0 -1
  1432. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/PPI-1.281/MYMETA.json +0 -1115
  1433. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/PPI-1.281/install.json +0 -1
  1434. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/PPI-XS-0.910/MYMETA.json +0 -1045
  1435. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/PPI-XS-0.910/install.json +0 -1
  1436. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Safe-Isa-1.000010/MYMETA.json +0 -64
  1437. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Safe-Isa-1.000010/install.json +0 -1
  1438. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Scalar-Util-Numeric-0.40/MYMETA.json +0 -50
  1439. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Scalar-Util-Numeric-0.40/install.json +0 -1
  1440. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Test-Fatal-0.017/MYMETA.json +0 -598
  1441. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Test-Fatal-0.017/install.json +0 -1
  1442. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Want-0.29/MYMETA.json +0 -40
  1443. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Want-0.29/install.json +0 -1
  1444. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/YAML-PP-v0.39.0/MYMETA.json +0 -222
  1445. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/YAML-PP-v0.39.0/install.json +0 -1
  1446. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/autobox-v3.0.2/MYMETA.json +0 -53
  1447. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/autobox-v3.0.2/install.json +0 -1
  1448. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/Data/UUID.pm +0 -158
  1449. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/PPI/XS.pm +0 -137
  1450. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/Scalar/Util/Numeric.pm +0 -137
  1451. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/Want.pm +0 -742
  1452. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Attribute/Util/.packlist +0 -6
  1453. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Data/Cmp/.packlist +0 -3
  1454. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Data/UUID/.packlist +0 -2
  1455. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Data/UUID/UUID.xs.dll +0 -0
  1456. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Nice/Try/.packlist +0 -1
  1457. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/PPI/.packlist +0 -95
  1458. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/PPI/XS/.packlist +0 -2
  1459. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/PPI/XS/XS.xs.dll +0 -0
  1460. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Safe/Isa/.packlist +0 -1
  1461. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Scalar/Util/Numeric/.packlist +0 -2
  1462. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Scalar/Util/Numeric/Numeric.xs.dll +0 -0
  1463. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Test/Fatal/.packlist +0 -1
  1464. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Want/.packlist +0 -2
  1465. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Want/Want.xs.dll +0 -0
  1466. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/YAML/PP/.packlist +0 -39
  1467. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/autobox/.packlist +0 -4
  1468. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/autobox/autobox.xs.dll +0 -0
  1469. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/autobox/universal.pm +0 -13
  1470. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/autobox.pm +0 -404
  1471. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/autobox.pod +0 -709
  1472. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/perllocal.pod +0 -264
  1473. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Nice/Try.pm +0 -3257
  1474. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Cache.pm +0 -301
  1475. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Document/File.pm +0 -136
  1476. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Document/Fragment.pm +0 -90
  1477. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Document/Normalized.pm +0 -315
  1478. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Document.pm +0 -1012
  1479. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Dumper.pm +0 -309
  1480. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Element.pm +0 -907
  1481. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Exception/ParserRejection.pm +0 -10
  1482. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Exception.pm +0 -108
  1483. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Find.pm +0 -391
  1484. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Lexer.pm +0 -1584
  1485. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Node.pm +0 -831
  1486. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Normal/Standard.pm +0 -139
  1487. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Normal.pm +0 -257
  1488. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Singletons.pm +0 -92
  1489. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Break.pm +0 -75
  1490. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Compound.pm +0 -205
  1491. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Data.pm +0 -81
  1492. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/End.pm +0 -79
  1493. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Expression.pm +0 -67
  1494. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Given.pm +0 -90
  1495. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Include/Perl6.pm +0 -87
  1496. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Include.pm +0 -365
  1497. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Null.pm +0 -75
  1498. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Package.pm +0 -145
  1499. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Scheduled.pm +0 -124
  1500. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Sub.pm +0 -222
  1501. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Unknown.pm +0 -68
  1502. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/UnmatchedBrace.pm +0 -80
  1503. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Variable.pm +0 -195
  1504. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/When.pm +0 -100
  1505. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement.pm +0 -344
  1506. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/Block.pm +0 -82
  1507. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/Condition.pm +0 -67
  1508. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/Constructor.pm +0 -62
  1509. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/For.pm +0 -77
  1510. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/Given.pm +0 -63
  1511. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/List.pm +0 -87
  1512. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/Signature.pm +0 -61
  1513. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/Subscript.pm +0 -68
  1514. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/Unknown.pm +0 -69
  1515. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/When.pm +0 -63
  1516. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure.pm +0 -348
  1517. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/ArrayIndex.pm +0 -77
  1518. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Attribute.pm +0 -176
  1519. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/BOM.pm +0 -113
  1520. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Cast.pm +0 -87
  1521. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Comment.pm +0 -146
  1522. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/DashedWord.pm +0 -96
  1523. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Data.pm +0 -116
  1524. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/End.pm +0 -111
  1525. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/HereDoc.pm +0 -338
  1526. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Label.pm +0 -58
  1527. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Magic.pm +0 -200
  1528. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Number/Binary.pm +0 -117
  1529. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Number/Exp.pm +0 -146
  1530. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Number/Float.pm +0 -140
  1531. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Number/Hex.pm +0 -108
  1532. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Number/Octal.pm +0 -115
  1533. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Number/Version.pm +0 -164
  1534. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Number.pm +0 -166
  1535. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Operator.pm +0 -124
  1536. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Pod.pm +0 -159
  1537. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Prototype.pm +0 -100
  1538. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Quote/Double.pm +0 -138
  1539. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Quote/Interpolate.pm +0 -76
  1540. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Quote/Literal.pm +0 -81
  1541. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Quote/Single.pm +0 -93
  1542. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Quote.pm +0 -120
  1543. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/QuoteLike/Backtick.pm +0 -62
  1544. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/QuoteLike/Command.pm +0 -62
  1545. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/QuoteLike/Readline.pm +0 -71
  1546. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/QuoteLike/Regexp.pm +0 -126
  1547. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/QuoteLike/Words.pm +0 -88
  1548. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/QuoteLike.pm +0 -77
  1549. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Regexp/Match.pm +0 -76
  1550. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Regexp/Substitute.pm +0 -66
  1551. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Regexp/Transliterate.pm +0 -70
  1552. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Regexp.pm +0 -136
  1553. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Separator.pm +0 -64
  1554. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Structure.pm +0 -209
  1555. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Symbol.pm +0 -241
  1556. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Unknown.pm +0 -506
  1557. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Whitespace.pm +0 -454
  1558. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Word.pm +0 -375
  1559. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/_QuoteEngine/Full.pm +0 -450
  1560. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/_QuoteEngine/Simple.pm +0 -67
  1561. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/_QuoteEngine.pm +0 -240
  1562. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token.pm +0 -245
  1563. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Tokenizer.pm +0 -1123
  1564. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Transform/UpdateCopyright.pm +0 -179
  1565. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Transform.pm +0 -240
  1566. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Util.pm +0 -72
  1567. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/XSAccessor.pm +0 -165
  1568. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI.pm +0 -822
  1569. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Safe/Isa.pm +0 -213
  1570. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Test/Fatal.pm +0 -477
  1571. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Common.pm +0 -273
  1572. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Constructor.pm +0 -435
  1573. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Dumper.pm +0 -283
  1574. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Emitter.pm +0 -1165
  1575. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Exception.pm +0 -79
  1576. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Grammar.pm +0 -2150
  1577. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Highlight.pm +0 -235
  1578. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Lexer.pm +0 -962
  1579. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Loader.pm +0 -103
  1580. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Parser.pm +0 -1469
  1581. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Perl.pm +0 -83
  1582. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Reader.pm +0 -78
  1583. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Render.pm +0 -155
  1584. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Representer.pm +0 -230
  1585. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/Binary.pm +0 -102
  1586. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/Catchall.pm +0 -76
  1587. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/Core.pm +0 -155
  1588. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/Failsafe.pm +0 -71
  1589. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/Include.pm +0 -259
  1590. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/JSON.pm +0 -259
  1591. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/Merge.pm +0 -109
  1592. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/Perl.pm +0 -1004
  1593. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/Tie/IxHash.pm +0 -156
  1594. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/YAML1_1.pm +0 -249
  1595. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema.pm +0 -447
  1596. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Type/MergeKey.pm +0 -40
  1597. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Writer/File.pm +0 -104
  1598. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Writer.pm +0 -89
  1599. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP.pm +0 -1547
  1600. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Exception/Exception.pm +0 -29
  1601. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Exception/ExceptionSerializer.pm +0 -25
  1602. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Exception/ExceptionThrower.pm +0 -40
  1603. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Exception/SdkExceptionHelper.pm +0 -93
  1604. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/AbstractHandler.pm +0 -11
  1605. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/AbstractCommandHandler.pm +0 -48
  1606. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/ArrayGetItemHandler.pm +0 -38
  1607. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/ArrayGetRankHandler.pm +0 -29
  1608. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/ArrayGetSizeHandler.pm +0 -37
  1609. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/ArraySetItemHandler.pm +0 -40
  1610. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/CastingHandler.pm +0 -22
  1611. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/CreateClassInstanceHandler.pm +0 -37
  1612. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/DestructReferenceHandler.pm +0 -39
  1613. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/GetInstanceFieldHandler.pm +0 -39
  1614. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/GetStaticFieldHandler.pm +0 -40
  1615. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/GetTypeHandler.pm +0 -40
  1616. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/InvokeGlobalFunctionHandler.pm +0 -63
  1617. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/InvokeInstanceMethodHandler.pm +0 -51
  1618. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/InvokeStaticMethodHandler.pm +0 -51
  1619. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/LoadLibraryHandler.pm +0 -42
  1620. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/ResolveInstanceHandler.pm +0 -38
  1621. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/SetInstanceFieldHandler.pm +0 -40
  1622. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/SetStaticFieldHandler.pm +0 -42
  1623. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/ValueHandler.pm +0 -29
  1624. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/HandlerDictionary.pm +0 -24
  1625. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/PerlHandler.pm +0 -174
  1626. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/ReferencesCache.pm +0 -45
  1627. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Interpreter/Interpreter.pm +0 -44
  1628. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Protocol/CommandDeserializer.pm +0 -204
  1629. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Protocol/CommandSerializer.pm +0 -88
  1630. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Protocol/TypeDeserializer.pm +0 -97
  1631. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Protocol/TypeSerializer.pm +0 -145
  1632. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Receiver/Receiver.pm +0 -41
  1633. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Transmitter/PerlTransmitter.pm +0 -29
  1634. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Transmitter/PerlTransmitterWrapper.pm +0 -131
  1635. package/Binaries/Perl/Windows/X64/lib/Javonet/Javonet.pm +0 -82
  1636. package/Binaries/Perl/Windows/X64/lib/Javonet/JavonetPerlSdk.pm +0 -2
  1637. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Core/PerlCommand.pm +0 -101
  1638. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Core/PerlCommandType.pm +0 -58
  1639. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Core/RuntimeLib.pm +0 -29
  1640. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Core/RuntimeLogger.pm +0 -37
  1641. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Core/StringEncodingMode.pm +0 -22
  1642. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Core/Type.pm +0 -30
  1643. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractEnumInvocationContext.pm +0 -22
  1644. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractInstanceContext.pm +0 -18
  1645. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractInvocationContext.pm +0 -13
  1646. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractMethodInvocationContext.pm +0 -18
  1647. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractRuntimeContext.pm +0 -17
  1648. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractRuntimeFactory.pm +0 -26
  1649. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractTypeContext.pm +0 -15
  1650. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/ConnectionType.pm +0 -19
  1651. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/InvocationContext.pm +0 -450
  1652. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/RuntimeContext.pm +0 -292
  1653. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/RuntimeFactory.pm +0 -114
  1654. package/Binaries/Python/javonet/core/__init__.py +0 -0
  1655. package/Binaries/Python/javonet/core/callback/__init__.py +0 -0
  1656. package/Binaries/Python/javonet/core/callback/callbackFunc.py +0 -7
  1657. package/Binaries/Python/javonet/core/delegateCache/DelegatesCache.py +0 -39
  1658. package/Binaries/Python/javonet/core/delegateCache/__init__.py +0 -0
  1659. package/Binaries/Python/javonet/core/handler/AbstractCommandHandler.py +0 -20
  1660. package/Binaries/Python/javonet/core/handler/AbstractHandler.py +0 -3
  1661. package/Binaries/Python/javonet/core/handler/ArrayGetItemHandler.py +0 -27
  1662. package/Binaries/Python/javonet/core/handler/ArrayGetRankHandler.py +0 -25
  1663. package/Binaries/Python/javonet/core/handler/ArrayGetSizeHandler.py +0 -24
  1664. package/Binaries/Python/javonet/core/handler/ArrayHandler.py +0 -13
  1665. package/Binaries/Python/javonet/core/handler/ArraySetItemHandler.py +0 -39
  1666. package/Binaries/Python/javonet/core/handler/CastingHandler.py +0 -6
  1667. package/Binaries/Python/javonet/core/handler/CreateClassInstanceHandler.py +0 -22
  1668. package/Binaries/Python/javonet/core/handler/DestructReferenceHandler.py +0 -13
  1669. package/Binaries/Python/javonet/core/handler/EnableNamespaceHandler.py +0 -28
  1670. package/Binaries/Python/javonet/core/handler/EnableTypeHandler.py +0 -28
  1671. package/Binaries/Python/javonet/core/handler/GetEnumItemHandler.py +0 -29
  1672. package/Binaries/Python/javonet/core/handler/GetEnumNameHandler.py +0 -22
  1673. package/Binaries/Python/javonet/core/handler/GetEnumValueHandler.py +0 -22
  1674. package/Binaries/Python/javonet/core/handler/GetInstanceFieldHandler.py +0 -27
  1675. package/Binaries/Python/javonet/core/handler/GetInstanceMethodAsDelegateHandler.py +0 -29
  1676. package/Binaries/Python/javonet/core/handler/GetStaticFieldHandler.py +0 -27
  1677. package/Binaries/Python/javonet/core/handler/GetStaticMethodAsDelegateHandler.py +0 -31
  1678. package/Binaries/Python/javonet/core/handler/GetTypeHandler.py +0 -85
  1679. package/Binaries/Python/javonet/core/handler/Handler.py +0 -100
  1680. package/Binaries/Python/javonet/core/handler/HandlerDictionary.py +0 -8
  1681. package/Binaries/Python/javonet/core/handler/InvokeDelegateHandler.py +0 -27
  1682. package/Binaries/Python/javonet/core/handler/InvokeGlobalFunctionHandler.py +0 -46
  1683. package/Binaries/Python/javonet/core/handler/InvokeInstanceMethodHandler.py +0 -31
  1684. package/Binaries/Python/javonet/core/handler/InvokeStaticMethodHandler.py +0 -33
  1685. package/Binaries/Python/javonet/core/handler/LoadLibraryHandler.py +0 -40
  1686. package/Binaries/Python/javonet/core/handler/PassDelegateHandler.py +0 -21
  1687. package/Binaries/Python/javonet/core/handler/ResolveInstanceHandler.py +0 -19
  1688. package/Binaries/Python/javonet/core/handler/SetInstanceFieldHandler.py +0 -29
  1689. package/Binaries/Python/javonet/core/handler/SetStaticFieldHandler.py +0 -29
  1690. package/Binaries/Python/javonet/core/handler/ValueHandler.py +0 -6
  1691. package/Binaries/Python/javonet/core/handler/__init__.py +0 -0
  1692. package/Binaries/Python/javonet/core/interpreter/Interpreter.py +0 -55
  1693. package/Binaries/Python/javonet/core/interpreter/__init__.py +0 -0
  1694. package/Binaries/Python/javonet/core/namespaceCache/NamespaceCache.py +0 -44
  1695. package/Binaries/Python/javonet/core/namespaceCache/__init__.py +0 -0
  1696. package/Binaries/Python/javonet/core/protocol/CommandDeserializer.py +0 -164
  1697. package/Binaries/Python/javonet/core/protocol/CommandSerializer.py +0 -29
  1698. package/Binaries/Python/javonet/core/protocol/TypeDeserializer.py +0 -64
  1699. package/Binaries/Python/javonet/core/protocol/TypeSerializer.py +0 -96
  1700. package/Binaries/Python/javonet/core/protocol/__init__.py +0 -0
  1701. package/Binaries/Python/javonet/core/receiver/Receiver.py +0 -42
  1702. package/Binaries/Python/javonet/core/receiver/__init__.py +0 -0
  1703. package/Binaries/Python/javonet/core/referenceCache/ReferencesCache.py +0 -39
  1704. package/Binaries/Python/javonet/core/referenceCache/__init__.py +0 -0
  1705. package/Binaries/Python/javonet/core/transmitter/Transmitter.py +0 -20
  1706. package/Binaries/Python/javonet/core/transmitter/TransmitterWrapper.py +0 -110
  1707. package/Binaries/Python/javonet/core/transmitter/__init__.py +0 -0
  1708. package/Binaries/Python/javonet/core/typeCache/TypeCache.py +0 -44
  1709. package/Binaries/Python/javonet/core/typeCache/__init__.py +0 -0
  1710. package/Binaries/Python/javonet/core/webSocketClient/WebSocketClient.py +0 -32
  1711. package/Binaries/Python/javonet/utils/Command.py +0 -90
  1712. package/Binaries/Python/javonet/utils/CommandType.py +0 -46
  1713. package/Binaries/Python/javonet/utils/ConnectionType.py +0 -7
  1714. package/Binaries/Python/javonet/utils/ExceptionType.py +0 -55
  1715. package/Binaries/Python/javonet/utils/RuntimeLogger.py +0 -30
  1716. package/Binaries/Python/javonet/utils/RuntimeName.py +0 -18
  1717. package/Binaries/Python/javonet/utils/RuntimeNameHandler.py +0 -30
  1718. package/Binaries/Python/javonet/utils/StringEncodingMode.py +0 -8
  1719. package/Binaries/Python/javonet/utils/Type.py +0 -16
  1720. package/Binaries/Python/javonet/utils/UtilsConst.py +0 -42
  1721. package/Binaries/Python/javonet/utils/__init__.py +0 -0
  1722. package/Binaries/Python/javonet/utils/connectionData/IConnectionData.py +0 -18
  1723. package/Binaries/Python/javonet/utils/connectionData/InMemoryConnectionData.py +0 -23
  1724. package/Binaries/Python/javonet/utils/connectionData/TcpConnectionData.py +0 -67
  1725. package/Binaries/Python/javonet/utils/connectionData/WsConnectionData.py +0 -30
  1726. package/Binaries/Python/javonet/utils/connectionData/__init__.py +0 -0
  1727. package/Binaries/Python/javonet/utils/exception/ExceptionSerializer.py +0 -66
  1728. package/Binaries/Python/javonet/utils/exception/ExceptionThrower.py +0 -81
  1729. package/Binaries/Python/javonet/utils/exception/JavonetException.py +0 -10
  1730. package/Binaries/Python/javonet/utils/exception/__init__.py +0 -0
  1731. package/Binaries/Python/javonet/utils/messageHelper/MessageHelper.py +0 -86
  1732. package/Binaries/Python/javonet/utils/messageHelper/__init__.py +0 -0
  1733. package/Binaries/Python2/javonet/__init__.py +0 -32
  1734. package/Binaries/Python2/javonet/core/__init__.py +0 -1
  1735. package/Binaries/Python2/javonet/core/callback/__init__.py +0 -4
  1736. package/Binaries/Python2/javonet/core/callback/callbackFunc.py +0 -20
  1737. package/Binaries/Python2/javonet/core/delegateCache/DelegatesCache.py +0 -73
  1738. package/Binaries/Python2/javonet/core/delegateCache/__init__.py +0 -4
  1739. package/Binaries/Python2/javonet/core/handler/AbstractCommandHandler.py +0 -45
  1740. package/Binaries/Python2/javonet/core/handler/AbstractHandler.py +0 -9
  1741. package/Binaries/Python2/javonet/core/handler/ArrayGetItemHandler.py +0 -51
  1742. package/Binaries/Python2/javonet/core/handler/ArrayGetRankHandler.py +0 -41
  1743. package/Binaries/Python2/javonet/core/handler/ArrayGetSizeHandler.py +0 -45
  1744. package/Binaries/Python2/javonet/core/handler/ArrayHandler.py +0 -25
  1745. package/Binaries/Python2/javonet/core/handler/ArraySetItemHandler.py +0 -60
  1746. package/Binaries/Python2/javonet/core/handler/CastingHandler.py +0 -11
  1747. package/Binaries/Python2/javonet/core/handler/CreateClassInstanceHandler.py +0 -39
  1748. package/Binaries/Python2/javonet/core/handler/DestructReferenceHandler.py +0 -25
  1749. package/Binaries/Python2/javonet/core/handler/EnableNamespaceHandler.py +0 -43
  1750. package/Binaries/Python2/javonet/core/handler/EnableTypeHandler.py +0 -43
  1751. package/Binaries/Python2/javonet/core/handler/GetEnumItemHandler.py +0 -54
  1752. package/Binaries/Python2/javonet/core/handler/GetEnumNameHandler.py +0 -44
  1753. package/Binaries/Python2/javonet/core/handler/GetEnumValueHandler.py +0 -36
  1754. package/Binaries/Python2/javonet/core/handler/GetInstanceFieldHandler.py +0 -40
  1755. package/Binaries/Python2/javonet/core/handler/GetInstanceMethodAsDelegateHandler.py +0 -43
  1756. package/Binaries/Python2/javonet/core/handler/GetStaticFieldHandler.py +0 -41
  1757. package/Binaries/Python2/javonet/core/handler/GetStaticMethodAsDelegateHandler.py +0 -43
  1758. package/Binaries/Python2/javonet/core/handler/GetTypeHandler.py +0 -115
  1759. package/Binaries/Python2/javonet/core/handler/Handler.py +0 -152
  1760. package/Binaries/Python2/javonet/core/handler/HandlerDictionary.py +0 -23
  1761. package/Binaries/Python2/javonet/core/handler/InvokeDelegateHandler.py +0 -56
  1762. package/Binaries/Python2/javonet/core/handler/InvokeGlobalFunctionHandler.py +0 -78
  1763. package/Binaries/Python2/javonet/core/handler/InvokeInstanceMethodHandler.py +0 -45
  1764. package/Binaries/Python2/javonet/core/handler/InvokeStaticMethodHandler.py +0 -45
  1765. package/Binaries/Python2/javonet/core/handler/LoadLibraryHandler.py +0 -62
  1766. package/Binaries/Python2/javonet/core/handler/PassDelegateHandler.py +0 -36
  1767. package/Binaries/Python2/javonet/core/handler/ResolveInstanceHandler.py +0 -33
  1768. package/Binaries/Python2/javonet/core/handler/SetInstanceFieldHandler.py +0 -42
  1769. package/Binaries/Python2/javonet/core/handler/SetStaticFieldHandler.py +0 -43
  1770. package/Binaries/Python2/javonet/core/handler/ValueHandler.py +0 -27
  1771. package/Binaries/Python2/javonet/core/handler/__init__.py +0 -1
  1772. package/Binaries/Python2/javonet/core/interpreter/Interpreter.py +0 -36
  1773. package/Binaries/Python2/javonet/core/interpreter/__init__.py +0 -0
  1774. package/Binaries/Python2/javonet/core/namespaceCache/NamespaceCache.py +0 -69
  1775. package/Binaries/Python2/javonet/core/namespaceCache/__init__.py +0 -4
  1776. package/Binaries/Python2/javonet/core/protocol/CommandDeserializer.py +0 -237
  1777. package/Binaries/Python2/javonet/core/protocol/CommandSerializer.py +0 -56
  1778. package/Binaries/Python2/javonet/core/protocol/TypeDeserializer.py +0 -154
  1779. package/Binaries/Python2/javonet/core/protocol/TypeSerializer.py +0 -187
  1780. package/Binaries/Python2/javonet/core/protocol/__init__.py +0 -0
  1781. package/Binaries/Python2/javonet/core/receiver/Receiver.py +0 -35
  1782. package/Binaries/Python2/javonet/core/receiver/__init__.py +0 -1
  1783. package/Binaries/Python2/javonet/core/referenceCache/ReferencesCache.py +0 -57
  1784. package/Binaries/Python2/javonet/core/referenceCache/__init__.py +0 -0
  1785. package/Binaries/Python2/javonet/core/transmitter/Transmitter.py +0 -59
  1786. package/Binaries/Python2/javonet/core/transmitter/TransmitterWrapper.py +0 -102
  1787. package/Binaries/Python2/javonet/core/transmitter/__init__.py +0 -0
  1788. package/Binaries/Python2/javonet/core/typeCache/TypeCache.py +0 -69
  1789. package/Binaries/Python2/javonet/core/typeCache/__init__.py +0 -4
  1790. package/Binaries/Python2/javonet/core/webSocketClient/WebSocketClient.py +0 -39
  1791. package/Binaries/Python2/javonet/core/webSocketClient/__init__.py +0 -0
  1792. package/Binaries/Python2/javonet/utils/Command.py +0 -170
  1793. package/Binaries/Python2/javonet/utils/CommandType.py +0 -154
  1794. package/Binaries/Python2/javonet/utils/ConnectionType.py +0 -36
  1795. package/Binaries/Python2/javonet/utils/ExceptionType.py +0 -95
  1796. package/Binaries/Python2/javonet/utils/PythonStringBuilder.py +0 -38
  1797. package/Binaries/Python2/javonet/utils/RuntimeLogger.py +0 -50
  1798. package/Binaries/Python2/javonet/utils/RuntimeName.py +0 -120
  1799. package/Binaries/Python2/javonet/utils/RuntimeNameHandler.py +0 -47
  1800. package/Binaries/Python2/javonet/utils/StringEncodingMode.py +0 -38
  1801. package/Binaries/Python2/javonet/utils/Type.py +0 -68
  1802. package/Binaries/Python2/javonet/utils/UtilsConst.py +0 -38
  1803. package/Binaries/Python2/javonet/utils/__init__.py +0 -4
  1804. package/Binaries/Python2/javonet/utils/connectionData/IConnectionData.py +0 -45
  1805. package/Binaries/Python2/javonet/utils/connectionData/InMemoryConnectionData.py +0 -32
  1806. package/Binaries/Python2/javonet/utils/connectionData/TcpConnectionData.py +0 -142
  1807. package/Binaries/Python2/javonet/utils/connectionData/WsConnectionData.py +0 -75
  1808. package/Binaries/Python2/javonet/utils/connectionData/__init__.py +0 -4
  1809. package/Binaries/Python2/javonet/utils/exception/ExceptionSerializer.py +0 -94
  1810. package/Binaries/Python2/javonet/utils/exception/ExceptionThrower.py +0 -85
  1811. package/Binaries/Python2/javonet/utils/exception/JavonetException.py +0 -31
  1812. package/Binaries/Python2/javonet/utils/exception/__init__.py +0 -4
  1813. package/Binaries/Ruby/Linux/X64/core/handler/abstract_command_handler.rb +0 -24
  1814. package/Binaries/Ruby/Linux/X64/core/handler/abstract_handler.rb +0 -5
  1815. package/Binaries/Ruby/Linux/X64/core/handler/array_get_item_handler.rb +0 -47
  1816. package/Binaries/Ruby/Linux/X64/core/handler/array_get_rank_handler.rb +0 -23
  1817. package/Binaries/Ruby/Linux/X64/core/handler/array_get_size_handler.rb +0 -37
  1818. package/Binaries/Ruby/Linux/X64/core/handler/array_handler.rb +0 -12
  1819. package/Binaries/Ruby/Linux/X64/core/handler/array_set_item_handler.rb +0 -47
  1820. package/Binaries/Ruby/Linux/X64/core/handler/casting_handler.rb +0 -11
  1821. package/Binaries/Ruby/Linux/X64/core/handler/create_class_instance_handler.rb +0 -34
  1822. package/Binaries/Ruby/Linux/X64/core/handler/destruct_reference_handler.rb +0 -21
  1823. package/Binaries/Ruby/Linux/X64/core/handler/enable_namespace_handler.rb +0 -31
  1824. package/Binaries/Ruby/Linux/X64/core/handler/enable_type_handler.rb +0 -32
  1825. package/Binaries/Ruby/Linux/X64/core/handler/get_instance_field_handler.rb +0 -34
  1826. package/Binaries/Ruby/Linux/X64/core/handler/get_static_field_handler.rb +0 -34
  1827. package/Binaries/Ruby/Linux/X64/core/handler/get_type_handler.rb +0 -71
  1828. package/Binaries/Ruby/Linux/X64/core/handler/handler.rb +0 -111
  1829. package/Binaries/Ruby/Linux/X64/core/handler/handler_dictionary.rb +0 -8
  1830. package/Binaries/Ruby/Linux/X64/core/handler/invoke_global_function_handler.rb +0 -45
  1831. package/Binaries/Ruby/Linux/X64/core/handler/invoke_instance_method_handler.rb +0 -36
  1832. package/Binaries/Ruby/Linux/X64/core/handler/invoke_static_method_handler.rb +0 -38
  1833. package/Binaries/Ruby/Linux/X64/core/handler/load_library_handler.rb +0 -33
  1834. package/Binaries/Ruby/Linux/X64/core/handler/resolve_instance_handler.rb +0 -24
  1835. package/Binaries/Ruby/Linux/X64/core/handler/set_instance_field_handler.rb +0 -35
  1836. package/Binaries/Ruby/Linux/X64/core/handler/set_static_field_handler.rb +0 -31
  1837. package/Binaries/Ruby/Linux/X64/core/handler/value_handler.rb +0 -7
  1838. package/Binaries/Ruby/Linux/X64/core/interpreter/interpreter.rb +0 -25
  1839. package/Binaries/Ruby/Linux/X64/core/namespace_cache/namespace_cache.rb +0 -42
  1840. package/Binaries/Ruby/Linux/X64/core/protocol/command_deserializer.rb +0 -182
  1841. package/Binaries/Ruby/Linux/X64/core/protocol/command_serializer.rb +0 -35
  1842. package/Binaries/Ruby/Linux/X64/core/protocol/type_deserializer.rb +0 -126
  1843. package/Binaries/Ruby/Linux/X64/core/protocol/type_serializer.rb +0 -259
  1844. package/Binaries/Ruby/Linux/X64/core/receiver/receiver.rb +0 -22
  1845. package/Binaries/Ruby/Linux/X64/core/reference_cache/references_cache.rb +0 -39
  1846. package/Binaries/Ruby/Linux/X64/core/transmitter/transmitter.rb +0 -58
  1847. package/Binaries/Ruby/Linux/X64/core/transmitter/transmitter_wrapper.rb +0 -32
  1848. package/Binaries/Ruby/Linux/X64/core/type_cache/type_cache.rb +0 -42
  1849. package/Binaries/Ruby/Linux/X64/utils/command.rb +0 -93
  1850. package/Binaries/Ruby/Linux/X64/utils/command_type.rb +0 -135
  1851. package/Binaries/Ruby/Linux/X64/utils/connection_type.rb +0 -4
  1852. package/Binaries/Ruby/Linux/X64/utils/exceptions/exception_serializer.rb +0 -93
  1853. package/Binaries/Ruby/Linux/X64/utils/exceptions/exception_thrower.rb +0 -65
  1854. package/Binaries/Ruby/Linux/X64/utils/exceptions/exception_type.rb +0 -10
  1855. package/Binaries/Ruby/Linux/X64/utils/runtime_logger.rb +0 -30
  1856. package/Binaries/Ruby/Linux/X64/utils/runtime_name.rb +0 -13
  1857. package/Binaries/Ruby/Linux/X64/utils/runtime_name_handler.rb +0 -40
  1858. package/Binaries/Ruby/Linux/X64/utils/string_encoding_mode.rb +0 -6
  1859. package/Binaries/Ruby/Linux/X64/utils/tcp_connection_data.rb +0 -37
  1860. package/Binaries/Ruby/Linux/X64/utils/type.rb +0 -14
  1861. package/Binaries/Ruby/MacOs/X64/core/handler/abstract_command_handler.rb +0 -24
  1862. package/Binaries/Ruby/MacOs/X64/core/handler/abstract_handler.rb +0 -5
  1863. package/Binaries/Ruby/MacOs/X64/core/handler/array_get_item_handler.rb +0 -47
  1864. package/Binaries/Ruby/MacOs/X64/core/handler/array_get_rank_handler.rb +0 -23
  1865. package/Binaries/Ruby/MacOs/X64/core/handler/array_get_size_handler.rb +0 -37
  1866. package/Binaries/Ruby/MacOs/X64/core/handler/array_handler.rb +0 -12
  1867. package/Binaries/Ruby/MacOs/X64/core/handler/array_set_item_handler.rb +0 -47
  1868. package/Binaries/Ruby/MacOs/X64/core/handler/casting_handler.rb +0 -11
  1869. package/Binaries/Ruby/MacOs/X64/core/handler/create_class_instance_handler.rb +0 -34
  1870. package/Binaries/Ruby/MacOs/X64/core/handler/destruct_reference_handler.rb +0 -21
  1871. package/Binaries/Ruby/MacOs/X64/core/handler/enable_namespace_handler.rb +0 -31
  1872. package/Binaries/Ruby/MacOs/X64/core/handler/enable_type_handler.rb +0 -32
  1873. package/Binaries/Ruby/MacOs/X64/core/handler/get_instance_field_handler.rb +0 -34
  1874. package/Binaries/Ruby/MacOs/X64/core/handler/get_static_field_handler.rb +0 -34
  1875. package/Binaries/Ruby/MacOs/X64/core/handler/get_type_handler.rb +0 -71
  1876. package/Binaries/Ruby/MacOs/X64/core/handler/handler.rb +0 -111
  1877. package/Binaries/Ruby/MacOs/X64/core/handler/handler_dictionary.rb +0 -8
  1878. package/Binaries/Ruby/MacOs/X64/core/handler/invoke_global_function_handler.rb +0 -45
  1879. package/Binaries/Ruby/MacOs/X64/core/handler/invoke_instance_method_handler.rb +0 -36
  1880. package/Binaries/Ruby/MacOs/X64/core/handler/invoke_static_method_handler.rb +0 -38
  1881. package/Binaries/Ruby/MacOs/X64/core/handler/load_library_handler.rb +0 -33
  1882. package/Binaries/Ruby/MacOs/X64/core/handler/resolve_instance_handler.rb +0 -24
  1883. package/Binaries/Ruby/MacOs/X64/core/handler/set_instance_field_handler.rb +0 -35
  1884. package/Binaries/Ruby/MacOs/X64/core/handler/set_static_field_handler.rb +0 -31
  1885. package/Binaries/Ruby/MacOs/X64/core/handler/value_handler.rb +0 -7
  1886. package/Binaries/Ruby/MacOs/X64/core/interpreter/interpreter.rb +0 -25
  1887. package/Binaries/Ruby/MacOs/X64/core/namespace_cache/namespace_cache.rb +0 -42
  1888. package/Binaries/Ruby/MacOs/X64/core/protocol/command_deserializer.rb +0 -182
  1889. package/Binaries/Ruby/MacOs/X64/core/protocol/command_serializer.rb +0 -35
  1890. package/Binaries/Ruby/MacOs/X64/core/protocol/type_deserializer.rb +0 -126
  1891. package/Binaries/Ruby/MacOs/X64/core/protocol/type_serializer.rb +0 -259
  1892. package/Binaries/Ruby/MacOs/X64/core/receiver/receiver.rb +0 -22
  1893. package/Binaries/Ruby/MacOs/X64/core/reference_cache/references_cache.rb +0 -39
  1894. package/Binaries/Ruby/MacOs/X64/core/transmitter/transmitter.rb +0 -58
  1895. package/Binaries/Ruby/MacOs/X64/core/transmitter/transmitter_wrapper.rb +0 -32
  1896. package/Binaries/Ruby/MacOs/X64/core/type_cache/type_cache.rb +0 -42
  1897. package/Binaries/Ruby/MacOs/X64/utils/command.rb +0 -93
  1898. package/Binaries/Ruby/MacOs/X64/utils/command_type.rb +0 -135
  1899. package/Binaries/Ruby/MacOs/X64/utils/connection_type.rb +0 -4
  1900. package/Binaries/Ruby/MacOs/X64/utils/exceptions/exception_serializer.rb +0 -93
  1901. package/Binaries/Ruby/MacOs/X64/utils/exceptions/exception_thrower.rb +0 -65
  1902. package/Binaries/Ruby/MacOs/X64/utils/exceptions/exception_type.rb +0 -10
  1903. package/Binaries/Ruby/MacOs/X64/utils/runtime_logger.rb +0 -30
  1904. package/Binaries/Ruby/MacOs/X64/utils/runtime_name.rb +0 -13
  1905. package/Binaries/Ruby/MacOs/X64/utils/runtime_name_handler.rb +0 -40
  1906. package/Binaries/Ruby/MacOs/X64/utils/string_encoding_mode.rb +0 -6
  1907. package/Binaries/Ruby/MacOs/X64/utils/tcp_connection_data.rb +0 -37
  1908. package/Binaries/Ruby/MacOs/X64/utils/type.rb +0 -14
  1909. package/Binaries/Ruby/Windows/X64/core/handler/abstract_command_handler.rb +0 -24
  1910. package/Binaries/Ruby/Windows/X64/core/handler/abstract_handler.rb +0 -5
  1911. package/Binaries/Ruby/Windows/X64/core/handler/array_get_item_handler.rb +0 -47
  1912. package/Binaries/Ruby/Windows/X64/core/handler/array_get_rank_handler.rb +0 -23
  1913. package/Binaries/Ruby/Windows/X64/core/handler/array_get_size_handler.rb +0 -37
  1914. package/Binaries/Ruby/Windows/X64/core/handler/array_handler.rb +0 -12
  1915. package/Binaries/Ruby/Windows/X64/core/handler/array_set_item_handler.rb +0 -47
  1916. package/Binaries/Ruby/Windows/X64/core/handler/casting_handler.rb +0 -11
  1917. package/Binaries/Ruby/Windows/X64/core/handler/create_class_instance_handler.rb +0 -34
  1918. package/Binaries/Ruby/Windows/X64/core/handler/destruct_reference_handler.rb +0 -21
  1919. package/Binaries/Ruby/Windows/X64/core/handler/enable_namespace_handler.rb +0 -31
  1920. package/Binaries/Ruby/Windows/X64/core/handler/enable_type_handler.rb +0 -32
  1921. package/Binaries/Ruby/Windows/X64/core/handler/get_instance_field_handler.rb +0 -34
  1922. package/Binaries/Ruby/Windows/X64/core/handler/get_static_field_handler.rb +0 -34
  1923. package/Binaries/Ruby/Windows/X64/core/handler/get_type_handler.rb +0 -71
  1924. package/Binaries/Ruby/Windows/X64/core/handler/handler.rb +0 -111
  1925. package/Binaries/Ruby/Windows/X64/core/handler/handler_dictionary.rb +0 -8
  1926. package/Binaries/Ruby/Windows/X64/core/handler/invoke_global_function_handler.rb +0 -45
  1927. package/Binaries/Ruby/Windows/X64/core/handler/invoke_instance_method_handler.rb +0 -36
  1928. package/Binaries/Ruby/Windows/X64/core/handler/invoke_static_method_handler.rb +0 -38
  1929. package/Binaries/Ruby/Windows/X64/core/handler/load_library_handler.rb +0 -33
  1930. package/Binaries/Ruby/Windows/X64/core/handler/resolve_instance_handler.rb +0 -24
  1931. package/Binaries/Ruby/Windows/X64/core/handler/set_instance_field_handler.rb +0 -35
  1932. package/Binaries/Ruby/Windows/X64/core/handler/set_static_field_handler.rb +0 -31
  1933. package/Binaries/Ruby/Windows/X64/core/handler/value_handler.rb +0 -7
  1934. package/Binaries/Ruby/Windows/X64/core/interpreter/interpreter.rb +0 -25
  1935. package/Binaries/Ruby/Windows/X64/core/namespace_cache/namespace_cache.rb +0 -42
  1936. package/Binaries/Ruby/Windows/X64/core/protocol/command_deserializer.rb +0 -182
  1937. package/Binaries/Ruby/Windows/X64/core/protocol/command_serializer.rb +0 -35
  1938. package/Binaries/Ruby/Windows/X64/core/protocol/type_deserializer.rb +0 -126
  1939. package/Binaries/Ruby/Windows/X64/core/protocol/type_serializer.rb +0 -259
  1940. package/Binaries/Ruby/Windows/X64/core/receiver/receiver.rb +0 -22
  1941. package/Binaries/Ruby/Windows/X64/core/reference_cache/references_cache.rb +0 -39
  1942. package/Binaries/Ruby/Windows/X64/core/transmitter/transmitter.rb +0 -58
  1943. package/Binaries/Ruby/Windows/X64/core/transmitter/transmitter_wrapper.rb +0 -32
  1944. package/Binaries/Ruby/Windows/X64/core/type_cache/type_cache.rb +0 -42
  1945. package/Binaries/Ruby/Windows/X64/utils/command.rb +0 -93
  1946. package/Binaries/Ruby/Windows/X64/utils/command_type.rb +0 -135
  1947. package/Binaries/Ruby/Windows/X64/utils/connection_type.rb +0 -4
  1948. package/Binaries/Ruby/Windows/X64/utils/exceptions/exception_serializer.rb +0 -93
  1949. package/Binaries/Ruby/Windows/X64/utils/exceptions/exception_thrower.rb +0 -65
  1950. package/Binaries/Ruby/Windows/X64/utils/exceptions/exception_type.rb +0 -10
  1951. package/Binaries/Ruby/Windows/X64/utils/runtime_logger.rb +0 -30
  1952. package/Binaries/Ruby/Windows/X64/utils/runtime_name.rb +0 -13
  1953. package/Binaries/Ruby/Windows/X64/utils/runtime_name_handler.rb +0 -40
  1954. package/Binaries/Ruby/Windows/X64/utils/string_encoding_mode.rb +0 -6
  1955. package/Binaries/Ruby/Windows/X64/utils/tcp_connection_data.rb +0 -37
  1956. package/Binaries/Ruby/Windows/X64/utils/type.rb +0 -14
  1957. package/Binaries/version.txt +0 -1
  1958. package/addon/JavonetNodejsRuntimeAddon.cpp +0 -299
  1959. package/addon/JavonetNodejsRuntimeAddon.h +0 -70
  1960. package/binding.gyp +0 -8
  1961. package/dist/Javonet.d.ts +0 -4858
  1962. package/dist/index.js +0 -66
  1963. package/dist/lib/core/delegatesCache/DelegatesCache.js +0 -35
  1964. package/dist/lib/core/handler/AbstractHandler.js +0 -41
  1965. package/dist/lib/core/handler/ArrayGetItemHandler.js +0 -38
  1966. package/dist/lib/core/handler/ArrayGetRankHandler.js +0 -28
  1967. package/dist/lib/core/handler/ArrayGetSizeHandler.js +0 -29
  1968. package/dist/lib/core/handler/ArrayHandler.js +0 -18
  1969. package/dist/lib/core/handler/ArraySetItemHandler.js +0 -43
  1970. package/dist/lib/core/handler/CastingHandler.js +0 -10
  1971. package/dist/lib/core/handler/ConvertTypeHandler.js +0 -38
  1972. package/dist/lib/core/handler/CreateClassInstanceHandler.js +0 -36
  1973. package/dist/lib/core/handler/DestructReferenceHandler.js +0 -19
  1974. package/dist/lib/core/handler/EnableNamespaceHandler.js +0 -34
  1975. package/dist/lib/core/handler/EnableTypeHandler.js +0 -35
  1976. package/dist/lib/core/handler/GetGlobalStaticFieldHandler.js +0 -37
  1977. package/dist/lib/core/handler/GetInstanceFieldHandler.js +0 -35
  1978. package/dist/lib/core/handler/GetInstanceMethodAsDelegateHandler.js +0 -73
  1979. package/dist/lib/core/handler/GetStaticFieldHandler.js +0 -36
  1980. package/dist/lib/core/handler/GetStaticMethodAsDelegateHandler.js +0 -74
  1981. package/dist/lib/core/handler/GetTypeHandler.js +0 -63
  1982. package/dist/lib/core/handler/Handler.js +0 -98
  1983. package/dist/lib/core/handler/InvokeDelegateHandler.js +0 -36
  1984. package/dist/lib/core/handler/InvokeGlobalFunctionHandler.js +0 -39
  1985. package/dist/lib/core/handler/InvokeInstanceMethodHandler.js +0 -38
  1986. package/dist/lib/core/handler/InvokeStaticMethodHandler.js +0 -38
  1987. package/dist/lib/core/handler/LoadLibraryHandler.js +0 -48
  1988. package/dist/lib/core/handler/PassDelegateHandler.js +0 -157
  1989. package/dist/lib/core/handler/ResolveReferenceHandler.js +0 -13
  1990. package/dist/lib/core/handler/SetGlobalStaticFieldHandler.js +0 -38
  1991. package/dist/lib/core/handler/SetInstanceFieldHandler.js +0 -35
  1992. package/dist/lib/core/handler/SetStaticFieldHandler.js +0 -33
  1993. package/dist/lib/core/handler/ValueHandler.js +0 -13
  1994. package/dist/lib/core/interpreter/Interpreter.js +0 -142
  1995. package/dist/lib/core/namespaceCache/NamespaceCache.js +0 -39
  1996. package/dist/lib/core/protocol/CommandDeserializer.js +0 -181
  1997. package/dist/lib/core/protocol/CommandSerializer.js +0 -50
  1998. package/dist/lib/core/protocol/TypeDeserializer.js +0 -83
  1999. package/dist/lib/core/protocol/TypeSerializer.js +0 -143
  2000. package/dist/lib/core/receiver/Receiver.js +0 -32
  2001. package/dist/lib/core/receiver/ReceiverNative.js +0 -13
  2002. package/dist/lib/core/referenceCache/ReferencesCache.js +0 -30
  2003. package/dist/lib/core/transmitter/Transmitter.js +0 -21
  2004. package/dist/lib/core/transmitter/TransmitterWebsocket.js +0 -33
  2005. package/dist/lib/core/transmitter/TransmitterWrapper.js +0 -47
  2006. package/dist/lib/core/typeCache/TypeCache.js +0 -39
  2007. package/dist/lib/core/webSocketClient/WebSocketClient.js +0 -136
  2008. package/dist/lib/declarations.d.ts +0 -64
  2009. package/dist/lib/sdk/ConfigRuntimeFactory.js +0 -155
  2010. package/dist/lib/sdk/InvocationContext.js +0 -485
  2011. package/dist/lib/sdk/Javonet.js +0 -105
  2012. package/dist/lib/sdk/RuntimeContext.js +0 -300
  2013. package/dist/lib/sdk/RuntimeFactory.js +0 -87
  2014. package/dist/lib/sdk/tools/JsonFileResolver.js +0 -101
  2015. package/dist/lib/sdk/tools/SdkExceptionHelper.js +0 -79
  2016. package/dist/lib/utils/Command.js +0 -69
  2017. package/dist/lib/utils/CommandType.js +0 -47
  2018. package/dist/lib/utils/ConnectionType.js +0 -8
  2019. package/dist/lib/utils/CustomError.js +0 -8
  2020. package/dist/lib/utils/ExceptionType.js +0 -13
  2021. package/dist/lib/utils/RuntimeLogger.js +0 -30
  2022. package/dist/lib/utils/RuntimeName.js +0 -16
  2023. package/dist/lib/utils/RuntimeNameHandler.js +0 -38
  2024. package/dist/lib/utils/StringEncodingMode.js +0 -9
  2025. package/dist/lib/utils/Type.js +0 -17
  2026. package/dist/lib/utils/TypesConverter.js +0 -91
  2027. package/dist/lib/utils/connectionData/IConnectionData.js +0 -15
  2028. package/dist/lib/utils/connectionData/InMemoryConnectionData.js +0 -35
  2029. package/dist/lib/utils/connectionData/TcpConnectionData.js +0 -77
  2030. package/dist/lib/utils/connectionData/WsConnectionData.js +0 -50
  2031. package/dist/lib/utils/exception/ExceptionSerializer.js +0 -64
  2032. package/dist/lib/utils/exception/ExceptionThrower.js +0 -95
  2033. package/dist/lib/utils/guid/generateGuid.js +0 -9
  2034. package/dist/lib/utils/uuid/REGEX.js +0 -2
  2035. package/dist/lib/utils/uuid/rng.js +0 -12
  2036. package/dist/lib/utils/uuid/stringify.js +0 -51
  2037. package/dist/lib/utils/uuid/v4.js +0 -27
  2038. package/dist/lib/utils/uuid/validate.js +0 -6
  2039. package/lib/sdk/tools/JsonFileResolver.js +0 -101
  2040. package/lib/sdk/tools/SdkExceptionHelper.js +0 -79
  2041. package/lib/utils/TypesConverter.js +0 -91
  2042. package/lib/utils/connectionData/TcpConnectionData.js +0 -77
  2043. package/lib/utils/uuid/REGEX.js +0 -2
  2044. package/lib/utils/uuid/rng.js +0 -12
  2045. package/lib/utils/uuid/stringify.js +0 -51
  2046. package/lib/utils/uuid/v4.js +0 -27
  2047. package/lib/utils/uuid/validate.js +0 -6
@@ -1,1547 +0,0 @@
1
- # ABSTRACT: YAML 1.2 Processor
2
- use strict;
3
- use warnings;
4
- package YAML::PP;
5
-
6
- our $VERSION = 'v0.39.0'; # VERSION
7
-
8
- use YAML::PP::Schema;
9
- use YAML::PP::Schema::JSON;
10
- use YAML::PP::Loader;
11
- use YAML::PP::Dumper;
12
- use Scalar::Util qw/ blessed /;
13
- use Carp qw/ croak /;
14
-
15
- use base 'Exporter';
16
- our @EXPORT_OK = qw/ Load LoadFile Dump DumpFile /;
17
-
18
- my %YAML_VERSIONS = ('1.1' => 1, '1.2' => 1);
19
-
20
-
21
- sub new {
22
- my ($class, %args) = @_;
23
-
24
- my $bool = delete $args{boolean};
25
- $bool = 'perl' unless defined $bool;
26
- my $schemas = delete $args{schema} || ['+'];
27
- my $cyclic_refs = delete $args{cyclic_refs} || 'fatal';
28
- my $indent = delete $args{indent};
29
- my $width = delete $args{width};
30
- my $writer = delete $args{writer};
31
- my $header = delete $args{header};
32
- my $footer = delete $args{footer};
33
- my $require_footer = delete $args{require_footer};
34
- my $duplicate_keys = delete $args{duplicate_keys};
35
- my $yaml_version = $class->_arg_yaml_version(delete $args{yaml_version});
36
- my $default_yaml_version = $yaml_version->[0];
37
- my $version_directive = delete $args{version_directive};
38
- my $preserve = delete $args{preserve};
39
- my $parser = delete $args{parser};
40
- my $emitter = delete $args{emitter} || {
41
- indent => $indent,
42
- width => $width,
43
- writer => $writer,
44
- };
45
- if (keys %args) {
46
- die "Unexpected arguments: " . join ', ', sort keys %args;
47
- }
48
-
49
- my %schemas;
50
- for my $v (@$yaml_version) {
51
- my $schema;
52
- if (blessed($schemas) and $schemas->isa('YAML::PP::Schema')) {
53
- $schema = $schemas;
54
- }
55
- else {
56
- $schema = YAML::PP::Schema->new(
57
- boolean => $bool,
58
- yaml_version => $v,
59
- );
60
- $schema->load_subschemas(@$schemas);
61
- }
62
- $schemas{ $v } = $schema;
63
- }
64
- my $default_schema = $schemas{ $default_yaml_version };
65
-
66
- my $loader = YAML::PP::Loader->new(
67
- schemas => \%schemas,
68
- cyclic_refs => $cyclic_refs,
69
- parser => $parser,
70
- default_yaml_version => $default_yaml_version,
71
- preserve => $preserve,
72
- duplicate_keys => $duplicate_keys,
73
- require_footer => $require_footer,
74
- );
75
- my $dumper = YAML::PP::Dumper->new(
76
- schema => $default_schema,
77
- emitter => $emitter,
78
- header => $header,
79
- footer => $footer,
80
- version_directive => $version_directive,
81
- preserve => $preserve,
82
- );
83
-
84
- my $self = bless {
85
- schema => \%schemas,
86
- loader => $loader,
87
- dumper => $dumper,
88
- }, $class;
89
- return $self;
90
- }
91
-
92
- sub clone {
93
- my ($self) = @_;
94
- my $clone = {
95
- schema => $self->schema,
96
- loader => $self->loader->clone,
97
- dumper => $self->dumper->clone,
98
- };
99
- return bless $clone, ref $self;
100
- }
101
-
102
- sub _arg_yaml_version {
103
- my ($class, $version) = @_;
104
- my @versions = ('1.2');
105
- if (defined $version) {
106
- @versions = ();
107
- if (not ref $version) {
108
- $version = [$version];
109
- }
110
- for my $v (@$version) {
111
- unless ($YAML_VERSIONS{ $v }) {
112
- croak "YAML Version '$v' not supported";
113
- }
114
- push @versions, $v;
115
- }
116
- }
117
- return \@versions;
118
- }
119
-
120
-
121
- sub loader {
122
- if (@_ > 1) {
123
- $_[0]->{loader} = $_[1]
124
- }
125
- return $_[0]->{loader};
126
- }
127
-
128
- sub dumper {
129
- if (@_ > 1) {
130
- $_[0]->{dumper} = $_[1]
131
- }
132
- return $_[0]->{dumper};
133
- }
134
-
135
- sub schema {
136
- if (@_ > 1) { $_[0]->{schema}->{'1.2'} = $_[1] }
137
- return $_[0]->{schema}->{'1.2'};
138
- }
139
-
140
- sub default_schema {
141
- my ($self, %args) = @_;
142
- my $schema = YAML::PP::Schema->new(
143
- boolean => $args{boolean},
144
- );
145
- $schema->load_subschemas(qw/ Core /);
146
- return $schema;
147
- }
148
-
149
- sub load_string {
150
- my ($self, $yaml) = @_;
151
- return $self->loader->load_string($yaml);
152
- }
153
-
154
- sub load_file {
155
- my ($self, $file) = @_;
156
- return $self->loader->load_file($file);
157
- }
158
-
159
- sub dump {
160
- my ($self, @data) = @_;
161
- return $self->dumper->dump(@data);
162
- }
163
-
164
- sub dump_string {
165
- my ($self, @data) = @_;
166
- return $self->dumper->dump_string(@data);
167
- }
168
-
169
- sub dump_file {
170
- my ($self, $file, @data) = @_;
171
- return $self->dumper->dump_file($file, @data);
172
- }
173
-
174
- # legagy interface
175
- sub Load {
176
- my ($yaml) = @_;
177
- YAML::PP->new->load_string($yaml);
178
- }
179
-
180
- sub LoadFile {
181
- my ($file) = @_;
182
- YAML::PP->new->load_file($file);
183
- }
184
-
185
- sub Dump {
186
- my (@data) = @_;
187
- YAML::PP->new->dump_string(@data);
188
- }
189
-
190
- sub DumpFile {
191
- my ($file, @data) = @_;
192
- YAML::PP->new->dump_file($file, @data);
193
- }
194
-
195
- sub preserved_scalar {
196
- my ($self, $value, %args) = @_;
197
- my $scalar = YAML::PP::Preserve::Scalar->new(
198
- value => $value,
199
- %args,
200
- );
201
- return $scalar;
202
- }
203
-
204
- sub preserved_mapping {
205
- my ($self, $hash, %args) = @_;
206
- my $data = {};
207
- tie %$data, 'YAML::PP::Preserve::Hash';
208
- %$data = %$hash;
209
- my $t = tied %$data;
210
- $t->{style} = $args{style};
211
- $t->{alias} = $args{alias};
212
- return $data;
213
- }
214
-
215
- sub preserved_sequence {
216
- my ($self, $array, %args) = @_;
217
- my $data = [];
218
- tie @$data, 'YAML::PP::Preserve::Array';
219
- push @$data, @$array;
220
- my $t = tied @$data;
221
- $t->{style} = $args{style};
222
- $t->{alias} = $args{alias};
223
- return $data;
224
- }
225
-
226
- package YAML::PP::Preserve::Hash;
227
- # experimental
228
- use Tie::Hash;
229
- use base qw/ Tie::StdHash /;
230
- use Scalar::Util qw/ reftype blessed /;
231
-
232
- sub TIEHASH {
233
- my ($class, %args) = @_;
234
- my $self = bless {
235
- keys => [keys %args],
236
- data => { %args },
237
- }, $class;
238
- }
239
-
240
- sub STORE {
241
- my ($self, $key, $val) = @_;
242
- my $keys = $self->{keys};
243
- unless (exists $self->{data}->{ $key }) {
244
- push @$keys, $key;
245
- }
246
- if (ref $val and not blessed($val)) {
247
- if (reftype($val) eq 'HASH' and not tied %$val) {
248
- tie %$val, 'YAML::PP::Preserve::Hash', %$val;
249
- }
250
- elsif (reftype($val) eq 'ARRAY' and not tied @$val) {
251
- tie @$val, 'YAML::PP::Preserve::Array', @$val;
252
- }
253
- }
254
- $self->{data}->{ $key } = $val;
255
- }
256
-
257
- sub FIRSTKEY {
258
- my ($self) = @_;
259
- return $self->{keys}->[0];
260
- }
261
-
262
- sub NEXTKEY {
263
- my ($self, $last) = @_;
264
- my $keys = $self->{keys};
265
- for my $i (0 .. $#$keys) {
266
- if ("$keys->[ $i ]" eq "$last") {
267
- return $keys->[ $i + 1 ];
268
- }
269
- }
270
- return;
271
- }
272
-
273
- sub FETCH {
274
- my ($self, $key) = @_;
275
- my $val = $self->{data}->{ $key };
276
- }
277
-
278
- sub DELETE {
279
- my ($self, $key) = @_;
280
- @{ $self->{keys} } = grep { "$_" ne "$key" } @{ $self->{keys} };
281
- delete $self->{data}->{ $key };
282
- }
283
-
284
- sub EXISTS {
285
- my ($self, $key) = @_;
286
- return exists $self->{data}->{ $key };
287
- }
288
-
289
- sub CLEAR {
290
- my ($self) = @_;
291
- $self->{keys} = [];
292
- $self->{data} = {};
293
- }
294
-
295
- sub SCALAR {
296
- my ($self) = @_;
297
- return scalar %{ $self->{data} };
298
- }
299
-
300
- package YAML::PP::Preserve::Array;
301
- # experimental
302
- use Tie::Array;
303
- use base qw/ Tie::StdArray /;
304
- use Scalar::Util qw/ reftype blessed /;
305
-
306
- sub TIEARRAY {
307
- my ($class, @items) = @_;
308
- my $self = bless {
309
- data => [@items],
310
- }, $class;
311
- return $self;
312
- }
313
-
314
- sub FETCH {
315
- my ($self, $i) = @_;
316
- return $self->{data}->[ $i ];
317
- }
318
- sub FETCHSIZE {
319
- my ($self) = @_;
320
- return $#{ $self->{data} } + 1;
321
- }
322
-
323
- sub _preserve {
324
- my ($val) = @_;
325
- if (ref $val and not blessed($val)) {
326
- if (reftype($val) eq 'HASH' and not tied %$val) {
327
- tie %$val, 'YAML::PP::Preserve::Hash', %$val;
328
- }
329
- elsif (reftype($val) eq 'ARRAY' and not tied @$val) {
330
- tie @$val, 'YAML::PP::Preserve::Array', @$val;
331
- }
332
- }
333
- return $val;
334
- }
335
-
336
- sub STORE {
337
- my ($self, $i, $val) = @_;
338
- _preserve($val);
339
- $self->{data}->[ $i ] = $val;
340
- }
341
- sub PUSH {
342
- my ($self, @args) = @_;
343
- push @{ $self->{data} }, map { _preserve $_ } @args;
344
- }
345
- sub STORESIZE {
346
- my ($self, $i) = @_;
347
- $#{ $self->{data} } = $i - 1;
348
- }
349
- sub DELETE {
350
- my ($self, $i) = @_;
351
- delete $self->{data}->[ $i ];
352
- }
353
- sub EXISTS {
354
- my ($self, $i) = @_;
355
- return exists $self->{data}->[ $i ];
356
- }
357
- sub CLEAR {
358
- my ($self) = @_;
359
- $self->{data} = [];
360
- }
361
- sub SHIFT {
362
- my ($self) = @_;
363
- shift @{ $self->{data} };
364
- }
365
- sub UNSHIFT {
366
- my ($self, @args) = @_;
367
- unshift @{ $self->{data} }, map { _preserve $_ } @args;
368
- }
369
- sub SPLICE {
370
- my ($self, $offset, $length, @args) = @_;
371
- splice @{ $self->{data} }, $offset, $length, map { _preserve $_ } @args;
372
- }
373
- sub EXTEND {}
374
-
375
-
376
- package YAML::PP::Preserve::Scalar;
377
-
378
- use overload
379
- fallback => 1,
380
- '+' => \&value,
381
- '""' => \&value,
382
- 'bool' => \&value,
383
- ;
384
- sub new {
385
- my ($class, %args) = @_;
386
- my $self = {
387
- %args,
388
- };
389
- bless $self, $class;
390
- }
391
- sub value { $_[0]->{value} }
392
- sub tag { $_[0]->{tag} }
393
- sub style { $_[0]->{style} || 0 }
394
- sub alias { $_[0]->{alias} }
395
-
396
- 1;
397
-
398
- __END__
399
-
400
- =pod
401
-
402
- =encoding utf-8
403
-
404
- =head1 NAME
405
-
406
- YAML::PP - YAML 1.2 processor
407
-
408
- =head1 SYNOPSIS
409
-
410
- WARNING: Most of the inner API is not stable yet.
411
-
412
- Here are a few examples of the basic load and dump methods:
413
-
414
- use YAML::PP;
415
- my $ypp = YAML::PP->new;
416
-
417
- my $yaml = <<'EOM';
418
- --- # Document one is a mapping
419
- name: Tina
420
- age: 29
421
- favourite language: Perl
422
-
423
- --- # Document two is a sequence
424
- - plain string
425
- - 'in single quotes'
426
- - "in double quotes we have escapes! like \t and \n"
427
- - | # a literal block scalar
428
- line1
429
- line2
430
- - > # a folded block scalar
431
- this is all one
432
- single line because the
433
- linebreaks will be folded
434
- EOM
435
-
436
- my @documents = $ypp->load_string($yaml);
437
- my @documents = $ypp->load_file($filename);
438
-
439
- my $yaml = $ypp->dump_string($data1, $data2);
440
- $ypp->dump_file($filename, $data1, $data2);
441
-
442
- # Enable perl data types and objects
443
- my $ypp = YAML::PP->new(schema => [qw/ + Perl /]);
444
- my $yaml = $yp->dump_string($data_with_perl_objects);
445
-
446
- # Legacy interface
447
- use YAML::PP qw/ Load Dump LoadFile DumpFile /;
448
- my @documents = Load($yaml);
449
- my @documents = LoadFile($filename);
450
- my @documents = LoadFile($filehandle);
451
- my $yaml = = Dump(@documents);
452
- DumpFile($filename, @documents);
453
- DumpFile($filenhandle @documents);
454
-
455
-
456
- Some utility scripts, mostly useful for debugging:
457
-
458
- # Load YAML into a data structure and dump with Data::Dumper
459
- yamlpp-load < file.yaml
460
-
461
- # Load and Dump
462
- yamlpp-load-dump < file.yaml
463
-
464
- # Print the events from the parser in yaml-test-suite format
465
- yamlpp-events < file.yaml
466
-
467
- # Parse and emit events directly without loading
468
- yamlpp-parse-emit < file.yaml
469
-
470
- # Create ANSI colored YAML. Can also be useful for invalid YAML, showing
471
- # you the exact location of the error
472
- yamlpp-highlight < file.yaml
473
-
474
-
475
- =head1 DESCRIPTION
476
-
477
- YAML::PP is a modular YAML processor.
478
-
479
- It aims to support C<YAML 1.2> and C<YAML 1.1>. See L<https://yaml.org/>.
480
- Some (rare) syntax elements are not yet supported and documented below.
481
-
482
- YAML is a serialization language. The YAML input is called "YAML Stream".
483
- A stream consists of one or more "Documents", separated by a line with a
484
- document start marker C<--->. A document optionally ends with the document
485
- end marker C<...>.
486
-
487
- This allows one to process continuous streams additionally to a fixed input
488
- file or string.
489
-
490
- The YAML::PP frontend will currently load all documents, and return only
491
- the first if called with scalar context.
492
-
493
- The YAML backend is implemented in a modular way that allows one to add
494
- custom handling of YAML tags, perl objects and data types. The inner API
495
- is not yet stable. Suggestions welcome.
496
-
497
- You can check out all current parse and load results from the
498
- yaml-test-suite here:
499
- L<https://perlpunk.github.io/YAML-PP-p5/test-suite.html>
500
-
501
-
502
- =head1 METHODS
503
-
504
- =head2 new
505
-
506
- my $ypp = YAML::PP->new;
507
-
508
- # use YAML 1.2 Failsafe Schema
509
- my $ypp = YAML::PP->new( schema => ['Failsafe'] );
510
- # use YAML 1.2 JSON Schema
511
- my $ypp = YAML::PP->new( schema => ['JSON'] );
512
- # use YAML 1.2 Core Schema
513
- my $ypp = YAML::PP->new( schema => ['Core'] );
514
-
515
- # Die when detecting cyclic references
516
- my $ypp = YAML::PP->new( cyclic_refs => 'fatal' );
517
-
518
- my $ypp = YAML::PP->new(
519
- boolean => 'perl',
520
- schema => ['Core'],
521
- cyclic_refs => 'fatal',
522
- indent => 4,
523
- header => 1,
524
- footer => 0,
525
- version_directive => 0,
526
- );
527
-
528
- Options:
529
-
530
- =over
531
-
532
- =item boolean
533
-
534
- Values: C<perl> (currently default), C<JSON::PP>, C<boolean>, C<perl_experimental>
535
-
536
- This option is for loading and dumping.
537
-
538
- In case of perl 5.36 and later, builtin booleans should work out of the box
539
- (since YAML::PP >= 0.38.0).
540
-
541
- print YAML::PP->new->dump_string([ builtin::true, !1 ]);
542
- # ---
543
- # - true
544
- # - false
545
-
546
- For earlier perl versions, you can use "pseudo" booleans like documented
547
- in the following examples.
548
-
549
- # load/dump booleans via boolean.pm
550
- my $ypp = YAML::PP->new( boolean => 'boolean' );
551
- # load/dump booleans via JSON::PP::true/false
552
- my $ypp = YAML::PP->new( boolean => 'JSON::PP' );
553
-
554
- You can also specify more than one class, comma separated.
555
- This is important for dumping.
556
-
557
-
558
- boolean => 'JSON::PP,boolean'
559
- Booleans will be loaded as JSON::PP::Booleans, but when dumping, also
560
- 'boolean' objects will be recognized
561
-
562
- boolean => 'JSON::PP,*'
563
- Booleans will be loaded as JSON::PP::Booleans, but when dumping, all
564
- currently supported boolean classes will be recognized
565
-
566
- boolean => '*'
567
- Booleans will be loaded as perl booleans, but when dumping, all
568
- currently supported boolean classes will be recognized
569
-
570
- boolean => ''
571
- Booleans will be loaded as perl booleans, but when dumping, nothing
572
- will be recognized as booleans.
573
- This option is for backwards compatibility for perl versions < 5.36,
574
- if you rely on [!!1, !1] being dumped as [1, ''].
575
-
576
- The option C<perl_experimental> was introduced when experimental boolean
577
- support was added to perl 5.36. Since it will not be experimental anymore
578
- in perl 5.40 \o/ the option is deprecated and the same as C<perl>.
579
-
580
- =item schema
581
-
582
- Default: C<['Core']>
583
-
584
- This option is for loading and dumping.
585
-
586
- Array reference. Here you can define what schema to use.
587
- Supported standard Schemas are: C<Failsafe>, C<JSON>, C<Core>, C<YAML1_1>.
588
-
589
- To get an overview how the different Schemas behave, see
590
- L<https://perlpunk.github.io/YAML-PP-p5/schemas.html>
591
-
592
- Additionally you can add further schemas, for example C<Merge>.
593
-
594
- =item cyclic_refs
595
-
596
- Default: C<fatal> (since 0.037)
597
-
598
- Before the default was C<allow>, but this can lead to memory leaks
599
- when loading on untrusted data, so it was changed to C<fatal> by default.
600
-
601
- This option is for loading only.
602
-
603
- Defines what to do when a cyclic reference is detected when loading.
604
-
605
- # fatal - die
606
- # warn - Just warn about them and replace with undef
607
- # ignore - replace with undef
608
- # allow - Default
609
-
610
- =item duplicate_keys
611
-
612
- Default: 0
613
-
614
- Since version 0.027
615
-
616
- This option is for loading.
617
-
618
- The YAML Spec says duplicate mapping keys should be forbidden.
619
-
620
- When set to true, duplicate keys in mappings are allowed (and will overwrite
621
- the previous key).
622
-
623
- When set to false, duplicate keys will result in an error when loading.
624
-
625
- This is especially useful when you have a longer mapping and don't see
626
- the duplicate key in your editor:
627
-
628
- ---
629
- a: 1
630
- b: 2
631
- # .............
632
- a: 23 # error
633
-
634
- =item indent
635
-
636
- Default: 2
637
-
638
- This option is for dumping.
639
-
640
- Use that many spaces for indenting
641
-
642
- =item width
643
-
644
- Since version 0.025
645
-
646
- Default: 80
647
-
648
- This option is for dumping.
649
-
650
- Maximum columns when dumping.
651
-
652
- This is only respected when dumping flow collections right now.
653
-
654
- in the future it will be used also for wrapping long strings.
655
-
656
- =item header
657
-
658
- Default: 1
659
-
660
- This option is for dumping.
661
-
662
- Print document header C<--->
663
-
664
- =item footer
665
-
666
- Default: 0
667
-
668
- This option is for dumping.
669
-
670
- Print document footer C<...>
671
-
672
- =item require_footer
673
-
674
- Default: 0
675
-
676
- Will require a C<...> at the end of each document.
677
- This can be useful in a context where you want to make sure you received
678
- the complete content, for example over network.
679
-
680
- # Good
681
- ---
682
- a: 1
683
- ...
684
- ---
685
- a: 2
686
- ...
687
-
688
- # Bad
689
- ---
690
- a: 1
691
- ---
692
- a: 2
693
-
694
-
695
- =item yaml_version
696
-
697
- Since version 0.020
698
-
699
- This option is for loading and dumping.
700
-
701
- Default: C<1.2>
702
-
703
- Note that in this case, a directive C<%YAML 1.1> will basically be ignored
704
- and everything loaded with the C<1.2 Core> Schema.
705
-
706
- If you want to support both YAML 1.1 and 1.2, you have to specify that, and the
707
- schema (C<Core> or C<YAML1_1>) will be chosen automatically.
708
-
709
- my $yp = YAML::PP->new(
710
- yaml_version => ['1.2', '1.1'],
711
- );
712
-
713
- This is the same as
714
-
715
- my $yp = YAML::PP->new(
716
- schema => ['+'],
717
- yaml_version => ['1.2', '1.1'],
718
- );
719
-
720
- because the C<+> stands for the default schema per version.
721
-
722
- When loading, and there is no C<%YAML> directive, C<1.2> will be considered
723
- as default, and the C<Core> schema will be used.
724
-
725
- If there is a C<%YAML 1.1> directive, the C<YAML1_1> schema will be used.
726
-
727
- Of course, you can also make C<1.1> the default:
728
-
729
- my $yp = YAML::PP->new(
730
- yaml_version => ['1.1', '1.2'],
731
- );
732
-
733
-
734
- You can also specify C<1.1> only:
735
-
736
- my $yp = YAML::PP->new(
737
- yaml_version => ['1.1'],
738
- );
739
-
740
- In this case also documents with C<%YAML 1.2> will be loaded with the C<YAML1_1>
741
- schema.
742
-
743
- =item version_directive
744
-
745
- Since version 0.020
746
-
747
- This option is for dumping.
748
-
749
- Default: 0
750
-
751
- Print Version Directive C<%YAML 1.2> (or C<%YAML 1.1>) on top of each YAML
752
- document. It will use the first version specified in the C<yaml_version> option.
753
-
754
- =item preserve
755
-
756
- Since version 0.021
757
-
758
- Default: false
759
-
760
- This option is for loading and dumping.
761
-
762
- Preserving scalar styles is still experimental.
763
-
764
- use YAML::PP::Common qw/ :PRESERVE /;
765
-
766
- # Preserve the order of hash keys
767
- my $yp = YAML::PP->new( preserve => PRESERVE_ORDER );
768
-
769
- # Preserve the quoting style of scalars
770
- my $yp = YAML::PP->new( preserve => PRESERVE_SCALAR_STYLE );
771
-
772
- # Preserve block/flow style (since 0.024)
773
- my $yp = YAML::PP->new( preserve => PRESERVE_FLOW_STYLE );
774
-
775
- # Preserve alias names (since 0.027)
776
- my $yp = YAML::PP->new( preserve => PRESERVE_ALIAS );
777
-
778
- # Combine, e.g. preserve order and scalar style
779
- my $yp = YAML::PP->new( preserve => PRESERVE_ORDER | PRESERVE_SCALAR_STYLE );
780
-
781
- Do NOT rely on the internal implementation of it.
782
-
783
- If you load the following input:
784
-
785
- ---
786
- z: 1
787
- a: 2
788
- ---
789
- - plain
790
- - 'single'
791
- - "double"
792
- - |
793
- literal
794
- - >
795
- folded
796
- ---
797
- block mapping: &alias
798
- flow sequence: [a, b]
799
- same mapping: *alias
800
- flow mapping: {a: b}
801
-
802
-
803
- with this code:
804
-
805
- my $yp = YAML::PP->new(
806
- preserve => PRESERVE_ORDER | PRESERVE_SCALAR_STYLE
807
- | PRESERVE_FLOW_STYLE | PRESERVE_ALIAS
808
- );
809
- my ($hash, $styles, $flow) = $yp->load_file($file);
810
- $yp->dump_file($hash, $styles, $flow);
811
-
812
- Then dumping it will return the same output.
813
-
814
- Note that YAML allows repeated definition of anchors. They cannot be preserved
815
- with YAML::PP right now. Example:
816
-
817
- ---
818
- - &seq [a]
819
- - *seq
820
- - &seq [b]
821
- - *seq
822
-
823
- Because the data could be shuffled before dumping again, the anchor definition
824
- could be broken. In this case repeated anchor names will be discarded when
825
- loading and dumped with numeric anchors like usual.
826
-
827
- Implementation:
828
-
829
- When loading, hashes will be tied to an internal class
830
- (C<YAML::PP::Preserve::Hash>) that keeps the key order.
831
-
832
- Scalars will be returned as objects of an internal class
833
- (C<YAML::PP::Preserve::Scalar>) with overloading. If you assign to such
834
- a scalar, the object will be replaced by a simple scalar.
835
-
836
- # assignment, style gets lost
837
- $styles->[1] .= ' append';
838
-
839
- You can also pass C<1> as a value. In this case all preserving options will be
840
- enabled, also if there are new options added in the future.
841
-
842
- There are also methods to create preserved nodes from scratch. See the
843
- C<preserved_(scalar|mapping|sequence)> L<"METHODS"> below.
844
-
845
- =back
846
-
847
- =head2 load_string
848
-
849
- my $doc = $ypp->load_string("foo: bar");
850
- my @docs = $ypp->load_string("foo: bar\n---\n- a");
851
-
852
- Input should be Unicode characters.
853
-
854
- So if you read from a file, you should decode it, for example with
855
- C<Encode::decode()>.
856
-
857
- Note that in scalar context, C<load_string> and C<load_file> return the first
858
- document (like L<YAML::Syck>), while L<YAML> and L<YAML::XS> return the
859
- last.
860
-
861
- =head2 load_file
862
-
863
- my $doc = $ypp->load_file("file.yaml");
864
- my @docs = $ypp->load_file("file.yaml");
865
-
866
- Strings will be loaded as unicode characters.
867
-
868
- =head2 dump_string
869
-
870
- my $yaml = $ypp->dump_string($doc);
871
- my $yaml = $ypp->dump_string($doc1, $doc2);
872
- my $yaml = $ypp->dump_string(@docs);
873
-
874
- Input strings should be Unicode characters.
875
-
876
- Output will return Unicode characters.
877
-
878
- So if you want to write that to a file (or pass to YAML::XS, for example),
879
- you typically encode it via C<Encode::encode()>.
880
-
881
- =head2 dump_file
882
-
883
- $ypp->dump_file("file.yaml", $doc);
884
- $ypp->dump_file("file.yaml", $doc1, $doc2);
885
- $ypp->dump_file("file.yaml", @docs);
886
-
887
- Input data should be Unicode characters.
888
-
889
- =head2 dump
890
-
891
- This will dump to a predefined writer. By default it will just use the
892
- L<YAML::PP::Writer> and output a string.
893
-
894
- my $writer = MyWriter->new(\my $output);
895
- my $yp = YAML::PP->new(
896
- writer => $writer,
897
- );
898
- $yp->dump($data);
899
-
900
- =head2 preserved_scalar
901
-
902
- Since version 0.024
903
-
904
- Experimental. Please report bugs or let me know this is useful and works.
905
-
906
- You can define a certain scalar style when dumping data.
907
- Figuring out the best style is a hard task and practically impossible to get
908
- it right for all cases. It's also a matter of taste.
909
-
910
- use YAML::PP::Common qw/ PRESERVE_SCALAR_STYLE YAML_LITERAL_SCALAR_STYLE /;
911
- my $yp = YAML::PP->new(
912
- preserve => PRESERVE_SCALAR_STYLE,
913
- );
914
- # a single linebreak would normally be dumped with double quotes: "\n"
915
- my $scalar = $yp->preserved_scalar("\n", style => YAML_LITERAL_SCALAR_STYLE );
916
-
917
- my $data = { literal => $scalar };
918
- my $dump = $yp->dump_string($data);
919
- # output
920
- ---
921
- literal: |+
922
-
923
- ...
924
-
925
-
926
- =head2 preserved_mapping, preserved_sequence
927
-
928
- Since version 0.024
929
-
930
- Experimental. Please report bugs or let me know this is useful and works.
931
-
932
- With this you can define which nodes are dumped with the more compact flow
933
- style instead of block style.
934
-
935
- If you add C<PRESERVE_ORDER> to the C<preserve> option, it will also keep the
936
- order of the keys in a hash.
937
-
938
- use YAML::PP::Common qw/
939
- PRESERVE_ORDER PRESERVE_FLOW_STYLE
940
- YAML_FLOW_MAPPING_STYLE YAML_FLOW_SEQUENCE_STYLE
941
- /;
942
- my $yp = YAML::PP->new(
943
- preserve => PRESERVE_FLOW_STYLE | PRESERVE_ORDER
944
- );
945
-
946
- my $hash = $yp->preserved_mapping({}, style => YAML_FLOW_MAPPING_STYLE);
947
- # Add values after initialization to preserve order
948
- %$hash = (z => 1, a => 2, y => 3, b => 4);
949
-
950
- my $array = $yp->preserved_sequence([23, 24], style => YAML_FLOW_SEQUENCE_STYLE);
951
-
952
- my $data = $yp->preserved_mapping({});
953
- %$data = ( map => $hash, seq => $array );
954
-
955
- my $dump = $yp->dump_string($data);
956
- # output
957
- ---
958
- map: {z: 1, a: 2, y: 3, b: 4}
959
- seq: [23, 24]
960
-
961
-
962
- =head2 loader
963
-
964
- Returns or sets the loader object, by default L<YAML::PP::Loader>
965
-
966
- =head2 dumper
967
-
968
- Returns or sets the dumper object, by default L<YAML::PP::Dumper>
969
-
970
- =head2 schema
971
-
972
- Returns or sets the schema object
973
-
974
- =head2 default_schema
975
-
976
- Creates and returns the default schema
977
-
978
- =head1 FUNCTIONS
979
-
980
- The functions C<Load>, C<LoadFile>, C<Dump> and C<DumpFile> are provided
981
- as a drop-in replacement for other existing YAML processors.
982
- No function is exported by default.
983
-
984
- Note that in scalar context, C<Load> and C<LoadFile> return the first
985
- document (like L<YAML::Syck>), while L<YAML> and L<YAML::XS> return the
986
- last.
987
-
988
- =over
989
-
990
- =item Load
991
-
992
- use YAML::PP qw/ Load /;
993
- my $doc = Load($yaml);
994
- my @docs = Load($yaml);
995
-
996
- Works like C<load_string>.
997
-
998
- =item LoadFile
999
-
1000
- use YAML::PP qw/ LoadFile /;
1001
- my $doc = LoadFile($file);
1002
- my @docs = LoadFile($file);
1003
- my @docs = LoadFile($filehandle);
1004
-
1005
- Works like C<load_file>.
1006
-
1007
- =item Dump
1008
-
1009
- use YAML::PP qw/ Dump /;
1010
- my $yaml = Dump($doc);
1011
- my $yaml = Dump(@docs);
1012
-
1013
- Works like C<dump_string>.
1014
-
1015
- =item DumpFile
1016
-
1017
- use YAML::PP qw/ DumpFile /;
1018
- DumpFile($file, $doc);
1019
- DumpFile($file, @docs);
1020
- DumpFile($filehandle, @docs);
1021
-
1022
- Works like C<dump_file>.
1023
-
1024
- =back
1025
-
1026
- =head1 PLUGINS
1027
-
1028
- You can alter the behaviour of YAML::PP by using the following schema
1029
- classes:
1030
-
1031
- =over
1032
-
1033
- =item L<YAML::PP::Schema::Failsafe>
1034
-
1035
- One of the three YAML 1.2 official schemas
1036
-
1037
- =item L<YAML::PP::Schema::JSON>
1038
-
1039
- One of the three YAML 1.2 official schemas.
1040
-
1041
- =item L<YAML::PP::Schema::Core>
1042
-
1043
- One of the three YAML 1.2 official schemas. Default
1044
-
1045
- =item L<YAML::PP::Schema::YAML1_1>
1046
-
1047
- Schema implementing the most common YAML 1.1 types
1048
-
1049
- =item L<YAML::PP::Schema::Perl>
1050
-
1051
- Serializing Perl objects and types
1052
-
1053
- =item L<YAML::PP::Schema::Binary>
1054
-
1055
- Serializing binary data
1056
-
1057
- =item L<YAML::PP::Schema::Merge>
1058
-
1059
- YAML 1.1 merge keys for mappings
1060
-
1061
- =item L<YAML::PP::Schema::Catchall>
1062
-
1063
- Experimental.
1064
-
1065
- It was accidentally added in 0.38.1, and unknown tags forbidden.
1066
- This was reverted in 0.39.0
1067
-
1068
- By default they will result in an error.
1069
-
1070
- =item L<YAML::PP::Schema::Include>
1071
-
1072
- Include other YAML files via C<!include> tags
1073
-
1074
- =item L<YAML::PP::Schema::Tie::IxHash>
1075
-
1076
- Deprecated. See option C<preserve>
1077
-
1078
- =back
1079
-
1080
- To make the parsing process faster, you can plugin the libyaml parser
1081
- with L<YAML::PP::LibYAML>.
1082
-
1083
-
1084
-
1085
- =head1 IMPLEMENTATION
1086
-
1087
- The process of loading and dumping is split into the following steps:
1088
-
1089
- Load:
1090
-
1091
- YAML Stream Tokens Event List Data Structure
1092
- ---------> ---------> --------->
1093
- lex parse construct
1094
-
1095
-
1096
- Dump:
1097
-
1098
- Data Structure Event List YAML Stream
1099
- ---------> --------->
1100
- represent emit
1101
-
1102
-
1103
- You can dump basic perl types like hashes, arrays, scalars (strings, numbers).
1104
- For dumping blessed objects and things like coderefs have a look at
1105
- L<YAML::PP::Perl>/L<YAML::PP::Schema::Perl>.
1106
-
1107
- =over
1108
-
1109
- =item L<YAML::PP::Lexer>
1110
-
1111
- The Lexer is reading the YAML stream into tokens. This makes it possible
1112
- to generate syntax highlighted YAML output.
1113
-
1114
- Note that the API to retrieve the tokens will change.
1115
-
1116
- =item L<YAML::PP::Parser>
1117
-
1118
- The Parser retrieves the tokens from the Lexer. The main YAML content is then
1119
- parsed with the Grammar.
1120
-
1121
- =item L<YAML::PP::Grammar>
1122
-
1123
- =item L<YAML::PP::Constructor>
1124
-
1125
- The Constructor creates a data structure from the Parser events.
1126
-
1127
- =item L<YAML::PP::Loader>
1128
-
1129
- The Loader combines the constructor and parser.
1130
-
1131
- =item L<YAML::PP::Dumper>
1132
-
1133
- The Dumper will delegate to the Representer
1134
-
1135
- =item L<YAML::PP::Representer>
1136
-
1137
- The Representer will create Emitter events from the given data structure.
1138
-
1139
- =item L<YAML::PP::Emitter>
1140
-
1141
- The Emitter creates a YAML stream.
1142
-
1143
- =back
1144
-
1145
- =head2 YAML::PP::Parser
1146
-
1147
- Still TODO:
1148
-
1149
- =over 4
1150
-
1151
- =item Implicit collection keys
1152
-
1153
- ---
1154
- [ a, b, c ]: value
1155
-
1156
- =item Implicit mapping in flow style sequences
1157
-
1158
- This is supported since 0.029 (except some not relevant cases):
1159
-
1160
- ---
1161
- [ a, b, c: d ]
1162
- # equals
1163
- [ a, b, { c: d } ]
1164
-
1165
- =item Plain mapping keys ending with colons
1166
-
1167
- ---
1168
- key ends with two colons::: value
1169
-
1170
- This was implemented in 0.037.
1171
-
1172
- =item Supported Characters
1173
-
1174
- If you have valid YAML that's not parsed, or the other way round, please
1175
- create an issue.
1176
-
1177
- =item Line and Column Numbers
1178
-
1179
- You will see line and column numbers in the error message. The column numbers
1180
- might still be wrong in some cases.
1181
-
1182
- =item Error Messages
1183
-
1184
- The error messages need to be improved.
1185
-
1186
- =item Unicode Surrogate Pairs
1187
-
1188
- Currently loaded as single characters without validating
1189
-
1190
- =item Possibly more
1191
-
1192
- =back
1193
-
1194
- =head2 YAML::PP::Constructor
1195
-
1196
- The Constructor now supports all three YAML 1.2 Schemas, Failsafe, JSON and
1197
- Core. Additionally you can choose the schema for YAML 1.1 as C<YAML1_1>.
1198
-
1199
- Too see what strings are resolved as booleans, numbers, null etc. look at
1200
- L<https://perlpunk.github.io/YAML-PP-p5/schema-examples.html>.
1201
-
1202
- You can choose the Schema like this:
1203
-
1204
- my $ypp = YAML::PP->new(schema => ['JSON']); # default is 'Core'
1205
-
1206
- The Tags C<!!seq> and C<!!map> are still ignored for now.
1207
-
1208
- It supports:
1209
-
1210
- =over 4
1211
-
1212
- =item Handling of Anchors/Aliases
1213
-
1214
- Like in modules like L<YAML>, the Constructor will use references for mappings and
1215
- sequences, but obviously not for scalars.
1216
-
1217
- L<YAML::XS> uses real aliases, which allows also aliasing scalars. I might add
1218
- an option for that since aliasing is now available in pure perl.
1219
-
1220
- =item Boolean Handling
1221
-
1222
- You can choose between C<'perl'> (1/'', currently default), C<'JSON::PP'> and
1223
- C<'boolean'>.pm for handling boolean types. That allows you to dump the data
1224
- structure with one of the JSON modules without losing information about
1225
- booleans.
1226
-
1227
- =item Numbers
1228
-
1229
- Numbers are created as real numbers instead of strings, so that they are
1230
- dumped correctly by modules like L<JSON::PP> or L<JSON::XS>, for example.
1231
-
1232
- =item Complex Keys
1233
-
1234
- Mapping Keys in YAML can be more than just scalars. Of course, you can't load
1235
- that into a native perl structure. The Constructor will stringify those keys
1236
- with L<Data::Dumper> instead of just returning something like
1237
- C<HASH(0x55dc1b5d0178)>.
1238
-
1239
- Example:
1240
-
1241
- use YAML::PP;
1242
- use JSON::PP;
1243
- my $ypp = YAML::PP->new;
1244
- my $coder = JSON::PP->new->ascii->pretty->allow_nonref->canonical;
1245
- my $yaml = <<'EOM';
1246
- complex:
1247
- ?
1248
- ?
1249
- a: 1
1250
- c: 2
1251
- : 23
1252
- : 42
1253
- EOM
1254
- my $data = $yppl->load_string($yaml);
1255
- say $coder->encode($data);
1256
- __END__
1257
- {
1258
- "complex" : {
1259
- "{'{a => 1,c => 2}' => 23}" : 42
1260
- }
1261
- }
1262
-
1263
- =back
1264
-
1265
- TODO:
1266
-
1267
- =over 4
1268
-
1269
- =item Parse Tree
1270
-
1271
- I would like to generate a complete parse tree, that allows you to manipulate
1272
- the data structure and also dump it, including all whitespaces and comments.
1273
- The spec says that this is throwaway content, but I read that many people
1274
- wish to be able to keep the comments.
1275
-
1276
- =back
1277
-
1278
- =head2 YAML::PP::Dumper, YAML::PP::Emitter
1279
-
1280
- The Dumper should be able to dump strings correctly, adding quotes
1281
- whenever a plain scalar would look like a special string, like C<true>,
1282
- or when it contains or starts with characters that are not allowed.
1283
-
1284
- Most strings will be dumped as plain scalars without quotes. If they
1285
- contain special characters or have a special meaning, they will be dumped
1286
- with single quotes. If they contain control characters, including <"\n">,
1287
- they will be dumped with double quotes.
1288
-
1289
- It will recognize JSON::PP::Boolean and boolean.pm objects and dump them
1290
- correctly.
1291
-
1292
- Numbers which also have a C<PV> flag will be recognized as numbers and not
1293
- as strings:
1294
-
1295
- my $int = 23;
1296
- say "int: $int"; # $int will now also have a PV flag
1297
-
1298
- That means that if you accidentally use a string in numeric context, it will
1299
- also be recognized as a number:
1300
-
1301
- my $string = "23";
1302
- my $something = $string + 0;
1303
- print $yp->dump_string($string);
1304
- # will be emitted as an integer without quotes!
1305
-
1306
- The layout is like libyaml output:
1307
-
1308
- key:
1309
- - a
1310
- - b
1311
- - c
1312
- ---
1313
- - key1: 1
1314
- key2: 2
1315
- key3: 3
1316
- ---
1317
- - - a1
1318
- - a2
1319
- - - b1
1320
- - b2
1321
-
1322
- =head1 FAQ - Frequently Asked Questions
1323
-
1324
- =over
1325
-
1326
- =item Are C<<<> merge keys supported?
1327
-
1328
- Yes, this can be enabled optionally, see L<YAML::PP::Schema::Merge>
1329
-
1330
- =item Is there a linter / formatter for YAML
1331
-
1332
- There is the widely used L<"yamllint"|https://yamllint.readthedocs.io/>, based on
1333
- python's PyYAML. It is very configurable and will report errors or warnings.
1334
- It cannot format.
1335
-
1336
- Now there is also L<YAML::Tidy>, which will format the given file according
1337
- to your configuration. So far only a few configuration options exist, but
1338
- they can already be quite helpful.
1339
-
1340
- =back
1341
-
1342
- =head1 Which YAML module should I use?
1343
-
1344
- There are many YAML modules on CPAN. For historical reasons some of them
1345
- aren't handling YAML correctly.
1346
-
1347
- Most of them are not compatible with the YAML spec and with each other, meaning
1348
- they can interpret the same YAML differently.
1349
-
1350
- The behaviours we are discussing here can be divided into parsing issues
1351
- (syntax) and loading/constructing issues (for example type resolving which
1352
- decides what is a number, boolean or null).
1353
-
1354
- See also L<https://matrix.yaml.info/> (parsing) and
1355
- L<https://perlpunk.github.io/YAML-PP-p5/schema-examples.html> (loading).
1356
-
1357
- =over
1358
-
1359
- =item L<"YAML.pm"|YAML>
1360
-
1361
- It was written even before the YAML 1.0 spec was finished and by that enabled
1362
- perl users to process YAML very early. It might work for you if you have simple
1363
- data, but it's missing quite some features and can also produce YAML that
1364
- doesn't roundtrip. Nowadays it might be a good idea to switch.
1365
-
1366
- =item L<YAML::XS>
1367
-
1368
- A libyaml binding that is robust and widely used. However, there are two
1369
- things to consider.
1370
-
1371
- 1. (syntax) libyaml diverged from the spec in several aspects. They are rare though.
1372
- 2. The type resolving does not adhere to YAML 1.1 or YAML 1.2, meaning it is
1373
- incompatible with other YAML libraries in perl or other languages.
1374
-
1375
- =item L<YAML::Tiny>
1376
-
1377
- It implements both a tiny subset of YAML, but also a superset. Meaning
1378
- it will happily accept some YAML documents that are not officially valid.
1379
- Type resolving is also not implemented according to the spec.
1380
-
1381
- =item L<YAML::Syck>
1382
-
1383
- A binding to libsyck. It is even less compatible to YAML than libyaml. Also
1384
- type resolving is not implemented according to the spec.
1385
-
1386
- =item L<YAML::PP>
1387
-
1388
- Regarding YAML syntax, it is the second most YAML 1.2 compatible perl module.
1389
- The cases it cannot (yet) parse are not relevant in perl programming,
1390
- e.g. hash keys that are not strings.
1391
- Regarding type resolving, it is compatible with the YAML 1.2 Core schema,
1392
- so it should be possible to exchange data as YAML with other libraries
1393
- in other languages.
1394
- One downside is that it is the slowest perl YAML module.
1395
-
1396
- =item L<YAML::Parser>
1397
-
1398
- This is a parser generated by the YAML grammar, and it's passing all
1399
- official tests. A L<YAML::PP::Ref> frontend exists that you can use just like
1400
- YAML::PP.
1401
- It is quite slow (although it might be ok for small files depending on the
1402
- use case).
1403
- The error messages it creates on invalid YAML are not helpful currently.
1404
-
1405
- =item L<YAML::PP::LibYAML>
1406
-
1407
- This combines the L<YAML::LibYAML::API> binding for parsing with the YAML::PP
1408
- frontend for loading and type resolving.
1409
- It is faster than YAML::PP but slower than YAML::XS.
1410
- The divergence from the YAML spec regarding syntax is usually not a problem,
1411
- and at the same time you have the advantage of being compatible to the
1412
- YAML 1.2 Core Schema.
1413
-
1414
- =back
1415
-
1416
- =head1 WHY
1417
-
1418
- Why did I start to write a new YAML module?
1419
-
1420
- All the available parsers and loaders for Perl are behaving differently,
1421
- and more important, aren't conforming to the spec. L<YAML::XS> is
1422
- doing pretty well, but C<libyaml> only handles YAML 1.1 and diverges
1423
- a bit from the spec. The pure perl loaders lack support for a number of
1424
- features.
1425
-
1426
- I was going over L<YAML>.pm issues end of 2016, integrating old patches
1427
- from rt.cpan.org and creating some pull requests myself. I realized
1428
- that it would be difficult to patch YAML.pm to parse YAML 1.1 or even 1.2,
1429
- and it would also break existing usages relying on the current behaviour.
1430
-
1431
-
1432
- In 2016 Ingy döt Net initiated two really cool projects:
1433
-
1434
- =over 4
1435
-
1436
- =item L<"YAML TEST SUITE">
1437
-
1438
- =item L<"YAML EDITOR">
1439
-
1440
- =back
1441
-
1442
- These projects are a big help for any developer. So I got the idea
1443
- to write my own parser and started on New Year's Day 2017.
1444
- Without the test suite and the editor I would have never started this.
1445
-
1446
- I also started another YAML Test project which allows one to get a quick
1447
- overview of which frameworks support which YAML features:
1448
-
1449
- =over 4
1450
-
1451
- =item L<"YAML TEST MATRIX">
1452
-
1453
- =back
1454
-
1455
- =head2 YAML TEST SUITE
1456
-
1457
- L<https://github.com/yaml/yaml-test-suite>
1458
-
1459
- It contains almost 400 test cases and expected parsing events and more.
1460
- There will be more tests coming. This test suite allows you to write parsers
1461
- without turning the examples from the Specification into tests yourself.
1462
- Also the examples aren't completely covering all cases - the test suite
1463
- aims to do that.
1464
-
1465
- Thanks also to Felix Krause, who is writing a YAML parser in Nim.
1466
- He turned all the spec examples into test cases.
1467
-
1468
- =head2 YAML EDITOR
1469
-
1470
- This is a tool to play around with several YAML parsers and loaders in vim.
1471
-
1472
- L<https://github.com/yaml/yaml-editor>
1473
-
1474
- The project contains the code to build the frameworks (16 as of this
1475
- writing) and put it into one big Docker image.
1476
-
1477
- It also contains the yaml-editor itself, which will start a vim in the docker
1478
- container. It uses a lot of funky vimscript that makes playing with it easy
1479
- and useful. You can choose which frameworks you want to test and see the
1480
- output in a grid of vim windows.
1481
-
1482
- Especially when writing a parser it is extremely helpful to have all
1483
- the test cases and be able to play around with your own examples to see
1484
- how they are handled.
1485
-
1486
- =head2 YAML TEST MATRIX
1487
-
1488
- I was curious to see how the different frameworks handle the test cases,
1489
- so, using the test suite and the docker image, I wrote some code that runs
1490
- the tests, manipulates the output to compare it with the expected output,
1491
- and created a matrix view.
1492
-
1493
- L<https://github.com/perlpunk/yaml-test-matrix>
1494
-
1495
- You can find the latest build at L<https://matrix.yaml.info>
1496
-
1497
- =head1 CONTRIBUTORS
1498
-
1499
- =over
1500
-
1501
- =item Ingy döt Net
1502
-
1503
- Ingy is one of the creators of YAML. In 2016 he started the YAML Test Suite
1504
- and the YAML Editor. He also made useful suggestions on the class
1505
- hierarchy of YAML::PP.
1506
-
1507
- =item Felix "flyx" Krause
1508
-
1509
- Felix answered countless questions about the YAML Specification.
1510
-
1511
- =back
1512
-
1513
- =head1 SEE ALSO
1514
-
1515
- =over
1516
-
1517
- =item L<YAML>
1518
-
1519
- =item L<YAML::XS>
1520
-
1521
- =item L<YAML::Syck>
1522
-
1523
- =item L<YAML::Tiny>
1524
-
1525
- =item L<YAML::PP::LibYAML>
1526
-
1527
- =item L<YAML::LibYAML::API>
1528
-
1529
- =item L<YAML::Tidy>
1530
-
1531
- =item L<https://www.yaml.info/>
1532
-
1533
- =back
1534
-
1535
- =head1 SPONSORS
1536
-
1537
- The Perl Foundation L<https://www.perlfoundation.org/> sponsored this project
1538
- (and the YAML Test Suite) with a grant of 2500 USD in 2017-2018.
1539
-
1540
- =head1 COPYRIGHT AND LICENSE
1541
-
1542
- Copyright 2017-2022 by Tina Müller
1543
-
1544
- This library is free software and may be distributed under the same terms
1545
- as perl itself.
1546
-
1547
- =cut