[skottie] Visual text valign

Historically, Skottie started with vertical alignment based on the
typographic bounding box.  This was meant to account for empty
leading/trailing lines.

At some point [1], the strategy was changed to also take the visual
bounding box into account (union of typographic and visual bounds).

It turns out this is still suboptimal: aligning based on font metrics
yields poor results in practice, and pretty much everyone expects
visual-only alignment.

This CL introduces three new visual-only VAlign modes:

  - kVisualTop (vj: 3)
  - kVisualCenter (vj: 4)
  - kVisualBottom (vj: 5)

Existing assets using the legacy kHybrid modes (vj: 0..2) should be
unaffected.

[1] https://skia-review.googlesource.com/c/skia/+/224188

Bug: b/265243822
Change-Id: I5cc3947894e1406ccce8d8cfd24f33cab33bfb73
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/639416
Commit-Queue: Florin Malita <fmalita@google.com>
Reviewed-by: Jorge Betancourt <jmbetancourt@google.com>
Reviewed-by: Ben Wagner <bungeman@google.com>
diff --git a/modules/skottie/src/text/SkottieShaper.cpp b/modules/skottie/src/text/SkottieShaper.cpp
index bb25852..26b29d1 100644
--- a/modules/skottie/src/text/SkottieShaper.cpp
+++ b/modules/skottie/src/text/SkottieShaper.cpp
@@ -187,18 +187,22 @@
         //
         //   b) leading/trailing empty lines are still taken into account for alignment purposes
 
-        auto extent_box = [&]() {
+        auto extent_box = [&](bool include_typographical_extent) {
             auto box = fResult.computeVisualBounds();
 
-            // By default, first line is vertically-aligned on a baseline of 0.
-            // The typographical height considered for vertical alignment is the distance between
-            // the first line top (ascent) to the last line bottom (descent).
-            const auto typographical_top    = fBox.fTop + ascent,
-                       typographical_bottom = fBox.fTop + fLastLineDescent + fDesc.fLineHeight *
-                                                           (fLineCount > 0 ? fLineCount - 1 : 0ul);
+            if (include_typographical_extent) {
+                // Hybrid visual alignment mode, based on typographical extent.
 
-            box.fTop    = std::min(box.fTop,    typographical_top);
-            box.fBottom = std::max(box.fBottom, typographical_bottom);
+                // By default, first line is vertically-aligned on a baseline of 0.
+                // The typographical height considered for vertical alignment is the distance
+                // between the first line top (ascent) to the last line bottom (descent).
+                const auto typographical_top    = fBox.fTop + ascent,
+                           typographical_bottom = fBox.fTop + fLastLineDescent +
+                                          fDesc.fLineHeight*(fLineCount > 0 ? fLineCount - 1 : 0ul);
+
+                box.fTop    = std::min(box.fTop,    typographical_top);
+                box.fBottom = std::max(box.fBottom, typographical_bottom);
+            }
 
             return box;
         };
@@ -217,22 +221,25 @@
             // Default behavior.
             break;
         case Shaper::VAlign::kHybridTop:
-            ebox.init(extent_box());
+        case Shaper::VAlign::kVisualTop:
+            ebox.init(extent_box(fDesc.fVAlign == Shaper::VAlign::kHybridTop));
             v_offset += fBox.fTop - ebox->fTop;
             break;
         case Shaper::VAlign::kHybridCenter:
-            ebox.init(extent_box());
+        case Shaper::VAlign::kVisualCenter:
+            ebox.init(extent_box(fDesc.fVAlign == Shaper::VAlign::kHybridCenter));
             v_offset += fBox.centerY() - ebox->centerY();
             break;
         case Shaper::VAlign::kHybridBottom:
-            ebox.init(extent_box());
+        case Shaper::VAlign::kVisualBottom:
+            ebox.init(extent_box(fDesc.fVAlign == Shaper::VAlign::kHybridBottom));
             v_offset += fBox.fBottom - ebox->fBottom;
             break;
         }
 
         if (shaped_size) {
             if (!ebox.isValid()) {
-                ebox.init(extent_box());
+                ebox.init(extent_box(true));
             }
             *shaped_size = SkSize::Make(ebox->width(), ebox->height());
         }
diff --git a/modules/skottie/src/text/SkottieShaper.h b/modules/skottie/src/text/SkottieShaper.h
index beb2b46..2d6a6f4 100644
--- a/modules/skottie/src/text/SkottieShaper.h
+++ b/modules/skottie/src/text/SkottieShaper.h
@@ -97,18 +97,14 @@
         //
         //   MAX(visual_bottom_extent, typographical_bottom_extent)
         //   ------------------------------------------------------
+        kHybridTop,     // extent box top    -> text box top
+        kHybridCenter,  // extent box center -> text box center
+        kHybridBottom,  // extent box bottom -> text box bottom
 
-        // extent box top -> text box top
-        kHybridTop,
-        kVisualTop = kHybridTop,  // transitional alias
-
-        // extent box center -> text box center
-        kHybridCenter,
-        kVisualCenter = kHybridCenter,  // transitional alias
-
-        // extent box bottom -> text box bottom
-        kHybridBottom,
-        kVisualBottom = kHybridBottom,  // transitional alias
+        // Visual alignement modes -- these are using tight visual bounds for the paragraph.
+        kVisualTop,     // visual top    -> text box top
+        kVisualCenter,  // visual center -> text box center
+        kVisualBottom,  // visual bottom -> text box bottom
     };
 
     enum class ResizePolicy : uint8_t {
diff --git a/modules/skottie/src/text/TextValue.cpp b/modules/skottie/src/text/TextValue.cpp
index e928773..26aa236 100644
--- a/modules/skottie/src/text/TextValue.cpp
+++ b/modules/skottie/src/text/TextValue.cpp
@@ -110,31 +110,41 @@
         Shaper::VAlign::kHybridTop,    // 'vj': 0
         Shaper::VAlign::kHybridCenter, // 'vj': 1
         Shaper::VAlign::kHybridBottom, // 'vj': 2
+        Shaper::VAlign::kVisualTop,    // 'vj': 3
+        Shaper::VAlign::kVisualCenter, // 'vj': 4
+        Shaper::VAlign::kVisualBottom, // 'vj': 5
     };
     size_t vj;
