@shopify/react-native-skia 2.0.7 → 2.1.1
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.
- package/android/CMakeLists.txt +20 -1
- package/cpp/api/JsiSkApi.h +3 -0
- package/cpp/api/JsiSkImageFilterFactory.h +478 -39
- package/cpp/api/JsiSkSkottie.h +590 -0
- package/cpp/api/JsiSkottieFactory.h +65 -0
- package/cpp/api/recorder/Command.h +1 -0
- package/cpp/api/recorder/Convertor.h +32 -0
- package/cpp/api/recorder/Drawings.h +23 -0
- package/cpp/api/recorder/ImageFilters.h +20 -0
- package/cpp/api/recorder/JsiRecorder.h +6 -0
- package/cpp/api/recorder/RNRecorder.h +15 -0
- package/cpp/api/third_party/SkottieUtils.cpp +333 -0
- package/cpp/api/third_party/SkottieUtils.h +172 -0
- package/cpp/skia/modules/jsonreader/SkJSONReader.cpp +980 -0
- package/cpp/skia/modules/jsonreader/SkJSONReader.h +389 -0
- package/cpp/skia/modules/skottie/include/ExternalLayer.h +56 -0
- package/cpp/skia/modules/skottie/include/Skottie.h +313 -0
- package/cpp/skia/modules/skottie/include/SkottieProperty.h +190 -0
- package/cpp/skia/modules/skottie/include/SlotManager.h +113 -0
- package/cpp/skia/modules/skottie/include/TextShaper.h +200 -0
- package/cpp/skia/modules/skottie/src/SkottieValue.h +56 -0
- package/cpp/skia/modules/skottie/src/animator/Animator.h +89 -0
- package/cpp/skia/modules/skottie/src/text/Font.h +82 -0
- package/cpp/skia/modules/skottie/src/text/TextAdapter.h +155 -0
- package/cpp/skia/modules/skottie/src/text/TextAnimator.h +121 -0
- package/cpp/skia/modules/skottie/src/text/TextValue.h +28 -0
- package/cpp/skia/modules/sksg/include/SkSGClipEffect.h +61 -0
- package/cpp/skia/modules/sksg/include/SkSGColorFilter.h +135 -0
- package/cpp/skia/modules/sksg/include/SkSGDraw.h +57 -0
- package/cpp/skia/modules/sksg/include/SkSGEffectNode.h +50 -0
- package/cpp/skia/modules/sksg/include/SkSGGeometryEffect.h +181 -0
- package/cpp/skia/modules/sksg/include/SkSGGeometryNode.h +54 -0
- package/cpp/skia/modules/sksg/include/SkSGGradient.h +108 -0
- package/cpp/skia/modules/sksg/include/SkSGGroup.h +65 -0
- package/cpp/skia/modules/sksg/include/SkSGImage.h +59 -0
- package/cpp/skia/modules/sksg/include/SkSGInvalidationController.h +46 -0
- package/cpp/skia/modules/sksg/include/SkSGMaskEffect.h +65 -0
- package/cpp/skia/modules/sksg/include/SkSGMerge.h +74 -0
- package/cpp/skia/modules/sksg/include/SkSGNode.h +128 -0
- package/cpp/skia/modules/sksg/include/SkSGOpacityEffect.h +54 -0
- package/cpp/skia/modules/sksg/include/SkSGPaint.h +112 -0
- package/cpp/skia/modules/sksg/include/SkSGPath.h +68 -0
- package/cpp/skia/modules/sksg/include/SkSGPlane.h +47 -0
- package/cpp/skia/modules/sksg/include/SkSGRect.h +122 -0
- package/cpp/skia/modules/sksg/include/SkSGRenderEffect.h +283 -0
- package/cpp/skia/modules/sksg/include/SkSGRenderNode.h +157 -0
- package/cpp/skia/modules/sksg/include/SkSGScene.h +47 -0
- package/cpp/skia/modules/sksg/include/SkSGText.h +82 -0
- package/cpp/skia/modules/sksg/include/SkSGTransform.h +127 -0
- package/cpp/skia/src/base/SkArenaAlloc.h +371 -0
- package/lib/commonjs/dom/nodes/datatypes/Gradient.d.ts +15 -15
- package/lib/commonjs/dom/types/Drawings.d.ts +8 -1
- package/lib/commonjs/dom/types/Drawings.js.map +1 -1
- package/lib/commonjs/dom/types/NodeType.d.ts +3 -1
- package/lib/commonjs/dom/types/NodeType.js +4 -0
- package/lib/commonjs/dom/types/NodeType.js.map +1 -1
- package/lib/commonjs/renderer/__tests__/e2e/AdvancedImageFilters.spec.d.ts +1 -0
- package/lib/commonjs/renderer/__tests__/e2e/Camera.spec.d.ts +21 -0
- package/lib/commonjs/renderer/__tests__/e2e/ImageFilter.spec.d.ts +1 -0
- package/lib/commonjs/renderer/__tests__/e2e/LightingImageFilters.spec.d.ts +1 -0
- package/lib/commonjs/renderer/__tests__/e2e/Skottie.spec.d.ts +1 -0
- package/lib/commonjs/renderer/__tests__/setup.d.ts +5 -0
- package/lib/commonjs/renderer/components/ImageFilter.d.ts +4 -0
- package/lib/commonjs/renderer/components/ImageFilter.js +13 -0
- package/lib/commonjs/renderer/components/ImageFilter.js.map +1 -0
- package/lib/commonjs/renderer/components/Skottie.d.ts +4 -0
- package/lib/commonjs/renderer/components/Skottie.js +13 -0
- package/lib/commonjs/renderer/components/Skottie.js.map +1 -0
- package/lib/commonjs/renderer/components/index.d.ts +2 -0
- package/lib/commonjs/renderer/components/index.js +22 -0
- package/lib/commonjs/renderer/components/index.js.map +1 -1
- package/lib/commonjs/skia/types/ImageFilter/ImageFilterFactory.d.ts +252 -15
- package/lib/commonjs/skia/types/ImageFilter/ImageFilterFactory.js.map +1 -1
- package/lib/commonjs/skia/types/Matrix4.d.ts +11 -2
- package/lib/commonjs/skia/types/Matrix4.js +42 -1
- package/lib/commonjs/skia/types/Matrix4.js.map +1 -1
- package/lib/commonjs/skia/types/Recorder.d.ts +2 -1
- package/lib/commonjs/skia/types/Recorder.js.map +1 -1
- package/lib/commonjs/skia/types/Skia.d.ts +2 -0
- package/lib/commonjs/skia/types/Skia.js.map +1 -1
- package/lib/commonjs/skia/types/Skottie.d.ts +223 -0
- package/lib/commonjs/skia/types/Skottie.js +73 -0
- package/lib/commonjs/skia/types/Skottie.js.map +1 -0
- package/lib/commonjs/skia/types/index.d.ts +1 -0
- package/lib/commonjs/skia/types/index.js +11 -0
- package/lib/commonjs/skia/types/index.js.map +1 -1
- package/lib/commonjs/skia/web/JsiSkImageFilterFactory.d.ts +29 -12
- package/lib/commonjs/skia/web/JsiSkImageFilterFactory.js +88 -19
- package/lib/commonjs/skia/web/JsiSkImageFilterFactory.js.map +1 -1
- package/lib/commonjs/skia/web/JsiSkia.js +2 -0
- package/lib/commonjs/skia/web/JsiSkia.js.map +1 -1
- package/lib/commonjs/skia/web/JsiSkottieAnimation.d.ts +59 -0
- package/lib/commonjs/skia/web/JsiSkottieAnimation.js +243 -0
- package/lib/commonjs/skia/web/JsiSkottieAnimation.js.map +1 -0
- package/lib/commonjs/skia/web/JsiSkottieFactory.d.ts +9 -0
- package/lib/commonjs/skia/web/JsiSkottieFactory.js +26 -0
- package/lib/commonjs/skia/web/JsiSkottieFactory.js.map +1 -0
- package/lib/commonjs/sksg/Elements.d.ts +3 -1
- package/lib/commonjs/sksg/Elements.js.map +1 -1
- package/lib/commonjs/sksg/Node.d.ts +1 -1
- package/lib/commonjs/sksg/Node.js +1 -1
- package/lib/commonjs/sksg/Node.js.map +1 -1
- package/lib/commonjs/sksg/Recorder/Core.d.ts +4 -2
- package/lib/commonjs/sksg/Recorder/Core.js +1 -0
- package/lib/commonjs/sksg/Recorder/Core.js.map +1 -1
- package/lib/commonjs/sksg/Recorder/Player.js +2 -0
- package/lib/commonjs/sksg/Recorder/Player.js.map +1 -1
- package/lib/commonjs/sksg/Recorder/ReanimatedRecorder.d.ts +2 -1
- package/lib/commonjs/sksg/Recorder/ReanimatedRecorder.js +4 -0
- package/lib/commonjs/sksg/Recorder/ReanimatedRecorder.js.map +1 -1
- package/lib/commonjs/sksg/Recorder/Recorder.d.ts +2 -1
- package/lib/commonjs/sksg/Recorder/Recorder.js +6 -0
- package/lib/commonjs/sksg/Recorder/Recorder.js.map +1 -1
- package/lib/commonjs/sksg/Recorder/Visitor.js +3 -0
- package/lib/commonjs/sksg/Recorder/Visitor.js.map +1 -1
- package/lib/commonjs/sksg/Recorder/commands/Drawing.d.ts +2 -2
- package/lib/commonjs/sksg/Recorder/commands/Drawing.js +11 -4
- package/lib/commonjs/sksg/Recorder/commands/Drawing.js.map +1 -1
- package/lib/commonjs/sksg/Recorder/commands/ImageFilters.js +12 -2
- package/lib/commonjs/sksg/Recorder/commands/ImageFilters.js.map +1 -1
- package/lib/module/dom/nodes/datatypes/Gradient.d.ts +15 -15
- package/lib/module/dom/types/Drawings.d.ts +8 -1
- package/lib/module/dom/types/Drawings.js.map +1 -1
- package/lib/module/dom/types/NodeType.d.ts +3 -1
- package/lib/module/dom/types/NodeType.js +4 -0
- package/lib/module/dom/types/NodeType.js.map +1 -1
- package/lib/module/renderer/__tests__/e2e/AdvancedImageFilters.spec.d.ts +1 -0
- package/lib/module/renderer/__tests__/e2e/Camera.spec.d.ts +21 -0
- package/lib/module/renderer/__tests__/e2e/ImageFilter.spec.d.ts +1 -0
- package/lib/module/renderer/__tests__/e2e/LightingImageFilters.spec.d.ts +1 -0
- package/lib/module/renderer/__tests__/e2e/Skottie.spec.d.ts +1 -0
- package/lib/module/renderer/__tests__/setup.d.ts +5 -0
- package/lib/module/renderer/components/ImageFilter.d.ts +4 -0
- package/lib/module/renderer/components/ImageFilter.js +5 -0
- package/lib/module/renderer/components/ImageFilter.js.map +1 -0
- package/lib/module/renderer/components/Skottie.d.ts +4 -0
- package/lib/module/renderer/components/Skottie.js +5 -0
- package/lib/module/renderer/components/Skottie.js.map +1 -0
- package/lib/module/renderer/components/index.d.ts +2 -0
- package/lib/module/renderer/components/index.js +2 -0
- package/lib/module/renderer/components/index.js.map +1 -1
- package/lib/module/skia/types/ImageFilter/ImageFilterFactory.d.ts +252 -15
- package/lib/module/skia/types/ImageFilter/ImageFilterFactory.js.map +1 -1
- package/lib/module/skia/types/Matrix4.d.ts +11 -2
- package/lib/module/skia/types/Matrix4.js +40 -0
- package/lib/module/skia/types/Matrix4.js.map +1 -1
- package/lib/module/skia/types/Recorder.d.ts +2 -1
- package/lib/module/skia/types/Recorder.js.map +1 -1
- package/lib/module/skia/types/Skia.d.ts +2 -0
- package/lib/module/skia/types/Skia.js.map +1 -1
- package/lib/module/skia/types/Skottie.d.ts +223 -0
- package/lib/module/skia/types/Skottie.js +74 -0
- package/lib/module/skia/types/Skottie.js.map +1 -0
- package/lib/module/skia/types/index.d.ts +1 -0
- package/lib/module/skia/types/index.js +1 -0
- package/lib/module/skia/types/index.js.map +1 -1
- package/lib/module/skia/web/JsiSkImageFilterFactory.d.ts +29 -12
- package/lib/module/skia/web/JsiSkImageFilterFactory.js +88 -19
- package/lib/module/skia/web/JsiSkImageFilterFactory.js.map +1 -1
- package/lib/module/skia/web/JsiSkia.js +2 -0
- package/lib/module/skia/web/JsiSkia.js.map +1 -1
- package/lib/module/skia/web/JsiSkottieAnimation.d.ts +59 -0
- package/lib/module/skia/web/JsiSkottieAnimation.js +236 -0
- package/lib/module/skia/web/JsiSkottieAnimation.js.map +1 -0
- package/lib/module/skia/web/JsiSkottieFactory.d.ts +9 -0
- package/lib/module/skia/web/JsiSkottieFactory.js +19 -0
- package/lib/module/skia/web/JsiSkottieFactory.js.map +1 -0
- package/lib/module/sksg/Elements.d.ts +3 -1
- package/lib/module/sksg/Elements.js.map +1 -1
- package/lib/module/sksg/Node.d.ts +1 -1
- package/lib/module/sksg/Node.js +1 -1
- package/lib/module/sksg/Node.js.map +1 -1
- package/lib/module/sksg/Recorder/Core.d.ts +4 -2
- package/lib/module/sksg/Recorder/Core.js +1 -0
- package/lib/module/sksg/Recorder/Core.js.map +1 -1
- package/lib/module/sksg/Recorder/Player.js +3 -1
- package/lib/module/sksg/Recorder/Player.js.map +1 -1
- package/lib/module/sksg/Recorder/ReanimatedRecorder.d.ts +2 -1
- package/lib/module/sksg/Recorder/ReanimatedRecorder.js +4 -0
- package/lib/module/sksg/Recorder/ReanimatedRecorder.js.map +1 -1
- package/lib/module/sksg/Recorder/Recorder.d.ts +2 -1
- package/lib/module/sksg/Recorder/Recorder.js +6 -0
- package/lib/module/sksg/Recorder/Recorder.js.map +1 -1
- package/lib/module/sksg/Recorder/Visitor.js +3 -0
- package/lib/module/sksg/Recorder/Visitor.js.map +1 -1
- package/lib/module/sksg/Recorder/commands/Drawing.d.ts +2 -2
- package/lib/module/sksg/Recorder/commands/Drawing.js +9 -2
- package/lib/module/sksg/Recorder/commands/Drawing.js.map +1 -1
- package/lib/module/sksg/Recorder/commands/ImageFilters.js +12 -2
- package/lib/module/sksg/Recorder/commands/ImageFilters.js.map +1 -1
- package/lib/typescript/lib/commonjs/renderer/components/ImageFilter.d.ts +2 -0
- package/lib/typescript/lib/commonjs/renderer/components/Skottie.d.ts +2 -0
- package/lib/typescript/lib/commonjs/skia/types/Matrix4.d.ts +1 -0
- package/lib/typescript/lib/commonjs/skia/types/Skottie.d.ts +6 -0
- package/lib/typescript/lib/commonjs/skia/web/JsiSkImageFilterFactory.d.ts +22 -5
- package/lib/typescript/lib/commonjs/skia/web/JsiSkia.d.ts +2 -0
- package/lib/typescript/lib/commonjs/skia/web/JsiSkottieAnimation.d.ts +48 -0
- package/lib/typescript/lib/commonjs/skia/web/JsiSkottieFactory.d.ts +6 -0
- package/lib/typescript/lib/commonjs/sksg/Recorder/ReanimatedRecorder.d.ts +1 -0
- package/lib/typescript/lib/commonjs/sksg/Recorder/Recorder.d.ts +1 -0
- package/lib/typescript/lib/commonjs/sksg/Recorder/commands/Drawing.d.ts +1 -1
- package/lib/typescript/lib/module/mock/index.d.ts +8 -0
- package/lib/typescript/lib/module/renderer/components/ImageFilter.d.ts +2 -0
- package/lib/typescript/lib/module/renderer/components/Skottie.d.ts +2 -0
- package/lib/typescript/lib/module/renderer/components/index.d.ts +2 -0
- package/lib/typescript/lib/module/skia/Skia.web.d.ts +1 -0
- package/lib/typescript/lib/module/skia/types/Matrix4.d.ts +1 -0
- package/lib/typescript/lib/module/skia/types/Skottie.d.ts +5 -0
- package/lib/typescript/lib/module/skia/types/index.d.ts +1 -0
- package/lib/typescript/lib/module/skia/web/JsiSkImageFilterFactory.d.ts +22 -5
- package/lib/typescript/lib/module/skia/web/JsiSkia.d.ts +2 -0
- package/lib/typescript/lib/module/skia/web/JsiSkottieAnimation.d.ts +47 -0
- package/lib/typescript/lib/module/skia/web/JsiSkottieFactory.d.ts +5 -0
- package/lib/typescript/lib/module/sksg/Recorder/ReanimatedRecorder.d.ts +1 -0
- package/lib/typescript/lib/module/sksg/Recorder/Recorder.d.ts +1 -0
- package/lib/typescript/lib/module/sksg/Recorder/commands/Drawing.d.ts +1 -1
- package/lib/typescript/src/dom/nodes/datatypes/Gradient.d.ts +15 -15
- package/lib/typescript/src/dom/types/Drawings.d.ts +8 -1
- package/lib/typescript/src/dom/types/NodeType.d.ts +3 -1
- package/lib/typescript/src/renderer/__tests__/e2e/AdvancedImageFilters.spec.d.ts +1 -0
- package/lib/typescript/src/renderer/__tests__/e2e/Camera.spec.d.ts +21 -0
- package/lib/typescript/src/renderer/__tests__/e2e/ImageFilter.spec.d.ts +1 -0
- package/lib/typescript/src/renderer/__tests__/e2e/LightingImageFilters.spec.d.ts +1 -0
- package/lib/typescript/src/renderer/__tests__/e2e/Skottie.spec.d.ts +1 -0
- package/lib/typescript/src/renderer/__tests__/setup.d.ts +5 -0
- package/lib/typescript/src/renderer/components/ImageFilter.d.ts +4 -0
- package/lib/typescript/src/renderer/components/Skottie.d.ts +4 -0
- package/lib/typescript/src/renderer/components/index.d.ts +2 -0
- package/lib/typescript/src/skia/types/ImageFilter/ImageFilterFactory.d.ts +252 -15
- package/lib/typescript/src/skia/types/Matrix4.d.ts +11 -2
- package/lib/typescript/src/skia/types/Recorder.d.ts +2 -1
- package/lib/typescript/src/skia/types/Skia.d.ts +2 -0
- package/lib/typescript/src/skia/types/Skottie.d.ts +223 -0
- package/lib/typescript/src/skia/types/index.d.ts +1 -0
- package/lib/typescript/src/skia/web/JsiSkImageFilterFactory.d.ts +29 -12
- package/lib/typescript/src/skia/web/JsiSkottieAnimation.d.ts +59 -0
- package/lib/typescript/src/skia/web/JsiSkottieFactory.d.ts +9 -0
- package/lib/typescript/src/sksg/Elements.d.ts +3 -1
- package/lib/typescript/src/sksg/Node.d.ts +1 -1
- package/lib/typescript/src/sksg/Recorder/Core.d.ts +4 -2
- package/lib/typescript/src/sksg/Recorder/ReanimatedRecorder.d.ts +2 -1
- package/lib/typescript/src/sksg/Recorder/Recorder.d.ts +2 -1
- package/lib/typescript/src/sksg/Recorder/commands/Drawing.d.ts +2 -2
- package/libs/android/arm64-v8a/libjsonreader.a +0 -0
- package/libs/android/armeabi-v7a/libjsonreader.a +0 -0
- package/libs/android/x86/libjsonreader.a +0 -0
- package/libs/android/x86_64/libjsonreader.a +0 -0
- package/libs/apple/libpathops.xcframework/Info.plist +8 -8
- package/libs/apple/libskia.xcframework/Info.plist +14 -14
- package/libs/apple/libskottie.xcframework/Info.plist +14 -14
- package/libs/apple/libskparagraph.xcframework/Info.plist +16 -16
- package/libs/apple/libsksg.xcframework/Info.plist +5 -5
- package/libs/apple/libskshaper.xcframework/Info.plist +14 -14
- package/libs/apple/libskunicode_libgrapheme.xcframework/Info.plist +14 -14
- package/libs/apple/libsvg.xcframework/Info.plist +14 -14
- package/package.json +1 -1
- package/react-native-skia.podspec +4 -2
- package/src/__tests__/snapshots/matrix4/camera-corner.png +0 -0
- package/src/__tests__/snapshots/matrix4/camera-offset.png +0 -0
- package/src/__tests__/snapshots/matrix4/camera-top-left-center.png +0 -0
- package/src/__tests__/snapshots/matrix4/camera-zoom-out.png +0 -0
- package/src/__tests__/snapshots/matrix4/full-rect.png +0 -0
- package/src/__tests__/snapshots/matrix4/rect.png +0 -0
- package/src/__tests__/snapshots/matrix4/scaled-rect.png +0 -0
- package/src/__tests__/snapshots/matrix4/test-perspective.png +0 -0
- package/src/__tests__/snapshots/matrix4/test-perspective2.png +0 -0
- package/src/dom/types/Drawings.ts +11 -0
- package/src/dom/types/NodeType.ts +4 -0
- package/src/renderer/__tests__/e2e/AdvancedImageFilters.spec.tsx +492 -0
- package/src/renderer/__tests__/e2e/Camera.spec.tsx +475 -0
- package/src/renderer/__tests__/e2e/ImageFilter.spec.tsx +99 -0
- package/src/renderer/__tests__/e2e/LightingImageFilters.spec.tsx +1478 -0
- package/src/renderer/__tests__/e2e/Skottie.spec.tsx +440 -0
- package/src/renderer/__tests__/e2e/setup/skottie/basic_slots.json +1118 -0
- package/src/renderer/__tests__/e2e/setup/skottie/color-props.json +1 -0
- package/src/renderer/__tests__/e2e/setup/skottie/confetti.json +5899 -0
- package/src/renderer/__tests__/e2e/setup/skottie/drinks.json +43857 -0
- package/src/renderer/__tests__/e2e/setup/skottie/fingerprint.json +1 -0
- package/src/renderer/__tests__/e2e/setup/skottie/lego_loader.json +29540 -0
- package/src/renderer/__tests__/e2e/setup/skottie/new-drop.json +1 -0
- package/src/renderer/__tests__/e2e/setup/skottie/onboarding.json +1 -0
- package/src/renderer/__tests__/e2e/setup/skottie/text-layer.json +1 -0
- package/src/renderer/__tests__/setup.tsx +31 -0
- package/src/renderer/components/ImageFilter.tsx +8 -0
- package/src/renderer/components/Skottie.tsx +8 -0
- package/src/renderer/components/index.ts +2 -0
- package/src/skia/__tests__/assets/Avenir-Heavy.ttf +0 -0
- package/src/skia/types/ImageFilter/ImageFilterFactory.ts +391 -21
- package/src/skia/types/Matrix4.ts +108 -2
- package/src/skia/types/Recorder.ts +2 -0
- package/src/skia/types/Skia.ts +2 -0
- package/src/skia/types/Skottie.ts +266 -0
- package/src/skia/types/index.ts +1 -0
- package/src/skia/web/JsiSkImageFilterFactory.ts +266 -31
- package/src/skia/web/JsiSkia.ts +2 -0
- package/src/skia/web/JsiSkottieAnimation.ts +259 -0
- package/src/skia/web/JsiSkottieFactory.ts +25 -0
- package/src/sksg/Elements.tsx +4 -0
- package/src/sksg/Node.ts +1 -0
- package/src/sksg/Recorder/Core.ts +3 -0
- package/src/sksg/Recorder/Player.ts +3 -0
- package/src/sksg/Recorder/ReanimatedRecorder.ts +6 -0
- package/src/sksg/Recorder/Recorder.ts +5 -0
- package/src/sksg/Recorder/Visitor.ts +3 -0
- package/src/sksg/Recorder/commands/Drawing.ts +7 -3
- package/src/sksg/Recorder/commands/ImageFilters.ts +15 -2
@@ -0,0 +1,1118 @@
|
|
1
|
+
{
|
2
|
+
"v": "5.12.2",
|
3
|
+
"fr": 60,
|
4
|
+
"ip": 0,
|
5
|
+
"op": 2100,
|
6
|
+
"w": 1024,
|
7
|
+
"h": 768,
|
8
|
+
"nm": "essential_properties_comp",
|
9
|
+
"ddd": 0,
|
10
|
+
"assets": [
|
11
|
+
{
|
12
|
+
"id": "image_0",
|
13
|
+
"w": 1024,
|
14
|
+
"h": 1024,
|
15
|
+
"u": "images/",
|
16
|
+
"p": "img_0.jpg",
|
17
|
+
"e": 0,
|
18
|
+
"sid": "ImageSource"
|
19
|
+
},
|
20
|
+
{
|
21
|
+
"id": "comp_0",
|
22
|
+
"nm": "comp",
|
23
|
+
"fr": 60,
|
24
|
+
"layers": [
|
25
|
+
{
|
26
|
+
"ddd": 0,
|
27
|
+
"ind": 1,
|
28
|
+
"ty": 0,
|
29
|
+
"nm": "shapes_comp",
|
30
|
+
"refId": "comp_1",
|
31
|
+
"sr": 1,
|
32
|
+
"ks": {
|
33
|
+
"o": {
|
34
|
+
"a": 0,
|
35
|
+
"k": 100,
|
36
|
+
"ix": 11
|
37
|
+
},
|
38
|
+
"r": {
|
39
|
+
"a": 0,
|
40
|
+
"k": 0,
|
41
|
+
"ix": 10
|
42
|
+
},
|
43
|
+
"p": {
|
44
|
+
"a": 0,
|
45
|
+
"k": [
|
46
|
+
512,
|
47
|
+
384,
|
48
|
+
0
|
49
|
+
],
|
50
|
+
"ix": 2,
|
51
|
+
"l": 2
|
52
|
+
},
|
53
|
+
"a": {
|
54
|
+
"a": 0,
|
55
|
+
"k": [
|
56
|
+
256,
|
57
|
+
192,
|
58
|
+
0
|
59
|
+
],
|
60
|
+
"ix": 1,
|
61
|
+
"l": 2
|
62
|
+
},
|
63
|
+
"s": {
|
64
|
+
"a": 0,
|
65
|
+
"k": [
|
66
|
+
100,
|
67
|
+
100,
|
68
|
+
100
|
69
|
+
],
|
70
|
+
"ix": 6,
|
71
|
+
"l": 2
|
72
|
+
}
|
73
|
+
},
|
74
|
+
"ao": 0,
|
75
|
+
"w": 512,
|
76
|
+
"h": 384,
|
77
|
+
"ip": 0,
|
78
|
+
"op": 2100,
|
79
|
+
"st": 0,
|
80
|
+
"bm": 0
|
81
|
+
},
|
82
|
+
{
|
83
|
+
"ddd": 0,
|
84
|
+
"ind": 2,
|
85
|
+
"ty": 0,
|
86
|
+
"nm": "text_comp",
|
87
|
+
"refId": "comp_2",
|
88
|
+
"sr": 1,
|
89
|
+
"ks": {
|
90
|
+
"o": {
|
91
|
+
"a": 0,
|
92
|
+
"k": 100,
|
93
|
+
"ix": 11
|
94
|
+
},
|
95
|
+
"r": {
|
96
|
+
"a": 0,
|
97
|
+
"k": 0,
|
98
|
+
"ix": 10
|
99
|
+
},
|
100
|
+
"p": {
|
101
|
+
"a": 0,
|
102
|
+
"k": [
|
103
|
+
512,
|
104
|
+
384,
|
105
|
+
0
|
106
|
+
],
|
107
|
+
"ix": 2,
|
108
|
+
"l": 2
|
109
|
+
},
|
110
|
+
"a": {
|
111
|
+
"a": 0,
|
112
|
+
"k": [
|
113
|
+
512,
|
114
|
+
384,
|
115
|
+
0
|
116
|
+
],
|
117
|
+
"ix": 1,
|
118
|
+
"l": 2
|
119
|
+
},
|
120
|
+
"s": {
|
121
|
+
"a": 0,
|
122
|
+
"k": [
|
123
|
+
100,
|
124
|
+
100,
|
125
|
+
100
|
126
|
+
],
|
127
|
+
"ix": 6,
|
128
|
+
"l": 2
|
129
|
+
}
|
130
|
+
},
|
131
|
+
"ao": 0,
|
132
|
+
"w": 1024,
|
133
|
+
"h": 768,
|
134
|
+
"ip": 0,
|
135
|
+
"op": 2100,
|
136
|
+
"st": 0,
|
137
|
+
"bm": 0
|
138
|
+
},
|
139
|
+
{
|
140
|
+
"ddd": 0,
|
141
|
+
"ind": 3,
|
142
|
+
"ty": 1,
|
143
|
+
"nm": "Turquoise Solid 1",
|
144
|
+
"sr": 1,
|
145
|
+
"ks": {
|
146
|
+
"o": {
|
147
|
+
"a": 0,
|
148
|
+
"k": 100,
|
149
|
+
"ix": 11
|
150
|
+
},
|
151
|
+
"r": {
|
152
|
+
"a": 0,
|
153
|
+
"k": 0,
|
154
|
+
"ix": 10
|
155
|
+
},
|
156
|
+
"p": {
|
157
|
+
"a": 0,
|
158
|
+
"k": [
|
159
|
+
512,
|
160
|
+
384,
|
161
|
+
0
|
162
|
+
],
|
163
|
+
"ix": 2,
|
164
|
+
"l": 2
|
165
|
+
},
|
166
|
+
"a": {
|
167
|
+
"a": 0,
|
168
|
+
"k": [
|
169
|
+
256,
|
170
|
+
192,
|
171
|
+
0
|
172
|
+
],
|
173
|
+
"ix": 1,
|
174
|
+
"l": 2
|
175
|
+
},
|
176
|
+
"s": {
|
177
|
+
"sid": "ScaleGroup",
|
178
|
+
"a": 0,
|
179
|
+
"k": [
|
180
|
+
100,
|
181
|
+
100,
|
182
|
+
100
|
183
|
+
],
|
184
|
+
"ix": 6,
|
185
|
+
"l": 2
|
186
|
+
}
|
187
|
+
},
|
188
|
+
"ao": 0,
|
189
|
+
"sw": 512,
|
190
|
+
"sh": 384,
|
191
|
+
"sc": "#00ffbe",
|
192
|
+
"ip": 0,
|
193
|
+
"op": 2100,
|
194
|
+
"st": 0,
|
195
|
+
"bm": 0
|
196
|
+
},
|
197
|
+
{
|
198
|
+
"ddd": 0,
|
199
|
+
"ind": 4,
|
200
|
+
"ty": 0,
|
201
|
+
"nm": "image_comp",
|
202
|
+
"refId": "comp_3",
|
203
|
+
"sr": 1,
|
204
|
+
"ks": {
|
205
|
+
"o": {
|
206
|
+
"a": 0,
|
207
|
+
"k": 100,
|
208
|
+
"ix": 11
|
209
|
+
},
|
210
|
+
"r": {
|
211
|
+
"a": 0,
|
212
|
+
"k": 0,
|
213
|
+
"ix": 10
|
214
|
+
},
|
215
|
+
"p": {
|
216
|
+
"a": 0,
|
217
|
+
"k": [
|
218
|
+
512,
|
219
|
+
377,
|
220
|
+
0
|
221
|
+
],
|
222
|
+
"ix": 2,
|
223
|
+
"l": 2
|
224
|
+
},
|
225
|
+
"a": {
|
226
|
+
"a": 0,
|
227
|
+
"k": [
|
228
|
+
512,
|
229
|
+
512,
|
230
|
+
0
|
231
|
+
],
|
232
|
+
"ix": 1,
|
233
|
+
"l": 2
|
234
|
+
},
|
235
|
+
"s": {
|
236
|
+
"a": 0,
|
237
|
+
"k": [
|
238
|
+
100,
|
239
|
+
100,
|
240
|
+
100
|
241
|
+
],
|
242
|
+
"ix": 6,
|
243
|
+
"l": 2
|
244
|
+
}
|
245
|
+
},
|
246
|
+
"ao": 0,
|
247
|
+
"w": 1024,
|
248
|
+
"h": 1024,
|
249
|
+
"ip": 0,
|
250
|
+
"op": 2100,
|
251
|
+
"st": 0,
|
252
|
+
"bm": 0
|
253
|
+
}
|
254
|
+
]
|
255
|
+
},
|
256
|
+
{
|
257
|
+
"id": "comp_1",
|
258
|
+
"nm": "shapes_comp",
|
259
|
+
"fr": 60,
|
260
|
+
"layers": [
|
261
|
+
{
|
262
|
+
"ddd": 0,
|
263
|
+
"ind": 1,
|
264
|
+
"ty": 4,
|
265
|
+
"nm": "Shape Layer 1",
|
266
|
+
"sr": 1,
|
267
|
+
"ks": {
|
268
|
+
"o": {
|
269
|
+
"sid": "Opacity",
|
270
|
+
"a": 0,
|
271
|
+
"k": 100,
|
272
|
+
"ix": 11
|
273
|
+
},
|
274
|
+
"r": {
|
275
|
+
"a": 0,
|
276
|
+
"k": 0,
|
277
|
+
"ix": 10
|
278
|
+
},
|
279
|
+
"p": {
|
280
|
+
"a": 0,
|
281
|
+
"k": [
|
282
|
+
160,
|
283
|
+
192,
|
284
|
+
0
|
285
|
+
],
|
286
|
+
"ix": 2,
|
287
|
+
"l": 2
|
288
|
+
},
|
289
|
+
"a": {
|
290
|
+
"a": 0,
|
291
|
+
"k": [
|
292
|
+
0,
|
293
|
+
0,
|
294
|
+
0
|
295
|
+
],
|
296
|
+
"ix": 1,
|
297
|
+
"l": 2
|
298
|
+
},
|
299
|
+
"s": {
|
300
|
+
"a": 0,
|
301
|
+
"k": [
|
302
|
+
100,
|
303
|
+
100,
|
304
|
+
100
|
305
|
+
],
|
306
|
+
"ix": 6,
|
307
|
+
"l": 2
|
308
|
+
}
|
309
|
+
},
|
310
|
+
"ao": 0,
|
311
|
+
"shapes": [
|
312
|
+
{
|
313
|
+
"ty": "gr",
|
314
|
+
"it": [
|
315
|
+
{
|
316
|
+
"ty": "sr",
|
317
|
+
"sy": 1,
|
318
|
+
"d": 1,
|
319
|
+
"pt": {
|
320
|
+
"a": 0,
|
321
|
+
"k": 5,
|
322
|
+
"ix": 3
|
323
|
+
},
|
324
|
+
"p": {
|
325
|
+
"a": 0,
|
326
|
+
"k": [
|
327
|
+
0,
|
328
|
+
0
|
329
|
+
],
|
330
|
+
"ix": 4
|
331
|
+
},
|
332
|
+
"r": {
|
333
|
+
"a": 0,
|
334
|
+
"k": 0,
|
335
|
+
"ix": 5
|
336
|
+
},
|
337
|
+
"ir": {
|
338
|
+
"a": 0,
|
339
|
+
"k": 30,
|
340
|
+
"ix": 6
|
341
|
+
},
|
342
|
+
"is": {
|
343
|
+
"a": 0,
|
344
|
+
"k": 0,
|
345
|
+
"ix": 8
|
346
|
+
},
|
347
|
+
"or": {
|
348
|
+
"a": 0,
|
349
|
+
"k": 80,
|
350
|
+
"ix": 7
|
351
|
+
},
|
352
|
+
"os": {
|
353
|
+
"a": 0,
|
354
|
+
"k": 0,
|
355
|
+
"ix": 9
|
356
|
+
},
|
357
|
+
"ix": 1,
|
358
|
+
"nm": "Polystar Path 1",
|
359
|
+
"mn": "ADBE Vector Shape - Star",
|
360
|
+
"hd": false
|
361
|
+
},
|
362
|
+
{
|
363
|
+
"ty": "st",
|
364
|
+
"c": {
|
365
|
+
"sid": "StrokeGroup",
|
366
|
+
"a": 0,
|
367
|
+
"k": [
|
368
|
+
0.1254902035,
|
369
|
+
0.446274518967,
|
370
|
+
1,
|
371
|
+
1
|
372
|
+
],
|
373
|
+
"ix": 3
|
374
|
+
},
|
375
|
+
"o": {
|
376
|
+
"a": 0,
|
377
|
+
"k": 100,
|
378
|
+
"ix": 4
|
379
|
+
},
|
380
|
+
"w": {
|
381
|
+
"a": 0,
|
382
|
+
"k": 9,
|
383
|
+
"ix": 5
|
384
|
+
},
|
385
|
+
"lc": 1,
|
386
|
+
"lj": 1,
|
387
|
+
"ml": 4,
|
388
|
+
"bm": 0,
|
389
|
+
"nm": "Stroke 1",
|
390
|
+
"mn": "ADBE Vector Graphic - Stroke",
|
391
|
+
"hd": false
|
392
|
+
},
|
393
|
+
{
|
394
|
+
"ty": "tr",
|
395
|
+
"p": {
|
396
|
+
"a": 0,
|
397
|
+
"k": [
|
398
|
+
97,
|
399
|
+
0
|
400
|
+
],
|
401
|
+
"ix": 2
|
402
|
+
},
|
403
|
+
"a": {
|
404
|
+
"a": 0,
|
405
|
+
"k": [
|
406
|
+
0,
|
407
|
+
0
|
408
|
+
],
|
409
|
+
"ix": 1
|
410
|
+
},
|
411
|
+
"s": {
|
412
|
+
"a": 0,
|
413
|
+
"k": [
|
414
|
+
100,
|
415
|
+
100
|
416
|
+
],
|
417
|
+
"ix": 3
|
418
|
+
},
|
419
|
+
"r": {
|
420
|
+
"a": 0,
|
421
|
+
"k": 0,
|
422
|
+
"ix": 6
|
423
|
+
},
|
424
|
+
"o": {
|
425
|
+
"a": 0,
|
426
|
+
"k": 100,
|
427
|
+
"ix": 7
|
428
|
+
},
|
429
|
+
"sk": {
|
430
|
+
"a": 0,
|
431
|
+
"k": 0,
|
432
|
+
"ix": 4
|
433
|
+
},
|
434
|
+
"sa": {
|
435
|
+
"a": 0,
|
436
|
+
"k": 0,
|
437
|
+
"ix": 5
|
438
|
+
},
|
439
|
+
"nm": "Transform"
|
440
|
+
}
|
441
|
+
],
|
442
|
+
"nm": "Group 2",
|
443
|
+
"np": 2,
|
444
|
+
"cix": 2,
|
445
|
+
"bm": 0,
|
446
|
+
"ix": 1,
|
447
|
+
"mn": "ADBE Vector Group",
|
448
|
+
"hd": false
|
449
|
+
},
|
450
|
+
{
|
451
|
+
"ty": "gr",
|
452
|
+
"it": [
|
453
|
+
{
|
454
|
+
"ty": "rc",
|
455
|
+
"d": 1,
|
456
|
+
"s": {
|
457
|
+
"a": 0,
|
458
|
+
"k": [
|
459
|
+
100,
|
460
|
+
100
|
461
|
+
],
|
462
|
+
"ix": 2
|
463
|
+
},
|
464
|
+
"p": {
|
465
|
+
"a": 0,
|
466
|
+
"k": [
|
467
|
+
0,
|
468
|
+
0
|
469
|
+
],
|
470
|
+
"ix": 3
|
471
|
+
},
|
472
|
+
"r": {
|
473
|
+
"a": 0,
|
474
|
+
"k": 0,
|
475
|
+
"ix": 4
|
476
|
+
},
|
477
|
+
"nm": "Rectangle Path 1",
|
478
|
+
"mn": "ADBE Vector Shape - Rect",
|
479
|
+
"hd": false
|
480
|
+
},
|
481
|
+
{
|
482
|
+
"ty": "st",
|
483
|
+
"c": {
|
484
|
+
"sid": "StrokeGroup",
|
485
|
+
"a": 0,
|
486
|
+
"k": [
|
487
|
+
0.945159313725,
|
488
|
+
0.27433944403,
|
489
|
+
0.945159313725,
|
490
|
+
1
|
491
|
+
],
|
492
|
+
"ix": 3
|
493
|
+
},
|
494
|
+
"o": {
|
495
|
+
"a": 0,
|
496
|
+
"k": 100,
|
497
|
+
"ix": 4
|
498
|
+
},
|
499
|
+
"w": {
|
500
|
+
"a": 0,
|
501
|
+
"k": 10,
|
502
|
+
"ix": 5
|
503
|
+
},
|
504
|
+
"lc": 1,
|
505
|
+
"lj": 1,
|
506
|
+
"ml": 4,
|
507
|
+
"bm": 0,
|
508
|
+
"nm": "Stroke 1",
|
509
|
+
"mn": "ADBE Vector Graphic - Stroke",
|
510
|
+
"hd": false
|
511
|
+
},
|
512
|
+
{
|
513
|
+
"ty": "fl",
|
514
|
+
"c": {
|
515
|
+
"sid": "FillsGroup",
|
516
|
+
"a": 0,
|
517
|
+
"k": [
|
518
|
+
1,
|
519
|
+
0.694117665291,
|
520
|
+
0,
|
521
|
+
1
|
522
|
+
],
|
523
|
+
"ix": 4
|
524
|
+
},
|
525
|
+
"o": {
|
526
|
+
"a": 0,
|
527
|
+
"k": 100,
|
528
|
+
"ix": 5
|
529
|
+
},
|
530
|
+
"r": 1,
|
531
|
+
"bm": 0,
|
532
|
+
"nm": "Fill 1",
|
533
|
+
"mn": "ADBE Vector Graphic - Fill",
|
534
|
+
"hd": false
|
535
|
+
},
|
536
|
+
{
|
537
|
+
"ty": "tr",
|
538
|
+
"p": {
|
539
|
+
"a": 0,
|
540
|
+
"k": [
|
541
|
+
-68,
|
542
|
+
0
|
543
|
+
],
|
544
|
+
"ix": 2
|
545
|
+
},
|
546
|
+
"a": {
|
547
|
+
"a": 0,
|
548
|
+
"k": [
|
549
|
+
0,
|
550
|
+
0
|
551
|
+
],
|
552
|
+
"ix": 1
|
553
|
+
},
|
554
|
+
"s": {
|
555
|
+
"a": 0,
|
556
|
+
"k": [
|
557
|
+
100,
|
558
|
+
100
|
559
|
+
],
|
560
|
+
"ix": 3
|
561
|
+
},
|
562
|
+
"r": {
|
563
|
+
"a": 0,
|
564
|
+
"k": 0,
|
565
|
+
"ix": 6
|
566
|
+
},
|
567
|
+
"o": {
|
568
|
+
"a": 0,
|
569
|
+
"k": 100,
|
570
|
+
"ix": 7
|
571
|
+
},
|
572
|
+
"sk": {
|
573
|
+
"a": 0,
|
574
|
+
"k": 0,
|
575
|
+
"ix": 4
|
576
|
+
},
|
577
|
+
"sa": {
|
578
|
+
"a": 0,
|
579
|
+
"k": 0,
|
580
|
+
"ix": 5
|
581
|
+
},
|
582
|
+
"nm": "Transform"
|
583
|
+
}
|
584
|
+
],
|
585
|
+
"nm": "Group 1",
|
586
|
+
"np": 3,
|
587
|
+
"cix": 2,
|
588
|
+
"bm": 0,
|
589
|
+
"ix": 2,
|
590
|
+
"mn": "ADBE Vector Group",
|
591
|
+
"hd": false
|
592
|
+
}
|
593
|
+
],
|
594
|
+
"ip": 0,
|
595
|
+
"op": 2100,
|
596
|
+
"st": 0,
|
597
|
+
"ct": 1,
|
598
|
+
"bm": 0
|
599
|
+
},
|
600
|
+
{
|
601
|
+
"ddd": 0,
|
602
|
+
"ind": 2,
|
603
|
+
"ty": 4,
|
604
|
+
"nm": "Shape Layer 2",
|
605
|
+
"sr": 1,
|
606
|
+
"ks": {
|
607
|
+
"o": {
|
608
|
+
"a": 0,
|
609
|
+
"k": 100,
|
610
|
+
"ix": 11
|
611
|
+
},
|
612
|
+
"r": {
|
613
|
+
"a": 0,
|
614
|
+
"k": 0,
|
615
|
+
"ix": 10
|
616
|
+
},
|
617
|
+
"p": {
|
618
|
+
"a": 0,
|
619
|
+
"k": [
|
620
|
+
426,
|
621
|
+
192,
|
622
|
+
0
|
623
|
+
],
|
624
|
+
"ix": 2,
|
625
|
+
"l": 2
|
626
|
+
},
|
627
|
+
"a": {
|
628
|
+
"a": 0,
|
629
|
+
"k": [
|
630
|
+
0,
|
631
|
+
0,
|
632
|
+
0
|
633
|
+
],
|
634
|
+
"ix": 1,
|
635
|
+
"l": 2
|
636
|
+
},
|
637
|
+
"s": {
|
638
|
+
"a": 0,
|
639
|
+
"k": [
|
640
|
+
100,
|
641
|
+
100,
|
642
|
+
100
|
643
|
+
],
|
644
|
+
"ix": 6,
|
645
|
+
"l": 2
|
646
|
+
}
|
647
|
+
},
|
648
|
+
"ao": 0,
|
649
|
+
"shapes": [
|
650
|
+
{
|
651
|
+
"d": 1,
|
652
|
+
"ty": "el",
|
653
|
+
"s": {
|
654
|
+
"a": 0,
|
655
|
+
"k": [
|
656
|
+
100,
|
657
|
+
100
|
658
|
+
],
|
659
|
+
"ix": 2
|
660
|
+
},
|
661
|
+
"p": {
|
662
|
+
"a": 0,
|
663
|
+
"k": [
|
664
|
+
0,
|
665
|
+
0
|
666
|
+
],
|
667
|
+
"ix": 3
|
668
|
+
},
|
669
|
+
"nm": "Ellipse Path 1",
|
670
|
+
"mn": "ADBE Vector Shape - Ellipse",
|
671
|
+
"hd": false
|
672
|
+
},
|
673
|
+
{
|
674
|
+
"ty": "st",
|
675
|
+
"c": {
|
676
|
+
"sid": "StrokeGroup",
|
677
|
+
"a": 0,
|
678
|
+
"k": [
|
679
|
+
0.065882354975,
|
680
|
+
0.496470600367,
|
681
|
+
0.21725487709,
|
682
|
+
1
|
683
|
+
],
|
684
|
+
"ix": 3
|
685
|
+
},
|
686
|
+
"o": {
|
687
|
+
"a": 0,
|
688
|
+
"k": 100,
|
689
|
+
"ix": 4
|
690
|
+
},
|
691
|
+
"w": {
|
692
|
+
"a": 0,
|
693
|
+
"k": 10,
|
694
|
+
"ix": 5
|
695
|
+
},
|
696
|
+
"lc": 1,
|
697
|
+
"lj": 1,
|
698
|
+
"ml": 4,
|
699
|
+
"bm": 0,
|
700
|
+
"nm": "Stroke 1",
|
701
|
+
"mn": "ADBE Vector Graphic - Stroke",
|
702
|
+
"hd": false
|
703
|
+
},
|
704
|
+
{
|
705
|
+
"ty": "fl",
|
706
|
+
"c": {
|
707
|
+
"sid": "FillsGroup",
|
708
|
+
"a": 0,
|
709
|
+
"k": [
|
710
|
+
0.429208942488,
|
711
|
+
0.010746350943,
|
712
|
+
0.682414215686,
|
713
|
+
1
|
714
|
+
],
|
715
|
+
"ix": 4
|
716
|
+
},
|
717
|
+
"o": {
|
718
|
+
"a": 0,
|
719
|
+
"k": 100,
|
720
|
+
"ix": 5
|
721
|
+
},
|
722
|
+
"r": 1,
|
723
|
+
"bm": 0,
|
724
|
+
"nm": "Fill 1",
|
725
|
+
"mn": "ADBE Vector Graphic - Fill",
|
726
|
+
"hd": false
|
727
|
+
}
|
728
|
+
],
|
729
|
+
"ip": 0,
|
730
|
+
"op": 2100,
|
731
|
+
"st": 0,
|
732
|
+
"ct": 1,
|
733
|
+
"bm": 0
|
734
|
+
}
|
735
|
+
]
|
736
|
+
},
|
737
|
+
{
|
738
|
+
"id": "comp_2",
|
739
|
+
"nm": "text_comp",
|
740
|
+
"fr": 60,
|
741
|
+
"layers": [
|
742
|
+
{
|
743
|
+
"ddd": 0,
|
744
|
+
"ind": 1,
|
745
|
+
"ty": 5,
|
746
|
+
"nm": "text slots",
|
747
|
+
"sr": 1,
|
748
|
+
"ks": {
|
749
|
+
"o": {
|
750
|
+
"a": 0,
|
751
|
+
"k": 100,
|
752
|
+
"ix": 11
|
753
|
+
},
|
754
|
+
"r": {
|
755
|
+
"a": 0,
|
756
|
+
"k": 0,
|
757
|
+
"ix": 10
|
758
|
+
},
|
759
|
+
"p": {
|
760
|
+
"a": 0,
|
761
|
+
"k": [
|
762
|
+
512.409,
|
763
|
+
250,
|
764
|
+
0
|
765
|
+
],
|
766
|
+
"ix": 2,
|
767
|
+
"l": 2
|
768
|
+
},
|
769
|
+
"a": {
|
770
|
+
"a": 0,
|
771
|
+
"k": [
|
772
|
+
0,
|
773
|
+
0,
|
774
|
+
0
|
775
|
+
],
|
776
|
+
"ix": 1,
|
777
|
+
"l": 2
|
778
|
+
},
|
779
|
+
"s": {
|
780
|
+
"sid": "ScaleGroup",
|
781
|
+
"a": 0,
|
782
|
+
"k": [
|
783
|
+
100,
|
784
|
+
100,
|
785
|
+
100
|
786
|
+
],
|
787
|
+
"ix": 6,
|
788
|
+
"l": 2
|
789
|
+
}
|
790
|
+
},
|
791
|
+
"ao": 0,
|
792
|
+
"t": {
|
793
|
+
"d": {
|
794
|
+
"k": [
|
795
|
+
{
|
796
|
+
"s": {
|
797
|
+
"s": 39,
|
798
|
+
"f": "NotoSerif",
|
799
|
+
"t": "text slots",
|
800
|
+
"ca": 0,
|
801
|
+
"j": 2,
|
802
|
+
"tr": 0,
|
803
|
+
"lh": 334,
|
804
|
+
"ls": 0,
|
805
|
+
"fc": [
|
806
|
+
0.822,
|
807
|
+
0.685,
|
808
|
+
0.294
|
809
|
+
]
|
810
|
+
},
|
811
|
+
"t": 0
|
812
|
+
}
|
813
|
+
],
|
814
|
+
"sid": "TextSource"
|
815
|
+
},
|
816
|
+
"p": {},
|
817
|
+
"m": {
|
818
|
+
"g": 1,
|
819
|
+
"a": {
|
820
|
+
"a": 0,
|
821
|
+
"k": [
|
822
|
+
0,
|
823
|
+
0
|
824
|
+
],
|
825
|
+
"ix": 2
|
826
|
+
}
|
827
|
+
},
|
828
|
+
"a": []
|
829
|
+
},
|
830
|
+
"ip": 0,
|
831
|
+
"op": 2100,
|
832
|
+
"st": 0,
|
833
|
+
"ct": 1,
|
834
|
+
"bm": 0
|
835
|
+
}
|
836
|
+
]
|
837
|
+
},
|
838
|
+
{
|
839
|
+
"id": "comp_3",
|
840
|
+
"nm": "image_comp",
|
841
|
+
"fr": 60,
|
842
|
+
"layers": [
|
843
|
+
{
|
844
|
+
"ddd": 0,
|
845
|
+
"ind": 1,
|
846
|
+
"ty": 1,
|
847
|
+
"nm": "Black Solid 1",
|
848
|
+
"sr": 1,
|
849
|
+
"ks": {
|
850
|
+
"o": {
|
851
|
+
"a": 0,
|
852
|
+
"k": 70,
|
853
|
+
"ix": 11
|
854
|
+
},
|
855
|
+
"r": {
|
856
|
+
"a": 0,
|
857
|
+
"k": 0,
|
858
|
+
"ix": 10
|
859
|
+
},
|
860
|
+
"p": {
|
861
|
+
"a": 0,
|
862
|
+
"k": [
|
863
|
+
512,
|
864
|
+
512,
|
865
|
+
0
|
866
|
+
],
|
867
|
+
"ix": 2,
|
868
|
+
"l": 2
|
869
|
+
},
|
870
|
+
"a": {
|
871
|
+
"a": 0,
|
872
|
+
"k": [
|
873
|
+
512,
|
874
|
+
512,
|
875
|
+
0
|
876
|
+
],
|
877
|
+
"ix": 1,
|
878
|
+
"l": 2
|
879
|
+
},
|
880
|
+
"s": {
|
881
|
+
"a": 0,
|
882
|
+
"k": [
|
883
|
+
100,
|
884
|
+
100,
|
885
|
+
100
|
886
|
+
],
|
887
|
+
"ix": 6,
|
888
|
+
"l": 2
|
889
|
+
}
|
890
|
+
},
|
891
|
+
"ao": 0,
|
892
|
+
"sw": 1024,
|
893
|
+
"sh": 1024,
|
894
|
+
"sc": "#000000",
|
895
|
+
"ip": 0,
|
896
|
+
"op": 2100,
|
897
|
+
"st": 0,
|
898
|
+
"bm": 0
|
899
|
+
},
|
900
|
+
{
|
901
|
+
"ddd": 0,
|
902
|
+
"ind": 2,
|
903
|
+
"ty": 2,
|
904
|
+
"nm": "img1.png",
|
905
|
+
"cl": "png",
|
906
|
+
"refId": "image_0",
|
907
|
+
"sr": 1,
|
908
|
+
"ks": {
|
909
|
+
"o": {
|
910
|
+
"a": 0,
|
911
|
+
"k": 100,
|
912
|
+
"ix": 11
|
913
|
+
},
|
914
|
+
"r": {
|
915
|
+
"a": 0,
|
916
|
+
"k": 0,
|
917
|
+
"ix": 10
|
918
|
+
},
|
919
|
+
"p": {
|
920
|
+
"a": 0,
|
921
|
+
"k": [
|
922
|
+
512,
|
923
|
+
512,
|
924
|
+
0
|
925
|
+
],
|
926
|
+
"ix": 2,
|
927
|
+
"l": 2
|
928
|
+
},
|
929
|
+
"a": {
|
930
|
+
"a": 0,
|
931
|
+
"k": [
|
932
|
+
512,
|
933
|
+
512,
|
934
|
+
0
|
935
|
+
],
|
936
|
+
"ix": 1,
|
937
|
+
"l": 2
|
938
|
+
},
|
939
|
+
"s": {
|
940
|
+
"a": 0,
|
941
|
+
"k": [
|
942
|
+
100,
|
943
|
+
100,
|
944
|
+
100
|
945
|
+
],
|
946
|
+
"ix": 6,
|
947
|
+
"l": 2
|
948
|
+
}
|
949
|
+
},
|
950
|
+
"ao": 0,
|
951
|
+
"ip": 0,
|
952
|
+
"op": 2100,
|
953
|
+
"st": 0,
|
954
|
+
"bm": 0
|
955
|
+
}
|
956
|
+
]
|
957
|
+
}
|
958
|
+
],
|
959
|
+
"fonts": {
|
960
|
+
"list": [
|
961
|
+
{
|
962
|
+
"origin": 0,
|
963
|
+
"fPath": "",
|
964
|
+
"fClass": "",
|
965
|
+
"fFamily": "Serif",
|
966
|
+
"fWeight": "",
|
967
|
+
"fStyle": "Regular",
|
968
|
+
"fName": "NotoSerif",
|
969
|
+
"ascent": 71.5988159179688
|
970
|
+
}
|
971
|
+
]
|
972
|
+
},
|
973
|
+
"layers": [
|
974
|
+
{
|
975
|
+
"ddd": 0,
|
976
|
+
"ind": 1,
|
977
|
+
"ty": 0,
|
978
|
+
"nm": "comp",
|
979
|
+
"refId": "comp_0",
|
980
|
+
"sr": 1,
|
981
|
+
"ks": {
|
982
|
+
"o": {
|
983
|
+
"a": 0,
|
984
|
+
"k": 100,
|
985
|
+
"ix": 11
|
986
|
+
},
|
987
|
+
"r": {
|
988
|
+
"a": 0,
|
989
|
+
"k": 0,
|
990
|
+
"ix": 10
|
991
|
+
},
|
992
|
+
"p": {
|
993
|
+
"a": 0,
|
994
|
+
"k": [
|
995
|
+
512,
|
996
|
+
384,
|
997
|
+
0
|
998
|
+
],
|
999
|
+
"ix": 2,
|
1000
|
+
"l": 2
|
1001
|
+
},
|
1002
|
+
"a": {
|
1003
|
+
"a": 0,
|
1004
|
+
"k": [
|
1005
|
+
512,
|
1006
|
+
384,
|
1007
|
+
0
|
1008
|
+
],
|
1009
|
+
"ix": 1,
|
1010
|
+
"l": 2
|
1011
|
+
},
|
1012
|
+
"s": {
|
1013
|
+
"a": 0,
|
1014
|
+
"k": [
|
1015
|
+
100,
|
1016
|
+
100,
|
1017
|
+
100
|
1018
|
+
],
|
1019
|
+
"ix": 6,
|
1020
|
+
"l": 2
|
1021
|
+
}
|
1022
|
+
},
|
1023
|
+
"ao": 0,
|
1024
|
+
"w": 1024,
|
1025
|
+
"h": 768,
|
1026
|
+
"ip": 0,
|
1027
|
+
"op": 2100,
|
1028
|
+
"st": 0,
|
1029
|
+
"bm": 0
|
1030
|
+
}
|
1031
|
+
],
|
1032
|
+
"markers": [],
|
1033
|
+
"slots": {
|
1034
|
+
"FillsGroup": {
|
1035
|
+
"p": {
|
1036
|
+
"a": 0,
|
1037
|
+
"k": [
|
1038
|
+
0.429208942488,
|
1039
|
+
0.010746350943,
|
1040
|
+
0.682414215686,
|
1041
|
+
1
|
1042
|
+
],
|
1043
|
+
"ix": 1
|
1044
|
+
},
|
1045
|
+
"t": 1
|
1046
|
+
},
|
1047
|
+
"StrokeGroup": {
|
1048
|
+
"p": {
|
1049
|
+
"a": 0,
|
1050
|
+
"k": [
|
1051
|
+
0.065882354975,
|
1052
|
+
0.496470600367,
|
1053
|
+
0.21725487709,
|
1054
|
+
1
|
1055
|
+
],
|
1056
|
+
"ix": 1
|
1057
|
+
},
|
1058
|
+
"t": 1
|
1059
|
+
},
|
1060
|
+
"TextSource": {
|
1061
|
+
"p": {
|
1062
|
+
"k": [
|
1063
|
+
{
|
1064
|
+
"s": {
|
1065
|
+
"s": 39,
|
1066
|
+
"f": "NotoSerif",
|
1067
|
+
"t": "text slots",
|
1068
|
+
"ca": 0,
|
1069
|
+
"j": 2,
|
1070
|
+
"tr": 0,
|
1071
|
+
"lh": 334,
|
1072
|
+
"ls": 0,
|
1073
|
+
"fc": [
|
1074
|
+
0.822,
|
1075
|
+
0.685,
|
1076
|
+
0.294
|
1077
|
+
]
|
1078
|
+
},
|
1079
|
+
"t": 0
|
1080
|
+
}
|
1081
|
+
]
|
1082
|
+
},
|
1083
|
+
"t": 99
|
1084
|
+
},
|
1085
|
+
"Opacity": {
|
1086
|
+
"p": {
|
1087
|
+
"a": 0,
|
1088
|
+
"k": 100,
|
1089
|
+
"ix": 5
|
1090
|
+
},
|
1091
|
+
"t": 4
|
1092
|
+
},
|
1093
|
+
"ScaleGroup": {
|
1094
|
+
"p": {
|
1095
|
+
"a": 0,
|
1096
|
+
"k": [
|
1097
|
+
100,
|
1098
|
+
100,
|
1099
|
+
100
|
1100
|
+
],
|
1101
|
+
"ix": 1
|
1102
|
+
},
|
1103
|
+
"t": 3
|
1104
|
+
},
|
1105
|
+
"ImageSource": {
|
1106
|
+
"t": 50,
|
1107
|
+
"p": {
|
1108
|
+
"id": "image_0",
|
1109
|
+
"w": 1024,
|
1110
|
+
"h": 1024,
|
1111
|
+
"u": "images/",
|
1112
|
+
"p": "img_0.png",
|
1113
|
+
"e": 0
|
1114
|
+
}
|
1115
|
+
}
|
1116
|
+
},
|
1117
|
+
"props": {}
|
1118
|
+
}
|