rasa-pro 3.12.0.dev1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of rasa-pro might be problematic. Click here for more details.

Files changed (790) hide show
  1. README.md +41 -0
  2. rasa/__init__.py +9 -0
  3. rasa/__main__.py +177 -0
  4. rasa/anonymization/__init__.py +2 -0
  5. rasa/anonymization/anonymisation_rule_yaml_reader.py +91 -0
  6. rasa/anonymization/anonymization_pipeline.py +286 -0
  7. rasa/anonymization/anonymization_rule_executor.py +260 -0
  8. rasa/anonymization/anonymization_rule_orchestrator.py +120 -0
  9. rasa/anonymization/schemas/config.yml +47 -0
  10. rasa/anonymization/utils.py +118 -0
  11. rasa/api.py +160 -0
  12. rasa/cli/__init__.py +5 -0
  13. rasa/cli/arguments/__init__.py +0 -0
  14. rasa/cli/arguments/data.py +106 -0
  15. rasa/cli/arguments/default_arguments.py +207 -0
  16. rasa/cli/arguments/evaluate.py +65 -0
  17. rasa/cli/arguments/export.py +51 -0
  18. rasa/cli/arguments/interactive.py +74 -0
  19. rasa/cli/arguments/run.py +219 -0
  20. rasa/cli/arguments/shell.py +17 -0
  21. rasa/cli/arguments/test.py +211 -0
  22. rasa/cli/arguments/train.py +279 -0
  23. rasa/cli/arguments/visualize.py +34 -0
  24. rasa/cli/arguments/x.py +30 -0
  25. rasa/cli/data.py +354 -0
  26. rasa/cli/dialogue_understanding_test.py +251 -0
  27. rasa/cli/e2e_test.py +259 -0
  28. rasa/cli/evaluate.py +222 -0
  29. rasa/cli/export.py +250 -0
  30. rasa/cli/inspect.py +75 -0
  31. rasa/cli/interactive.py +166 -0
  32. rasa/cli/license.py +65 -0
  33. rasa/cli/llm_fine_tuning.py +403 -0
  34. rasa/cli/markers.py +78 -0
  35. rasa/cli/project_templates/__init__.py +0 -0
  36. rasa/cli/project_templates/calm/actions/__init__.py +0 -0
  37. rasa/cli/project_templates/calm/actions/action_template.py +27 -0
  38. rasa/cli/project_templates/calm/actions/add_contact.py +30 -0
  39. rasa/cli/project_templates/calm/actions/db.py +57 -0
  40. rasa/cli/project_templates/calm/actions/list_contacts.py +22 -0
  41. rasa/cli/project_templates/calm/actions/remove_contact.py +35 -0
  42. rasa/cli/project_templates/calm/config.yml +10 -0
  43. rasa/cli/project_templates/calm/credentials.yml +33 -0
  44. rasa/cli/project_templates/calm/data/flows/add_contact.yml +31 -0
  45. rasa/cli/project_templates/calm/data/flows/list_contacts.yml +14 -0
  46. rasa/cli/project_templates/calm/data/flows/remove_contact.yml +29 -0
  47. rasa/cli/project_templates/calm/db/contacts.json +10 -0
  48. rasa/cli/project_templates/calm/domain/add_contact.yml +39 -0
  49. rasa/cli/project_templates/calm/domain/list_contacts.yml +17 -0
  50. rasa/cli/project_templates/calm/domain/remove_contact.yml +38 -0
  51. rasa/cli/project_templates/calm/domain/shared.yml +10 -0
  52. rasa/cli/project_templates/calm/e2e_tests/cancelations/user_cancels_during_a_correction.yml +16 -0
  53. rasa/cli/project_templates/calm/e2e_tests/cancelations/user_changes_mind_on_a_whim.yml +7 -0
  54. rasa/cli/project_templates/calm/e2e_tests/corrections/user_corrects_contact_handle.yml +20 -0
  55. rasa/cli/project_templates/calm/e2e_tests/corrections/user_corrects_contact_name.yml +19 -0
  56. rasa/cli/project_templates/calm/e2e_tests/happy_paths/user_adds_contact_to_their_list.yml +15 -0
  57. rasa/cli/project_templates/calm/e2e_tests/happy_paths/user_lists_contacts.yml +5 -0
  58. rasa/cli/project_templates/calm/e2e_tests/happy_paths/user_removes_contact.yml +11 -0
  59. rasa/cli/project_templates/calm/e2e_tests/happy_paths/user_removes_contact_from_list.yml +12 -0
  60. rasa/cli/project_templates/calm/endpoints.yml +58 -0
  61. rasa/cli/project_templates/default/actions/__init__.py +0 -0
  62. rasa/cli/project_templates/default/actions/actions.py +27 -0
  63. rasa/cli/project_templates/default/config.yml +44 -0
  64. rasa/cli/project_templates/default/credentials.yml +33 -0
  65. rasa/cli/project_templates/default/data/nlu.yml +91 -0
  66. rasa/cli/project_templates/default/data/rules.yml +13 -0
  67. rasa/cli/project_templates/default/data/stories.yml +30 -0
  68. rasa/cli/project_templates/default/domain.yml +34 -0
  69. rasa/cli/project_templates/default/endpoints.yml +42 -0
  70. rasa/cli/project_templates/default/tests/test_stories.yml +91 -0
  71. rasa/cli/project_templates/tutorial/actions/__init__.py +0 -0
  72. rasa/cli/project_templates/tutorial/actions/actions.py +22 -0
  73. rasa/cli/project_templates/tutorial/config.yml +12 -0
  74. rasa/cli/project_templates/tutorial/credentials.yml +33 -0
  75. rasa/cli/project_templates/tutorial/data/flows.yml +8 -0
  76. rasa/cli/project_templates/tutorial/data/patterns.yml +11 -0
  77. rasa/cli/project_templates/tutorial/domain.yml +35 -0
  78. rasa/cli/project_templates/tutorial/endpoints.yml +55 -0
  79. rasa/cli/run.py +143 -0
  80. rasa/cli/scaffold.py +273 -0
  81. rasa/cli/shell.py +141 -0
  82. rasa/cli/studio/__init__.py +0 -0
  83. rasa/cli/studio/download.py +62 -0
  84. rasa/cli/studio/studio.py +296 -0
  85. rasa/cli/studio/train.py +59 -0
  86. rasa/cli/studio/upload.py +62 -0
  87. rasa/cli/telemetry.py +102 -0
  88. rasa/cli/test.py +280 -0
  89. rasa/cli/train.py +278 -0
  90. rasa/cli/utils.py +484 -0
  91. rasa/cli/visualize.py +40 -0
  92. rasa/cli/x.py +206 -0
  93. rasa/constants.py +45 -0
  94. rasa/core/__init__.py +17 -0
  95. rasa/core/actions/__init__.py +0 -0
  96. rasa/core/actions/action.py +1318 -0
  97. rasa/core/actions/action_clean_stack.py +59 -0
  98. rasa/core/actions/action_exceptions.py +24 -0
  99. rasa/core/actions/action_hangup.py +29 -0
  100. rasa/core/actions/action_repeat_bot_messages.py +89 -0
  101. rasa/core/actions/action_run_slot_rejections.py +210 -0
  102. rasa/core/actions/action_trigger_chitchat.py +31 -0
  103. rasa/core/actions/action_trigger_flow.py +109 -0
  104. rasa/core/actions/action_trigger_search.py +31 -0
  105. rasa/core/actions/constants.py +5 -0
  106. rasa/core/actions/custom_action_executor.py +191 -0
  107. rasa/core/actions/direct_custom_actions_executor.py +109 -0
  108. rasa/core/actions/e2e_stub_custom_action_executor.py +72 -0
  109. rasa/core/actions/forms.py +741 -0
  110. rasa/core/actions/grpc_custom_action_executor.py +251 -0
  111. rasa/core/actions/http_custom_action_executor.py +145 -0
  112. rasa/core/actions/loops.py +114 -0
  113. rasa/core/actions/two_stage_fallback.py +186 -0
  114. rasa/core/agent.py +559 -0
  115. rasa/core/auth_retry_tracker_store.py +122 -0
  116. rasa/core/brokers/__init__.py +0 -0
  117. rasa/core/brokers/broker.py +126 -0
  118. rasa/core/brokers/file.py +58 -0
  119. rasa/core/brokers/kafka.py +324 -0
  120. rasa/core/brokers/pika.py +388 -0
  121. rasa/core/brokers/sql.py +86 -0
  122. rasa/core/channels/__init__.py +61 -0
  123. rasa/core/channels/botframework.py +338 -0
  124. rasa/core/channels/callback.py +84 -0
  125. rasa/core/channels/channel.py +456 -0
  126. rasa/core/channels/console.py +241 -0
  127. rasa/core/channels/development_inspector.py +197 -0
  128. rasa/core/channels/facebook.py +419 -0
  129. rasa/core/channels/hangouts.py +329 -0
  130. rasa/core/channels/inspector/.eslintrc.cjs +25 -0
  131. rasa/core/channels/inspector/.gitignore +23 -0
  132. rasa/core/channels/inspector/README.md +54 -0
  133. rasa/core/channels/inspector/assets/favicon.ico +0 -0
  134. rasa/core/channels/inspector/assets/rasa-chat.js +2 -0
  135. rasa/core/channels/inspector/custom.d.ts +3 -0
  136. rasa/core/channels/inspector/dist/assets/arc-861ddd57.js +1 -0
  137. rasa/core/channels/inspector/dist/assets/array-9f3ba611.js +1 -0
  138. rasa/core/channels/inspector/dist/assets/c4Diagram-d0fbc5ce-921f02db.js +10 -0
  139. rasa/core/channels/inspector/dist/assets/classDiagram-936ed81e-b436c4f8.js +2 -0
  140. rasa/core/channels/inspector/dist/assets/classDiagram-v2-c3cb15f1-511a23cb.js +2 -0
  141. rasa/core/channels/inspector/dist/assets/createText-62fc7601-ef476ecd.js +7 -0
  142. rasa/core/channels/inspector/dist/assets/edges-f2ad444c-f1878e0a.js +4 -0
  143. rasa/core/channels/inspector/dist/assets/erDiagram-9d236eb7-fac75185.js +51 -0
  144. rasa/core/channels/inspector/dist/assets/flowDb-1972c806-201c5bbc.js +6 -0
  145. rasa/core/channels/inspector/dist/assets/flowDiagram-7ea5b25a-f904ae41.js +4 -0
  146. rasa/core/channels/inspector/dist/assets/flowDiagram-v2-855bc5b3-b080d6f2.js +1 -0
  147. rasa/core/channels/inspector/dist/assets/flowchart-elk-definition-abe16c3d-1813da66.js +139 -0
  148. rasa/core/channels/inspector/dist/assets/ganttDiagram-9b5ea136-872af172.js +266 -0
  149. rasa/core/channels/inspector/dist/assets/gitGraphDiagram-99d0ae7c-34a0af5a.js +70 -0
  150. rasa/core/channels/inspector/dist/assets/ibm-plex-mono-v4-latin-regular-128cfa44.ttf +0 -0
  151. rasa/core/channels/inspector/dist/assets/ibm-plex-mono-v4-latin-regular-21dbcb97.woff +0 -0
  152. rasa/core/channels/inspector/dist/assets/ibm-plex-mono-v4-latin-regular-222b5e26.svg +329 -0
  153. rasa/core/channels/inspector/dist/assets/ibm-plex-mono-v4-latin-regular-9ad89b2a.woff2 +0 -0
  154. rasa/core/channels/inspector/dist/assets/index-2c4b9a3b-42ba3e3d.js +1 -0
  155. rasa/core/channels/inspector/dist/assets/index-37817b51.js +1317 -0
  156. rasa/core/channels/inspector/dist/assets/index-3ee28881.css +1 -0
  157. rasa/core/channels/inspector/dist/assets/infoDiagram-736b4530-6b731386.js +7 -0
  158. rasa/core/channels/inspector/dist/assets/init-77b53fdd.js +1 -0
  159. rasa/core/channels/inspector/dist/assets/journeyDiagram-df861f2b-e8579ac6.js +139 -0
  160. rasa/core/channels/inspector/dist/assets/lato-v14-latin-700-60c05ee4.woff +0 -0
  161. rasa/core/channels/inspector/dist/assets/lato-v14-latin-700-8335d9b8.svg +438 -0
  162. rasa/core/channels/inspector/dist/assets/lato-v14-latin-700-9cc39c75.ttf +0 -0
  163. rasa/core/channels/inspector/dist/assets/lato-v14-latin-700-ead13ccf.woff2 +0 -0
  164. rasa/core/channels/inspector/dist/assets/lato-v14-latin-regular-16705655.woff2 +0 -0
  165. rasa/core/channels/inspector/dist/assets/lato-v14-latin-regular-5aeb07f9.woff +0 -0
  166. rasa/core/channels/inspector/dist/assets/lato-v14-latin-regular-9c459044.ttf +0 -0
  167. rasa/core/channels/inspector/dist/assets/lato-v14-latin-regular-9e2898a4.svg +435 -0
  168. rasa/core/channels/inspector/dist/assets/layout-89e6403a.js +1 -0
  169. rasa/core/channels/inspector/dist/assets/line-dc73d3fc.js +1 -0
  170. rasa/core/channels/inspector/dist/assets/linear-f5b1d2bc.js +1 -0
  171. rasa/core/channels/inspector/dist/assets/mindmap-definition-beec6740-82cb74fa.js +109 -0
  172. rasa/core/channels/inspector/dist/assets/ordinal-ba9b4969.js +1 -0
  173. rasa/core/channels/inspector/dist/assets/path-53f90ab3.js +1 -0
  174. rasa/core/channels/inspector/dist/assets/pieDiagram-dbbf0591-bdf5f29b.js +35 -0
  175. rasa/core/channels/inspector/dist/assets/quadrantDiagram-4d7f4fd6-c7a0cbe4.js +7 -0
  176. rasa/core/channels/inspector/dist/assets/requirementDiagram-6fc4c22a-7ec5410f.js +52 -0
  177. rasa/core/channels/inspector/dist/assets/sankeyDiagram-8f13d901-caee5554.js +8 -0
  178. rasa/core/channels/inspector/dist/assets/sequenceDiagram-b655622a-2935f8db.js +122 -0
  179. rasa/core/channels/inspector/dist/assets/stateDiagram-59f0c015-8f5d9693.js +1 -0
  180. rasa/core/channels/inspector/dist/assets/stateDiagram-v2-2b26beab-d565d1de.js +1 -0
  181. rasa/core/channels/inspector/dist/assets/styles-080da4f6-75ad421d.js +110 -0
  182. rasa/core/channels/inspector/dist/assets/styles-3dcbcfbf-7e764226.js +159 -0
  183. rasa/core/channels/inspector/dist/assets/styles-9c745c82-7a4e0e61.js +207 -0
  184. rasa/core/channels/inspector/dist/assets/svgDrawCommon-4835440b-4019d1bf.js +1 -0
  185. rasa/core/channels/inspector/dist/assets/timeline-definition-5b62e21b-01ea12df.js +61 -0
  186. rasa/core/channels/inspector/dist/assets/xychartDiagram-2b33534f-89407137.js +7 -0
  187. rasa/core/channels/inspector/dist/index.html +42 -0
  188. rasa/core/channels/inspector/index.html +40 -0
  189. rasa/core/channels/inspector/jest.config.ts +13 -0
  190. rasa/core/channels/inspector/package.json +52 -0
  191. rasa/core/channels/inspector/setupTests.ts +2 -0
  192. rasa/core/channels/inspector/src/App.tsx +220 -0
  193. rasa/core/channels/inspector/src/components/Chat.tsx +95 -0
  194. rasa/core/channels/inspector/src/components/DiagramFlow.tsx +108 -0
  195. rasa/core/channels/inspector/src/components/DialogueInformation.tsx +187 -0
  196. rasa/core/channels/inspector/src/components/DialogueStack.tsx +136 -0
  197. rasa/core/channels/inspector/src/components/ExpandIcon.tsx +16 -0
  198. rasa/core/channels/inspector/src/components/FullscreenButton.tsx +45 -0
  199. rasa/core/channels/inspector/src/components/LoadingSpinner.tsx +22 -0
  200. rasa/core/channels/inspector/src/components/NoActiveFlow.tsx +21 -0
  201. rasa/core/channels/inspector/src/components/RasaLogo.tsx +32 -0
  202. rasa/core/channels/inspector/src/components/SaraDiagrams.tsx +39 -0
  203. rasa/core/channels/inspector/src/components/Slots.tsx +91 -0
  204. rasa/core/channels/inspector/src/components/Welcome.tsx +54 -0
  205. rasa/core/channels/inspector/src/helpers/audiostream.ts +191 -0
  206. rasa/core/channels/inspector/src/helpers/formatters.test.ts +392 -0
  207. rasa/core/channels/inspector/src/helpers/formatters.ts +306 -0
  208. rasa/core/channels/inspector/src/helpers/utils.ts +127 -0
  209. rasa/core/channels/inspector/src/main.tsx +13 -0
  210. rasa/core/channels/inspector/src/theme/Button/Button.ts +29 -0
  211. rasa/core/channels/inspector/src/theme/Heading/Heading.ts +31 -0
  212. rasa/core/channels/inspector/src/theme/Input/Input.ts +27 -0
  213. rasa/core/channels/inspector/src/theme/Link/Link.ts +10 -0
  214. rasa/core/channels/inspector/src/theme/Modal/Modal.ts +47 -0
  215. rasa/core/channels/inspector/src/theme/Table/Table.tsx +38 -0
  216. rasa/core/channels/inspector/src/theme/Tooltip/Tooltip.ts +12 -0
  217. rasa/core/channels/inspector/src/theme/base/breakpoints.ts +8 -0
  218. rasa/core/channels/inspector/src/theme/base/colors.ts +88 -0
  219. rasa/core/channels/inspector/src/theme/base/fonts/fontFaces.css +29 -0
  220. rasa/core/channels/inspector/src/theme/base/fonts/ibm-plex-mono-v4-latin/ibm-plex-mono-v4-latin-regular.eot +0 -0
  221. rasa/core/channels/inspector/src/theme/base/fonts/ibm-plex-mono-v4-latin/ibm-plex-mono-v4-latin-regular.svg +329 -0
  222. rasa/core/channels/inspector/src/theme/base/fonts/ibm-plex-mono-v4-latin/ibm-plex-mono-v4-latin-regular.ttf +0 -0
  223. rasa/core/channels/inspector/src/theme/base/fonts/ibm-plex-mono-v4-latin/ibm-plex-mono-v4-latin-regular.woff +0 -0
  224. rasa/core/channels/inspector/src/theme/base/fonts/ibm-plex-mono-v4-latin/ibm-plex-mono-v4-latin-regular.woff2 +0 -0
  225. rasa/core/channels/inspector/src/theme/base/fonts/lato-v14-latin/lato-v14-latin-700.eot +0 -0
  226. rasa/core/channels/inspector/src/theme/base/fonts/lato-v14-latin/lato-v14-latin-700.svg +438 -0
  227. rasa/core/channels/inspector/src/theme/base/fonts/lato-v14-latin/lato-v14-latin-700.ttf +0 -0
  228. rasa/core/channels/inspector/src/theme/base/fonts/lato-v14-latin/lato-v14-latin-700.woff +0 -0
  229. rasa/core/channels/inspector/src/theme/base/fonts/lato-v14-latin/lato-v14-latin-700.woff2 +0 -0
  230. rasa/core/channels/inspector/src/theme/base/fonts/lato-v14-latin/lato-v14-latin-regular.eot +0 -0
  231. rasa/core/channels/inspector/src/theme/base/fonts/lato-v14-latin/lato-v14-latin-regular.svg +435 -0
  232. rasa/core/channels/inspector/src/theme/base/fonts/lato-v14-latin/lato-v14-latin-regular.ttf +0 -0
  233. rasa/core/channels/inspector/src/theme/base/fonts/lato-v14-latin/lato-v14-latin-regular.woff +0 -0
  234. rasa/core/channels/inspector/src/theme/base/fonts/lato-v14-latin/lato-v14-latin-regular.woff2 +0 -0
  235. rasa/core/channels/inspector/src/theme/base/radii.ts +9 -0
  236. rasa/core/channels/inspector/src/theme/base/shadows.ts +7 -0
  237. rasa/core/channels/inspector/src/theme/base/sizes.ts +7 -0
  238. rasa/core/channels/inspector/src/theme/base/space.ts +15 -0
  239. rasa/core/channels/inspector/src/theme/base/styles.ts +13 -0
  240. rasa/core/channels/inspector/src/theme/base/typography.ts +24 -0
  241. rasa/core/channels/inspector/src/theme/base/zIndices.ts +19 -0
  242. rasa/core/channels/inspector/src/theme/index.ts +101 -0
  243. rasa/core/channels/inspector/src/types.ts +84 -0
  244. rasa/core/channels/inspector/src/vite-env.d.ts +1 -0
  245. rasa/core/channels/inspector/tests/__mocks__/fileMock.ts +1 -0
  246. rasa/core/channels/inspector/tests/__mocks__/matchMedia.ts +16 -0
  247. rasa/core/channels/inspector/tests/__mocks__/styleMock.ts +1 -0
  248. rasa/core/channels/inspector/tests/renderWithProviders.tsx +14 -0
  249. rasa/core/channels/inspector/tsconfig.json +26 -0
  250. rasa/core/channels/inspector/tsconfig.node.json +10 -0
  251. rasa/core/channels/inspector/vite.config.ts +8 -0
  252. rasa/core/channels/inspector/yarn.lock +6249 -0
  253. rasa/core/channels/mattermost.py +229 -0
  254. rasa/core/channels/rasa_chat.py +126 -0
  255. rasa/core/channels/rest.py +230 -0
  256. rasa/core/channels/rocketchat.py +174 -0
  257. rasa/core/channels/slack.py +620 -0
  258. rasa/core/channels/socketio.py +302 -0
  259. rasa/core/channels/telegram.py +298 -0
  260. rasa/core/channels/twilio.py +169 -0
  261. rasa/core/channels/vier_cvg.py +374 -0
  262. rasa/core/channels/voice_ready/__init__.py +0 -0
  263. rasa/core/channels/voice_ready/audiocodes.py +501 -0
  264. rasa/core/channels/voice_ready/jambonz.py +121 -0
  265. rasa/core/channels/voice_ready/jambonz_protocol.py +396 -0
  266. rasa/core/channels/voice_ready/twilio_voice.py +403 -0
  267. rasa/core/channels/voice_ready/utils.py +37 -0
  268. rasa/core/channels/voice_stream/__init__.py +0 -0
  269. rasa/core/channels/voice_stream/asr/__init__.py +0 -0
  270. rasa/core/channels/voice_stream/asr/asr_engine.py +89 -0
  271. rasa/core/channels/voice_stream/asr/asr_event.py +18 -0
  272. rasa/core/channels/voice_stream/asr/azure.py +130 -0
  273. rasa/core/channels/voice_stream/asr/deepgram.py +90 -0
  274. rasa/core/channels/voice_stream/audio_bytes.py +8 -0
  275. rasa/core/channels/voice_stream/browser_audio.py +107 -0
  276. rasa/core/channels/voice_stream/call_state.py +23 -0
  277. rasa/core/channels/voice_stream/tts/__init__.py +0 -0
  278. rasa/core/channels/voice_stream/tts/azure.py +106 -0
  279. rasa/core/channels/voice_stream/tts/cartesia.py +118 -0
  280. rasa/core/channels/voice_stream/tts/tts_cache.py +27 -0
  281. rasa/core/channels/voice_stream/tts/tts_engine.py +58 -0
  282. rasa/core/channels/voice_stream/twilio_media_streams.py +173 -0
  283. rasa/core/channels/voice_stream/util.py +57 -0
  284. rasa/core/channels/voice_stream/voice_channel.py +427 -0
  285. rasa/core/channels/webexteams.py +134 -0
  286. rasa/core/concurrent_lock_store.py +210 -0
  287. rasa/core/constants.py +112 -0
  288. rasa/core/evaluation/__init__.py +0 -0
  289. rasa/core/evaluation/marker.py +267 -0
  290. rasa/core/evaluation/marker_base.py +923 -0
  291. rasa/core/evaluation/marker_stats.py +293 -0
  292. rasa/core/evaluation/marker_tracker_loader.py +103 -0
  293. rasa/core/exceptions.py +29 -0
  294. rasa/core/exporter.py +284 -0
  295. rasa/core/featurizers/__init__.py +0 -0
  296. rasa/core/featurizers/precomputation.py +410 -0
  297. rasa/core/featurizers/single_state_featurizer.py +421 -0
  298. rasa/core/featurizers/tracker_featurizers.py +1262 -0
  299. rasa/core/http_interpreter.py +89 -0
  300. rasa/core/information_retrieval/__init__.py +7 -0
  301. rasa/core/information_retrieval/faiss.py +124 -0
  302. rasa/core/information_retrieval/information_retrieval.py +137 -0
  303. rasa/core/information_retrieval/milvus.py +59 -0
  304. rasa/core/information_retrieval/qdrant.py +96 -0
  305. rasa/core/jobs.py +63 -0
  306. rasa/core/lock.py +139 -0
  307. rasa/core/lock_store.py +343 -0
  308. rasa/core/migrate.py +403 -0
  309. rasa/core/nlg/__init__.py +3 -0
  310. rasa/core/nlg/callback.py +146 -0
  311. rasa/core/nlg/contextual_response_rephraser.py +320 -0
  312. rasa/core/nlg/generator.py +230 -0
  313. rasa/core/nlg/interpolator.py +143 -0
  314. rasa/core/nlg/response.py +155 -0
  315. rasa/core/nlg/summarize.py +70 -0
  316. rasa/core/persistor.py +538 -0
  317. rasa/core/policies/__init__.py +0 -0
  318. rasa/core/policies/ensemble.py +329 -0
  319. rasa/core/policies/enterprise_search_policy.py +905 -0
  320. rasa/core/policies/enterprise_search_prompt_template.jinja2 +25 -0
  321. rasa/core/policies/enterprise_search_prompt_with_citation_template.jinja2 +60 -0
  322. rasa/core/policies/flow_policy.py +205 -0
  323. rasa/core/policies/flows/__init__.py +0 -0
  324. rasa/core/policies/flows/flow_exceptions.py +44 -0
  325. rasa/core/policies/flows/flow_executor.py +754 -0
  326. rasa/core/policies/flows/flow_step_result.py +43 -0
  327. rasa/core/policies/intentless_policy.py +1031 -0
  328. rasa/core/policies/intentless_prompt_template.jinja2 +22 -0
  329. rasa/core/policies/memoization.py +538 -0
  330. rasa/core/policies/policy.py +725 -0
  331. rasa/core/policies/rule_policy.py +1273 -0
  332. rasa/core/policies/ted_policy.py +2169 -0
  333. rasa/core/policies/unexpected_intent_policy.py +1022 -0
  334. rasa/core/processor.py +1465 -0
  335. rasa/core/run.py +342 -0
  336. rasa/core/secrets_manager/__init__.py +0 -0
  337. rasa/core/secrets_manager/constants.py +36 -0
  338. rasa/core/secrets_manager/endpoints.py +391 -0
  339. rasa/core/secrets_manager/factory.py +241 -0
  340. rasa/core/secrets_manager/secret_manager.py +262 -0
  341. rasa/core/secrets_manager/vault.py +584 -0
  342. rasa/core/test.py +1335 -0
  343. rasa/core/tracker_store.py +1703 -0
  344. rasa/core/train.py +105 -0
  345. rasa/core/training/__init__.py +89 -0
  346. rasa/core/training/converters/__init__.py +0 -0
  347. rasa/core/training/converters/responses_prefix_converter.py +119 -0
  348. rasa/core/training/interactive.py +1744 -0
  349. rasa/core/training/story_conflict.py +381 -0
  350. rasa/core/training/training.py +93 -0
  351. rasa/core/utils.py +366 -0
  352. rasa/core/visualize.py +70 -0
  353. rasa/dialogue_understanding/__init__.py +0 -0
  354. rasa/dialogue_understanding/coexistence/__init__.py +0 -0
  355. rasa/dialogue_understanding/coexistence/constants.py +4 -0
  356. rasa/dialogue_understanding/coexistence/intent_based_router.py +196 -0
  357. rasa/dialogue_understanding/coexistence/llm_based_router.py +327 -0
  358. rasa/dialogue_understanding/coexistence/router_template.jinja2 +12 -0
  359. rasa/dialogue_understanding/commands/__init__.py +61 -0
  360. rasa/dialogue_understanding/commands/can_not_handle_command.py +70 -0
  361. rasa/dialogue_understanding/commands/cancel_flow_command.py +125 -0
  362. rasa/dialogue_understanding/commands/change_flow_command.py +44 -0
  363. rasa/dialogue_understanding/commands/chit_chat_answer_command.py +57 -0
  364. rasa/dialogue_understanding/commands/clarify_command.py +86 -0
  365. rasa/dialogue_understanding/commands/command.py +85 -0
  366. rasa/dialogue_understanding/commands/correct_slots_command.py +297 -0
  367. rasa/dialogue_understanding/commands/error_command.py +79 -0
  368. rasa/dialogue_understanding/commands/free_form_answer_command.py +9 -0
  369. rasa/dialogue_understanding/commands/handle_code_change_command.py +73 -0
  370. rasa/dialogue_understanding/commands/human_handoff_command.py +66 -0
  371. rasa/dialogue_understanding/commands/knowledge_answer_command.py +57 -0
  372. rasa/dialogue_understanding/commands/noop_command.py +54 -0
  373. rasa/dialogue_understanding/commands/repeat_bot_messages_command.py +60 -0
  374. rasa/dialogue_understanding/commands/restart_command.py +58 -0
  375. rasa/dialogue_understanding/commands/session_end_command.py +61 -0
  376. rasa/dialogue_understanding/commands/session_start_command.py +59 -0
  377. rasa/dialogue_understanding/commands/set_slot_command.py +160 -0
  378. rasa/dialogue_understanding/commands/skip_question_command.py +75 -0
  379. rasa/dialogue_understanding/commands/start_flow_command.py +107 -0
  380. rasa/dialogue_understanding/commands/user_silence_command.py +59 -0
  381. rasa/dialogue_understanding/commands/utils.py +45 -0
  382. rasa/dialogue_understanding/generator/__init__.py +21 -0
  383. rasa/dialogue_understanding/generator/command_generator.py +464 -0
  384. rasa/dialogue_understanding/generator/constants.py +27 -0
  385. rasa/dialogue_understanding/generator/flow_document_template.jinja2 +4 -0
  386. rasa/dialogue_understanding/generator/flow_retrieval.py +466 -0
  387. rasa/dialogue_understanding/generator/llm_based_command_generator.py +500 -0
  388. rasa/dialogue_understanding/generator/llm_command_generator.py +67 -0
  389. rasa/dialogue_understanding/generator/multi_step/__init__.py +0 -0
  390. rasa/dialogue_understanding/generator/multi_step/fill_slots_prompt.jinja2 +62 -0
  391. rasa/dialogue_understanding/generator/multi_step/handle_flows_prompt.jinja2 +38 -0
  392. rasa/dialogue_understanding/generator/multi_step/multi_step_llm_command_generator.py +920 -0
  393. rasa/dialogue_understanding/generator/nlu_command_adapter.py +261 -0
  394. rasa/dialogue_understanding/generator/single_step/__init__.py +0 -0
  395. rasa/dialogue_understanding/generator/single_step/command_prompt_template.jinja2 +60 -0
  396. rasa/dialogue_understanding/generator/single_step/single_step_llm_command_generator.py +486 -0
  397. rasa/dialogue_understanding/patterns/__init__.py +0 -0
  398. rasa/dialogue_understanding/patterns/cancel.py +111 -0
  399. rasa/dialogue_understanding/patterns/cannot_handle.py +43 -0
  400. rasa/dialogue_understanding/patterns/chitchat.py +37 -0
  401. rasa/dialogue_understanding/patterns/clarify.py +97 -0
  402. rasa/dialogue_understanding/patterns/code_change.py +41 -0
  403. rasa/dialogue_understanding/patterns/collect_information.py +90 -0
  404. rasa/dialogue_understanding/patterns/completed.py +40 -0
  405. rasa/dialogue_understanding/patterns/continue_interrupted.py +42 -0
  406. rasa/dialogue_understanding/patterns/correction.py +278 -0
  407. rasa/dialogue_understanding/patterns/default_flows_for_patterns.yml +301 -0
  408. rasa/dialogue_understanding/patterns/human_handoff.py +37 -0
  409. rasa/dialogue_understanding/patterns/internal_error.py +47 -0
  410. rasa/dialogue_understanding/patterns/repeat.py +37 -0
  411. rasa/dialogue_understanding/patterns/restart.py +37 -0
  412. rasa/dialogue_understanding/patterns/search.py +37 -0
  413. rasa/dialogue_understanding/patterns/session_start.py +37 -0
  414. rasa/dialogue_understanding/patterns/skip_question.py +38 -0
  415. rasa/dialogue_understanding/patterns/user_silence.py +37 -0
  416. rasa/dialogue_understanding/processor/__init__.py +0 -0
  417. rasa/dialogue_understanding/processor/command_processor.py +720 -0
  418. rasa/dialogue_understanding/processor/command_processor_component.py +43 -0
  419. rasa/dialogue_understanding/stack/__init__.py +0 -0
  420. rasa/dialogue_understanding/stack/dialogue_stack.py +178 -0
  421. rasa/dialogue_understanding/stack/frames/__init__.py +19 -0
  422. rasa/dialogue_understanding/stack/frames/chit_chat_frame.py +27 -0
  423. rasa/dialogue_understanding/stack/frames/dialogue_stack_frame.py +137 -0
  424. rasa/dialogue_understanding/stack/frames/flow_stack_frame.py +157 -0
  425. rasa/dialogue_understanding/stack/frames/pattern_frame.py +10 -0
  426. rasa/dialogue_understanding/stack/frames/search_frame.py +27 -0
  427. rasa/dialogue_understanding/stack/utils.py +211 -0
  428. rasa/dialogue_understanding/utils.py +14 -0
  429. rasa/dialogue_understanding_test/__init__.py +0 -0
  430. rasa/dialogue_understanding_test/command_metric_calculation.py +12 -0
  431. rasa/dialogue_understanding_test/constants.py +17 -0
  432. rasa/dialogue_understanding_test/du_test_case.py +118 -0
  433. rasa/dialogue_understanding_test/du_test_result.py +11 -0
  434. rasa/dialogue_understanding_test/du_test_runner.py +93 -0
  435. rasa/dialogue_understanding_test/io.py +54 -0
  436. rasa/dialogue_understanding_test/validation.py +22 -0
  437. rasa/e2e_test/__init__.py +0 -0
  438. rasa/e2e_test/aggregate_test_stats_calculator.py +134 -0
  439. rasa/e2e_test/assertions.py +1345 -0
  440. rasa/e2e_test/assertions_schema.yml +129 -0
  441. rasa/e2e_test/constants.py +31 -0
  442. rasa/e2e_test/e2e_config.py +220 -0
  443. rasa/e2e_test/e2e_config_schema.yml +26 -0
  444. rasa/e2e_test/e2e_test_case.py +569 -0
  445. rasa/e2e_test/e2e_test_converter.py +363 -0
  446. rasa/e2e_test/e2e_test_converter_prompt.jinja2 +70 -0
  447. rasa/e2e_test/e2e_test_coverage_report.py +364 -0
  448. rasa/e2e_test/e2e_test_result.py +54 -0
  449. rasa/e2e_test/e2e_test_runner.py +1192 -0
  450. rasa/e2e_test/e2e_test_schema.yml +181 -0
  451. rasa/e2e_test/pykwalify_extensions.py +39 -0
  452. rasa/e2e_test/stub_custom_action.py +70 -0
  453. rasa/e2e_test/utils/__init__.py +0 -0
  454. rasa/e2e_test/utils/e2e_yaml_utils.py +55 -0
  455. rasa/e2e_test/utils/io.py +598 -0
  456. rasa/e2e_test/utils/validation.py +178 -0
  457. rasa/engine/__init__.py +0 -0
  458. rasa/engine/caching.py +463 -0
  459. rasa/engine/constants.py +17 -0
  460. rasa/engine/exceptions.py +14 -0
  461. rasa/engine/graph.py +642 -0
  462. rasa/engine/loader.py +48 -0
  463. rasa/engine/recipes/__init__.py +0 -0
  464. rasa/engine/recipes/config_files/default_config.yml +41 -0
  465. rasa/engine/recipes/default_components.py +97 -0
  466. rasa/engine/recipes/default_recipe.py +1272 -0
  467. rasa/engine/recipes/graph_recipe.py +79 -0
  468. rasa/engine/recipes/recipe.py +93 -0
  469. rasa/engine/runner/__init__.py +0 -0
  470. rasa/engine/runner/dask.py +250 -0
  471. rasa/engine/runner/interface.py +49 -0
  472. rasa/engine/storage/__init__.py +0 -0
  473. rasa/engine/storage/local_model_storage.py +244 -0
  474. rasa/engine/storage/resource.py +110 -0
  475. rasa/engine/storage/storage.py +199 -0
  476. rasa/engine/training/__init__.py +0 -0
  477. rasa/engine/training/components.py +176 -0
  478. rasa/engine/training/fingerprinting.py +64 -0
  479. rasa/engine/training/graph_trainer.py +256 -0
  480. rasa/engine/training/hooks.py +164 -0
  481. rasa/engine/validation.py +1451 -0
  482. rasa/env.py +14 -0
  483. rasa/exceptions.py +69 -0
  484. rasa/graph_components/__init__.py +0 -0
  485. rasa/graph_components/converters/__init__.py +0 -0
  486. rasa/graph_components/converters/nlu_message_converter.py +48 -0
  487. rasa/graph_components/providers/__init__.py +0 -0
  488. rasa/graph_components/providers/domain_for_core_training_provider.py +87 -0
  489. rasa/graph_components/providers/domain_provider.py +71 -0
  490. rasa/graph_components/providers/flows_provider.py +74 -0
  491. rasa/graph_components/providers/forms_provider.py +44 -0
  492. rasa/graph_components/providers/nlu_training_data_provider.py +56 -0
  493. rasa/graph_components/providers/responses_provider.py +44 -0
  494. rasa/graph_components/providers/rule_only_provider.py +49 -0
  495. rasa/graph_components/providers/story_graph_provider.py +96 -0
  496. rasa/graph_components/providers/training_tracker_provider.py +55 -0
  497. rasa/graph_components/validators/__init__.py +0 -0
  498. rasa/graph_components/validators/default_recipe_validator.py +550 -0
  499. rasa/graph_components/validators/finetuning_validator.py +302 -0
  500. rasa/hooks.py +111 -0
  501. rasa/jupyter.py +63 -0
  502. rasa/llm_fine_tuning/__init__.py +0 -0
  503. rasa/llm_fine_tuning/annotation_module.py +241 -0
  504. rasa/llm_fine_tuning/conversations.py +144 -0
  505. rasa/llm_fine_tuning/llm_data_preparation_module.py +178 -0
  506. rasa/llm_fine_tuning/paraphrasing/__init__.py +0 -0
  507. rasa/llm_fine_tuning/paraphrasing/conversation_rephraser.py +281 -0
  508. rasa/llm_fine_tuning/paraphrasing/default_rephrase_prompt_template.jina2 +44 -0
  509. rasa/llm_fine_tuning/paraphrasing/rephrase_validator.py +121 -0
  510. rasa/llm_fine_tuning/paraphrasing/rephrased_user_message.py +10 -0
  511. rasa/llm_fine_tuning/paraphrasing_module.py +128 -0
  512. rasa/llm_fine_tuning/storage.py +174 -0
  513. rasa/llm_fine_tuning/train_test_split_module.py +441 -0
  514. rasa/markers/__init__.py +0 -0
  515. rasa/markers/marker.py +269 -0
  516. rasa/markers/marker_base.py +828 -0
  517. rasa/markers/upload.py +74 -0
  518. rasa/markers/validate.py +21 -0
  519. rasa/model.py +118 -0
  520. rasa/model_manager/__init__.py +0 -0
  521. rasa/model_manager/config.py +40 -0
  522. rasa/model_manager/model_api.py +559 -0
  523. rasa/model_manager/runner_service.py +286 -0
  524. rasa/model_manager/socket_bridge.py +146 -0
  525. rasa/model_manager/studio_jwt_auth.py +86 -0
  526. rasa/model_manager/trainer_service.py +325 -0
  527. rasa/model_manager/utils.py +87 -0
  528. rasa/model_manager/warm_rasa_process.py +187 -0
  529. rasa/model_service.py +112 -0
  530. rasa/model_testing.py +457 -0
  531. rasa/model_training.py +596 -0
  532. rasa/nlu/__init__.py +7 -0
  533. rasa/nlu/classifiers/__init__.py +3 -0
  534. rasa/nlu/classifiers/classifier.py +5 -0
  535. rasa/nlu/classifiers/diet_classifier.py +1881 -0
  536. rasa/nlu/classifiers/fallback_classifier.py +192 -0
  537. rasa/nlu/classifiers/keyword_intent_classifier.py +188 -0
  538. rasa/nlu/classifiers/logistic_regression_classifier.py +253 -0
  539. rasa/nlu/classifiers/mitie_intent_classifier.py +156 -0
  540. rasa/nlu/classifiers/regex_message_handler.py +56 -0
  541. rasa/nlu/classifiers/sklearn_intent_classifier.py +330 -0
  542. rasa/nlu/constants.py +77 -0
  543. rasa/nlu/convert.py +40 -0
  544. rasa/nlu/emulators/__init__.py +0 -0
  545. rasa/nlu/emulators/dialogflow.py +55 -0
  546. rasa/nlu/emulators/emulator.py +49 -0
  547. rasa/nlu/emulators/luis.py +86 -0
  548. rasa/nlu/emulators/no_emulator.py +10 -0
  549. rasa/nlu/emulators/wit.py +56 -0
  550. rasa/nlu/extractors/__init__.py +0 -0
  551. rasa/nlu/extractors/crf_entity_extractor.py +715 -0
  552. rasa/nlu/extractors/duckling_entity_extractor.py +206 -0
  553. rasa/nlu/extractors/entity_synonyms.py +178 -0
  554. rasa/nlu/extractors/extractor.py +470 -0
  555. rasa/nlu/extractors/mitie_entity_extractor.py +293 -0
  556. rasa/nlu/extractors/regex_entity_extractor.py +220 -0
  557. rasa/nlu/extractors/spacy_entity_extractor.py +95 -0
  558. rasa/nlu/featurizers/__init__.py +0 -0
  559. rasa/nlu/featurizers/dense_featurizer/__init__.py +0 -0
  560. rasa/nlu/featurizers/dense_featurizer/convert_featurizer.py +445 -0
  561. rasa/nlu/featurizers/dense_featurizer/dense_featurizer.py +57 -0
  562. rasa/nlu/featurizers/dense_featurizer/lm_featurizer.py +768 -0
  563. rasa/nlu/featurizers/dense_featurizer/mitie_featurizer.py +170 -0
  564. rasa/nlu/featurizers/dense_featurizer/spacy_featurizer.py +132 -0
  565. rasa/nlu/featurizers/featurizer.py +89 -0
  566. rasa/nlu/featurizers/sparse_featurizer/__init__.py +0 -0
  567. rasa/nlu/featurizers/sparse_featurizer/count_vectors_featurizer.py +867 -0
  568. rasa/nlu/featurizers/sparse_featurizer/lexical_syntactic_featurizer.py +571 -0
  569. rasa/nlu/featurizers/sparse_featurizer/regex_featurizer.py +271 -0
  570. rasa/nlu/featurizers/sparse_featurizer/sparse_featurizer.py +9 -0
  571. rasa/nlu/model.py +24 -0
  572. rasa/nlu/run.py +27 -0
  573. rasa/nlu/selectors/__init__.py +0 -0
  574. rasa/nlu/selectors/response_selector.py +987 -0
  575. rasa/nlu/test.py +1940 -0
  576. rasa/nlu/tokenizers/__init__.py +0 -0
  577. rasa/nlu/tokenizers/jieba_tokenizer.py +148 -0
  578. rasa/nlu/tokenizers/mitie_tokenizer.py +75 -0
  579. rasa/nlu/tokenizers/spacy_tokenizer.py +72 -0
  580. rasa/nlu/tokenizers/tokenizer.py +239 -0
  581. rasa/nlu/tokenizers/whitespace_tokenizer.py +95 -0
  582. rasa/nlu/utils/__init__.py +35 -0
  583. rasa/nlu/utils/bilou_utils.py +462 -0
  584. rasa/nlu/utils/hugging_face/__init__.py +0 -0
  585. rasa/nlu/utils/hugging_face/registry.py +108 -0
  586. rasa/nlu/utils/hugging_face/transformers_pre_post_processors.py +311 -0
  587. rasa/nlu/utils/mitie_utils.py +113 -0
  588. rasa/nlu/utils/pattern_utils.py +168 -0
  589. rasa/nlu/utils/spacy_utils.py +310 -0
  590. rasa/plugin.py +90 -0
  591. rasa/server.py +1588 -0
  592. rasa/shared/__init__.py +0 -0
  593. rasa/shared/constants.py +311 -0
  594. rasa/shared/core/__init__.py +0 -0
  595. rasa/shared/core/command_payload_reader.py +109 -0
  596. rasa/shared/core/constants.py +180 -0
  597. rasa/shared/core/conversation.py +46 -0
  598. rasa/shared/core/domain.py +2172 -0
  599. rasa/shared/core/events.py +2559 -0
  600. rasa/shared/core/flows/__init__.py +7 -0
  601. rasa/shared/core/flows/flow.py +562 -0
  602. rasa/shared/core/flows/flow_path.py +84 -0
  603. rasa/shared/core/flows/flow_step.py +146 -0
  604. rasa/shared/core/flows/flow_step_links.py +319 -0
  605. rasa/shared/core/flows/flow_step_sequence.py +70 -0
  606. rasa/shared/core/flows/flows_list.py +258 -0
  607. rasa/shared/core/flows/flows_yaml_schema.json +303 -0
  608. rasa/shared/core/flows/nlu_trigger.py +117 -0
  609. rasa/shared/core/flows/steps/__init__.py +24 -0
  610. rasa/shared/core/flows/steps/action.py +56 -0
  611. rasa/shared/core/flows/steps/call.py +64 -0
  612. rasa/shared/core/flows/steps/collect.py +112 -0
  613. rasa/shared/core/flows/steps/constants.py +5 -0
  614. rasa/shared/core/flows/steps/continuation.py +36 -0
  615. rasa/shared/core/flows/steps/end.py +22 -0
  616. rasa/shared/core/flows/steps/internal.py +44 -0
  617. rasa/shared/core/flows/steps/link.py +51 -0
  618. rasa/shared/core/flows/steps/no_operation.py +48 -0
  619. rasa/shared/core/flows/steps/set_slots.py +50 -0
  620. rasa/shared/core/flows/steps/start.py +30 -0
  621. rasa/shared/core/flows/utils.py +39 -0
  622. rasa/shared/core/flows/validation.py +735 -0
  623. rasa/shared/core/flows/yaml_flows_io.py +405 -0
  624. rasa/shared/core/generator.py +908 -0
  625. rasa/shared/core/slot_mappings.py +526 -0
  626. rasa/shared/core/slots.py +654 -0
  627. rasa/shared/core/trackers.py +1183 -0
  628. rasa/shared/core/training_data/__init__.py +0 -0
  629. rasa/shared/core/training_data/loading.py +89 -0
  630. rasa/shared/core/training_data/story_reader/__init__.py +0 -0
  631. rasa/shared/core/training_data/story_reader/story_reader.py +129 -0
  632. rasa/shared/core/training_data/story_reader/story_step_builder.py +168 -0
  633. rasa/shared/core/training_data/story_reader/yaml_story_reader.py +888 -0
  634. rasa/shared/core/training_data/story_writer/__init__.py +0 -0
  635. rasa/shared/core/training_data/story_writer/story_writer.py +76 -0
  636. rasa/shared/core/training_data/story_writer/yaml_story_writer.py +444 -0
  637. rasa/shared/core/training_data/structures.py +858 -0
  638. rasa/shared/core/training_data/visualization.html +146 -0
  639. rasa/shared/core/training_data/visualization.py +603 -0
  640. rasa/shared/data.py +249 -0
  641. rasa/shared/engine/__init__.py +0 -0
  642. rasa/shared/engine/caching.py +26 -0
  643. rasa/shared/exceptions.py +167 -0
  644. rasa/shared/importers/__init__.py +0 -0
  645. rasa/shared/importers/importer.py +770 -0
  646. rasa/shared/importers/multi_project.py +215 -0
  647. rasa/shared/importers/rasa.py +108 -0
  648. rasa/shared/importers/remote_importer.py +196 -0
  649. rasa/shared/importers/utils.py +36 -0
  650. rasa/shared/nlu/__init__.py +0 -0
  651. rasa/shared/nlu/constants.py +53 -0
  652. rasa/shared/nlu/interpreter.py +10 -0
  653. rasa/shared/nlu/training_data/__init__.py +0 -0
  654. rasa/shared/nlu/training_data/entities_parser.py +208 -0
  655. rasa/shared/nlu/training_data/features.py +492 -0
  656. rasa/shared/nlu/training_data/formats/__init__.py +10 -0
  657. rasa/shared/nlu/training_data/formats/dialogflow.py +163 -0
  658. rasa/shared/nlu/training_data/formats/luis.py +87 -0
  659. rasa/shared/nlu/training_data/formats/rasa.py +135 -0
  660. rasa/shared/nlu/training_data/formats/rasa_yaml.py +618 -0
  661. rasa/shared/nlu/training_data/formats/readerwriter.py +244 -0
  662. rasa/shared/nlu/training_data/formats/wit.py +52 -0
  663. rasa/shared/nlu/training_data/loading.py +137 -0
  664. rasa/shared/nlu/training_data/lookup_tables_parser.py +30 -0
  665. rasa/shared/nlu/training_data/message.py +490 -0
  666. rasa/shared/nlu/training_data/schemas/__init__.py +0 -0
  667. rasa/shared/nlu/training_data/schemas/data_schema.py +85 -0
  668. rasa/shared/nlu/training_data/schemas/nlu.yml +53 -0
  669. rasa/shared/nlu/training_data/schemas/responses.yml +70 -0
  670. rasa/shared/nlu/training_data/synonyms_parser.py +42 -0
  671. rasa/shared/nlu/training_data/training_data.py +729 -0
  672. rasa/shared/nlu/training_data/util.py +223 -0
  673. rasa/shared/providers/__init__.py +0 -0
  674. rasa/shared/providers/_configs/__init__.py +0 -0
  675. rasa/shared/providers/_configs/azure_openai_client_config.py +677 -0
  676. rasa/shared/providers/_configs/client_config.py +59 -0
  677. rasa/shared/providers/_configs/default_litellm_client_config.py +132 -0
  678. rasa/shared/providers/_configs/huggingface_local_embedding_client_config.py +236 -0
  679. rasa/shared/providers/_configs/litellm_router_client_config.py +222 -0
  680. rasa/shared/providers/_configs/model_group_config.py +173 -0
  681. rasa/shared/providers/_configs/openai_client_config.py +177 -0
  682. rasa/shared/providers/_configs/rasa_llm_client_config.py +75 -0
  683. rasa/shared/providers/_configs/self_hosted_llm_client_config.py +178 -0
  684. rasa/shared/providers/_configs/utils.py +117 -0
  685. rasa/shared/providers/_ssl_verification_utils.py +124 -0
  686. rasa/shared/providers/_utils.py +79 -0
  687. rasa/shared/providers/constants.py +7 -0
  688. rasa/shared/providers/embedding/__init__.py +0 -0
  689. rasa/shared/providers/embedding/_base_litellm_embedding_client.py +243 -0
  690. rasa/shared/providers/embedding/_langchain_embedding_client_adapter.py +74 -0
  691. rasa/shared/providers/embedding/azure_openai_embedding_client.py +335 -0
  692. rasa/shared/providers/embedding/default_litellm_embedding_client.py +126 -0
  693. rasa/shared/providers/embedding/embedding_client.py +90 -0
  694. rasa/shared/providers/embedding/embedding_response.py +41 -0
  695. rasa/shared/providers/embedding/huggingface_local_embedding_client.py +191 -0
  696. rasa/shared/providers/embedding/litellm_router_embedding_client.py +138 -0
  697. rasa/shared/providers/embedding/openai_embedding_client.py +172 -0
  698. rasa/shared/providers/llm/__init__.py +0 -0
  699. rasa/shared/providers/llm/_base_litellm_client.py +265 -0
  700. rasa/shared/providers/llm/azure_openai_llm_client.py +415 -0
  701. rasa/shared/providers/llm/default_litellm_llm_client.py +110 -0
  702. rasa/shared/providers/llm/litellm_router_llm_client.py +202 -0
  703. rasa/shared/providers/llm/llm_client.py +78 -0
  704. rasa/shared/providers/llm/llm_response.py +50 -0
  705. rasa/shared/providers/llm/openai_llm_client.py +161 -0
  706. rasa/shared/providers/llm/rasa_llm_client.py +120 -0
  707. rasa/shared/providers/llm/self_hosted_llm_client.py +276 -0
  708. rasa/shared/providers/mappings.py +94 -0
  709. rasa/shared/providers/router/__init__.py +0 -0
  710. rasa/shared/providers/router/_base_litellm_router_client.py +185 -0
  711. rasa/shared/providers/router/router_client.py +75 -0
  712. rasa/shared/utils/__init__.py +0 -0
  713. rasa/shared/utils/cli.py +102 -0
  714. rasa/shared/utils/common.py +324 -0
  715. rasa/shared/utils/constants.py +4 -0
  716. rasa/shared/utils/health_check/__init__.py +0 -0
  717. rasa/shared/utils/health_check/embeddings_health_check_mixin.py +31 -0
  718. rasa/shared/utils/health_check/health_check.py +258 -0
  719. rasa/shared/utils/health_check/llm_health_check_mixin.py +31 -0
  720. rasa/shared/utils/io.py +499 -0
  721. rasa/shared/utils/llm.py +764 -0
  722. rasa/shared/utils/pykwalify_extensions.py +27 -0
  723. rasa/shared/utils/schemas/__init__.py +0 -0
  724. rasa/shared/utils/schemas/config.yml +2 -0
  725. rasa/shared/utils/schemas/domain.yml +145 -0
  726. rasa/shared/utils/schemas/events.py +214 -0
  727. rasa/shared/utils/schemas/model_config.yml +36 -0
  728. rasa/shared/utils/schemas/stories.yml +173 -0
  729. rasa/shared/utils/yaml.py +1068 -0
  730. rasa/studio/__init__.py +0 -0
  731. rasa/studio/auth.py +270 -0
  732. rasa/studio/config.py +136 -0
  733. rasa/studio/constants.py +19 -0
  734. rasa/studio/data_handler.py +368 -0
  735. rasa/studio/download.py +489 -0
  736. rasa/studio/results_logger.py +137 -0
  737. rasa/studio/train.py +134 -0
  738. rasa/studio/upload.py +563 -0
  739. rasa/telemetry.py +1876 -0
  740. rasa/tracing/__init__.py +0 -0
  741. rasa/tracing/config.py +355 -0
  742. rasa/tracing/constants.py +62 -0
  743. rasa/tracing/instrumentation/__init__.py +0 -0
  744. rasa/tracing/instrumentation/attribute_extractors.py +765 -0
  745. rasa/tracing/instrumentation/instrumentation.py +1306 -0
  746. rasa/tracing/instrumentation/intentless_policy_instrumentation.py +144 -0
  747. rasa/tracing/instrumentation/metrics.py +294 -0
  748. rasa/tracing/metric_instrument_provider.py +205 -0
  749. rasa/utils/__init__.py +0 -0
  750. rasa/utils/beta.py +83 -0
  751. rasa/utils/cli.py +28 -0
  752. rasa/utils/common.py +639 -0
  753. rasa/utils/converter.py +53 -0
  754. rasa/utils/endpoints.py +331 -0
  755. rasa/utils/io.py +252 -0
  756. rasa/utils/json_utils.py +60 -0
  757. rasa/utils/licensing.py +542 -0
  758. rasa/utils/log_utils.py +181 -0
  759. rasa/utils/mapper.py +210 -0
  760. rasa/utils/ml_utils.py +147 -0
  761. rasa/utils/plotting.py +362 -0
  762. rasa/utils/sanic_error_handler.py +32 -0
  763. rasa/utils/singleton.py +23 -0
  764. rasa/utils/tensorflow/__init__.py +0 -0
  765. rasa/utils/tensorflow/callback.py +112 -0
  766. rasa/utils/tensorflow/constants.py +116 -0
  767. rasa/utils/tensorflow/crf.py +492 -0
  768. rasa/utils/tensorflow/data_generator.py +440 -0
  769. rasa/utils/tensorflow/environment.py +161 -0
  770. rasa/utils/tensorflow/exceptions.py +5 -0
  771. rasa/utils/tensorflow/feature_array.py +366 -0
  772. rasa/utils/tensorflow/layers.py +1565 -0
  773. rasa/utils/tensorflow/layers_utils.py +113 -0
  774. rasa/utils/tensorflow/metrics.py +281 -0
  775. rasa/utils/tensorflow/model_data.py +798 -0
  776. rasa/utils/tensorflow/model_data_utils.py +499 -0
  777. rasa/utils/tensorflow/models.py +935 -0
  778. rasa/utils/tensorflow/rasa_layers.py +1094 -0
  779. rasa/utils/tensorflow/transformer.py +640 -0
  780. rasa/utils/tensorflow/types.py +6 -0
  781. rasa/utils/train_utils.py +572 -0
  782. rasa/utils/url_tools.py +53 -0
  783. rasa/utils/yaml.py +54 -0
  784. rasa/validator.py +1644 -0
  785. rasa/version.py +3 -0
  786. rasa_pro-3.12.0.dev1.dist-info/METADATA +199 -0
  787. rasa_pro-3.12.0.dev1.dist-info/NOTICE +5 -0
  788. rasa_pro-3.12.0.dev1.dist-info/RECORD +790 -0
  789. rasa_pro-3.12.0.dev1.dist-info/WHEEL +4 -0
  790. rasa_pro-3.12.0.dev1.dist-info/entry_points.txt +3 -0
