{
  "version": 3,
  "sources": ["ssg:https://rive.app/api/s/2MXGS-Kh5U2zpXfLHLVEUg/framer/", "ssg:https://framerusercontent.com/modules/992ZpQqnRoy0uw4foSsD/5p3aPljrDkA2UJCO2ZD4/Rive_aimlab.js", "ssg:https://rive.app/api/s/ObG4hanx4k6__wOvOogcbw/framer/", "ssg:https://framerusercontent.com/modules/kVeRaNn22fLlxOFmhoh0/YNlVwhD5fmmj8eKdL1Jr/Rive_assignment.js", "ssg:https://rive.app/api/s/1rU01LsDa0KaEAb1y5LfNQ/framer/", "ssg:https://framerusercontent.com/modules/SQwmo5Y4QGfR7C9GU8NR/cllklLseBU1MGJz1uMqL/Rive_discussionboard.js", "ssg:https://rive.app/api/s/NREEcJIQ3kuMkqR1uWLDIg/framer/", "ssg:https://framerusercontent.com/modules/7DYoTCNVXq9gn3nBYRO3/KXRMKTDs89DIA47lGZEm/Rive_drills.js", "ssg:https://rive.app/api/s/cUChEWmvk0_rJXmlYjUFmA/framer/", "ssg:https://framerusercontent.com/modules/CIh3SsFlIWO3jhL7JOM6/0Pd8XTdnLbGQzqE4MB6m/Rive_exam.js", "ssg:https://rive.app/api/s/OEOgcMMaY0q7x-VFCeaFTw/framer/", "ssg:https://framerusercontent.com/modules/1XLAJ0IT8liO07ff96aK/SLj0FcZz64n7oa3jok5c/Rive_journal.js", "ssg:https://rive.app/api/s/lTUgnNsWtk2qPMYWMAZOjg/framer/", "ssg:https://framerusercontent.com/modules/8AYCf6MvxPjwlVO4dR0d/jLvuTRCL0gsXJQVxJF1g/Rive_Quiz.js", "ssg:https://rive.app/api/s/5kUFPUhvq0a4U2NOO8jCJw/framer/", "ssg:https://framerusercontent.com/modules/qgzufbLrjZwD6xwHzpbv/jNSlvx8EvCm1mXWgDyP2/Rive_richtext.js", "ssg:https://framerusercontent.com/modules/cK8rv6aJTimOPTpjG8R3/UWkYnHhtgHRfoUrVSFnB/gTgGw6CkA.js"],
  "sourcesContent": ["import React, { useEffect } from \"react\";\nimport { addPropertyControls, ControlType, RenderTarget } from \"framer\";\nimport Rive, { useRive, useStateMachineInput } from \"@rive-app/react-canvas\";\nexport const componentName = \"New Artboard - Timeline 1\";\nexport default function Controls(props) {\n  const layout = new Rive.Layout({\n    fit: props.fit ?? \"contain\",\n    alignment: props.alignment ?? \"center\",\n  });\n  const params = {\n    src: \"https://public.rive.app/hosted/179949/107928/2MXGS-Kh5U2zpXfLHLVEUg.riv\",\n    artboard: \"New Artboard\",\n    animations: \"Timeline 1\",\n    autoplay: true && props.play,\n    automaticallyHandleEvents: true,\n    layout,\n  };\n  const { RiveComponent, rive } = useRive(params);\n  useEffect(() => {\n    if (rive) {\n      if (RenderTarget.current() === RenderTarget.canvas) {\n        if (props.playOnCanvas && props.play) {\n          rive.play();\n        } else {\n          rive.pause();\n        }\n      } else {\n        if (props.play) {\n          rive.play();\n        } else {\n          rive.pause();\n        }\n      }\n    }\n  }, [props.play]);\n  useEffect(() => {\n    if (rive && RenderTarget.current() === RenderTarget.canvas) {\n      if (props.playOnCanvas && props.play) {\n        rive.play();\n      } else {\n        rive.pause();\n      }\n    }\n  }, [rive, props.playOnCanvas, props.play]);\n  useEffect(() => {\n    if (rive) {\n      const layout = new Rive.Layout({\n        fit: props.fit ?? \"contain\",\n        alignment: props.alignment ?? \"center\",\n      });\n      rive.layout = layout;\n    }\n  }, [props.fit, props.alignment]);\n  return React.createElement(RiveComponent, {});\n}\nControls.defaultProps = { play: true, playOnCanvas: true };\nexport const propertyControls = {\n  play: {\n    title: \"Playback\",\n    type: ControlType.Boolean,\n    defaultValue: true,\n    enabledTitle: \"Play\",\n    disabledTitle: \"Pause\",\n  },\n  playOnCanvas: {\n    type: ControlType.Boolean,\n    title: \"Play on Canvas\",\n    defaultValue: true,\n    enabledTitle: \"Play\",\n    disabledTitle: \"Pause\",\n  },\n  fit: {\n    type: ControlType.Enum,\n    defaultValue: \"contain\",\n    displaySegmentedControl: false,\n    segmentedControlDirection: \"vertical\",\n    options: [\n      \"contain\",\n      \"cover\",\n      \"fill\",\n      \"fitWidth\",\n      \"fitHeight\",\n      \"none\",\n      \"scaleDown\",\n    ],\n    optionTitles: [\n      \"Contain\",\n      \"Cover\",\n      \"Fill\",\n      \"Fit Width\",\n      \"Fit Height\",\n      \"None\",\n      \"Scale Down\",\n    ],\n  },\n  alignment: {\n    type: ControlType.Enum,\n    defaultValue: \"center\",\n    displaySegmentedControl: false,\n    segmentedControlDirection: \"vertical\",\n    options: [\n      \"center\",\n      \"topLeft\",\n      \"topCenter\",\n      \"topRight\",\n      \"centerLeft\",\n      \"centerRight\",\n      \"bottomLeft\",\n      \"bottomCenter\",\n      \"bottomRight\",\n    ],\n    optionTitles: [\n      \"Center\",\n      \"Top Left\",\n      \"Top Center\",\n      \"Top Right\",\n      \"Center Left\",\n      \"Center Right\",\n      \"Bottom Left\",\n      \"Bottom Center\",\n      \"Bottom Right\",\n    ],\n  },\n};\naddPropertyControls(Controls, propertyControls);\n", "import{addPropertyControls as r}from\"framer\";import p,{componentName as a,propertyControls as m}from\"https://rive.app/api/s/2MXGS-Kh5U2zpXfLHLVEUg/framer/\";/**\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export default p;p.displayName=a,r(p,m);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"RiveComponent\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Rive_aimlab.map", "import React, { useEffect } from \"react\";\nimport { addPropertyControls, ControlType, RenderTarget } from \"framer\";\nimport Rive, { useRive, useStateMachineInput } from \"@rive-app/react-canvas\";\nexport const componentName = \"New Artboard - State Machine 1\";\nexport default function Controls(props) {\n  const layout = new Rive.Layout({\n    fit: props.fit ?? \"contain\",\n    alignment: props.alignment ?? \"center\",\n  });\n  const params = {\n    src: \"https://public.rive.app/hosted/179949/107975/ObG4hanx4k6__wOvOogcbw.riv\",\n    artboard: \"New Artboard\",\n    stateMachines: \"State Machine 1\",\n    autoplay: true && props.play,\n    automaticallyHandleEvents: true,\n    layout,\n  };\n  const { RiveComponent, rive } = useRive(params);\n  useEffect(() => {\n    if (rive) {\n      if (RenderTarget.current() === RenderTarget.canvas) {\n        if (props.playOnCanvas && props.play) {\n          rive.play();\n        } else {\n          rive.pause();\n        }\n      } else {\n        if (props.play) {\n          rive.play();\n        } else {\n          rive.pause();\n        }\n      }\n    }\n  }, [props.play]);\n  useEffect(() => {\n    if (rive && RenderTarget.current() === RenderTarget.canvas) {\n      if (props.playOnCanvas && props.play) {\n        rive.play();\n      } else {\n        rive.pause();\n      }\n    }\n  }, [rive, props.playOnCanvas, props.play]);\n  useEffect(() => {\n    if (rive) {\n      const layout = new Rive.Layout({\n        fit: props.fit ?? \"contain\",\n        alignment: props.alignment ?? \"center\",\n      });\n      rive.layout = layout;\n    }\n  }, [props.fit, props.alignment]);\n  return React.createElement(RiveComponent, {});\n}\nControls.defaultProps = { play: true, playOnCanvas: true };\nexport const propertyControls = {\n  play: {\n    title: \"Playback\",\n    type: ControlType.Boolean,\n    defaultValue: true,\n    enabledTitle: \"Play\",\n    disabledTitle: \"Pause\",\n  },\n  playOnCanvas: {\n    type: ControlType.Boolean,\n    title: \"Play on Canvas\",\n    defaultValue: true,\n    enabledTitle: \"Play\",\n    disabledTitle: \"Pause\",\n  },\n  fit: {\n    type: ControlType.Enum,\n    defaultValue: \"contain\",\n    displaySegmentedControl: false,\n    segmentedControlDirection: \"vertical\",\n    options: [\n      \"contain\",\n      \"cover\",\n      \"fill\",\n      \"fitWidth\",\n      \"fitHeight\",\n      \"none\",\n      \"scaleDown\",\n    ],\n    optionTitles: [\n      \"Contain\",\n      \"Cover\",\n      \"Fill\",\n      \"Fit Width\",\n      \"Fit Height\",\n      \"None\",\n      \"Scale Down\",\n    ],\n  },\n  alignment: {\n    type: ControlType.Enum,\n    defaultValue: \"center\",\n    displaySegmentedControl: false,\n    segmentedControlDirection: \"vertical\",\n    options: [\n      \"center\",\n      \"topLeft\",\n      \"topCenter\",\n      \"topRight\",\n      \"centerLeft\",\n      \"centerRight\",\n      \"bottomLeft\",\n      \"bottomCenter\",\n      \"bottomRight\",\n    ],\n    optionTitles: [\n      \"Center\",\n      \"Top Left\",\n      \"Top Center\",\n      \"Top Right\",\n      \"Center Left\",\n      \"Center Right\",\n      \"Bottom Left\",\n      \"Bottom Center\",\n      \"Bottom Right\",\n    ],\n  },\n};\naddPropertyControls(Controls, propertyControls);\n", "import{addPropertyControls as r}from\"framer\";import a,{componentName as p,propertyControls as m}from\"https://rive.app/api/s/ObG4hanx4k6__wOvOogcbw/framer/\";/**\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export default a;a.displayName=p,r(a,m);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"RiveComponent\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Rive_assignment.map", "import React, { useEffect } from \"react\";\nimport { addPropertyControls, ControlType, RenderTarget } from \"framer\";\nimport Rive, { useRive, useStateMachineInput } from \"@rive-app/react-canvas\";\nexport const componentName = \"single_choice - State Machine 1\";\nexport default function Controls(props) {\n  const layout = new Rive.Layout({\n    fit: props.fit ?? \"contain\",\n    alignment: props.alignment ?? \"center\",\n  });\n  const params = {\n    src: \"https://public.rive.app/hosted/179949/107968/1rU01LsDa0KaEAb1y5LfNQ.riv\",\n    artboard: \"single_choice\",\n    stateMachines: \"State Machine 1\",\n    autoplay: true && props.play,\n    automaticallyHandleEvents: true,\n    layout,\n  };\n  const { RiveComponent, rive } = useRive(params);\n  useEffect(() => {\n    if (rive) {\n      if (RenderTarget.current() === RenderTarget.canvas) {\n        if (props.playOnCanvas && props.play) {\n          rive.play();\n        } else {\n          rive.pause();\n        }\n      } else {\n        if (props.play) {\n          rive.play();\n        } else {\n          rive.pause();\n        }\n      }\n    }\n  }, [props.play]);\n  useEffect(() => {\n    if (rive && RenderTarget.current() === RenderTarget.canvas) {\n      if (props.playOnCanvas && props.play) {\n        rive.play();\n      } else {\n        rive.pause();\n      }\n    }\n  }, [rive, props.playOnCanvas, props.play]);\n  useEffect(() => {\n    if (rive) {\n      const layout = new Rive.Layout({\n        fit: props.fit ?? \"contain\",\n        alignment: props.alignment ?? \"center\",\n      });\n      rive.layout = layout;\n    }\n  }, [props.fit, props.alignment]);\n  return React.createElement(RiveComponent, {});\n}\nControls.defaultProps = { play: true, playOnCanvas: true };\nexport const propertyControls = {\n  play: {\n    title: \"Playback\",\n    type: ControlType.Boolean,\n    defaultValue: true,\n    enabledTitle: \"Play\",\n    disabledTitle: \"Pause\",\n  },\n  playOnCanvas: {\n    type: ControlType.Boolean,\n    title: \"Play on Canvas\",\n    defaultValue: true,\n    enabledTitle: \"Play\",\n    disabledTitle: \"Pause\",\n  },\n  fit: {\n    type: ControlType.Enum,\n    defaultValue: \"contain\",\n    displaySegmentedControl: false,\n    segmentedControlDirection: \"vertical\",\n    options: [\n      \"contain\",\n      \"cover\",\n      \"fill\",\n      \"fitWidth\",\n      \"fitHeight\",\n      \"none\",\n      \"scaleDown\",\n    ],\n    optionTitles: [\n      \"Contain\",\n      \"Cover\",\n      \"Fill\",\n      \"Fit Width\",\n      \"Fit Height\",\n      \"None\",\n      \"Scale Down\",\n    ],\n  },\n  alignment: {\n    type: ControlType.Enum,\n    defaultValue: \"center\",\n    displaySegmentedControl: false,\n    segmentedControlDirection: \"vertical\",\n    options: [\n      \"center\",\n      \"topLeft\",\n      \"topCenter\",\n      \"topRight\",\n      \"centerLeft\",\n      \"centerRight\",\n      \"bottomLeft\",\n      \"bottomCenter\",\n      \"bottomRight\",\n    ],\n    optionTitles: [\n      \"Center\",\n      \"Top Left\",\n      \"Top Center\",\n      \"Top Right\",\n      \"Center Left\",\n      \"Center Right\",\n      \"Bottom Left\",\n      \"Bottom Center\",\n      \"Bottom Right\",\n    ],\n  },\n};\naddPropertyControls(Controls, propertyControls);\n", "import{addPropertyControls as r}from\"framer\";import a,{componentName as p,propertyControls as m}from\"https://rive.app/api/s/1rU01LsDa0KaEAb1y5LfNQ/framer/\";/**\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export default a;a.displayName=p,r(a,m);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"RiveComponent\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Rive_discussionboard.map", "import React, { useEffect } from \"react\";\nimport { addPropertyControls, ControlType, RenderTarget } from \"framer\";\nimport Rive, { useRive, useStateMachineInput } from \"@rive-app/react-canvas\";\nexport const componentName = \"single_choice - State Machine 1\";\nexport default function Controls(props) {\n  const layout = new Rive.Layout({\n    fit: props.fit ?? \"contain\",\n    alignment: props.alignment ?? \"center\",\n  });\n  const params = {\n    src: \"https://public.rive.app/hosted/179949/107895/NREEcJIQ3kuMkqR1uWLDIg.riv\",\n    artboard: \"single_choice\",\n    stateMachines: \"State Machine 1\",\n    autoplay: true && props.play,\n    automaticallyHandleEvents: true,\n    layout,\n  };\n  const { RiveComponent, rive } = useRive(params);\n  useEffect(() => {\n    if (rive) {\n      if (RenderTarget.current() === RenderTarget.canvas) {\n        if (props.playOnCanvas && props.play) {\n          rive.play();\n        } else {\n          rive.pause();\n        }\n      } else {\n        if (props.play) {\n          rive.play();\n        } else {\n          rive.pause();\n        }\n      }\n    }\n  }, [props.play]);\n  useEffect(() => {\n    if (rive && RenderTarget.current() === RenderTarget.canvas) {\n      if (props.playOnCanvas && props.play) {\n        rive.play();\n      } else {\n        rive.pause();\n      }\n    }\n  }, [rive, props.playOnCanvas, props.play]);\n  useEffect(() => {\n    if (rive) {\n      const layout = new Rive.Layout({\n        fit: props.fit ?? \"contain\",\n        alignment: props.alignment ?? \"center\",\n      });\n      rive.layout = layout;\n    }\n  }, [props.fit, props.alignment]);\n  return React.createElement(RiveComponent, {});\n}\nControls.defaultProps = { play: true, playOnCanvas: true };\nexport const propertyControls = {\n  play: {\n    title: \"Playback\",\n    type: ControlType.Boolean,\n    defaultValue: true,\n    enabledTitle: \"Play\",\n    disabledTitle: \"Pause\",\n  },\n  playOnCanvas: {\n    type: ControlType.Boolean,\n    title: \"Play on Canvas\",\n    defaultValue: true,\n    enabledTitle: \"Play\",\n    disabledTitle: \"Pause\",\n  },\n  fit: {\n    type: ControlType.Enum,\n    defaultValue: \"contain\",\n    displaySegmentedControl: false,\n    segmentedControlDirection: \"vertical\",\n    options: [\n      \"contain\",\n      \"cover\",\n      \"fill\",\n      \"fitWidth\",\n      \"fitHeight\",\n      \"none\",\n      \"scaleDown\",\n    ],\n    optionTitles: [\n      \"Contain\",\n      \"Cover\",\n      \"Fill\",\n      \"Fit Width\",\n      \"Fit Height\",\n      \"None\",\n      \"Scale Down\",\n    ],\n  },\n  alignment: {\n    type: ControlType.Enum,\n    defaultValue: \"center\",\n    displaySegmentedControl: false,\n    segmentedControlDirection: \"vertical\",\n    options: [\n      \"center\",\n      \"topLeft\",\n      \"topCenter\",\n      \"topRight\",\n      \"centerLeft\",\n      \"centerRight\",\n      \"bottomLeft\",\n      \"bottomCenter\",\n      \"bottomRight\",\n    ],\n    optionTitles: [\n      \"Center\",\n      \"Top Left\",\n      \"Top Center\",\n      \"Top Right\",\n      \"Center Left\",\n      \"Center Right\",\n      \"Bottom Left\",\n      \"Bottom Center\",\n      \"Bottom Right\",\n    ],\n  },\n};\naddPropertyControls(Controls, propertyControls);\n", "import{addPropertyControls as r}from\"framer\";import p,{componentName as a,propertyControls as m}from\"https://rive.app/api/s/NREEcJIQ3kuMkqR1uWLDIg/framer/\";/**\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export default p;p.displayName=a,r(p,m);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"RiveComponent\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Rive_drills.map", "import React, { useEffect } from \"react\";\nimport { addPropertyControls, ControlType, RenderTarget } from \"framer\";\nimport Rive, { useRive, useStateMachineInput } from \"@rive-app/react-canvas\";\nexport const componentName = \"New Artboard - State Machine 1\";\nexport default function Controls(props) {\n  const layout = new Rive.Layout({\n    fit: props.fit ?? \"contain\",\n    alignment: props.alignment ?? \"center\",\n  });\n  const params = {\n    src: \"https://public.rive.app/hosted/179949/107896/cUChEWmvk0_rJXmlYjUFmA.riv\",\n    artboard: \"New Artboard\",\n    stateMachines: \"State Machine 1\",\n    autoplay: true && props.play,\n    automaticallyHandleEvents: true,\n    layout,\n  };\n  const { RiveComponent, rive } = useRive(params);\n  useEffect(() => {\n    if (rive) {\n      if (RenderTarget.current() === RenderTarget.canvas) {\n        if (props.playOnCanvas && props.play) {\n          rive.play();\n        } else {\n          rive.pause();\n        }\n      } else {\n        if (props.play) {\n          rive.play();\n        } else {\n          rive.pause();\n        }\n      }\n    }\n  }, [props.play]);\n  useEffect(() => {\n    if (rive && RenderTarget.current() === RenderTarget.canvas) {\n      if (props.playOnCanvas && props.play) {\n        rive.play();\n      } else {\n        rive.pause();\n      }\n    }\n  }, [rive, props.playOnCanvas, props.play]);\n  useEffect(() => {\n    if (rive) {\n      const layout = new Rive.Layout({\n        fit: props.fit ?? \"contain\",\n        alignment: props.alignment ?? \"center\",\n      });\n      rive.layout = layout;\n    }\n  }, [props.fit, props.alignment]);\n  return React.createElement(RiveComponent, {});\n}\nControls.defaultProps = { play: true, playOnCanvas: true };\nexport const propertyControls = {\n  play: {\n    title: \"Playback\",\n    type: ControlType.Boolean,\n    defaultValue: true,\n    enabledTitle: \"Play\",\n    disabledTitle: \"Pause\",\n  },\n  playOnCanvas: {\n    type: ControlType.Boolean,\n    title: \"Play on Canvas\",\n    defaultValue: true,\n    enabledTitle: \"Play\",\n    disabledTitle: \"Pause\",\n  },\n  fit: {\n    type: ControlType.Enum,\n    defaultValue: \"contain\",\n    displaySegmentedControl: false,\n    segmentedControlDirection: \"vertical\",\n    options: [\n      \"contain\",\n      \"cover\",\n      \"fill\",\n      \"fitWidth\",\n      \"fitHeight\",\n      \"none\",\n      \"scaleDown\",\n    ],\n    optionTitles: [\n      \"Contain\",\n      \"Cover\",\n      \"Fill\",\n      \"Fit Width\",\n      \"Fit Height\",\n      \"None\",\n      \"Scale Down\",\n    ],\n  },\n  alignment: {\n    type: ControlType.Enum,\n    defaultValue: \"center\",\n    displaySegmentedControl: false,\n    segmentedControlDirection: \"vertical\",\n    options: [\n      \"center\",\n      \"topLeft\",\n      \"topCenter\",\n      \"topRight\",\n      \"centerLeft\",\n      \"centerRight\",\n      \"bottomLeft\",\n      \"bottomCenter\",\n      \"bottomRight\",\n    ],\n    optionTitles: [\n      \"Center\",\n      \"Top Left\",\n      \"Top Center\",\n      \"Top Right\",\n      \"Center Left\",\n      \"Center Right\",\n      \"Bottom Left\",\n      \"Bottom Center\",\n      \"Bottom Right\",\n    ],\n  },\n};\naddPropertyControls(Controls, propertyControls);\n", "import{addPropertyControls as r}from\"framer\";import m,{componentName as p,propertyControls as a}from\"https://rive.app/api/s/cUChEWmvk0_rJXmlYjUFmA/framer/\";/**\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export default m;m.displayName=p,r(m,a);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"RiveComponent\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Rive_exam.map", "import React, { useEffect } from \"react\";\nimport { addPropertyControls, ControlType, RenderTarget } from \"framer\";\nimport Rive, { useRive, useStateMachineInput } from \"@rive-app/react-canvas\";\nexport const componentName = \"journal - State Machine 1\";\nexport default function Controls(props) {\n  const layout = new Rive.Layout({\n    fit: props.fit ?? \"contain\",\n    alignment: props.alignment ?? \"center\",\n  });\n  const params = {\n    src: \"https://public.rive.app/hosted/179949/107897/OEOgcMMaY0q7x-VFCeaFTw.riv\",\n    artboard: \"journal\",\n    stateMachines: \"State Machine 1\",\n    autoplay: true && props.play,\n    automaticallyHandleEvents: true,\n    layout,\n  };\n  const { RiveComponent, rive } = useRive(params);\n  useEffect(() => {\n    if (rive) {\n      if (RenderTarget.current() === RenderTarget.canvas) {\n        if (props.playOnCanvas && props.play) {\n          rive.play();\n        } else {\n          rive.pause();\n        }\n      } else {\n        if (props.play) {\n          rive.play();\n        } else {\n          rive.pause();\n        }\n      }\n    }\n  }, [props.play]);\n  useEffect(() => {\n    if (rive && RenderTarget.current() === RenderTarget.canvas) {\n      if (props.playOnCanvas && props.play) {\n        rive.play();\n      } else {\n        rive.pause();\n      }\n    }\n  }, [rive, props.playOnCanvas, props.play]);\n  useEffect(() => {\n    if (rive) {\n      const layout = new Rive.Layout({\n        fit: props.fit ?? \"contain\",\n        alignment: props.alignment ?? \"center\",\n      });\n      rive.layout = layout;\n    }\n  }, [props.fit, props.alignment]);\n  return React.createElement(RiveComponent, {});\n}\nControls.defaultProps = { play: true, playOnCanvas: true };\nexport const propertyControls = {\n  play: {\n    title: \"Playback\",\n    type: ControlType.Boolean,\n    defaultValue: true,\n    enabledTitle: \"Play\",\n    disabledTitle: \"Pause\",\n  },\n  playOnCanvas: {\n    type: ControlType.Boolean,\n    title: \"Play on Canvas\",\n    defaultValue: true,\n    enabledTitle: \"Play\",\n    disabledTitle: \"Pause\",\n  },\n  fit: {\n    type: ControlType.Enum,\n    defaultValue: \"contain\",\n    displaySegmentedControl: false,\n    segmentedControlDirection: \"vertical\",\n    options: [\n      \"contain\",\n      \"cover\",\n      \"fill\",\n      \"fitWidth\",\n      \"fitHeight\",\n      \"none\",\n      \"scaleDown\",\n    ],\n    optionTitles: [\n      \"Contain\",\n      \"Cover\",\n      \"Fill\",\n      \"Fit Width\",\n      \"Fit Height\",\n      \"None\",\n      \"Scale Down\",\n    ],\n  },\n  alignment: {\n    type: ControlType.Enum,\n    defaultValue: \"center\",\n    displaySegmentedControl: false,\n    segmentedControlDirection: \"vertical\",\n    options: [\n      \"center\",\n      \"topLeft\",\n      \"topCenter\",\n      \"topRight\",\n      \"centerLeft\",\n      \"centerRight\",\n      \"bottomLeft\",\n      \"bottomCenter\",\n      \"bottomRight\",\n    ],\n    optionTitles: [\n      \"Center\",\n      \"Top Left\",\n      \"Top Center\",\n      \"Top Right\",\n      \"Center Left\",\n      \"Center Right\",\n      \"Bottom Left\",\n      \"Bottom Center\",\n      \"Bottom Right\",\n    ],\n  },\n};\naddPropertyControls(Controls, propertyControls);\n", "import{addPropertyControls as r}from\"framer\";import a,{componentName as p,propertyControls as e}from\"https://rive.app/api/s/OEOgcMMaY0q7x-VFCeaFTw/framer/\";/**\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export default a;a.displayName=p,r(a,e);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"RiveComponent\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Rive_journal.map", "import React, { useEffect } from \"react\";\nimport { addPropertyControls, ControlType, RenderTarget } from \"framer\";\nimport Rive, { useRive, useStateMachineInput } from \"@rive-app/react-canvas\";\nexport const componentName = \"New Artboard - State Machine 1\";\nexport default function Controls(props) {\n  const layout = new Rive.Layout({\n    fit: props.fit ?? \"contain\",\n    alignment: props.alignment ?? \"center\",\n  });\n  const params = {\n    src: \"https://public.rive.app/hosted/179949/107646/lTUgnNsWtk2qPMYWMAZOjg.riv\",\n    artboard: \"New Artboard\",\n    stateMachines: \"State Machine 1\",\n    autoplay: true && props.play,\n    automaticallyHandleEvents: true,\n    layout,\n  };\n  const { RiveComponent, rive } = useRive(params);\n  useEffect(() => {\n    if (rive) {\n      if (RenderTarget.current() === RenderTarget.canvas) {\n        if (props.playOnCanvas && props.play) {\n          rive.play();\n        } else {\n          rive.pause();\n        }\n      } else {\n        if (props.play) {\n          rive.play();\n        } else {\n          rive.pause();\n        }\n      }\n    }\n  }, [props.play]);\n  useEffect(() => {\n    if (rive && RenderTarget.current() === RenderTarget.canvas) {\n      if (props.playOnCanvas && props.play) {\n        rive.play();\n      } else {\n        rive.pause();\n      }\n    }\n  }, [rive, props.playOnCanvas, props.play]);\n  useEffect(() => {\n    if (rive) {\n      const layout = new Rive.Layout({\n        fit: props.fit ?? \"contain\",\n        alignment: props.alignment ?? \"center\",\n      });\n      rive.layout = layout;\n    }\n  }, [props.fit, props.alignment]);\n  return React.createElement(RiveComponent, {});\n}\nControls.defaultProps = { play: true, playOnCanvas: true };\nexport const propertyControls = {\n  play: {\n    title: \"Playback\",\n    type: ControlType.Boolean,\n    defaultValue: true,\n    enabledTitle: \"Play\",\n    disabledTitle: \"Pause\",\n  },\n  playOnCanvas: {\n    type: ControlType.Boolean,\n    title: \"Play on Canvas\",\n    defaultValue: true,\n    enabledTitle: \"Play\",\n    disabledTitle: \"Pause\",\n  },\n  fit: {\n    type: ControlType.Enum,\n    defaultValue: \"contain\",\n    displaySegmentedControl: false,\n    segmentedControlDirection: \"vertical\",\n    options: [\n      \"contain\",\n      \"cover\",\n      \"fill\",\n      \"fitWidth\",\n      \"fitHeight\",\n      \"none\",\n      \"scaleDown\",\n    ],\n    optionTitles: [\n      \"Contain\",\n      \"Cover\",\n      \"Fill\",\n      \"Fit Width\",\n      \"Fit Height\",\n      \"None\",\n      \"Scale Down\",\n    ],\n  },\n  alignment: {\n    type: ControlType.Enum,\n    defaultValue: \"center\",\n    displaySegmentedControl: false,\n    segmentedControlDirection: \"vertical\",\n    options: [\n      \"center\",\n      \"topLeft\",\n      \"topCenter\",\n      \"topRight\",\n      \"centerLeft\",\n      \"centerRight\",\n      \"bottomLeft\",\n      \"bottomCenter\",\n      \"bottomRight\",\n    ],\n    optionTitles: [\n      \"Center\",\n      \"Top Left\",\n      \"Top Center\",\n      \"Top Right\",\n      \"Center Left\",\n      \"Center Right\",\n      \"Bottom Left\",\n      \"Bottom Center\",\n      \"Bottom Right\",\n    ],\n  },\n};\naddPropertyControls(Controls, propertyControls);\n", "import{addPropertyControls as r}from\"framer\";import p,{componentName as a,propertyControls as m}from\"https://rive.app/api/s/lTUgnNsWtk2qPMYWMAZOjg/framer/\";/**\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export default p;p.displayName=a,r(p,m);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"RiveComponent\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Rive_Quiz.map", "import React, { useEffect } from \"react\";\nimport { addPropertyControls, ControlType, RenderTarget } from \"framer\";\nimport Rive, { useRive, useStateMachineInput } from \"@rive-app/react-canvas\";\nexport const componentName = \"New Artboard - State Machine 1\";\nexport default function Controls(props) {\n  const layout = new Rive.Layout({\n    fit: props.fit ?? \"contain\",\n    alignment: props.alignment ?? \"center\",\n  });\n  const params = {\n    src: \"https://public.rive.app/hosted/179949/107944/5kUFPUhvq0a4U2NOO8jCJw.riv\",\n    artboard: \"New Artboard\",\n    stateMachines: \"State Machine 1\",\n    autoplay: true && props.play,\n    automaticallyHandleEvents: true,\n    layout,\n  };\n  const { RiveComponent, rive } = useRive(params);\n  useEffect(() => {\n    if (rive) {\n      if (RenderTarget.current() === RenderTarget.canvas) {\n        if (props.playOnCanvas && props.play) {\n          rive.play();\n        } else {\n          rive.pause();\n        }\n      } else {\n        if (props.play) {\n          rive.play();\n        } else {\n          rive.pause();\n        }\n      }\n    }\n  }, [props.play]);\n  useEffect(() => {\n    if (rive && RenderTarget.current() === RenderTarget.canvas) {\n      if (props.playOnCanvas && props.play) {\n        rive.play();\n      } else {\n        rive.pause();\n      }\n    }\n  }, [rive, props.playOnCanvas, props.play]);\n  useEffect(() => {\n    if (rive) {\n      const layout = new Rive.Layout({\n        fit: props.fit ?? \"contain\",\n        alignment: props.alignment ?? \"center\",\n      });\n      rive.layout = layout;\n    }\n  }, [props.fit, props.alignment]);\n  return React.createElement(RiveComponent, {});\n}\nControls.defaultProps = { play: true, playOnCanvas: true };\nexport const propertyControls = {\n  play: {\n    title: \"Playback\",\n    type: ControlType.Boolean,\n    defaultValue: true,\n    enabledTitle: \"Play\",\n    disabledTitle: \"Pause\",\n  },\n  playOnCanvas: {\n    type: ControlType.Boolean,\n    title: \"Play on Canvas\",\n    defaultValue: true,\n    enabledTitle: \"Play\",\n    disabledTitle: \"Pause\",\n  },\n  fit: {\n    type: ControlType.Enum,\n    defaultValue: \"contain\",\n    displaySegmentedControl: false,\n    segmentedControlDirection: \"vertical\",\n    options: [\n      \"contain\",\n      \"cover\",\n      \"fill\",\n      \"fitWidth\",\n      \"fitHeight\",\n      \"none\",\n      \"scaleDown\",\n    ],\n    optionTitles: [\n      \"Contain\",\n      \"Cover\",\n      \"Fill\",\n      \"Fit Width\",\n      \"Fit Height\",\n      \"None\",\n      \"Scale Down\",\n    ],\n  },\n  alignment: {\n    type: ControlType.Enum,\n    defaultValue: \"center\",\n    displaySegmentedControl: false,\n    segmentedControlDirection: \"vertical\",\n    options: [\n      \"center\",\n      \"topLeft\",\n      \"topCenter\",\n      \"topRight\",\n      \"centerLeft\",\n      \"centerRight\",\n      \"bottomLeft\",\n      \"bottomCenter\",\n      \"bottomRight\",\n    ],\n    optionTitles: [\n      \"Center\",\n      \"Top Left\",\n      \"Top Center\",\n      \"Top Right\",\n      \"Center Left\",\n      \"Center Right\",\n      \"Bottom Left\",\n      \"Bottom Center\",\n      \"Bottom Right\",\n    ],\n  },\n};\naddPropertyControls(Controls, propertyControls);\n", "import{addPropertyControls as r}from\"framer\";import a,{componentName as p,propertyControls as m}from\"https://rive.app/api/s/5kUFPUhvq0a4U2NOO8jCJw/framer/\";/**\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export default a;a.displayName=p,r(a,m);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"RiveComponent\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Rive_richtext.map", "// Generated by Framer (85a580f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,useActiveVariantCallback,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/qXQVWG1AZxpdrbBmhE1U/Video.js\";import NewArtboardTimeline1 from\"https://framerusercontent.com/modules/992ZpQqnRoy0uw4foSsD/5p3aPljrDkA2UJCO2ZD4/Rive_aimlab.js\";import NewArtboardStateMachine13 from\"https://framerusercontent.com/modules/kVeRaNn22fLlxOFmhoh0/YNlVwhD5fmmj8eKdL1Jr/Rive_assignment.js\";import Single_choiceStateMachine11 from\"https://framerusercontent.com/modules/SQwmo5Y4QGfR7C9GU8NR/cllklLseBU1MGJz1uMqL/Rive_discussionboard.js\";import Single_choiceStateMachine1 from\"https://framerusercontent.com/modules/7DYoTCNVXq9gn3nBYRO3/KXRMKTDs89DIA47lGZEm/Rive_drills.js\";import NewArtboardStateMachine1 from\"https://framerusercontent.com/modules/CIh3SsFlIWO3jhL7JOM6/0Pd8XTdnLbGQzqE4MB6m/Rive_exam.js\";import JournalStateMachine1 from\"https://framerusercontent.com/modules/1XLAJ0IT8liO07ff96aK/SLj0FcZz64n7oa3jok5c/Rive_journal.js\";import NewArtboardStateMachine11 from\"https://framerusercontent.com/modules/8AYCf6MvxPjwlVO4dR0d/jLvuTRCL0gsXJQVxJF1g/Rive_Quiz.js\";import NewArtboardStateMachine12 from\"https://framerusercontent.com/modules/qgzufbLrjZwD6xwHzpbv/jNSlvx8EvCm1mXWgDyP2/Rive_richtext.js\";import FeatureShowcaseButton from\"https://framerusercontent.com/modules/4MQCMpuUQJ0nwRiJgdpC/rtQxPmIBrMRCZMz7A7qS/HKW0yXV4J.js\";const FeatureShowcaseButtonFonts=getFonts(FeatureShowcaseButton);const Single_choiceStateMachine1Fonts=getFonts(Single_choiceStateMachine1);const JournalStateMachine1Fonts=getFonts(JournalStateMachine1);const NewArtboardStateMachine1Fonts=getFonts(NewArtboardStateMachine1);const NewArtboardStateMachine11Fonts=getFonts(NewArtboardStateMachine11);const NewArtboardTimeline1Fonts=getFonts(NewArtboardTimeline1);const VideoFonts=getFonts(Video);const NewArtboardStateMachine12Fonts=getFonts(NewArtboardStateMachine12);const NewArtboardStateMachine13Fonts=getFonts(NewArtboardStateMachine13);const Single_choiceStateMachine11Fonts=getFonts(Single_choiceStateMachine11);const cycleOrder=[\"iN1UopMvj\",\"ILJOPiPrN\",\"e9CudXmOK\",\"P_YmW5F1Y\",\"WhQ3JLYwm\",\"Zr0EUW7KQ\",\"dx5LWZ5zf\",\"iNKDHTPSg\",\"ZXTu6UEA5\"];const serializationHash=\"framer-LM8fb\";const variantClassNames={dx5LWZ5zf:\"framer-v-o0yd1k\",e9CudXmOK:\"framer-v-10ql6ww\",ILJOPiPrN:\"framer-v-cyaup4\",iN1UopMvj:\"framer-v-6cbeuv\",iNKDHTPSg:\"framer-v-17umduv\",P_YmW5F1Y:\"framer-v-16gnhwm\",WhQ3JLYwm:\"framer-v-1lekqgr\",Zr0EUW7KQ:\"framer-v-mdn9in\",ZXTu6UEA5:\"framer-v-1dgnpt9\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const humanReadableVariantMap={\"Variant 1\":\"iN1UopMvj\",\"Variant 2\":\"ILJOPiPrN\",\"Variant 3\":\"e9CudXmOK\",\"Variant 4\":\"P_YmW5F1Y\",\"Variant 5\":\"WhQ3JLYwm\",\"Variant 6\":\"Zr0EUW7KQ\",\"Variant 7\":\"dx5LWZ5zf\",\"Variant 8\":\"iNKDHTPSg\",\"Variant 9\":\"ZXTu6UEA5\"};const getProps=({bigScreen,height,id,tap,tap2,tap3,tap4,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,KaZP2RbmZ:(_ref=bigScreen!==null&&bigScreen!==void 0?bigScreen:props.KaZP2RbmZ)!==null&&_ref!==void 0?_ref:true,m2iUxhGM5:tap3!==null&&tap3!==void 0?tap3:props.m2iUxhGM5,MUAw6kW4Q:tap2!==null&&tap2!==void 0?tap2:props.MUAw6kW4Q,variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"iN1UopMvj\",vsjMOLbsb:tap!==null&&tap!==void 0?tap:props.vsjMOLbsb,YSgMCct97:tap4!==null&&tap4!==void 0?tap4:props.YSgMCct97};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,vsjMOLbsb,MUAw6kW4Q,m2iUxhGM5,YSgMCct97,KaZP2RbmZ,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"iN1UopMvj\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const z1_vIMX44qys2dv=activeVariantCallback(async(...args)=>{if(vsjMOLbsb){const res=await vsjMOLbsb(...args);if(res===false)return false;}setVariant(\"iN1UopMvj\");});const z1_vIMX44og66fi=activeVariantCallback(async(...args)=>{if(MUAw6kW4Q){const res=await MUAw6kW4Q(...args);if(res===false)return false;}setVariant(\"ILJOPiPrN\");});const z1_vIMX44dumxmh=activeVariantCallback(async(...args)=>{if(m2iUxhGM5){const res=await m2iUxhGM5(...args);if(res===false)return false;}setVariant(\"e9CudXmOK\");});const z1_vIMX442wyfip=activeVariantCallback(async(...args)=>{if(YSgMCct97){const res=await YSgMCct97(...args);if(res===false)return false;}setVariant(\"P_YmW5F1Y\");});const z1_vIMX445r1hpp=activeVariantCallback(async(...args)=>{if(YSgMCct97){const res=await YSgMCct97(...args);if(res===false)return false;}setVariant(\"WhQ3JLYwm\");});const z1_vIMX44hei2z5=activeVariantCallback(async(...args)=>{if(YSgMCct97){const res=await YSgMCct97(...args);if(res===false)return false;}setVariant(\"Zr0EUW7KQ\");});const z1_vIMX44mv9bri=activeVariantCallback(async(...args)=>{if(YSgMCct97){const res=await YSgMCct97(...args);if(res===false)return false;}setVariant(\"dx5LWZ5zf\");});const z1_vIMX441dp1xbb=activeVariantCallback(async(...args)=>{if(YSgMCct97){const res=await YSgMCct97(...args);if(res===false)return false;}setVariant(\"iNKDHTPSg\");});const z1_vIMX441l7w0kd=activeVariantCallback(async(...args)=>{if(YSgMCct97){const res=await YSgMCct97(...args);if(res===false)return false;}setVariant(\"ZXTu6UEA5\");});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-LM8fb\",...sharedStyleClassNames,classNames),style:{display:\"contents\"},children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(\"framer-6cbeuv\",className),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"iN1UopMvj\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({dx5LWZ5zf:{\"data-framer-name\":\"Variant 7\"},e9CudXmOK:{\"data-framer-name\":\"Variant 3\"},ILJOPiPrN:{\"data-framer-name\":\"Variant 2\"},iNKDHTPSg:{\"data-framer-name\":\"Variant 8\"},P_YmW5F1Y:{\"data-framer-name\":\"Variant 4\"},WhQ3JLYwm:{\"data-framer-name\":\"Variant 5\"},Zr0EUW7KQ:{\"data-framer-name\":\"Variant 6\"},ZXTu6UEA5:{\"data-framer-name\":\"Variant 9\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1w0jy70\",\"data-framer-name\":\"left\",layoutDependency:layoutDependency,layoutId:\"qF9XWEcQA\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-7wtosu-container\",layoutDependency:layoutDependency,layoutId:\"jZy6cZcxE-container\",children:/*#__PURE__*/_jsx(FeatureShowcaseButton,{height:\"100%\",hvM02ic1w:\"Create a versatile document with text, images, videos, and interactive elements like single-choice answers, fill-in-the-gaps, and alternative connections.\\n\",iC6libjx5:\"TextFields\",id:\"jZy6cZcxE\",layoutId:\"jZy6cZcxE\",style:{width:\"100%\"},variant:\"Px87_3gwR\",width:\"100%\",YIpA2J7YT:\"Rich text with interactive elements\",z1_vIMX44:z1_vIMX44qys2dv,...addPropertyOverrides({dx5LWZ5zf:{variant:\"kyTUIvrLf\"},e9CudXmOK:{variant:\"kyTUIvrLf\"},ILJOPiPrN:{variant:\"kyTUIvrLf\"},iNKDHTPSg:{variant:\"kyTUIvrLf\"},P_YmW5F1Y:{variant:\"kyTUIvrLf\"},WhQ3JLYwm:{variant:\"kyTUIvrLf\"},Zr0EUW7KQ:{variant:\"kyTUIvrLf\"},ZXTu6UEA5:{variant:\"kyTUIvrLf\"}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vb6s7k-container\",layoutDependency:layoutDependency,layoutId:\"zN2BC8k3s-container\",children:/*#__PURE__*/_jsx(FeatureShowcaseButton,{height:\"100%\",hvM02ic1w:\"Create interactive Aim Lab drills to help your students improve their in-game skills.\",iC6libjx5:\"Adjust\",id:\"zN2BC8k3s\",layoutId:\"zN2BC8k3s\",style:{width:\"100%\"},variant:\"kyTUIvrLf\",width:\"100%\",YIpA2J7YT:\"Aim Lab drills\",z1_vIMX44:z1_vIMX44og66fi,...addPropertyOverrides({ILJOPiPrN:{variant:\"Px87_3gwR\"}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-198mhmz-container\",layoutDependency:layoutDependency,layoutId:\"K0tWGd0l_-container\",children:/*#__PURE__*/_jsx(FeatureShowcaseButton,{height:\"100%\",hvM02ic1w:\"Provide clear instructions or questions for students to complete.\",iC6libjx5:\"Assignment\",id:\"K0tWGd0l_\",layoutId:\"K0tWGd0l_\",style:{width:\"100%\"},variant:\"kyTUIvrLf\",width:\"100%\",YIpA2J7YT:\"Assignment\",z1_vIMX44:z1_vIMX44dumxmh,...addPropertyOverrides({e9CudXmOK:{variant:\"Px87_3gwR\"}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10yqtgd-container\",layoutDependency:layoutDependency,layoutId:\"lh35pE38L-container\",children:/*#__PURE__*/_jsx(FeatureShowcaseButton,{height:\"100%\",hvM02ic1w:\"Enable students to engage in discussions on various topics.\",iC6libjx5:\"Chat\",id:\"lh35pE38L\",layoutId:\"lh35pE38L\",style:{width:\"100%\"},variant:\"kyTUIvrLf\",width:\"100%\",YIpA2J7YT:\"Discussion board\",z1_vIMX44:z1_vIMX442wyfip,...addPropertyOverrides({P_YmW5F1Y:{variant:\"Px87_3gwR\"}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1q4vv4o-container\",layoutDependency:layoutDependency,layoutId:\"Q5BTt6gMz-container\",children:/*#__PURE__*/_jsx(FeatureShowcaseButton,{height:\"100%\",hvM02ic1w:\"Instruct your students to follow specific guidelines and complete assigned tasks.\",iC6libjx5:\"BarChart\",id:\"Q5BTt6gMz\",layoutId:\"Q5BTt6gMz\",style:{width:\"100%\"},variant:\"kyTUIvrLf\",width:\"100%\",YIpA2J7YT:\"Drills\",z1_vIMX44:z1_vIMX445r1hpp,...addPropertyOverrides({WhQ3JLYwm:{variant:\"Px87_3gwR\"}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dxd6qj-container\",layoutDependency:layoutDependency,layoutId:\"nT4ItWCcF-container\",children:/*#__PURE__*/_jsx(FeatureShowcaseButton,{height:\"100%\",hvM02ic1w:\"Prompt students to collect and reflect on their thoughts and experiences.\",iC6libjx5:\"ContentPaste\",id:\"nT4ItWCcF\",layoutId:\"nT4ItWCcF\",style:{width:\"100%\"},variant:\"kyTUIvrLf\",width:\"100%\",YIpA2J7YT:\"Journal\",z1_vIMX44:z1_vIMX44hei2z5,...addPropertyOverrides({Zr0EUW7KQ:{variant:\"Px87_3gwR\"}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-mkqicz-container\",layoutDependency:layoutDependency,layoutId:\"eV3yGxTa0-container\",children:/*#__PURE__*/_jsx(FeatureShowcaseButton,{height:\"100%\",hvM02ic1w:\"Use this to test your students' knowledge and evaluate their performance.\",iC6libjx5:\"Spellcheck\",id:\"eV3yGxTa0\",layoutId:\"eV3yGxTa0\",style:{width:\"100%\"},variant:\"kyTUIvrLf\",width:\"100%\",YIpA2J7YT:\"Exam\",z1_vIMX44:z1_vIMX44mv9bri,...addPropertyOverrides({dx5LWZ5zf:{variant:\"Px87_3gwR\"}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-zsx09w-container\",layoutDependency:layoutDependency,layoutId:\"XjX9xoc6m-container\",children:/*#__PURE__*/_jsx(FeatureShowcaseButton,{height:\"100%\",hvM02ic1w:\"Quickly assess your students' knowledge with this tool.\",iC6libjx5:\"Quiz\",id:\"XjX9xoc6m\",layoutId:\"XjX9xoc6m\",style:{width:\"100%\"},variant:\"kyTUIvrLf\",width:\"100%\",YIpA2J7YT:\"Quiz\",z1_vIMX44:z1_vIMX441dp1xbb,...addPropertyOverrides({iNKDHTPSg:{variant:\"Px87_3gwR\"}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1k6j3el-container\",layoutDependency:layoutDependency,layoutId:\"P3mRAEgcS-container\",children:/*#__PURE__*/_jsx(FeatureShowcaseButton,{height:\"100%\",hvM02ic1w:\"Ask students to upload a video for review using the video review tool or upload a specific video that the students review using the video review tool.\",iC6libjx5:\"VideoLibrary\",id:\"P3mRAEgcS\",layoutId:\"P3mRAEgcS\",style:{width:\"100%\"},variant:\"kyTUIvrLf\",width:\"100%\",YIpA2J7YT:\"Record and review / Review scenario\",z1_vIMX44:z1_vIMX441l7w0kd,...addPropertyOverrides({ZXTu6UEA5:{variant:\"Px87_3gwR\"}},baseVariant,gestureVariant)})})]}),KaZP2RbmZ&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cg2xix\",\"data-framer-name\":\"feature-showcase-animation\",layoutDependency:layoutDependency,layoutId:\"UW6oa9wGe\",style:{background:'linear-gradient(180deg, var(--token-adad75d2-abf0-48c6-b4df-7f307b22b894, rgb(0, 22, 36)) /* {\"name\":\"Blue/905\"} */ 0%, var(--token-c2c86026-293e-41e2-a90c-4068f22c90f0, rgb(14, 1, 24)) /* {\"name\":\"Purple/905\"} */ 100%)',borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-bz8wg1-container\",\"data-framer-name\":\"drills\",layoutDependency:layoutDependency,layoutId:\"jLmhtLnDM-container\",name:\"drills\",style:{opacity:0},variants:{WhQ3JLYwm:{opacity:1}},children:/*#__PURE__*/_jsx(Single_choiceStateMachine1,{alignment:\"center\",fit:\"contain\",height:\"100%\",id:\"jLmhtLnDM\",layoutId:\"jLmhtLnDM\",name:\"drills\",play:true,playOnCanvas:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-dbtjgf-container\",\"data-framer-name\":\"journal\",layoutDependency:layoutDependency,layoutId:\"UhXjq9zjL-container\",name:\"journal\",style:{opacity:0},variants:{Zr0EUW7KQ:{opacity:1}},children:/*#__PURE__*/_jsx(JournalStateMachine1,{alignment:\"center\",fit:\"contain\",height:\"100%\",id:\"UhXjq9zjL\",layoutId:\"UhXjq9zjL\",name:\"journal\",play:true,playOnCanvas:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ivstf0-container\",\"data-framer-name\":\"Exam\",layoutDependency:layoutDependency,layoutId:\"VqdEAjTbU-container\",name:\"Exam\",style:{opacity:0},variants:{dx5LWZ5zf:{opacity:1}},children:/*#__PURE__*/_jsx(NewArtboardStateMachine1,{alignment:\"center\",fit:\"contain\",height:\"100%\",id:\"VqdEAjTbU\",layoutId:\"VqdEAjTbU\",name:\"Exam\",play:true,playOnCanvas:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-3bimjr-container\",\"data-framer-name\":\"quiz\",layoutDependency:layoutDependency,layoutId:\"fmbsm01dh-container\",name:\"quiz\",style:{opacity:0},variants:{iNKDHTPSg:{opacity:1}},children:/*#__PURE__*/_jsx(NewArtboardStateMachine11,{alignment:\"center\",fit:\"contain\",height:\"100%\",id:\"fmbsm01dh\",layoutId:\"fmbsm01dh\",name:\"quiz\",play:true,playOnCanvas:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-11q34yq-container\",\"data-framer-name\":\"Aimlab\",layoutDependency:layoutDependency,layoutId:\"Yw2UYS1hK-container\",name:\"Aimlab\",style:{opacity:0},variants:{ILJOPiPrN:{opacity:1}},children:/*#__PURE__*/_jsx(NewArtboardTimeline1,{alignment:\"center\",fit:\"contain\",height:\"100%\",id:\"Yw2UYS1hK\",layoutId:\"Yw2UYS1hK\",name:\"Aimlab\",play:true,playOnCanvas:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-yndupo-container\",\"data-framer-name\":\"Video reviews\",layoutDependency:layoutDependency,layoutId:\"hppOSo3oE-container\",name:\"Video reviews\",style:{opacity:0},variants:{ZXTu6UEA5:{opacity:1}},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"hppOSo3oE\",isMixedBorderRadius:false,layoutId:\"hppOSo3oE\",loop:true,muted:true,name:\"Video reviews\",objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/aVJ7wfHKvXiGiaSgLjAZFT376xk.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-3xsvr1-container\",\"data-framer-name\":\"Rich text\",layoutDependency:layoutDependency,layoutId:\"FIX1yBG_u-container\",name:\"Rich text\",style:{opacity:1},variants:{dx5LWZ5zf:{opacity:0},e9CudXmOK:{opacity:0},ILJOPiPrN:{opacity:0},iNKDHTPSg:{opacity:0},P_YmW5F1Y:{opacity:0},WhQ3JLYwm:{opacity:0},Zr0EUW7KQ:{opacity:0},ZXTu6UEA5:{opacity:0}},children:/*#__PURE__*/_jsx(NewArtboardStateMachine12,{alignment:\"center\",fit:\"contain\",height:\"100%\",id:\"FIX1yBG_u\",layoutId:\"FIX1yBG_u\",name:\"Rich text\",play:true,playOnCanvas:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nw2ux7-container\",\"data-framer-name\":\"Assignment\",layoutDependency:layoutDependency,layoutId:\"qBAqs0HuT-container\",name:\"Assignment\",style:{opacity:0},variants:{e9CudXmOK:{opacity:1}},children:/*#__PURE__*/_jsx(NewArtboardStateMachine13,{alignment:\"center\",fit:\"contain\",height:\"100%\",id:\"qBAqs0HuT\",layoutId:\"qBAqs0HuT\",name:\"Assignment\",play:true,playOnCanvas:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-kpugrt-container\",\"data-framer-name\":\"discussion board\",layoutDependency:layoutDependency,layoutId:\"hULoftdDR-container\",name:\"discussion board\",style:{opacity:0},variants:{P_YmW5F1Y:{opacity:1}},children:/*#__PURE__*/_jsx(Single_choiceStateMachine11,{alignment:\"center\",fit:\"contain\",height:\"100%\",id:\"hULoftdDR\",layoutId:\"hULoftdDR\",name:\"discussion board\",play:true,playOnCanvas:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})]})]})})})});});const css=['.framer-LM8fb [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-LM8fb .framer-1vhfgyu { display: block; }\",\".framer-LM8fb .framer-6cbeuv { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: auto; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 980px; }\",\".framer-LM8fb .framer-1w0jy70 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 550px; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-LM8fb .framer-7wtosu-container, .framer-LM8fb .framer-1vb6s7k-container, .framer-LM8fb .framer-198mhmz-container, .framer-LM8fb .framer-10yqtgd-container, .framer-LM8fb .framer-1q4vv4o-container, .framer-LM8fb .framer-1dxd6qj-container, .framer-LM8fb .framer-mkqicz-container, .framer-LM8fb .framer-zsx09w-container, .framer-LM8fb .framer-1k6j3el-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-LM8fb .framer-cg2xix { aspect-ratio: 1 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 478px); overflow: hidden; position: sticky; top: 100px; width: 1px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-LM8fb .framer-bz8wg1-container, .framer-LM8fb .framer-dbtjgf-container, .framer-LM8fb .framer-ivstf0-container, .framer-LM8fb .framer-3bimjr-container, .framer-LM8fb .framer-11q34yq-container, .framer-LM8fb .framer-yndupo-container, .framer-LM8fb .framer-3xsvr1-container, .framer-LM8fb .framer-1nw2ux7-container, .framer-LM8fb .framer-kpugrt-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-LM8fb .framer-6cbeuv, .framer-LM8fb .framer-1w0jy70 { gap: 0px; } .framer-LM8fb .framer-6cbeuv > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-LM8fb .framer-6cbeuv > :first-child { margin-left: 0px; } .framer-LM8fb .framer-6cbeuv > :last-child { margin-right: 0px; } .framer-LM8fb .framer-1w0jy70 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-LM8fb .framer-1w0jy70 > :first-child { margin-top: 0px; } .framer-LM8fb .framer-1w0jy70 > :last-child { margin-bottom: 0px; } }\",\".framer-LM8fb.framer-v-o0yd1k .framer-cg2xix, .framer-LM8fb.framer-v-17umduv .framer-cg2xix, .framer-LM8fb.framer-v-1dgnpt9 .framer-cg2xix { height: var(--framer-aspect-ratio-supported, 200px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 768\n * @framerIntrinsicWidth 980\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ILJOPiPrN\":{\"layout\":[\"fixed\",\"auto\"]},\"e9CudXmOK\":{\"layout\":[\"fixed\",\"auto\"]},\"P_YmW5F1Y\":{\"layout\":[\"fixed\",\"auto\"]},\"WhQ3JLYwm\":{\"layout\":[\"fixed\",\"auto\"]},\"Zr0EUW7KQ\":{\"layout\":[\"fixed\",\"auto\"]},\"dx5LWZ5zf\":{\"layout\":[\"fixed\",\"auto\"]},\"iNKDHTPSg\":{\"layout\":[\"fixed\",\"auto\"]},\"ZXTu6UEA5\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"vsjMOLbsb\":\"tap\",\"MUAw6kW4Q\":\"tap2\",\"m2iUxhGM5\":\"tap3\",\"YSgMCct97\":\"tap4\",\"KaZP2RbmZ\":\"bigScreen\"}\n * @framerImmutableVariables true\n */const FramergTgGw6CkA=withCSS(Component,css,\"framer-LM8fb\");export default FramergTgGw6CkA;FramergTgGw6CkA.displayName=\"activities_showcase\";FramergTgGw6CkA.defaultProps={height:768,width:980};addPropertyControls(FramergTgGw6CkA,{variant:{options:[\"iN1UopMvj\",\"ILJOPiPrN\",\"e9CudXmOK\",\"P_YmW5F1Y\",\"WhQ3JLYwm\",\"Zr0EUW7KQ\",\"dx5LWZ5zf\",\"iNKDHTPSg\",\"ZXTu6UEA5\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\",\"Variant 5\",\"Variant 6\",\"Variant 7\",\"Variant 8\",\"Variant 9\"],title:\"Variant\",type:ControlType.Enum},vsjMOLbsb:{title:\"Tap\",type:ControlType.EventHandler},MUAw6kW4Q:{title:\"Tap 2\",type:ControlType.EventHandler},m2iUxhGM5:{title:\"Tap 3\",type:ControlType.EventHandler},YSgMCct97:{title:\"Tap 4\",type:ControlType.EventHandler},KaZP2RbmZ:{defaultValue:true,title:\"Big screen\",type:ControlType.Boolean}});addFonts(FramergTgGw6CkA,[...FeatureShowcaseButtonFonts,...Single_choiceStateMachine1Fonts,...JournalStateMachine1Fonts,...NewArtboardStateMachine1Fonts,...NewArtboardStateMachine11Fonts,...NewArtboardTimeline1Fonts,...VideoFonts,...NewArtboardStateMachine12Fonts,...NewArtboardStateMachine13Fonts,...Single_choiceStateMachine11Fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramergTgGw6CkA\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"768\",\"framerIntrinsicWidth\":\"980\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"vsjMOLbsb\\\":\\\"tap\\\",\\\"MUAw6kW4Q\\\":\\\"tap2\\\",\\\"m2iUxhGM5\\\":\\\"tap3\\\",\\\"YSgMCct97\\\":\\\"tap4\\\",\\\"KaZP2RbmZ\\\":\\\"bigScreen\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ILJOPiPrN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"e9CudXmOK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"P_YmW5F1Y\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WhQ3JLYwm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Zr0EUW7KQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dx5LWZ5zf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"iNKDHTPSg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZXTu6UEA5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["componentName", "Controls", "props", "layout", "d", "params", "RiveComponent", "rive", "j", "ue", "RenderTarget", "e", "propertyControls", "ControlType", "addPropertyControls", "Rive_aimlab_default", "Controls", "componentName", "addPropertyControls", "propertyControls", "componentName", "Controls", "props", "layout", "d", "params", "RiveComponent", "rive", "j", "ue", "RenderTarget", "e", "propertyControls", "ControlType", "addPropertyControls", "Rive_assignment_default", "Controls", "componentName", "addPropertyControls", "propertyControls", "componentName", "Controls", "props", "layout", "d", "params", "RiveComponent", "rive", "j", "ue", "RenderTarget", "e", "propertyControls", "ControlType", "addPropertyControls", "Rive_discussionboard_default", "Controls", "componentName", "addPropertyControls", "propertyControls", "componentName", "Controls", "props", "layout", "d", "params", "RiveComponent", "rive", "j", "ue", "RenderTarget", "e", "propertyControls", "ControlType", "addPropertyControls", "Rive_drills_default", "Controls", "componentName", "addPropertyControls", "propertyControls", "componentName", "Controls", "props", "layout", "d", "params", "RiveComponent", "rive", "j", "ue", "RenderTarget", "e", "propertyControls", "ControlType", "addPropertyControls", "Rive_exam_default", "Controls", "componentName", "addPropertyControls", "propertyControls", "componentName", "Controls", "props", "layout", "d", "params", "RiveComponent", "rive", "j", "ue", "RenderTarget", "e", "propertyControls", "ControlType", "addPropertyControls", "Rive_journal_default", "Controls", "componentName", "addPropertyControls", "propertyControls", "componentName", "Controls", "props", "layout", "d", "params", "RiveComponent", "rive", "j", "ue", "RenderTarget", "e", "propertyControls", "ControlType", "addPropertyControls", "Rive_Quiz_default", "Controls", "componentName", "addPropertyControls", "propertyControls", "componentName", "Controls", "props", "layout", "d", "params", "RiveComponent", "rive", "j", "ue", "RenderTarget", "e", "propertyControls", "ControlType", "addPropertyControls", "Rive_richtext_default", "Controls", "componentName", "addPropertyControls", "propertyControls", "FeatureShowcaseButtonFonts", "getFonts", "HKW0yXV4J_default", "Single_choiceStateMachine1Fonts", "Rive_drills_default", "JournalStateMachine1Fonts", "Rive_journal_default", "NewArtboardStateMachine1Fonts", "Rive_exam_default", "NewArtboardStateMachine11Fonts", "Rive_Quiz_default", "NewArtboardTimeline1Fonts", "Rive_aimlab_default", "VideoFonts", "Video", "NewArtboardStateMachine12Fonts", "Rive_richtext_default", "NewArtboardStateMachine13Fonts", "Rive_assignment_default", "Single_choiceStateMachine11Fonts", "Rive_discussionboard_default", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "bigScreen", "height", "id", "tap", "tap2", "tap3", "tap4", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "vsjMOLbsb", "MUAw6kW4Q", "m2iUxhGM5", "YSgMCct97", "KaZP2RbmZ", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "z1_vIMX44qys2dv", "args", "z1_vIMX44og66fi", "z1_vIMX44dumxmh", "z1_vIMX442wyfip", "z1_vIMX445r1hpp", "z1_vIMX44hei2z5", "z1_vIMX44mv9bri", "z1_vIMX441dp1xbb", "z1_vIMX441l7w0kd", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "motion", "cx", "u", "HKW0yXV4J_default", "Rive_drills_default", "Rive_journal_default", "Rive_exam_default", "Rive_Quiz_default", "Rive_aimlab_default", "Video", "Rive_richtext_default", "Rive_assignment_default", "Rive_discussionboard_default", "css", "FramergTgGw6CkA", "withCSS", "gTgGw6CkA_default", "addPropertyControls", "ControlType", "addFonts", "FeatureShowcaseButtonFonts", "Single_choiceStateMachine1Fonts", "JournalStateMachine1Fonts", "NewArtboardStateMachine1Fonts", "NewArtboardStateMachine11Fonts", "NewArtboardTimeline1Fonts", "VideoFonts", "NewArtboardStateMachine12Fonts", "NewArtboardStateMachine13Fonts", "Single_choiceStateMachine11Fonts"]
}