-    if (skottie::Parse((*jtxt)[   "vj"], &vj) ||
-        skottie::Parse((*jtxt)["sk_vj"], &vj)) { // TODO: remove after migrating clients.
+    if (skottie::Parse((*jtxt)["vj"], &vj)) {
         if (vj < std::size(gVAlignMap)) {
             v->fVAlign = gVAlignMap[vj];
         } else {
-            // Legacy sk_vj values.
-            // TODO: remove after clients update.
-            switch (vj) {
-            case 3:
-                // 'sk_vj': 3 -> kHybridCenter/kScaleToFit
-                v->fVAlign = Shaper::VAlign::kHybridCenter;
-                v->fResize = Shaper::ResizePolicy::kScaleToFit;
-                break;
-            case 4:
-                // 'sk_vj': 4 -> kHybridCenter/kDownscaleToFit
-                v->fVAlign = Shaper::VAlign::kHybridCenter;
-                v->fResize = Shaper::ResizePolicy::kDownscaleToFit;
-                break;
-            default:
-                abuilder.log(Logger::Level::kWarning, nullptr,
-                             "Ignoring unknown 'vj' value: %zu", vj);
-                break;
-            }
+            abuilder.log(Logger::Level::kWarning, nullptr, "Ignoring unknown 'vj' value: %zu", vj);
+        }
+    } else if (skottie::Parse((*jtxt)["sk_vj"], &vj)) {
+        // Legacy sk_vj values.
+        // TODO: remove after clients update.
+        switch (vj) {
+        case 0:
+        case 1:
+        case 2:
+            static_assert(std::size(gVAlignMap) > 2);
+            v->fVAlign = gVAlignMap[vj];
+            break;
+        case 3:
+            // 'sk_vj': 3 -> kHybridCenter/kScaleToFit
+            v->fVAlign = Shaper::VAlign::kHybridCenter;
+            v->fResize = Shaper::ResizePolicy::kScaleToFit;
+            break;
+        case 4:
+            // 'sk_vj': 4 -> kHybridCenter/kDownscaleToFit
+            v->fVAlign = Shaper::VAlign::kHybridCenter;
+            v->fResize = Shaper::ResizePolicy::kDownscaleToFit;
+            break;
+        default:
+            abuilder.log(Logger::Level::kWarning, nullptr,
+                         "Ignoring unknown 'sk_vj' value: %zu", vj);
+            break;
         }
     }
 
diff --git a/resources/skottie/skottie-text-valign-visual-2.json b/resources/skottie/skottie-text-valign-visual-2.json
new file mode 100644
index 0000000..394a006
--- /dev/null
+++ b/resources/skottie/skottie-text-valign-visual-2.json
@@ -0,0 +1,9268 @@
+{
+  "assets": [],
+  "chars": [
+    {
+      "ch": "F",
+      "data": {
+        "shapes": [
+          {
+            "bm": 0,
+            "cix": 2,
+            "hd": false,
+            "it": [
+              {
+                "hd": false,
+                "ind": 0,
+                "ix": 1,
+                "ks": {
+                  "a": 0,
+                  "ix": 2,
+                  "k": {
+                    "c": true,
+                    "i": [
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ]
+                    ],
+                    "o": [
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ]
+                    ],
+                    "v": [
+                      [
+                        17.676,
+                        0
+                      ],
+                      [
+                        17.676,
+                        -32.52
+                      ],
+                      [
+                        51.27,
+                        -32.52
+                      ],
+                      [
+                        51.27,
+                        -40.967
+                      ],
+                      [
+                        17.676,
+                        -40.967
+                      ],
+                      [
+                        17.676,
+                        -63.135
+                      ],
+                      [
+                        56.494,
+                        -63.135
+                      ],
+                      [
+                        56.494,
+                        -71.582
+                      ],
+                      [
+                        8.203,
+                        -71.582
+                      ],
+                      [
+                        8.203,
+                        0
+                      ]
+                    ]
+                  }
+                },
+                "mn": "ADBE Vector Shape - Group",
+                "nm": "F",
+                "ty": "sh"
+              }
+            ],
+            "ix": 1,
+            "mn": "ADBE Vector Group",
+            "nm": "F",
+            "np": 3,
+            "ty": "gr"
+          }
+        ]
+      },
+      "fFamily": "Arial",
+      "size": 12,
+      "style": "Regular",
+      "w": 61.08
+    },
+    {
+      "ch": "i",
+      "data": {
+        "shapes": [
+          {
+            "bm": 0,
+            "cix": 2,
+            "hd": false,
+            "it": [
+              {
+                "hd": false,
+                "ind": 0,
+                "ix": 1,
+                "ks": {
+                  "a": 0,
+                  "ix": 2,
+                  "k": {
+                    "c": true,
+                    "i": [
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ]
+                    ],
+                    "o": [
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ]
+                    ],
+                    "v": [
+                      [
+                        15.43,
+                        -61.475
+                      ],
+                      [
+                        15.43,
+                        -71.582
+                      ],
+                      [
+                        6.641,
+                        -71.582
+                      ],
+                      [
+                        6.641,
+                        -61.475
+                      ]
+                    ]
+                  }
+                },
+                "mn": "ADBE Vector Shape - Group",
+                "nm": "i",
+                "ty": "sh"
+              },
+              {
+                "hd": false,
+                "ind": 1,
+                "ix": 2,
+                "ks": {
+                  "a": 0,
+                  "ix": 2,
+                  "k": {
+                    "c": true,
+                    "i": [
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ]
+                    ],
+                    "o": [
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ]
+                    ],
+                    "v": [
+                      [
+                        15.43,
+                        0
+                      ],
+                      [
+                        15.43,
+                        -51.855
+                      ],
+                      [
+                        6.641,
+                        -51.855
+                      ],
+                      [
+                        6.641,
+                        0
+                      ]
+                    ]
+                  }
+                },
+                "mn": "ADBE Vector Shape - Group",
+                "nm": "i",
+                "ty": "sh"
+              }
+            ],
+            "ix": 1,
+            "mn": "ADBE Vector Group",
+            "nm": "i",
+            "np": 5,
+            "ty": "gr"
+          }
+        ]
+      },
+      "fFamily": "Arial",
+      "size": 12,
+      "style": "Regular",
+      "w": 22.22
+    },
+    {
+      "ch": "r",
+      "data": {
+        "shapes": [
+          {
+            "bm": 0,
+            "cix": 2,
+            "hd": false,
+            "it": [
+              {
+                "hd": false,
+                "ind": 0,
+                "ix": 1,
+                "ks": {
+                  "a": 0,
+                  "ix": 2,
+                  "k": {
+                    "c": true,
+                    "i": [
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        -0.977,
+                        3.125
+                      ],
+                      [
+                        -1.53,
+                        1.156
+                      ],
+                      [
+                        -1.921,
+                        0
+                      ],
+                      [
+                        -2.148,
+                        -1.27
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        2.962,
+                        0
+                      ],
+                      [
+                        1.709,
+                        -1.172
+                      ],
+                      [
+                        2.018,
+                        -3.678
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ]
+                    ],
+                    "o": [
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        -3.711
+                      ],
+                      [
+                        0.651,
+                        -2.051
+                      ],
+                      [
+                        1.53,
+                        -1.155
+                      ],
+                      [
+                        2.148,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        -3.06,
+                        -1.888
+                      ],
+                      [
+                        -2.051,
+                        0
+                      ],
+                      [
+                        -1.709,
+                        1.172
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ]
+                    ],
+                    "v": [
+                      [
+                        15.283,
+                        0
+                      ],
+                      [
+                        15.283,
+                        -27.148
+                      ],
+                      [
+                        16.748,
+                        -37.402
+                      ],
+                      [
+                        20.02,
+                        -42.212
+                      ],
+                      [
+                        25.195,
+                        -43.945
+                      ],
+                      [
+                        31.641,
+                        -42.041
+                      ],
+                      [
+                        34.668,
+                        -50.195
+                      ],
+                      [
+                        25.635,
+                        -53.027
+                      ],
+                      [
+                        19.995,
+                        -51.27
+                      ],
+                      [
+                        14.404,
+                        -43.994
+                      ],
+                      [
+                        14.404,
+                        -51.855
+                      ],
+                      [
+                        6.494,
+                        -51.855
+                      ],
+                      [
+                        6.494,
+                        0
+                      ]
+                    ]
+                  }
+                },
+                "mn": "ADBE Vector Shape - Group",
+                "nm": "r",
+                "ty": "sh"
+              }
+            ],
+            "ix": 1,
+            "mn": "ADBE Vector Group",
+            "nm": "r",
+            "np": 3,
+            "ty": "gr"
+          }
+        ]
+      },
+      "fFamily": "Arial",
+      "size": 12,
+      "style": "Regular",
+      "w": 33.3
+    },
+    {
+      "ch": "s",
+      "data": {
+        "shapes": [
+          {
+            "bm": 0,
+            "cix": 2,
+            "hd": false,
+            "it": [
+              {
+                "hd": false,
+                "ind": 0,
+                "ix": 1,
+                "ks": {
+                  "a": 0,
+                  "ix": 2,
+                  "k": {
+                    "c": true,
+                    "i": [
+                      [
+                        -3.532,
+                        -2.799
+                      ],
+                      [
+                        -6.738,
+                        0
+                      ],
+                      [
+                        -3.223,
+                        1.416
+                      ],
+                      [
+                        -1.709,
+                        2.588
+                      ],
+                      [
+                        0,
+                        2.93
+                      ],
+                      [
+                        1.399,
+                        2.019
+                      ],
+                      [
+                        2.457,
+                        1.058
+                      ],
+                      [
+                        6.217,
+                        1.66
+                      ],
+                      [
+                        0.879,
+                        0.326
+                      ],
+                      [
+                        0.716,
+                        0.945
+                      ],
+                      [
+                        0,
+                        1.14
+                      ],
+                      [
+                        -1.726,
+                        1.335
+                      ],
+                      [
+                        -4.037,
+                        0
+                      ],
+                      [
+                        -1.872,
+                        -1.497
+                      ],
+                      [
+                        -0.391,
+                        -2.669
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        1.465,
+                        2.002
+                      ],
+                      [
+                        3.076,
+                        1.172
+                      ],
+                      [
+                        4.069,
+                        0
+                      ],
+                      [
+                        2.36,
+                        -0.7
+                      ],
+                      [
+                        1.367,
+                        -1.009
+                      ],
+                      [
+                        1.057,
+                        -1.969
+                      ],
+                      [
+                        0,
+                        -2.311
+                      ],
+                      [
+                        -1.286,
+                        -2.1
+                      ],
+                      [
+                        -2.49,
+                        -1.188
+                      ],
+                      [
+                        -6.445,
+                        -1.627
+                      ],
+                      [
+                        -1.205,
+                        -0.781
+                      ],
+                      [
+                        0,
+                        -1.985
+                      ],
+                      [
+                        1.953,
+                        -1.643
+                      ],
+                      [
+                        4.036,
+                        0
+                      ],
+                      [
+                        2.229,
+                        1.855
+                      ],
+                      [
+                        0.488,
+                        3.484
+                      ],
+                      [
+                        0,
+                        0
+                      ]
+                    ],
+                    "o": [
+                      [
+                        3.532,
+                        2.8
+                      ],
+                      [
+                        4.069,
+                        0
+                      ],
+                      [
+                        3.223,
+                        -1.416
+                      ],
+                      [
+                        1.709,
+                        -2.588
+                      ],
+                      [
+                        0,
+                        -2.995
+                      ],
+                      [
+                        -1.4,
+                        -2.018
+                      ],
+                      [
+                        -2.458,
+                        -1.057
+                      ],
+                      [
+                        -4.297,
+                        -1.172
+                      ],
+                      [
+                        -1.53,
+                        -0.618
+                      ],
+                      [
+                        -0.716,
+                        -0.911
+                      ],
+                      [
+                        0,
+                        -1.79
+                      ],
+                      [
+                        1.725,
+                        -1.334
+                      ],
+                      [
+                        3.418,
+                        0
+                      ],
+                      [
+                        1.871,
+                        1.498
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        -0.554,
+                        -3.352
+                      ],
+                      [
+                        -1.465,
+                        -2.002
+                      ],
+                      [
+                        -3.076,
+                        -1.172
+                      ],
+                      [
+                        -2.702,
+                        0
+                      ],
+                      [
+                        -2.361,
+                        0.7
+                      ],
+                      [
+                        -1.823,
+                        1.302
+                      ],
+                      [
+                        -1.058,
+                        1.97
+                      ],
+                      [
+                        0,
+                        2.539
+                      ],
+                      [
+                        1.286,
+                        2.1
+                      ],
+                      [
+                        2.49,
+                        1.189
+                      ],
+                      [
+                        4.785,
+                        1.205
+                      ],
+                      [
+                        1.725,
+                        1.14
+                      ],
+                      [
+                        0,
+                        2.214
+                      ],
+                      [
+                        -1.953,
+                        1.644
+                      ],
+                      [
+                        -4.004,
+                        0
+                      ],
+                      [
+                        -2.23,
+                        -1.855
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0.977,
+                        5.502
+                      ]
+                    ],
+                    "v": [
+                      [
+                        9.839,
+                        -3.027
+                      ],
+                      [
+                        25.244,
+                        1.172
+                      ],
+                      [
+                        36.182,
+                        -0.952
+                      ],
+                      [
+                        43.579,
+                        -6.958
+                      ],
+                      [
+                        46.143,
+                        -15.234
+                      ],
+                      [
+                        44.043,
+                        -22.754
+                      ],
+                      [
+                        38.257,
+                        -27.368
+                      ],
+                      [
+                        25.244,
+                        -31.445
+                      ],
+                      [
+                        17.48,
+                        -33.691
+                      ],
+                      [
+                        14.111,
+                        -36.035
+                      ],
+                      [
+                        13.037,
+                        -39.111
+                      ],
+                      [
+                        15.625,
+                        -43.799
+                      ],
+                      [
+                        24.268,
+                        -45.801
+                      ],
+                      [
+                        32.202,
+                        -43.555
+                      ],
+                      [
+                        35.596,
+                        -37.305
+                      ],
+                      [
+                        44.189,
+                        -38.477
+                      ],
+                      [
+                        41.162,
+                        -46.509
+                      ],
+                      [
+                        34.351,
+                        -51.27
+                      ],
+                      [
+                        23.633,
+                        -53.027
+                      ],
+                      [
+                        16.04,
+                        -51.978
+                      ],
+                      [
+                        10.449,
+                        -49.414
+                      ],
+                      [
+                        6.128,
+                        -44.507
+                      ],
+                      [
+                        4.541,
+                        -38.086
+                      ],
+                      [
+                        6.47,
+                        -31.128
+                      ],
+                      [
+                        12.134,
+                        -26.196
+                      ],
+                      [
+                        25.537,
+                        -21.973
+                      ],
+                      [
+                        34.521,
+                        -18.994
+                      ],
+                      [
+                        37.109,
+                        -14.307
+                      ],
+                      [
+                        34.18,
+                        -8.521
+                      ],
+                      [
+                        25.195,
+                        -6.055
+                      ],
+                      [
+                        15.845,
+                        -8.838
+                      ],
+                      [
+                        11.768,
+                        -16.846
+                      ],
+                      [
+                        3.076,
+                        -15.479
+                      ]
+                    ]
+                  }
+                },
+                "mn": "ADBE Vector Shape - Group",
+                "nm": "s",
+                "ty": "sh"
+              }
+            ],
+            "ix": 1,
+            "mn": "ADBE Vector Group",
+            "nm": "s",
+            "np": 3,
+            "ty": "gr"
+          }
+        ]
+      },
+      "fFamily": "Arial",
+      "size": 12,
+      "style": "Regular",
+      "w": 50
+    },
+    {
+      "ch": "t",
+      "data": {
+        "shapes": [
+          {
+            "bm": 0,
+            "cix": 2,
+            "hd": false,
+            "it": [
+              {
+                "hd": false,
+                "ind": 0,
+                "ix": 1,
+                "ks": {
+                  "a": 0,
+                  "ix": 2,
+                  "k": {
+                    "c": true,
+                    "i": [
+                      [
+                        0.977,
+                        0
+                      ],
+                      [
+                        0.7,
+                        0.423
+                      ],
+                      [
+                        0.309,
+                        0.716
+                      ],
+                      [
+                        0,
+                        2.507
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        -0.716,
+                        -1.643
+                      ],
+                      [
+                        -1.758,
+                        -1.009
+                      ],
+                      [
+                        -3.191,
+                        0
+                      ],
+                      [
+                        -2.474,
+                        0.52
+                      ],
+                      [
+                        0,
+                        0
+                      ]
+                    ],
+                    "o": [
+                      [
+                        -1.302,
+                        0
+                      ],
+                      [
+                        -0.7,
+                        -0.423
+                      ],
+                      [
+                        -0.31,
+                        -0.716
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        5.273
+                      ],
+                      [
+                        0.716,
+                        1.644
+                      ],
+                      [
+                        1.758,
+                        1.009
+                      ],
+                      [
+                        1.953,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        -1.595,
+                        0.228
+                      ]
+                    ],
+                    "v": [
+                      [
+                        21.924,
+                        -7.52
+                      ],
+                      [
+                        18.921,
+                        -8.154
+                      ],
+                      [
+                        17.407,
+                        -9.863
+                      ],
+                      [
+                        16.943,
+                        -14.697
+                      ],
+                      [
+                        16.943,
+                        -45.02
+                      ],
+                      [
+                        25.781,
+                        -45.02
+                      ],
+                      [
+                        25.781,
+                        -51.855
+                      ],
+                      [
+                        16.943,
+                        -51.855
+                      ],
+                      [
+                        16.943,
+                        -69.971
+                      ],
+                      [
+                        8.203,
+                        -64.697
+                      ],
+                      [
+                        8.203,
+                        -51.855
+                      ],
+                      [
+                        1.758,
+                        -51.855
+                      ],
+                      [
+                        1.758,
+                        -45.02
+                      ],
+                      [
+                        8.203,
+                        -45.02
+                      ],
+                      [
+                        8.203,
+                        -15.186
+                      ],
+                      [
+                        9.277,
+                        -4.81
+                      ],
+                      [
+                        12.988,
+                        -0.83
+                      ],
+                      [
+                        20.41,
+                        0.684
+                      ],
+                      [
+                        27.051,
+                        -0.098
+                      ],
+                      [
+                        25.781,
+                        -7.861
+                      ]
+                    ]
+                  }
+                },
+                "mn": "ADBE Vector Shape - Group",
+                "nm": "t",
+                "ty": "sh"
+              }
+            ],
+            "ix": 1,
+            "mn": "ADBE Vector Group",
+            "nm": "t",
+            "np": 3,
+            "ty": "gr"
+          }
+        ]
+      },
+      "fFamily": "Arial",
+      "size": 12,
+      "style": "Regular",
+      "w": 27.78
+    },
+    {
+      "ch": " ",
+      "data": {},
+      "fFamily": "Arial",
+      "size": 12,
+      "style": "Regular",
+      "w": 27.78
+    },
+    {
+      "ch": "l",
+      "data": {
+        "shapes": [
+          {
+            "bm": 0,
+            "cix": 2,
+            "hd": false,
+            "it": [
+              {
+                "hd": false,
+                "ind": 0,
+                "ix": 1,
+                "ks": {
+                  "a": 0,
+                  "ix": 2,
+                  "k": {
+                    "c": true,
+                    "i": [
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ]
+                    ],
+                    "o": [
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ]
+                    ],
+                    "v": [
+                      [
+                        15.186,
+                        0
+                      ],
+                      [
+                        15.186,
+                        -71.582
+                      ],
+                      [
+                        6.396,
+                        -71.582
+                      ],
+                      [
+                        6.396,
+                        0
+                      ]
+                    ]
+                  }
+                },
+                "mn": "ADBE Vector Shape - Group",
+                "nm": "l",
+                "ty": "sh"
+              }
+            ],
+            "ix": 1,
+            "mn": "ADBE Vector Group",
+            "nm": "l",
+            "np": 3,
+            "ty": "gr"
+          }
+        ]
+      },
+      "fFamily": "Arial",
+      "size": 12,
+      "style": "Regular",
+      "w": 22.22
+    },
+    {
+      "ch": "n",
+      "data": {
+        "shapes": [
+          {
+            "bm": 0,
+            "cix": 2,
+            "hd": false,
+            "it": [
+              {
+                "hd": false,
+                "ind": 0,
+                "ix": 1,
+                "ks": {
+                  "a": 0,
+                  "ix": 2,
+                  "k": {
+                    "c": true,
+                    "i": [
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        -2.718,
+                        2.377
+                      ],
+                      [
+                        -3.744,
+                        0
+                      ],
+                      [
+                        -1.742,
+                        -1.057
+                      ],
+                      [
+                        -0.684,
+                        -1.774
+                      ],
+                      [
+                        0,
+                        -3.58
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0.325,
+                        1.628
+                      ],
+                      [
+                        1.302,
+                        1.823
+                      ],
+                      [
+                        2.62,
+                        1.123
+                      ],
+                      [
+                        3.125,
+                        0
+                      ],
+                      [
+                        3.809,
+                        -5.696
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ]
+                    ],
+                    "o": [
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        -6.641
+                      ],
+                      [
+                        2.718,
+                        -2.376
+                      ],
+                      [
+                        2.344,
+                        0
+                      ],
+                      [
+                        1.741,
+                        1.058
+                      ],
+                      [
+                        0.684,
+                        1.775
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        -4.069
+                      ],
+                      [
+                        -0.521,
+                        -2.506
+                      ],
+                      [
+                        -1.302,
+                        -1.823
+                      ],
+                      [
+                        -2.621,
+                        -1.123
+                      ],
+                      [
+                        -7.195,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ]
+                    ],
+                    "v": [
+                      [
+                        15.381,
+                        0
+                      ],
+                      [
+                        15.381,
+                        -28.32
+                      ],
+                      [
+                        19.458,
+                        -41.846
+                      ],
+                      [
+                        29.15,
+                        -45.41
+                      ],
+                      [
+                        35.278,
+                        -43.823
+                      ],
+                      [
+                        38.916,
+                        -39.575
+                      ],
+                      [
+                        39.941,
+                        -31.543
+                      ],
+                      [
+                        39.941,
+                        0
+                      ],
+                      [
+                        48.73,
+                        0
+                      ],
+                      [
+                        48.73,
+                        -31.885
+                      ],
+                      [
+                        48.242,
+                        -40.43
+                      ],
+                      [
+                        45.508,
+                        -46.924
+                      ],
+                      [
+                        39.624,
+                        -51.343
+                      ],
+                      [
+                        31.006,
+                        -53.027
+                      ],
+                      [
+                        14.502,
+                        -44.482
+                      ],
+                      [
+                        14.502,
+                        -51.855
+                      ],
+                      [
+                        6.592,
+                        -51.855
+                      ],
+                      [
+                        6.592,
+                        0
+                      ]
+                    ]
+                  }
+                },
+                "mn": "ADBE Vector Shape - Group",
+                "nm": "n",
+                "ty": "sh"
+              }
+            ],
+            "ix": 1,
+            "mn": "ADBE Vector Group",
+            "nm": "n",
+            "np": 3,
+            "ty": "gr"
+          }
+        ]
+      },
+      "fFamily": "Arial",
+      "size": 12,
+      "style": "Regular",
+      "w": 55.62
+    },
+    {
+      "ch": "É",
+      "data": {
+        "shapes": [
+          {
+            "bm": 0,
+            "cix": 2,
+            "hd": false,
+            "it": [
+              {
+                "hd": false,
+                "ind": 0,
+                "ix": 1,
+                "ks": {
+                  "a": 0,
+                  "ix": 2,
+                  "k": {
+                    "c": true,
+                    "i": [
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ]
+                    ],
+                    "o": [
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ]
+                    ],
+                    "v": [
+                      [
+                        61.328,
+                        0
+                      ],
+                      [
+                        61.328,
+                        -8.447
+                      ],
+                      [
+                        17.383,
+                        -8.447
+                      ],
+                      [
+                        17.383,
+                        -32.812
+                      ],
+                      [
+                        56.982,
+                        -32.812
+                      ],
+                      [
+                        56.982,
+                        -41.211
+                      ],
+                      [
+                        17.383,
+                        -41.211
+                      ],
+                      [
+                        17.383,
+                        -63.135
+                      ],
+                      [
+                        59.668,
+                        -63.135
+                      ],
+                      [
+                        59.668,
+                        -71.582
+                      ],
+                      [
+                        7.91,
+                        -71.582
+                      ],
+                      [
+                        7.91,
+                        0
+                      ]
+                    ]
+                  }
+                },
+                "mn": "ADBE Vector Shape - Group",
+                "nm": "É",
+                "ty": "sh"
+              },
+              {
+                "hd": false,
+                "ind": 1,
+                "ix": 2,
+                "ks": {
+                  "a": 0,
+                  "ix": 2,
+                  "k": {
+                    "c": true,
+                    "i": [
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ]
+                    ],
+                    "o": [
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ]
+                    ],
+                    "v": [
+                      [
+                        34.717,
+                        -75.977
+                      ],
+                      [
+                        45.459,
+                        -89.648
+                      ],
+                      [
+                        33.936,
+                        -89.648
+                      ],
+                      [
+                        27.441,
+                        -75.977
+                      ]
+                    ]
+                  }
+                },
+                "mn": "ADBE Vector Shape - Group",
+                "nm": "É",
+                "ty": "sh"
+              }
+            ],
+            "ix": 1,
+            "mn": "ADBE Vector Group",
+            "nm": "É",
+            "np": 5,
+            "ty": "gr"
+          }
+        ]
+      },
+      "fFamily": "Arial",
+      "size": 12,
+      "style": "Regular",
+      "w": 66.7
+    },
+    {
+      "ch": ".",
+      "data": {
+        "shapes": [
+          {
+            "bm": 0,
+            "cix": 2,
+            "hd": false,
+            "it": [
+              {
+                "hd": false,
+                "ind": 0,
+                "ix": 1,
+                "ks": {
+                  "a": 0,
+                  "ix": 2,
+                  "k": {
+                    "c": true,
+                    "i": [
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ]
+                    ],
+                    "o": [
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ]
+                    ],
+                    "v": [
+                      [
+                        19.092,
+                        0
+                      ],
+                      [
+                        19.092,
+                        -10.01
+                      ],
+                      [
+                        9.082,
+                        -10.01
+                      ],
+                      [
+                        9.082,
+                        0
+                      ]
+                    ]
+                  }
+                },
+                "mn": "ADBE Vector Shape - Group",
+                "nm": ".",
+                "ty": "sh"
+              }
+            ],
+            "ix": 1,
+            "mn": "ADBE Vector Group",
+            "nm": ".",
+            "np": 3,
+            "ty": "gr"
+          }
+        ]
+      },
+      "fFamily": "Arial",
+      "size": 12,
+      "style": "Regular",
+      "w": 27.78
+    },
+    {
+      "ch": "\r",
+      "fFamily": "Arial",
+      "size": 12,
+      "style": "Regular",
+      "w": 0
+    },
+    {
+      "ch": "S",
+      "data": {
+        "shapes": [
+          {
+            "bm": 0,
+            "cix": 2,
+            "hd": false,
+            "it": [
+              {
+                "hd": false,
+                "ind": 0,
+                "ix": 1,
+                "ks": {
+                  "a": 0,
+                  "ix": 2,
+                  "k": {
+                    "c": true,
+                    "i": [
+                      [
+                        -2.49,
+                        -3.792
+                      ],
+                      [
+                        -4.379,
+                        -1.888
+                      ],
+                      [
+                        -6.478,
+                        0
+                      ],
+                      [
+                        -4.086,
+                        1.871
+                      ],
+                      [
+                        -2.181,
+                        3.369
+                      ],
+                      [
+                        0,
+                        3.809
+                      ],
+                      [
+                        1.985,
+                        2.946
+                      ],
+                      [
+                        4.166,
+                        1.921
+                      ],
+                      [
+                        7.698,
+                        1.742
+                      ],
+                      [
+                        1.823,
+                        1.66
+                      ],
+                      [
+                        0,
+                        2.572
+                      ],
+                      [
+                        -2.621,
+                        2.1
+                      ],
+                      [
+                        -5.73,
+                        0
+                      ],
+                      [
+                        -2.816,
+                        -2.311
+                      ],
+                      [
+                        -0.488,
+                        -4.524
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        2.18,
+                        3.32
+                      ],
+                      [
+                        4.053,
+                        1.709
+                      ],
+                      [
+                        5.305,
+                        0
+                      ],
+                      [
+                        3.938,
+                        -1.627
+                      ],
+                      [
+                        2.051,
+                        -3.141
+                      ],
+                      [
+                        0,
+                        -3.613
+                      ],
+                      [
+                        -1.677,
+                        -2.653
+                      ],
+                      [
+                        -3.418,
+                        -1.79
+                      ],
+                      [
+                        -6.576,
+                        -1.579
+                      ],
+                      [
+                        -1.921,
+                        -0.748
+                      ],
+                      [
+                        -1.302,
+                        -1.676
+                      ],
+                      [
+                        0,
+                        -2.246
+                      ],
+                      [
+                        1.35,
+                        -1.871
+                      ],
+                      [
+                        2.766,
+                        -1.074
+                      ],
+                      [
+                        3.613,
+                        0
+                      ],
+                      [
+                        3.255,
+                        1.416
+                      ],
+                      [
+                        1.546,
+                        2.295
+                      ],
+                      [
+                        0.423,
+                        3.581
+                      ],
+                      [
+                        0,
+                        0
+                      ]
+                    ],
+                    "o": [
+                      [
+                        2.49,
+                        3.793
+                      ],
+                      [
+                        4.378,
+                        1.888
+                      ],
+                      [
+                        5.11,
+                        0
+                      ],
+                      [
+                        4.085,
+                        -1.871
+                      ],
+                      [
+                        2.18,
+                        -3.369
+                      ],
+                      [
+                        0,
+                        -3.841
+                      ],
+                      [
+                        -1.986,
+                        -2.946
+                      ],
+                      [
+                        -2.865,
+                        -1.302
+                      ],
+                      [
+                        -7.699,
+                        -1.741
+                      ],
+                      [
+                        -1.855,
+                        -1.66
+                      ],
+                      [
+                        0,
+                        -2.962
+                      ],
+                      [
+                        2.62,
+                        -2.1
+                      ],
+                      [
+                        5.501,
+                        0
+                      ],
+                      [
+                        2.815,
+                        2.312
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        -0.163,
+                        -4.199
+                      ],
+                      [
+                        -2.181,
+                        -3.32
+                      ],
+                      [
+                        -4.053,
+                        -1.709
+                      ],
+                      [
+                        -4.818,
+                        0
+                      ],
+                      [
+                        -3.939,
+                        1.628
+                      ],
+                      [
+                        -2.051,
+                        3.142
+                      ],
+                      [
+                        0,
+                        3.288
+                      ],
+                      [
+                        1.676,
+                        2.654
+                      ],
+                      [
+                        2.637,
+                        1.4
+                      ],
+                      [
+                        6.575,
+                        1.579
+                      ],
+                      [
+                        2.995,
+                        1.14
+                      ],
+                      [
+                        1.302,
+                        1.677
+                      ],
+                      [
+                        0,
+                        2.214
+                      ],
+                      [
+                        -1.351,
+                        1.872
+                      ],
+                      [
+                        -2.767,
+                        1.074
+                      ],
+                      [
+                        -4.07,
+                        0
+                      ],
+                      [
+                        -3.255,
+                        -1.416
+                      ],
+                      [
+                        -1.546,
+                        -2.295
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0.13,
+                        4.785
+                      ]
+                    ],
+                    "v": [
+                      [
+                        8.423,
+                        -10.132
+                      ],
+                      [
+                        18.726,
+                        -1.611
+                      ],
+                      [
+                        35.01,
+                        1.221
+                      ],
+                      [
+                        48.804,
+                        -1.587
+                      ],
+                      [
+                        58.203,
+                        -9.448
+                      ],
+                      [
+                        61.475,
+                        -20.215
+                      ],
+                      [
+                        58.496,
+                        -30.396
+                      ],
+                      [
+                        49.268,
+                        -37.695
+                      ],
+                      [
+                        33.423,
+                        -42.261
+                      ],
+                      [
+                        19.141,
+                        -47.363
+                      ],
+                      [
+                        16.357,
+                        -53.711
+                      ],
+                      [
+                        20.288,
+                        -61.304
+                      ],
+                      [
+                        32.812,
+                        -64.453
+                      ],
+                      [
+                        45.288,
+                        -60.986
+                      ],
+                      [
+                        50.244,
+                        -50.732
+                      ],
+                      [
+                        59.326,
+                        -51.416
+                      ],
+                      [
+                        55.811,
+                        -62.695
+                      ],
+                      [
+                        46.46,
+                        -70.239
+                      ],
+                      [
+                        32.422,
+                        -72.803
+                      ],
+                      [
+                        19.287,
+                        -70.361
+                      ],
+                      [
+                        10.303,
+                        -63.208
+                      ],
+                      [
+                        7.227,
+                        -53.076
+                      ],
+                      [
+                        9.741,
+                        -44.165
+                      ],
+                      [
+                        17.383,
+                        -37.5
+                      ],
+                      [
+                        31.201,
+                        -33.032
+                      ],
+                      [
+                        43.945,
+                        -29.541
+                      ],
+                      [
+                        50.391,
+                        -25.317
+                      ],
+                      [
+                        52.344,
+                        -19.434
+                      ],
+                      [
+                        50.317,
+                        -13.306
+                      ],
+                      [
+                        44.141,
+                        -8.887
+                      ],
+                      [
+                        34.57,
+                        -7.275
+                      ],
+                      [
+                        23.584,
+                        -9.399
+                      ],
+                      [
+                        16.382,
+                        -14.966
+                      ],
+                      [
+                        13.428,
+                        -23.779
+                      ],
+                      [
+                        4.492,
+                        -22.998
+                      ]
+                    ]
+                  }
+                },
+                "mn": "ADBE Vector Shape - Group",
+                "nm": "S",
+                "ty": "sh"
+              }
+            ],
+            "ix": 1,
+            "mn": "ADBE Vector Group",
+            "nm": "S",
+            "np": 3,
+            "ty": "gr"
+          }
+        ]
+      },
+      "fFamily": "Arial",
+      "size": 12,
+      "style": "Regular",
+      "w": 66.7
+    },
+    {
+      "ch": "e",
+      "data": {
+        "shapes": [
+          {
+            "bm": 0,
+            "cix": 2,
+            "hd": false,
+            "it": [
+              {
+                "hd": false,
+                "ind": 0,
+                "ix": 1,
+                "ks": {
+                  "a": 0,
+                  "ix": 2,
+                  "k": {
+                    "c": true,
+                    "i": [
+                      [
+                        2.278,
+                        -1.692
+                      ],
+                      [
+                        3.223,
+                        0
+                      ],
+                      [
+                        2.897,
+                        3.027
+                      ],
+                      [
+                        0.325,
+                        5.697
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0.521
+                      ],
+                      [
+                        4.395,
+                        4.72
+                      ],
+                      [
+                        6.934,
+                        0
+                      ],
+                      [
+                        4.492,
+                        -4.817
+                      ],
+                      [
+                        0,
+                        -8.723
+                      ],
+                      [
+                        -4.443,
+                        -4.671
+                      ],
+                      [
+                        -7.585,
+                        0
+                      ],
+                      [
+                        -3.874,
+                        2.93
+                      ],
+                      [
+                        -1.433,
+                        5.306
+                      ],
+                      [
+                        0,
+                        0
+                      ]
+                    ],
+                    "o": [
+                      [
+                        -2.279,
+                        1.693
+                      ],
+                      [
+                        -4.33,
+                        0
+                      ],
+                      [
+                        -2.898,
+                        -3.027
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0.032,
+                        -1.041
+                      ],
+                      [
+                        0,
+                        -8.561
+                      ],
+                      [
+                        -4.395,
+                        -4.72
+                      ],
+                      [
+                        -7.162,
+                        0
+                      ],
+                      [
+                        -4.492,
+                        4.818
+                      ],
+                      [
+                        0,
+                        8.431
+                      ],
+                      [
+                        4.443,
+                        4.671
+                      ],
+                      [
+                        6.022,
+                        0
+                      ],
+                      [
+                        3.873,
+                        -2.93
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        -1.335,
+                        3.711
+                      ]
+                    ],
+                    "v": [
+                      [
+                        36.67,
+                        -8.594
+                      ],
+                      [
+                        28.418,
+                        -6.055
+                      ],
+                      [
+                        17.578,
+                        -10.596
+                      ],
+                      [
+                        12.744,
+                        -23.682
+                      ],
+                      [
+                        51.416,
+                        -23.682
+                      ],
+                      [
+                        51.465,
+                        -26.025
+                      ],
+                      [
+                        44.873,
+                        -45.947
+                      ],
+                      [
+                        27.881,
+                        -53.027
+                      ],
+                      [
+                        10.4,
+                        -45.801
+                      ],
+                      [
+                        3.662,
+                        -25.488
+                      ],
+                      [
+                        10.327,
+                        -5.835
+                      ],
+                      [
+                        28.369,
+                        1.172
+                      ],
+                      [
+                        43.213,
+                        -3.223
+                      ],
+                      [
+                        51.172,
+                        -15.576
+                      ],
+                      [
+                        42.09,
+                        -16.699
+                      ]
+                    ]
+                  }
+                },
+                "mn": "ADBE Vector Shape - Group",
+                "nm": "e",
+                "ty": "sh"
+              },
+              {
+                "hd": false,
+                "ind": 1,
+                "ix": 2,
+                "ks": {
+                  "a": 0,
+                  "ix": 2,
+                  "k": {
+                    "c": true,
+                    "i": [
+                      [
+                        -2.751,
+                        2.702
+                      ],
+                      [
+                        -4.037,
+                        0
+                      ],
+                      [
+                        -2.8,
+                        -3.385
+                      ],
+                      [
+                        -0.391,
+                        -4.362
+                      ],
+                      [
+                        0,
+                        0
+                      ]
+                    ],
+                    "o": [
+                      [
+                        2.75,
+                        -2.702
+                      ],
+                      [
+                        4.459,
+                        0
+                      ],
+                      [
+                        1.823,
+                        2.181
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0.293,
+                        -4.524
+                      ]
+                    ],
+                    "v": [
+                      [
+                        17.798,
+                        -41.748
+                      ],
+                      [
+                        27.979,
+                        -45.801
+                      ],
+                      [
+                        38.867,
+                        -40.723
+                      ],
+                      [
+                        42.188,
+                        -30.908
+                      ],
+                      [
+                        13.232,
+                        -30.908
+                      ]
+                    ]
+                  }
+                },
+                "mn": "ADBE Vector Shape - Group",
+                "nm": "e",
+                "ty": "sh"
+              }
+            ],
+            "ix": 1,
+            "mn": "ADBE Vector Group",
+            "nm": "e",
+            "np": 5,
+            "ty": "gr"
+          }
+        ]
+      },
+      "fFamily": "Arial",
+      "size": 12,
+      "style": "Regular",
+      "w": 55.62
+    },
+    {
+      "ch": "c",
+      "data": {
+        "shapes": [
+          {
+            "bm": 0,
+            "cix": 2,
+            "hd": false,
+            "it": [
+              {
+                "hd": false,
+                "ind": 0,
+                "ix": 1,
+                "ks": {
+                  "a": 0,
+                  "ix": 2,
+                  "k": {
+                    "c": true,
+                    "i": [
+                      [
+                        2.311,
+                        -2.116
+                      ],
+                      [
+                        3.45,
+                        0
+                      ],
+                      [
+                        2.669,
+                        3.158
+                      ],
+                      [
+                        0,
+                        6.966
+                      ],
+                      [
+                        -2.767,
+                        3.174
+                      ],
+                      [
+                        -4.427,
+                        0
+                      ],
+                      [
+                        -2.068,
+                        -1.758
+                      ],
+                      [
+                        -0.814,
+                        -3.483
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        3.58,
+                        2.849
+                      ],
+                      [
+                        5.631,
+                        0
+                      ],
+                      [
+                        3.792,
+                        -2.1
+                      ],
+                      [
+                        1.855,
+                        -4.199
+                      ],
+                      [
+                        0,
+                        -5.598
+                      ],
+                      [
+                        -4.314,
+                        -4.639
+                      ],
+                      [
+                        -7.097,
+                        0
+                      ],
+                      [
+                        -3.89,
+                        3.369
+                      ],
+                      [
+                        -0.945,
+                        5.957
+                      ],
+                      [
+                        0,
+                        0
+                      ]
+                    ],
+                    "o": [
+                      [
+                        -2.312,
+                        2.116
+                      ],
+                      [
+                        -4.297,
+                        0
+                      ],
+                      [
+                        -2.67,
+                        -3.157
+                      ],
+                      [
+                        0,
+                        -6.868
+                      ],
+                      [
+                        2.766,
+                        -3.174
+                      ],
+                      [
+                        2.93,
+                        0
+                      ],
+                      [
+                        2.067,
+                        1.758
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        -1.009,
+                        -5.241
+                      ],
+                      [
+                        -3.581,
+                        -2.848
+                      ],
+                      [
+                        -4.46,
+                        0
+                      ],
+                      [
+                        -3.793,
+                        2.1
+                      ],
+                      [
+                        -1.855,
+                        4.199
+                      ],
+                      [
+                        0,
+                        8.659
+                      ],
+                      [
+                        4.313,
+                        4.639
+                      ],
+                      [
+                        5.664,
+                        0
+                      ],
+                      [
+                        3.889,
+                        -3.369
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        -0.619,
+                        4.395
+                      ]
+                    ],
+                    "v": [
+                      [
+                        36.035,
+                        -9.229
+                      ],
+                      [
+                        27.393,
+                        -6.055
+                      ],
+                      [
+                        16.943,
+                        -10.791
+                      ],
+                      [
+                        12.939,
+                        -25.977
+                      ],
+                      [
+                        17.09,
+                        -41.04
+                      ],
+                      [
+                        27.881,
+                        -45.801
+                      ],
+                      [
+                        35.376,
+                        -43.164
+                      ],
+                      [
+                        39.697,
+                        -35.303
+                      ],
+                      [
+                        48.242,
+                        -36.621
+                      ],
+                      [
+                        41.357,
+                        -48.755
+                      ],
+                      [
+                        27.539,
+                        -53.027
+                      ],
+                      [
+                        15.161,
+                        -49.878
+                      ],
+                      [
+                        6.689,
+                        -40.43
+                      ],
+                      [
+                        3.906,
+                        -25.732
+                      ],
+                      [
+                        10.376,
+                        -5.786
+                      ],
+                      [
+                        27.49,
+                        1.172
+                      ],
+                      [
+                        41.821,
+                        -3.882
+                      ],
+                      [
+                        49.072,
+                        -17.871
+                      ],
+                      [
+                        40.43,
+                        -18.994
+                      ]
+                    ]
+                  }
+                },
+                "mn": "ADBE Vector Shape - Group",
+                "nm": "c",
+                "ty": "sh"
+              }
+            ],
+            "ix": 1,
+            "mn": "ADBE Vector Group",
+            "nm": "c",
+            "np": 3,
+            "ty": "gr"
+          }
+        ]
+      },
+      "fFamily": "Arial",
+      "size": 12,
+      "style": "Regular",
+      "w": 50
+    },
+    {
+      "ch": "o",
+      "data": {
+        "shapes": [
+          {
+            "bm": 0,
+            "cix": 2,
+            "hd": false,
+            "it": [
+              {
+                "hd": false,
+                "ind": 0,
+                "ix": 1,
+                "ks": {
+                  "a": 0,
+                  "ix": 2,
+                  "k": {
+                    "c": true,
+                    "i": [
+                      [
+                        -4.476,
+                        -4.655
+                      ],
+                      [
+                        -7.259,
+                        0
+                      ],
+                      [
+                        -3.825,
+                        2.116
+                      ],
+                      [
+                        -2.002,
+                        3.825
+                      ],
+                      [
+                        0,
+                        6.673
+                      ],
+                      [
+                        4.524,
+                        4.671
+                      ],
+                      [
+                        7.129,
+                        0
+                      ],
+                      [
+                        4.459,
+                        -3.841
+                      ],
+                      [
+                        0,
+                        -9.602
+                      ]
+                    ],
+                    "o": [
+                      [
+                        4.475,
+                        4.655
+                      ],
+                      [
+                        4.524,
+                        0
+                      ],
+                      [
+                        3.825,
+                        -2.116
+                      ],
+                      [
+                        2.002,
+                        -3.825
+                      ],
+                      [
+                        0,
+                        -8.235
+                      ],
+                      [
+                        -4.525,
+                        -4.671
+                      ],
+                      [
+                        -6.413,
+                        0
+                      ],
+                      [
+                        -5.339,
+                        4.623
+                      ],
+                      [
+                        0,
+                        8.757
+                      ]
+                    ],
+                    "v": [
+                      [
+                        10.034,
+                        -5.811
+                      ],
+                      [
+                        27.637,
+                        1.172
+                      ],
+                      [
+                        40.161,
+                        -2.002
+                      ],
+                      [
+                        48.901,
+                        -10.913
+                      ],
+                      [
+                        51.904,
+                        -26.66
+                      ],
+                      [
+                        45.117,
+                        -46.021
+                      ],
+                      [
+                        27.637,
+                        -53.027
+                      ],
+                      [
+                        11.328,
+                        -47.266
+                      ],
+                      [
+                        3.32,
+                        -25.928
+                      ]
+                    ]
+                  }
+                },
+                "mn": "ADBE Vector Shape - Group",
+                "nm": "o",
+                "ty": "sh"
+              },
+              {
+                "hd": false,
+                "ind": 1,
+                "ix": 2,
+                "ks": {
+                  "a": 0,
+                  "ix": 2,
+                  "k": {
+                    "c": true,
+                    "i": [
+                      [
+                        -2.898,
+                        3.288
+                      ],
+                      [
+                        -4.395,
+                        0
+                      ],
+                      [
+                        -2.914,
+                        -3.304
+                      ],
+                      [
+                        0,
+                        -6.413
+                      ],
+                      [
+                        2.897,
+                        -3.32
+                      ],
+                      [
+                        4.362,
+                        0
+                      ],
+                      [
+                        2.897,
+                        3.304
+                      ],
+                      [
+                        0,
+                        6.641
+                      ]
+                    ],
+                    "o": [
+                      [
+                        2.897,
+                        -3.288
+                      ],
+                      [
+                        4.329,
+                        0
+                      ],
+                      [
+                        2.913,
+                        3.304
+                      ],
+                      [
+                        0,
+                        6.804
+                      ],
+                      [
+                        -2.898,
+                        3.32
+                      ],
+                      [
+                        -4.395,
+                        0
+                      ],
+                      [
+                        -2.898,
+                        -3.304
+                      ],
+                      [
+                        0,
+                        -6.641
+                      ]
+                    ],
+                    "v": [
+                      [
+                        16.699,
+                        -40.82
+                      ],
+                      [
+                        27.637,
+                        -45.752
+                      ],
+                      [
+                        38.501,
+                        -40.796
+                      ],
+                      [
+                        42.871,
+                        -26.221
+                      ],
+                      [
+                        38.525,
+                        -11.035
+                      ],
+                      [
+                        27.637,
+                        -6.055
+                      ],
+                      [
+                        16.699,
+                        -11.011
+                      ],
+                      [
+                        12.354,
+                        -25.928
+                      ]
+                    ]
+                  }
+                },
+                "mn": "ADBE Vector Shape - Group",
+                "nm": "o",
+                "ty": "sh"
+              }
+            ],
+            "ix": 1,
+            "mn": "ADBE Vector Group",
+            "nm": "o",
+            "np": 5,
+            "ty": "gr"
+          }
+        ]
+      },
+      "fFamily": "Arial",
+      "size": 12,
+      "style": "Regular",
+      "w": 55.62
+    },
+    {
+      "ch": "d",
+      "data": {
+        "shapes": [
+          {
+            "bm": 0,
+            "cix": 2,
+            "hd": false,
+            "it": [
+              {
+                "hd": false,
+                "ind": 0,
+                "ix": 1,
+                "ks": {
+                  "a": 0,
+                  "ix": 2,
+                  "k": {
+                    "c": true,
+                    "i": [
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        2.441,
+                        1.318
+                      ],
+                      [
+                        3.125,
+                        0
+                      ],
+                      [
+                        3.45,
+                        -2.246
+                      ],
+                      [
+                        1.725,
+                        -4.215
+                      ],
+                      [
+                        0,
+                        -5.176
+                      ],
+                      [
+                        -1.904,
+                        -4.085
+                      ],
+                      [
+                        -3.467,
+                        -2.278
+                      ],
+                      [
+                        -4.134,
+                        0
+                      ],
+                      [
+                        -3.288,
+                        5.144
+                      ],
+                      [
+                        0,
+                        0
+                      ]
+                    ],
+                    "o": [
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        -1.53,
+                        -2.116
+                      ],
+                      [
+                        -2.441,
+                        -1.318
+                      ],
+                      [
+                        -4.265,
+                        0
+                      ],
+                      [
+                        -3.451,
+                        2.246
+                      ],
+                      [
+                        -1.726,
+                        4.216
+                      ],
+                      [
+                        0,
+                        5.306
+                      ],
+                      [
+                        1.904,
+                        4.086
+                      ],
+                      [
+                        3.467,
+                        2.278
+                      ],
+                      [
+                        6.38,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ]
+                    ],
+                    "v": [
+                      [
+                        48.389,
+                        0
+                      ],
+                      [
+                        48.389,
+                        -71.582
+                      ],
+                      [
+                        39.648,
+                        -71.582
+                      ],
+                      [
+                        39.648,
+                        -45.898
+                      ],
+                      [
+                        33.691,
+                        -51.05
+                      ],
+                      [
+                        25.342,
+                        -53.027
+                      ],
+                      [
+                        13.77,
+                        -49.658
+                      ],
+                      [
+                        6.006,
+                        -39.966
+                      ],
+                      [
+                        3.418,
+                        -25.879
+                      ],
+                      [
+                        6.274,
+                        -11.792
+                      ],
+                      [
+                        14.331,
+                        -2.246
+                      ],
+                      [
+                        25.732,
+                        1.172
+                      ],
+                      [
+                        40.234,
+                        -6.543
+                      ],
+                      [
+                        40.234,
+                        0
+                      ]
+                    ]
+                  }
+                },
+                "mn": "ADBE Vector Shape - Group",
+                "nm": "d",
+                "ty": "sh"
+              },
+              {
+                "hd": false,
+                "ind": 1,
+                "ix": 2,
+                "ks": {
+                  "a": 0,
+                  "ix": 2,
+                  "k": {
+                    "c": true,
+                    "i": [
+                      [
+                        -2.621,
+                        3.191
+                      ],
+                      [
+                        -3.906,
+                        0
+                      ],
+                      [
+                        -2.734,
+                        -3.32
+                      ],
+                      [
+                        0,
+                        -7.096
+                      ],
+                      [
+                        2.686,
+                        -3.141
+                      ],
+                      [
+                        3.841,
+                        0
+                      ],
+                      [
+                        2.799,
+                        3.288
+                      ],
+                      [
+                        0,
+                        6.641
+                      ]
+                    ],
+                    "o": [
+                      [
+                        2.62,
+                        -3.19
+                      ],
+                      [
+                        4.004,
+                        0
+                      ],
+                      [
+                        2.734,
+                        3.32
+                      ],
+                      [
+                        0,
+                        6.445
+                      ],
+                      [
+                        -2.686,
+                        3.142
+                      ],
+                      [
+                        -3.809,
+                        0
+                      ],
+                      [
+                        -2.8,
+                        -3.288
+                      ],
+                      [
+                        0,
+                        -6.868
+                      ]
+                    ],
+                    "v": [
+                      [
+                        16.382,
+                        -40.967
+                      ],
+                      [
+                        26.172,
+                        -45.752
+                      ],
+                      [
+                        36.279,
+                        -40.771
+                      ],
+                      [
+                        40.381,
+                        -25.146
+                      ],
+                      [
+                        36.353,
+                        -10.767
+                      ],
+                      [
+                        26.562,
+                        -6.055
+                      ],
+                      [
+                        16.65,
+                        -10.986
+                      ],
+                      [
+                        12.451,
+                        -25.879
+                      ]
+                    ]
+                  }
+                },
+                "mn": "ADBE Vector Shape - Group",
+                "nm": "d",
+                "ty": "sh"
+              }
+            ],
+            "ix": 1,
+            "mn": "ADBE Vector Group",
+            "nm": "d",
+            "np": 5,
+            "ty": "gr"
+          }
+        ]
+      },
+      "fFamily": "Arial",
+      "size": 12,
+      "style": "Regular",
+      "w": 55.62
+    },
+    {
+      "ch": "T",
+      "data": {
+        "shapes": [
+          {
+            "bm": 0,
+            "cix": 2,
+            "hd": false,
+            "it": [
+              {
+                "hd": false,
+                "ind": 0,
+                "ix": 1,
+                "ks": {
+                  "a": 0,
+                  "ix": 2,
+                  "k": {
+                    "c": true,
+                    "i": [
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ]
+                    ],
+                    "o": [
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ]
+                    ],
+                    "v": [
+                      [
+                        35.4,
+                        0
+                      ],
+                      [
+                        35.4,
+                        -63.135
+                      ],
+                      [
+                        59.082,
+                        -63.135
+                      ],
+                      [
+                        59.082,
+                        -71.582
+                      ],
+                      [
+                        2.344,
+                        -71.582
+                      ],
+                      [
+                        2.344,
+                        -63.135
+                      ],
+                      [
+                        25.928,
+                        -63.135
+                      ],
+                      [
+                        25.928,
+                        0
+                      ]
+                    ]
+                  }
+                },
+                "mn": "ADBE Vector Shape - Group",
+                "nm": "T",
+                "ty": "sh"
+              }
+            ],
+            "ix": 1,
+            "mn": "ADBE Vector Group",
+            "nm": "T",
+            "np": 3,
+            "ty": "gr"
+          }
+        ]
+      },
+      "fFamily": "Arial",
+      "size": 12,
+      "style": "Regular",
+      "w": 61.08
+    },
+    {
+      "ch": "h",
+      "data": {
+        "shapes": [
+          {
+            "bm": 0,
+            "cix": 2,
+            "hd": false,
+            "it": [
+              {
+                "hd": false,
+                "ind": 0,
+                "ix": 1,
+                "ks": {
+                  "a": 0,
+                  "ix": 2,
+                  "k": {
+                    "c": true,
+                    "i": [
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        -0.977,
+                        2.312
+                      ],
+                      [
+                        -2.295,
+                        1.351
+                      ],
+                      [
+                        -2.605,
+                        0
+                      ],
+                      [
+                        -1.904,
+                        -2.002
+                      ],
+                      [
+                        0,
+                        -4.395
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        1.221,
+                        2.67
+                      ],
+                      [
+                        2.832,
+                        1.514
+                      ],
+                      [
+                        3.841,
+                        0
+                      ],
+                      [
+                        4.102,
+                        -4.752
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ]
+                    ],
+                    "o": [
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        -4.069
+                      ],
+                      [
+                        0.977,
+                        -2.311
+                      ],
+                      [
+                        2.295,
+                        -1.35
+                      ],
+                      [
+                        3.483,
+                        0
+                      ],
+                      [
+                        1.904,
+                        2.002
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        -5.078
+                      ],
+                      [
+                        -1.221,
+                        -2.669
+                      ],
+                      [
+                        -2.832,
+                        -1.514
+                      ],
+                      [
+                        -6.25,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ]
+                    ],
+                    "v": [
+                      [
+                        15.381,
+                        0
+                      ],
+                      [
+                        15.381,
+                        -28.369
+                      ],
+                      [
+                        16.846,
+                        -37.939
+                      ],
+                      [
+                        21.753,
+                        -43.433
+                      ],
+                      [
+                        29.102,
+                        -45.459
+                      ],
+                      [
+                        37.183,
+                        -42.456
+                      ],
+                      [
+                        40.039,
+                        -32.861
+                      ],
+                      [
+                        40.039,
+                        0
+                      ],
+                      [
+                        48.828,
+                        0
+                      ],
+                      [
+                        48.828,
+                        -32.861
+                      ],
+                      [
+                        46.997,
+                        -44.482
+                      ],
+                      [
+                        40.918,
+                        -50.757
+                      ],
+                      [
+                        30.908,
+                        -53.027
+                      ],
+                      [
+                        15.381,
+                        -45.898
+                      ],
+                      [
+                        15.381,
+                        -71.582
+                      ],
+                      [
+                        6.592,
+                        -71.582
+                      ],
+                      [
+                        6.592,
+                        0
+                      ]
+                    ]
+                  }
+                },
+                "mn": "ADBE Vector Shape - Group",
+                "nm": "h",
+                "ty": "sh"
+              }
+            ],
+            "ix": 1,
+            "mn": "ADBE Vector Group",
+            "nm": "h",
+            "np": 3,
+            "ty": "gr"
+          }
+        ]
+      },
+      "fFamily": "Arial",
+      "size": 12,
+      "style": "Regular",
+      "w": 55.62
+    }
+  ],
+  "ddd": 0,
+  "fonts": {
+    "list": [
+      {
+        "ascent": 75.6476929411292,
+        "fFamily": "Arial",
+        "fName": "ArialMT",
+        "fStyle": "Regular"
+      }
+    ]
+  },
+  "fr": 60,
+  "h": 500,
+  "ip": 0,
+  "layers": [
+    {
+      "ao": 0,
+      "bm": 0,
+      "ddd": 0,
+      "ind": 1,
+      "ip": 0,
+      "ks": {
+        "a": {
+          "a": 0,
+          "ix": 1,
+          "k": [
+            0,
+            0,
+            0
+          ]
+        },
+        "o": {
+          "a": 0,
+          "ix": 11,
+          "k": 100
+        },
+        "p": {
+          "a": 0,
+          "ix": 2,
+          "k": [
+            121,
+            83.5,
+            0
+          ]
+        },
+        "r": {
+          "a": 0,
+          "ix": 10,
+          "k": 0
+        },
+        "s": {
+          "a": 0,
+          "ix": 6,
+          "k": [
+            100,
+            100,
+            100
+          ]
+        }
+      },
+      "nm": "kTop",
+      "op": 120,
+      "sr": 1,
+      "st": 0,
+      "t": {
+        "a": [],
+        "d": {
+          "k": [
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "lh": 0.01000213623047,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 0
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "lh": 3,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 10
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "lh": 6,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 20
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "lh": 9,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 30
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "lh": 12,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 40
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "lh": 15,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 50
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "lh": 18,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 60
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "lh": 21,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 70
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "lh": 24,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 80
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "lh": 27,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 90
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "lh": 30,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 100
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "lh": 33,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 110
+            }
+          ]
+        },
+        "m": {
+          "a": {
+            "a": 0,
+            "ix": 2,
+            "k": [
+              0,
+              0
+            ]
+          },
+          "g": 1
+        },
+        "p": {}
+      },
+      "ty": 5
+    },
+    {
+      "ao": 0,
+      "bm": 0,
+      "ddd": 0,
+      "ind": 2,
+      "ip": 0,
+      "ks": {
+        "a": {
+          "a": 0,
+          "ix": 1,
+          "k": [
+            0,
+            0,
+            0
+          ]
+        },
+        "o": {
+          "a": 0,
+          "ix": 11,
+          "k": 100
+        },
+        "p": {
+          "a": 0,
+          "ix": 2,
+          "k": [
+            251,
+            83.5,
+            0
+          ]
+        },
+        "r": {
+          "a": 0,
+          "ix": 10,
+          "k": 0
+        },
+        "s": {
+          "a": 0,
+          "ix": 6,
+          "k": [
+            100,
+            100,
+            100
+          ]
+        }
+      },
+      "nm": "kVisualTop",
+      "op": 120,
+      "sr": 1,
+      "st": 0,
+      "t": {
+        "a": [],
+        "d": {
+          "k": [
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 3,
+                "lh": 0.01000213623047,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 0
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 3,
+                "lh": 3,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 10
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 3,
+                "lh": 6,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 20
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 3,
+                "lh": 9,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 30
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 3,
+                "lh": 12,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 40
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 3,
+                "lh": 15,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 50
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 3,
+                "lh": 18,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 60
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 3,
+                "lh": 21,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 70
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 3,
+                "lh": 24,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 80
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 3,
+                "lh": 27,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 90
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 3,
+                "lh": 30,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 100
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 3,
+                "lh": 33,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 110
+            }
+          ]
+        },
+        "m": {
+          "a": {
+            "a": 0,
+            "ix": 2,
+            "k": [
+              0,
+              0
+            ]
+          },
+          "g": 1
+        },
+        "p": {}
+      },
+      "ty": 5
+    },
+    {
+      "ao": 0,
+      "bm": 0,
+      "ddd": 0,
+      "ind": 3,
+      "ip": 0,
+      "ks": {
+        "a": {
+          "a": 0,
+          "ix": 1,
+          "k": [
+            0,
+            0,
+            0
+          ]
+        },
+        "o": {
+          "a": 0,
+          "ix": 11,
+          "k": 100
+        },
+        "p": {
+          "a": 0,
+          "ix": 2,
+          "k": [
+            381,
+            83.5,
+            0
+          ]
+        },
+        "r": {
+          "a": 0,
+          "ix": 10,
+          "k": 0
+        },
+        "s": {
+          "a": 0,
+          "ix": 6,
+          "k": [
+            100,
+            100,
+            100
+          ]
+        }
+      },
+      "nm": "kVisualCenter",
+      "op": 120,
+      "sr": 1,
+      "st": 0,
+      "t": {
+        "a": [],
+        "d": {
+          "k": [
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 4,
+                "lh": 0.01000213623047,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 0
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 4,
+                "lh": 3,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 10
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 4,
+                "lh": 6,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 20
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 4,
+                "lh": 9,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 30
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 4,
+                "lh": 12,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 40
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 4,
+                "lh": 15,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 50
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 4,
+                "lh": 18,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 60
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 4,
+                "lh": 21,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 70
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 4,
+                "lh": 24,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 80
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 4,
+                "lh": 27,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 90
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 4,
+                "lh": 30,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 100
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 4,
+                "lh": 33,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 110
+            }
+          ]
+        },
+        "m": {
+          "a": {
+            "a": 0,
+            "ix": 2,
+            "k": [
+              0,
+              0
+            ]
+          },
+          "g": 1
+        },
+        "p": {}
+      },
+      "ty": 5
+    },
+    {
+      "ao": 0,
+      "bm": 0,
+      "ddd": 0,
+      "ind": 4,
+      "ip": 0,
+      "ks": {
+        "a": {
+          "a": 0,
+          "ix": 1,
+          "k": [
+            0,
+            0,
+            0
+          ]
+        },
+        "o": {
+          "a": 0,
+          "ix": 11,
+          "k": 100
+        },
+        "p": {
+          "a": 0,
+          "ix": 2,
+          "k": [
+            511,
+            83.5,
+            0
+          ]
+        },
+        "r": {
+          "a": 0,
+          "ix": 10,
+          "k": 0
+        },
+        "s": {
+          "a": 0,
+          "ix": 6,
+          "k": [
+            100,
+            100,
+            100
+          ]
+        }
+      },
+      "nm": "kVisualBottom",
+      "op": 120,
+      "sr": 1,
+      "st": 0,
+      "t": {
+        "a": [],
+        "d": {
+          "k": [
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 5,
+                "lh": 0.01000213623047,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 0
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 5,
+                "lh": 3,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 10
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 5,
+                "lh": 6,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 20
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 5,
+                "lh": 9,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 30
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 5,
+                "lh": 12,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 40
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 5,
+                "lh": 15,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 50
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 5,
+                "lh": 18,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 60
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 5,
+                "lh": 21,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 70
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 5,
+                "lh": 24,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 80
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 5,
+                "lh": 27,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 90
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 5,
+                "lh": 30,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 100
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 5,
+                "lh": 33,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 110
+            }
+          ]
+        },
+        "m": {
+          "a": {
+            "a": 0,
+            "ix": 2,
+            "k": [
+              0,
+              0
+            ]
+          },
+          "g": 1
+        },
+        "p": {}
+      },
+      "ty": 5
+    },
+    {
+      "ao": 0,
+      "bm": 0,
+      "ddd": 0,
+      "ind": 5,
+      "ip": 0,
+      "ks": {
+        "a": {
+          "a": 0,
+          "ix": 1,
+          "k": [
+            0,
+            0,
+            0
+          ]
+        },
+        "o": {
+          "a": 0,
+          "ix": 11,
+          "k": 100
+        },
+        "p": {
+          "a": 0,
+          "ix": 2,
+          "k": [
+            121,
+            250.5,
+            0
+          ]
+        },
+        "r": {
+          "a": 0,
+          "ix": 10,
+          "k": 0
+        },
+        "s": {
+          "a": 0,
+          "ix": 6,
+          "k": [
+            100,
+            100,
+            100
+          ]
+        }
+      },
+      "nm": "kTop 2",
+      "op": 120,
+      "sr": 1,
+      "st": 0,
+      "t": {
+        "a": [],
+        "d": {
+          "k": [
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "lh": 0.01000213623047,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 0
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "lh": 3,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 10
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "lh": 6,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 20
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "lh": 9,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 30
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "lh": 12,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 40
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "lh": 15,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 50
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "lh": 18,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 60
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "lh": 21,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 70
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "lh": 24,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 80
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "lh": 27,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 90
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "lh": 30,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 100
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "lh": 33,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 110
+            }
+          ]
+        },
+        "m": {
+          "a": {
+            "a": 0,
+            "ix": 2,
+            "k": [
+              0,
+              0
+            ]
+          },
+          "g": 1
+        },
+        "p": {}
+      },
+      "ty": 5
+    },
+    {
+      "ao": 0,
+      "bm": 0,
+      "ddd": 0,
+      "ind": 6,
+      "ip": 0,
+      "ks": {
+        "a": {
+          "a": 0,
+          "ix": 1,
+          "k": [
+            0,
+            0,
+            0
+          ]
+        },
+        "o": {
+          "a": 0,
+          "ix": 11,
+          "k": 100
+        },
+        "p": {
+          "a": 0,
+          "ix": 2,
+          "k": [
+            251,
+            250.5,
+            0
+          ]
+        },
+        "r": {
+          "a": 0,
+          "ix": 10,
+          "k": 0
+        },
+        "s": {
+          "a": 0,
+          "ix": 6,
+          "k": [
+            100,
+            100,
+            100
+          ]
+        }
+      },
+      "nm": "kVisualTop 2",
+      "op": 120,
+      "sr": 1,
+      "st": 0,
+      "t": {
+        "a": [],
+        "d": {
+          "k": [
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 3,
+                "lh": 0.01000213623047,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 0
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 3,
+                "lh": 3,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 10
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 3,
+                "lh": 6,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 20
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 3,
+                "lh": 9,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 30
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 3,
+                "lh": 12,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 40
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 3,
+                "lh": 15,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 50
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 3,
+                "lh": 18,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 60
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 3,
+                "lh": 21,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 70
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 3,
+                "lh": 24,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 80
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 3,
+                "lh": 27,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 90
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 3,
+                "lh": 30,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 100
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 3,
+                "lh": 33,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 110
+            }
+          ]
+        },
+        "m": {
+          "a": {
+            "a": 0,
+            "ix": 2,
+            "k": [
+              0,
+              0
+            ]
+          },
+          "g": 1
+        },
+        "p": {}
+      },
+      "ty": 5
+    },
+    {
+      "ao": 0,
+      "bm": 0,
+      "ddd": 0,
+      "ind": 7,
+      "ip": 0,
+      "ks": {
+        "a": {
+          "a": 0,
+          "ix": 1,
+          "k": [
+            0,
+            0,
+            0
+          ]
+        },
+        "o": {
+          "a": 0,
+          "ix": 11,
+          "k": 100
+        },
+        "p": {
+          "a": 0,
+          "ix": 2,
+          "k": [
+            381,
+            250.5,
+            0
+          ]
+        },
+        "r": {
+          "a": 0,
+          "ix": 10,
+          "k": 0
+        },
+        "s": {
+          "a": 0,
+          "ix": 6,
+          "k": [
+            100,
+            100,
+            100
+          ]
+        }
+      },
+      "nm": "kVisualCenter 2",
+      "op": 120,
+      "sr": 1,
+      "st": 0,
+      "t": {
+        "a": [],
+        "d": {
+          "k": [
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 4,
+                "lh": 0.01000213623047,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 0
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 4,
+                "lh": 3,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 10
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 4,
+                "lh": 6,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 20
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 4,
+                "lh": 9,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 30
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 4,
+                "lh": 12,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 40
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 4,
+                "lh": 15,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 50
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 4,
+                "lh": 18,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 60
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 4,
+                "lh": 21,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 70
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 4,
+                "lh": 24,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 80
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 4,
+                "lh": 27,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 90
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 4,
+                "lh": 30,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 100
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 4,
+                "lh": 33,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 110
+            }
+          ]
+        },
+        "m": {
+          "a": {
+            "a": 0,
+            "ix": 2,
+            "k": [
+              0,
+              0
+            ]
+          },
+          "g": 1
+        },
+        "p": {}
+      },
+      "ty": 5
+    },
+    {
+      "ao": 0,
+      "bm": 0,
+      "ddd": 0,
+      "ind": 8,
+      "ip": 0,
+      "ks": {
+        "a": {
+          "a": 0,
+          "ix": 1,
+          "k": [
+            0,
+            0,
+            0
+          ]
+        },
+        "o": {
+          "a": 0,
+          "ix": 11,
+          "k": 100
+        },
+        "p": {
+          "a": 0,
+          "ix": 2,
+          "k": [
+            511,
+            250.5,
+            0
+          ]
+        },
+        "r": {
+          "a": 0,
+          "ix": 10,
+          "k": 0
+        },
+        "s": {
+          "a": 0,
+          "ix": 6,
+          "k": [
+            100,
+            100,
+            100
+          ]
+        }
+      },
+      "nm": "kVisualBottom 2",
+      "op": 120,
+      "sr": 1,
+      "st": 0,
+      "t": {
+        "a": [],
+        "d": {
+          "k": [
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 5,
+                "lh": 0.01000213623047,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 0
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 5,
+                "lh": 3,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 10
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 5,
+                "lh": 6,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 20
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 5,
+                "lh": 9,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 30
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 5,
+                "lh": 12,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 40
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 5,
+                "lh": 15,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 50
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 5,
+                "lh": 18,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 60
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 5,
+                "lh": 21,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 70
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 5,
+                "lh": 24,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 80
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 5,
+                "lh": 27,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 90
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 5,
+                "lh": 30,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 100
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 5,
+                "lh": 33,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 110
+            }
+          ]
+        },
+        "m": {
+          "a": {
+            "a": 0,
+            "ix": 2,
+            "k": [
+              0,
+              0
+            ]
+          },
+          "g": 1
+        },
+        "p": {}
+      },
+      "ty": 5
+    },
+    {
+      "ao": 0,
+      "bm": 0,
+      "ddd": 0,
+      "ind": 9,
+      "ip": 0,
+      "ks": {
+        "a": {
+          "a": 0,
+          "ix": 1,
+          "k": [
+            0,
+            0,
+            0
+          ]
+        },
+        "o": {
+          "a": 0,
+          "ix": 11,
+          "k": 100
+        },
+        "p": {
+          "a": 0,
+          "ix": 2,
+          "k": [
+            121,
+            416.5,
+            0
+          ]
+        },
+        "r": {
+          "a": 0,
+          "ix": 10,
+          "k": 0
+        },
+        "s": {
+          "a": 0,
+          "ix": 6,
+          "k": [
+            100,
+            100,
+            100
+          ]
+        }
+      },
+      "nm": "kTop 3",
+      "op": 120,
+      "sr": 1,
+      "st": 0,
+      "t": {
+        "a": [],
+        "d": {
+          "k": [
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "lh": 0.01000213623047,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 0
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "lh": 3,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 10
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "lh": 6,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 20
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "lh": 9,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 30
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "lh": 12,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 40
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "lh": 15,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 50
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "lh": 18,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 60
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "lh": 21,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 70
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "lh": 24,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 80
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "lh": 27,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 90
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "lh": 30,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 100
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "lh": 33,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 110
+            }
+          ]
+        },
+        "m": {
+          "a": {
+            "a": 0,
+            "ix": 2,
+            "k": [
+              0,
+              0
+            ]
+          },
+          "g": 1
+        },
+        "p": {}
+      },
+      "ty": 5
+    },
+    {
+      "ao": 0,
+      "bm": 0,
+      "ddd": 0,
+      "ind": 10,
+      "ip": 0,
+      "ks": {
+        "a": {
+          "a": 0,
+          "ix": 1,
+          "k": [
+            0,
+            0,
+            0
+          ]
+        },
+        "o": {
+          "a": 0,
+          "ix": 11,
+          "k": 100
+        },
+        "p": {
+          "a": 0,
+          "ix": 2,
+          "k": [
+            251,
+            416.5,
+            0
+          ]
+        },
+        "r": {
+          "a": 0,
+          "ix": 10,
+          "k": 0
+        },
+        "s": {
+          "a": 0,
+          "ix": 6,
+          "k": [
+            100,
+            100,
+            100
+          ]
+        }
+      },
+      "nm": "kVisualTop 3",
+      "op": 120,
+      "sr": 1,
+      "st": 0,
+      "t": {
+        "a": [],
+        "d": {
+          "k": [
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 3,
+                "lh": 0.01000213623047,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 0
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 3,
+                "lh": 3,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 10
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 3,
+                "lh": 6,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 20
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 3,
+                "lh": 9,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 30
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 3,
+                "lh": 12,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 40
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 3,
+                "lh": 15,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 50
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 3,
+                "lh": 18,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 60
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 3,
+                "lh": 21,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 70
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 3,
+                "lh": 24,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 80
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 3,
+                "lh": 27,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 90
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 3,
+                "lh": 30,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 100
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 3,
+                "lh": 33,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 110
+            }
+          ]
+        },
+        "m": {
+          "a": {
+            "a": 0,
+            "ix": 2,
+            "k": [
+              0,
+              0
+            ]
+          },
+          "g": 1
+        },
+        "p": {}
+      },
+      "ty": 5
+    },
+    {
+      "ao": 0,
+      "bm": 0,
+      "ddd": 0,
+      "ind": 11,
+      "ip": 0,
+      "ks": {
+        "a": {
+          "a": 0,
+          "ix": 1,
+          "k": [
+            0,
+            0,
+            0
+          ]
+        },
+        "o": {
+          "a": 0,
+          "ix": 11,
+          "k": 100
+        },
+        "p": {
+          "a": 0,
+          "ix": 2,
+          "k": [
+            381,
+            416.5,
+            0
+          ]
+        },
+        "r": {
+          "a": 0,
+          "ix": 10,
+          "k": 0
+        },
+        "s": {
+          "a": 0,
+          "ix": 6,
+          "k": [
+            100,
+            100,
+            100
+          ]
+        }
+      },
+      "nm": "kVisualCenter 3",
+      "op": 120,
+      "sr": 1,
+      "st": 0,
+      "t": {
+        "a": [],
+        "d": {
+          "k": [
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 4, 
+                "lh": 0.01000213623047,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 0
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 4, 
+                "lh": 3,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 10
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 4, 
+                "lh": 6,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 20
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 4, 
+                "lh": 9,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 30
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 4, 
+                "lh": 12,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 40
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 4, 
+                "lh": 15,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 50
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 4, 
+                "lh": 18,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 60
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 4, 
+                "lh": 21,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 70
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 4, 
+                "lh": 24,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 80
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 4, 
+                "lh": 27,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 90
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 4, 
+                "lh": 30,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 100
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 4, 
+                "lh": 33,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 110
+            }
+          ]
+        },
+        "m": {
+          "a": {
+            "a": 0,
+            "ix": 2,
+            "k": [
+              0,
+              0
+            ]
+          },
+          "g": 1
+        },
+        "p": {}
+      },
+      "ty": 5
+    },
+    {
+      "ao": 0,
+      "bm": 0,
+      "ddd": 0,
+      "ind": 12,
+      "ip": 0,
+      "ks": {
+        "a": {
+          "a": 0,
+          "ix": 1,
+          "k": [
+            0,
+            0,
+            0
+          ]
+        },
+        "o": {
+          "a": 0,
+          "ix": 11,
+          "k": 100
+        },
+        "p": {
+          "a": 0,
+          "ix": 2,
+          "k": [
+            511,
+            416.5,
+            0
+          ]
+        },
+        "r": {
+          "a": 0,
+          "ix": 10,
+          "k": 0
+        },
+        "s": {
+          "a": 0,
+          "ix": 6,
+          "k": [
+            100,
+            100,
+            100
+          ]
+        }
+      },
+      "nm": "kVisualBottom 3",
+      "op": 120,
+      "sr": 1,
+      "st": 0,
+      "t": {
+        "a": [],
+        "d": {
+          "k": [
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 5, 
+                "lh": 0.01000213623047,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 0
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 5, 
+                "lh": 3,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 10
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 5, 
+                "lh": 6,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 20
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 5, 
+                "lh": 9,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 30
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 5, 
+                "lh": 12,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 40
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 5, 
+                "lh": 15,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 50
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 5, 
+                "lh": 18,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 60
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 5, 
+                "lh": 21,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 70
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 5, 
+                "lh": 24,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 80
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 5, 
+                "lh": 27,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 90
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 5, 
+                "lh": 30,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 100
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 5, 
+                "lh": 33,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 110
+            }
+          ]
+        },
+        "m": {
+          "a": {
+            "a": 0,
+            "ix": 2,
+            "k": [
+              0,
+              0
+            ]
+          },
+          "g": 1
+        },
+        "p": {}
+      },
+      "ty": 5
+    },
+    {
+      "ao": 0,
+      "bm": 0,
+      "ddd": 0,
+      "ind": 13,
+      "ip": 0,
+      "ks": {
+        "a": {
+          "a": 0,
+          "ix": 1,
+          "k": [
+            47.5,
+            64,
+            0
+          ]
+        },
+        "o": {
+          "a": 0,
+          "ix": 11,
+          "k": 100
+        },
+        "p": {
+          "a": 0,
+          "ix": 2,
+          "k": [
+            58,
+            83,
+            0
+          ]
+        },
+        "r": {
+          "a": 0,
+          "ix": 10,
+          "k": 0
+        },
+        "s": {
+          "a": 0,
+          "ix": 6,
+          "k": [
+            100,
+            100,
+            100
+          ]
+        }
+      },
+      "nm": "Dark Gray Solid 1",
+      "op": 120,
+      "sc": "#4e4e4e",
+      "sh": 128,
+      "sr": 1,
+      "st": 0,
+      "sw": 95,
+      "ty": 1
+    },
+    {
+      "ao": 0,
+      "bm": 0,
+      "ddd": 0,
+      "ind": 14,
+      "ip": 0,
+      "ks": {
+        "a": {
+          "a": 0,
+          "ix": 1,
+          "k": [
+            47.5,
+            64,
+            0
+          ]
+        },
+        "o": {
+          "a": 0,
+          "ix": 11,
+          "k": 100
+        },
+        "p": {
+          "a": 0,
+          "ix": 2,
+          "k": [
+            188,
+            83,
+            0
+          ]
+        },
+        "r": {
+          "a": 0,
+          "ix": 10,
+          "k": 0
+        },
+        "s": {
+          "a": 0,
+          "ix": 6,
+          "k": [
+            100,
+            100,
+            100
+          ]
+        }
+      },
+      "nm": "Dark Gray Solid 1",
+      "op": 120,
+      "sc": "#4e4e4e",
+      "sh": 128,
+      "sr": 1,
+      "st": 0,
+      "sw": 95,
+      "ty": 1
+    },
+    {
+      "ao": 0,
+      "bm": 0,
+      "ddd": 0,
+      "ind": 15,
+      "ip": 0,
+      "ks": {
+        "a": {
+          "a": 0,
+          "ix": 1,
+          "k": [
+            47.5,
+            64,
+            0
+          ]
+        },
+        "o": {
+          "a": 0,
+          "ix": 11,
+          "k": 100
+        },
+        "p": {
+          "a": 0,
+          "ix": 2,
+          "k": [
+            318,
+            83,
+            0
+          ]
+        },
+        "r": {
+          "a": 0,
+          "ix": 10,
+          "k": 0
+        },
+        "s": {
+          "a": 0,
+          "ix": 6,
+          "k": [
+            100,
+            100,
+            100
+          ]
+        }
+      },
+      "nm": "Dark Gray Solid 1",
+      "op": 120,
+      "sc": "#4e4e4e",
+      "sh": 128,
+      "sr": 1,
+      "st": 0,
+      "sw": 95,
+      "ty": 1
+    },
+    {
+      "ao": 0,
+      "bm": 0,
+      "ddd": 0,
+      "ind": 16,
+      "ip": 0,
+      "ks": {
+        "a": {
+          "a": 0,
+          "ix": 1,
+          "k": [
+            47.5,
+            64,
+            0
+          ]
+        },
+        "o": {
+          "a": 0,
+          "ix": 11,
+          "k": 100
+        },
+        "p": {
+          "a": 0,
+          "ix": 2,
+          "k": [
+            448,
+            83,
+            0
+          ]
+        },
+        "r": {
+          "a": 0,
+          "ix": 10,
+          "k": 0
+        },
+        "s": {
+          "a": 0,
+          "ix": 6,
+          "k": [
+            100,
+            100,
+            100
+          ]
+        }
+      },
+      "nm": "Dark Gray Solid 1",
+      "op": 120,
+      "sc": "#4e4e4e",
+      "sh": 128,
+      "sr": 1,
+      "st": 0,
+      "sw": 95,
+      "ty": 1
+    },
+    {
+      "ao": 0,
+      "bm": 0,
+      "ddd": 0,
+      "ind": 17,
+      "ip": 0,
+      "ks": {
+        "a": {
+          "a": 0,
+          "ix": 1,
+          "k": [
+            47.5,
+            64,
+            0
+          ]
+        },
+        "o": {
+          "a": 0,
+          "ix": 11,
+          "k": 100
+        },
+        "p": {
+          "a": 0,
+          "ix": 2,
+          "k": [
+            58,
+            250,
+            0
+          ]
+        },
+        "r": {
+          "a": 0,
+          "ix": 10,
+          "k": 0
+        },
+        "s": {
+          "a": 0,
+          "ix": 6,
+          "k": [
+            100,
+            100,
+            100
+          ]
+        }
+      },
+      "nm": "Dark Gray Solid 1",
+      "op": 120,
+      "sc": "#4e4e4e",
+      "sh": 128,
+      "sr": 1,
+      "st": 0,
+      "sw": 95,
+      "ty": 1
+    },
+    {
+      "ao": 0,
+      "bm": 0,
+      "ddd": 0,
+      "ind": 18,
+      "ip": 0,
+      "ks": {
+        "a": {
+          "a": 0,
+          "ix": 1,
+          "k": [
+            47.5,
+            64,
+            0
+          ]
+        },
+        "o": {
+          "a": 0,
+          "ix": 11,
+          "k": 100
+        },
+        "p": {
+          "a": 0,
+          "ix": 2,
+          "k": [
+            188,
+            250,
+            0
+          ]
+        },
+        "r": {
+          "a": 0,
+          "ix": 10,
+          "k": 0
+        },
+        "s": {
+          "a": 0,
+          "ix": 6,
+          "k": [
+            100,
+            100,
+            100
+          ]
+        }
+      },
+      "nm": "Dark Gray Solid 1",
+      "op": 120,
+      "sc": "#4e4e4e",
+      "sh": 128,
+      "sr": 1,
+      "st": 0,
+      "sw": 95,
+      "ty": 1
+    },
+    {
+      "ao": 0,
+      "bm": 0,
+      "ddd": 0,
+      "ind": 19,
+      "ip": 0,
+      "ks": {
+        "a": {
+          "a": 0,
+          "ix": 1,
+          "k": [
+            47.5,
+            64,
+            0
+          ]
+        },
+        "o": {
+          "a": 0,
+          "ix": 11,
+          "k": 100
+        },
+        "p": {
+          "a": 0,
+          "ix": 2,
+          "k": [
+            318,
+            250,
+            0
+          ]
+        },
+        "r": {
+          "a": 0,
+          "ix": 10,
+          "k": 0
+        },
+        "s": {
+          "a": 0,
+          "ix": 6,
+          "k": [
+            100,
+            100,
+            100
+          ]
+        }
+      },
+      "nm": "Dark Gray Solid 1",
+      "op": 120,
+      "sc": "#4e4e4e",
+      "sh": 128,
+      "sr": 1,
+      "st": 0,
+      "sw": 95,
+      "ty": 1
+    },
+    {
+      "ao": 0,
+      "bm": 0,
+      "ddd": 0,
+      "ind": 20,
+      "ip": 0,
+      "ks": {
+        "a": {
+          "a": 0,
+          "ix": 1,
+          "k": [
+            47.5,
+            64,
+            0
+          ]
+        },
+        "o": {
+          "a": 0,
+          "ix": 11,
+          "k": 100
+        },
+        "p": {
+          "a": 0,
+          "ix": 2,
+          "k": [
+            448,
+            250,
+            0
+          ]
+        },
+        "r": {
+          "a": 0,
+          "ix": 10,
+          "k": 0
+        },
+        "s": {
+          "a": 0,
+          "ix": 6,
+          "k": [
+            100,
+            100,
+            100
+          ]
+        }
+      },
+      "nm": "Dark Gray Solid 1",
+      "op": 120,
+      "sc": "#4e4e4e",
+      "sh": 128,
+      "sr": 1,
+      "st": 0,
+      "sw": 95,
+      "ty": 1
+    },
+    {
+      "ao": 0,
+      "bm": 0,
+      "ddd": 0,
+      "ind": 21,
+      "ip": 0,
+      "ks": {
+        "a": {
+          "a": 0,
+          "ix": 1,
+          "k": [
+            47.5,
+            64,
+            0
+          ]
+        },
+        "o": {
+          "a": 0,
+          "ix": 11,
+          "k": 100
+        },
+        "p": {
+          "a": 0,
+          "ix": 2,
+          "k": [
+            58,
+            416,
+            0
+          ]
+        },
+        "r": {
+          "a": 0,
+          "ix": 10,
+          "k": 0
+        },
+        "s": {
+          "a": 0,
+          "ix": 6,
+          "k": [
+            100,
+            100,
+            100
+          ]
+        }
+      },
+      "nm": "Dark Gray Solid 1",
+      "op": 120,
+      "sc": "#4e4e4e",
+      "sh": 128,
+      "sr": 1,
+      "st": 0,
+      "sw": 95,
+      "ty": 1
+    },
+    {
+      "ao": 0,
+      "bm": 0,
+      "ddd": 0,
+      "ind": 22,
+      "ip": 0,
+      "ks": {
+        "a": {
+          "a": 0,
+          "ix": 1,
+          "k": [
+            47.5,
+            64,
+            0
+          ]
+        },
+        "o": {
+          "a": 0,
+          "ix": 11,
+          "k": 100
+        },
+        "p": {
+          "a": 0,
+          "ix": 2,
+          "k": [
+            188,
+            416,
+            0
+          ]
+        },
+        "r": {
+          "a": 0,
+          "ix": 10,
+          "k": 0
+        },
+        "s": {
+          "a": 0,
+          "ix": 6,
+          "k": [
+            100,
+            100,
+            100
+          ]
+        }
+      },
+      "nm": "Dark Gray Solid 1",
+      "op": 120,
+      "sc": "#4e4e4e",
+      "sh": 128,
+      "sr": 1,
+      "st": 0,
+      "sw": 95,
+      "ty": 1
+    },
+    {
+      "ao": 0,
+      "bm": 0,
+      "ddd": 0,
+      "ind": 23,
+      "ip": 0,
+      "ks": {
+        "a": {
+          "a": 0,
+          "ix": 1,
+          "k": [
+            47.5,
+            64,
+            0
+          ]
+        },
+        "o": {
+          "a": 0,
+          "ix": 11,
+          "k": 100
+        },
+        "p": {
+          "a": 0,
+          "ix": 2,
+          "k": [
+            318,
+            416,
+            0
+          ]
+        },
+        "r": {
+          "a": 0,
+          "ix": 10,
+          "k": 0
+        },
+        "s": {
+          "a": 0,
+          "ix": 6,
+          "k": [
+            100,
+            100,
+            100
+          ]
+        }
+      },
+      "nm": "Dark Gray Solid 1",
+      "op": 120,
+      "sc": "#4e4e4e",
+      "sh": 128,
+      "sr": 1,
+      "st": 0,
+      "sw": 95,
+      "ty": 1
+    },
+    {
+      "ao": 0,
+      "bm": 0,
+      "ddd": 0,
+      "ind": 24,
+      "ip": 0,
+      "ks": {
+        "a": {
+          "a": 0,
+          "ix": 1,
+          "k": [
+            47.5,
+            64,
+            0
+          ]
+        },
+        "o": {
+          "a": 0,
+          "ix": 11,
+          "k": 100
+        },
+        "p": {
+          "a": 0,
+          "ix": 2,
+          "k": [
+            448,
+            416,
+            0
+          ]
+        },
+        "r": {
+          "a": 0,
+          "ix": 10,
+          "k": 0
+        },
+        "s": {
+          "a": 0,
+          "ix": 6,
+          "k": [
+            100,
+            100,
+            100
+          ]
+        }
+      },
+      "nm": "Dark Gray Solid 1",
+      "op": 120,
+      "sc": "#4e4e4e",
+      "sh": 128,
+      "sr": 1,
+      "st": 0,
+      "sw": 95,
+      "ty": 1
+    },
+    {
+      "ao": 0,
+      "bm": 0,
+      "ddd": 0,
+      "ind": 25,
+      "ip": 0,
+      "ks": {
+        "a": {
+          "a": 0,
+          "ix": 1,
+          "k": [
+            250,
+            250,
+            0
+          ]
+        },
+        "o": {
+          "a": 0,
+          "ix": 11,
+          "k": 100
+        },
+        "p": {
+          "a": 0,
+          "ix": 2,
+          "k": [
+            250,
+            250,
+            0
+          ]
+        },
+        "r": {
+          "a": 0,
+          "ix": 10,
+          "k": 0
+        },
+        "s": {
+          "a": 0,
+          "ix": 6,
+          "k": [
+            100,
+            100,
+            100
+          ]
+        }
+      },
+      "nm": "Black Solid 1",
+      "op": 120,
+      "sc": "#000000",
+      "sh": 500,
+      "sr": 1,
+      "st": 0,
+      "sw": 500,
+      "ty": 1
+    }
+  ],
+  "markers": [],
+  "nm": "valign",
+  "op": 120,
+  "v": "5.5.2",
+  "w": 500
+}
diff --git a/resources/skottie/skottie-text-valign-visual-scaletofit.json b/resources/skottie/skottie-text-valign-visual-scaletofit.json
new file mode 100644
index 0000000..b347586
--- /dev/null
+++ b/resources/skottie/skottie-text-valign-visual-scaletofit.json
@@ -0,0 +1,9412 @@
+{
+  "assets": [],
+  "chars": [
+    {
+      "ch": "F",
+      "data": {
+        "shapes": [
+          {
+            "bm": 0,
+            "cix": 2,
+            "hd": false,
+            "it": [
+              {
+                "hd": false,
+                "ind": 0,
+                "ix": 1,
+                "ks": {
+                  "a": 0,
+                  "ix": 2,
+                  "k": {
+                    "c": true,
+                    "i": [
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ]
+                    ],
+                    "o": [
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ]
+                    ],
+                    "v": [
+                      [
+                        17.676,
+                        0
+                      ],
+                      [
+                        17.676,
+                        -32.52
+                      ],
+                      [
+                        51.27,
+                        -32.52
+                      ],
+                      [
+                        51.27,
+                        -40.967
+                      ],
+                      [
+                        17.676,
+                        -40.967
+                      ],
+                      [
+                        17.676,
+                        -63.135
+                      ],
+                      [
+                        56.494,
+                        -63.135
+                      ],
+                      [
+                        56.494,
+                        -71.582
+                      ],
+                      [
+                        8.203,
+                        -71.582
+                      ],
+                      [
+                        8.203,
+                        0
+                      ]
+                    ]
+                  }
+                },
+                "mn": "ADBE Vector Shape - Group",
+                "nm": "F",
+                "ty": "sh"
+              }
+            ],
+            "ix": 1,
+            "mn": "ADBE Vector Group",
+            "nm": "F",
+            "np": 3,
+            "ty": "gr"
+          }
+        ]
+      },
+      "fFamily": "Arial",
+      "size": 12,
+      "style": "Regular",
+      "w": 61.08
+    },
+    {
+      "ch": "i",
+      "data": {
+        "shapes": [
+          {
+            "bm": 0,
+            "cix": 2,
+            "hd": false,
+            "it": [
+              {
+                "hd": false,
+                "ind": 0,
+                "ix": 1,
+                "ks": {
+                  "a": 0,
+                  "ix": 2,
+                  "k": {
+                    "c": true,
+                    "i": [
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ]
+                    ],
+                    "o": [
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ]
+                    ],
+                    "v": [
+                      [
+                        15.43,
+                        -61.475
+                      ],
+                      [
+                        15.43,
+                        -71.582
+                      ],
+                      [
+                        6.641,
+                        -71.582
+                      ],
+                      [
+                        6.641,
+                        -61.475
+                      ]
+                    ]
+                  }
+                },
+                "mn": "ADBE Vector Shape - Group",
+                "nm": "i",
+                "ty": "sh"
+              },
+              {
+                "hd": false,
+                "ind": 1,
+                "ix": 2,
+                "ks": {
+                  "a": 0,
+                  "ix": 2,
+                  "k": {
+                    "c": true,
+                    "i": [
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ]
+                    ],
+                    "o": [
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ]
+                    ],
+                    "v": [
+                      [
+                        15.43,
+                        0
+                      ],
+                      [
+                        15.43,
+                        -51.855
+                      ],
+                      [
+                        6.641,
+                        -51.855
+                      ],
+                      [
+                        6.641,
+                        0
+                      ]
+                    ]
+                  }
+                },
+                "mn": "ADBE Vector Shape - Group",
+                "nm": "i",
+                "ty": "sh"
+              }
+            ],
+            "ix": 1,
+            "mn": "ADBE Vector Group",
+            "nm": "i",
+            "np": 5,
+            "ty": "gr"
+          }
+        ]
+      },
+      "fFamily": "Arial",
+      "size": 12,
+      "style": "Regular",
+      "w": 22.22
+    },
+    {
+      "ch": "r",
+      "data": {
+        "shapes": [
+          {
+            "bm": 0,
+            "cix": 2,
+            "hd": false,
+            "it": [
+              {
+                "hd": false,
+                "ind": 0,
+                "ix": 1,
+                "ks": {
+                  "a": 0,
+                  "ix": 2,
+                  "k": {
+                    "c": true,
+                    "i": [
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        -0.977,
+                        3.125
+                      ],
+                      [
+                        -1.53,
+                        1.156
+                      ],
+                      [
+                        -1.921,
+                        0
+                      ],
+                      [
+                        -2.148,
+                        -1.27
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        2.962,
+                        0
+                      ],
+                      [
+                        1.709,
+                        -1.172
+                      ],
+                      [
+                        2.018,
+                        -3.678
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ]
+                    ],
+                    "o": [
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        -3.711
+                      ],
+                      [
+                        0.651,
+                        -2.051
+                      ],
+                      [
+                        1.53,
+                        -1.155
+                      ],
+                      [
+                        2.148,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        -3.06,
+                        -1.888
+                      ],
+                      [
+                        -2.051,
+                        0
+                      ],
+                      [
+                        -1.709,
+                        1.172
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ]
+                    ],
+                    "v": [
+                      [
+                        15.283,
+                        0
+                      ],
+                      [
+                        15.283,
+                        -27.148
+                      ],
+                      [
+                        16.748,
+                        -37.402
+                      ],
+                      [
+                        20.02,
+                        -42.212
+                      ],
+                      [
+                        25.195,
+                        -43.945
+                      ],
+                      [
+                        31.641,
+                        -42.041
+                      ],
+                      [
+                        34.668,
+                        -50.195
+                      ],
+                      [
+                        25.635,
+                        -53.027
+                      ],
+                      [
+                        19.995,
+                        -51.27
+                      ],
+                      [
+                        14.404,
+                        -43.994
+                      ],
+                      [
+                        14.404,
+                        -51.855
+                      ],
+                      [
+                        6.494,
+                        -51.855
+                      ],
+                      [
+                        6.494,
+                        0
+                      ]
+                    ]
+                  }
+                },
+                "mn": "ADBE Vector Shape - Group",
+                "nm": "r",
+                "ty": "sh"
+              }
+            ],
+            "ix": 1,
+            "mn": "ADBE Vector Group",
+            "nm": "r",
+            "np": 3,
+            "ty": "gr"
+          }
+        ]
+      },
+      "fFamily": "Arial",
+      "size": 12,
+      "style": "Regular",
+      "w": 33.3
+    },
+    {
+      "ch": "s",
+      "data": {
+        "shapes": [
+          {
+            "bm": 0,
+            "cix": 2,
+            "hd": false,
+            "it": [
+              {
+                "hd": false,
+                "ind": 0,
+                "ix": 1,
+                "ks": {
+                  "a": 0,
+                  "ix": 2,
+                  "k": {
+                    "c": true,
+                    "i": [
+                      [
+                        -3.532,
+                        -2.799
+                      ],
+                      [
+                        -6.738,
+                        0
+                      ],
+                      [
+                        -3.223,
+                        1.416
+                      ],
+                      [
+                        -1.709,
+                        2.588
+                      ],
+                      [
+                        0,
+                        2.93
+                      ],
+                      [
+                        1.399,
+                        2.019
+                      ],
+                      [
+                        2.457,
+                        1.058
+                      ],
+                      [
+                        6.217,
+                        1.66
+                      ],
+                      [
+                        0.879,
+                        0.326
+                      ],
+                      [
+                        0.716,
+                        0.945
+                      ],
+                      [
+                        0,
+                        1.14
+                      ],
+                      [
+                        -1.726,
+                        1.335
+                      ],
+                      [
+                        -4.037,
+                        0
+                      ],
+                      [
+                        -1.872,
+                        -1.497
+                      ],
+                      [
+                        -0.391,
+                        -2.669
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        1.465,
+                        2.002
+                      ],
+                      [
+                        3.076,
+                        1.172
+                      ],
+                      [
+                        4.069,
+                        0
+                      ],
+                      [
+                        2.36,
+                        -0.7
+                      ],
+                      [
+                        1.367,
+                        -1.009
+                      ],
+                      [
+                        1.057,
+                        -1.969
+                      ],
+                      [
+                        0,
+                        -2.311
+                      ],
+                      [
+                        -1.286,
+                        -2.1
+                      ],
+                      [
+                        -2.49,
+                        -1.188
+                      ],
+                      [
+                        -6.445,
+                        -1.627
+                      ],
+                      [
+                        -1.205,
+                        -0.781
+                      ],
+                      [
+                        0,
+                        -1.985
+                      ],
+                      [
+                        1.953,
+                        -1.643
+                      ],
+                      [
+                        4.036,
+                        0
+                      ],
+                      [
+                        2.229,
+                        1.855
+                      ],
+                      [
+                        0.488,
+                        3.484
+                      ],
+                      [
+                        0,
+                        0
+                      ]
+                    ],
+                    "o": [
+                      [
+                        3.532,
+                        2.8
+                      ],
+                      [
+                        4.069,
+                        0
+                      ],
+                      [
+                        3.223,
+                        -1.416
+                      ],
+                      [
+                        1.709,
+                        -2.588
+                      ],
+                      [
+                        0,
+                        -2.995
+                      ],
+                      [
+                        -1.4,
+                        -2.018
+                      ],
+                      [
+                        -2.458,
+                        -1.057
+                      ],
+                      [
+                        -4.297,
+                        -1.172
+                      ],
+                      [
+                        -1.53,
+                        -0.618
+                      ],
+                      [
+                        -0.716,
+                        -0.911
+                      ],
+                      [
+                        0,
+                        -1.79
+                      ],
+                      [
+                        1.725,
+                        -1.334
+                      ],
+                      [
+                        3.418,
+                        0
+                      ],
+                      [
+                        1.871,
+                        1.498
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        -0.554,
+                        -3.352
+                      ],
+                      [
+                        -1.465,
+                        -2.002
+                      ],
+                      [
+                        -3.076,
+                        -1.172
+                      ],
+                      [
+                        -2.702,
+                        0
+                      ],
+                      [
+                        -2.361,
+                        0.7
+                      ],
+                      [
+                        -1.823,
+                        1.302
+                      ],
+                      [
+                        -1.058,
+                        1.97
+                      ],
+                      [
+                        0,
+                        2.539
+                      ],
+                      [
+                        1.286,
+                        2.1
+                      ],
+                      [
+                        2.49,
+                        1.189
+                      ],
+                      [
+                        4.785,
+                        1.205
+                      ],
+                      [
+                        1.725,
+                        1.14
+                      ],
+                      [
+                        0,
+                        2.214
+                      ],
+                      [
+                        -1.953,
+                        1.644
+                      ],
+                      [
+                        -4.004,
+                        0
+                      ],
+                      [
+                        -2.23,
+                        -1.855
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0.977,
+                        5.502
+                      ]
+                    ],
+                    "v": [
+                      [
+                        9.839,
+                        -3.027
+                      ],
+                      [
+                        25.244,
+                        1.172
+                      ],
+                      [
+                        36.182,
+                        -0.952
+                      ],
+                      [
+                        43.579,
+                        -6.958
+                      ],
+                      [
+                        46.143,
+                        -15.234
+                      ],
+                      [
+                        44.043,
+                        -22.754
+                      ],
+                      [
+                        38.257,
+                        -27.368
+                      ],
+                      [
+                        25.244,
+                        -31.445
+                      ],
+                      [
+                        17.48,
+                        -33.691
+                      ],
+                      [
+                        14.111,
+                        -36.035
+                      ],
+                      [
+                        13.037,
+                        -39.111
+                      ],
+                      [
+                        15.625,
+                        -43.799
+                      ],
+                      [
+                        24.268,
+                        -45.801
+                      ],
+                      [
+                        32.202,
+                        -43.555
+                      ],
+                      [
+                        35.596,
+                        -37.305
+                      ],
+                      [
+                        44.189,
+                        -38.477
+                      ],
+                      [
+                        41.162,
+                        -46.509
+                      ],
+                      [
+                        34.351,
+                        -51.27
+                      ],
+                      [
+                        23.633,
+                        -53.027
+                      ],
+                      [
+                        16.04,
+                        -51.978
+                      ],
+                      [
+                        10.449,
+                        -49.414
+                      ],
+                      [
+                        6.128,
+                        -44.507
+                      ],
+                      [
+                        4.541,
+                        -38.086
+                      ],
+                      [
+                        6.47,
+                        -31.128
+                      ],
+                      [
+                        12.134,
+                        -26.196
+                      ],
+                      [
+                        25.537,
+                        -21.973
+                      ],
+                      [
+                        34.521,
+                        -18.994
+                      ],
+                      [
+                        37.109,
+                        -14.307
+                      ],
+                      [
+                        34.18,
+                        -8.521
+                      ],
+                      [
+                        25.195,
+                        -6.055
+                      ],
+                      [
+                        15.845,
+                        -8.838
+                      ],
+                      [
+                        11.768,
+                        -16.846
+                      ],
+                      [
+                        3.076,
+                        -15.479
+                      ]
+                    ]
+                  }
+                },
+                "mn": "ADBE Vector Shape - Group",
+                "nm": "s",
+                "ty": "sh"
+              }
+            ],
+            "ix": 1,
+            "mn": "ADBE Vector Group",
+            "nm": "s",
+            "np": 3,
+            "ty": "gr"
+          }
+        ]
+      },
+      "fFamily": "Arial",
+      "size": 12,
+      "style": "Regular",
+      "w": 50
+    },
+    {
+      "ch": "t",
+      "data": {
+        "shapes": [
+          {
+            "bm": 0,
+            "cix": 2,
+            "hd": false,
+            "it": [
+              {
+                "hd": false,
+                "ind": 0,
+                "ix": 1,
+                "ks": {
+                  "a": 0,
+                  "ix": 2,
+                  "k": {
+                    "c": true,
+                    "i": [
+                      [
+                        0.977,
+                        0
+                      ],
+                      [
+                        0.7,
+                        0.423
+                      ],
+                      [
+                        0.309,
+                        0.716
+                      ],
+                      [
+                        0,
+                        2.507
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        -0.716,
+                        -1.643
+                      ],
+                      [
+                        -1.758,
+                        -1.009
+                      ],
+                      [
+                        -3.191,
+                        0
+                      ],
+                      [
+                        -2.474,
+                        0.52
+                      ],
+                      [
+                        0,
+                        0
+                      ]
+                    ],
+                    "o": [
+                      [
+                        -1.302,
+                        0
+                      ],
+                      [
+                        -0.7,
+                        -0.423
+                      ],
+                      [
+                        -0.31,
+                        -0.716
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        5.273
+                      ],
+                      [
+                        0.716,
+                        1.644
+                      ],
+                      [
+                        1.758,
+                        1.009
+                      ],
+                      [
+                        1.953,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        -1.595,
+                        0.228
+                      ]
+                    ],
+                    "v": [
+                      [
+                        21.924,
+                        -7.52
+                      ],
+                      [
+                        18.921,
+                        -8.154
+                      ],
+                      [
+                        17.407,
+                        -9.863
+                      ],
+                      [
+                        16.943,
+                        -14.697
+                      ],
+                      [
+                        16.943,
+                        -45.02
+                      ],
+                      [
+                        25.781,
+                        -45.02
+                      ],
+                      [
+                        25.781,
+                        -51.855
+                      ],
+                      [
+                        16.943,
+                        -51.855
+                      ],
+                      [
+                        16.943,
+                        -69.971
+                      ],
+                      [
+                        8.203,
+                        -64.697
+                      ],
+                      [
+                        8.203,
+                        -51.855
+                      ],
+                      [
+                        1.758,
+                        -51.855
+                      ],
+                      [
+                        1.758,
+                        -45.02
+                      ],
+                      [
+                        8.203,
+                        -45.02
+                      ],
+                      [
+                        8.203,
+                        -15.186
+                      ],
+                      [
+                        9.277,
+                        -4.81
+                      ],
+                      [
+                        12.988,
+                        -0.83
+                      ],
+                      [
+                        20.41,
+                        0.684
+                      ],
+                      [
+                        27.051,
+                        -0.098
+                      ],
+                      [
+                        25.781,
+                        -7.861
+                      ]
+                    ]
+                  }
+                },
+                "mn": "ADBE Vector Shape - Group",
+                "nm": "t",
+                "ty": "sh"
+              }
+            ],
+            "ix": 1,
+            "mn": "ADBE Vector Group",
+            "nm": "t",
+            "np": 3,
+            "ty": "gr"
+          }
+        ]
+      },
+      "fFamily": "Arial",
+      "size": 12,
+      "style": "Regular",
+      "w": 27.78
+    },
+    {
+      "ch": " ",
+      "data": {},
+      "fFamily": "Arial",
+      "size": 12,
+      "style": "Regular",
+      "w": 27.78
+    },
+    {
+      "ch": "l",
+      "data": {
+        "shapes": [
+          {
+            "bm": 0,
+            "cix": 2,
+            "hd": false,
+            "it": [
+              {
+                "hd": false,
+                "ind": 0,
+                "ix": 1,
+                "ks": {
+                  "a": 0,
+                  "ix": 2,
+                  "k": {
+                    "c": true,
+                    "i": [
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ]
+                    ],
+                    "o": [
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ]
+                    ],
+                    "v": [
+                      [
+                        15.186,
+                        0
+                      ],
+                      [
+                        15.186,
+                        -71.582
+                      ],
+                      [
+                        6.396,
+                        -71.582
+                      ],
+                      [
+                        6.396,
+                        0
+                      ]
+                    ]
+                  }
+                },
+                "mn": "ADBE Vector Shape - Group",
+                "nm": "l",
+                "ty": "sh"
+              }
+            ],
+            "ix": 1,
+            "mn": "ADBE Vector Group",
+            "nm": "l",
+            "np": 3,
+            "ty": "gr"
+          }
+        ]
+      },
+      "fFamily": "Arial",
+      "size": 12,
+      "style": "Regular",
+      "w": 22.22
+    },
+    {
+      "ch": "n",
+      "data": {
+        "shapes": [
+          {
+            "bm": 0,
+            "cix": 2,
+            "hd": false,
+            "it": [
+              {
+                "hd": false,
+                "ind": 0,
+                "ix": 1,
+                "ks": {
+                  "a": 0,
+                  "ix": 2,
+                  "k": {
+                    "c": true,
+                    "i": [
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        -2.718,
+                        2.377
+                      ],
+                      [
+                        -3.744,
+                        0
+                      ],
+                      [
+                        -1.742,
+                        -1.057
+                      ],
+                      [
+                        -0.684,
+                        -1.774
+                      ],
+                      [
+                        0,
+                        -3.58
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0.325,
+                        1.628
+                      ],
+                      [
+                        1.302,
+                        1.823
+                      ],
+                      [
+                        2.62,
+                        1.123
+                      ],
+                      [
+                        3.125,
+                        0
+                      ],
+                      [
+                        3.809,
+                        -5.696
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ]
+                    ],
+                    "o": [
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        -6.641
+                      ],
+                      [
+                        2.718,
+                        -2.376
+                      ],
+                      [
+                        2.344,
+                        0
+                      ],
+                      [
+                        1.741,
+                        1.058
+                      ],
+                      [
+                        0.684,
+                        1.775
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        -4.069
+                      ],
+                      [
+                        -0.521,
+                        -2.506
+                      ],
+                      [
+                        -1.302,
+                        -1.823
+                      ],
+                      [
+                        -2.621,
+                        -1.123
+                      ],
+                      [
+                        -7.195,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ]
+                    ],
+                    "v": [
+                      [
+                        15.381,
+                        0
+                      ],
+                      [
+                        15.381,
+                        -28.32
+                      ],
+                      [
+                        19.458,
+                        -41.846
+                      ],
+                      [
+                        29.15,
+                        -45.41
+                      ],
+                      [
+                        35.278,
+                        -43.823
+                      ],
+                      [
+                        38.916,
+                        -39.575
+                      ],
+                      [
+                        39.941,
+                        -31.543
+                      ],
+                      [
+                        39.941,
+                        0
+                      ],
+                      [
+                        48.73,
+                        0
+                      ],
+                      [
+                        48.73,
+                        -31.885
+                      ],
+                      [
+                        48.242,
+                        -40.43
+                      ],
+                      [
+                        45.508,
+                        -46.924
+                      ],
+                      [
+                        39.624,
+                        -51.343
+                      ],
+                      [
+                        31.006,
+                        -53.027
+                      ],
+                      [
+                        14.502,
+                        -44.482
+                      ],
+                      [
+                        14.502,
+                        -51.855
+                      ],
+                      [
+                        6.592,
+                        -51.855
+                      ],
+                      [
+                        6.592,
+                        0
+                      ]
+                    ]
+                  }
+                },
+                "mn": "ADBE Vector Shape - Group",
+                "nm": "n",
+                "ty": "sh"
+              }
+            ],
+            "ix": 1,
+            "mn": "ADBE Vector Group",
+            "nm": "n",
+            "np": 3,
+            "ty": "gr"
+          }
+        ]
+      },
+      "fFamily": "Arial",
+      "size": 12,
+      "style": "Regular",
+      "w": 55.62
+    },
+    {
+      "ch": "É",
+      "data": {
+        "shapes": [
+          {
+            "bm": 0,
+            "cix": 2,
+            "hd": false,
+            "it": [
+              {
+                "hd": false,
+                "ind": 0,
+                "ix": 1,
+                "ks": {
+                  "a": 0,
+                  "ix": 2,
+                  "k": {
+                    "c": true,
+                    "i": [
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ]
+                    ],
+                    "o": [
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ]
+                    ],
+                    "v": [
+                      [
+                        61.328,
+                        0
+                      ],
+                      [
+                        61.328,
+                        -8.447
+                      ],
+                      [
+                        17.383,
+                        -8.447
+                      ],
+                      [
+                        17.383,
+                        -32.812
+                      ],
+                      [
+                        56.982,
+                        -32.812
+                      ],
+                      [
+                        56.982,
+                        -41.211
+                      ],
+                      [
+                        17.383,
+                        -41.211
+                      ],
+                      [
+                        17.383,
+                        -63.135
+                      ],
+                      [
+                        59.668,
+                        -63.135
+                      ],
+                      [
+                        59.668,
+                        -71.582
+                      ],
+                      [
+                        7.91,
+                        -71.582
+                      ],
+                      [
+                        7.91,
+                        0
+                      ]
+                    ]
+                  }
+                },
+                "mn": "ADBE Vector Shape - Group",
+                "nm": "É",
+                "ty": "sh"
+              },
+              {
+                "hd": false,
+                "ind": 1,
+                "ix": 2,
+                "ks": {
+                  "a": 0,
+                  "ix": 2,
+                  "k": {
+                    "c": true,
+                    "i": [
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ]
+                    ],
+                    "o": [
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ]
+                    ],
+                    "v": [
+                      [
+                        34.717,
+                        -75.977
+                      ],
+                      [
+                        45.459,
+                        -89.648
+                      ],
+                      [
+                        33.936,
+                        -89.648
+                      ],
+                      [
+                        27.441,
+                        -75.977
+                      ]
+                    ]
+                  }
+                },
+                "mn": "ADBE Vector Shape - Group",
+                "nm": "É",
+                "ty": "sh"
+              }
+            ],
+            "ix": 1,
+            "mn": "ADBE Vector Group",
+            "nm": "É",
+            "np": 5,
+            "ty": "gr"
+          }
+        ]
+      },
+      "fFamily": "Arial",
+      "size": 12,
+      "style": "Regular",
+      "w": 66.7
+    },
+    {
+      "ch": ".",
+      "data": {
+        "shapes": [
+          {
+            "bm": 0,
+            "cix": 2,
+            "hd": false,
+            "it": [
+              {
+                "hd": false,
+                "ind": 0,
+                "ix": 1,
+                "ks": {
+                  "a": 0,
+                  "ix": 2,
+                  "k": {
+                    "c": true,
+                    "i": [
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ]
+                    ],
+                    "o": [
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ]
+                    ],
+                    "v": [
+                      [
+                        19.092,
+                        0
+                      ],
+                      [
+                        19.092,
+                        -10.01
+                      ],
+                      [
+                        9.082,
+                        -10.01
+                      ],
+                      [
+                        9.082,
+                        0
+                      ]
+                    ]
+                  }
+                },
+                "mn": "ADBE Vector Shape - Group",
+                "nm": ".",
+                "ty": "sh"
+              }
+            ],
+            "ix": 1,
+            "mn": "ADBE Vector Group",
+            "nm": ".",
+            "np": 3,
+            "ty": "gr"
+          }
+        ]
+      },
+      "fFamily": "Arial",
+      "size": 12,
+      "style": "Regular",
+      "w": 27.78
+    },
+    {
+      "ch": "\r",
+      "fFamily": "Arial",
+      "size": 12,
+      "style": "Regular",
+      "w": 0
+    },
+    {
+      "ch": "S",
+      "data": {
+        "shapes": [
+          {
+            "bm": 0,
+            "cix": 2,
+            "hd": false,
+            "it": [
+              {
+                "hd": false,
+                "ind": 0,
+                "ix": 1,
+                "ks": {
+                  "a": 0,
+                  "ix": 2,
+                  "k": {
+                    "c": true,
+                    "i": [
+                      [
+                        -2.49,
+                        -3.792
+                      ],
+                      [
+                        -4.379,
+                        -1.888
+                      ],
+                      [
+                        -6.478,
+                        0
+                      ],
+                      [
+                        -4.086,
+                        1.871
+                      ],
+                      [
+                        -2.181,
+                        3.369
+                      ],
+                      [
+                        0,
+                        3.809
+                      ],
+                      [
+                        1.985,
+                        2.946
+                      ],
+                      [
+                        4.166,
+                        1.921
+                      ],
+                      [
+                        7.698,
+                        1.742
+                      ],
+                      [
+                        1.823,
+                        1.66
+                      ],
+                      [
+                        0,
+                        2.572
+                      ],
+                      [
+                        -2.621,
+                        2.1
+                      ],
+                      [
+                        -5.73,
+                        0
+                      ],
+                      [
+                        -2.816,
+                        -2.311
+                      ],
+                      [
+                        -0.488,
+                        -4.524
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        2.18,
+                        3.32
+                      ],
+                      [
+                        4.053,
+                        1.709
+                      ],
+                      [
+                        5.305,
+                        0
+                      ],
+                      [
+                        3.938,
+                        -1.627
+                      ],
+                      [
+                        2.051,
+                        -3.141
+                      ],
+                      [
+                        0,
+                        -3.613
+                      ],
+                      [
+                        -1.677,
+                        -2.653
+                      ],
+                      [
+                        -3.418,
+                        -1.79
+                      ],
+                      [
+                        -6.576,
+                        -1.579
+                      ],
+                      [
+                        -1.921,
+                        -0.748
+                      ],
+                      [
+                        -1.302,
+                        -1.676
+                      ],
+                      [
+                        0,
+                        -2.246
+                      ],
+                      [
+                        1.35,
+                        -1.871
+                      ],
+                      [
+                        2.766,
+                        -1.074
+                      ],
+                      [
+                        3.613,
+                        0
+                      ],
+                      [
+                        3.255,
+                        1.416
+                      ],
+                      [
+                        1.546,
+                        2.295
+                      ],
+                      [
+                        0.423,
+                        3.581
+                      ],
+                      [
+                        0,
+                        0
+                      ]
+                    ],
+                    "o": [
+                      [
+                        2.49,
+                        3.793
+                      ],
+                      [
+                        4.378,
+                        1.888
+                      ],
+                      [
+                        5.11,
+                        0
+                      ],
+                      [
+                        4.085,
+                        -1.871
+                      ],
+                      [
+                        2.18,
+                        -3.369
+                      ],
+                      [
+                        0,
+                        -3.841
+                      ],
+                      [
+                        -1.986,
+                        -2.946
+                      ],
+                      [
+                        -2.865,
+                        -1.302
+                      ],
+                      [
+                        -7.699,
+                        -1.741
+                      ],
+                      [
+                        -1.855,
+                        -1.66
+                      ],
+                      [
+                        0,
+                        -2.962
+                      ],
+                      [
+                        2.62,
+                        -2.1
+                      ],
+                      [
+                        5.501,
+                        0
+                      ],
+                      [
+                        2.815,
+                        2.312
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        -0.163,
+                        -4.199
+                      ],
+                      [
+                        -2.181,
+                        -3.32
+                      ],
+                      [
+                        -4.053,
+                        -1.709
+                      ],
+                      [
+                        -4.818,
+                        0
+                      ],
+                      [
+                        -3.939,
+                        1.628
+                      ],
+                      [
+                        -2.051,
+                        3.142
+                      ],
+                      [
+                        0,
+                        3.288
+                      ],
+                      [
+                        1.676,
+                        2.654
+                      ],
+                      [
+                        2.637,
+                        1.4
+                      ],
+                      [
+                        6.575,
+                        1.579
+                      ],
+                      [
+                        2.995,
+                        1.14
+                      ],
+                      [
+                        1.302,
+                        1.677
+                      ],
+                      [
+                        0,
+                        2.214
+                      ],
+                      [
+                        -1.351,
+                        1.872
+                      ],
+                      [
+                        -2.767,
+                        1.074
+                      ],
+                      [
+                        -4.07,
+                        0
+                      ],
+                      [
+                        -3.255,
+                        -1.416
+                      ],
+                      [
+                        -1.546,
+                        -2.295
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0.13,
+                        4.785
+                      ]
+                    ],
+                    "v": [
+                      [
+                        8.423,
+                        -10.132
+                      ],
+                      [
+                        18.726,
+                        -1.611
+                      ],
+                      [
+                        35.01,
+                        1.221
+                      ],
+                      [
+                        48.804,
+                        -1.587
+                      ],
+                      [
+                        58.203,
+                        -9.448
+                      ],
+                      [
+                        61.475,
+                        -20.215
+                      ],
+                      [
+                        58.496,
+                        -30.396
+                      ],
+                      [
+                        49.268,
+                        -37.695
+                      ],
+                      [
+                        33.423,
+                        -42.261
+                      ],
+                      [
+                        19.141,
+                        -47.363
+                      ],
+                      [
+                        16.357,
+                        -53.711
+                      ],
+                      [
+                        20.288,
+                        -61.304
+                      ],
+                      [
+                        32.812,
+                        -64.453
+                      ],
+                      [
+                        45.288,
+                        -60.986
+                      ],
+                      [
+                        50.244,
+                        -50.732
+                      ],
+                      [
+                        59.326,
+                        -51.416
+                      ],
+                      [
+                        55.811,
+                        -62.695
+                      ],
+                      [
+                        46.46,
+                        -70.239
+                      ],
+                      [
+                        32.422,
+                        -72.803
+                      ],
+                      [
+                        19.287,
+                        -70.361
+                      ],
+                      [
+                        10.303,
+                        -63.208
+                      ],
+                      [
+                        7.227,
+                        -53.076
+                      ],
+                      [
+                        9.741,
+                        -44.165
+                      ],
+                      [
+                        17.383,
+                        -37.5
+                      ],
+                      [
+                        31.201,
+                        -33.032
+                      ],
+                      [
+                        43.945,
+                        -29.541
+                      ],
+                      [
+                        50.391,
+                        -25.317
+                      ],
+                      [
+                        52.344,
+                        -19.434
+                      ],
+                      [
+                        50.317,
+                        -13.306
+                      ],
+                      [
+                        44.141,
+                        -8.887
+                      ],
+                      [
+                        34.57,
+                        -7.275
+                      ],
+                      [
+                        23.584,
+                        -9.399
+                      ],
+                      [
+                        16.382,
+                        -14.966
+                      ],
+                      [
+                        13.428,
+                        -23.779
+                      ],
+                      [
+                        4.492,
+                        -22.998
+                      ]
+                    ]
+                  }
+                },
+                "mn": "ADBE Vector Shape - Group",
+                "nm": "S",
+                "ty": "sh"
+              }
+            ],
+            "ix": 1,
+            "mn": "ADBE Vector Group",
+            "nm": "S",
+            "np": 3,
+            "ty": "gr"
+          }
+        ]
+      },
+      "fFamily": "Arial",
+      "size": 12,
+      "style": "Regular",
+      "w": 66.7
+    },
+    {
+      "ch": "e",
+      "data": {
+        "shapes": [
+          {
+            "bm": 0,
+            "cix": 2,
+            "hd": false,
+            "it": [
+              {
+                "hd": false,
+                "ind": 0,
+                "ix": 1,
+                "ks": {
+                  "a": 0,
+                  "ix": 2,
+                  "k": {
+                    "c": true,
+                    "i": [
+                      [
+                        2.278,
+                        -1.692
+                      ],
+                      [
+                        3.223,
+                        0
+                      ],
+                      [
+                        2.897,
+                        3.027
+                      ],
+                      [
+                        0.325,
+                        5.697
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0.521
+                      ],
+                      [
+                        4.395,
+                        4.72
+                      ],
+                      [
+                        6.934,
+                        0
+                      ],
+                      [
+                        4.492,
+                        -4.817
+                      ],
+                      [
+                        0,
+                        -8.723
+                      ],
+                      [
+                        -4.443,
+                        -4.671
+                      ],
+                      [
+                        -7.585,
+                        0
+                      ],
+                      [
+                        -3.874,
+                        2.93
+                      ],
+                      [
+                        -1.433,
+                        5.306
+                      ],
+                      [
+                        0,
+                        0
+                      ]
+                    ],
+                    "o": [
+                      [
+                        -2.279,
+                        1.693
+                      ],
+                      [
+                        -4.33,
+                        0
+                      ],
+                      [
+                        -2.898,
+                        -3.027
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0.032,
+                        -1.041
+                      ],
+                      [
+                        0,
+                        -8.561
+                      ],
+                      [
+                        -4.395,
+                        -4.72
+                      ],
+                      [
+                        -7.162,
+                        0
+                      ],
+                      [
+                        -4.492,
+                        4.818
+                      ],
+                      [
+                        0,
+                        8.431
+                      ],
+                      [
+                        4.443,
+                        4.671
+                      ],
+                      [
+                        6.022,
+                        0
+                      ],
+                      [
+                        3.873,
+                        -2.93
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        -1.335,
+                        3.711
+                      ]
+                    ],
+                    "v": [
+                      [
+                        36.67,
+                        -8.594
+                      ],
+                      [
+                        28.418,
+                        -6.055
+                      ],
+                      [
+                        17.578,
+                        -10.596
+                      ],
+                      [
+                        12.744,
+                        -23.682
+                      ],
+                      [
+                        51.416,
+                        -23.682
+                      ],
+                      [
+                        51.465,
+                        -26.025
+                      ],
+                      [
+                        44.873,
+                        -45.947
+                      ],
+                      [
+                        27.881,
+                        -53.027
+                      ],
+                      [
+                        10.4,
+                        -45.801
+                      ],
+                      [
+                        3.662,
+                        -25.488
+                      ],
+                      [
+                        10.327,
+                        -5.835
+                      ],
+                      [
+                        28.369,
+                        1.172
+                      ],
+                      [
+                        43.213,
+                        -3.223
+                      ],
+                      [
+                        51.172,
+                        -15.576
+                      ],
+                      [
+                        42.09,
+                        -16.699
+                      ]
+                    ]
+                  }
+                },
+                "mn": "ADBE Vector Shape - Group",
+                "nm": "e",
+                "ty": "sh"
+              },
+              {
+                "hd": false,
+                "ind": 1,
+                "ix": 2,
+                "ks": {
+                  "a": 0,
+                  "ix": 2,
+                  "k": {
+                    "c": true,
+                    "i": [
+                      [
+                        -2.751,
+                        2.702
+                      ],
+                      [
+                        -4.037,
+                        0
+                      ],
+                      [
+                        -2.8,
+                        -3.385
+                      ],
+                      [
+                        -0.391,
+                        -4.362
+                      ],
+                      [
+                        0,
+                        0
+                      ]
+                    ],
+                    "o": [
+                      [
+                        2.75,
+                        -2.702
+                      ],
+                      [
+                        4.459,
+                        0
+                      ],
+                      [
+                        1.823,
+                        2.181
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0.293,
+                        -4.524
+                      ]
+                    ],
+                    "v": [
+                      [
+                        17.798,
+                        -41.748
+                      ],
+                      [
+                        27.979,
+                        -45.801
+                      ],
+                      [
+                        38.867,
+                        -40.723
+                      ],
+                      [
+                        42.188,
+                        -30.908
+                      ],
+                      [
+                        13.232,
+                        -30.908
+                      ]
+                    ]
+                  }
+                },
+                "mn": "ADBE Vector Shape - Group",
+                "nm": "e",
+                "ty": "sh"
+              }
+            ],
+            "ix": 1,
+            "mn": "ADBE Vector Group",
+            "nm": "e",
+            "np": 5,
+            "ty": "gr"
+          }
+        ]
+      },
+      "fFamily": "Arial",
+      "size": 12,
+      "style": "Regular",
+      "w": 55.62
+    },
+    {
+      "ch": "c",
+      "data": {
+        "shapes": [
+          {
+            "bm": 0,
+            "cix": 2,
+            "hd": false,
+            "it": [
+              {
+                "hd": false,
+                "ind": 0,
+                "ix": 1,
+                "ks": {
+                  "a": 0,
+                  "ix": 2,
+                  "k": {
+                    "c": true,
+                    "i": [
+                      [
+                        2.311,
+                        -2.116
+                      ],
+                      [
+                        3.45,
+                        0
+                      ],
+                      [
+                        2.669,
+                        3.158
+                      ],
+                      [
+                        0,
+                        6.966
+                      ],
+                      [
+                        -2.767,
+                        3.174
+                      ],
+                      [
+                        -4.427,
+                        0
+                      ],
+                      [
+                        -2.068,
+                        -1.758
+                      ],
+                      [
+                        -0.814,
+                        -3.483
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        3.58,
+                        2.849
+                      ],
+                      [
+                        5.631,
+                        0
+                      ],
+                      [
+                        3.792,
+                        -2.1
+                      ],
+                      [
+                        1.855,
+                        -4.199
+                      ],
+                      [
+                        0,
+                        -5.598
+                      ],
+                      [
+                        -4.314,
+                        -4.639
+                      ],
+                      [
+                        -7.097,
+                        0
+                      ],
+                      [
+                        -3.89,
+                        3.369
+                      ],
+                      [
+                        -0.945,
+                        5.957
+                      ],
+                      [
+                        0,
+                        0
+                      ]
+                    ],
+                    "o": [
+                      [
+                        -2.312,
+                        2.116
+                      ],
+                      [
+                        -4.297,
+                        0
+                      ],
+                      [
+                        -2.67,
+                        -3.157
+                      ],
+                      [
+                        0,
+                        -6.868
+                      ],
+                      [
+                        2.766,
+                        -3.174
+                      ],
+                      [
+                        2.93,
+                        0
+                      ],
+                      [
+                        2.067,
+                        1.758
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        -1.009,
+                        -5.241
+                      ],
+                      [
+                        -3.581,
+                        -2.848
+                      ],
+                      [
+                        -4.46,
+                        0
+                      ],
+                      [
+                        -3.793,
+                        2.1
+                      ],
+                      [
+                        -1.855,
+                        4.199
+                      ],
+                      [
+                        0,
+                        8.659
+                      ],
+                      [
+                        4.313,
+                        4.639
+                      ],
+                      [
+                        5.664,
+                        0
+                      ],
+                      [
+                        3.889,
+                        -3.369
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        -0.619,
+                        4.395
+                      ]
+                    ],
+                    "v": [
+                      [
+                        36.035,
+                        -9.229
+                      ],
+                      [
+                        27.393,
+                        -6.055
+                      ],
+                      [
+                        16.943,
+                        -10.791
+                      ],
+                      [
+                        12.939,
+                        -25.977
+                      ],
+                      [
+                        17.09,
+                        -41.04
+                      ],
+                      [
+                        27.881,
+                        -45.801
+                      ],
+                      [
+                        35.376,
+                        -43.164
+                      ],
+                      [
+                        39.697,
+                        -35.303
+                      ],
+                      [
+                        48.242,
+                        -36.621
+                      ],
+                      [
+                        41.357,
+                        -48.755
+                      ],
+                      [
+                        27.539,
+                        -53.027
+                      ],
+                      [
+                        15.161,
+                        -49.878
+                      ],
+                      [
+                        6.689,
+                        -40.43
+                      ],
+                      [
+                        3.906,
+                        -25.732
+                      ],
+                      [
+                        10.376,
+                        -5.786
+                      ],
+                      [
+                        27.49,
+                        1.172
+                      ],
+                      [
+                        41.821,
+                        -3.882
+                      ],
+                      [
+                        49.072,
+                        -17.871
+                      ],
+                      [
+                        40.43,
+                        -18.994
+                      ]
+                    ]
+                  }
+                },
+                "mn": "ADBE Vector Shape - Group",
+                "nm": "c",
+                "ty": "sh"
+              }
+            ],
+            "ix": 1,
+            "mn": "ADBE Vector Group",
+            "nm": "c",
+            "np": 3,
+            "ty": "gr"
+          }
+        ]
+      },
+      "fFamily": "Arial",
+      "size": 12,
+      "style": "Regular",
+      "w": 50
+    },
+    {
+      "ch": "o",
+      "data": {
+        "shapes": [
+          {
+            "bm": 0,
+            "cix": 2,
+            "hd": false,
+            "it": [
+              {
+                "hd": false,
+                "ind": 0,
+                "ix": 1,
+                "ks": {
+                  "a": 0,
+                  "ix": 2,
+                  "k": {
+                    "c": true,
+                    "i": [
+                      [
+                        -4.476,
+                        -4.655
+                      ],
+                      [
+                        -7.259,
+                        0
+                      ],
+                      [
+                        -3.825,
+                        2.116
+                      ],
+                      [
+                        -2.002,
+                        3.825
+                      ],
+                      [
+                        0,
+                        6.673
+                      ],
+                      [
+                        4.524,
+                        4.671
+                      ],
+                      [
+                        7.129,
+                        0
+                      ],
+                      [
+                        4.459,
+                        -3.841
+                      ],
+                      [
+                        0,
+                        -9.602
+                      ]
+                    ],
+                    "o": [
+                      [
+                        4.475,
+                        4.655
+                      ],
+                      [
+                        4.524,
+                        0
+                      ],
+                      [
+                        3.825,
+                        -2.116
+                      ],
+                      [
+                        2.002,
+                        -3.825
+                      ],
+                      [
+                        0,
+                        -8.235
+                      ],
+                      [
+                        -4.525,
+                        -4.671
+                      ],
+                      [
+                        -6.413,
+                        0
+                      ],
+                      [
+                        -5.339,
+                        4.623
+                      ],
+                      [
+                        0,
+                        8.757
+                      ]
+                    ],
+                    "v": [
+                      [
+                        10.034,
+                        -5.811
+                      ],
+                      [
+                        27.637,
+                        1.172
+                      ],
+                      [
+                        40.161,
+                        -2.002
+                      ],
+                      [
+                        48.901,
+                        -10.913
+                      ],
+                      [
+                        51.904,
+                        -26.66
+                      ],
+                      [
+                        45.117,
+                        -46.021
+                      ],
+                      [
+                        27.637,
+                        -53.027
+                      ],
+                      [
+                        11.328,
+                        -47.266
+                      ],
+                      [
+                        3.32,
+                        -25.928
+                      ]
+                    ]
+                  }
+                },
+                "mn": "ADBE Vector Shape - Group",
+                "nm": "o",
+                "ty": "sh"
+              },
+              {
+                "hd": false,
+                "ind": 1,
+                "ix": 2,
+                "ks": {
+                  "a": 0,
+                  "ix": 2,
+                  "k": {
+                    "c": true,
+                    "i": [
+                      [
+                        -2.898,
+                        3.288
+                      ],
+                      [
+                        -4.395,
+                        0
+                      ],
+                      [
+                        -2.914,
+                        -3.304
+                      ],
+                      [
+                        0,
+                        -6.413
+                      ],
+                      [
+                        2.897,
+                        -3.32
+                      ],
+                      [
+                        4.362,
+                        0
+                      ],
+                      [
+                        2.897,
+                        3.304
+                      ],
+                      [
+                        0,
+                        6.641
+                      ]
+                    ],
+                    "o": [
+                      [
+                        2.897,
+                        -3.288
+                      ],
+                      [
+                        4.329,
+                        0
+                      ],
+                      [
+                        2.913,
+                        3.304
+                      ],
+                      [
+                        0,
+                        6.804
+                      ],
+                      [
+                        -2.898,
+                        3.32
+                      ],
+                      [
+                        -4.395,
+                        0
+                      ],
+                      [
+                        -2.898,
+                        -3.304
+                      ],
+                      [
+                        0,
+                        -6.641
+                      ]
+                    ],
+                    "v": [
+                      [
+                        16.699,
+                        -40.82
+                      ],
+                      [
+                        27.637,
+                        -45.752
+                      ],
+                      [
+                        38.501,
+                        -40.796
+                      ],
+                      [
+                        42.871,
+                        -26.221
+                      ],
+                      [
+                        38.525,
+                        -11.035
+                      ],
+                      [
+                        27.637,
+                        -6.055
+                      ],
+                      [
+                        16.699,
+                        -11.011
+                      ],
+                      [
+                        12.354,
+                        -25.928
+                      ]
+                    ]
+                  }
+                },
+                "mn": "ADBE Vector Shape - Group",
+                "nm": "o",
+                "ty": "sh"
+              }
+            ],
+            "ix": 1,
+            "mn": "ADBE Vector Group",
+            "nm": "o",
+            "np": 5,
+            "ty": "gr"
+          }
+        ]
+      },
+      "fFamily": "Arial",
+      "size": 12,
+      "style": "Regular",
+      "w": 55.62
+    },
+    {
+      "ch": "d",
+      "data": {
+        "shapes": [
+          {
+            "bm": 0,
+            "cix": 2,
+            "hd": false,
+            "it": [
+              {
+                "hd": false,
+                "ind": 0,
+                "ix": 1,
+                "ks": {
+                  "a": 0,
+                  "ix": 2,
+                  "k": {
+                    "c": true,
+                    "i": [
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        2.441,
+                        1.318
+                      ],
+                      [
+                        3.125,
+                        0
+                      ],
+                      [
+                        3.45,
+                        -2.246
+                      ],
+                      [
+                        1.725,
+                        -4.215
+                      ],
+                      [
+                        0,
+                        -5.176
+                      ],
+                      [
+                        -1.904,
+                        -4.085
+                      ],
+                      [
+                        -3.467,
+                        -2.278
+                      ],
+                      [
+                        -4.134,
+                        0
+                      ],
+                      [
+                        -3.288,
+                        5.144
+                      ],
+                      [
+                        0,
+                        0
+                      ]
+                    ],
+                    "o": [
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        -1.53,
+                        -2.116
+                      ],
+                      [
+                        -2.441,
+                        -1.318
+                      ],
+                      [
+                        -4.265,
+                        0
+                      ],
+                      [
+                        -3.451,
+                        2.246
+                      ],
+                      [
+                        -1.726,
+                        4.216
+                      ],
+                      [
+                        0,
+                        5.306
+                      ],
+                      [
+                        1.904,
+                        4.086
+                      ],
+                      [
+                        3.467,
+                        2.278
+                      ],
+                      [
+                        6.38,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ]
+                    ],
+                    "v": [
+                      [
+                        48.389,
+                        0
+                      ],
+                      [
+                        48.389,
+                        -71.582
+                      ],
+                      [
+                        39.648,
+                        -71.582
+                      ],
+                      [
+                        39.648,
+                        -45.898
+                      ],
+                      [
+                        33.691,
+                        -51.05
+                      ],
+                      [
+                        25.342,
+                        -53.027
+                      ],
+                      [
+                        13.77,
+                        -49.658
+                      ],
+                      [
+                        6.006,
+                        -39.966
+                      ],
+                      [
+                        3.418,
+                        -25.879
+                      ],
+                      [
+                        6.274,
+                        -11.792
+                      ],
+                      [
+                        14.331,
+                        -2.246
+                      ],
+                      [
+                        25.732,
+                        1.172
+                      ],
+                      [
+                        40.234,
+                        -6.543
+                      ],
+                      [
+                        40.234,
+                        0
+                      ]
+                    ]
+                  }
+                },
+                "mn": "ADBE Vector Shape - Group",
+                "nm": "d",
+                "ty": "sh"
+              },
+              {
+                "hd": false,
+                "ind": 1,
+                "ix": 2,
+                "ks": {
+                  "a": 0,
+                  "ix": 2,
+                  "k": {
+                    "c": true,
+                    "i": [
+                      [
+                        -2.621,
+                        3.191
+                      ],
+                      [
+                        -3.906,
+                        0
+                      ],
+                      [
+                        -2.734,
+                        -3.32
+                      ],
+                      [
+                        0,
+                        -7.096
+                      ],
+                      [
+                        2.686,
+                        -3.141
+                      ],
+                      [
+                        3.841,
+                        0
+                      ],
+                      [
+                        2.799,
+                        3.288
+                      ],
+                      [
+                        0,
+                        6.641
+                      ]
+                    ],
+                    "o": [
+                      [
+                        2.62,
+                        -3.19
+                      ],
+                      [
+                        4.004,
+                        0
+                      ],
+                      [
+                        2.734,
+                        3.32
+                      ],
+                      [
+                        0,
+                        6.445
+                      ],
+                      [
+                        -2.686,
+                        3.142
+                      ],
+                      [
+                        -3.809,
+                        0
+                      ],
+                      [
+                        -2.8,
+                        -3.288
+                      ],
+                      [
+                        0,
+                        -6.868
+                      ]
+                    ],
+                    "v": [
+                      [
+                        16.382,
+                        -40.967
+                      ],
+                      [
+                        26.172,
+                        -45.752
+                      ],
+                      [
+                        36.279,
+                        -40.771
+                      ],
+                      [
+                        40.381,
+                        -25.146
+                      ],
+                      [
+                        36.353,
+                        -10.767
+                      ],
+                      [
+                        26.562,
+                        -6.055
+                      ],
+                      [
+                        16.65,
+                        -10.986
+                      ],
+                      [
+                        12.451,
+                        -25.879
+                      ]
+                    ]
+                  }
+                },
+                "mn": "ADBE Vector Shape - Group",
+                "nm": "d",
+                "ty": "sh"
+              }
+            ],
+            "ix": 1,
+            "mn": "ADBE Vector Group",
+            "nm": "d",
+            "np": 5,
+            "ty": "gr"
+          }
+        ]
+      },
+      "fFamily": "Arial",
+      "size": 12,
+      "style": "Regular",
+      "w": 55.62
+    },
+    {
+      "ch": "T",
+      "data": {
+        "shapes": [
+          {
+            "bm": 0,
+            "cix": 2,
+            "hd": false,
+            "it": [
+              {
+                "hd": false,
+                "ind": 0,
+                "ix": 1,
+                "ks": {
+                  "a": 0,
+                  "ix": 2,
+                  "k": {
+                    "c": true,
+                    "i": [
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ]
+                    ],
+                    "o": [
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ]
+                    ],
+                    "v": [
+                      [
+                        35.4,
+                        0
+                      ],
+                      [
+                        35.4,
+                        -63.135
+                      ],
+                      [
+                        59.082,
+                        -63.135
+                      ],
+                      [
+                        59.082,
+                        -71.582
+                      ],
+                      [
+                        2.344,
+                        -71.582
+                      ],
+                      [
+                        2.344,
+                        -63.135
+                      ],
+                      [
+                        25.928,
+                        -63.135
+                      ],
+                      [
+                        25.928,
+                        0
+                      ]
+                    ]
+                  }
+                },
+                "mn": "ADBE Vector Shape - Group",
+                "nm": "T",
+                "ty": "sh"
+              }
+            ],
+            "ix": 1,
+            "mn": "ADBE Vector Group",
+            "nm": "T",
+            "np": 3,
+            "ty": "gr"
+          }
+        ]
+      },
+      "fFamily": "Arial",
+      "size": 12,
+      "style": "Regular",
+      "w": 61.08
+    },
+    {
+      "ch": "h",
+      "data": {
+        "shapes": [
+          {
+            "bm": 0,
+            "cix": 2,
+            "hd": false,
+            "it": [
+              {
+                "hd": false,
+                "ind": 0,
+                "ix": 1,
+                "ks": {
+                  "a": 0,
+                  "ix": 2,
+                  "k": {
+                    "c": true,
+                    "i": [
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        -0.977,
+                        2.312
+                      ],
+                      [
+                        -2.295,
+                        1.351
+                      ],
+                      [
+                        -2.605,
+                        0
+                      ],
+                      [
+                        -1.904,
+                        -2.002
+                      ],
+                      [
+                        0,
+                        -4.395
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        1.221,
+                        2.67
+                      ],
+                      [
+                        2.832,
+                        1.514
+                      ],
+                      [
+                        3.841,
+                        0
+                      ],
+                      [
+                        4.102,
+                        -4.752
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ]
+                    ],
+                    "o": [
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        -4.069
+                      ],
+                      [
+                        0.977,
+                        -2.311
+                      ],
+                      [
+                        2.295,
+                        -1.35
+                      ],
+                      [
+                        3.483,
+                        0
+                      ],
+                      [
+                        1.904,
+                        2.002
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        -5.078
+                      ],
+                      [
+                        -1.221,
+                        -2.669
+                      ],
+                      [
+                        -2.832,
+                        -1.514
+                      ],
+                      [
+                        -6.25,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ],
+                      [
+                        0,
+                        0
+                      ]
+                    ],
+                    "v": [
+                      [
+                        15.381,
+                        0
+                      ],
+                      [
+                        15.381,
+                        -28.369
+                      ],
+                      [
+                        16.846,
+                        -37.939
+                      ],
+                      [
+                        21.753,
+                        -43.433
+                      ],
+                      [
+                        29.102,
+                        -45.459
+                      ],
+                      [
+                        37.183,
+                        -42.456
+                      ],
+                      [
+                        40.039,
+                        -32.861
+                      ],
+                      [
+                        40.039,
+                        0
+                      ],
+                      [
+                        48.828,
+                        0
+                      ],
+                      [
+                        48.828,
+                        -32.861
+                      ],
+                      [
+                        46.997,
+                        -44.482
+                      ],
+                      [
+                        40.918,
+                        -50.757
+                      ],
+                      [
+                        30.908,
+                        -53.027
+                      ],
+                      [
+                        15.381,
+                        -45.898
+                      ],
+                      [
+                        15.381,
+                        -71.582
+                      ],
+                      [
+                        6.592,
+                        -71.582
+                      ],
+                      [
+                        6.592,
+                        0
+                      ]
+                    ]
+                  }
+                },
+                "mn": "ADBE Vector Shape - Group",
+                "nm": "h",
+                "ty": "sh"
+              }
+            ],
+            "ix": 1,
+            "mn": "ADBE Vector Group",
+            "nm": "h",
+            "np": 3,
+            "ty": "gr"
+          }
+        ]
+      },
+      "fFamily": "Arial",
+      "size": 12,
+      "style": "Regular",
+      "w": 55.62
+    }
+  ],
+  "ddd": 0,
+  "fonts": {
+    "list": [
+      {
+        "ascent": 75.6476929411292,
+        "fFamily": "Arial",
+        "fName": "ArialMT",
+        "fStyle": "Regular"
+      }
+    ]
+  },
+  "fr": 60,
+  "h": 500,
+  "ip": 0,
+  "layers": [
+    {
+      "ao": 0,
+      "bm": 0,
+      "ddd": 0,
+      "ind": 1,
+      "ip": 0,
+      "ks": {
+        "a": {
+          "a": 0,
+          "ix": 1,
+          "k": [
+            0,
+            0,
+            0
+          ]
+        },
+        "o": {
+          "a": 0,
+          "ix": 11,
+          "k": 100
+        },
+        "p": {
+          "a": 0,
+          "ix": 2,
+          "k": [
+            121,
+            83.5,
+            0
+          ]
+        },
+        "r": {
+          "a": 0,
+          "ix": 10,
+          "k": 0
+        },
+        "s": {
+          "a": 0,
+          "ix": 6,
+          "k": [
+            100,
+            100,
+            100
+          ]
+        }
+      },
+      "nm": "kTop",
+      "op": 120,
+      "sr": 1,
+      "st": 0,
+      "t": {
+        "a": [],
+        "d": {
+          "k": [
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 0,
+                "rs": 1,
+                "lh": 0.01000213623047,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 0
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 0,
+                "rs": 1,
+                "lh": 3,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 10
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 0,
+                "rs": 1,
+                "lh": 6,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 20
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 0,
+                "rs": 1,
+                "lh": 9,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 30
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 0,
+                "rs": 1,
+                "lh": 12,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 40
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 0,
+                "rs": 1,
+                "lh": 15,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 50
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 0,
+                "rs": 1,
+                "lh": 18,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 60
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 0,
+                "rs": 1,
+                "lh": 21,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 70
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 0,
+                "rs": 1,
+                "lh": 24,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 80
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 0,
+                "rs": 1,
+                "lh": 27,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 90
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 0,
+                "rs": 1,
+                "lh": 30,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 100
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 0,
+                "rs": 1,
+                "lh": 33,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 110
+            }
+          ]
+        },
+        "m": {
+          "a": {
+            "a": 0,
+            "ix": 2,
+            "k": [
+              0,
+              0
+            ]
+          },
+          "g": 1
+        },
+        "p": {}
+      },
+      "ty": 5
+    },
+    {
+      "ao": 0,
+      "bm": 0,
+      "ddd": 0,
+      "ind": 2,
+      "ip": 0,
+      "ks": {
+        "a": {
+          "a": 0,
+          "ix": 1,
+          "k": [
+            0,
+            0,
+            0
+          ]
+        },
+        "o": {
+          "a": 0,
+          "ix": 11,
+          "k": 100
+        },
+        "p": {
+          "a": 0,
+          "ix": 2,
+          "k": [
+            251,
+            83.5,
+            0
+          ]
+        },
+        "r": {
+          "a": 0,
+          "ix": 10,
+          "k": 0
+        },
+        "s": {
+          "a": 0,
+          "ix": 6,
+          "k": [
+            100,
+            100,
+            100
+          ]
+        }
+      },
+      "nm": "kVisualTop",
+      "op": 120,
+      "sr": 1,
+      "st": 0,
+      "t": {
+        "a": [],
+        "d": {
+          "k": [
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 0,
+                "vj": 3,
+                "rs": 1,
+                "lh": 0.01000213623047,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 0
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 0,
+                "vj": 3,
+                "rs": 1,
+                "lh": 3,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 10
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 0,
+                "vj": 3,
+                "rs": 1,
+                "lh": 6,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 20
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 0,
+                "vj": 3,
+                "rs": 1,
+                "lh": 9,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 30
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 0,
+                "vj": 3,
+                "rs": 1,
+                "lh": 12,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 40
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 0,
+                "vj": 3,
+                "rs": 1,
+                "lh": 15,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 50
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 0,
+                "vj": 3,
+                "rs": 1,
+                "lh": 18,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 60
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 0,
+                "vj": 3,
+                "rs": 1,
+                "lh": 21,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 70
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 0,
+                "vj": 3,
+                "rs": 1,
+                "lh": 24,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 80
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 0,
+                "vj": 3,
+                "rs": 1,
+                "lh": 27,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 90
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 0,
+                "vj": 3,
+                "rs": 1,
+                "lh": 30,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 100
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 0,
+                "vj": 3,
+                "rs": 1,
+                "lh": 33,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 110
+            }
+          ]
+        },
+        "m": {
+          "a": {
+            "a": 0,
+            "ix": 2,
+            "k": [
+              0,
+              0
+            ]
+          },
+          "g": 1
+        },
+        "p": {}
+      },
+      "ty": 5
+    },
+    {
+      "ao": 0,
+      "bm": 0,
+      "ddd": 0,
+      "ind": 3,
+      "ip": 0,
+      "ks": {
+        "a": {
+          "a": 0,
+          "ix": 1,
+          "k": [
+            0,
+            0,
+            0
+          ]
+        },
+        "o": {
+          "a": 0,
+          "ix": 11,
+          "k": 100
+        },
+        "p": {
+          "a": 0,
+          "ix": 2,
+          "k": [
+            381,
+            83.5,
+            0
+          ]
+        },
+        "r": {
+          "a": 0,
+          "ix": 10,
+          "k": 0
+        },
+        "s": {
+          "a": 0,
+          "ix": 6,
+          "k": [
+            100,
+            100,
+            100
+          ]
+        }
+      },
+      "nm": "kVisualCenter",
+      "op": 120,
+      "sr": 1,
+      "st": 0,
+      "t": {
+        "a": [],
+        "d": {
+          "k": [
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 0,
+                "vj": 4,
+                "rs": 1,
+                "lh": 0.01000213623047,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 0
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 0,
+                "vj": 4,
+                "rs": 1,
+                "lh": 3,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 10
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 0,
+                "vj": 4,
+                "rs": 1,
+                "lh": 6,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 20
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 0,
+                "vj": 4,
+                "rs": 1,
+                "lh": 9,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 30
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 0,
+                "vj": 4,
+                "rs": 1,
+                "lh": 12,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 40
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 0,
+                "vj": 4,
+                "rs": 1,
+                "lh": 15,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 50
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 0,
+                "vj": 4,
+                "rs": 1,
+                "lh": 18,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 60
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 0,
+                "vj": 4,
+                "rs": 1,
+                "lh": 21,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 70
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 0,
+                "vj": 4,
+                "rs": 1,
+                "lh": 24,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 80
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 0,
+                "vj": 4,
+                "rs": 1,
+                "lh": 27,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 90
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 0,
+                "vj": 4,
+                "rs": 1,
+                "lh": 30,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 100
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 0,
+                "vj": 4,
+                "rs": 1,
+                "lh": 33,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 110
+            }
+          ]
+        },
+        "m": {
+          "a": {
+            "a": 0,
+            "ix": 2,
+            "k": [
+              0,
+              0
+            ]
+          },
+          "g": 1
+        },
+        "p": {}
+      },
+      "ty": 5
+    },
+    {
+      "ao": 0,
+      "bm": 0,
+      "ddd": 0,
+      "ind": 4,
+      "ip": 0,
+      "ks": {
+        "a": {
+          "a": 0,
+          "ix": 1,
+          "k": [
+            0,
+            0,
+            0
+          ]
+        },
+        "o": {
+          "a": 0,
+          "ix": 11,
+          "k": 100
+        },
+        "p": {
+          "a": 0,
+          "ix": 2,
+          "k": [
+            511,
+            83.5,
+            0
+          ]
+        },
+        "r": {
+          "a": 0,
+          "ix": 10,
+          "k": 0
+        },
+        "s": {
+          "a": 0,
+          "ix": 6,
+          "k": [
+            100,
+            100,
+            100
+          ]
+        }
+      },
+      "nm": "kVisualBottom",
+      "op": 120,
+      "sr": 1,
+      "st": 0,
+      "t": {
+        "a": [],
+        "d": {
+          "k": [
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 0,
+                "vj": 5,
+                "rs": 1,
+                "lh": 0.01000213623047,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 0
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 0,
+                "vj": 5,
+                "rs": 1,
+                "lh": 3,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 10
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 0,
+                "vj": 5,
+                "rs": 1,
+                "lh": 6,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 20
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 0,
+                "vj": 5,
+                "rs": 1,
+                "lh": 9,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 30
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 0,
+                "vj": 5,
+                "rs": 1,
+                "lh": 12,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 40
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 0,
+                "vj": 5,
+                "rs": 1,
+                "lh": 15,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 50
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 0,
+                "vj": 5,
+                "rs": 1,
+                "lh": 18,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 60
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 0,
+                "vj": 5,
+                "rs": 1,
+                "lh": 21,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 70
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 0,
+                "vj": 5,
+                "rs": 1,
+                "lh": 24,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 80
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 0,
+                "vj": 5,
+                "rs": 1,
+                "lh": 27,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 90
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 0,
+                "vj": 5,
+                "rs": 1,
+                "lh": 30,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 100
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 0,
+                "vj": 5,
+                "rs": 1,
+                "lh": 33,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 110
+            }
+          ]
+        },
+        "m": {
+          "a": {
+            "a": 0,
+            "ix": 2,
+            "k": [
+              0,
+              0
+            ]
+          },
+          "g": 1
+        },
+        "p": {}
+      },
+      "ty": 5
+    },
+    {
+      "ao": 0,
+      "bm": 0,
+      "ddd": 0,
+      "ind": 5,
+      "ip": 0,
+      "ks": {
+        "a": {
+          "a": 0,
+          "ix": 1,
+          "k": [
+            0,
+            0,
+            0
+          ]
+        },
+        "o": {
+          "a": 0,
+          "ix": 11,
+          "k": 100
+        },
+        "p": {
+          "a": 0,
+          "ix": 2,
+          "k": [
+            121,
+            250.5,
+            0
+          ]
+        },
+        "r": {
+          "a": 0,
+          "ix": 10,
+          "k": 0
+        },
+        "s": {
+          "a": 0,
+          "ix": 6,
+          "k": [
+            100,
+            100,
+            100
+          ]
+        }
+      },
+      "nm": "kTop 2",
+      "op": 120,
+      "sr": 1,
+      "st": 0,
+      "t": {
+        "a": [],
+        "d": {
+          "k": [
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "rs": 1,
+                "lh": 0.01000213623047,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 0
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "rs": 1,
+                "lh": 3,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 10
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "rs": 1,
+                "lh": 6,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 20
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "rs": 1,
+                "lh": 9,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 30
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "rs": 1,
+                "lh": 12,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 40
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "rs": 1,
+                "lh": 15,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 50
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "rs": 1,
+                "lh": 18,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 60
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "rs": 1,
+                "lh": 21,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 70
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "rs": 1,
+                "lh": 24,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 80
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "rs": 1,
+                "lh": 27,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 90
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "rs": 1,
+                "lh": 30,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 100
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "rs": 1,
+                "lh": 33,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 110
+            }
+          ]
+        },
+        "m": {
+          "a": {
+            "a": 0,
+            "ix": 2,
+            "k": [
+              0,
+              0
+            ]
+          },
+          "g": 1
+        },
+        "p": {}
+      },
+      "ty": 5
+    },
+    {
+      "ao": 0,
+      "bm": 0,
+      "ddd": 0,
+      "ind": 6,
+      "ip": 0,
+      "ks": {
+        "a": {
+          "a": 0,
+          "ix": 1,
+          "k": [
+            0,
+            0,
+            0
+          ]
+        },
+        "o": {
+          "a": 0,
+          "ix": 11,
+          "k": 100
+        },
+        "p": {
+          "a": 0,
+          "ix": 2,
+          "k": [
+            251,
+            250.5,
+            0
+          ]
+        },
+        "r": {
+          "a": 0,
+          "ix": 10,
+          "k": 0
+        },
+        "s": {
+          "a": 0,
+          "ix": 6,
+          "k": [
+            100,
+            100,
+            100
+          ]
+        }
+      },
+      "nm": "kVisualTop 2",
+      "op": 120,
+      "sr": 1,
+      "st": 0,
+      "t": {
+        "a": [],
+        "d": {
+          "k": [
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 3,
+                "rs": 1,
+                "lh": 0.01000213623047,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 0
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 3,
+                "rs": 1,
+                "lh": 3,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 10
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 3,
+                "rs": 1,
+                "lh": 6,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 20
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 3,
+                "rs": 1,
+                "lh": 9,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 30
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 3,
+                "rs": 1,
+                "lh": 12,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 40
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 3,
+                "rs": 1,
+                "lh": 15,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 50
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 3,
+                "rs": 1,
+                "lh": 18,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 60
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 3,
+                "rs": 1,
+                "lh": 21,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 70
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 3,
+                "rs": 1,
+                "lh": 24,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 80
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 3,
+                "rs": 1,
+                "lh": 27,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 90
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 3,
+                "rs": 1,
+                "lh": 30,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 100
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 3,
+                "rs": 1,
+                "lh": 33,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 110
+            }
+          ]
+        },
+        "m": {
+          "a": {
+            "a": 0,
+            "ix": 2,
+            "k": [
+              0,
+              0
+            ]
+          },
+          "g": 1
+        },
+        "p": {}
+      },
+      "ty": 5
+    },
+    {
+      "ao": 0,
+      "bm": 0,
+      "ddd": 0,
+      "ind": 7,
+      "ip": 0,
+      "ks": {
+        "a": {
+          "a": 0,
+          "ix": 1,
+          "k": [
+            0,
+            0,
+            0
+          ]
+        },
+        "o": {
+          "a": 0,
+          "ix": 11,
+          "k": 100
+        },
+        "p": {
+          "a": 0,
+          "ix": 2,
+          "k": [
+            381,
+            250.5,
+            0
+          ]
+        },
+        "r": {
+          "a": 0,
+          "ix": 10,
+          "k": 0
+        },
+        "s": {
+          "a": 0,
+          "ix": 6,
+          "k": [
+            100,
+            100,
+            100
+          ]
+        }
+      },
+      "nm": "kVisualCenter 2",
+      "op": 120,
+      "sr": 1,
+      "st": 0,
+      "t": {
+        "a": [],
+        "d": {
+          "k": [
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 4,
+                "rs": 1,
+                "lh": 0.01000213623047,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 0
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 4,
+                "rs": 1,
+                "lh": 3,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 10
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 4,
+                "rs": 1,
+                "lh": 6,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 20
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 4,
+                "rs": 1,
+                "lh": 9,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 30
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 4,
+                "rs": 1,
+                "lh": 12,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 40
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 4,
+                "rs": 1,
+                "lh": 15,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 50
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 4,
+                "rs": 1,
+                "lh": 18,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 60
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 4,
+                "rs": 1,
+                "lh": 21,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 70
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 4,
+                "rs": 1,
+                "lh": 24,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 80
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 4,
+                "rs": 1,
+                "lh": 27,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 90
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 4,
+                "rs": 1,
+                "lh": 30,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 100
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 4,
+                "rs": 1,
+                "lh": 33,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 110
+            }
+          ]
+        },
+        "m": {
+          "a": {
+            "a": 0,
+            "ix": 2,
+            "k": [
+              0,
+              0
+            ]
+          },
+          "g": 1
+        },
+        "p": {}
+      },
+      "ty": 5
+    },
+    {
+      "ao": 0,
+      "bm": 0,
+      "ddd": 0,
+      "ind": 8,
+      "ip": 0,
+      "ks": {
+        "a": {
+          "a": 0,
+          "ix": 1,
+          "k": [
+            0,
+            0,
+            0
+          ]
+        },
+        "o": {
+          "a": 0,
+          "ix": 11,
+          "k": 100
+        },
+        "p": {
+          "a": 0,
+          "ix": 2,
+          "k": [
+            511,
+            250.5,
+            0
+          ]
+        },
+        "r": {
+          "a": 0,
+          "ix": 10,
+          "k": 0
+        },
+        "s": {
+          "a": 0,
+          "ix": 6,
+          "k": [
+            100,
+            100,
+            100
+          ]
+        }
+      },
+      "nm": "kVisualBottom 2",
+      "op": 120,
+      "sr": 1,
+      "st": 0,
+      "t": {
+        "a": [],
+        "d": {
+          "k": [
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 5,
+                "rs": 1,
+                "lh": 0.01000213623047,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 0
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 5,
+                "rs": 1,
+                "lh": 3,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 10
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 5,
+                "rs": 1,
+                "lh": 6,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 20
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 5,
+                "rs": 1,
+                "lh": 9,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 30
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 5,
+                "rs": 1,
+                "lh": 12,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 40
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 5,
+                "rs": 1,
+                "lh": 15,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 50
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 5,
+                "rs": 1,
+                "lh": 18,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 60
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 5,
+                "rs": 1,
+                "lh": 21,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 70
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 5,
+                "rs": 1,
+                "lh": 24,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 80
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 5,
+                "rs": 1,
+                "lh": 27,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 90
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 5,
+                "rs": 1,
+                "lh": 30,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 100
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "vj": 5,
+                "rs": 1,
+                "lh": 33,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "\rFirst linÉ.\rSecond.\rThird.",
+                "tr": 0
+              },
+              "t": 110
+            }
+          ]
+        },
+        "m": {
+          "a": {
+            "a": 0,
+            "ix": 2,
+            "k": [
+              0,
+              0
+            ]
+          },
+          "g": 1
+        },
+        "p": {}
+      },
+      "ty": 5
+    },
+    {
+      "ao": 0,
+      "bm": 0,
+      "ddd": 0,
+      "ind": 9,
+      "ip": 0,
+      "ks": {
+        "a": {
+          "a": 0,
+          "ix": 1,
+          "k": [
+            0,
+            0,
+            0
+          ]
+        },
+        "o": {
+          "a": 0,
+          "ix": 11,
+          "k": 100
+        },
+        "p": {
+          "a": 0,
+          "ix": 2,
+          "k": [
+            121,
+            416.5,
+            0
+          ]
+        },
+        "r": {
+          "a": 0,
+          "ix": 10,
+          "k": 0
+        },
+        "s": {
+          "a": 0,
+          "ix": 6,
+          "k": [
+            100,
+            100,
+            100
+          ]
+        }
+      },
+      "nm": "kTop 3",
+      "op": 120,
+      "sr": 1,
+      "st": 0,
+      "t": {
+        "a": [],
+        "d": {
+          "k": [
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 2,
+                "rs": 1,
+                "lh": 0.01000213623047,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 0
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 1,
+                "rs": 1,
+                "lh": 3,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 10
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 1,
+                "rs": 1,
+                "lh": 6,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 20
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 1,
+                "rs": 1,
+                "lh": 9,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 30
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 1,
+                "rs": 1,
+                "lh": 12,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 40
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 1,
+                "rs": 1,
+                "lh": 15,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 50
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 1,
+                "rs": 1,
+                "lh": 18,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 60
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 1,
+                "rs": 1,
+                "lh": 21,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 70
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 1,
+                "rs": 1,
+                "lh": 24,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 80
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 1,
+                "rs": 1,
+                "lh": 27,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 90
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 1,
+                "rs": 1,
+                "lh": 30,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 100
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 1,
+                "rs": 1,
+                "lh": 33,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 110
+            }
+          ]
+        },
+        "m": {
+          "a": {
+            "a": 0,
+            "ix": 2,
+            "k": [
+              0,
+              0
+            ]
+          },
+          "g": 1
+        },
+        "p": {}
+      },
+      "ty": 5
+    },
+    {
+      "ao": 0,
+      "bm": 0,
+      "ddd": 0,
+      "ind": 10,
+      "ip": 0,
+      "ks": {
+        "a": {
+          "a": 0,
+          "ix": 1,
+          "k": [
+            0,
+            0,
+            0
+          ]
+        },
+        "o": {
+          "a": 0,
+          "ix": 11,
+          "k": 100
+        },
+        "p": {
+          "a": 0,
+          "ix": 2,
+          "k": [
+            251,
+            416.5,
+            0
+          ]
+        },
+        "r": {
+          "a": 0,
+          "ix": 10,
+          "k": 0
+        },
+        "s": {
+          "a": 0,
+          "ix": 6,
+          "k": [
+            100,
+            100,
+            100
+          ]
+        }
+      },
+      "nm": "kVisualTop 3",
+      "op": 120,
+      "sr": 1,
+      "st": 0,
+      "t": {
+        "a": [],
+        "d": {
+          "k": [
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 1,
+                "vj": 3,
+                "rs": 1,
+                "lh": 0.01000213623047,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 0
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 1,
+                "vj": 3,
+                "rs": 1,
+                "lh": 3,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 10
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 1,
+                "vj": 3,
+                "rs": 1,
+                "lh": 6,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 20
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 1,
+                "vj": 3,
+                "rs": 1,
+                "lh": 9,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 30
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 1,
+                "vj": 3,
+                "rs": 1,
+                "lh": 12,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 40
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 1,
+                "vj": 3,
+                "rs": 1,
+                "lh": 15,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 50
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 1,
+                "vj": 3,
+                "rs": 1,
+                "lh": 18,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 60
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 1,
+                "vj": 3,
+                "rs": 1,
+                "lh": 21,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 70
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 1,
+                "vj": 3,
+                "rs": 1,
+                "lh": 24,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 80
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 1,
+                "vj": 3,
+                "rs": 1,
+                "lh": 27,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 90
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 1,
+                "vj": 3,
+                "rs": 1,
+                "lh": 30,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 100
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 1,
+                "vj": 3,
+                "rs": 1,
+                "lh": 33,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 110
+            }
+          ]
+        },
+        "m": {
+          "a": {
+            "a": 0,
+            "ix": 2,
+            "k": [
+              0,
+              0
+            ]
+          },
+          "g": 1
+        },
+        "p": {}
+      },
+      "ty": 5
+    },
+    {
+      "ao": 0,
+      "bm": 0,
+      "ddd": 0,
+      "ind": 11,
+      "ip": 0,
+      "ks": {
+        "a": {
+          "a": 0,
+          "ix": 1,
+          "k": [
+            0,
+            0,
+            0
+          ]
+        },
+        "o": {
+          "a": 0,
+          "ix": 11,
+          "k": 100
+        },
+        "p": {
+          "a": 0,
+          "ix": 2,
+          "k": [
+            381,
+            416.5,
+            0
+          ]
+        },
+        "r": {
+          "a": 0,
+          "ix": 10,
+          "k": 0
+        },
+        "s": {
+          "a": 0,
+          "ix": 6,
+          "k": [
+            100,
+            100,
+            100
+          ]
+        }
+      },
+      "nm": "kVisualCenter 3",
+      "op": 120,
+      "sr": 1,
+      "st": 0,
+      "t": {
+        "a": [],
+        "d": {
+          "k": [
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 1,
+                "vj": 4,
+                "rs": 1,
+                "lh": 0.01000213623047,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 0
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 1,
+                "vj": 4,
+                "rs": 1,
+                "lh": 3,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 10
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 1,
+                "vj": 4,
+                "rs": 1,
+                "lh": 6,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 20
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 1,
+                "vj": 4,
+                "rs": 1,
+                "lh": 9,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 30
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 1,
+                "vj": 4,
+                "rs": 1,
+                "lh": 12,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 40
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 1,
+                "vj": 4,
+                "rs": 1,
+                "lh": 15,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 50
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 1,
+                "vj": 4,
+                "rs": 1,
+                "lh": 18,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 60
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 1,
+                "vj": 4,
+                "rs": 1,
+                "lh": 21,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 70
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 1,
+                "vj": 4,
+                "rs": 1,
+                "lh": 24,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 80
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 1,
+                "vj": 4,
+                "rs": 1,
+                "lh": 27,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 90
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 1,
+                "vj": 4,
+                "rs": 1,
+                "lh": 30,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 100
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 1,
+                "vj": 4,
+                "rs": 1,
+                "lh": 33,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 110
+            }
+          ]
+        },
+        "m": {
+          "a": {
+            "a": 0,
+            "ix": 2,
+            "k": [
+              0,
+              0
+            ]
+          },
+          "g": 1
+        },
+        "p": {}
+      },
+      "ty": 5
+    },
+    {
+      "ao": 0,
+      "bm": 0,
+      "ddd": 0,
+      "ind": 12,
+      "ip": 0,
+      "ks": {
+        "a": {
+          "a": 0,
+          "ix": 1,
+          "k": [
+            0,
+            0,
+            0
+          ]
+        },
+        "o": {
+          "a": 0,
+          "ix": 11,
+          "k": 100
+        },
+        "p": {
+          "a": 0,
+          "ix": 2,
+          "k": [
+            511,
+            416.5,
+            0
+          ]
+        },
+        "r": {
+          "a": 0,
+          "ix": 10,
+          "k": 0
+        },
+        "s": {
+          "a": 0,
+          "ix": 6,
+          "k": [
+            100,
+            100,
+            100
+          ]
+        }
+      },
+      "nm": "kVisualBottom 3",
+      "op": 120,
+      "sr": 1,
+      "st": 0,
+      "t": {
+        "a": [],
+        "d": {
+          "k": [
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 1,
+                "vj": 5,
+                "rs": 1,
+                "lh": 0.01000213623047,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 0
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 1,
+                "vj": 5,
+                "rs": 1,
+                "lh": 3,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 10
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 1,
+                "vj": 5,
+                "rs": 1,
+                "lh": 6,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 20
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 1,
+                "vj": 5,
+                "rs": 1,
+                "lh": 9,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 30
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 1,
+                "vj": 5,
+                "rs": 1,
+                "lh": 12,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 40
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 1,
+                "vj": 5,
+                "rs": 1,
+                "lh": 15,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 50
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 1,
+                "vj": 5,
+                "rs": 1,
+                "lh": 18,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 60
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 1,
+                "vj": 5,
+                "rs": 1,
+                "lh": 21,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 70
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 1,
+                "vj": 5,
+                "rs": 1,
+                "lh": 24,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 80
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 1,
+                "vj": 5,
+                "rs": 1,
+                "lh": 27,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 90
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 1,
+                "vj": 5,
+                "rs": 1,
+                "lh": 30,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 100
+            },
+            {
+              "s": {
+                "f": "ArialMT",
+                "fc": [
+                  0,
+                  0.971,
+                  0.039
+                ],
+                "j": 1,
+                "vj": 5,
+                "rs": 1,
+                "lh": 33,
+                "ls": 0,
+                "ps": [
+                  -111,
+                  -64.5
+                ],
+                "s": 12,
+                "sz": [
+                  96,
+                  129
+                ],
+                "t": "First linÉ.\rSecond.\rThird.\r",
+                "tr": 0
+              },
+              "t": 110
+            }
+          ]
+        },
+        "m": {
+          "a": {
+            "a": 0,
+            "ix": 2,
+            "k": [
+              0,
+              0
+            ]
+          },
+          "g": 1
+        },
+        "p": {}
+      },
+      "ty": 5
+    },
+    {
+      "ao": 0,
+      "bm": 0,
+      "ddd": 0,
+      "ind": 13,
+      "ip": 0,
+      "ks": {
+        "a": {
+          "a": 0,
+          "ix": 1,
+          "k": [
+            47.5,
+            64,
+            0
+          ]
+        },
+        "o": {
+          "a": 0,
+          "ix": 11,
+          "k": 100
+        },
+        "p": {
+          "a": 0,
+          "ix": 2,
+          "k": [
+            58,
+            83,
+            0
+          ]
+        },
+        "r": {
+          "a": 0,
+          "ix": 10,
+          "k": 0
+        },
+        "s": {
+          "a": 0,
+          "ix": 6,
+          "k": [
+            100,
+            100,
+            100
+          ]
+        }
+      },
+      "nm": "Dark Gray Solid 1",
+      "op": 120,
+      "sc": "#4e4e4e",
+      "sh": 128,
+      "sr": 1,
+      "st": 0,
+      "sw": 95,
+      "ty": 1
+    },
+    {
+      "ao": 0,
+      "bm": 0,
+      "ddd": 0,
+      "ind": 14,
+      "ip": 0,
+      "ks": {
+        "a": {
+          "a": 0,
+          "ix": 1,
+          "k": [
+            47.5,
+            64,
+            0
+          ]
+        },
+        "o": {
+          "a": 0,
+          "ix": 11,
+          "k": 100
+        },
+        "p": {
+          "a": 0,
+          "ix": 2,
+          "k": [
+            188,
+            83,
+            0
+          ]
+        },
+        "r": {
+          "a": 0,
+          "ix": 10,
+          "k": 0
+        },
+        "s": {
+          "a": 0,
+          "ix": 6,
+          "k": [
+            100,
+            100,
+            100
+          ]
+        }
+      },
+      "nm": "Dark Gray Solid 1",
+      "op": 120,
+      "sc": "#4e4e4e",
+      "sh": 128,
+      "sr": 1,
+      "st": 0,
+      "sw": 95,
+      "ty": 1
+    },
+    {
+      "ao": 0,
+      "bm": 0,
+      "ddd": 0,
+      "ind": 15,
+      "ip": 0,
+      "ks": {
+        "a": {
+          "a": 0,
+          "ix": 1,
+          "k": [
+            47.5,
+            64,
+            0
+          ]
+        },
+        "o": {
+          "a": 0,
+          "ix": 11,
+          "k": 100
+        },
+        "p": {
+          "a": 0,
+          "ix": 2,
+          "k": [
+            318,
+            83,
+            0
+          ]
+        },
+        "r": {
+          "a": 0,
+          "ix": 10,
+          "k": 0
+        },
+        "s": {
+          "a": 0,
+          "ix": 6,
+          "k": [
+            100,
+            100,
+            100
+          ]
+        }
+      },
+      "nm": "Dark Gray Solid 1",
+      "op": 120,
+      "sc": "#4e4e4e",
+      "sh": 128,
+      "sr": 1,
+      "st": 0,
+      "sw": 95,
+      "ty": 1
+    },
+    {
+      "ao": 0,
+      "bm": 0,
+      "ddd": 0,
+      "ind": 16,
+      "ip": 0,
+      "ks": {
+        "a": {
+          "a": 0,
+          "ix": 1,
+          "k": [
+            47.5,
+            64,
+            0
+          ]
+        },
+        "o": {
+          "a": 0,
+          "ix": 11,
+          "k": 100
+        },
+        "p": {
+          "a": 0,
+          "ix": 2,
+          "k": [
+            448,
+            83,
+            0
+          ]
+        },
+        "r": {
+          "a": 0,
+          "ix": 10,
+          "k": 0
+        },
+        "s": {
+          "a": 0,
+          "ix": 6,
+          "k": [
+            100,
+            100,
+            100
+          ]
+        }
+      },
+      "nm": "Dark Gray Solid 1",
+      "op": 120,
+      "sc": "#4e4e4e",
+      "sh": 128,
+      "sr": 1,
+      "st": 0,
+      "sw": 95,
+      "ty": 1
+    },
+    {
+      "ao": 0,
+      "bm": 0,
+      "ddd": 0,
+      "ind": 17,
+      "ip": 0,
+      "ks": {
+        "a": {
+          "a": 0,
+          "ix": 1,
+          "k": [
+            47.5,
+            64,
+            0
+          ]
+        },
+        "o": {
+          "a": 0,
+          "ix": 11,
+          "k": 100
+        },
+        "p": {
+          "a": 0,
+          "ix": 2,
+          "k": [
+            58,
+            250,
+            0
+          ]
+        },
+        "r": {
+          "a": 0,
+          "ix": 10,
+          "k": 0
+        },
+        "s": {
+          "a": 0,
+          "ix": 6,
+          "k": [
+            100,
+            100,
+            100
+          ]
+        }
+      },
+      "nm": "Dark Gray Solid 1",
+      "op": 120,
+      "sc": "#4e4e4e",
+      "sh": 128,
+      "sr": 1,
+      "st": 0,
+      "sw": 95,
+      "ty": 1
+    },
+    {
+      "ao": 0,
+      "bm": 0,
+      "ddd": 0,
+      "ind": 18,
+      "ip": 0,
+      "ks": {
+        "a": {
+          "a": 0,
+          "ix": 1,
+          "k": [
+            47.5,
+            64,
+            0
+          ]
+        },
+        "o": {
+          "a": 0,
+          "ix": 11,
+          "k": 100
+        },
+        "p": {
+          "a": 0,
+          "ix": 2,
+          "k": [
+            188,
+            250,
+            0
+          ]
+        },
+        "r": {
+          "a": 0,
+          "ix": 10,
+          "k": 0
+        },
+        "s": {
+          "a": 0,
+          "ix": 6,
+          "k": [
+            100,
+            100,
+            100
+          ]
+        }
+      },
+      "nm": "Dark Gray Solid 1",
+      "op": 120,
+      "sc": "#4e4e4e",
+      "sh": 128,
+      "sr": 1,
+      "st": 0,
+      "sw": 95,
+      "ty": 1
+    },
+    {
+      "ao": 0,
+      "bm": 0,
+      "ddd": 0,
+      "ind": 19,
+      "ip": 0,
+      "ks": {
+        "a": {
+          "a": 0,
+          "ix": 1,
+          "k": [
+            47.5,
+            64,
+            0
+          ]
+        },
+        "o": {
+          "a": 0,
+          "ix": 11,
+          "k": 100
+        },
+        "p": {
+          "a": 0,
+          "ix": 2,
+          "k": [
+            318,
+            250,
+            0
+          ]
+        },
+        "r": {
+          "a": 0,
+          "ix": 10,
+          "k": 0
+        },
+        "s": {
+          "a": 0,
+          "ix": 6,
+          "k": [
+            100,
+            100,
+            100
+          ]
+        }
+      },
+      "nm": "Dark Gray Solid 1",
+      "op": 120,
+      "sc": "#4e4e4e",
+      "sh": 128,
+      "sr": 1,
+      "st": 0,
+      "sw": 95,
+      "ty": 1
+    },
+    {
+      "ao": 0,
+      "bm": 0,
+      "ddd": 0,
+      "ind": 20,
+      "ip": 0,
+      "ks": {
+        "a": {
+          "a": 0,
+          "ix": 1,
+          "k": [
+            47.5,
+            64,
+            0
+          ]
+        },
+        "o": {
+          "a": 0,
+          "ix": 11,
+          "k": 100
+        },
+        "p": {
+          "a": 0,
+          "ix": 2,
+          "k": [
+            448,
+            250,
+            0
+          ]
+        },
+        "r": {
+          "a": 0,
+          "ix": 10,
+          "k": 0
+        },
+        "s": {
+          "a": 0,
+          "ix": 6,
+          "k": [
+            100,
+            100,
+            100
+          ]
+        }
+      },
+      "nm": "Dark Gray Solid 1",
+      "op": 120,
+      "sc": "#4e4e4e",
+      "sh": 128,
+      "sr": 1,
+      "st": 0,
+      "sw": 95,
+      "ty": 1
+    },
+    {
+      "ao": 0,
+      "bm": 0,
+      "ddd": 0,
+      "ind": 21,
+      "ip": 0,
+      "ks": {
+        "a": {
+          "a": 0,
+          "ix": 1,
+          "k": [
+            47.5,
+            64,
+            0
+          ]
+        },
+        "o": {
+          "a": 0,
+          "ix": 11,
+          "k": 100
+        },
+        "p": {
+          "a": 0,
+          "ix": 2,
+          "k": [
+            58,
+            416,
+            0
+          ]
+        },
+        "r": {
+          "a": 0,
+          "ix": 10,
+          "k": 0
+        },
+        "s": {
+          "a": 0,
+          "ix": 6,
+          "k": [
+            100,
+            100,
+            100
+          ]
+        }
+      },
+      "nm": "Dark Gray Solid 1",
+      "op": 120,
+      "sc": "#4e4e4e",
+      "sh": 128,
+      "sr": 1,
+      "st": 0,
+      "sw": 95,
+      "ty": 1
+    },
+    {
+      "ao": 0,
+      "bm": 0,
+      "ddd": 0,
+      "ind": 22,
+      "ip": 0,
+      "ks": {
+        "a": {
+          "a": 0,
+          "ix": 1,
+          "k": [
+            47.5,
+            64,
+            0
+          ]
+        },
+        "o": {
+          "a": 0,
+          "ix": 11,
+          "k": 100
+        },
+        "p": {
+          "a": 0,
+          "ix": 2,
+          "k": [
+            188,
+            416,
+            0
+          ]
+        },
+        "r": {
+          "a": 0,
+          "ix": 10,
+          "k": 0
+        },
+        "s": {
+          "a": 0,
+          "ix": 6,
+          "k": [
+            100,
+            100,
+            100
+          ]
+        }
+      },
+      "nm": "Dark Gray Solid 1",
+      "op": 120,
+      "sc": "#4e4e4e",
+      "sh": 128,
+      "sr": 1,
+      "st": 0,
+      "sw": 95,
+      "ty": 1
+    },
+    {
+      "ao": 0,
+      "bm": 0,
+      "ddd": 0,
+      "ind": 23,
+      "ip": 0,
+      "ks": {
+        "a": {
+          "a": 0,
+          "ix": 1,
+          "k": [
+            47.5,
+            64,
+            0
+          ]
+        },
+        "o": {
+          "a": 0,
+          "ix": 11,
+          "k": 100
+        },
+        "p": {
+          "a": 0,
+          "ix": 2,
+          "k": [
+            318,
+            416,
+            0
+          ]
+        },
+        "r": {
+          "a": 0,
+          "ix": 10,
+          "k": 0
+        },
+        "s": {
+          "a": 0,
+          "ix": 6,
+          "k": [
+            100,
+            100,
+            100
+          ]
+        }
+      },
+      "nm": "Dark Gray Solid 1",
+      "op": 120,
+      "sc": "#4e4e4e",
+      "sh": 128,
+      "sr": 1,
+      "st": 0,
+      "sw": 95,
+      "ty": 1
+    },
+    {
+      "ao": 0,
+      "bm": 0,
+      "ddd": 0,
+      "ind": 24,
+      "ip": 0,
+      "ks": {
+        "a": {
+          "a": 0,
+          "ix": 1,
+          "k": [
+            47.5,
+            64,
+            0
+          ]
+        },
+        "o": {
+          "a": 0,
+          "ix": 11,
+          "k": 100
+        },
+        "p": {
+          "a": 0,
+          "ix": 2,
+          "k": [
+            448,
+            416,
+            0
+          ]
+        },
+        "r": {
+          "a": 0,
+          "ix": 10,
+          "k": 0
+        },
+        "s": {
+          "a": 0,
+          "ix": 6,
+          "k": [
+            100,
+            100,
+            100
+          ]
+        }
+      },
+      "nm": "Dark Gray Solid 1",
+      "op": 120,
+      "sc": "#4e4e4e",
+      "sh": 128,
+      "sr": 1,
+      "st": 0,
+      "sw": 95,
+      "ty": 1
+    },
+    {
+      "ao": 0,
+      "bm": 0,
+      "ddd": 0,
+      "ind": 25,
+      "ip": 0,
+      "ks": {
+        "a": {
+          "a": 0,
+          "ix": 1,
+          "k": [
+            250,
+            250,
+            0
+          ]
+        },
+        "o": {
+          "a": 0,
+          "ix": 11,
+          "k": 100
+        },
+        "p": {
+          "a": 0,
+          "ix": 2,
+          "k": [
+            250,
+            250,
+            0
+          ]
+        },
+        "r": {
+          "a": 0,
+          "ix": 10,
+          "k": 0
+        },
+        "s": {
+          "a": 0,
+          "ix": 6,
+          "k": [
+            100,
+            100,
+            100
+          ]
+        }
+      },
+      "nm": "Black Solid 1",
+      "op": 120,
+      "sc": "#000000",
+      "sh": 500,
+      "sr": 1,
+      "st": 0,
+      "sw": 500,
+      "ty": 1
+    }
+  ],
+  "markers": [],
+  "nm": "valign",
+  "op": 120,
+  "v": "5.5.2",
+  "w": 500
+}