@@ -0,0 +1,329 @@
1
+ <?xml version="1.0" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
3
+ <svg xmlns="http://www.w3.org/2000/svg">
4
+ <defs >
5
+ <font id="IBMPlexMono" horiz-adv-x="600" ><font-face
6
+ font-family="IBM Plex Mono"
7
+ units-per-em="1000"
8
+ panose-1="2 11 5 9 5 2 3 0 2 3"
9
+ ascent="1025"
10
+ descent="-275"
11
+ alphabetic="0" />
12
+ <glyph unicode=" " glyph-name="space" />
13
+ <glyph unicode="!" glyph-name="exclam" d="M284 233L256 495V698H344V495L316 233H284ZM300 -9Q259 -9 243 8T226 51V69Q226 95 242 112T300 129Q341 129 357 112T374 69V51Q374 25 358 8T300 -9Z" />
14
+ <glyph unicode="&quot;" glyph-name="quotedbl" d="M430 463V740H506V463H430ZM351 463V740H427V463H351Z" />
15
+ <glyph unicode="#" glyph-name="numbersign" d="M148 216H16V282H160L183 416H52V482H195L233 698H306L183 0H110L148 216ZM417 698H490L452 482H584V416H440L417 282H548V216H405L367 0H294L417 698Z" />
16
+ <glyph unicode="$" glyph-name="dollar" d="M279 -11Q196 -6 141 27T50 111L111 161Q147 116 187 91T280 61V322L257 326Q205 335 170 353T114 397T84 454T75 520Q75 605 129 653T279 709V811H341V709Q410 704 460 676T549 596L486 551Q459 587 425 609T340 636V391L370
17
+ 386Q421 377 456 359T512 316T543 258T552 191Q552 103 498 50T341 -11V-113H279V-11ZM156 520Q156 471 184 443T280 401V637Q220 631 188 602T156 520ZM471 190Q471 244 441 272T340 312V62Q403 69 437 102T471 190Z" />
18
+ <glyph unicode="%" glyph-name="percent" d="M169 356Q103 356 62 400T20 533Q20 621 61 665T169 710Q235 710 276 666T318 533Q318 445 277 401T169 356ZM169 410Q205 410 227 435T250 508V558Q250 606 228 631T169 656Q133 656 111 631T88 558V508Q88 460 110
19
+ 435T169 410ZM510 698H582L422 398H350L510 698ZM178 300H250L90 0H18L178 300ZM431 -12Q365 -12 324 32T282 165Q282 253 323 297T431 342Q497 342 538 298T580 165Q580 77 539 33T431 -12ZM431 42Q467 42 489 67T512 140V190Q512 238 490 263T431 288Q395 288
20
+ 373 263T350 190V140Q350 92 372 67T431 42Z" />
21
+ <glyph unicode="&amp;" glyph-name="ampersand" d="M217 -12Q171 -12 136 3T76 44T38 106T25 181Q25 207 31 235T52 289T91 340T154 384Q126 420 108 458T89 541Q89 579 103 610T142 663T200 698T270 710Q303 710 330 701T379 676T414 642T436 604L370 570Q357
22
+ 601 331 621T266 642Q221 642 195 615T168 544V536Q168 520 172 505T184 474T206 438T239 395L329 284L402 194H407Q414 233 416 283T420 381H561V314H486Q483 290 480 269T473 228T464 188T450 144L572 0H477L390 103H385Q371 51 328 20T217 -12ZM238 59Q281 59
23
+ 314 77T366 127L192 337Q146 308 127 272T108 192V177Q108 123 144 91T238 59Z" />
24
+ <glyph unicode="&apos;" glyph-name="quotesingle" d="M262 463V740H338V463H262Z" />
25
+ <glyph unicode="(" glyph-name="parenleft" d="M205 311Q205 384 221 451T266 577T333 681T413 760H494Q450 727 412 684T344 589T297 478T280 354V268Q280 204 297 145T343 34T411 -61T494 -138H413Q371 -107 333 -60T267 45T222 170T205 311Z" />
26
+ <glyph unicode=")" glyph-name="parenright" d="M395 311Q395 238 379 171T334 45T267 -60T187 -138H106Q149 -105 188 -62T256 33T303 144T320 268V354Q320 418 303 477T257 588T188 683T106 760H187Q229 728 267 682T333 577T378 452T395 311Z" />
27
+ <glyph unicode="*" glyph-name="asterisk" d="M175 72L118 114L242 284L43 350L64 416L263 352V568H337V352L536 416L557 350L358 284L482 114L425 72L300 244L175 72Z" />
28
+ <glyph unicode="+" glyph-name="plus" d="M262 62V271H62V339H262V548H338V339H538V271H338V62H262Z" />
29
+ <glyph unicode="," glyph-name="comma" d="M257 136H386L271 -141H204L257 136Z" />
30
+ <glyph unicode="-" glyph-name="hyphen" d="M155 262V346H445V262H155Z" />
31
+ <glyph unicode="." glyph-name="period" d="M300 -9Q259 -9 243 8T226 51V69Q226 95 242 112T300 129Q341 129 357 112T374 69V51Q374 25 358 8T300 -9Z" />
32
+ <glyph unicode="/" glyph-name="slash" d="M90 -138L438 760H510L162 -138H90Z" />
33
+ <glyph unicode="0" glyph-name="zero" d="M300 -12Q236 -12 190 12T114 83T70 196T56 349Q56 434 70 501T114 615T190 685T300 710Q364 710 410 686T486 615T530 502T544 349Q544 263 530 196T486 83T410 13T300 -12ZM300 61Q342 61 372 77T420 124T448 196T457
34
+ 292V406Q457 458 448 501T421 574T372 620T300 637Q258 637 228 621T180 574T152 501T143 406V292Q143 239 152 197T179 124T228 78T300 61ZM300 290Q265 290 252 304T238 338V360Q238 380 251 394T300 408Q335 408 348 394T362 360V338Q362 318 349 304T300 290Z"
35
+ />
36
+ <glyph unicode="1" glyph-name="one" d="M85 0V73H285V636H278L102 472L53 525L238 698H369V73H553V0H85Z" />
37
+ <glyph unicode="2" glyph-name="two" d="M537 0H71V86L304 296Q355 342 388 390T421 493V505Q421 568 388 602T290 637Q226 637 192 605T140 518L65 546Q75 577 92 606T137 659T202 696T292 710Q344 710 384 695T452 653T494 589T509 508Q509 468 498 433T466
38
+ 366T417 304T353 243L158 73H537V0Z" />
39
+ <glyph unicode="3" glyph-name="three" d="M270 402Q343 402 379 434T416 518V525Q416 581 381 609T288 637Q232 637 198 613T141 548L78 596Q91 617 110 637T154 674T213 700T290 710Q335 710 374 699T442 665T487 609T504 534Q504 500 494 473T465 426T421 392T368
40
+ 371V367Q397 361 424 348T472 313T505 261T518 191Q518 146 501 109T452 45T376 3T277 -12Q231 -12 196 -2T133 25T85 63T48 107L111 155Q125 134 140 117T174 88T219 68T277 61Q351 61 390 95T430 192V200Q430 262 392 296T276 330H193V402H270Z" />
41
+ <glyph unicode="4" glyph-name="four" d="M378 0V137H34V211L336 698H458V206H562V137H458V0H378ZM109 206H378V633H374L109 206Z" />
42
+ <glyph unicode="5" glyph-name="five" d="M501 625H189L169 358H176Q202 393 234 413T322 434Q368 434 406 420T473 377T517 310T533 219Q533 168 517 126T470 53T395 5T295 -12Q251 -12 217 -2T156 25T109 63T73 107L136 155Q150 134 164 117T198 88T241 68T297
43
+ 61Q369 61 407 100T446 208V216Q446 285 407 324T295 363Q245 363 218 346T167 304L96 314L121 698H501V625Z" />
44
+ <glyph unicode="6" glyph-name="six" d="M301 -12Q246 -12 202 6T128 59T81 144T64 256Q64 334 87 402T147 527T229 627T317 698H425Q368 657 324 618T245 537T188 446T150 336L155 334Q180 377 221 405T327 434Q373 434 411 419T477 376T520 308T536 219Q536
45
+ 168 519 126T472 53T398 5T301 -12ZM300 59Q372 59 411 98T451 208V216Q451 287 412 326T300 365Q228 365 189 326T149 216V208Q149 137 188 98T300 59Z" />
46
+ <glyph unicode="7" glyph-name="seven" d="M173 0L446 626H140V496H65V698H531V624L263 0H173Z" />
47
+ <glyph unicode="8" glyph-name="eight" d="M300 -12Q239 -12 193 3T117 46T71 110T55 190Q55 262 94 304T197 363V371Q141 390 109 432T76 535Q76 615 135 662T300 710Q406 710 465 663T524 535Q524 475 492 433T403 371V363Q467 346 506 304T545 190Q545 147
48
+ 530 110T483 46T407 4T300 -12ZM300 59Q374 59 416 92T458 185V207Q458 267 417 300T300 333Q225 333 184 300T142 207V185Q142 125 184 92T300 59ZM300 401Q368 401 403 430T439 513V527Q439 581 403 610T300 639Q234 639 198 610T161 527V513Q161 459 196 430T300
49
+ 401Z" />
50
+ <glyph unicode="9" glyph-name="nine" d="M536 442Q536 364 513 296T452 171T371 71T283 0H175Q232 41 276 80T355 161T412 252T450 362L445 364Q419 321 379 293T273 264Q227 264 189 279T123 322T80 389T64 479Q64 530 80 572T128 645T202 693T299 710Q354 710
51
+ 398 692T472 639T519 554T536 442ZM300 333Q372 333 411 372T451 482V490Q451 561 412 600T300 639Q228 639 189 600T149 490V482Q149 411 188 372T300 333Z" />
52
+ <glyph unicode=":" glyph-name="colon" d="M300 -9Q259 -9 243 8T226 51V69Q226 95 242 112T300 129Q341 129 357 112T374 69V51Q374 25 358 8T300 -9ZM300 387Q259 387 243 404T226 447V465Q226 491 242 508T300 525Q341 525 357 508T374 465V447Q374 421 358
53
+ 404T300 387Z" />
54
+ <glyph unicode=";" glyph-name="semicolon" d="M257 136H386L271 -141H204L257 136ZM300 387Q259 387 243 404T226 447V465Q226 491 242 508T300 525Q341 525 357 508T374 465V447Q374 421 358 404T300 387Z" />
55
+ <glyph unicode="&lt;" glyph-name="less" d="M85 265V345L515 594V511L160 310V302L515 101V16L85 265Z" />
56
+ <glyph unicode="=" glyph-name="equal" d="M62 372V440H538V372H62ZM62 172V240H538V172H62Z" />
57
+ <glyph unicode="&gt;" glyph-name="greater" d="M85 99L440 300V308L85 509V594L515 345V265L85 16V99Z" />
58
+ <glyph unicode="?" glyph-name="question" d="M239 215V372Q325 376 374 409T423 511V525Q423 581 390 609T298 637Q238 637 202 604T152 520L77 548Q87 581 105 610T150 662T215 697T301 710Q349 710 387 697T453 659T495 599T510 521Q510 474 493 439T449 378T388
59
+ 338T318 316V215H239ZM282 -9Q241 -9 225 8T208 51V69Q208 95 224 112T282 129Q323 129 339 112T356 69V51Q356 25 340 8T282 -9Z" />
60
+ <glyph unicode="@" glyph-name="at" d="M454 -112H331Q255 -112 204 -87T121 -10T76 119T62 300Q62 416 77 494T123 621T197 689T301 710Q361 710 403 691T473 639T512 561T525 463V91H454V148H449Q439 122 416 101T349 79Q288 79 252 130T216 293Q216 404 252
61
+ 456T349 508Q371 508 387 502T416 486T436 464T449 439H454V463Q454 548 419 597T303 646Q214 646 176 578T137 358V229Q137 171 145 121T174 33T233 -26T331 -48H454V-112ZM375 139Q411 139 432 159T454 217V370Q454 408 433 428T375 448Q333 448 312 420T290
62
+ 324V263Q290 196 311 168T375 139Z" />
63
+ <glyph unicode="A" glyph-name="A" d="M481 0L422 199H177L118 0H31L245 698H356L570 0H481ZM304 609H295L197 272H402L304 609Z" />
64
+ <glyph unicode="B" glyph-name="B" d="M88 698H325Q415 698 466 649T517 518Q517 455 487 419T408 368V365Q467 351 505 313T543 201Q543 159 529 122T490 58T430 16T355 0H88V698ZM330 73Q388 73 421 99T454 179V220Q454 273 421 299T330 326H172V73H330ZM316
65
+ 395Q369 395 399 418T429 490V529Q429 577 399 601T316 625H172V395H316Z" />
66
+ <glyph unicode="C" glyph-name="C" d="M323 -12Q195 -12 133 81T70 349Q70 524 132 617T323 710Q371 710 406 697T466 662T508 613T538 557L466 524Q457 547 445 567T417 603T378 628T323 637Q240 637 200 574T159 406V292Q159 187 199 124T323 61Q355 61 377
67
+ 70T416 94T445 130T466 174L538 141Q525 112 508 85T466 36T406 1T323 -12Z" />
68
+ <glyph unicode="D" glyph-name="D" d="M95 698H290Q418 698 481 610T544 349Q544 176 481 88T290 0H95V698ZM286 73Q370 73 412 131T455 295V403Q455 509 413 567T286 625H179V73H286Z" />
69
+ <glyph unicode="E" glyph-name="E" d="M90 0V698H520V625H174V390H508V317H174V73H520V0H90Z" />
70
+ <glyph unicode="F" glyph-name="F" d="M90 0V698H530V625H174V390H500V317H174V0H90Z" />
71
+ <glyph unicode="G" glyph-name="G" d="M444 93H439Q430 73 418 54T388 21T343 -3T281 -12Q167 -12 112 80T56 344Q56 524 117 617T305 710Q354 710 390 697T451 662T494 613T522 557L450 524Q441 547 430 567T402 603T362 628T308 637Q224 637 185 574T145 406V298Q145
72
+ 245 153 202T179 126T227 77T300 59Q368 59 406 100T444 206V278H297V345H522V0H444V93Z" />
73
+ <glyph unicode="H" glyph-name="H" d="M436 317H164V0H80V698H164V390H436V698H520V0H436V317Z" />
74
+ <glyph unicode="I" glyph-name="I" d="M84 0V67H258V631H84V698H516V631H342V67H516V0H84Z" />
75
+ <glyph unicode="J" glyph-name="J" d="M480 698V181Q480 137 465 101T423 40T357 2T274 -12Q194 -12 142 29T74 146L154 163Q159 142 167 124T190 92T226 70T276 62Q333 62 364 94T396 196V625H144V698H480Z" />
76
+ <glyph unicode="K" glyph-name="K" d="M269 342L169 224V0H85V698H169V334H172L264 450L470 698H571L326 404L578 0H480L269 342Z" />
77
+ <glyph unicode="L" glyph-name="L" d="M120 0V698H204V73H535V0H120Z" />
78
+ <glyph unicode="M" glyph-name="M" d="M455 350V571H447L300 212L153 571H145V350V0H68V698H176L299 390H305L428 698H532V0H455V350Z" />
79
+ <glyph unicode="N" glyph-name="N" d="M163 591H156V0H80V698H199L437 113H444V698H520V0H401L163 591Z" />
80
+ <glyph unicode="O" glyph-name="O" d="M300 -12Q236 -12 190 12T114 83T70 196T56 349Q56 434 70 501T114 615T190 685T300 710Q364 710 410 686T486 615T530 502T544 349Q544 263 530 196T486 83T410 13T300 -12ZM300 61Q342 61 371 77T419 124T446 196T455 292V406Q455
81
+ 458 447 501T419 574T371 620T300 637Q258 637 229 621T181 574T154 501T145 406V292Q145 239 153 197T181 124T229 78T300 61Z" />
82
+ <glyph unicode="P" glyph-name="P" d="M90 0V698H344Q441 698 492 645T543 497Q543 402 492 349T344 296H174V0H90ZM174 369H342Q395 369 424 395T454 471V523Q454 572 425 598T342 625H174V369Z" />
83
+ <glyph unicode="Q" glyph-name="Q" d="M491 -164H374Q315 -164 288 -131T260 -46V-9Q207 -2 169 25T105 98T68 207T56 349Q56 434 70 501T114 615T190 685T300 710Q364 710 410 686T486 615T530 502T544 349Q544 192 495 99T340 -9V-96H491V-164ZM300 61Q342 61
84
+ 371 77T419 124T446 196T455 292V406Q455 458 447 501T419 574T371 620T300 637Q258 637 229 621T181 574T154 501T145 406V292Q145 239 153 197T181 124T229 78T300 61Z" />
85
+ <glyph unicode="R" glyph-name="R" d="M174 0H90V698H344Q441 698 492 645T543 497Q543 412 499 361T371 302L549 0H455L285 298H174V0ZM342 369Q395 369 424 395T454 471V523Q454 572 425 598T342 625H174V369H342Z" />
86
+ <glyph unicode="S" glyph-name="S" d="M298 -12Q204 -12 144 22T45 111L106 161Q147 110 192 85T301 60Q377 60 417 95T457 193Q457 244 428 272T327 313L249 326Q198 335 164 353T108 396T78 452T69 516Q69 612 132 661T302 710Q386 710 443 682T536 603L477
87
+ 552Q448 590 407 614T301 638Q230 638 192 608T154 518Q154 471 182 442T285 399L360 386Q411 377 446 359T502 316T533 260T542 195Q542 98 479 43T298 -12Z" />
88
+ <glyph unicode="T" glyph-name="T" d="M342 625V0H258V625H25V698H575V625H342Z" />
89
+ <glyph unicode="U" glyph-name="U" d="M164 698V279Q164 228 167 188T183 120T223 76T300 61Q349 61 376 76T417 119T433 188T436 279V698H520V299Q520 221 513 163T482 66T415 8T300 -12Q229 -12 186 7T119 66T88 163T80 299V698H164Z" />
90
+ <glyph unicode="V" glyph-name="V" d="M243 0L36 698H125L224 349L299 85H304L379 349L478 698H564L357 0H243Z" />
91
+ <glyph unicode="W" glyph-name="W" d="M90 0L35 698H110L139 298L154 87H162L254 516H348L440 87H448L463 298L492 698H565L510 0H389L304 417H296L211 0H90Z" />
92
+ <glyph unicode="X" glyph-name="X" d="M575 0H480L397 139L305 291H301L206 139L118 0H26L254 356L39 698H134L215 563L302 422H306L392 563L476 698H568L352 357L575 0Z" />
93
+ <glyph unicode="Y" glyph-name="Y" d="M258 0V274L17 698H113L213 516L298 357H302L389 516L489 698H583L342 274V0H258Z" />
94
+ <glyph unicode="Z" glyph-name="Z" d="M552 0H48V75L443 625H65V698H535V623L139 73H552V0Z" />
95
+ <glyph unicode="[" glyph-name="bracketleft" d="M225 -138V760H505V698H294V-76H505V-138H225Z" />
96
+ <glyph unicode="\" glyph-name="backslash" d="M438 -138L90 760H162L510 -138H438Z" />
97
+ <glyph unicode="]" glyph-name="bracketright" d="M375 760V-138H95V-76H306V698H95V760H375Z" />
98
+ <glyph unicode="^" glyph-name="asciicircum" d="M489 287L300 629H296L107 287L45 318L255 698H345L555 318L489 287Z" />
99
+ <glyph unicode="_" glyph-name="underscore" d="M60 -169V-95H540V-169H60Z" />
100
+ <glyph unicode="`" glyph-name="grave" d="M187 744L260 779L345 609L293 585L187 744Z" />
101
+ <glyph unicode="a" glyph-name="a" d="M495 0Q448 0 428 24T403 84H398Q381 39 344 14T243 -12Q162 -12 114 30T66 145Q66 217 118 256T288 295H398V346Q398 403 366 431T275 460Q223 460 190 440T137 384L83 424Q93 444 110 463T152 496T209 519T280 528Q371
102
+ 528 424 482T478 354V70H550V0H495ZM257 55Q288 55 313 62T358 82T387 112T398 150V235H288Q216 235 183 215T150 157V136Q150 96 178 76T257 55Z" />
103
+ <glyph unicode="b" glyph-name="b" d="M95 740H175V432H179Q229 528 338 528Q433 528 486 457T540 258Q540 130 487 59T338 -12Q229 -12 179 84H175V0H95V740ZM307 59Q377 59 415 101T454 214V302Q454 372 416 414T307 457Q280 457 256 450T214 430T186 397T175
104
+ 351V165Q175 139 185 120T214 87T256 66T307 59Z" />
105
+ <glyph unicode="c" glyph-name="c" d="M318 -12Q262 -12 219 7T145 62T100 147T84 258Q84 319 100 369T146 454T219 509T317 528Q392 528 439 495T508 409L444 375Q430 415 398 437T317 459Q282 459 255 448T208 415T180 365T170 302V214Q170 180 179 151T208
106
+ 101T255 69T319 57Q371 57 405 81T459 147L516 108Q493 56 445 22T318 -12Z" />
107
+ <glyph unicode="d" glyph-name="d" d="M425 84H421Q371 -12 262 -12Q167 -12 114 59T60 258Q60 386 113 457T262 528Q371 528 421 432H425V740H505V0H425V84ZM293 59Q320 59 344 66T386 86T414 119T425 165V351Q425 377 415 396T386 429T344 450T293 457Q223 457
108
+ 185 415T146 302V214Q146 144 184 102T293 59Z" />
109
+ <glyph unicode="e" glyph-name="e" d="M309 -12Q253 -12 209 7T133 61T84 146T67 257Q67 319 84 369T133 454T207 509T304 528Q356 528 398 509T471 457T517 377T533 276V238H151V214Q151 180 162 151T193 101T243 69T309 57Q361 57 399 81T457 147L516 107Q493
110
+ 55 440 22T309 -12ZM304 462Q271 462 243 450T195 417T163 368T151 305V298H447V309Q447 343 437 371T408 419T363 451T304 462Z" />
111
+ <glyph unicode="f" glyph-name="f" d="M83 68H257V448H73V516H257V622Q257 674 284 707T371 740H544V672H337V516H544V448H337V68H521V0H83V68Z" />
112
+ <glyph unicode="g" glyph-name="g" d="M561 -59Q561 -137 496 -174T301 -212Q176 -212 122 -179T67 -84Q67 -42 89 -19T151 15V27Q129 38 117 55T105 98Q105 138 131 158T198 188V192Q150 213 124 254T97 350Q97 389 111 422T151 478T215 515T297 528Q355 528
113
+ 399 507V516Q399 546 413 566T461 586H556V516H440V481Q468 457 483 424T498 350Q498 311 484 278T443 222T380 185T297 172Q284 172 272 173T248 176Q236 174 223 170T199 158T181 140T174 117Q174 94 197 87T257 79H371Q471 79 516 42T561 -59ZM486 -63Q486 -32
114
+ 461 -14T374 5H195Q143 -16 143 -65Q143 -99 170 -123T260 -148H338Q408 -148 447 -127T486 -63ZM297 234Q357 234 385 262T414 336V365Q414 411 386 438T297 466Q237 466 209 439T181 365V336Q181 290 209 262T297 234Z" />
115
+ <glyph unicode="h" glyph-name="h" d="M98 740H178V432H182Q190 451 202 468T231 499T273 520T329 528Q410 528 459 477T508 331V0H428V317Q428 388 397 422T306 457Q282 457 259 451T218 433T189 402T178 358V0H98V740Z" />
116
+ <glyph unicode="i" glyph-name="i" d="M332 630Q297 630 283 644T269 681V697Q269 719 283 733T332 748Q367 748 381 734T395 697V681Q395 659 381 645T332 630ZM106 68H292V448H106V516H372V68H546V0H106V68Z" />
117
+ <glyph unicode="j" glyph-name="j" d="M102 -132H352V448H93V516H432V-82Q432 -134 405 -167T318 -200H102V-132ZM392 630Q357 630 343 644T329 681V697Q329 719 343 733T392 748Q427 748 441 734T455 697V681Q455 659 441 645T392 630Z" />
118
+ <glyph unicode="k" glyph-name="k" d="M105 740H185V273H189L279 358L451 516H549L335 314L574 0H475L274 268L185 187V0H105V740Z" />
119
+ <glyph unicode="l" glyph-name="l" d="M80 68H260V672H80V740H340V68H520V0H80V68Z" />
120
+ <glyph unicode="m" glyph-name="m" d="M54 0V516H128V456H132Q144 486 166 507T231 528Q276 528 298 506T325 447H328Q342 482 368 505T440 528Q503 528 524 484T546 358V0H472V345Q472 411 459 436T409 462Q377 462 357 442T337 379V0H263V345Q263 411 250 436T201
121
+ 462Q169 462 149 442T128 379V0H54Z" />
122
+ <glyph unicode="n" glyph-name="n" d="M98 0V516H178V432H182Q190 451 202 468T231 499T273 520T329 528Q410 528 459 477T508 331V0H428V317Q428 388 397 422T306 457Q282 457 259 451T218 433T189 402T178 358V0H98Z" />
123
+ <glyph unicode="o" glyph-name="o" d="M300 -12Q246 -12 203 7T129 61T82 146T66 258Q66 319 82 369T128 454T202 509T300 528Q354 528 397 509T471 455T518 369T534 258Q534 196 518 147T472 62T398 7T300 -12ZM300 57Q367 57 408 97T449 221V295Q449 379 408
124
+ 419T300 459Q233 459 192 419T151 295V221Q151 137 192 97T300 57Z" />
125
+ <glyph unicode="p" glyph-name="p" d="M95 516H175V432H179Q229 528 338 528Q433 528 486 457T540 258Q540 130 487 59T338 -12Q229 -12 179 84H175V-200H95V516ZM307 59Q377 59 415 101T454 214V302Q454 372 416 414T307 457Q280 457 256 450T214 430T186 397T175
126
+ 351V165Q175 139 185 120T214 87T256 66T307 59Z" />
127
+ <glyph unicode="q" glyph-name="q" d="M425 84H421Q371 -12 262 -12Q167 -12 114 59T60 258Q60 386 113 457T262 528Q371 528 421 432H425V516H505V-200H425V84ZM293 59Q320 59 344 66T386 86T414 119T425 165V351Q425 377 415 396T386 429T344 450T293 457Q223
128
+ 457 185 415T146 302V214Q146 144 184 102T293 59Z" />
129
+ <glyph unicode="r" glyph-name="r" d="M77 68H228V448H77V516H308V386H313Q329 447 373 481T487 516H559V436H462Q393 436 351 396T308 291V68H508V0H77V68Z" />
130
+ <glyph unicode="s" glyph-name="s" d="M306 -12Q225 -12 167 15T67 89L121 136Q158 97 202 76T308 55Q368 55 406 76T445 144Q445 164 438 177T417 199T388 211T354 219L273 231Q246 235 215 242T157 264T114 306T96 374Q96 413 111 441T155 489T221 518T304 528Q374
131
+ 528 425 506T514 445L462 396Q453 407 440 418T407 439T361 455T301 461Q240 461 208 440T175 379Q175 359 182 346T203 324T232 312T266 304L347 292Q375 288 406 281T463 259T506 217T524 149Q524 72 465 30T306 -12Z" />
132
+ <glyph unicode="t" glyph-name="t" d="M325 0Q266 0 239 33T211 118V448H39V516H167Q193 516 203 526T214 563V698H291V516H526V448H291V68H526V0H325Z" />
133
+ <glyph unicode="u" glyph-name="u" d="M422 84H418Q410 65 398 48T369 17T327 -4T271 -12Q190 -12 141 39T92 185V516H172V199Q172 128 203 94T294 59Q318 59 341 65T382 83T411 113T422 158V516H502V0H422V84Z" />
134
+ <glyph unicode="v" glyph-name="v" d="M249 0L64 516H145L219 300L299 67H303L383 300L457 516H536L351 0H249Z" />
135
+ <glyph unicode="w" glyph-name="w" d="M30 516H101L160 70H169L257 516H345L433 70H442L501 516H570L491 0H387L305 432H297L213 0H109L30 516Z" />
136
+ <glyph unicode="x" glyph-name="x" d="M61 0L253 262L66 516H162L240 407L302 321H306L366 407L443 516H535L346 263L540 0H444L357 121L298 203H294L237 121L153 0H61Z" />
137
+ <glyph unicode="y" glyph-name="y" d="M467 516H547L291 -113Q282 -135 271 -151T245 -178T209 -194T159 -200H83V-132H203L261 10L53 516H135L222 300L299 104H303L380 300L467 516Z" />
138
+ <glyph unicode="z" glyph-name="z" d="M85 0V77L418 448H96V516H505V439L172 68H515V0H85Z" />
139
+ <glyph unicode="{" glyph-name="braceleft" d="M319 -138Q277 -138 256 -115T235 -56V7Q235 34 240 54T254 90T272 118T291 142Q308 162 314 176T321 207Q321 245 286 262T183 280H105V342H183Q251 342 286 359T321 415Q321 431 315 445T291 480Q282 491 272 503T254
140
+ 531T241 567T235 615V678Q235 713 256 736T319 760H495V698H304V621Q304 580 316 558T344 515Q361 493 376 470T391 414Q391 372 362 346T281 313V309Q332 302 361 276T391 208Q391 176 376 153T344 107Q328 86 316 64T304 1V-76H495V-138H319Z" />
141
+ <glyph unicode="|" glyph-name="bar" d="M265 -138V760H335V-138H265Z" />
142
+ <glyph unicode="}" glyph-name="braceright" d="M281 760Q323 760 344 737T365 678V615Q365 588 360 568T346 532T328 504T309 480Q292 460 286 446T279 415Q279 377 314 360T417 342H495V280H417Q349 280 314 263T279 207Q279 191 285 177T309 142Q318 131 328
143
+ 119T346 90T359 54T365 7V-56Q365 -91 344 -114T281 -138H105V-76H296V1Q296 42 284 64T256 107Q239 129 224 152T209 208Q209 250 238 276T319 309V313Q268 320 239 346T209 414Q209 446 224 469T256 515Q272 536 284 558T296 621V698H105V760H281Z" />
144
+ <glyph unicode="~" glyph-name="asciitilde" d="M408 237Q377 237 349 246T295 269Q269 282 243 294T191 306Q162 306 144 287T113 237L52 262Q66 310 101 341T192 373Q223 373 251 364T305 341Q331 328 357 316T409 304Q438 304 456 323T487 373L548 348Q534
145
+ 300 499 269T408 237Z" />
146
+ <glyph unicode="&#xa0;" glyph-name="uni00A0" />
147
+ <glyph unicode="&#xa1;" glyph-name="exclamdown" d="M256 -182V21L284 283H316L344 21V-182H256ZM300 387Q259 387 243 404T226 447V465Q226 491 242 508T300 525Q341 525 357 508T374 465V447Q374 421 358 404T300 387Z" />
148
+ <glyph unicode="&#xa2;" glyph-name="cent" d="M279 -114V-9Q185 4 135 75T84 258Q84 370 135 441T279 525V630H341V527Q406 522 447 490T508 409L444 375Q431 410 405 431T340 458V58Q383 63 412 86T459 147L516 108Q495 60 452 27T341 -11V-114H279ZM170 214Q170
149
+ 155 198 114T280 61V455Q226 444 198 403T170 302V214Z" />
150
+ <glyph unicode="&#xa3;" glyph-name="sterling" d="M75 0V105Q117 122 135 156T154 237Q154 250 153 262T149 286H52V355H130Q119 389 109 423T98 499Q98 545 114 584T160 651T234 694T332 710Q412 710 464 679T550 596L487 551Q459 592 422 614T327 637Q261 637
151
+ 223 604T184 494Q184 453 193 420T214 355H415V286H233Q236 266 236 247Q236 216 229 191T209 145T183 109T154 85V80H538V0H75Z" />
152
+ <glyph unicode="&#xa5;" glyph-name="yen" d="M75 69H260V255H75V324H216L22 698H115L299 324H303L487 698H578L384 324H525V255H340V69H525V0H75V69Z" />
153
+ <glyph unicode="&#xa6;" glyph-name="brokenbar" d="M265 401V760H335V401H265ZM265 -138V221H335V-138H265Z" />
154
+ <glyph unicode="&#xa7;" glyph-name="section" d="M487 3Q487 -33 473 -62T432 -112T368 -144T286 -155Q240 -155 196 -142T116 -99L163 -43Q187 -63 218 -74T287 -86Q344 -86 376 -63T408 2Q408 40 381 62T302 99L238 117Q155 140 118 180T81 272Q81 320 110
155
+ 357T193 415V420Q154 444 136 478T117 552Q117 588 131 617T172 667T236 699T318 710Q364 710 408 697T488 654L441 598Q417 618 386 629T317 641Q260 641 228 618T196 553Q196 515 223 493T302 456L366 438Q449 415 486 375T523 283Q523 235 494 198T411 140V135Q450
156
+ 111 468 77T487 3ZM444 263Q444 306 415 332T324 375L261 392Q244 396 227 403Q196 382 178 355T160 292Q160 249 189 223T280 180L343 163Q360 159 377 152Q408 173 426 200T444 263Z" />
157
+ <glyph unicode="&#xa8;" glyph-name="dieresis" d="M207 618Q176 618 163 631T150 664V678Q150 698 163 711T207 724Q238 724 251 711T264 678V664Q264 644 251 631T207 618ZM393 618Q362 618 349 631T336 664V678Q336 698 349 711T393 724Q424 724 437 711T450
158
+ 678V664Q450 644 437 631T393 618Z" />
159
+ <glyph unicode="&#xa9;" glyph-name="copyright" d="M300 18Q237 18 183 41T88 107T24 211T0 349Q0 425 23 486T87 591T182 657T300 680Q363 680 417 657T512 591T576 487T600 349Q600 272 577 211T513 107T418 41T300 18ZM300 73Q351 73 394 92T469 144T519 223T537
160
+ 319V379Q537 430 519 475T470 553T395 606T300 625Q249 625 206 606T131 554T81 475T63 379V319Q63 268 81 223T130 145T205 92T300 73ZM305 171Q232 171 192 219T151 349Q151 431 192 479T305 527Q353 527 383 505T431 447L378 418Q367 442 350 456T305 470Q266
161
+ 470 245 445T223 378V321Q223 279 244 254T306 228Q336 228 354 243T386 283L436 252Q419 217 387 194T305 171Z" />
162
+ <glyph unicode="&#xaa;" glyph-name="ordfeminine" d="M429 357Q396 357 382 371T366 410H362Q351 387 324 368T249 349Q195 349 167 376T138 448Q138 502 177 527T289 552H362V580Q362 658 285 658Q250 658 227 644T192 606L150 640Q157 653 169 665T199 688T238
163
+ 704T288 710Q352 710 388 677T425 583V413H463V357H429ZM287 506Q245 506 223 494T201 459V449Q201 400 262 400Q302 400 332 417T362 465V506H287Z" />
164
+ <glyph unicode="&#xab;" glyph-name="guillemotleft" d="M536 56L330 230V310L536 484L561 427L413 270L561 113L536 56ZM509 56L303 230V310L509 484L534 427L386 270L534 113L509 56Z" />
165
+ <glyph unicode="&#xac;" glyph-name="logicalnot" d="M453 78V271H62V339H522V78H453Z" />
166
+ <glyph unicode="&#xad;" glyph-name="uni00AD" d="M155 262V346H445V262H155Z" />
167
+ <glyph unicode="&#xae;" glyph-name="registered" d="M300 346Q262 346 229 360T170 398T131 455T117 528Q117 567 131 600T170 658T228 696T300 710Q338 710 371 696T429 658T468 601T483 528Q483 489 469 456T430 398T372 360T300 346ZM300 387Q329 387 353
168
+ 396T396 423T424 464T435 518V538Q435 568 425 592T396 633T354 659T300 669Q271 669 247 660T204 633T176 592T165 538V518Q165 488 175 464T204 423T246 397T300 387ZM270 436H230V621H315Q343 621 358 606T374 564Q374 525 337 512L383 436H338L299 506H270V436ZM306
169
+ 535Q332 535 332 559V566Q332 590 306 590H270V535H306Z" />
170
+ <glyph unicode="&#xaf;" glyph-name="overscore" d="M160 705H440V637H160V705Z" />
171
+ <glyph unicode="&#xb0;" glyph-name="degree" d="M300 368Q264 368 233 381T179 417T142 471T129 539Q129 575 142 606T178 661T233 697T300 710Q336 710 367 697T421 661T458 607T471 539Q471 503 458 472T422 417T367 381T300 368ZM300 432Q346 432 373 463T401
172
+ 539Q401 584 374 615T300 646Q254 646 227 615T199 539Q199 494 226 463T300 432Z" />
173
+ <glyph unicode="&#xb1;" glyph-name="plusminus" d="M262 152V351H62V419H262V618H338V419H538V351H338V152H262ZM62 0V68H538V0H62Z" />
174
+ <glyph unicode="&#xb2;" glyph-name="twosuperior" d="M438 329H166V386L296 491Q325 515 341 538T358 589V595Q358 621 342 636T293 652Q258 652 241 635T215 594L161 614Q167 632 177 648T204 676T244 696T297 704Q359 704 392 674T425 595Q425 551 399 519T330
175
+ 454L233 379H438V329Z" />
176
+ <glyph unicode="&#xb3;" glyph-name="threesuperior" d="M282 546Q320 546 338 560T357 598V602Q357 627 340 640T292 654Q263 654 243 642T209 609L166 643Q183 668 213 686T294 704Q351 704 387 679T424 609Q424 573 401 552T346 524V521Q380 515 405 493T430
177
+ 431Q430 382 392 353T287 323Q232 323 201 343T151 389L198 423Q212 401 232 387T287 373Q325 373 344 389T364 434V440Q364 495 287 495H242V546H282Z" />
178
+ <glyph unicode="&#xb4;" glyph-name="acute" d="M307 585L255 609L340 779L413 744L307 585Z" />
179
+ <glyph unicode="&#xb5;" glyph-name="mu" d="M98 -200V516H178V199Q178 59 297 59Q321 59 343 65T383 83T411 113T422 158V516H502V0H422V84H418Q409 64 398 47T370 16T331 -4T278 -12Q203 -12 175 40H171L178 -44V-200H98Z" />
180
+ <glyph unicode="&#xb6;" glyph-name="paragraph" d="M270 246Q223 246 183 263T111 310T63 381T45 472Q45 521 62 562T111 634T182 681T270 698H504V-149H432V634H342V-149H270V246Z" />
181
+ <glyph unicode="&#xb7;" glyph-name="middot" d="M300 235Q259 235 243 252T226 295V313Q226 339 242 356T300 373Q341 373 357 356T374 313V295Q374 269 358 252T300 235Z" />
182
+ <glyph unicode="&#xb8;" glyph-name="cedilla" d="M312 -207Q271 -207 248 -194T213 -166L251 -125Q260 -136 275 -144T312 -153Q331 -153 343 -146T356 -122Q356 -108 343 -98T288 -81L260 -77L279 20H329L313 -61L316 -64Q335 -58 355 -58Q384 -58 403 -75T423
183
+ -124Q423 -145 414 -161T390 -187T354 -202T312 -207Z" />
184
+ <glyph unicode="&#xb9;" glyph-name="onesuperior" d="M176 329V379H285V644L179 589L154 633L280 698H348V379H446V329H176Z" />
185
+ <glyph unicode="&#xba;" glyph-name="ordmasculine" d="M300 349Q224 349 182 397T140 530Q140 614 182 662T300 710Q375 710 417 662T460 530Q460 445 418 397T300 349ZM300 402Q345 402 368 429T391 500V559Q391 602 368 629T300 657Q255 657 232 630T209 559V500Q209
186
+ 457 232 430T300 402Z" />
187
+ <glyph unicode="&#xbb;" glyph-name="guillemotright" d="M67 113L215 270L67 427L92 484L298 310V230L92 56L67 113ZM296 113L444 270L296 427L321 484L527 310V230L321 56L296 113Z" />
188
+ <glyph unicode="&#xbc;" glyph-name="onequarter" d="M40 413H134V643L45 598L21 642L129 698H197V413H280V363H40V413ZM510 698H582L422 398H350L510 698ZM178 300H250L90 0H18L178 300ZM477 64H314V123L456 335H538V112H585V64H538V0H477V64ZM477 112V282H474L360
189
+ 112H477Z" />
190
+ <glyph unicode="&#xbd;" glyph-name="onehalf" d="M40 413H134V643L45 598L21 642L129 698H197V413H280V363H40V413ZM510 698H582L422 398H350L510 698ZM178 300H250L90 0H18L178 300ZM329 58L442 148Q496 191 496 238V243Q496 262 483 275T443 289Q417 289 402
191
+ 275T376 234L323 256Q334 290 364 315T448 341Q505 341 533 313T562 244Q562 202 536 170T472 109L395 50H575V0H329V58Z" />
192
+ <glyph unicode="&#xbe;" glyph-name="threequarters" d="M144 357Q92 357 63 378T18 428L65 461Q77 438 94 423T144 408Q173 408 189 421T206 458V465Q206 488 188 499T137 511H102V561H137Q169 561 184 573T200 602V609Q200 629 185 641T144 653Q97 653 72 612L30
193
+ 646Q48 672 75 688T146 704Q200 704 232 681T264 617Q264 584 244 565T194 540V536Q226 531 248 511T270 456Q270 411 236 384T144 357ZM510 698H582L422 398H350L510 698ZM178 300H250L90 0H18L178 300ZM477 64H314V123L456 335H538V112H585V64H538V0H477V64ZM477
194
+ 112V282H474L360 112H477Z" />
195
+ <glyph unicode="&#xbf;" glyph-name="questiondown" d="M299 -194Q251 -194 213 -181T147 -143T105 -83T90 -5Q90 42 107 77T151 138T212 178T282 200V301H361V144Q275 140 226 107T177 5V-9Q177 -65 210 -93T302 -121Q362 -121 398 -88T448 -4L523 -32Q513 -65
196
+ 495 -94T450 -146T385 -181T299 -194ZM318 387Q277 387 261 404T244 447V465Q244 491 260 508T318 525Q359 525 375 508T392 465V447Q392 421 376 404T318 387Z" />
197
+ <glyph unicode="&#xc0;" glyph-name="Agrave" d="M481 0L422 199H177L118 0H31L245 698H356L570 0H481ZM304 609H295L197 272H402L304 609ZM187 914L260 949L345 779L293 755L187 914Z" />
198
+ <glyph unicode="&#xc1;" glyph-name="Aacute" d="M481 0L422 199H177L118 0H31L245 698H356L570 0H481ZM304 609H295L197 272H402L304 609ZM307 755L255 779L340 949L413 914L307 755Z" />
199
+ <glyph unicode="&#xc2;" glyph-name="Acircumflex" d="M481 0L422 199H177L118 0H31L245 698H356L570 0H481ZM304 609H295L197 272H402L304 609ZM350 935L461 792L416 761L299 878L182 761L139 792L250 935H350Z" />
200
+ <glyph unicode="&#xc3;" glyph-name="Atilde" d="M481 0L422 199H177L118 0H31L245 698H356L570 0H481ZM304 609H295L197 272H402L304 609ZM373 782Q347 782 328 791T293 808Q269 821 253 826T223 832Q206 832 193 825T165 805L132 845Q146 865 169 881T227 898Q253
201
+ 898 272 889T307 872Q331 859 347 854T377 848Q394 848 407 855T435 875L468 835Q454 815 431 799T373 782Z" />
202
+ <glyph unicode="&#xc4;" glyph-name="Adieresis" d="M481 0L422 199H177L118 0H31L245 698H356L570 0H481ZM304 609H295L197 272H402L304 609ZM207 788Q176 788 163 801T150 834V848Q150 868 163 881T207 894Q238 894 251 881T264 848V834Q264 814 251 801T207
203
+ 788ZM393 788Q362 788 349 801T336 834V848Q336 868 349 881T393 894Q424 894 437 881T450 848V834Q450 814 437 801T393 788Z" />
204
+ <glyph unicode="&#xc5;" glyph-name="Aring" d="M481 0L422 199H177L118 0H31L245 698H356L570 0H481ZM304 609H295L197 272H402L304 609ZM300 746Q276 746 255 754T218 778T193 815T184 861Q184 886 193 907T217 943T254 967T300 976Q324 976 345 968T382 944T407
205
+ 907T416 861Q416 836 407 815T383 779T346 755T300 746ZM300 795Q327 795 342 809T358 850V872Q358 898 343 912T300 927Q273 927 258 913T242 872V850Q242 824 257 810T300 795Z" />
206
+ <glyph unicode="&#xc6;" glyph-name="AE" d="M312 201H160L104 0H20L226 698H560V629H392V388H548V319H392V69H560V0H312V201ZM281 638L178 270H312V638H281Z" />
207
+ <glyph unicode="&#xc7;" glyph-name="Ccedilla" d="M323 637Q240 637 200 574T159 406V292Q159 187 199 124T323 61Q355 61 377 70T416 94T445 130T466 174L538 141Q525 113 509 86T468 38T410 3T330 -12L321 -61L324 -64Q343 -58 363 -58Q392 -58 411 -75T431
208
+ -124Q431 -145 422 -161T398 -187T362 -202T320 -207Q279 -207 256 -194T221 -166L259 -125Q268 -136 283 -144T320 -153Q339 -153 351 -146T364 -122Q364 -108 351 -98T296 -81L268 -77L281 -9Q174 6 122 97T70 349Q70 524 132 617T323 710Q371 710 406 697T466
209
+ 662T508 613T538 557L466 524Q457 547 445 567T417 603T378 628T323 637Z" />
210
+ <glyph unicode="&#xc8;" glyph-name="Egrave" d="M90 0V698H520V625H174V390H508V317H174V73H520V0H90ZM192 914L265 949L350 779L298 755L192 914Z" />
211
+ <glyph unicode="&#xc9;" glyph-name="Eacute" d="M90 0V698H520V625H174V390H508V317H174V73H520V0H90ZM312 755L260 779L345 949L418 914L312 755Z" />
212
+ <glyph unicode="&#xca;" glyph-name="Ecircumflex" d="M90 0V698H520V625H174V390H508V317H174V73H520V0H90ZM355 935L466 792L421 761L304 878L187 761L144 792L255 935H355Z" />
213
+ <glyph unicode="&#xcb;" glyph-name="Edieresis" d="M90 0V698H520V625H174V390H508V317H174V73H520V0H90ZM212 788Q181 788 168 801T155 834V848Q155 868 168 881T212 894Q243 894 256 881T269 848V834Q269 814 256 801T212 788ZM398 788Q367 788 354 801T341
214
+ 834V848Q341 868 354 881T398 894Q429 894 442 881T455 848V834Q455 814 442 801T398 788Z" />
215
+ <glyph unicode="&#xcc;" glyph-name="Igrave" d="M84 0V67H258V631H84V698H516V631H342V67H516V0H84ZM187 914L260 949L345 779L293 755L187 914Z" />
216
+ <glyph unicode="&#xcd;" glyph-name="Iacute" d="M84 0V67H258V631H84V698H516V631H342V67H516V0H84ZM307 755L255 779L340 949L413 914L307 755Z" />
217
+ <glyph unicode="&#xce;" glyph-name="Icircumflex" d="M84 0V67H258V631H84V698H516V631H342V67H516V0H84ZM350 935L461 792L416 761L299 878L182 761L139 792L250 935H350Z" />
218
+ <glyph unicode="&#xcf;" glyph-name="Idieresis" d="M84 0V67H258V631H84V698H516V631H342V67H516V0H84ZM207 788Q176 788 163 801T150 834V848Q150 868 163 881T207 894Q238 894 251 881T264 848V834Q264 814 251 801T207 788ZM393 788Q362 788 349 801T336 834V848Q336
219
+ 868 349 881T393 894Q424 894 437 881T450 848V834Q450 814 437 801T393 788Z" />
220
+ <glyph unicode="&#xd0;" glyph-name="Eth" d="M102 336H22V400H102V698H290Q418 698 481 610T544 349Q544 176 481 88T290 0H102V336ZM286 73Q370 73 412 131T455 295V403Q455 509 413 567T286 625H186V400H327V336H186V73H286Z" />
221
+ <glyph unicode="&#xd1;" glyph-name="Ntilde" d="M163 591H156V0H80V698H199L437 113H444V698H520V0H401L163 591ZM373 782Q347 782 328 791T293 808Q269 821 253 826T223 832Q206 832 193 825T165 805L132 845Q146 865 169 881T227 898Q253 898 272 889T307 872Q331
222
+ 859 347 854T377 848Q394 848 407 855T435 875L468 835Q454 815 431 799T373 782Z" />
223
+ <glyph unicode="&#xd2;" glyph-name="Ograve" d="M300 -12Q236 -12 190 12T114 83T70 196T56 349Q56 434 70 501T114 615T190 685T300 710Q364 710 410 686T486 615T530 502T544 349Q544 263 530 196T486 83T410 13T300 -12ZM300 61Q342 61 371 77T419 124T446
224
+ 196T455 292V406Q455 458 447 501T419 574T371 620T300 637Q258 637 229 621T181 574T154 501T145 406V292Q145 239 153 197T181 124T229 78T300 61ZM187 914L260 949L345 779L293 755L187 914Z" />
225
+ <glyph unicode="&#xd3;" glyph-name="Oacute" d="M300 -12Q236 -12 190 12T114 83T70 196T56 349Q56 434 70 501T114 615T190 685T300 710Q364 710 410 686T486 615T530 502T544 349Q544 263 530 196T486 83T410 13T300 -12ZM300 61Q342 61 371 77T419 124T446
226
+ 196T455 292V406Q455 458 447 501T419 574T371 620T300 637Q258 637 229 621T181 574T154 501T145 406V292Q145 239 153 197T181 124T229 78T300 61ZM307 755L255 779L340 949L413 914L307 755Z" />
227
+ <glyph unicode="&#xd4;" glyph-name="Ocircumflex" d="M300 -12Q236 -12 190 12T114 83T70 196T56 349Q56 434 70 501T114 615T190 685T300 710Q364 710 410 686T486 615T530 502T544 349Q544 263 530 196T486 83T410 13T300 -12ZM300 61Q342 61 371 77T419 124T446
228
+ 196T455 292V406Q455 458 447 501T419 574T371 620T300 637Q258 637 229 621T181 574T154 501T145 406V292Q145 239 153 197T181 124T229 78T300 61ZM350 935L461 792L416 761L299 878L182 761L139 792L250 935H350Z" />
229
+ <glyph unicode="&#xd5;" glyph-name="Otilde" d="M300 -12Q236 -12 190 12T114 83T70 196T56 349Q56 434 70 501T114 615T190 685T300 710Q364 710 410 686T486 615T530 502T544 349Q544 263 530 196T486 83T410 13T300 -12ZM300 61Q342 61 371 77T419 124T446
230
+ 196T455 292V406Q455 458 447 501T419 574T371 620T300 637Q258 637 229 621T181 574T154 501T145 406V292Q145 239 153 197T181 124T229 78T300 61ZM373 782Q347 782 328 791T293 808Q269 821 253 826T223 832Q206 832 193 825T165 805L132 845Q146 865 169 881T227
231
+ 898Q253 898 272 889T307 872Q331 859 347 854T377 848Q394 848 407 855T435 875L468 835Q454 815 431 799T373 782Z" />
232
+ <glyph unicode="&#xd6;" glyph-name="Odieresis" d="M300 -12Q236 -12 190 12T114 83T70 196T56 349Q56 434 70 501T114 615T190 685T300 710Q364 710 410 686T486 615T530 502T544 349Q544 263 530 196T486 83T410 13T300 -12ZM300 61Q342 61 371 77T419 124T446
233
+ 196T455 292V406Q455 458 447 501T419 574T371 620T300 637Q258 637 229 621T181 574T154 501T145 406V292Q145 239 153 197T181 124T229 78T300 61ZM207 788Q176 788 163 801T150 834V848Q150 868 163 881T207 894Q238 894 251 881T264 848V834Q264 814 251 801T207
234
+ 788ZM393 788Q362 788 349 801T336 834V848Q336 868 349 881T393 894Q424 894 437 881T450 848V834Q450 814 437 801T393 788Z" />
235
+ <glyph unicode="&#xd7;" glyph-name="multiply" d="M300 256L137 93L88 142L251 305L88 468L137 517L300 354L463 517L512 468L349 305L512 142L463 93L300 256Z" />
236
+ <glyph unicode="&#xd8;" glyph-name="Oslash" d="M300 -12Q209 -12 154 36L107 -44L47 -8L107 94Q81 140 69 204T56 349Q56 434 70 501T114 615T190 685T300 710Q390 710 446 662L493 742L553 706L493 604Q519 558 531 494T544 349Q544 263 530 196T486 83T410
237
+ 13T300 -12ZM145 292Q145 258 148 229T159 174L407 591Q388 613 362 625T300 637Q258 637 229 621T181 574T154 501T145 406V292ZM300 61Q342 61 371 77T419 124T446 196T455 292V406Q455 440 452 469T441 524L193 107Q212 85 238 73T300 61Z" />
238
+ <glyph unicode="&#xd9;" glyph-name="Ugrave" d="M164 698V279Q164 228 167 188T183 120T223 76T300 61Q349 61 376 76T417 119T433 188T436 279V698H520V299Q520 221 513 163T482 66T415 8T300 -12Q229 -12 186 7T119 66T88 163T80 299V698H164ZM187 914L260
239
+ 949L345 779L293 755L187 914Z" />
240
+ <glyph unicode="&#xda;" glyph-name="Uacute" d="M164 698V279Q164 228 167 188T183 120T223 76T300 61Q349 61 376 76T417 119T433 188T436 279V698H520V299Q520 221 513 163T482 66T415 8T300 -12Q229 -12 186 7T119 66T88 163T80 299V698H164ZM307 755L255
241
+ 779L340 949L413 914L307 755Z" />
242
+ <glyph unicode="&#xdb;" glyph-name="Ucircumflex" d="M164 698V279Q164 228 167 188T183 120T223 76T300 61Q349 61 376 76T417 119T433 188T436 279V698H520V299Q520 221 513 163T482 66T415 8T300 -12Q229 -12 186 7T119 66T88 163T80 299V698H164ZM350 935L461
243
+ 792L416 761L299 878L182 761L139 792L250 935H350Z" />
244
+ <glyph unicode="&#xdc;" glyph-name="Udieresis" d="M164 698V279Q164 228 167 188T183 120T223 76T300 61Q349 61 376 76T417 119T433 188T436 279V698H520V299Q520 221 513 163T482 66T415 8T300 -12Q229 -12 186 7T119 66T88 163T80 299V698H164ZM207 788Q176
245
+ 788 163 801T150 834V848Q150 868 163 881T207 894Q238 894 251 881T264 848V834Q264 814 251 801T207 788ZM393 788Q362 788 349 801T336 834V848Q336 868 349 881T393 894Q424 894 437 881T450 848V834Q450 814 437 801T393 788Z" />
246
+ <glyph unicode="&#xdd;" glyph-name="Yacute" d="M258 0V274L17 698H113L213 516L298 357H302L389 516L489 698H583L342 274V0H258ZM307 755L255 779L340 949L413 914L307 755Z" />
247
+ <glyph unicode="&#xde;" glyph-name="Thorn" d="M90 0V698H174V553H344Q441 553 492 500T543 354Q543 262 492 209T344 155H174V0H90ZM174 228H344Q397 228 426 254T456 328V380Q456 428 427 454T344 480H174V228Z" />
248
+ <glyph unicode="&#xdf;" glyph-name="germandbls" d="M102 0V622Q102 674 129 707T216 740H353V671H182V516H525V437L352 212Q455 205 513 157T572 14Q572 -38 554 -78T501 -145T419 -186T310 -200H244V-132H310Q400 -132 443 -100T487 3V28Q487 95 441 123T292
249
+ 152H276V220L452 448H182V0H102Z" />
250
+ <glyph unicode="&#xe0;" glyph-name="agrave" d="M495 0Q448 0 428 24T403 84H398Q381 39 344 14T243 -12Q162 -12 114 30T66 145Q66 217 118 256T288 295H398V346Q398 403 366 431T275 460Q223 460 190 440T137 384L83 424Q93 444 110 463T152 496T209 519T280
251
+ 528Q371 528 424 482T478 354V70H550V0H495ZM257 55Q288 55 313 62T358 82T387 112T398 150V235H288Q216 235 183 215T150 157V136Q150 96 178 76T257 55ZM427 744L500 779L585 609L533 585L427 744Z" />
252
+ <glyph unicode="&#xe1;" glyph-name="aacute" d="M495 0Q448 0 428 24T403 84H398Q381 39 344 14T243 -12Q162 -12 114 30T66 145Q66 217 118 256T288 295H398V346Q398 403 366 431T275 460Q223 460 190 440T137 384L83 424Q93 444 110 463T152 496T209 519T280
253
+ 528Q371 528 424 482T478 354V70H550V0H495ZM257 55Q288 55 313 62T358 82T387 112T398 150V235H288Q216 235 183 215T150 157V136Q150 96 178 76T257 55ZM547 585L495 609L580 779L653 744L547 585Z" />
254
+ <glyph unicode="&#xe2;" glyph-name="acircumflex" d="M495 0Q448 0 428 24T403 84H398Q381 39 344 14T243 -12Q162 -12 114 30T66 145Q66 217 118 256T288 295H398V346Q398 403 366 431T275 460Q223 460 190 440T137 384L83 424Q93 444 110 463T152 496T209 519T280
255
+ 528Q371 528 424 482T478 354V70H550V0H495ZM257 55Q288 55 313 62T358 82T387 112T398 150V235H288Q216 235 183 215T150 157V136Q150 96 178 76T257 55ZM590 765L701 622L656 591L539 708L422 591L379 622L490 765H590Z" />
256
+ <glyph unicode="&#xe3;" glyph-name="atilde" d="M495 0Q448 0 428 24T403 84H398Q381 39 344 14T243 -12Q162 -12 114 30T66 145Q66 217 118 256T288 295H398V346Q398 403 366 431T275 460Q223 460 190 440T137 384L83 424Q93 444 110 463T152 496T209 519T280
257
+ 528Q371 528 424 482T478 354V70H550V0H495ZM257 55Q288 55 313 62T358 82T387 112T398 150V235H288Q216 235 183 215T150 157V136Q150 96 178 76T257 55ZM613 612Q587 612 568 621T533 638Q509 651 493 656T463 662Q446 662 433 655T405 635L372 675Q386 695 409
258
+ 711T467 728Q493 728 512 719T547 702Q571 689 587 684T617 678Q634 678 647 685T675 705L708 665Q694 645 671 629T613 612Z" />
259
+ <glyph unicode="&#xe4;" glyph-name="adieresis" d="M495 0Q448 0 428 24T403 84H398Q381 39 344 14T243 -12Q162 -12 114 30T66 145Q66 217 118 256T288 295H398V346Q398 403 366 431T275 460Q223 460 190 440T137 384L83 424Q93 444 110 463T152 496T209 519T280
260
+ 528Q371 528 424 482T478 354V70H550V0H495ZM257 55Q288 55 313 62T358 82T387 112T398 150V235H288Q216 235 183 215T150 157V136Q150 96 178 76T257 55ZM447 618Q416 618 403 631T390 664V678Q390 698 403 711T447 724Q478 724 491 711T504 678V664Q504 644 491
261
+ 631T447 618ZM633 618Q602 618 589 631T576 664V678Q576 698 589 711T633 724Q664 724 677 711T690 678V664Q690 644 677 631T633 618Z" />
262
+ <glyph unicode="&#xe5;" glyph-name="aring" d="M495 0Q448 0 428 24T403 84H398Q381 39 344 14T243 -12Q162 -12 114 30T66 145Q66 217 118 256T288 295H398V346Q398 403 366 431T275 460Q223 460 190 440T137 384L83 424Q93 444 110 463T152 496T209 519T280
263
+ 528Q371 528 424 482T478 354V70H550V0H495ZM257 55Q288 55 313 62T358 82T387 112T398 150V235H288Q216 235 183 215T150 157V136Q150 96 178 76T257 55ZM540 576Q516 576 495 584T458 608T433 645T424 691Q424 716 433 737T457 773T494 797T540 806Q564 806 585
264
+ 798T622 774T647 737T656 691Q656 666 647 645T623 609T586 585T540 576ZM540 625Q567 625 582 639T598 680V702Q598 728 583 742T540 757Q513 757 498 743T482 702V680Q482 654 497 640T540 625Z" />
265
+ <glyph unicode="&#xe6;" glyph-name="ae" d="M141 -12Q84 -12 47 26T10 138Q10 216 55 255T188 295H251V348Q251 415 230 441T170 468Q132 468 111 446T75 389L22 422Q30 442 43 461T75 495T118 519T173 528Q218 528 249 508T297 450H300Q320 493 352 510T424
266
+ 528Q502 528 542 469T582 292V238H324V213Q324 142 348 97T420 52Q439 52 454 59T481 79T501 108T516 141L574 114Q566 91 553 69T520 28T475 -1T418 -12Q367 -12 330 18T272 102H269Q255 43 222 16T141 -12ZM155 50Q179 50 197 58T227 81T245 114T251 154V238H199Q144
267
+ 238 114 218T83 152V137Q83 96 99 73T155 50ZM420 470Q374 470 349 436T324 329V295H516V329Q516 401 491 435T420 470Z" />
268
+ <glyph unicode="&#xe7;" glyph-name="ccedilla" d="M317 528Q392 528 439 495T508 409L444 375Q430 415 398 437T317 459Q282 459 255 448T208 415T180 365T170 302V214Q170 180 179 151T208 101T255 69T319 57Q371 57 405 81T459 147L516 108Q493 57 447 24T326
269
+ -12L316 -61L319 -64Q338 -58 358 -58Q387 -58 406 -75T426 -124Q426 -145 417 -161T393 -187T357 -202T315 -207Q274 -207 251 -194T216 -166L254 -125Q263 -136 278 -144T315 -153Q334 -153 346 -146T359 -122Q359 -108 346 -98T291 -81L263 -77L277 -9Q185 5
270
+ 135 76T84 258Q84 319 100 369T146 454T219 509T317 528Z" />
271
+ <glyph unicode="&#xe8;" glyph-name="egrave" d="M309 -12Q253 -12 209 7T133 61T84 146T67 257Q67 319 84 369T133 454T207 509T304 528Q356 528 398 509T471 457T517 377T533 276V238H151V214Q151 180 162 151T193 101T243 69T309 57Q361 57 399 81T457 147L516
272
+ 107Q493 55 440 22T309 -12ZM304 462Q271 462 243 450T195 417T163 368T151 305V298H447V309Q447 343 437 371T408 419T363 451T304 462ZM189 744L262 779L347 609L295 585L189 744Z" />
273
+ <glyph unicode="&#xe9;" glyph-name="eacute" d="M309 -12Q253 -12 209 7T133 61T84 146T67 257Q67 319 84 369T133 454T207 509T304 528Q356 528 398 509T471 457T517 377T533 276V238H151V214Q151 180 162 151T193 101T243 69T309 57Q361 57 399 81T457 147L516
274
+ 107Q493 55 440 22T309 -12ZM304 462Q271 462 243 450T195 417T163 368T151 305V298H447V309Q447 343 437 371T408 419T363 451T304 462ZM309 585L257 609L342 779L415 744L309 585Z" />
275
+ <glyph unicode="&#xea;" glyph-name="ecircumflex" d="M309 -12Q253 -12 209 7T133 61T84 146T67 257Q67 319 84 369T133 454T207 509T304 528Q356 528 398 509T471 457T517 377T533 276V238H151V214Q151 180 162 151T193 101T243 69T309 57Q361 57 399 81T457
276
+ 147L516 107Q493 55 440 22T309 -12ZM304 462Q271 462 243 450T195 417T163 368T151 305V298H447V309Q447 343 437 371T408 419T363 451T304 462ZM352 765L463 622L418 591L301 708L184 591L141 622L252 765H352Z" />
277
+ <glyph unicode="&#xeb;" glyph-name="edieresis" d="M309 -12Q253 -12 209 7T133 61T84 146T67 257Q67 319 84 369T133 454T207 509T304 528Q356 528 398 509T471 457T517 377T533 276V238H151V214Q151 180 162 151T193 101T243 69T309 57Q361 57 399 81T457 147L516
278
+ 107Q493 55 440 22T309 -12ZM304 462Q271 462 243 450T195 417T163 368T151 305V298H447V309Q447 343 437 371T408 419T363 451T304 462ZM209 618Q178 618 165 631T152 664V678Q152 698 165 711T209 724Q240 724 253 711T266 678V664Q266 644 253 631T209 618ZM395
279
+ 618Q364 618 351 631T338 664V678Q338 698 351 711T395 724Q426 724 439 711T452 678V664Q452 644 439 631T395 618Z" />
280
+ <glyph unicode="&#xec;" glyph-name="igrave" d="M106 68H292V448H106V516H372V68H546V0H106V68ZM219 744L292 779L377 609L325 585L219 744Z" />
281
+ <glyph unicode="&#xed;" glyph-name="iacute" d="M106 68H292V448H106V516H372V68H546V0H106V68ZM339 585L287 609L372 779L445 744L339 585Z" />
282
+ <glyph unicode="&#xee;" glyph-name="icircumflex" d="M106 68H292V448H106V516H372V68H546V0H106V68ZM382 765L493 622L448 591L331 708L214 591L171 622L282 765H382Z" />
283
+ <glyph unicode="&#xef;" glyph-name="idieresis" d="M106 68H292V448H106V516H372V68H546V0H106V68ZM239 618Q208 618 195 631T182 664V678Q182 698 195 711T239 724Q270 724 283 711T296 678V664Q296 644 283 631T239 618ZM425 618Q394 618 381 631T368 664V678Q368
284
+ 698 381 711T425 724Q456 724 469 711T482 678V664Q482 644 469 631T425 618Z" />
285
+ <glyph unicode="&#xf0;" glyph-name="eth" d="M459 708L372 647Q403 616 432 577T484 491T520 388T534 266Q534 126 472 57T303 -12Q247 -12 203 6T129 58T82 139T66 246Q66 305 82 352T126 434T194 486T280 504Q341 504 381 476T445 408L449 410Q424 472 391
286
+ 520T315 608L216 538L178 583L270 647Q237 673 201 696T127 740H253Q270 729 288 717T327 688L421 753L459 708ZM300 57Q367 57 408 95T449 211V281Q449 359 408 397T300 435Q233 435 192 397T151 281V211Q151 133 192 95T300 57Z" />
287
+ <glyph unicode="&#xf1;" glyph-name="ntilde" d="M98 0V516H178V432H182Q190 451 202 468T231 499T273 520T329 528Q410 528 459 477T508 331V0H428V317Q428 388 397 422T306 457Q282 457 259 451T218 433T189 402T178 358V0H98ZM376 612Q350 612 331 621T296
288
+ 638Q272 651 256 656T226 662Q209 662 196 655T168 635L135 675Q149 695 172 711T230 728Q256 728 275 719T310 702Q334 689 350 684T380 678Q397 678 410 685T438 705L471 665Q457 645 434 629T376 612Z" />
289
+ <glyph unicode="&#xf2;" glyph-name="ograve" d="M300 -12Q246 -12 203 7T129 61T82 146T66 258Q66 319 82 369T128 454T202 509T300 528Q354 528 397 509T471 455T518 369T534 258Q534 196 518 147T472 62T398 7T300 -12ZM300 57Q367 57 408 97T449 221V295Q449
290
+ 379 408 419T300 459Q233 459 192 419T151 295V221Q151 137 192 97T300 57ZM187 744L260 779L345 609L293 585L187 744Z" />
291
+ <glyph unicode="&#xf3;" glyph-name="oacute" d="M300 -12Q246 -12 203 7T129 61T82 146T66 258Q66 319 82 369T128 454T202 509T300 528Q354 528 397 509T471 455T518 369T534 258Q534 196 518 147T472 62T398 7T300 -12ZM300 57Q367 57 408 97T449 221V295Q449
292
+ 379 408 419T300 459Q233 459 192 419T151 295V221Q151 137 192 97T300 57ZM307 585L255 609L340 779L413 744L307 585Z" />
293
+ <glyph unicode="&#xf4;" glyph-name="ocircumflex" d="M300 -12Q246 -12 203 7T129 61T82 146T66 258Q66 319 82 369T128 454T202 509T300 528Q354 528 397 509T471 455T518 369T534 258Q534 196 518 147T472 62T398 7T300 -12ZM300 57Q367 57 408 97T449 221V295Q449
294
+ 379 408 419T300 459Q233 459 192 419T151 295V221Q151 137 192 97T300 57ZM350 765L461 622L416 591L299 708L182 591L139 622L250 765H350Z" />
295
+ <glyph unicode="&#xf5;" glyph-name="otilde" d="M300 -12Q246 -12 203 7T129 61T82 146T66 258Q66 319 82 369T128 454T202 509T300 528Q354 528 397 509T471 455T518 369T534 258Q534 196 518 147T472 62T398 7T300 -12ZM300 57Q367 57 408 97T449 221V295Q449
296
+ 379 408 419T300 459Q233 459 192 419T151 295V221Q151 137 192 97T300 57ZM373 612Q347 612 328 621T293 638Q269 651 253 656T223 662Q206 662 193 655T165 635L132 675Q146 695 169 711T227 728Q253 728 272 719T307 702Q331 689 347 684T377 678Q394 678 407
297
+ 685T435 705L468 665Q454 645 431 629T373 612Z" />
298
+ <glyph unicode="&#xf6;" glyph-name="odieresis" d="M300 -12Q246 -12 203 7T129 61T82 146T66 258Q66 319 82 369T128 454T202 509T300 528Q354 528 397 509T471 455T518 369T534 258Q534 196 518 147T472 62T398 7T300 -12ZM300 57Q367 57 408 97T449 221V295Q449
299
+ 379 408 419T300 459Q233 459 192 419T151 295V221Q151 137 192 97T300 57ZM207 618Q176 618 163 631T150 664V678Q150 698 163 711T207 724Q238 724 251 711T264 678V664Q264 644 251 631T207 618ZM393 618Q362 618 349 631T336 664V678Q336 698 349 711T393 724Q424
300
+ 724 437 711T450 678V664Q450 644 437 631T393 618Z" />
301
+ <glyph unicode="&#xf7;" glyph-name="divide" d="M62 271V339H538V271H62ZM300 52Q265 52 252 66T238 100V122Q238 142 251 156T300 170Q335 170 348 156T362 122V100Q362 80 349 66T300 52ZM300 440Q265 440 252 454T238 488V510Q238 530 251 544T300 558Q335
302
+ 558 348 544T362 510V488Q362 468 349 454T300 440Z" />
303
+ <glyph unicode="&#xf8;" glyph-name="oslash" d="M47 -6L116 78Q92 113 79 158T66 258Q66 319 82 369T128 454T202 509T300 528Q344 528 380 515T445 479L508 556L553 522L484 438Q508 403 521 358T534 258Q534 196 518 147T472 62T398 7T300 -12Q256 -12 220
304
+ 1T155 37L92 -40L47 -6ZM300 459Q233 459 192 419T151 295V221Q151 171 166 138L401 425Q364 459 300 459ZM300 57Q367 57 408 97T449 221V295Q449 345 434 378L199 91Q236 57 300 57Z" />
305
+ <glyph unicode="&#xf9;" glyph-name="ugrave" d="M422 84H418Q410 65 398 48T369 17T327 -4T271 -12Q190 -12 141 39T92 185V516H172V199Q172 128 203 94T294 59Q318 59 341 65T382 83T411 113T422 158V516H502V0H422V84ZM441 744L514 779L599 609L547 585L441 744Z" />
306
+ <glyph unicode="&#xfa;" glyph-name="uacute" d="M422 84H418Q410 65 398 48T369 17T327 -4T271 -12Q190 -12 141 39T92 185V516H172V199Q172 128 203 94T294 59Q318 59 341 65T382 83T411 113T422 158V516H502V0H422V84ZM561 585L509 609L594 779L667 744L561 585Z" />
307
+ <glyph unicode="&#xfb;" glyph-name="ucircumflex" d="M422 84H418Q410 65 398 48T369 17T327 -4T271 -12Q190 -12 141 39T92 185V516H172V199Q172 128 203 94T294 59Q318 59 341 65T382 83T411 113T422 158V516H502V0H422V84ZM604 765L715 622L670 591L553 708L436
308
+ 591L393 622L504 765H604Z" />
309
+ <glyph unicode="&#xfc;" glyph-name="udieresis" d="M422 84H418Q410 65 398 48T369 17T327 -4T271 -12Q190 -12 141 39T92 185V516H172V199Q172 128 203 94T294 59Q318 59 341 65T382 83T411 113T422 158V516H502V0H422V84ZM461 618Q430 618 417 631T404 664V678Q404
310
+ 698 417 711T461 724Q492 724 505 711T518 678V664Q518 644 505 631T461 618ZM647 618Q616 618 603 631T590 664V678Q590 698 603 711T647 724Q678 724 691 711T704 678V664Q704 644 691 631T647 618Z" />
311
+ <glyph unicode="&#xfd;" glyph-name="yacute" d="M467 516H547L291 -113Q282 -135 271 -151T245 -178T209 -194T159 -200H83V-132H203L261 10L53 516H135L222 300L299 104H303L380 300L467 516ZM307 585L255 609L340 779L413 744L307 585Z" />
312
+ <glyph unicode="&#xfe;" glyph-name="thorn" d="M95 740H175V432H179Q229 528 338 528Q433 528 486 457T540 258Q540 130 487 59T338 -12Q229 -12 179 84H175V-200H95V740ZM307 59Q377 59 415 101T454 214V302Q454 372 416 414T307 457Q280 457 256 450T214 430T186
313
+ 397T175 351V165Q175 139 185 120T214 87T256 66T307 59Z" />
314
+ <glyph unicode="&#xff;" glyph-name="ydieresis" d="M467 516H547L291 -113Q282 -135 271 -151T245 -178T209 -194T159 -200H83V-132H203L261 10L53 516H135L222 300L299 104H303L380 300L467 516ZM207 618Q176 618 163 631T150 664V678Q150 698 163 711T207 724Q238
315
+ 724 251 711T264 678V664Q264 644 251 631T207 618ZM393 618Q362 618 349 631T336 664V678Q336 698 349 711T393 724Q424 724 437 711T450 678V664Q450 644 437 631T393 618Z" />
316
+ <glyph unicode="&#x2013;" glyph-name="endash" d="M60 267V341H540V267H60Z" />
317
+ <glyph unicode="&#x2014;" glyph-name="emdash" d="M0 267V341H600V267H0Z" />
318
+ <glyph unicode="&#x2018;" glyph-name="quoteleft" d="M310 740H377L324 463H195L310 740Z" />
319
+ <glyph unicode="&#x2019;" glyph-name="quoteright" d="M276 740H405L290 463H223L276 740Z" />
320
+ <glyph unicode="&#x201a;" glyph-name="quotesinglbase" d="M257 136H386L271 -141H204L257 136Z" />
321
+ <glyph unicode="&#x201c;" glyph-name="quotedblleft" d="M453 740H520L467 463H338L453 740ZM436 740H503L450 463H321L436 740Z" />
322
+ <glyph unicode="&#x201d;" glyph-name="quotedblright" d="M419 740H548L433 463H366L419 740ZM402 740H531L416 463H349L402 740Z" />
323
+ <glyph unicode="&#x201e;" glyph-name="quotedblbase" d="M419 136H548L433 -141H366L419 136ZM402 136H531L416 -141H349L402 136Z" />
324
+ <glyph unicode="&#x2022;" glyph-name="bullet" d="M300 186Q233 186 206 216T178 290V318Q178 362 205 392T300 422Q367 422 394 392T422 318V290Q422 246 395 216T300 186Z" />
325
+ <glyph unicode="&#x2039;" glyph-name="guilsinglleft" d="M376 56L170 230V310L376 484L401 427L253 270L401 113L376 56Z" />
326
+ <glyph unicode="&#x203a;" glyph-name="guilsinglright" d="M199 113L347 270L199 427L224 484L430 310V230L224 56L199 113Z" />
327
+ </font>
328
+ </defs>
329
+ </svg>
@@ -0,0 +1 @@
1
+ import{b as G,i as m,m as O,G as j,l as A}from"./layout-89e6403a.js";import{i as M,u as _,s as H,a as V,b as U,p as D,c as W,d as Y,e as q,f as z,g as L,h as C}from"./edges-f2ad444c-f1878e0a.js";import{l as i,p as N,c as S,h as T}from"./index-37817b51.js";import{a as K}from"./createText-62fc7601-ef476ecd.js";var Q=4;function Z(e){return G(e,Q)}function x(e){var t={options:{directed:e.isDirected(),multigraph:e.isMultigraph(),compound:e.isCompound()},nodes:I(e),edges:tt(e)};return m(e.graph())||(t.value=Z(e.graph())),t}function I(e){return O(e.nodes(),function(t){var n=e.node(t),r=e.parent(t),s={v:t};return m(n)||(s.value=n),m(r)||(s.parent=r),s})}function tt(e){return O(e.edges(),function(t){var n=e.edge(t),r={v:t.v,w:t.w};return m(t.name)||(r.name=t.name),m(n)||(r.value=n),r})}let f={},g={},J={};const et=()=>{g={},J={},f={}},X=(e,t)=>(i.trace("In isDecendant",t," ",e," = ",g[t].includes(e)),!!g[t].includes(e)),nt=(e,t)=>(i.info("Decendants of ",t," is ",g[t]),i.info("Edge is ",e),e.v===t||e.w===t?!1:g[t]?g[t].includes(e.v)||X(e.v,t)||X(e.w,t)||g[t].includes(e.w):(i.debug("Tilt, ",t,",not in decendants"),!1)),R=(e,t,n,r)=>{i.warn("Copying children of ",e,"root",r,"data",t.node(e),r);const s=t.children(e)||[];e!==r&&s.push(e),i.warn("Copying (nodes) clusterId",e,"nodes",s),s.forEach(c=>{if(t.children(c).length>0)R(c,t,n,r);else{const d=t.node(c);i.info("cp ",c," to ",r," with parent ",e),n.setNode(c,d),r!==t.parent(c)&&(i.warn("Setting parent",c,t.parent(c)),n.setParent(c,t.parent(c))),e!==r&&c!==e?(i.debug("Setting parent",c,e),n.setParent(c,e)):(i.info("In copy ",e,"root",r,"data",t.node(e),r),i.debug("Not Setting parent for node=",c,"cluster!==rootId",e!==r,"node!==clusterId",c!==e));const l=t.edges(c);i.debug("Copying Edges",l),l.forEach(u=>{i.info("Edge",u);const h=t.edge(u.v,u.w,u.name);i.info("Edge data",h,r);try{nt(u,r)?(i.info("Copying as ",u.v,u.w,h,u.name),n.setEdge(u.v,u.w,h,u.name),i.info("newGraph edges ",n.edges(),n.edge(n.edges()[0]))):i.info("Skipping copy of edge ",u.v,"-->",u.w," rootId: ",r," clusterId:",e)}catch(w){i.error(w)}})}i.debug("Removing node",c),t.removeNode(c)})},p=(e,t)=>{const n=t.children(e);let r=[...n];for(const s of n)J[s]=e,r=[...r,...p(s,t)];return r},b=(e,t)=>{i.trace("Searching",e);const n=t.children(e);if(i.trace("Searching children of id ",e,n),n.length<1)return i.trace("This is a valid node",e),e;for(const r of n){const s=b(r,t);if(s)return i.trace("Found replacement for",e," => ",s),s}},E=e=>!f[e]||!f[e].externalConnections?e:f[e]?f[e].id:e,it=(e,t)=>{if(!e||t>10){i.debug("Opting out, no graph ");return}else i.debug("Opting in, graph ");e.nodes().forEach(function(n){e.children(n).length>0&&(i.warn("Cluster identified",n," Replacement id in edges: ",b(n,e)),g[n]=p(n,e),f[n]={id:b(n,e),clusterData:e.node(n)})}),e.nodes().forEach(function(n){const r=e.children(n),s=e.edges();r.length>0?(i.debug("Cluster identified",n,g),s.forEach(c=>{if(c.v!==n&&c.w!==n){const d=X(c.v,n),l=X(c.w,n);d^l&&(i.warn("Edge: ",c," leaves cluster ",n),i.warn("Decendants of XXX ",n,": ",g[n]),f[n].externalConnections=!0)}})):i.debug("Not a cluster ",n,g)}),e.edges().forEach(function(n){const r=e.edge(n);i.warn("Edge "+n.v+" -> "+n.w+": "+JSON.stringify(n)),i.warn("Edge "+n.v+" -> "+n.w+": "+JSON.stringify(e.edge(n)));let s=n.v,c=n.w;if(i.warn("Fix XXX",f,"ids:",n.v,n.w,"Translating: ",f[n.v]," --- ",f[n.w]),f[n.v]&&f[n.w]&&f[n.v]===f[n.w]){i.warn("Fixing and trixing link to self - removing XXX",n.v,n.w,n.name),i.warn("Fixing and trixing - removing XXX",n.v,n.w,n.name),s=E(n.v),c=E(n.w),e.removeEdge(n.v,n.w,n.name);const d=n.w+"---"+n.v;e.setNode(d,{domId:d,id:d,labelStyle:"",labelText:r.label,padding:0,shape:"labelRect",style:""});const l=structuredClone(r),u=structuredClone(r);l.label="",l.arrowTypeEnd="none",u.label="",l.fromCluster=n.v,u.toCluster=n.v,e.setEdge(s,d,l,n.name+"-cyclic-special"),e.setEdge(d,c,u,n.name+"-cyclic-special")}else(f[n.v]||f[n.w])&&(i.warn("Fixing and trixing - removing XXX",n.v,n.w,n.name),s=E(n.v),c=E(n.w),e.removeEdge(n.v,n.w,n.name),s!==n.v&&(r.fromCluster=n.v),c!==n.w&&(r.toCluster=n.w),i.warn("Fix Replacing with XXX",s,c,n.name),e.setEdge(s,c,r,n.name))}),i.warn("Adjusted Graph",x(e)),P(e,0),i.trace(f)},P=(e,t)=>{if(i.warn("extractor - ",t,x(e),e.children("D")),t>10){i.error("Bailing out");return}let n=e.nodes(),r=!1;for(const s of n){const c=e.children(s);r=r||c.length>0}if(!r){i.debug("Done, no node has children",e.nodes());return}i.debug("Nodes = ",n,t);for(const s of n)if(i.debug("Extracting node",s,f,f[s]&&!f[s].externalConnections,!e.parent(s),e.node(s),e.children("D")," Depth ",t),!f[s])i.debug("Not a cluster",s,t);else if(!f[s].externalConnections&&e.children(s)&&e.children(s).length>0){i.warn("Cluster without external connections, without a parent and with children",s,t);let d=e.graph().rankdir==="TB"?"LR":"TB";f[s]&&f[s].clusterData&&f[s].clusterData.dir&&(d=f[s].clusterData.dir,i.warn("Fixing dir",f[s].clusterData.dir,d));const l=new j({multigraph:!0,compound:!0}).setGraph({rankdir:d,nodesep:50,ranksep:50,marginx:8,marginy:8}).setDefaultEdgeLabel(function(){return{}});i.warn("Old graph before copy",x(e)),R(s,e,l,s),e.setNode(s,{clusterNode:!0,id:s,clusterData:f[s].clusterData,labelText:f[s].labelText,graph:l}),i.warn("New graph after copy node: (",s,")",x(l)),i.debug("Old graph after copy",x(e))}else i.warn("Cluster ** ",s," **not meeting the criteria !externalConnections:",!f[s].externalConnections," no parent: ",!e.parent(s)," children ",e.children(s)&&e.children(s).length>0,e.children("D"),t),i.debug(f);n=e.nodes(),i.warn("New list of nodes",n);for(const s of n){const c=e.node(s);i.warn(" Now next level",s,c),c.clusterNode&&P(c.graph,t+1)}},F=(e,t)=>{if(t.length===0)return[];let n=Object.assign(t);return t.forEach(r=>{const s=e.children(r),c=F(e,s);n=[...n,...c]}),n},st=e=>F(e,e.children()),rt=(e,t)=>{i.info("Creating subgraph rect for ",t.id,t);const n=e.insert("g").attr("class","cluster"+(t.class?" "+t.class:"")).attr("id",t.id),r=n.insert("rect",":first-child"),s=N(S().flowchart.htmlLabels),c=n.insert("g").attr("class","cluster-label"),d=t.labelType==="markdown"?K(c,t.labelText,{style:t.labelStyle,useHtmlLabels:s}):c.node().appendChild(L(t.labelText,t.labelStyle,void 0,!0));let l=d.getBBox();if(N(S().flowchart.htmlLabels)){const a=d.children[0],o=T(d);l=a.getBoundingClientRect(),o.attr("width",l.width),o.attr("height",l.height)}const u=0*t.padding,h=u/2,w=t.width<=l.width+u?l.width+u:t.width;t.width<=l.width+u?t.diff=(l.width-t.width)/2-t.padding/2:t.diff=-t.padding/2,i.trace("Data ",t,JSON.stringify(t)),r.attr("style",t.style).attr("rx",t.rx).attr("ry",t.ry).attr("x",t.x-w/2).attr("y",t.y-t.height/2-h).attr("width",w).attr("height",t.height+u),s?c.attr("transform","translate("+(t.x-l.width/2)+", "+(t.y-t.height/2)+")"):c.attr("transform","translate("+t.x+", "+(t.y-t.height/2)+")");const v=r.node().getBBox();return t.width=v.width,t.height=v.height,t.intersect=function(a){return C(t,a)},n},at=(e,t)=>{const n=e.insert("g").attr("class","note-cluster").attr("id",t.id),r=n.insert("rect",":first-child"),s=0*t.padding,c=s/2;r.attr("rx",t.rx).attr("ry",t.ry).attr("x",t.x-t.width/2-c).attr("y",t.y-t.height/2-c).attr("width",t.width+s).attr("height",t.height+s).attr("fill","none");const d=r.node().getBBox();return t.width=d.width,t.height=d.height,t.intersect=function(l){return C(t,l)},n},ct=(e,t)=>{const n=e.insert("g").attr("class",t.classes).attr("id",t.id),r=n.insert("rect",":first-child"),s=n.insert("g").attr("class","cluster-label"),c=n.append("rect"),d=s.node().appendChild(L(t.labelText,t.labelStyle,void 0,!0));let l=d.getBBox();if(N(S().flowchart.htmlLabels)){const a=d.children[0],o=T(d);l=a.getBoundingClientRect(),o.attr("width",l.width),o.attr("height",l.height)}l=d.getBBox();const u=0*t.padding,h=u/2,w=t.width<=l.width+t.padding?l.width+t.padding:t.width;t.width<=l.width+t.padding?t.diff=(l.width+t.padding*0-t.width)/2:t.diff=-t.padding/2,r.attr("class","outer").attr("x",t.x-w/2-h).attr("y",t.y-t.height/2-h).attr("width",w+u).attr("height",t.height+u),c.attr("class","inner").attr("x",t.x-w/2-h).attr("y",t.y-t.height/2-h+l.height-1).attr("width",w+u).attr("height",t.height+u-l.height-3),s.attr("transform","translate("+(t.x-l.width/2)+", "+(t.y-t.height/2-t.padding/3+(N(S().flowchart.htmlLabels)?5:3))+")");const v=r.node().getBBox();return t.height=v.height,t.intersect=function(a){return C(t,a)},n},ot=(e,t)=>{const n=e.insert("g").attr("class",t.classes).attr("id",t.id),r=n.insert("rect",":first-child"),s=0*t.padding,c=s/2;r.attr("class","divider").attr("x",t.x-t.width/2-c).attr("y",t.y-t.height/2).attr("width",t.width+s).attr("height",t.height+s);const d=r.node().getBBox();return t.width=d.width,t.height=d.height,t.diff=-t.padding/2,t.intersect=function(l){return C(t,l)},n},lt={rect:rt,roundedWithTitle:ct,noteGroup:at,divider:ot};let k={};const ft=(e,t)=>{i.trace("Inserting cluster");const n=t.shape||"rect";k[t.id]=lt[n](e,t)},dt=()=>{k={}},$=async(e,t,n,r,s)=>{i.info("Graph in recursive render: XXX",x(t),s);const c=t.graph().rankdir;i.trace("Dir in recursive render - dir:",c);const d=e.insert("g").attr("class","root");t.nodes()?i.info("Recursive render XXX",t.nodes()):i.info("No nodes found for",t),t.edges().length>0&&i.trace("Recursive edges",t.edge(t.edges()[0]));const l=d.insert("g").attr("class","clusters"),u=d.insert("g").attr("class","edgePaths"),h=d.insert("g").attr("class","edgeLabels"),w=d.insert("g").attr("class","nodes");await Promise.all(t.nodes().map(async function(a){const o=t.node(a);if(s!==void 0){const y=JSON.parse(JSON.stringify(s.clusterData));i.info("Setting data for cluster XXX (",a,") ",y,s),t.setNode(s.id,y),t.parent(a)||(i.trace("Setting parent",a,s.id),t.setParent(a,s.id,y))}if(i.info("(Insert) Node XXX"+a+": "+JSON.stringify(t.node(a))),o&&o.clusterNode){i.info("Cluster identified",a,o.width,t.node(a));const y=await $(w,o.graph,n,r,t.node(a)),B=y.elem;_(o,B),o.diff=y.diff||0,i.info("Node bounds (abc123)",a,o,o.width,o.x,o.y),H(B,o),i.warn("Recursive render complete ",B,o)}else t.children(a).length>0?(i.info("Cluster - the non recursive path XXX",a,o.id,o,t),i.info(b(o.id,t)),f[o.id]={id:b(o.id,t),node:o}):(i.info("Node - the non recursive path",a,o.id,o),await V(w,t.node(a),c))})),t.edges().forEach(function(a){const o=t.edge(a.v,a.w,a.name);i.info("Edge "+a.v+" -> "+a.w+": "+JSON.stringify(a)),i.info("Edge "+a.v+" -> "+a.w+": ",a," ",JSON.stringify(t.edge(a))),i.info("Fix",f,"ids:",a.v,a.w,"Translateing: ",f[a.v],f[a.w]),U(h,o)}),t.edges().forEach(function(a){i.info("Edge "+a.v+" -> "+a.w+": "+JSON.stringify(a))}),i.info("#############################################"),i.info("### Layout ###"),i.info("#############################################"),i.info(t),A(t),i.info("Graph after layout:",x(t));let v=0;return st(t).forEach(function(a){const o=t.node(a);i.info("Position "+a+": "+JSON.stringify(t.node(a))),i.info("Position "+a+": ("+o.x,","+o.y,") width: ",o.width," height: ",o.height),o&&o.clusterNode?D(o):t.children(a).length>0?(ft(l,o),f[o.id].node=o):D(o)}),t.edges().forEach(function(a){const o=t.edge(a);i.info("Edge "+a.v+" -> "+a.w+": "+JSON.stringify(o),o);const y=W(u,a,o,f,n,t,r);Y(o,y)}),t.nodes().forEach(function(a){const o=t.node(a);i.info(a,o.type,o.diff),o.type==="group"&&(v=o.diff)}),{elem:d,diff:v}},xt=async(e,t,n,r,s)=>{M(e,n,r,s),q(),z(),dt(),et(),i.warn("Graph at first:",JSON.stringify(x(t))),it(t),i.warn("Graph after:",JSON.stringify(x(t))),await $(e,t,r,s)};export{xt as r};