diff --git a/CHANGELOG.md b/CHANGELOG.md index 1052050ba..f8562a383 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -97,6 +97,43 @@ follow semantic versioning; release dates are ISO 8601. ### Templates +- **A navy-plate CV preset: `MidnightNavy`.** A one-page sheet on a full-height navy + plate: an outlined monogram over a two-weight name and a tracked role line, then + contact, education, metered skills and dotted languages down the plate, beside a + paper column carrying the summary, the roles held on a rail, three achievement discs + and the certifications in divided columns. Ships as `cv.presets.MidnightNavy` on the + existing `CvDocument` model, porting the rendered layout of a published standalone + template; it needed no model change. The plate is a page background rather than a + section fill — it reaches three paper edges and a fill stops at its own box — sized + by the same ratio the body row splits on, so the two cannot drift apart. Every + horizontal pair goes through one wrapper: a row nested directly in a row cell is + refused and both columns are cells, so a skill and its meter, a language and its + dots, a title and its dates, a disc and its line and the certification columns are + each a row wrapped in a single layer of a stack. Three marks are relationships rather + than lengths: the experience rail is the entry section's left accent, so its height + derives from the entry and the inter-entry gap is padding inside the border, which is + what makes consecutive rails meet; a certification divider is the column's own + accent; and a skill meter is three layers sharing the track's axis rather than three + pieces placed apart. The monogram and the role line are built from the identity — two + initials and the name's own words — so a document fills neither in twice. Seven + berths reach their sections by title, and the contact heading is the preset's own + because a document has no section to carry it. Unlike its ported siblings this sheet + is one page **strictly**: the body is a single row and a row is atomic, so a longer CV + is refused with an `AtomicNodeTooLargeException` naming the node rather than being cut + — splitting the row would leave the plate on one page and half the aside on the next. + Two things depart from the ported sheet deliberately, and both are measured. A link is + drawn as its own label with the address behind it, as on the presets before it. And + every rail marker is centred on its rail: an accent is drawn centred on the edge it + belongs to, so the section's left edge already is the rail's axis, and the ported + sheet's extra half-thickness correction put each marker a rail width to the right of + the line it sits on — 0.72 pt, visible at reading size. Together the two come to + 2 498 of 2 173 720 pixels, of which the centring is 200. Guarded by a smoke test (including the unknown-mark data error, the + monogram taken from the name, the uppercased name and tracked role, a language rating + rounded to the nearest of five dots, a skill with no level, a trunk prefix left + undialled, the link targets on every kind of title, a dropped berth, a document with + nothing but an identity, and the refusal past one page), an exact layout snapshot and + a pixel-parity gate; the examples showcase gains `cv-midnight-navy-v2`. + - **A two-column operations CV preset: `OrangeOps`.** A one-page sheet in three bands over a split body: a two-tone name above a dark role bar whose right edge and three accent slashes all lean by one ratio, a contact strip whose items sit on one axis diff --git a/assets/readme/examples/cv-midnight-navy-v2.pdf b/assets/readme/examples/cv-midnight-navy-v2.pdf new file mode 100644 index 000000000..738becf1f Binary files /dev/null and b/assets/readme/examples/cv-midnight-navy-v2.pdf differ diff --git a/examples/src/main/java/com/demcha/examples/GenerateAllExamples.java b/examples/src/main/java/com/demcha/examples/GenerateAllExamples.java index e0cd6b1a5..9a7049ba2 100644 --- a/examples/src/main/java/com/demcha/examples/GenerateAllExamples.java +++ b/examples/src/main/java/com/demcha/examples/GenerateAllExamples.java @@ -81,6 +81,7 @@ import com.demcha.examples.templates.coverletter.CvTimelineMinimalLetterV2Example; import com.demcha.examples.templates.cv.v2.CharcoalGoldExample; import com.demcha.examples.templates.cv.v2.SlateOrangeExample; +import com.demcha.examples.templates.cv.v2.MidnightNavyExample; import com.demcha.examples.templates.cv.v2.OrangeOpsExample; import com.demcha.examples.templates.cv.v2.VioletGridExample; import com.demcha.examples.templates.cv.v2.TealPulseExample; @@ -164,6 +165,7 @@ public static void main(String[] args) throws Exception { System.out.println("Generated: " + SlateOrangeExample.generate()); System.out.println("Generated: " + VioletGridExample.generate()); System.out.println("Generated: " + OrangeOpsExample.generate()); + System.out.println("Generated: " + MidnightNavyExample.generate()); // Cover letters (v2 layered — 15 paired letters, one per CV preset) System.out.println("Generated: " + CvBlueBannerLetterV2Example.generate()); diff --git a/examples/src/main/java/com/demcha/examples/support/MidnightNavySampleData.java b/examples/src/main/java/com/demcha/examples/support/MidnightNavySampleData.java new file mode 100644 index 000000000..9b6f85d16 --- /dev/null +++ b/examples/src/main/java/com/demcha/examples/support/MidnightNavySampleData.java @@ -0,0 +1,198 @@ +package com.demcha.examples.support; + +import com.demcha.compose.document.templates.core.identity.Contact; +import com.demcha.compose.document.templates.core.identity.Link; +import com.demcha.compose.document.templates.cv.data.CvDocument; +import com.demcha.compose.document.templates.cv.data.CvEntry; +import com.demcha.compose.document.templates.cv.data.CvIdentity; +import com.demcha.compose.document.templates.cv.data.CvName; +import com.demcha.compose.document.templates.cv.data.CvSkill; +import com.demcha.compose.document.templates.cv.data.EntriesSection; +import com.demcha.compose.document.templates.cv.data.ParagraphSection; +import com.demcha.compose.document.templates.cv.data.SkillGroup; +import com.demcha.compose.document.templates.cv.data.SkillsSection; +import com.demcha.compose.document.templates.cv.data.Slot; + +import java.util.ArrayList; +import java.util.List; +import java.util.Optional; + +/** + * Shared sample data for the Midnight Navy CV example. + * + *
Kept in lockstep with the qa module's {@code MidnightNavyFixtures} — the + * two modules cannot share a source file, so a content change here belongs + * there too.
+ */ +public final class MidnightNavySampleData { + + /** The break a body stacks its lines on. */ + private static final String NEWLINE = String.valueOf((char) 10); + + private MidnightNavySampleData() { + } + + /** + * The canonical one-page CV — five contact rows including two links, two + * degrees, ten metered skills, three rated languages, the summary, three + * roles, three achievement discs and two certifications. + * + * @return the document + */ + public static CvDocument sample() { + ListOutput: + * {@code examples/target/generated-pdfs/templates/cv/cv-midnight-navy-v2.pdf}.
+ * + *The preset owns its page geometry — every length is a share of the + * design's own grid, and the navy plate is a page background sized by the same + * ratio the body row splits on — so the session starts unconfigured.
+ */ +public final class MidnightNavyExample { + + private MidnightNavyExample() { + } + + /** + * @return absolute path of the rendered PDF + * @throws Exception if rendering fails + */ + public static Path generate() throws Exception { + Path outputFile = ExampleOutputPaths.prepare("templates/cv", "cv-midnight-navy-v2.pdf"); + CvDocument doc = MidnightNavySampleData.sample(); + DocumentTemplateThe preset owns its page geometry, so the session starts unconfigured.
+ * + *Refresh with {@code -Dgraphcompose.updateSnapshots=true} after a + * deliberate layout change, and commit the JSON with the change.
+ */ +class MidnightNavyLayoutSnapshotTest { + + @Test + void canonicalCvMatchesLayoutSnapshot() throws Exception { + try (DocumentSession session = GraphCompose.document().create()) { + MidnightNavy.create().compose(session, MidnightNavyFixtures.canonicalCv()); + assertThat(session.layoutSnapshot().totalPages()).isEqualTo(1); + TemplateTestSupport.assertCanonicalSnapshot( + session, "midnight_navy_layout", "cv-v2"); + } + } +} diff --git a/qa/src/test/java/com/demcha/compose/document/templates/cv/presets/MidnightNavySmokeTest.java b/qa/src/test/java/com/demcha/compose/document/templates/cv/presets/MidnightNavySmokeTest.java new file mode 100644 index 000000000..565c0418f --- /dev/null +++ b/qa/src/test/java/com/demcha/compose/document/templates/cv/presets/MidnightNavySmokeTest.java @@ -0,0 +1,292 @@ +package com.demcha.compose.document.templates.cv.presets; + +import com.demcha.compose.GraphCompose; +import com.demcha.compose.document.api.DocumentSession; +import com.demcha.compose.document.exceptions.AtomicNodeTooLargeException; +import com.demcha.compose.document.templates.api.DocumentTemplate; +import com.demcha.compose.document.templates.core.identity.Contact; +import com.demcha.compose.document.templates.cv.data.CvDocument; +import com.demcha.compose.document.templates.cv.data.CvEntry; +import com.demcha.compose.document.templates.cv.data.CvIdentity; +import com.demcha.compose.document.templates.cv.data.CvName; +import com.demcha.compose.document.templates.cv.data.CvSection; +import com.demcha.compose.document.templates.cv.data.CvSkill; +import com.demcha.compose.document.templates.cv.data.EntriesSection; +import com.demcha.compose.document.templates.cv.data.SkillGroup; +import com.demcha.compose.document.templates.cv.data.SkillsSection; +import com.demcha.compose.document.templates.cv.data.Slot; +import org.apache.pdfbox.Loader; +import org.apache.pdfbox.pdmodel.PDDocument; +import org.apache.pdfbox.pdmodel.PDPage; +import org.apache.pdfbox.pdmodel.interactive.action.PDActionURI; +import org.apache.pdfbox.pdmodel.interactive.annotation.PDAnnotation; +import org.apache.pdfbox.pdmodel.interactive.annotation.PDAnnotationLink; +import org.apache.pdfbox.text.PDFTextStripper; +import org.junit.jupiter.api.Test; + +import java.util.ArrayList; +import java.util.List; +import java.util.Optional; +import java.util.Set; + +import static org.assertj.core.api.Assertions.assertThat; +import static org.assertj.core.api.Assertions.assertThatThrownBy; + +/** + * Smoke test for {@link MidnightNavy} — proves the preset renders a + * {@link CvDocument} end-to-end with its packaged marks, builds the monogram + * and the tracked role line from the identity it is given, rounds a language's + * rating to the nearest of five dots, reports an unknown mark as a data error, + * drops a berth nobody filled, and carries the channels and the entry titles as + * link annotations, which move no pixel and no layout node so neither gate + * would notice them going missing. + */ +class MidnightNavySmokeTest { + + private static final String NEWLINE = String.valueOf((char) 10); + + private static byte[] render(CvDocument doc) throws Exception { + // The preset owns its page geometry, so the session starts unconfigured. + try (DocumentSession session = GraphCompose.document().create()) { + MidnightNavy.create().compose(session, doc); + assertThat(session.roots()).isNotEmpty(); + byte[] pdfBytes = session.toPdfBytes(); + assertThat(pdfBytes).isNotEmpty(); + return pdfBytes; + } + } + + private static String textOf(byte[] pdfBytes) throws Exception { + try (PDDocument document = Loader.loadPDF(pdfBytes)) { + return new PDFTextStripper().getText(document); + } + } + + /** The text with its spaces removed — the role line is tracked with real spaces. */ + private static String compact(String text) { + return text.replaceAll("(?U)\\s", ""); + } + + private static ListRe-blessing baselines — after a deliberate visual change, + * re-run with {@code -Dgraphcompose.visual.approve=true} and commit the updated + * PNG with the change. Baselines live under + * {@code src/test/resources/visual-baselines/cv-v2-layered/}.
+ */ +class MidnightNavyVisualParityTest { + + private static final Path BASELINE_ROOT = Path.of( + "src", "test", "resources", "visual-baselines", "cv-v2-layered"); + + private static final long PIXEL_DIFF_BUDGET = 50_000L; + private static final int PER_PIXEL_TOLERANCE = 8; + + @Test + void rendersWithinPixelDiffBudget() throws Exception { + byte[] pdfBytes; + try (DocumentSession document = GraphCompose.document().create()) { + MidnightNavy.create().compose(document, MidnightNavyFixtures.canonicalCv()); + pdfBytes = document.toPdfBytes(); + } + + PdfVisualRegression.standard() + .baselineRoot(BASELINE_ROOT) + .perPixelTolerance(PER_PIXEL_TOLERANCE) + .mismatchedPixelBudget(PIXEL_DIFF_BUDGET) + .assertMatchesBaseline("midnight_navy", pdfBytes); + } +} diff --git a/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/midnight_navy_layout.json b/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/midnight_navy_layout.json new file mode 100644 index 000000000..42166acb3 --- /dev/null +++ b/qa/src/test/resources/layout-snapshots/canonical-templates/cv-v2/midnight_navy_layout.json @@ -0,0 +1,7217 @@ +{ + "formatVersion" : "2.0", + "canvas" : { + "pageWidth" : 595.276, + "pageHeight" : 841.89, + "innerWidth" : 595.276, + "innerHeight" : 841.89, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, + "totalPages" : 1, + "nodes" : [ { + "path" : "MidnightNavyCv[0]", + "entityName" : "MidnightNavyCv", + "entityKind" : "ContainerNode", + "parentPath" : null, + "childIndex" : 0, + "depth" : 1, + "layer" : 1, + "computedX" : 0.0, + "computedY" : 28.659, + "placementX" : 0.0, + "placementY" : 28.659, + "placementWidth" : 595.276, + "placementHeight" : 813.231, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 595.276, + "contentHeight" : 813.231, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]", + "entityName" : "PageGrid", + "entityKind" : "RowNode", + "parentPath" : "MidnightNavyCv[0]", + "childIndex" : 0, + "depth" : 2, + "layer" : 2, + "computedX" : 0.0, + "computedY" : 28.659, + "placementX" : 0.0, + "placementY" : 28.659, + "placementWidth" : 595.276, + "placementHeight" : 813.231, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 595.276, + "contentHeight" : 813.231, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]", + "entityName" : "Aside", + "entityKind" : "SectionNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]", + "childIndex" : 0, + "depth" : 3, + "layer" : 3, + "computedX" : 0.0, + "computedY" : 56.397, + "placementX" : 0.0, + "placementY" : 56.397, + "placementWidth" : 185.247, + "placementHeight" : 785.492, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 185.247, + "contentHeight" : 785.492, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 30.498, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Align[0]", + "entityName" : null, + "entityKind" : "Align", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]", + "childIndex" : 0, + "depth" : 4, + "layer" : 4, + "computedX" : 0.0, + "computedY" : 735.147, + "placementX" : 0.0, + "placementY" : 735.147, + "placementWidth" : 185.247, + "placementHeight" : 76.245, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 185.247, + "contentHeight" : 76.245, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Align[0]/Monogram[0]", + "entityName" : "Monogram", + "entityKind" : "ShapeContainerNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Align[0]", + "childIndex" : 0, + "depth" : 5, + "layer" : 5, + "computedX" : 54.501, + "computedY" : 735.147, + "placementX" : 54.501, + "placementY" : 735.147, + "placementWidth" : 76.245, + "placementHeight" : 76.245, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 76.245, + "contentHeight" : 76.245, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Align[0]/Monogram[0]/MonogramLine1[0]", + "entityName" : "MonogramLine1", + "entityKind" : "ParagraphNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Align[0]/Monogram[0]", + "childIndex" : 0, + "depth" : 6, + "layer" : 6, + "computedX" : 54.501, + "computedY" : 771.535, + "placementX" : 54.501, + "placementY" : 771.535, + "placementWidth" : 76.245, + "placementHeight" : 30.014, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 76.245, + "contentHeight" : 30.014, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Align[0]/Monogram[0]/MonogramLine2[1]", + "entityName" : "MonogramLine2", + "entityKind" : "ParagraphNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Align[0]/Monogram[0]", + "childIndex" : 1, + "depth" : 6, + "layer" : 6, + "computedX" : 54.501, + "computedY" : 744.99, + "placementX" : 54.501, + "placementY" : 744.99, + "placementWidth" : 76.245, + "placementHeight" : 30.014, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 76.245, + "contentHeight" : 30.014, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Name[1]", + "entityName" : "Name", + "entityKind" : "ParagraphNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]", + "childIndex" : 1, + "depth" : 4, + "layer" : 4, + "computedX" : 0.0, + "computedY" : 701.357, + "placementX" : 0.0, + "placementY" : 701.357, + "placementWidth" : 185.247, + "placementHeight" : 22.268, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 185.247, + "contentHeight" : 22.268, + "margin" : { + "top" : 11.521, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Role[2]", + "entityName" : "Role", + "entityKind" : "ParagraphNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]", + "childIndex" : 2, + "depth" : 4, + "layer" : 4, + "computedX" : 0.0, + "computedY" : 684.276, + "placementX" : 0.0, + "placementY" : 684.276, + "placementWidth" : 185.247, + "placementHeight" : 9.682, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 185.247, + "contentHeight" : 9.682, + "margin" : { + "top" : 7.399, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/NameDivider[3]", + "entityName" : "NameDivider", + "entityKind" : "LineNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]", + "childIndex" : 3, + "depth" : 4, + "layer" : 4, + "computedX" : 35.863, + "computedY" : 671.021, + "placementX" : 35.863, + "placementY" : 671.021, + "placementWidth" : 113.52, + "placementHeight" : 1.0, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 113.52, + "contentHeight" : 1.0, + "margin" : { + "top" : 12.256, + "right" : 0.0, + "bottom" : 0.0, + "left" : 35.863 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Contact[4]", + "entityName" : "Contact", + "entityKind" : "SectionNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]", + "childIndex" : 4, + "depth" : 4, + "layer" : 4, + "computedX" : 0.0, + "computedY" : 544.059, + "placementX" : 0.0, + "placementY" : 544.059, + "placementWidth" : 156.577, + "placementHeight" : 105.952, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 156.577, + "contentHeight" : 105.952, + "margin" : { + "top" : 21.01, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 24.285, + "bottom" : 0.0, + "left" : 29.368 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Contact[4]/AsideHeadingCONTACT[0]", + "entityName" : "AsideHeadingCONTACT", + "entityKind" : "ParagraphNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Contact[4]", + "childIndex" : 0, + "depth" : 5, + "layer" : 5, + "computedX" : 29.368, + "computedY" : 637.425, + "placementX" : 29.368, + "placementY" : 637.425, + "placementWidth" : 45.553, + "placementHeight" : 12.586, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 45.553, + "contentHeight" : 12.586, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Contact[4]/AsideRuleCONTACT[1]", + "entityName" : "AsideRuleCONTACT", + "entityKind" : "LineNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Contact[4]", + "childIndex" : 1, + "depth" : 5, + "layer" : 5, + "computedX" : 29.368, + "computedY" : 635.165, + "placementX" : 29.368, + "placementY" : 635.165, + "placementWidth" : 56.478, + "placementHeight" : 1.13, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 56.478, + "contentHeight" : 1.13, + "margin" : { + "top" : 1.13, + "right" : 0.0, + "bottom" : 12.199, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Contact[4]/ContactRows[2]", + "entityName" : "ContactRows", + "entityKind" : "SectionNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Contact[4]", + "childIndex" : 2, + "depth" : 5, + "layer" : 5, + "computedX" : 29.368, + "computedY" : 544.059, + "placementX" : 29.368, + "placementY" : 544.059, + "placementWidth" : 102.923, + "placementHeight" : 78.908, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 102.923, + "contentHeight" : 78.908, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Contact[4]/ContactRows[2]/Contact0[0]", + "entityName" : "Contact0", + "entityKind" : "ParagraphNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Contact[4]/ContactRows[2]", + "childIndex" : 0, + "depth" : 6, + "layer" : 6, + "computedX" : 29.368, + "computedY" : 613.284, + "placementX" : 29.368, + "placementY" : 613.284, + "placementWidth" : 74.353, + "placementHeight" : 9.682, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 74.353, + "contentHeight" : 9.682, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Contact[4]/ContactRows[2]/Contact1[1]", + "entityName" : "Contact1", + "entityKind" : "ParagraphNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Contact[4]/ContactRows[2]", + "childIndex" : 1, + "depth" : 6, + "layer" : 6, + "computedX" : 29.368, + "computedY" : 595.978, + "placementX" : 29.368, + "placementY" : 595.978, + "placementWidth" : 102.923, + "placementHeight" : 9.682, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 102.923, + "contentHeight" : 9.682, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Contact[4]/ContactRows[2]/Contact2[2]", + "entityName" : "Contact2", + "entityKind" : "ParagraphNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Contact[4]/ContactRows[2]", + "childIndex" : 2, + "depth" : 6, + "layer" : 6, + "computedX" : 29.368, + "computedY" : 578.672, + "placementX" : 29.368, + "placementY" : 578.672, + "placementWidth" : 82.058, + "placementHeight" : 9.682, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 82.058, + "contentHeight" : 9.682, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Contact[4]/ContactRows[2]/Contact3[3]", + "entityName" : "Contact3", + "entityKind" : "ParagraphNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Contact[4]/ContactRows[2]", + "childIndex" : 3, + "depth" : 6, + "layer" : 6, + "computedX" : 29.368, + "computedY" : 561.365, + "placementX" : 29.368, + "placementY" : 561.365, + "placementWidth" : 46.744, + "placementHeight" : 9.682, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 46.744, + "contentHeight" : 9.682, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Contact[4]/ContactRows[2]/Contact4[4]", + "entityName" : "Contact4", + "entityKind" : "ParagraphNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Contact[4]/ContactRows[2]", + "childIndex" : 4, + "depth" : 6, + "layer" : 6, + "computedX" : 29.368, + "computedY" : 544.059, + "placementX" : 29.368, + "placementY" : 544.059, + "placementWidth" : 47.195, + "placementHeight" : 9.682, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 47.195, + "contentHeight" : 9.682, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Education[5]", + "entityName" : "Education", + "entityKind" : "SectionNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]", + "childIndex" : 5, + "depth" : 4, + "layer" : 4, + "computedX" : 0.0, + "computedY" : 357.698, + "placementX" : 0.0, + "placementY" : 357.698, + "placementWidth" : 185.247, + "placementHeight" : 155.072, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 185.247, + "contentHeight" : 155.072, + "margin" : { + "top" : 31.289, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 24.285, + "bottom" : 0.0, + "left" : 29.368 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Education[5]/AsideHeadingEDUCATION[0]", + "entityName" : "AsideHeadingEDUCATION", + "entityKind" : "ParagraphNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Education[5]", + "childIndex" : 0, + "depth" : 5, + "layer" : 5, + "computedX" : 29.368, + "computedY" : 500.184, + "placementX" : 29.368, + "placementY" : 500.184, + "placementWidth" : 55.003, + "placementHeight" : 12.586, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 55.003, + "contentHeight" : 12.586, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Education[5]/AsideRuleEDUCATION[1]", + "entityName" : "AsideRuleEDUCATION", + "entityKind" : "LineNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Education[5]", + "childIndex" : 1, + "depth" : 5, + "layer" : 5, + "computedX" : 29.368, + "computedY" : 497.925, + "placementX" : 29.368, + "placementY" : 497.925, + "placementWidth" : 131.593, + "placementHeight" : 1.13, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 131.593, + "contentHeight" : 1.13, + "margin" : { + "top" : 1.13, + "right" : 0.0, + "bottom" : 10.392, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Education[5]/EducationEntries[2]", + "entityName" : "EducationEntries", + "entityKind" : "SectionNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Education[5]", + "childIndex" : 2, + "depth" : 5, + "layer" : 5, + "computedX" : 29.368, + "computedY" : 357.698, + "placementX" : 29.368, + "placementY" : 357.698, + "placementWidth" : 118.158, + "placementHeight" : 129.834, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 118.158, + "contentHeight" : 129.834, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Education[5]/EducationEntries[2]/EducationEntry[0]", + "entityName" : "EducationEntry", + "entityKind" : "SectionNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Education[5]/EducationEntries[2]", + "childIndex" : 0, + "depth" : 6, + "layer" : 6, + "computedX" : 29.368, + "computedY" : 425.948, + "placementX" : 29.368, + "placementY" : 425.948, + "placementWidth" : 118.158, + "placementHeight" : 61.585, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 118.158, + "contentHeight" : 61.585, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Education[5]/EducationEntries[2]/EducationEntry[0]/Degree[0]", + "entityName" : "Degree", + "entityKind" : "ParagraphNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Education[5]/EducationEntries[2]/EducationEntry[0]", + "childIndex" : 0, + "depth" : 7, + "layer" : 7, + "computedX" : 29.368, + "computedY" : 465.587, + "placementX" : 29.368, + "placementY" : 465.587, + "placementWidth" : 87.783, + "placementHeight" : 21.946, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 87.783, + "contentHeight" : 21.946, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Education[5]/EducationEntries[2]/EducationEntry[0]/Institution[1]", + "entityName" : "Institution", + "entityKind" : "ParagraphNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Education[5]/EducationEntries[2]/EducationEntry[0]", + "childIndex" : 1, + "depth" : 7, + "layer" : 7, + "computedX" : 29.368, + "computedY" : 443.093, + "placementX" : 29.368, + "placementY" : 443.093, + "placementWidth" : 118.158, + "placementHeight" : 18.88, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 118.158, + "contentHeight" : 18.88, + "margin" : { + "top" : 3.615, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Education[5]/EducationEntries[2]/EducationEntry[0]/Years[2]", + "entityName" : "Years", + "entityKind" : "ParagraphNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Education[5]/EducationEntries[2]/EducationEntry[0]", + "childIndex" : 2, + "depth" : 7, + "layer" : 7, + "computedX" : 29.368, + "computedY" : 425.948, + "placementX" : 29.368, + "placementY" : 425.948, + "placementWidth" : 42.494, + "placementHeight" : 10.65, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 42.494, + "contentHeight" : 10.65, + "margin" : { + "top" : 6.495, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Education[5]/EducationEntries[2]/EducationEntry[1]", + "entityName" : "EducationEntry", + "entityKind" : "SectionNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Education[5]/EducationEntries[2]", + "childIndex" : 1, + "depth" : 6, + "layer" : 6, + "computedX" : 29.368, + "computedY" : 357.698, + "placementX" : 29.368, + "placementY" : 357.698, + "placementWidth" : 102.365, + "placementHeight" : 51.419, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 102.365, + "contentHeight" : 51.419, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Education[5]/EducationEntries[2]/EducationEntry[1]/Degree[0]", + "entityName" : "Degree", + "entityKind" : "ParagraphNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Education[5]/EducationEntries[2]/EducationEntry[1]", + "childIndex" : 0, + "depth" : 7, + "layer" : 7, + "computedX" : 29.368, + "computedY" : 387.172, + "placementX" : 29.368, + "placementY" : 387.172, + "placementWidth" : 102.365, + "placementHeight" : 21.946, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 102.365, + "contentHeight" : 21.946, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Education[5]/EducationEntries[2]/EducationEntry[1]/Institution[1]", + "entityName" : "Institution", + "entityKind" : "ParagraphNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Education[5]/EducationEntries[2]/EducationEntry[1]", + "childIndex" : 1, + "depth" : 7, + "layer" : 7, + "computedX" : 29.368, + "computedY" : 374.843, + "placementX" : 29.368, + "placementY" : 374.843, + "placementWidth" : 55.739, + "placementHeight" : 8.714, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 55.739, + "contentHeight" : 8.714, + "margin" : { + "top" : 3.615, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Education[5]/EducationEntries[2]/EducationEntry[1]/Years[2]", + "entityName" : "Years", + "entityKind" : "ParagraphNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Education[5]/EducationEntries[2]/EducationEntry[1]", + "childIndex" : 2, + "depth" : 7, + "layer" : 7, + "computedX" : 29.368, + "computedY" : 357.698, + "placementX" : 29.368, + "placementY" : 357.698, + "placementWidth" : 42.627, + "placementHeight" : 10.65, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 42.627, + "contentHeight" : 10.65, + "margin" : { + "top" : 6.495, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]", + "entityName" : "Skills", + "entityKind" : "SectionNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]", + "childIndex" : 6, + "depth" : 4, + "layer" : 4, + "computedX" : 0.0, + "computedY" : 166.424, + "placementX" : 0.0, + "placementY" : 166.424, + "placementWidth" : 185.247, + "placementHeight" : 170.151, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 185.247, + "contentHeight" : 170.151, + "margin" : { + "top" : 21.123, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 24.285, + "bottom" : 0.0, + "left" : 29.368 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/AsideHeadingSKILLS[0]", + "entityName" : "AsideHeadingSKILLS", + "entityKind" : "ParagraphNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]", + "childIndex" : 0, + "depth" : 5, + "layer" : 5, + "computedX" : 29.368, + "computedY" : 323.989, + "placementX" : 29.368, + "placementY" : 323.989, + "placementWidth" : 33.805, + "placementHeight" : 12.586, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 33.805, + "contentHeight" : 12.586, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/AsideRuleSKILLS[1]", + "entityName" : "AsideRuleSKILLS", + "entityKind" : "LineNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]", + "childIndex" : 1, + "depth" : 5, + "layer" : 5, + "computedX" : 29.368, + "computedY" : 321.73, + "placementX" : 29.368, + "placementY" : 321.73, + "placementWidth" : 131.593, + "placementHeight" : 1.13, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 131.593, + "contentHeight" : 1.13, + "margin" : { + "top" : 1.13, + "right" : 0.0, + "bottom" : 10.731, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]", + "entityName" : "SkillRows", + "entityKind" : "SectionNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]", + "childIndex" : 2, + "depth" : 5, + "layer" : 5, + "computedX" : 29.368, + "computedY" : 166.424, + "placementX" : 29.368, + "placementY" : 166.424, + "placementWidth" : 131.593, + "placementHeight" : 144.575, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 131.593, + "contentHeight" : 144.575, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[0]", + "entityName" : "SkillRowLayer", + "entityKind" : "LayerStackNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]", + "childIndex" : 0, + "depth" : 6, + "layer" : 6, + "computedX" : 29.368, + "computedY" : 302.286, + "placementX" : 29.368, + "placementY" : 302.286, + "placementWidth" : 131.593, + "placementHeight" : 8.714, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 131.593, + "contentHeight" : 8.714, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[0]/SkillRowHolder[0]", + "entityName" : "SkillRowHolder", + "entityKind" : "SectionNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[0]", + "childIndex" : 0, + "depth" : 7, + "layer" : 7, + "computedX" : 29.368, + "computedY" : 302.286, + "placementX" : 29.368, + "placementY" : 302.286, + "placementWidth" : 131.593, + "placementHeight" : 8.714, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 131.593, + "contentHeight" : 8.714, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[0]/SkillRowHolder[0]/SkillRow[0]", + "entityName" : "SkillRow", + "entityKind" : "RowNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[0]/SkillRowHolder[0]", + "childIndex" : 0, + "depth" : 8, + "layer" : 8, + "computedX" : 29.368, + "computedY" : 302.286, + "placementX" : 29.368, + "placementY" : 302.286, + "placementWidth" : 131.593, + "placementHeight" : 8.714, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 131.593, + "contentHeight" : 8.714, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[0]/SkillRowHolder[0]/SkillRow[0]/SkillLabel[0]", + "entityName" : "SkillLabel", + "entityKind" : "ParagraphNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[0]/SkillRowHolder[0]/SkillRow[0]", + "childIndex" : 0, + "depth" : 9, + "layer" : 9, + "computedX" : 29.368, + "computedY" : 302.286, + "placementX" : 29.368, + "placementY" : 302.286, + "placementWidth" : 57.874, + "placementHeight" : 8.714, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 57.874, + "contentHeight" : 8.714, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[0]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]", + "entityName" : "SkillMeterCell", + "entityKind" : "SectionNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[0]/SkillRowHolder[0]/SkillRow[0]", + "childIndex" : 1, + "depth" : 9, + "layer" : 9, + "computedX" : 100.53, + "computedY" : 304.948, + "placementX" : 100.53, + "placementY" : 304.948, + "placementWidth" : 60.431, + "placementHeight" : 3.389, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 60.431, + "contentHeight" : 3.389, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[0]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]/SkillMeter[0]", + "entityName" : "SkillMeter", + "entityKind" : "LayerStackNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[0]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]", + "childIndex" : 0, + "depth" : 10, + "layer" : 10, + "computedX" : 100.53, + "computedY" : 304.948, + "placementX" : 100.53, + "placementY" : 304.948, + "placementWidth" : 60.431, + "placementHeight" : 3.389, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 60.431, + "contentHeight" : 3.389, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[0]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]/SkillMeter[0]/SkillTrack[0]", + "entityName" : "SkillTrack", + "entityKind" : "LineNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[0]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]/SkillMeter[0]", + "childIndex" : 0, + "depth" : 11, + "layer" : 11, + "computedX" : 100.53, + "computedY" : 306.078, + "placementX" : 100.53, + "placementY" : 306.078, + "placementWidth" : 60.431, + "placementHeight" : 1.13, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 60.431, + "contentHeight" : 1.13, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[0]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]/SkillMeter[0]/SkillTrackFilled[1]", + "entityName" : "SkillTrackFilled", + "entityKind" : "LineNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[0]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]/SkillMeter[0]", + "childIndex" : 1, + "depth" : 11, + "layer" : 11, + "computedX" : 100.53, + "computedY" : 306.078, + "placementX" : 100.53, + "placementY" : 306.078, + "placementWidth" : 49.554, + "placementHeight" : 1.13, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 49.554, + "contentHeight" : 1.13, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[0]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]/SkillMeter[0]/SkillKnob[2]", + "entityName" : "SkillKnob", + "entityKind" : "ShapeNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[0]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]/SkillMeter[0]", + "childIndex" : 2, + "depth" : 11, + "layer" : 11, + "computedX" : 147.543, + "computedY" : 304.948, + "placementX" : 147.543, + "placementY" : 304.948, + "placementWidth" : 5.083, + "placementHeight" : 3.389, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 5.083, + "contentHeight" : 3.389, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[1]", + "entityName" : "SkillRowLayer", + "entityKind" : "LayerStackNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]", + "childIndex" : 1, + "depth" : 6, + "layer" : 6, + "computedX" : 29.368, + "computedY" : 287.19, + "placementX" : 29.368, + "placementY" : 287.19, + "placementWidth" : 131.593, + "placementHeight" : 8.714, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 131.593, + "contentHeight" : 8.714, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[1]/SkillRowHolder[0]", + "entityName" : "SkillRowHolder", + "entityKind" : "SectionNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[1]", + "childIndex" : 0, + "depth" : 7, + "layer" : 7, + "computedX" : 29.368, + "computedY" : 287.19, + "placementX" : 29.368, + "placementY" : 287.19, + "placementWidth" : 131.593, + "placementHeight" : 8.714, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 131.593, + "contentHeight" : 8.714, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[1]/SkillRowHolder[0]/SkillRow[0]", + "entityName" : "SkillRow", + "entityKind" : "RowNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[1]/SkillRowHolder[0]", + "childIndex" : 0, + "depth" : 8, + "layer" : 8, + "computedX" : 29.368, + "computedY" : 287.19, + "placementX" : 29.368, + "placementY" : 287.19, + "placementWidth" : 131.593, + "placementHeight" : 8.714, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 131.593, + "contentHeight" : 8.714, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[1]/SkillRowHolder[0]/SkillRow[0]/SkillLabel[0]", + "entityName" : "SkillLabel", + "entityKind" : "ParagraphNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[1]/SkillRowHolder[0]/SkillRow[0]", + "childIndex" : 0, + "depth" : 9, + "layer" : 9, + "computedX" : 29.368, + "computedY" : 287.19, + "placementX" : 29.368, + "placementY" : 287.19, + "placementWidth" : 52.899, + "placementHeight" : 8.714, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 52.899, + "contentHeight" : 8.714, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[1]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]", + "entityName" : "SkillMeterCell", + "entityKind" : "SectionNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[1]/SkillRowHolder[0]/SkillRow[0]", + "childIndex" : 1, + "depth" : 9, + "layer" : 9, + "computedX" : 100.53, + "computedY" : 289.852, + "placementX" : 100.53, + "placementY" : 289.852, + "placementWidth" : 60.431, + "placementHeight" : 3.389, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 60.431, + "contentHeight" : 3.389, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[1]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]/SkillMeter[0]", + "entityName" : "SkillMeter", + "entityKind" : "LayerStackNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[1]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]", + "childIndex" : 0, + "depth" : 10, + "layer" : 10, + "computedX" : 100.53, + "computedY" : 289.852, + "placementX" : 100.53, + "placementY" : 289.852, + "placementWidth" : 60.431, + "placementHeight" : 3.389, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 60.431, + "contentHeight" : 3.389, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[1]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]/SkillMeter[0]/SkillTrack[0]", + "entityName" : "SkillTrack", + "entityKind" : "LineNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[1]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]/SkillMeter[0]", + "childIndex" : 0, + "depth" : 11, + "layer" : 11, + "computedX" : 100.53, + "computedY" : 290.982, + "placementX" : 100.53, + "placementY" : 290.982, + "placementWidth" : 60.431, + "placementHeight" : 1.13, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 60.431, + "contentHeight" : 1.13, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[1]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]/SkillMeter[0]/SkillTrackFilled[1]", + "entityName" : "SkillTrackFilled", + "entityKind" : "LineNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[1]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]/SkillMeter[0]", + "childIndex" : 1, + "depth" : 11, + "layer" : 11, + "computedX" : 100.53, + "computedY" : 290.982, + "placementX" : 100.53, + "placementY" : 290.982, + "placementWidth" : 50.762, + "placementHeight" : 1.13, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 50.762, + "contentHeight" : 1.13, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[1]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]/SkillMeter[0]/SkillKnob[2]", + "entityName" : "SkillKnob", + "entityKind" : "ShapeNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[1]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]/SkillMeter[0]", + "childIndex" : 2, + "depth" : 11, + "layer" : 11, + "computedX" : 148.751, + "computedY" : 289.852, + "placementX" : 148.751, + "placementY" : 289.852, + "placementWidth" : 5.083, + "placementHeight" : 3.389, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 5.083, + "contentHeight" : 3.389, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[2]", + "entityName" : "SkillRowLayer", + "entityKind" : "LayerStackNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]", + "childIndex" : 2, + "depth" : 6, + "layer" : 6, + "computedX" : 29.368, + "computedY" : 272.094, + "placementX" : 29.368, + "placementY" : 272.094, + "placementWidth" : 131.593, + "placementHeight" : 8.714, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 131.593, + "contentHeight" : 8.714, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[2]/SkillRowHolder[0]", + "entityName" : "SkillRowHolder", + "entityKind" : "SectionNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[2]", + "childIndex" : 0, + "depth" : 7, + "layer" : 7, + "computedX" : 29.368, + "computedY" : 272.094, + "placementX" : 29.368, + "placementY" : 272.094, + "placementWidth" : 131.593, + "placementHeight" : 8.714, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 131.593, + "contentHeight" : 8.714, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[2]/SkillRowHolder[0]/SkillRow[0]", + "entityName" : "SkillRow", + "entityKind" : "RowNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[2]/SkillRowHolder[0]", + "childIndex" : 0, + "depth" : 8, + "layer" : 8, + "computedX" : 29.368, + "computedY" : 272.094, + "placementX" : 29.368, + "placementY" : 272.094, + "placementWidth" : 131.593, + "placementHeight" : 8.714, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 131.593, + "contentHeight" : 8.714, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[2]/SkillRowHolder[0]/SkillRow[0]/SkillLabel[0]", + "entityName" : "SkillLabel", + "entityKind" : "ParagraphNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[2]/SkillRowHolder[0]/SkillRow[0]", + "childIndex" : 0, + "depth" : 9, + "layer" : 9, + "computedX" : 29.368, + "computedY" : 272.094, + "placementX" : 29.368, + "placementY" : 272.094, + "placementWidth" : 52.87, + "placementHeight" : 8.714, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 52.87, + "contentHeight" : 8.714, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[2]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]", + "entityName" : "SkillMeterCell", + "entityKind" : "SectionNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[2]/SkillRowHolder[0]/SkillRow[0]", + "childIndex" : 1, + "depth" : 9, + "layer" : 9, + "computedX" : 100.53, + "computedY" : 274.757, + "placementX" : 100.53, + "placementY" : 274.757, + "placementWidth" : 60.431, + "placementHeight" : 3.389, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 60.431, + "contentHeight" : 3.389, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[2]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]/SkillMeter[0]", + "entityName" : "SkillMeter", + "entityKind" : "LayerStackNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[2]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]", + "childIndex" : 0, + "depth" : 10, + "layer" : 10, + "computedX" : 100.53, + "computedY" : 274.757, + "placementX" : 100.53, + "placementY" : 274.757, + "placementWidth" : 60.431, + "placementHeight" : 3.389, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 60.431, + "contentHeight" : 3.389, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[2]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]/SkillMeter[0]/SkillTrack[0]", + "entityName" : "SkillTrack", + "entityKind" : "LineNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[2]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]/SkillMeter[0]", + "childIndex" : 0, + "depth" : 11, + "layer" : 11, + "computedX" : 100.53, + "computedY" : 275.886, + "placementX" : 100.53, + "placementY" : 275.886, + "placementWidth" : 60.431, + "placementHeight" : 1.13, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 60.431, + "contentHeight" : 1.13, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[2]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]/SkillMeter[0]/SkillTrackFilled[1]", + "entityName" : "SkillTrackFilled", + "entityKind" : "LineNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[2]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]/SkillMeter[0]", + "childIndex" : 1, + "depth" : 11, + "layer" : 11, + "computedX" : 100.53, + "computedY" : 275.886, + "placementX" : 100.53, + "placementY" : 275.886, + "placementWidth" : 45.928, + "placementHeight" : 1.13, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 45.928, + "contentHeight" : 1.13, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[2]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]/SkillMeter[0]/SkillKnob[2]", + "entityName" : "SkillKnob", + "entityKind" : "ShapeNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[2]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]/SkillMeter[0]", + "childIndex" : 2, + "depth" : 11, + "layer" : 11, + "computedX" : 143.917, + "computedY" : 274.757, + "placementX" : 143.917, + "placementY" : 274.757, + "placementWidth" : 5.083, + "placementHeight" : 3.389, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 5.083, + "contentHeight" : 3.389, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[3]", + "entityName" : "SkillRowLayer", + "entityKind" : "LayerStackNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]", + "childIndex" : 3, + "depth" : 6, + "layer" : 6, + "computedX" : 29.368, + "computedY" : 256.998, + "placementX" : 29.368, + "placementY" : 256.998, + "placementWidth" : 131.593, + "placementHeight" : 8.714, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 131.593, + "contentHeight" : 8.714, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[3]/SkillRowHolder[0]", + "entityName" : "SkillRowHolder", + "entityKind" : "SectionNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[3]", + "childIndex" : 0, + "depth" : 7, + "layer" : 7, + "computedX" : 29.368, + "computedY" : 256.998, + "placementX" : 29.368, + "placementY" : 256.998, + "placementWidth" : 131.593, + "placementHeight" : 8.714, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 131.593, + "contentHeight" : 8.714, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[3]/SkillRowHolder[0]/SkillRow[0]", + "entityName" : "SkillRow", + "entityKind" : "RowNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[3]/SkillRowHolder[0]", + "childIndex" : 0, + "depth" : 8, + "layer" : 8, + "computedX" : 29.368, + "computedY" : 256.998, + "placementX" : 29.368, + "placementY" : 256.998, + "placementWidth" : 131.593, + "placementHeight" : 8.714, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 131.593, + "contentHeight" : 8.714, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[3]/SkillRowHolder[0]/SkillRow[0]/SkillLabel[0]", + "entityName" : "SkillLabel", + "entityKind" : "ParagraphNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[3]/SkillRowHolder[0]/SkillRow[0]", + "childIndex" : 0, + "depth" : 9, + "layer" : 9, + "computedX" : 29.368, + "computedY" : 256.998, + "placementX" : 29.368, + "placementY" : 256.998, + "placementWidth" : 60.952, + "placementHeight" : 8.714, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 60.952, + "contentHeight" : 8.714, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[3]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]", + "entityName" : "SkillMeterCell", + "entityKind" : "SectionNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[3]/SkillRowHolder[0]/SkillRow[0]", + "childIndex" : 1, + "depth" : 9, + "layer" : 9, + "computedX" : 100.53, + "computedY" : 259.661, + "placementX" : 100.53, + "placementY" : 259.661, + "placementWidth" : 60.431, + "placementHeight" : 3.389, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 60.431, + "contentHeight" : 3.389, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[3]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]/SkillMeter[0]", + "entityName" : "SkillMeter", + "entityKind" : "LayerStackNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[3]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]", + "childIndex" : 0, + "depth" : 10, + "layer" : 10, + "computedX" : 100.53, + "computedY" : 259.661, + "placementX" : 100.53, + "placementY" : 259.661, + "placementWidth" : 60.431, + "placementHeight" : 3.389, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 60.431, + "contentHeight" : 3.389, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[3]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]/SkillMeter[0]/SkillTrack[0]", + "entityName" : "SkillTrack", + "entityKind" : "LineNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[3]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]/SkillMeter[0]", + "childIndex" : 0, + "depth" : 11, + "layer" : 11, + "computedX" : 100.53, + "computedY" : 260.791, + "placementX" : 100.53, + "placementY" : 260.791, + "placementWidth" : 60.431, + "placementHeight" : 1.13, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 60.431, + "contentHeight" : 1.13, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[3]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]/SkillMeter[0]/SkillTrackFilled[1]", + "entityName" : "SkillTrackFilled", + "entityKind" : "LineNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[3]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]/SkillMeter[0]", + "childIndex" : 1, + "depth" : 11, + "layer" : 11, + "computedX" : 100.53, + "computedY" : 260.791, + "placementX" : 100.53, + "placementY" : 260.791, + "placementWidth" : 50.762, + "placementHeight" : 1.13, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 50.762, + "contentHeight" : 1.13, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[3]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]/SkillMeter[0]/SkillKnob[2]", + "entityName" : "SkillKnob", + "entityKind" : "ShapeNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[3]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]/SkillMeter[0]", + "childIndex" : 2, + "depth" : 11, + "layer" : 11, + "computedX" : 148.751, + "computedY" : 259.661, + "placementX" : 148.751, + "placementY" : 259.661, + "placementWidth" : 5.083, + "placementHeight" : 3.389, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 5.083, + "contentHeight" : 3.389, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[4]", + "entityName" : "SkillRowLayer", + "entityKind" : "LayerStackNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]", + "childIndex" : 4, + "depth" : 6, + "layer" : 6, + "computedX" : 29.368, + "computedY" : 241.903, + "placementX" : 29.368, + "placementY" : 241.903, + "placementWidth" : 131.593, + "placementHeight" : 8.714, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 131.593, + "contentHeight" : 8.714, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[4]/SkillRowHolder[0]", + "entityName" : "SkillRowHolder", + "entityKind" : "SectionNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[4]", + "childIndex" : 0, + "depth" : 7, + "layer" : 7, + "computedX" : 29.368, + "computedY" : 241.903, + "placementX" : 29.368, + "placementY" : 241.903, + "placementWidth" : 131.593, + "placementHeight" : 8.714, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 131.593, + "contentHeight" : 8.714, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[4]/SkillRowHolder[0]/SkillRow[0]", + "entityName" : "SkillRow", + "entityKind" : "RowNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[4]/SkillRowHolder[0]", + "childIndex" : 0, + "depth" : 8, + "layer" : 8, + "computedX" : 29.368, + "computedY" : 241.903, + "placementX" : 29.368, + "placementY" : 241.903, + "placementWidth" : 131.593, + "placementHeight" : 8.714, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 131.593, + "contentHeight" : 8.714, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[4]/SkillRowHolder[0]/SkillRow[0]/SkillLabel[0]", + "entityName" : "SkillLabel", + "entityKind" : "ParagraphNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[4]/SkillRowHolder[0]/SkillRow[0]", + "childIndex" : 0, + "depth" : 9, + "layer" : 9, + "computedX" : 29.368, + "computedY" : 241.903, + "placementX" : 29.368, + "placementY" : 241.903, + "placementWidth" : 41.891, + "placementHeight" : 8.714, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 41.891, + "contentHeight" : 8.714, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[4]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]", + "entityName" : "SkillMeterCell", + "entityKind" : "SectionNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[4]/SkillRowHolder[0]/SkillRow[0]", + "childIndex" : 1, + "depth" : 9, + "layer" : 9, + "computedX" : 100.53, + "computedY" : 244.565, + "placementX" : 100.53, + "placementY" : 244.565, + "placementWidth" : 60.431, + "placementHeight" : 3.389, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 60.431, + "contentHeight" : 3.389, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[4]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]/SkillMeter[0]", + "entityName" : "SkillMeter", + "entityKind" : "LayerStackNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[4]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]", + "childIndex" : 0, + "depth" : 10, + "layer" : 10, + "computedX" : 100.53, + "computedY" : 244.565, + "placementX" : 100.53, + "placementY" : 244.565, + "placementWidth" : 60.431, + "placementHeight" : 3.389, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 60.431, + "contentHeight" : 3.389, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[4]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]/SkillMeter[0]/SkillTrack[0]", + "entityName" : "SkillTrack", + "entityKind" : "LineNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[4]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]/SkillMeter[0]", + "childIndex" : 0, + "depth" : 11, + "layer" : 11, + "computedX" : 100.53, + "computedY" : 245.695, + "placementX" : 100.53, + "placementY" : 245.695, + "placementWidth" : 60.431, + "placementHeight" : 1.13, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 60.431, + "contentHeight" : 1.13, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[4]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]/SkillMeter[0]/SkillTrackFilled[1]", + "entityName" : "SkillTrackFilled", + "entityKind" : "LineNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[4]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]/SkillMeter[0]", + "childIndex" : 1, + "depth" : 11, + "layer" : 11, + "computedX" : 100.53, + "computedY" : 245.695, + "placementX" : 100.53, + "placementY" : 245.695, + "placementWidth" : 48.949, + "placementHeight" : 1.13, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 48.949, + "contentHeight" : 1.13, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[4]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]/SkillMeter[0]/SkillKnob[2]", + "entityName" : "SkillKnob", + "entityKind" : "ShapeNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[4]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]/SkillMeter[0]", + "childIndex" : 2, + "depth" : 11, + "layer" : 11, + "computedX" : 146.938, + "computedY" : 244.565, + "placementX" : 146.938, + "placementY" : 244.565, + "placementWidth" : 5.083, + "placementHeight" : 3.389, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 5.083, + "contentHeight" : 3.389, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[5]", + "entityName" : "SkillRowLayer", + "entityKind" : "LayerStackNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]", + "childIndex" : 5, + "depth" : 6, + "layer" : 6, + "computedX" : 29.368, + "computedY" : 226.807, + "placementX" : 29.368, + "placementY" : 226.807, + "placementWidth" : 131.593, + "placementHeight" : 8.714, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 131.593, + "contentHeight" : 8.714, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[5]/SkillRowHolder[0]", + "entityName" : "SkillRowHolder", + "entityKind" : "SectionNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[5]", + "childIndex" : 0, + "depth" : 7, + "layer" : 7, + "computedX" : 29.368, + "computedY" : 226.807, + "placementX" : 29.368, + "placementY" : 226.807, + "placementWidth" : 131.593, + "placementHeight" : 8.714, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 131.593, + "contentHeight" : 8.714, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[5]/SkillRowHolder[0]/SkillRow[0]", + "entityName" : "SkillRow", + "entityKind" : "RowNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[5]/SkillRowHolder[0]", + "childIndex" : 0, + "depth" : 8, + "layer" : 8, + "computedX" : 29.368, + "computedY" : 226.807, + "placementX" : 29.368, + "placementY" : 226.807, + "placementWidth" : 131.593, + "placementHeight" : 8.714, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 131.593, + "contentHeight" : 8.714, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[5]/SkillRowHolder[0]/SkillRow[0]/SkillLabel[0]", + "entityName" : "SkillLabel", + "entityKind" : "ParagraphNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[5]/SkillRowHolder[0]/SkillRow[0]", + "childIndex" : 0, + "depth" : 9, + "layer" : 9, + "computedX" : 29.368, + "computedY" : 226.807, + "placementX" : 29.368, + "placementY" : 226.807, + "placementWidth" : 65.135, + "placementHeight" : 8.714, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 65.135, + "contentHeight" : 8.714, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[5]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]", + "entityName" : "SkillMeterCell", + "entityKind" : "SectionNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[5]/SkillRowHolder[0]/SkillRow[0]", + "childIndex" : 1, + "depth" : 9, + "layer" : 9, + "computedX" : 100.53, + "computedY" : 229.47, + "placementX" : 100.53, + "placementY" : 229.47, + "placementWidth" : 60.431, + "placementHeight" : 3.389, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 60.431, + "contentHeight" : 3.389, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[5]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]/SkillMeter[0]", + "entityName" : "SkillMeter", + "entityKind" : "LayerStackNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[5]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]", + "childIndex" : 0, + "depth" : 10, + "layer" : 10, + "computedX" : 100.53, + "computedY" : 229.47, + "placementX" : 100.53, + "placementY" : 229.47, + "placementWidth" : 60.431, + "placementHeight" : 3.389, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 60.431, + "contentHeight" : 3.389, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[5]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]/SkillMeter[0]/SkillTrack[0]", + "entityName" : "SkillTrack", + "entityKind" : "LineNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[5]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]/SkillMeter[0]", + "childIndex" : 0, + "depth" : 11, + "layer" : 11, + "computedX" : 100.53, + "computedY" : 230.599, + "placementX" : 100.53, + "placementY" : 230.599, + "placementWidth" : 60.431, + "placementHeight" : 1.13, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 60.431, + "contentHeight" : 1.13, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[5]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]/SkillMeter[0]/SkillTrackFilled[1]", + "entityName" : "SkillTrackFilled", + "entityKind" : "LineNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[5]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]/SkillMeter[0]", + "childIndex" : 1, + "depth" : 11, + "layer" : 11, + "computedX" : 100.53, + "computedY" : 230.599, + "placementX" : 100.53, + "placementY" : 230.599, + "placementWidth" : 41.093, + "placementHeight" : 1.13, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 41.093, + "contentHeight" : 1.13, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[5]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]/SkillMeter[0]/SkillKnob[2]", + "entityName" : "SkillKnob", + "entityKind" : "ShapeNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[5]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]/SkillMeter[0]", + "childIndex" : 2, + "depth" : 11, + "layer" : 11, + "computedX" : 139.082, + "computedY" : 229.47, + "placementX" : 139.082, + "placementY" : 229.47, + "placementWidth" : 5.083, + "placementHeight" : 3.389, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 5.083, + "contentHeight" : 3.389, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[6]", + "entityName" : "SkillRowLayer", + "entityKind" : "LayerStackNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]", + "childIndex" : 6, + "depth" : 6, + "layer" : 6, + "computedX" : 29.368, + "computedY" : 211.711, + "placementX" : 29.368, + "placementY" : 211.711, + "placementWidth" : 131.593, + "placementHeight" : 8.714, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 131.593, + "contentHeight" : 8.714, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[6]/SkillRowHolder[0]", + "entityName" : "SkillRowHolder", + "entityKind" : "SectionNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[6]", + "childIndex" : 0, + "depth" : 7, + "layer" : 7, + "computedX" : 29.368, + "computedY" : 211.711, + "placementX" : 29.368, + "placementY" : 211.711, + "placementWidth" : 131.593, + "placementHeight" : 8.714, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 131.593, + "contentHeight" : 8.714, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[6]/SkillRowHolder[0]/SkillRow[0]", + "entityName" : "SkillRow", + "entityKind" : "RowNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[6]/SkillRowHolder[0]", + "childIndex" : 0, + "depth" : 8, + "layer" : 8, + "computedX" : 29.368, + "computedY" : 211.711, + "placementX" : 29.368, + "placementY" : 211.711, + "placementWidth" : 131.593, + "placementHeight" : 8.714, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 131.593, + "contentHeight" : 8.714, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[6]/SkillRowHolder[0]/SkillRow[0]/SkillLabel[0]", + "entityName" : "SkillLabel", + "entityKind" : "ParagraphNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[6]/SkillRowHolder[0]/SkillRow[0]", + "childIndex" : 0, + "depth" : 9, + "layer" : 9, + "computedX" : 29.368, + "computedY" : 211.711, + "placementX" : 29.368, + "placementY" : 211.711, + "placementWidth" : 52.057, + "placementHeight" : 8.714, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 52.057, + "contentHeight" : 8.714, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[6]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]", + "entityName" : "SkillMeterCell", + "entityKind" : "SectionNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[6]/SkillRowHolder[0]/SkillRow[0]", + "childIndex" : 1, + "depth" : 9, + "layer" : 9, + "computedX" : 100.53, + "computedY" : 214.374, + "placementX" : 100.53, + "placementY" : 214.374, + "placementWidth" : 60.431, + "placementHeight" : 3.389, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 60.431, + "contentHeight" : 3.389, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[6]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]/SkillMeter[0]", + "entityName" : "SkillMeter", + "entityKind" : "LayerStackNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[6]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]", + "childIndex" : 0, + "depth" : 10, + "layer" : 10, + "computedX" : 100.53, + "computedY" : 214.374, + "placementX" : 100.53, + "placementY" : 214.374, + "placementWidth" : 60.431, + "placementHeight" : 3.389, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 60.431, + "contentHeight" : 3.389, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[6]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]/SkillMeter[0]/SkillTrack[0]", + "entityName" : "SkillTrack", + "entityKind" : "LineNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[6]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]/SkillMeter[0]", + "childIndex" : 0, + "depth" : 11, + "layer" : 11, + "computedX" : 100.53, + "computedY" : 215.503, + "placementX" : 100.53, + "placementY" : 215.503, + "placementWidth" : 60.431, + "placementHeight" : 1.13, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 60.431, + "contentHeight" : 1.13, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[6]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]/SkillMeter[0]/SkillTrackFilled[1]", + "entityName" : "SkillTrackFilled", + "entityKind" : "LineNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[6]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]/SkillMeter[0]", + "childIndex" : 1, + "depth" : 11, + "layer" : 11, + "computedX" : 100.53, + "computedY" : 215.503, + "placementX" : 100.53, + "placementY" : 215.503, + "placementWidth" : 50.158, + "placementHeight" : 1.13, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 50.158, + "contentHeight" : 1.13, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[6]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]/SkillMeter[0]/SkillKnob[2]", + "entityName" : "SkillKnob", + "entityKind" : "ShapeNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[6]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]/SkillMeter[0]", + "childIndex" : 2, + "depth" : 11, + "layer" : 11, + "computedX" : 148.147, + "computedY" : 214.374, + "placementX" : 148.147, + "placementY" : 214.374, + "placementWidth" : 5.083, + "placementHeight" : 3.389, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 5.083, + "contentHeight" : 3.389, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[7]", + "entityName" : "SkillRowLayer", + "entityKind" : "LayerStackNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]", + "childIndex" : 7, + "depth" : 6, + "layer" : 6, + "computedX" : 29.368, + "computedY" : 196.616, + "placementX" : 29.368, + "placementY" : 196.616, + "placementWidth" : 131.593, + "placementHeight" : 8.714, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 131.593, + "contentHeight" : 8.714, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[7]/SkillRowHolder[0]", + "entityName" : "SkillRowHolder", + "entityKind" : "SectionNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[7]", + "childIndex" : 0, + "depth" : 7, + "layer" : 7, + "computedX" : 29.368, + "computedY" : 196.616, + "placementX" : 29.368, + "placementY" : 196.616, + "placementWidth" : 131.593, + "placementHeight" : 8.714, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 131.593, + "contentHeight" : 8.714, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[7]/SkillRowHolder[0]/SkillRow[0]", + "entityName" : "SkillRow", + "entityKind" : "RowNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[7]/SkillRowHolder[0]", + "childIndex" : 0, + "depth" : 8, + "layer" : 8, + "computedX" : 29.368, + "computedY" : 196.616, + "placementX" : 29.368, + "placementY" : 196.616, + "placementWidth" : 131.593, + "placementHeight" : 8.714, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 131.593, + "contentHeight" : 8.714, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[7]/SkillRowHolder[0]/SkillRow[0]/SkillLabel[0]", + "entityName" : "SkillLabel", + "entityKind" : "ParagraphNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[7]/SkillRowHolder[0]/SkillRow[0]", + "childIndex" : 0, + "depth" : 9, + "layer" : 9, + "computedX" : 29.368, + "computedY" : 196.616, + "placementX" : 29.368, + "placementY" : 196.616, + "placementWidth" : 32.785, + "placementHeight" : 8.714, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 32.785, + "contentHeight" : 8.714, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[7]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]", + "entityName" : "SkillMeterCell", + "entityKind" : "SectionNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[7]/SkillRowHolder[0]/SkillRow[0]", + "childIndex" : 1, + "depth" : 9, + "layer" : 9, + "computedX" : 100.53, + "computedY" : 199.278, + "placementX" : 100.53, + "placementY" : 199.278, + "placementWidth" : 60.431, + "placementHeight" : 3.389, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 60.431, + "contentHeight" : 3.389, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[7]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]/SkillMeter[0]", + "entityName" : "SkillMeter", + "entityKind" : "LayerStackNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[7]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]", + "childIndex" : 0, + "depth" : 10, + "layer" : 10, + "computedX" : 100.53, + "computedY" : 199.278, + "placementX" : 100.53, + "placementY" : 199.278, + "placementWidth" : 60.431, + "placementHeight" : 3.389, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 60.431, + "contentHeight" : 3.389, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[7]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]/SkillMeter[0]/SkillTrack[0]", + "entityName" : "SkillTrack", + "entityKind" : "LineNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[7]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]/SkillMeter[0]", + "childIndex" : 0, + "depth" : 11, + "layer" : 11, + "computedX" : 100.53, + "computedY" : 200.408, + "placementX" : 100.53, + "placementY" : 200.408, + "placementWidth" : 60.431, + "placementHeight" : 1.13, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 60.431, + "contentHeight" : 1.13, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[7]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]/SkillMeter[0]/SkillTrackFilled[1]", + "entityName" : "SkillTrackFilled", + "entityKind" : "LineNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[7]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]/SkillMeter[0]", + "childIndex" : 1, + "depth" : 11, + "layer" : 11, + "computedX" : 100.53, + "computedY" : 200.408, + "placementX" : 100.53, + "placementY" : 200.408, + "placementWidth" : 45.928, + "placementHeight" : 1.13, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 45.928, + "contentHeight" : 1.13, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[7]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]/SkillMeter[0]/SkillKnob[2]", + "entityName" : "SkillKnob", + "entityKind" : "ShapeNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[7]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]/SkillMeter[0]", + "childIndex" : 2, + "depth" : 11, + "layer" : 11, + "computedX" : 143.917, + "computedY" : 199.278, + "placementX" : 143.917, + "placementY" : 199.278, + "placementWidth" : 5.083, + "placementHeight" : 3.389, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 5.083, + "contentHeight" : 3.389, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[8]", + "entityName" : "SkillRowLayer", + "entityKind" : "LayerStackNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]", + "childIndex" : 8, + "depth" : 6, + "layer" : 6, + "computedX" : 29.368, + "computedY" : 181.52, + "placementX" : 29.368, + "placementY" : 181.52, + "placementWidth" : 131.593, + "placementHeight" : 8.714, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 131.593, + "contentHeight" : 8.714, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[8]/SkillRowHolder[0]", + "entityName" : "SkillRowHolder", + "entityKind" : "SectionNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[8]", + "childIndex" : 0, + "depth" : 7, + "layer" : 7, + "computedX" : 29.368, + "computedY" : 181.52, + "placementX" : 29.368, + "placementY" : 181.52, + "placementWidth" : 131.593, + "placementHeight" : 8.714, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 131.593, + "contentHeight" : 8.714, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[8]/SkillRowHolder[0]/SkillRow[0]", + "entityName" : "SkillRow", + "entityKind" : "RowNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[8]/SkillRowHolder[0]", + "childIndex" : 0, + "depth" : 8, + "layer" : 8, + "computedX" : 29.368, + "computedY" : 181.52, + "placementX" : 29.368, + "placementY" : 181.52, + "placementWidth" : 131.593, + "placementHeight" : 8.714, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 131.593, + "contentHeight" : 8.714, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[8]/SkillRowHolder[0]/SkillRow[0]/SkillLabel[0]", + "entityName" : "SkillLabel", + "entityKind" : "ParagraphNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[8]/SkillRowHolder[0]/SkillRow[0]", + "childIndex" : 0, + "depth" : 9, + "layer" : 9, + "computedX" : 29.368, + "computedY" : 181.52, + "placementX" : 29.368, + "placementY" : 181.52, + "placementWidth" : 68.686, + "placementHeight" : 8.714, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 68.686, + "contentHeight" : 8.714, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[8]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]", + "entityName" : "SkillMeterCell", + "entityKind" : "SectionNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[8]/SkillRowHolder[0]/SkillRow[0]", + "childIndex" : 1, + "depth" : 9, + "layer" : 9, + "computedX" : 100.53, + "computedY" : 184.182, + "placementX" : 100.53, + "placementY" : 184.182, + "placementWidth" : 60.431, + "placementHeight" : 3.389, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 60.431, + "contentHeight" : 3.389, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[8]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]/SkillMeter[0]", + "entityName" : "SkillMeter", + "entityKind" : "LayerStackNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[8]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]", + "childIndex" : 0, + "depth" : 10, + "layer" : 10, + "computedX" : 100.53, + "computedY" : 184.182, + "placementX" : 100.53, + "placementY" : 184.182, + "placementWidth" : 60.431, + "placementHeight" : 3.389, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 60.431, + "contentHeight" : 3.389, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[8]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]/SkillMeter[0]/SkillTrack[0]", + "entityName" : "SkillTrack", + "entityKind" : "LineNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[8]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]/SkillMeter[0]", + "childIndex" : 0, + "depth" : 11, + "layer" : 11, + "computedX" : 100.53, + "computedY" : 185.312, + "placementX" : 100.53, + "placementY" : 185.312, + "placementWidth" : 60.431, + "placementHeight" : 1.13, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 60.431, + "contentHeight" : 1.13, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[8]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]/SkillMeter[0]/SkillTrackFilled[1]", + "entityName" : "SkillTrackFilled", + "entityKind" : "LineNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[8]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]/SkillMeter[0]", + "childIndex" : 1, + "depth" : 11, + "layer" : 11, + "computedX" : 100.53, + "computedY" : 185.312, + "placementX" : 100.53, + "placementY" : 185.312, + "placementWidth" : 45.323, + "placementHeight" : 1.13, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 45.323, + "contentHeight" : 1.13, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[8]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]/SkillMeter[0]/SkillKnob[2]", + "entityName" : "SkillKnob", + "entityKind" : "ShapeNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[8]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]/SkillMeter[0]", + "childIndex" : 2, + "depth" : 11, + "layer" : 11, + "computedX" : 143.312, + "computedY" : 184.182, + "placementX" : 143.312, + "placementY" : 184.182, + "placementWidth" : 5.083, + "placementHeight" : 3.389, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 5.083, + "contentHeight" : 3.389, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[9]", + "entityName" : "SkillRowLayer", + "entityKind" : "LayerStackNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]", + "childIndex" : 9, + "depth" : 6, + "layer" : 6, + "computedX" : 29.368, + "computedY" : 166.424, + "placementX" : 29.368, + "placementY" : 166.424, + "placementWidth" : 131.593, + "placementHeight" : 8.714, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 131.593, + "contentHeight" : 8.714, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[9]/SkillRowHolder[0]", + "entityName" : "SkillRowHolder", + "entityKind" : "SectionNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[9]", + "childIndex" : 0, + "depth" : 7, + "layer" : 7, + "computedX" : 29.368, + "computedY" : 166.424, + "placementX" : 29.368, + "placementY" : 166.424, + "placementWidth" : 131.593, + "placementHeight" : 8.714, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 131.593, + "contentHeight" : 8.714, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[9]/SkillRowHolder[0]/SkillRow[0]", + "entityName" : "SkillRow", + "entityKind" : "RowNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[9]/SkillRowHolder[0]", + "childIndex" : 0, + "depth" : 8, + "layer" : 8, + "computedX" : 29.368, + "computedY" : 166.424, + "placementX" : 29.368, + "placementY" : 166.424, + "placementWidth" : 131.593, + "placementHeight" : 8.714, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 131.593, + "contentHeight" : 8.714, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[9]/SkillRowHolder[0]/SkillRow[0]/SkillLabel[0]", + "entityName" : "SkillLabel", + "entityKind" : "ParagraphNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[9]/SkillRowHolder[0]/SkillRow[0]", + "childIndex" : 0, + "depth" : 9, + "layer" : 9, + "computedX" : 29.368, + "computedY" : 166.424, + "placementX" : 29.368, + "placementY" : 166.424, + "placementWidth" : 49.886, + "placementHeight" : 8.714, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 49.886, + "contentHeight" : 8.714, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[9]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]", + "entityName" : "SkillMeterCell", + "entityKind" : "SectionNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[9]/SkillRowHolder[0]/SkillRow[0]", + "childIndex" : 1, + "depth" : 9, + "layer" : 9, + "computedX" : 100.53, + "computedY" : 169.087, + "placementX" : 100.53, + "placementY" : 169.087, + "placementWidth" : 60.431, + "placementHeight" : 3.389, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 60.431, + "contentHeight" : 3.389, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[9]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]/SkillMeter[0]", + "entityName" : "SkillMeter", + "entityKind" : "LayerStackNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[9]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]", + "childIndex" : 0, + "depth" : 10, + "layer" : 10, + "computedX" : 100.53, + "computedY" : 169.087, + "placementX" : 100.53, + "placementY" : 169.087, + "placementWidth" : 60.431, + "placementHeight" : 3.389, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 60.431, + "contentHeight" : 3.389, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[9]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]/SkillMeter[0]/SkillTrack[0]", + "entityName" : "SkillTrack", + "entityKind" : "LineNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[9]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]/SkillMeter[0]", + "childIndex" : 0, + "depth" : 11, + "layer" : 11, + "computedX" : 100.53, + "computedY" : 170.216, + "placementX" : 100.53, + "placementY" : 170.216, + "placementWidth" : 60.431, + "placementHeight" : 1.13, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 60.431, + "contentHeight" : 1.13, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[9]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]/SkillMeter[0]/SkillTrackFilled[1]", + "entityName" : "SkillTrackFilled", + "entityKind" : "LineNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[9]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]/SkillMeter[0]", + "childIndex" : 1, + "depth" : 11, + "layer" : 11, + "computedX" : 100.53, + "computedY" : 170.216, + "placementX" : 100.53, + "placementY" : 170.216, + "placementWidth" : 58.014, + "placementHeight" : 1.13, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 58.014, + "contentHeight" : 1.13, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[9]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]/SkillMeter[0]/SkillKnob[2]", + "entityName" : "SkillKnob", + "entityKind" : "ShapeNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Skills[6]/SkillRows[2]/SkillRowLayer[9]/SkillRowHolder[0]/SkillRow[0]/SkillMeterCell[1]/SkillMeter[0]", + "childIndex" : 2, + "depth" : 11, + "layer" : 11, + "computedX" : 156.003, + "computedY" : 169.087, + "placementX" : 156.003, + "placementY" : 169.087, + "placementWidth" : 5.083, + "placementHeight" : 3.389, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 5.083, + "contentHeight" : 3.389, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Languages[7]", + "entityName" : "Languages", + "entityKind" : "SectionNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]", + "childIndex" : 7, + "depth" : 4, + "layer" : 4, + "computedX" : 0.0, + "computedY" : 56.397, + "placementX" : 0.0, + "placementY" : 56.397, + "placementWidth" : 185.247, + "placementHeight" : 80.263, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 185.247, + "contentHeight" : 80.263, + "margin" : { + "top" : 29.764, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 24.285, + "bottom" : 0.0, + "left" : 29.368 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Languages[7]/AsideHeadingLANGUAGES[0]", + "entityName" : "AsideHeadingLANGUAGES", + "entityKind" : "ParagraphNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Languages[7]", + "childIndex" : 0, + "depth" : 5, + "layer" : 5, + "computedX" : 29.368, + "computedY" : 124.074, + "placementX" : 29.368, + "placementY" : 124.074, + "placementWidth" : 58.852, + "placementHeight" : 12.586, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 58.852, + "contentHeight" : 12.586, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Languages[7]/AsideRuleLANGUAGES[1]", + "entityName" : "AsideRuleLANGUAGES", + "entityKind" : "LineNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Languages[7]", + "childIndex" : 1, + "depth" : 5, + "layer" : 5, + "computedX" : 29.368, + "computedY" : 121.815, + "placementX" : 29.368, + "placementY" : 121.815, + "placementWidth" : 131.593, + "placementHeight" : 1.13, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 131.593, + "contentHeight" : 1.13, + "margin" : { + "top" : 1.13, + "right" : 0.0, + "bottom" : 13.894, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Languages[7]/LanguageRows[2]", + "entityName" : "LanguageRows", + "entityKind" : "SectionNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Languages[7]", + "childIndex" : 2, + "depth" : 5, + "layer" : 5, + "computedX" : 29.368, + "computedY" : 56.397, + "placementX" : 29.368, + "placementY" : 56.397, + "placementWidth" : 131.593, + "placementHeight" : 51.524, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 131.593, + "contentHeight" : 51.524, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Languages[7]/LanguageRows[2]/LanguageRowLayer[0]", + "entityName" : "LanguageRowLayer", + "entityKind" : "LayerStackNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Languages[7]/LanguageRows[2]", + "childIndex" : 0, + "depth" : 6, + "layer" : 6, + "computedX" : 29.368, + "computedY" : 98.239, + "placementX" : 29.368, + "placementY" : 98.239, + "placementWidth" : 131.593, + "placementHeight" : 9.682, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 131.593, + "contentHeight" : 9.682, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Languages[7]/LanguageRows[2]/LanguageRowLayer[0]/LanguageRowHolder[0]", + "entityName" : "LanguageRowHolder", + "entityKind" : "SectionNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Languages[7]/LanguageRows[2]/LanguageRowLayer[0]", + "childIndex" : 0, + "depth" : 7, + "layer" : 7, + "computedX" : 29.368, + "computedY" : 98.239, + "placementX" : 29.368, + "placementY" : 98.239, + "placementWidth" : 131.593, + "placementHeight" : 9.682, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 131.593, + "contentHeight" : 9.682, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Languages[7]/LanguageRows[2]/LanguageRowLayer[0]/LanguageRowHolder[0]/LanguageRow[0]", + "entityName" : "LanguageRow", + "entityKind" : "RowNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Languages[7]/LanguageRows[2]/LanguageRowLayer[0]/LanguageRowHolder[0]", + "childIndex" : 0, + "depth" : 8, + "layer" : 8, + "computedX" : 29.368, + "computedY" : 98.239, + "placementX" : 29.368, + "placementY" : 98.239, + "placementWidth" : 131.593, + "placementHeight" : 9.682, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 131.593, + "contentHeight" : 9.682, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Languages[7]/LanguageRows[2]/LanguageRowLayer[0]/LanguageRowHolder[0]/LanguageRow[0]/LanguageLabel[0]", + "entityName" : "LanguageLabel", + "entityKind" : "ParagraphNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Languages[7]/LanguageRows[2]/LanguageRowLayer[0]/LanguageRowHolder[0]/LanguageRow[0]", + "childIndex" : 0, + "depth" : 9, + "layer" : 9, + "computedX" : 29.368, + "computedY" : 98.239, + "placementX" : 29.368, + "placementY" : 98.239, + "placementWidth" : 25.689, + "placementHeight" : 9.682, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 25.689, + "contentHeight" : 9.682, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Languages[7]/LanguageRows[2]/LanguageRowLayer[0]/LanguageRowHolder[0]/LanguageRow[0]/LanguageDots[1]", + "entityName" : "LanguageDots", + "entityKind" : "ParagraphNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Languages[7]/LanguageRows[2]/LanguageRowLayer[0]/LanguageRowHolder[0]/LanguageRow[0]", + "childIndex" : 1, + "depth" : 9, + "layer" : 9, + "computedX" : 106.743, + "computedY" : 98.239, + "placementX" : 106.743, + "placementY" : 98.239, + "placementWidth" : 54.057, + "placementHeight" : 9.682, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 54.057, + "contentHeight" : 9.682, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Languages[7]/LanguageRows[2]/LanguageRowLayer[1]", + "entityName" : "LanguageRowLayer", + "entityKind" : "LayerStackNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Languages[7]/LanguageRows[2]", + "childIndex" : 1, + "depth" : 6, + "layer" : 6, + "computedX" : 29.368, + "computedY" : 77.318, + "placementX" : 29.368, + "placementY" : 77.318, + "placementWidth" : 131.593, + "placementHeight" : 9.682, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 131.593, + "contentHeight" : 9.682, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Languages[7]/LanguageRows[2]/LanguageRowLayer[1]/LanguageRowHolder[0]", + "entityName" : "LanguageRowHolder", + "entityKind" : "SectionNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Languages[7]/LanguageRows[2]/LanguageRowLayer[1]", + "childIndex" : 0, + "depth" : 7, + "layer" : 7, + "computedX" : 29.368, + "computedY" : 77.318, + "placementX" : 29.368, + "placementY" : 77.318, + "placementWidth" : 131.593, + "placementHeight" : 9.682, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 131.593, + "contentHeight" : 9.682, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Languages[7]/LanguageRows[2]/LanguageRowLayer[1]/LanguageRowHolder[0]/LanguageRow[0]", + "entityName" : "LanguageRow", + "entityKind" : "RowNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Languages[7]/LanguageRows[2]/LanguageRowLayer[1]/LanguageRowHolder[0]", + "childIndex" : 0, + "depth" : 8, + "layer" : 8, + "computedX" : 29.368, + "computedY" : 77.318, + "placementX" : 29.368, + "placementY" : 77.318, + "placementWidth" : 131.593, + "placementHeight" : 9.682, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 131.593, + "contentHeight" : 9.682, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Languages[7]/LanguageRows[2]/LanguageRowLayer[1]/LanguageRowHolder[0]/LanguageRow[0]/LanguageLabel[0]", + "entityName" : "LanguageLabel", + "entityKind" : "ParagraphNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Languages[7]/LanguageRows[2]/LanguageRowLayer[1]/LanguageRowHolder[0]/LanguageRow[0]", + "childIndex" : 0, + "depth" : 9, + "layer" : 9, + "computedX" : 29.368, + "computedY" : 77.318, + "placementX" : 29.368, + "placementY" : 77.318, + "placementWidth" : 27.924, + "placementHeight" : 9.682, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 27.924, + "contentHeight" : 9.682, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Languages[7]/LanguageRows[2]/LanguageRowLayer[1]/LanguageRowHolder[0]/LanguageRow[0]/LanguageDots[1]", + "entityName" : "LanguageDots", + "entityKind" : "ParagraphNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Languages[7]/LanguageRows[2]/LanguageRowLayer[1]/LanguageRowHolder[0]/LanguageRow[0]", + "childIndex" : 1, + "depth" : 9, + "layer" : 9, + "computedX" : 106.743, + "computedY" : 77.318, + "placementX" : 106.743, + "placementY" : 77.318, + "placementWidth" : 54.057, + "placementHeight" : 9.682, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 54.057, + "contentHeight" : 9.682, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Languages[7]/LanguageRows[2]/LanguageRowLayer[2]", + "entityName" : "LanguageRowLayer", + "entityKind" : "LayerStackNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Languages[7]/LanguageRows[2]", + "childIndex" : 2, + "depth" : 6, + "layer" : 6, + "computedX" : 29.368, + "computedY" : 56.397, + "placementX" : 29.368, + "placementY" : 56.397, + "placementWidth" : 131.593, + "placementHeight" : 9.682, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 131.593, + "contentHeight" : 9.682, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Languages[7]/LanguageRows[2]/LanguageRowLayer[2]/LanguageRowHolder[0]", + "entityName" : "LanguageRowHolder", + "entityKind" : "SectionNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Languages[7]/LanguageRows[2]/LanguageRowLayer[2]", + "childIndex" : 0, + "depth" : 7, + "layer" : 7, + "computedX" : 29.368, + "computedY" : 56.397, + "placementX" : 29.368, + "placementY" : 56.397, + "placementWidth" : 131.593, + "placementHeight" : 9.682, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 131.593, + "contentHeight" : 9.682, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Languages[7]/LanguageRows[2]/LanguageRowLayer[2]/LanguageRowHolder[0]/LanguageRow[0]", + "entityName" : "LanguageRow", + "entityKind" : "RowNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Languages[7]/LanguageRows[2]/LanguageRowLayer[2]/LanguageRowHolder[0]", + "childIndex" : 0, + "depth" : 8, + "layer" : 8, + "computedX" : 29.368, + "computedY" : 56.397, + "placementX" : 29.368, + "placementY" : 56.397, + "placementWidth" : 131.593, + "placementHeight" : 9.682, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 131.593, + "contentHeight" : 9.682, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Languages[7]/LanguageRows[2]/LanguageRowLayer[2]/LanguageRowHolder[0]/LanguageRow[0]/LanguageLabel[0]", + "entityName" : "LanguageLabel", + "entityKind" : "ParagraphNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Languages[7]/LanguageRows[2]/LanguageRowLayer[2]/LanguageRowHolder[0]/LanguageRow[0]", + "childIndex" : 0, + "depth" : 9, + "layer" : 9, + "computedX" : 29.368, + "computedY" : 56.397, + "placementX" : 29.368, + "placementY" : 56.397, + "placementWidth" : 24.713, + "placementHeight" : 9.682, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 24.713, + "contentHeight" : 9.682, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Languages[7]/LanguageRows[2]/LanguageRowLayer[2]/LanguageRowHolder[0]/LanguageRow[0]/LanguageDots[1]", + "entityName" : "LanguageDots", + "entityKind" : "ParagraphNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Aside[0]/Languages[7]/LanguageRows[2]/LanguageRowLayer[2]/LanguageRowHolder[0]/LanguageRow[0]", + "childIndex" : 1, + "depth" : 9, + "layer" : 9, + "computedX" : 106.743, + "computedY" : 56.397, + "placementX" : 106.743, + "placementY" : 56.397, + "placementWidth" : 54.057, + "placementHeight" : 9.682, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 54.057, + "contentHeight" : 9.682, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]", + "entityName" : "Main", + "entityKind" : "SectionNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]", + "childIndex" : 1, + "depth" : 3, + "layer" : 3, + "computedX" : 185.247, + "computedY" : 28.659, + "placementX" : 185.247, + "placementY" : 28.659, + "placementWidth" : 410.029, + "placementHeight" : 813.231, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 410.029, + "contentHeight" : 813.231, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 40.269, + "right" : 41.794, + "bottom" : 0.0, + "left" : 29.933 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Summary[0]", + "entityName" : "Summary", + "entityKind" : "SectionNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]", + "childIndex" : 0, + "depth" : 4, + "layer" : 4, + "computedX" : 215.18, + "computedY" : 708.231, + "placementX" : 215.18, + "placementY" : 708.231, + "placementWidth" : 338.302, + "placementHeight" : 93.39, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 338.302, + "contentHeight" : 93.39, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Summary[0]/MainHeadingPROFESSIONALSUMMARY[0]", + "entityName" : "MainHeadingPROFESSIONALSUMMARY", + "entityKind" : "ParagraphNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Summary[0]", + "childIndex" : 0, + "depth" : 5, + "layer" : 5, + "computedX" : 215.18, + "computedY" : 788.066, + "placementX" : 215.18, + "placementY" : 788.066, + "placementWidth" : 132.316, + "placementHeight" : 13.555, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 132.316, + "contentHeight" : 13.555, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Summary[0]/MainRulePROFESSIONALSUMMARY[1]", + "entityName" : "MainRulePROFESSIONALSUMMARY", + "entityKind" : "LineNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Summary[0]", + "childIndex" : 1, + "depth" : 5, + "layer" : 5, + "computedX" : 215.18, + "computedY" : 782.814, + "placementX" : 215.18, + "placementY" : 782.814, + "placementWidth" : 338.302, + "placementHeight" : 1.13, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 338.302, + "contentHeight" : 1.13, + "margin" : { + "top" : 4.123, + "right" : 0.0, + "bottom" : 12.651, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Summary[0]/SummaryText[2]", + "entityName" : "SummaryText", + "entityKind" : "ParagraphNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Summary[0]", + "childIndex" : 2, + "depth" : 5, + "layer" : 5, + "computedX" : 215.18, + "computedY" : 708.231, + "placementX" : 215.18, + "placementY" : 708.231, + "placementWidth" : 321.5, + "placementHeight" : 61.932, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 321.5, + "contentHeight" : 61.932, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]", + "entityName" : "Experience", + "entityKind" : "SectionNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]", + "childIndex" : 1, + "depth" : 4, + "layer" : 4, + "computedX" : 215.18, + "computedY" : 238.191, + "placementX" : 215.18, + "placementY" : 238.191, + "placementWidth" : 338.302, + "placementHeight" : 434.459, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 338.302, + "contentHeight" : 434.459, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/MainHeadingEXPERIENCE[0]", + "entityName" : "MainHeadingEXPERIENCE", + "entityKind" : "ParagraphNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]", + "childIndex" : 0, + "depth" : 5, + "layer" : 5, + "computedX" : 215.18, + "computedY" : 659.095, + "placementX" : 215.18, + "placementY" : 659.095, + "placementWidth" : 64.543, + "placementHeight" : 13.555, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 64.543, + "contentHeight" : 13.555, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/MainRuleEXPERIENCE[1]", + "entityName" : "MainRuleEXPERIENCE", + "entityKind" : "LineNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]", + "childIndex" : 1, + "depth" : 5, + "layer" : 5, + "computedX" : 215.18, + "computedY" : 653.843, + "placementX" : 215.18, + "placementY" : 653.843, + "placementWidth" : 338.302, + "placementHeight" : 1.13, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 338.302, + "contentHeight" : 1.13, + "margin" : { + "top" : 4.123, + "right" : 0.0, + "bottom" : 12.99, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[2]", + "entityName" : "ExperienceEntry", + "entityKind" : "SectionNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]", + "childIndex" : 2, + "depth" : 5, + "layer" : 5, + "computedX" : 215.18, + "computedY" : 471.202, + "placementX" : 215.18, + "placementY" : 471.202, + "placementWidth" : 338.302, + "placementHeight" : 169.651, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 338.302, + "contentHeight" : 169.651, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 25.98, + "left" : 15.249 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[2]/EntryHeaderLayer[0]", + "entityName" : "EntryHeaderLayer", + "entityKind" : "LayerStackNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[2]", + "childIndex" : 0, + "depth" : 6, + "layer" : 6, + "computedX" : 230.429, + "computedY" : 629.235, + "placementX" : 230.429, + "placementY" : 629.235, + "placementWidth" : 323.053, + "placementHeight" : 11.618, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 323.053, + "contentHeight" : 11.618, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[2]/EntryHeaderLayer[0]/EntryHeaderHolder[0]", + "entityName" : "EntryHeaderHolder", + "entityKind" : "SectionNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[2]/EntryHeaderLayer[0]", + "childIndex" : 0, + "depth" : 7, + "layer" : 7, + "computedX" : 230.429, + "computedY" : 629.235, + "placementX" : 230.429, + "placementY" : 629.235, + "placementWidth" : 323.053, + "placementHeight" : 11.618, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 323.053, + "contentHeight" : 11.618, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[2]/EntryHeaderLayer[0]/EntryHeaderHolder[0]/EntryHeader[0]", + "entityName" : "EntryHeader", + "entityKind" : "RowNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[2]/EntryHeaderLayer[0]/EntryHeaderHolder[0]", + "childIndex" : 0, + "depth" : 8, + "layer" : 8, + "computedX" : 230.429, + "computedY" : 629.235, + "placementX" : 230.429, + "placementY" : 629.235, + "placementWidth" : 323.053, + "placementHeight" : 11.618, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 323.053, + "contentHeight" : 11.618, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[2]/EntryHeaderLayer[0]/EntryHeaderHolder[0]/EntryHeader[0]/EntryTitle[0]", + "entityName" : "EntryTitle", + "entityKind" : "ParagraphNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[2]/EntryHeaderLayer[0]/EntryHeaderHolder[0]/EntryHeader[0]", + "childIndex" : 0, + "depth" : 9, + "layer" : 9, + "computedX" : 230.429, + "computedY" : 629.235, + "placementX" : 230.429, + "placementY" : 629.235, + "placementWidth" : 97.468, + "placementHeight" : 11.618, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 97.468, + "contentHeight" : 11.618, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[2]/EntryHeaderLayer[0]/EntryHeaderHolder[0]/EntryHeader[0]/EntryPeriod[1]", + "entityName" : "EntryPeriod", + "entityKind" : "ParagraphNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[2]/EntryHeaderLayer[0]/EntryHeaderHolder[0]/EntryHeader[0]", + "childIndex" : 1, + "depth" : 9, + "layer" : 9, + "computedX" : 430.722, + "computedY" : 630.203, + "placementX" : 430.722, + "placementY" : 630.203, + "placementWidth" : 122.76, + "placementHeight" : 10.65, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 122.76, + "contentHeight" : 10.65, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[2]/EntryHeaderLayer[0]/EntryMarker[1]", + "entityName" : "EntryMarker", + "entityKind" : "EllipseNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[2]/EntryHeaderLayer[0]", + "childIndex" : 1, + "depth" : 7, + "layer" : 7, + "computedX" : 212.639, + "computedY" : 634.019, + "placementX" : 212.639, + "placementY" : 634.019, + "placementWidth" : 5.083, + "placementHeight" : 5.083, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 5.083, + "contentHeight" : 5.083, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[2]/EntrySubheaderLayer[1]", + "entityName" : "EntrySubheaderLayer", + "entityKind" : "LayerStackNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[2]", + "childIndex" : 1, + "depth" : 6, + "layer" : 6, + "computedX" : 230.429, + "computedY" : 615.535, + "placementX" : 230.429, + "placementY" : 615.535, + "placementWidth" : 323.053, + "placementHeight" : 13.7, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 323.053, + "contentHeight" : 13.7, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[2]/EntrySubheaderLayer[1]/EntrySubheaderHolder[0]", + "entityName" : "EntrySubheaderHolder", + "entityKind" : "SectionNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[2]/EntrySubheaderLayer[1]", + "childIndex" : 0, + "depth" : 7, + "layer" : 7, + "computedX" : 230.429, + "computedY" : 615.535, + "placementX" : 230.429, + "placementY" : 615.535, + "placementWidth" : 323.053, + "placementHeight" : 13.7, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 323.053, + "contentHeight" : 13.7, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[2]/EntrySubheaderLayer[1]/EntrySubheaderHolder[0]/EntrySubheader[0]", + "entityName" : "EntrySubheader", + "entityKind" : "RowNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[2]/EntrySubheaderLayer[1]/EntrySubheaderHolder[0]", + "childIndex" : 0, + "depth" : 8, + "layer" : 8, + "computedX" : 230.429, + "computedY" : 615.535, + "placementX" : 230.429, + "placementY" : 615.535, + "placementWidth" : 323.053, + "placementHeight" : 13.7, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 323.053, + "contentHeight" : 13.7, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[2]/EntrySubheaderLayer[1]/EntrySubheaderHolder[0]/EntrySubheader[0]/EntryCompany[0]", + "entityName" : "EntryCompany", + "entityKind" : "ParagraphNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[2]/EntrySubheaderLayer[1]/EntrySubheaderHolder[0]/EntrySubheader[0]", + "childIndex" : 0, + "depth" : 9, + "layer" : 9, + "computedX" : 230.429, + "computedY" : 615.535, + "placementX" : 230.429, + "placementY" : 615.535, + "placementWidth" : 72.43, + "placementHeight" : 10.65, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 72.43, + "contentHeight" : 10.65, + "margin" : { + "top" : 3.05, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[2]/EntrySubheaderLayer[1]/EntrySubheaderHolder[0]/EntrySubheader[0]/EntryLocation[1]", + "entityName" : "EntryLocation", + "entityKind" : "ParagraphNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[2]/EntrySubheaderLayer[1]/EntrySubheaderHolder[0]/EntrySubheader[0]", + "childIndex" : 1, + "depth" : 9, + "layer" : 9, + "computedX" : 430.722, + "computedY" : 615.535, + "placementX" : 430.722, + "placementY" : 615.535, + "placementWidth" : 122.76, + "placementHeight" : 10.65, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 122.76, + "contentHeight" : 10.65, + "margin" : { + "top" : 3.05, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[2]/EntryBullets[2]", + "entityName" : "EntryBullets", + "entityKind" : "ListNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[2]", + "childIndex" : 2, + "depth" : 6, + "layer" : 6, + "computedX" : 230.429, + "computedY" : 497.182, + "placementX" : 230.429, + "placementY" : 497.182, + "placementWidth" : 318.296, + "placementHeight" : 104.347, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 318.296, + "contentHeight" : 104.347, + "margin" : { + "top" : 14.006, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[3]", + "entityName" : "ExperienceEntry", + "entityKind" : "SectionNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]", + "childIndex" : 3, + "depth" : 5, + "layer" : 5, + "computedX" : 215.18, + "computedY" : 328.321, + "placementX" : 215.18, + "placementY" : 328.321, + "placementWidth" : 338.302, + "placementHeight" : 142.881, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 338.302, + "contentHeight" : 142.881, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 25.98, + "left" : 15.249 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[3]/EntryHeaderLayer[0]", + "entityName" : "EntryHeaderLayer", + "entityKind" : "LayerStackNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[3]", + "childIndex" : 0, + "depth" : 6, + "layer" : 6, + "computedX" : 230.429, + "computedY" : 459.584, + "placementX" : 230.429, + "placementY" : 459.584, + "placementWidth" : 323.053, + "placementHeight" : 11.618, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 323.053, + "contentHeight" : 11.618, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[3]/EntryHeaderLayer[0]/EntryHeaderHolder[0]", + "entityName" : "EntryHeaderHolder", + "entityKind" : "SectionNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[3]/EntryHeaderLayer[0]", + "childIndex" : 0, + "depth" : 7, + "layer" : 7, + "computedX" : 230.429, + "computedY" : 459.584, + "placementX" : 230.429, + "placementY" : 459.584, + "placementWidth" : 323.053, + "placementHeight" : 11.618, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 323.053, + "contentHeight" : 11.618, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[3]/EntryHeaderLayer[0]/EntryHeaderHolder[0]/EntryHeader[0]", + "entityName" : "EntryHeader", + "entityKind" : "RowNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[3]/EntryHeaderLayer[0]/EntryHeaderHolder[0]", + "childIndex" : 0, + "depth" : 8, + "layer" : 8, + "computedX" : 230.429, + "computedY" : 459.584, + "placementX" : 230.429, + "placementY" : 459.584, + "placementWidth" : 323.053, + "placementHeight" : 11.618, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 323.053, + "contentHeight" : 11.618, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[3]/EntryHeaderLayer[0]/EntryHeaderHolder[0]/EntryHeader[0]/EntryTitle[0]", + "entityName" : "EntryTitle", + "entityKind" : "ParagraphNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[3]/EntryHeaderLayer[0]/EntryHeaderHolder[0]/EntryHeader[0]", + "childIndex" : 0, + "depth" : 9, + "layer" : 9, + "computedX" : 230.429, + "computedY" : 459.584, + "placementX" : 230.429, + "placementY" : 459.584, + "placementWidth" : 139.516, + "placementHeight" : 11.618, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 139.516, + "contentHeight" : 11.618, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[3]/EntryHeaderLayer[0]/EntryHeaderHolder[0]/EntryHeader[0]/EntryPeriod[1]", + "entityName" : "EntryPeriod", + "entityKind" : "ParagraphNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[3]/EntryHeaderLayer[0]/EntryHeaderHolder[0]/EntryHeader[0]", + "childIndex" : 1, + "depth" : 9, + "layer" : 9, + "computedX" : 430.722, + "computedY" : 460.552, + "placementX" : 430.722, + "placementY" : 460.552, + "placementWidth" : 122.76, + "placementHeight" : 10.65, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 122.76, + "contentHeight" : 10.65, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[3]/EntryHeaderLayer[0]/EntryMarker[1]", + "entityName" : "EntryMarker", + "entityKind" : "EllipseNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[3]/EntryHeaderLayer[0]", + "childIndex" : 1, + "depth" : 7, + "layer" : 7, + "computedX" : 212.639, + "computedY" : 464.368, + "placementX" : 212.639, + "placementY" : 464.368, + "placementWidth" : 5.083, + "placementHeight" : 5.083, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 5.083, + "contentHeight" : 5.083, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[3]/EntrySubheaderLayer[1]", + "entityName" : "EntrySubheaderLayer", + "entityKind" : "LayerStackNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[3]", + "childIndex" : 1, + "depth" : 6, + "layer" : 6, + "computedX" : 230.429, + "computedY" : 445.884, + "placementX" : 230.429, + "placementY" : 445.884, + "placementWidth" : 323.053, + "placementHeight" : 13.7, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 323.053, + "contentHeight" : 13.7, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[3]/EntrySubheaderLayer[1]/EntrySubheaderHolder[0]", + "entityName" : "EntrySubheaderHolder", + "entityKind" : "SectionNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[3]/EntrySubheaderLayer[1]", + "childIndex" : 0, + "depth" : 7, + "layer" : 7, + "computedX" : 230.429, + "computedY" : 445.884, + "placementX" : 230.429, + "placementY" : 445.884, + "placementWidth" : 323.053, + "placementHeight" : 13.7, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 323.053, + "contentHeight" : 13.7, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[3]/EntrySubheaderLayer[1]/EntrySubheaderHolder[0]/EntrySubheader[0]", + "entityName" : "EntrySubheader", + "entityKind" : "RowNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[3]/EntrySubheaderLayer[1]/EntrySubheaderHolder[0]", + "childIndex" : 0, + "depth" : 8, + "layer" : 8, + "computedX" : 230.429, + "computedY" : 445.884, + "placementX" : 230.429, + "placementY" : 445.884, + "placementWidth" : 323.053, + "placementHeight" : 13.7, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 323.053, + "contentHeight" : 13.7, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[3]/EntrySubheaderLayer[1]/EntrySubheaderHolder[0]/EntrySubheader[0]/EntryCompany[0]", + "entityName" : "EntryCompany", + "entityKind" : "ParagraphNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[3]/EntrySubheaderLayer[1]/EntrySubheaderHolder[0]/EntrySubheader[0]", + "childIndex" : 0, + "depth" : 9, + "layer" : 9, + "computedX" : 230.429, + "computedY" : 445.884, + "placementX" : 230.429, + "placementY" : 445.884, + "placementWidth" : 91.307, + "placementHeight" : 10.65, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 91.307, + "contentHeight" : 10.65, + "margin" : { + "top" : 3.05, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[3]/EntrySubheaderLayer[1]/EntrySubheaderHolder[0]/EntrySubheader[0]/EntryLocation[1]", + "entityName" : "EntryLocation", + "entityKind" : "ParagraphNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[3]/EntrySubheaderLayer[1]/EntrySubheaderHolder[0]/EntrySubheader[0]", + "childIndex" : 1, + "depth" : 9, + "layer" : 9, + "computedX" : 430.722, + "computedY" : 445.884, + "placementX" : 430.722, + "placementY" : 445.884, + "placementWidth" : 122.76, + "placementHeight" : 10.65, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 122.76, + "contentHeight" : 10.65, + "margin" : { + "top" : 3.05, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[3]/EntryBullets[2]", + "entityName" : "EntryBullets", + "entityKind" : "ListNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[3]", + "childIndex" : 2, + "depth" : 6, + "layer" : 6, + "computedX" : 230.429, + "computedY" : 354.301, + "placementX" : 230.429, + "placementY" : 354.301, + "placementWidth" : 310.574, + "placementHeight" : 77.576, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 310.574, + "contentHeight" : 77.576, + "margin" : { + "top" : 14.006, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[4]", + "entityName" : "ExperienceEntry", + "entityKind" : "SectionNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]", + "childIndex" : 4, + "depth" : 5, + "layer" : 5, + "computedX" : 215.18, + "computedY" : 238.191, + "placementX" : 215.18, + "placementY" : 238.191, + "placementWidth" : 338.302, + "placementHeight" : 90.13, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 338.302, + "contentHeight" : 90.13, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 15.249 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[4]/EntryHeaderLayer[0]", + "entityName" : "EntryHeaderLayer", + "entityKind" : "LayerStackNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[4]", + "childIndex" : 0, + "depth" : 6, + "layer" : 6, + "computedX" : 230.429, + "computedY" : 316.703, + "placementX" : 230.429, + "placementY" : 316.703, + "placementWidth" : 323.053, + "placementHeight" : 11.618, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 323.053, + "contentHeight" : 11.618, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[4]/EntryHeaderLayer[0]/EntryHeaderHolder[0]", + "entityName" : "EntryHeaderHolder", + "entityKind" : "SectionNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[4]/EntryHeaderLayer[0]", + "childIndex" : 0, + "depth" : 7, + "layer" : 7, + "computedX" : 230.429, + "computedY" : 316.703, + "placementX" : 230.429, + "placementY" : 316.703, + "placementWidth" : 323.053, + "placementHeight" : 11.618, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 323.053, + "contentHeight" : 11.618, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[4]/EntryHeaderLayer[0]/EntryHeaderHolder[0]/EntryHeader[0]", + "entityName" : "EntryHeader", + "entityKind" : "RowNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[4]/EntryHeaderLayer[0]/EntryHeaderHolder[0]", + "childIndex" : 0, + "depth" : 8, + "layer" : 8, + "computedX" : 230.429, + "computedY" : 316.703, + "placementX" : 230.429, + "placementY" : 316.703, + "placementWidth" : 323.053, + "placementHeight" : 11.618, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 323.053, + "contentHeight" : 11.618, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[4]/EntryHeaderLayer[0]/EntryHeaderHolder[0]/EntryHeader[0]/EntryTitle[0]", + "entityName" : "EntryTitle", + "entityKind" : "ParagraphNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[4]/EntryHeaderLayer[0]/EntryHeaderHolder[0]/EntryHeader[0]", + "childIndex" : 0, + "depth" : 9, + "layer" : 9, + "computedX" : 230.429, + "computedY" : 316.703, + "placementX" : 230.429, + "placementY" : 316.703, + "placementWidth" : 116.531, + "placementHeight" : 11.618, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 116.531, + "contentHeight" : 11.618, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[4]/EntryHeaderLayer[0]/EntryHeaderHolder[0]/EntryHeader[0]/EntryPeriod[1]", + "entityName" : "EntryPeriod", + "entityKind" : "ParagraphNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[4]/EntryHeaderLayer[0]/EntryHeaderHolder[0]/EntryHeader[0]", + "childIndex" : 1, + "depth" : 9, + "layer" : 9, + "computedX" : 430.722, + "computedY" : 317.671, + "placementX" : 430.722, + "placementY" : 317.671, + "placementWidth" : 122.76, + "placementHeight" : 10.65, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 122.76, + "contentHeight" : 10.65, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[4]/EntryHeaderLayer[0]/EntryMarker[1]", + "entityName" : "EntryMarker", + "entityKind" : "EllipseNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[4]/EntryHeaderLayer[0]", + "childIndex" : 1, + "depth" : 7, + "layer" : 7, + "computedX" : 212.639, + "computedY" : 321.488, + "placementX" : 212.639, + "placementY" : 321.488, + "placementWidth" : 5.083, + "placementHeight" : 5.083, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 5.083, + "contentHeight" : 5.083, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[4]/EntrySubheaderLayer[1]", + "entityName" : "EntrySubheaderLayer", + "entityKind" : "LayerStackNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[4]", + "childIndex" : 1, + "depth" : 6, + "layer" : 6, + "computedX" : 230.429, + "computedY" : 303.003, + "placementX" : 230.429, + "placementY" : 303.003, + "placementWidth" : 323.053, + "placementHeight" : 13.7, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 323.053, + "contentHeight" : 13.7, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[4]/EntrySubheaderLayer[1]/EntrySubheaderHolder[0]", + "entityName" : "EntrySubheaderHolder", + "entityKind" : "SectionNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[4]/EntrySubheaderLayer[1]", + "childIndex" : 0, + "depth" : 7, + "layer" : 7, + "computedX" : 230.429, + "computedY" : 303.003, + "placementX" : 230.429, + "placementY" : 303.003, + "placementWidth" : 323.053, + "placementHeight" : 13.7, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 323.053, + "contentHeight" : 13.7, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[4]/EntrySubheaderLayer[1]/EntrySubheaderHolder[0]/EntrySubheader[0]", + "entityName" : "EntrySubheader", + "entityKind" : "RowNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[4]/EntrySubheaderLayer[1]/EntrySubheaderHolder[0]", + "childIndex" : 0, + "depth" : 8, + "layer" : 8, + "computedX" : 230.429, + "computedY" : 303.003, + "placementX" : 230.429, + "placementY" : 303.003, + "placementWidth" : 323.053, + "placementHeight" : 13.7, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 323.053, + "contentHeight" : 13.7, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[4]/EntrySubheaderLayer[1]/EntrySubheaderHolder[0]/EntrySubheader[0]/EntryCompany[0]", + "entityName" : "EntryCompany", + "entityKind" : "ParagraphNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[4]/EntrySubheaderLayer[1]/EntrySubheaderHolder[0]/EntrySubheader[0]", + "childIndex" : 0, + "depth" : 9, + "layer" : 9, + "computedX" : 230.429, + "computedY" : 303.003, + "placementX" : 230.429, + "placementY" : 303.003, + "placementWidth" : 93.845, + "placementHeight" : 10.65, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 93.845, + "contentHeight" : 10.65, + "margin" : { + "top" : 3.05, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[4]/EntrySubheaderLayer[1]/EntrySubheaderHolder[0]/EntrySubheader[0]/EntryLocation[1]", + "entityName" : "EntryLocation", + "entityKind" : "ParagraphNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[4]/EntrySubheaderLayer[1]/EntrySubheaderHolder[0]/EntrySubheader[0]", + "childIndex" : 1, + "depth" : 9, + "layer" : 9, + "computedX" : 430.722, + "computedY" : 303.003, + "placementX" : 430.722, + "placementY" : 303.003, + "placementWidth" : 122.76, + "placementHeight" : 10.65, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 122.76, + "contentHeight" : 10.65, + "margin" : { + "top" : 3.05, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[4]/EntryBullets[2]", + "entityName" : "EntryBullets", + "entityKind" : "ListNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Experience[1]/ExperienceEntry[4]", + "childIndex" : 2, + "depth" : 6, + "layer" : 6, + "computedX" : 230.429, + "computedY" : 238.191, + "placementX" : 230.429, + "placementY" : 238.191, + "placementWidth" : 302.152, + "placementHeight" : 50.806, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 302.152, + "contentHeight" : 50.806, + "margin" : { + "top" : 14.006, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Achievements[2]", + "entityName" : "Achievements", + "entityKind" : "SectionNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]", + "childIndex" : 2, + "depth" : 4, + "layer" : 4, + "computedX" : 215.18, + "computedY" : 130.133, + "placementX" : 215.18, + "placementY" : 130.133, + "placementWidth" : 338.302, + "placementHeight" : 72.477, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 338.302, + "contentHeight" : 72.477, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Achievements[2]/MainHeadingACHIEVEMENTS[0]", + "entityName" : "MainHeadingACHIEVEMENTS", + "entityKind" : "ParagraphNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Achievements[2]", + "childIndex" : 0, + "depth" : 5, + "layer" : 5, + "computedX" : 215.18, + "computedY" : 189.055, + "placementX" : 215.18, + "placementY" : 189.055, + "placementWidth" : 80.244, + "placementHeight" : 13.555, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 80.244, + "contentHeight" : 13.555, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Achievements[2]/MainRuleACHIEVEMENTS[1]", + "entityName" : "MainRuleACHIEVEMENTS", + "entityKind" : "LineNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Achievements[2]", + "childIndex" : 1, + "depth" : 5, + "layer" : 5, + "computedX" : 215.18, + "computedY" : 183.932, + "placementX" : 215.18, + "placementY" : 183.932, + "placementWidth" : 338.302, + "placementHeight" : 1.0, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 338.302, + "contentHeight" : 1.0, + "margin" : { + "top" : 4.123, + "right" : 0.0, + "bottom" : 18.299, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Achievements[2]/AchievementCardsLayer[2]", + "entityName" : "AchievementCardsLayer", + "entityKind" : "LayerStackNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Achievements[2]", + "childIndex" : 2, + "depth" : 5, + "layer" : 5, + "computedX" : 215.18, + "computedY" : 130.133, + "placementX" : 215.18, + "placementY" : 130.133, + "placementWidth" : 338.302, + "placementHeight" : 35.5, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 338.302, + "contentHeight" : 35.5, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Achievements[2]/AchievementCardsLayer[2]/AchievementCardsHolder[0]", + "entityName" : "AchievementCardsHolder", + "entityKind" : "SectionNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Achievements[2]/AchievementCardsLayer[2]", + "childIndex" : 0, + "depth" : 6, + "layer" : 6, + "computedX" : 215.18, + "computedY" : 130.133, + "placementX" : 215.18, + "placementY" : 130.133, + "placementWidth" : 338.302, + "placementHeight" : 35.5, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 338.302, + "contentHeight" : 35.5, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Achievements[2]/AchievementCardsLayer[2]/AchievementCardsHolder[0]/AchievementCards[0]", + "entityName" : "AchievementCards", + "entityKind" : "RowNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Achievements[2]/AchievementCardsLayer[2]/AchievementCardsHolder[0]", + "childIndex" : 0, + "depth" : 7, + "layer" : 7, + "computedX" : 215.18, + "computedY" : 130.133, + "placementX" : 215.18, + "placementY" : 130.133, + "placementWidth" : 338.302, + "placementHeight" : 35.5, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 338.302, + "contentHeight" : 35.5, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Achievements[2]/AchievementCardsLayer[2]/AchievementCardsHolder[0]/AchievementCards[0]/AchievementCard[0]", + "entityName" : "AchievementCard", + "entityKind" : "SectionNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Achievements[2]/AchievementCardsLayer[2]/AchievementCardsHolder[0]/AchievementCards[0]", + "childIndex" : 0, + "depth" : 8, + "layer" : 8, + "computedX" : 215.18, + "computedY" : 130.133, + "placementX" : 215.18, + "placementY" : 130.133, + "placementWidth" : 112.767, + "placementHeight" : 35.5, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 112.767, + "contentHeight" : 35.5, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Achievements[2]/AchievementCardsLayer[2]/AchievementCardsHolder[0]/AchievementCards[0]/AchievementCard[0]/AchievementCardRowLayer[0]", + "entityName" : "AchievementCardRowLayer", + "entityKind" : "LayerStackNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Achievements[2]/AchievementCardsLayer[2]/AchievementCardsHolder[0]/AchievementCards[0]/AchievementCard[0]", + "childIndex" : 0, + "depth" : 9, + "layer" : 9, + "computedX" : 215.18, + "computedY" : 130.133, + "placementX" : 215.18, + "placementY" : 130.133, + "placementWidth" : 112.767, + "placementHeight" : 35.5, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 112.767, + "contentHeight" : 35.5, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Achievements[2]/AchievementCardsLayer[2]/AchievementCardsHolder[0]/AchievementCards[0]/AchievementCard[0]/AchievementCardRowLayer[0]/AchievementCardRowHolder[0]", + "entityName" : "AchievementCardRowHolder", + "entityKind" : "SectionNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Achievements[2]/AchievementCardsLayer[2]/AchievementCardsHolder[0]/AchievementCards[0]/AchievementCard[0]/AchievementCardRowLayer[0]", + "childIndex" : 0, + "depth" : 10, + "layer" : 10, + "computedX" : 215.18, + "computedY" : 130.133, + "placementX" : 215.18, + "placementY" : 130.133, + "placementWidth" : 112.767, + "placementHeight" : 35.5, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 112.767, + "contentHeight" : 35.5, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Achievements[2]/AchievementCardsLayer[2]/AchievementCardsHolder[0]/AchievementCards[0]/AchievementCard[0]/AchievementCardRowLayer[0]/AchievementCardRowHolder[0]/AchievementCardRow[0]", + "entityName" : "AchievementCardRow", + "entityKind" : "RowNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Achievements[2]/AchievementCardsLayer[2]/AchievementCardsHolder[0]/AchievementCards[0]/AchievementCard[0]/AchievementCardRowLayer[0]/AchievementCardRowHolder[0]", + "childIndex" : 0, + "depth" : 11, + "layer" : 11, + "computedX" : 215.18, + "computedY" : 130.133, + "placementX" : 215.18, + "placementY" : 130.133, + "placementWidth" : 112.767, + "placementHeight" : 35.5, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 112.767, + "contentHeight" : 35.5, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Achievements[2]/AchievementCardsLayer[2]/AchievementCardsHolder[0]/AchievementCards[0]/AchievementCard[0]/AchievementCardRowLayer[0]/AchievementCardRowHolder[0]/AchievementCardRow[0]/AchievementDiscCell[0]", + "entityName" : "AchievementDiscCell", + "entityKind" : "SectionNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Achievements[2]/AchievementCardsLayer[2]/AchievementCardsHolder[0]/AchievementCards[0]/AchievementCard[0]/AchievementCardRowLayer[0]/AchievementCardRowHolder[0]/AchievementCardRow[0]", + "childIndex" : 0, + "depth" : 12, + "layer" : 12, + "computedX" : 215.18, + "computedY" : 132.634, + "placementX" : 215.18, + "placementY" : 132.634, + "placementWidth" : 30.498, + "placementHeight" : 30.498, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 30.498, + "contentHeight" : 30.498, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Achievements[2]/AchievementCardsLayer[2]/AchievementCardsHolder[0]/AchievementCards[0]/AchievementCard[0]/AchievementCardRowLayer[0]/AchievementCardRowHolder[0]/AchievementCardRow[0]/AchievementDiscCell[0]/AchievementDisc[0]", + "entityName" : "AchievementDisc", + "entityKind" : "ShapeContainerNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Achievements[2]/AchievementCardsLayer[2]/AchievementCardsHolder[0]/AchievementCards[0]/AchievementCard[0]/AchievementCardRowLayer[0]/AchievementCardRowHolder[0]/AchievementCardRow[0]/AchievementDiscCell[0]", + "childIndex" : 0, + "depth" : 13, + "layer" : 13, + "computedX" : 215.18, + "computedY" : 132.634, + "placementX" : 215.18, + "placementY" : 132.634, + "placementWidth" : 30.498, + "placementHeight" : 30.498, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 30.498, + "contentHeight" : 30.498, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Achievements[2]/AchievementCardsLayer[2]/AchievementCardsHolder[0]/AchievementCards[0]/AchievementCard[0]/AchievementCardRowLayer[0]/AchievementCardRowHolder[0]/AchievementCardRow[0]/AchievementDiscCell[0]/AchievementDisc[0]/SvgIcon[0]", + "entityName" : "SvgIcon", + "entityKind" : "LayerStackNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Achievements[2]/AchievementCardsLayer[2]/AchievementCardsHolder[0]/AchievementCards[0]/AchievementCard[0]/AchievementCardRowLayer[0]/AchievementCardRowHolder[0]/AchievementCardRow[0]/AchievementDiscCell[0]/AchievementDisc[0]", + "childIndex" : 0, + "depth" : 14, + "layer" : 14, + "computedX" : 222.522, + "computedY" : 139.977, + "placementX" : 222.522, + "placementY" : 139.977, + "placementWidth" : 15.814, + "placementHeight" : 15.814, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 15.814, + "contentHeight" : 15.814, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Achievements[2]/AchievementCardsLayer[2]/AchievementCardsHolder[0]/AchievementCards[0]/AchievementCard[0]/AchievementCardRowLayer[0]/AchievementCardRowHolder[0]/AchievementCardRow[0]/AchievementDiscCell[0]/AchievementDisc[0]/SvgIcon[0]/SvgLayer0[0]", + "entityName" : "SvgLayer0", + "entityKind" : "Path", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Achievements[2]/AchievementCardsLayer[2]/AchievementCardsHolder[0]/AchievementCards[0]/AchievementCard[0]/AchievementCardRowLayer[0]/AchievementCardRowHolder[0]/AchievementCardRow[0]/AchievementDiscCell[0]/AchievementDisc[0]/SvgIcon[0]", + "childIndex" : 0, + "depth" : 15, + "layer" : 15, + "computedX" : 222.522, + "computedY" : 139.977, + "placementX" : 222.522, + "placementY" : 139.977, + "placementWidth" : 15.814, + "placementHeight" : 15.814, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 15.814, + "contentHeight" : 15.814, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Achievements[2]/AchievementCardsLayer[2]/AchievementCardsHolder[0]/AchievementCards[0]/AchievementCard[0]/AchievementCardRowLayer[0]/AchievementCardRowHolder[0]/AchievementCardRow[0]/AchievementText[1]", + "entityName" : "AchievementText", + "entityKind" : "ParagraphNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Achievements[2]/AchievementCardsLayer[2]/AchievementCardsHolder[0]/AchievementCards[0]/AchievementCard[0]/AchievementCardRowLayer[0]/AchievementCardRowHolder[0]/AchievementCardRow[0]", + "childIndex" : 1, + "depth" : 12, + "layer" : 12, + "computedX" : 253.02, + "computedY" : 130.133, + "placementX" : 253.02, + "placementY" : 130.133, + "placementWidth" : 71.4, + "placementHeight" : 35.5, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 71.4, + "contentHeight" : 35.5, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Achievements[2]/AchievementCardsLayer[2]/AchievementCardsHolder[0]/AchievementCards[0]/AchievementCard[1]", + "entityName" : "AchievementCard", + "entityKind" : "SectionNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Achievements[2]/AchievementCardsLayer[2]/AchievementCardsHolder[0]/AchievementCards[0]", + "childIndex" : 1, + "depth" : 8, + "layer" : 8, + "computedX" : 327.948, + "computedY" : 130.133, + "placementX" : 327.948, + "placementY" : 130.133, + "placementWidth" : 112.767, + "placementHeight" : 35.5, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 112.767, + "contentHeight" : 35.5, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Achievements[2]/AchievementCardsLayer[2]/AchievementCardsHolder[0]/AchievementCards[0]/AchievementCard[1]/AchievementCardRowLayer[0]", + "entityName" : "AchievementCardRowLayer", + "entityKind" : "LayerStackNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Achievements[2]/AchievementCardsLayer[2]/AchievementCardsHolder[0]/AchievementCards[0]/AchievementCard[1]", + "childIndex" : 0, + "depth" : 9, + "layer" : 9, + "computedX" : 327.948, + "computedY" : 130.133, + "placementX" : 327.948, + "placementY" : 130.133, + "placementWidth" : 112.767, + "placementHeight" : 35.5, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 112.767, + "contentHeight" : 35.5, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Achievements[2]/AchievementCardsLayer[2]/AchievementCardsHolder[0]/AchievementCards[0]/AchievementCard[1]/AchievementCardRowLayer[0]/AchievementCardRowHolder[0]", + "entityName" : "AchievementCardRowHolder", + "entityKind" : "SectionNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Achievements[2]/AchievementCardsLayer[2]/AchievementCardsHolder[0]/AchievementCards[0]/AchievementCard[1]/AchievementCardRowLayer[0]", + "childIndex" : 0, + "depth" : 10, + "layer" : 10, + "computedX" : 327.948, + "computedY" : 130.133, + "placementX" : 327.948, + "placementY" : 130.133, + "placementWidth" : 112.767, + "placementHeight" : 35.5, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 112.767, + "contentHeight" : 35.5, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Achievements[2]/AchievementCardsLayer[2]/AchievementCardsHolder[0]/AchievementCards[0]/AchievementCard[1]/AchievementCardRowLayer[0]/AchievementCardRowHolder[0]/AchievementCardRow[0]", + "entityName" : "AchievementCardRow", + "entityKind" : "RowNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Achievements[2]/AchievementCardsLayer[2]/AchievementCardsHolder[0]/AchievementCards[0]/AchievementCard[1]/AchievementCardRowLayer[0]/AchievementCardRowHolder[0]", + "childIndex" : 0, + "depth" : 11, + "layer" : 11, + "computedX" : 327.948, + "computedY" : 130.133, + "placementX" : 327.948, + "placementY" : 130.133, + "placementWidth" : 112.767, + "placementHeight" : 35.5, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 112.767, + "contentHeight" : 35.5, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Achievements[2]/AchievementCardsLayer[2]/AchievementCardsHolder[0]/AchievementCards[0]/AchievementCard[1]/AchievementCardRowLayer[0]/AchievementCardRowHolder[0]/AchievementCardRow[0]/AchievementDiscCell[0]", + "entityName" : "AchievementDiscCell", + "entityKind" : "SectionNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Achievements[2]/AchievementCardsLayer[2]/AchievementCardsHolder[0]/AchievementCards[0]/AchievementCard[1]/AchievementCardRowLayer[0]/AchievementCardRowHolder[0]/AchievementCardRow[0]", + "childIndex" : 0, + "depth" : 12, + "layer" : 12, + "computedX" : 327.948, + "computedY" : 132.634, + "placementX" : 327.948, + "placementY" : 132.634, + "placementWidth" : 30.498, + "placementHeight" : 30.498, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 30.498, + "contentHeight" : 30.498, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Achievements[2]/AchievementCardsLayer[2]/AchievementCardsHolder[0]/AchievementCards[0]/AchievementCard[1]/AchievementCardRowLayer[0]/AchievementCardRowHolder[0]/AchievementCardRow[0]/AchievementDiscCell[0]/AchievementDisc[0]", + "entityName" : "AchievementDisc", + "entityKind" : "ShapeContainerNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Achievements[2]/AchievementCardsLayer[2]/AchievementCardsHolder[0]/AchievementCards[0]/AchievementCard[1]/AchievementCardRowLayer[0]/AchievementCardRowHolder[0]/AchievementCardRow[0]/AchievementDiscCell[0]", + "childIndex" : 0, + "depth" : 13, + "layer" : 13, + "computedX" : 327.948, + "computedY" : 132.634, + "placementX" : 327.948, + "placementY" : 132.634, + "placementWidth" : 30.498, + "placementHeight" : 30.498, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 30.498, + "contentHeight" : 30.498, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Achievements[2]/AchievementCardsLayer[2]/AchievementCardsHolder[0]/AchievementCards[0]/AchievementCard[1]/AchievementCardRowLayer[0]/AchievementCardRowHolder[0]/AchievementCardRow[0]/AchievementDiscCell[0]/AchievementDisc[0]/SvgIcon[0]", + "entityName" : "SvgIcon", + "entityKind" : "LayerStackNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Achievements[2]/AchievementCardsLayer[2]/AchievementCardsHolder[0]/AchievementCards[0]/AchievementCard[1]/AchievementCardRowLayer[0]/AchievementCardRowHolder[0]/AchievementCardRow[0]/AchievementDiscCell[0]/AchievementDisc[0]", + "childIndex" : 0, + "depth" : 14, + "layer" : 14, + "computedX" : 335.29, + "computedY" : 139.977, + "placementX" : 335.29, + "placementY" : 139.977, + "placementWidth" : 15.814, + "placementHeight" : 15.814, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 15.814, + "contentHeight" : 15.814, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Achievements[2]/AchievementCardsLayer[2]/AchievementCardsHolder[0]/AchievementCards[0]/AchievementCard[1]/AchievementCardRowLayer[0]/AchievementCardRowHolder[0]/AchievementCardRow[0]/AchievementDiscCell[0]/AchievementDisc[0]/SvgIcon[0]/SvgLayer0[0]", + "entityName" : "SvgLayer0", + "entityKind" : "Path", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Achievements[2]/AchievementCardsLayer[2]/AchievementCardsHolder[0]/AchievementCards[0]/AchievementCard[1]/AchievementCardRowLayer[0]/AchievementCardRowHolder[0]/AchievementCardRow[0]/AchievementDiscCell[0]/AchievementDisc[0]/SvgIcon[0]", + "childIndex" : 0, + "depth" : 15, + "layer" : 15, + "computedX" : 335.29, + "computedY" : 139.977, + "placementX" : 335.29, + "placementY" : 139.977, + "placementWidth" : 15.814, + "placementHeight" : 15.814, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 15.814, + "contentHeight" : 15.814, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Achievements[2]/AchievementCardsLayer[2]/AchievementCardsHolder[0]/AchievementCards[0]/AchievementCard[1]/AchievementCardRowLayer[0]/AchievementCardRowHolder[0]/AchievementCardRow[0]/AchievementDiscCell[0]/AchievementDisc[0]/SvgIcon[0]/SvgLayer1[1]", + "entityName" : "SvgLayer1", + "entityKind" : "Path", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Achievements[2]/AchievementCardsLayer[2]/AchievementCardsHolder[0]/AchievementCards[0]/AchievementCard[1]/AchievementCardRowLayer[0]/AchievementCardRowHolder[0]/AchievementCardRow[0]/AchievementDiscCell[0]/AchievementDisc[0]/SvgIcon[0]", + "childIndex" : 1, + "depth" : 15, + "layer" : 15, + "computedX" : 335.29, + "computedY" : 139.977, + "placementX" : 335.29, + "placementY" : 139.977, + "placementWidth" : 15.814, + "placementHeight" : 15.814, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 15.814, + "contentHeight" : 15.814, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Achievements[2]/AchievementCardsLayer[2]/AchievementCardsHolder[0]/AchievementCards[0]/AchievementCard[1]/AchievementCardRowLayer[0]/AchievementCardRowHolder[0]/AchievementCardRow[0]/AchievementText[1]", + "entityName" : "AchievementText", + "entityKind" : "ParagraphNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Achievements[2]/AchievementCardsLayer[2]/AchievementCardsHolder[0]/AchievementCards[0]/AchievementCard[1]/AchievementCardRowLayer[0]/AchievementCardRowHolder[0]/AchievementCardRow[0]", + "childIndex" : 1, + "depth" : 12, + "layer" : 12, + "computedX" : 365.788, + "computedY" : 130.133, + "placementX" : 365.788, + "placementY" : 130.133, + "placementWidth" : 71.018, + "placementHeight" : 35.5, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 71.018, + "contentHeight" : 35.5, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Achievements[2]/AchievementCardsLayer[2]/AchievementCardsHolder[0]/AchievementCards[0]/AchievementCard[2]", + "entityName" : "AchievementCard", + "entityKind" : "SectionNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Achievements[2]/AchievementCardsLayer[2]/AchievementCardsHolder[0]/AchievementCards[0]", + "childIndex" : 2, + "depth" : 8, + "layer" : 8, + "computedX" : 440.715, + "computedY" : 135.136, + "placementX" : 440.715, + "placementY" : 135.136, + "placementWidth" : 112.767, + "placementHeight" : 30.498, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 112.767, + "contentHeight" : 30.498, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Achievements[2]/AchievementCardsLayer[2]/AchievementCardsHolder[0]/AchievementCards[0]/AchievementCard[2]/AchievementCardRowLayer[0]", + "entityName" : "AchievementCardRowLayer", + "entityKind" : "LayerStackNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Achievements[2]/AchievementCardsLayer[2]/AchievementCardsHolder[0]/AchievementCards[0]/AchievementCard[2]", + "childIndex" : 0, + "depth" : 9, + "layer" : 9, + "computedX" : 440.715, + "computedY" : 135.136, + "placementX" : 440.715, + "placementY" : 135.136, + "placementWidth" : 112.767, + "placementHeight" : 30.498, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 112.767, + "contentHeight" : 30.498, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Achievements[2]/AchievementCardsLayer[2]/AchievementCardsHolder[0]/AchievementCards[0]/AchievementCard[2]/AchievementCardRowLayer[0]/AchievementCardRowHolder[0]", + "entityName" : "AchievementCardRowHolder", + "entityKind" : "SectionNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Achievements[2]/AchievementCardsLayer[2]/AchievementCardsHolder[0]/AchievementCards[0]/AchievementCard[2]/AchievementCardRowLayer[0]", + "childIndex" : 0, + "depth" : 10, + "layer" : 10, + "computedX" : 440.715, + "computedY" : 135.136, + "placementX" : 440.715, + "placementY" : 135.136, + "placementWidth" : 112.767, + "placementHeight" : 30.498, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 112.767, + "contentHeight" : 30.498, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Achievements[2]/AchievementCardsLayer[2]/AchievementCardsHolder[0]/AchievementCards[0]/AchievementCard[2]/AchievementCardRowLayer[0]/AchievementCardRowHolder[0]/AchievementCardRow[0]", + "entityName" : "AchievementCardRow", + "entityKind" : "RowNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Achievements[2]/AchievementCardsLayer[2]/AchievementCardsHolder[0]/AchievementCards[0]/AchievementCard[2]/AchievementCardRowLayer[0]/AchievementCardRowHolder[0]", + "childIndex" : 0, + "depth" : 11, + "layer" : 11, + "computedX" : 440.715, + "computedY" : 135.136, + "placementX" : 440.715, + "placementY" : 135.136, + "placementWidth" : 112.767, + "placementHeight" : 30.498, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 112.767, + "contentHeight" : 30.498, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Achievements[2]/AchievementCardsLayer[2]/AchievementCardsHolder[0]/AchievementCards[0]/AchievementCard[2]/AchievementCardRowLayer[0]/AchievementCardRowHolder[0]/AchievementCardRow[0]/AchievementDiscCell[0]", + "entityName" : "AchievementDiscCell", + "entityKind" : "SectionNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Achievements[2]/AchievementCardsLayer[2]/AchievementCardsHolder[0]/AchievementCards[0]/AchievementCard[2]/AchievementCardRowLayer[0]/AchievementCardRowHolder[0]/AchievementCardRow[0]", + "childIndex" : 0, + "depth" : 12, + "layer" : 12, + "computedX" : 440.715, + "computedY" : 135.136, + "placementX" : 440.715, + "placementY" : 135.136, + "placementWidth" : 30.498, + "placementHeight" : 30.498, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 30.498, + "contentHeight" : 30.498, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Achievements[2]/AchievementCardsLayer[2]/AchievementCardsHolder[0]/AchievementCards[0]/AchievementCard[2]/AchievementCardRowLayer[0]/AchievementCardRowHolder[0]/AchievementCardRow[0]/AchievementDiscCell[0]/AchievementDisc[0]", + "entityName" : "AchievementDisc", + "entityKind" : "ShapeContainerNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Achievements[2]/AchievementCardsLayer[2]/AchievementCardsHolder[0]/AchievementCards[0]/AchievementCard[2]/AchievementCardRowLayer[0]/AchievementCardRowHolder[0]/AchievementCardRow[0]/AchievementDiscCell[0]", + "childIndex" : 0, + "depth" : 13, + "layer" : 13, + "computedX" : 440.715, + "computedY" : 135.136, + "placementX" : 440.715, + "placementY" : 135.136, + "placementWidth" : 30.498, + "placementHeight" : 30.498, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 30.498, + "contentHeight" : 30.498, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Achievements[2]/AchievementCardsLayer[2]/AchievementCardsHolder[0]/AchievementCards[0]/AchievementCard[2]/AchievementCardRowLayer[0]/AchievementCardRowHolder[0]/AchievementCardRow[0]/AchievementDiscCell[0]/AchievementDisc[0]/SvgIcon[0]", + "entityName" : "SvgIcon", + "entityKind" : "LayerStackNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Achievements[2]/AchievementCardsLayer[2]/AchievementCardsHolder[0]/AchievementCards[0]/AchievementCard[2]/AchievementCardRowLayer[0]/AchievementCardRowHolder[0]/AchievementCardRow[0]/AchievementDiscCell[0]/AchievementDisc[0]", + "childIndex" : 0, + "depth" : 14, + "layer" : 14, + "computedX" : 448.057, + "computedY" : 142.478, + "placementX" : 448.057, + "placementY" : 142.478, + "placementWidth" : 15.814, + "placementHeight" : 15.814, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 15.814, + "contentHeight" : 15.814, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Achievements[2]/AchievementCardsLayer[2]/AchievementCardsHolder[0]/AchievementCards[0]/AchievementCard[2]/AchievementCardRowLayer[0]/AchievementCardRowHolder[0]/AchievementCardRow[0]/AchievementDiscCell[0]/AchievementDisc[0]/SvgIcon[0]/SvgLayer0[0]", + "entityName" : "SvgLayer0", + "entityKind" : "Path", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Achievements[2]/AchievementCardsLayer[2]/AchievementCardsHolder[0]/AchievementCards[0]/AchievementCard[2]/AchievementCardRowLayer[0]/AchievementCardRowHolder[0]/AchievementCardRow[0]/AchievementDiscCell[0]/AchievementDisc[0]/SvgIcon[0]", + "childIndex" : 0, + "depth" : 15, + "layer" : 15, + "computedX" : 448.057, + "computedY" : 142.478, + "placementX" : 448.057, + "placementY" : 142.478, + "placementWidth" : 15.814, + "placementHeight" : 15.814, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 15.814, + "contentHeight" : 15.814, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Achievements[2]/AchievementCardsLayer[2]/AchievementCardsHolder[0]/AchievementCards[0]/AchievementCard[2]/AchievementCardRowLayer[0]/AchievementCardRowHolder[0]/AchievementCardRow[0]/AchievementDiscCell[0]/AchievementDisc[0]/SvgIcon[0]/SvgLayer1[1]", + "entityName" : "SvgLayer1", + "entityKind" : "Path", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Achievements[2]/AchievementCardsLayer[2]/AchievementCardsHolder[0]/AchievementCards[0]/AchievementCard[2]/AchievementCardRowLayer[0]/AchievementCardRowHolder[0]/AchievementCardRow[0]/AchievementDiscCell[0]/AchievementDisc[0]/SvgIcon[0]", + "childIndex" : 1, + "depth" : 15, + "layer" : 15, + "computedX" : 448.057, + "computedY" : 142.478, + "placementX" : 448.057, + "placementY" : 142.478, + "placementWidth" : 15.814, + "placementHeight" : 15.814, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 15.814, + "contentHeight" : 15.814, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Achievements[2]/AchievementCardsLayer[2]/AchievementCardsHolder[0]/AchievementCards[0]/AchievementCard[2]/AchievementCardRowLayer[0]/AchievementCardRowHolder[0]/AchievementCardRow[0]/AchievementText[1]", + "entityName" : "AchievementText", + "entityKind" : "ParagraphNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Achievements[2]/AchievementCardsLayer[2]/AchievementCardsHolder[0]/AchievementCards[0]/AchievementCard[2]/AchievementCardRowLayer[0]/AchievementCardRowHolder[0]/AchievementCardRow[0]", + "childIndex" : 1, + "depth" : 12, + "layer" : 12, + "computedX" : 478.555, + "computedY" : 138.847, + "placementX" : 478.555, + "placementY" : 138.847, + "placementWidth" : 72.092, + "placementHeight" : 23.075, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 72.092, + "contentHeight" : 23.075, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Certifications[3]", + "entityName" : "Certifications", + "entityKind" : "SectionNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]", + "childIndex" : 3, + "depth" : 4, + "layer" : 4, + "computedX" : 215.18, + "computedY" : 28.659, + "placementX" : 215.18, + "placementY" : 28.659, + "placementWidth" : 338.302, + "placementHeight" : 73.236, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 338.302, + "contentHeight" : 73.236, + "margin" : { + "top" : -7.342, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Certifications[3]/MainHeadingCERTIFICATIONS[0]", + "entityName" : "MainHeadingCERTIFICATIONS", + "entityKind" : "ParagraphNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Certifications[3]", + "childIndex" : 0, + "depth" : 5, + "layer" : 5, + "computedX" : 215.18, + "computedY" : 88.34, + "placementX" : 215.18, + "placementY" : 88.34, + "placementWidth" : 84.547, + "placementHeight" : 13.555, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 84.547, + "contentHeight" : 13.555, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Certifications[3]/MainRuleCERTIFICATIONS[1]", + "entityName" : "MainRuleCERTIFICATIONS", + "entityKind" : "LineNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Certifications[3]", + "childIndex" : 1, + "depth" : 5, + "layer" : 5, + "computedX" : 215.18, + "computedY" : 83.087, + "placementX" : 215.18, + "placementY" : 83.087, + "placementWidth" : 338.302, + "placementHeight" : 1.13, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 338.302, + "contentHeight" : 1.13, + "margin" : { + "top" : 4.123, + "right" : 0.0, + "bottom" : 16.04, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Certifications[3]/CertificationColumnsLayer[2]", + "entityName" : "CertificationColumnsLayer", + "entityKind" : "LayerStackNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Certifications[3]", + "childIndex" : 2, + "depth" : 5, + "layer" : 5, + "computedX" : 215.18, + "computedY" : 28.659, + "placementX" : 215.18, + "placementY" : 28.659, + "placementWidth" : 338.302, + "placementHeight" : 38.389, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 338.302, + "contentHeight" : 38.389, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Certifications[3]/CertificationColumnsLayer[2]/CertificationColumnsHolder[0]", + "entityName" : "CertificationColumnsHolder", + "entityKind" : "SectionNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Certifications[3]/CertificationColumnsLayer[2]", + "childIndex" : 0, + "depth" : 6, + "layer" : 6, + "computedX" : 215.18, + "computedY" : 28.659, + "placementX" : 215.18, + "placementY" : 28.659, + "placementWidth" : 338.302, + "placementHeight" : 38.389, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 338.302, + "contentHeight" : 38.389, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Certifications[3]/CertificationColumnsLayer[2]/CertificationColumnsHolder[0]/CertificationColumns[0]", + "entityName" : "CertificationColumns", + "entityKind" : "RowNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Certifications[3]/CertificationColumnsLayer[2]/CertificationColumnsHolder[0]", + "childIndex" : 0, + "depth" : 7, + "layer" : 7, + "computedX" : 215.18, + "computedY" : 28.659, + "placementX" : 215.18, + "placementY" : 28.659, + "placementWidth" : 338.302, + "placementHeight" : 38.389, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 338.302, + "contentHeight" : 38.389, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Certifications[3]/CertificationColumnsLayer[2]/CertificationColumnsHolder[0]/CertificationColumns[0]/CertificationColumn[0]", + "entityName" : "CertificationColumn", + "entityKind" : "SectionNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Certifications[3]/CertificationColumnsLayer[2]/CertificationColumnsHolder[0]/CertificationColumns[0]", + "childIndex" : 0, + "depth" : 8, + "layer" : 8, + "computedX" : 215.18, + "computedY" : 28.659, + "placementX" : 215.18, + "placementY" : 28.659, + "placementWidth" : 111.363, + "placementHeight" : 38.389, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 111.363, + "contentHeight" : 38.389, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Certifications[3]/CertificationColumnsLayer[2]/CertificationColumnsHolder[0]/CertificationColumns[0]/CertificationColumn[0]/CertificationTitle[0]", + "entityName" : "CertificationTitle", + "entityKind" : "ParagraphNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Certifications[3]/CertificationColumnsLayer[2]/CertificationColumnsHolder[0]/CertificationColumns[0]/CertificationColumn[0]", + "childIndex" : 0, + "depth" : 9, + "layer" : 9, + "computedX" : 215.18, + "computedY" : 56.397, + "placementX" : 215.18, + "placementY" : 56.397, + "placementWidth" : 111.363, + "placementHeight" : 10.65, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 111.363, + "contentHeight" : 10.65, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Certifications[3]/CertificationColumnsLayer[2]/CertificationColumnsHolder[0]/CertificationColumns[0]/CertificationColumn[0]/CertificationIssuer[1]", + "entityName" : "CertificationIssuer", + "entityKind" : "ParagraphNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Certifications[3]/CertificationColumnsLayer[2]/CertificationColumnsHolder[0]/CertificationColumns[0]/CertificationColumn[0]", + "childIndex" : 1, + "depth" : 9, + "layer" : 9, + "computedX" : 227.605, + "computedY" : 42.528, + "placementX" : 227.605, + "placementY" : 42.528, + "placementWidth" : 25.844, + "placementHeight" : 10.65, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 25.844, + "contentHeight" : 10.65, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 12.425 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Certifications[3]/CertificationColumnsLayer[2]/CertificationColumnsHolder[0]/CertificationColumns[0]/CertificationColumn[0]/CertificationYear[2]", + "entityName" : "CertificationYear", + "entityKind" : "ParagraphNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Certifications[3]/CertificationColumnsLayer[2]/CertificationColumnsHolder[0]/CertificationColumns[0]/CertificationColumn[0]", + "childIndex" : 2, + "depth" : 9, + "layer" : 9, + "computedX" : 227.605, + "computedY" : 28.659, + "placementX" : 227.605, + "placementY" : 28.659, + "placementWidth" : 19.543, + "placementHeight" : 10.65, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 19.543, + "contentHeight" : 10.65, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 12.425 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Certifications[3]/CertificationColumnsLayer[2]/CertificationColumnsHolder[0]/CertificationColumns[0]/CertificationColumn[1]", + "entityName" : "CertificationColumn", + "entityKind" : "SectionNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Certifications[3]/CertificationColumnsLayer[2]/CertificationColumnsHolder[0]/CertificationColumns[0]", + "childIndex" : 1, + "depth" : 8, + "layer" : 8, + "computedX" : 384.331, + "computedY" : 28.659, + "placementX" : 384.331, + "placementY" : 28.659, + "placementWidth" : 167.58, + "placementHeight" : 38.389, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 167.58, + "contentHeight" : 38.389, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 13.555 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Certifications[3]/CertificationColumnsLayer[2]/CertificationColumnsHolder[0]/CertificationColumns[0]/CertificationColumn[1]/CertificationTitle[0]", + "entityName" : "CertificationTitle", + "entityKind" : "ParagraphNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Certifications[3]/CertificationColumnsLayer[2]/CertificationColumnsHolder[0]/CertificationColumns[0]/CertificationColumn[1]", + "childIndex" : 0, + "depth" : 9, + "layer" : 9, + "computedX" : 397.886, + "computedY" : 56.397, + "placementX" : 397.886, + "placementY" : 56.397, + "placementWidth" : 154.025, + "placementHeight" : 10.65, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 154.025, + "contentHeight" : 10.65, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Certifications[3]/CertificationColumnsLayer[2]/CertificationColumnsHolder[0]/CertificationColumns[0]/CertificationColumn[1]/CertificationIssuer[1]", + "entityName" : "CertificationIssuer", + "entityKind" : "ParagraphNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Certifications[3]/CertificationColumnsLayer[2]/CertificationColumnsHolder[0]/CertificationColumns[0]/CertificationColumn[1]", + "childIndex" : 1, + "depth" : 9, + "layer" : 9, + "computedX" : 410.311, + "computedY" : 42.528, + "placementX" : 410.311, + "placementY" : 42.528, + "placementWidth" : 69.039, + "placementHeight" : 10.65, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 69.039, + "contentHeight" : 10.65, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 12.425 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + }, { + "path" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Certifications[3]/CertificationColumnsLayer[2]/CertificationColumnsHolder[0]/CertificationColumns[0]/CertificationColumn[1]/CertificationYear[2]", + "entityName" : "CertificationYear", + "entityKind" : "ParagraphNode", + "parentPath" : "MidnightNavyCv[0]/PageGrid[0]/Main[1]/Certifications[3]/CertificationColumnsLayer[2]/CertificationColumnsHolder[0]/CertificationColumns[0]/CertificationColumn[1]", + "childIndex" : 2, + "depth" : 9, + "layer" : 9, + "computedX" : 410.311, + "computedY" : 28.659, + "placementX" : 410.311, + "placementY" : 28.659, + "placementWidth" : 17.635, + "placementHeight" : 10.65, + "startPage" : 0, + "endPage" : 0, + "contentWidth" : 17.635, + "contentHeight" : 10.65, + "margin" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 12.425 + }, + "padding" : { + "top" : 0.0, + "right" : 0.0, + "bottom" : 0.0, + "left" : 0.0 + } + } ] +} diff --git a/qa/src/test/resources/visual-baselines/cv-v2-layered/midnight_navy-page-0.png b/qa/src/test/resources/visual-baselines/cv-v2-layered/midnight_navy-page-0.png new file mode 100644 index 000000000..d3a751751 Binary files /dev/null and b/qa/src/test/resources/visual-baselines/cv-v2-layered/midnight_navy-page-0.png differ diff --git a/templates/src/main/java/com/demcha/compose/document/templates/cv/presets/MidnightNavy.java b/templates/src/main/java/com/demcha/compose/document/templates/cv/presets/MidnightNavy.java new file mode 100644 index 000000000..14b2dd59e --- /dev/null +++ b/templates/src/main/java/com/demcha/compose/document/templates/cv/presets/MidnightNavy.java @@ -0,0 +1,224 @@ +package com.demcha.compose.document.templates.cv.presets; + +import com.demcha.compose.document.api.DocumentSession; +import com.demcha.compose.document.api.PageBackgroundFill; +import com.demcha.compose.document.style.DocumentInsets; +import com.demcha.compose.document.templates.api.DocumentTemplate; +import com.demcha.compose.document.templates.cv.components.SectionLookup; +import com.demcha.compose.document.templates.cv.data.CvDocument; +import com.demcha.compose.document.templates.cv.data.CvSection; +import com.demcha.compose.document.templates.cv.data.EntriesSection; +import com.demcha.compose.document.templates.cv.data.ParagraphSection; +import com.demcha.compose.document.templates.cv.data.SkillsSection; + +import java.util.List; +import java.util.Objects; + +import static com.demcha.compose.document.templates.cv.presets.MidnightNavyStyles.ASIDE_RATIO; +import static com.demcha.compose.document.templates.cv.presets.MidnightNavyStyles.MAIN_RATIO; +import static com.demcha.compose.document.templates.cv.presets.MidnightNavyStyles.NAVY; +import static com.demcha.compose.document.templates.cv.presets.MidnightNavyStyles.PAGE; + +/** + * Midnight Navy — a one-page CV on a full-height navy plate: an outlined + * monogram over the name and a tracked role, then contact, education, metered + * skills and dotted languages down the plate, beside a paper column carrying + * the summary, the roles held on a rail, three achievement discs and the + * certifications in divided columns. + * + *The navy reaches the top, left and bottom paper edges, and a section's + * fill stops at its own box — so the plate is a page background sized by the + * same ratio the body row splits on, and the two cannot drift apart.
+ * + *A row nested directly in a row cell is refused, and both columns are row + * cells. Each of the sheet's horizontal pairs — a skill and its meter, a + * language and its dots, a title and its dates, a disc and its line, the + * certification columns — is therefore a row wrapped in a single layer of a + * stack.
+ * + *The body is a single row and a row is atomic, so this sheet does not + * paginate: a CV with more content than the design holds is refused with an + * {@code AtomicNodeTooLargeException} naming the node that could not fit, + * rather than being cut or silently clipped. That is the honest failure for a + * design whose two columns have to reach the same foot — splitting the row + * would leave the navy plate on one page and half the aside on the next. + * {@link TimelineMinimal} is the preset in this package built to flow.
+ * + *The columns are fixed, so the preset assigns each section a berth by title + * rather than reading {@link + * com.demcha.compose.document.templates.cv.data.Slot}. It has seven:
+ * + *A section whose title matches no berth is not drawn, and a berth with no + * section takes its heading and its rule with it. The contact block's heading + * is the preset's own, because a document has no section to carry it — the + * channels come from {@code CvIdentity}.
+ * + *An achievement takes the mark its entry names in {@code CvEntry.icon()}, + * from this preset's own vocabulary, and an unknown token is reported as a data + * error naming the set.
+ * + *The email, the phone and each link are reachable from the PDF, with the + * {@code mailto:} and {@code tel:} targets built from the values. A link is + * drawn as its own label with the address behind it, so the plate's width does + * not depend on how long an address happens to be, and it takes the mark of the + * network it points at or the globe. A degree, a job title and a certification + * become links when their entry carries {@code CvEntry.link()}.
+ * + *The sheet is set in Barlow throughout. The templates artifact carries no + * fonts — register the family on the session, or the engine substitutes and the + * measured geometry no longer matches the type sitting in it. The role line's + * tracking is real spaces, so its width depends on the face's space advance + * specifically.
+ * + *Usage:
+ *{@code
+ * DocumentTemplate template = MidnightNavy.create();
+ * template.compose(session, cv);
+ * }
+ *
+ * @since 2.2.3
+ */
+public final class MidnightNavy {
+
+ /** Stable identifier of this preset. */
+ public static final String ID = "midnight-navy";
+
+ /** Human-readable name of this preset. */
+ public static final String DISPLAY_NAME = "Midnight Navy";
+
+ private static final ListThe monogram is an outlined circle with no fill, so the plate shows + * through it, and the initials are anchored on its centre — they are content + * of the circle rather than a paragraph laid over it.
+ * + *A skill meter is three layers on one stack: the dim full-width track, the + * bright filled run, and the knob positioned along the track in proportion to + * the level. All three hang off {@link LayerAlign#CENTER_LEFT} so they share + * the track's axis; seating a layer at the stack's top instead draws one meter + * as three unaligned pieces.
+ */ +final class MidnightNavyAside { + + /** The heading the design gives the contact block, which no section carries. */ + static final String CONTACT_HEADING = "CONTACT"; + + /** + * A trunk prefix in a printed number is for a domestic dialler and is not + * part of the international one, so it is dropped from the dialled form. + */ + private static final Pattern TRUNK_PREFIX = Pattern.compile("\\(0+\\)"); + + private MidnightNavyAside() { + } + + /** + * Draws the column. + * + * @param column the aside cell + * @param identity whose CV this is + * @param education the degrees, or {@code null} + * @param skills the rated skills, or {@code null} + * @param languages the rated languages, or {@code null} + */ + static void compose(SectionBuilder column, CvIdentity identity, EntriesSection education, + SkillsSection skills, SkillsSection languages) { + // Only the top inset belongs to the plate: the monogram is centred on + // the plate's full width, not on the text column, so the horizontal + // inset is owned by the blocks under it instead. + column.spacing(0).padding(new DocumentInsets(ASIDE_PAD_TOP, 0, 0, 0)); + renderMonogram(column, identity); + renderNamePlate(column, identity); + renderContact(column, identity); + if (SectionLookup.hasContent(education)) { + renderEducation(column, education); + } + if (SectionLookup.hasContent(skills)) { + renderSkills(column, skills); + } + if (SectionLookup.hasContent(languages)) { + renderLanguages(column, languages); + } + } + + /** The outlined circle, carrying one initial per line of the name. */ + private static void renderMonogram(SectionBuilder column, CvIdentity identity) { + ListThe three channels are always drawn: a {@code Contact} rejects a blank + * field, so the triple is non-blank by construction. A link is drawn as its + * own label with the address behind it, so the column's width does not + * depend on how long an address happens to be.
+ */ + private static void renderContact(SectionBuilder column, CvIdentity identity) { + Contact contact = identity.contact(); + ListThe rating is a fraction like every other level in the model, and the + * design shows it in fifths, so it is rounded to the nearest dot.
+ */ + private static void renderLanguages(SectionBuilder column, SkillsSection languages) { + ListThey ship inside the templates artifact under + * {@code templates/cv/midnight-navy/icons/} as SVG, so they scale with the box + * they are drawn into rather than being resampled. Parsed icons are cached per + * token, so a sheet that repeats a mark reads each file once per JVM.
+ * + *{@link #ENTRY_TOKENS} is the vocabulary a document names through + * {@code CvEntry.icon()}. It is scoped to this preset — another preset packages + * its own set — and each mark carries the width it is drawn at, because an + * icon's box is not its glyph and the sizes are per-kind.
+ */ +final class MidnightNavyIcons { + + static final String PHONE = "phone"; + static final String EMAIL = "email"; + static final String LOCATION = "location"; + static final String LINKEDIN = "linkedin"; + static final String WEBSITE = "website"; + + private static final String ICON_ROOT = "/templates/cv/midnight-navy/icons/"; + + /** The width each mark is drawn at, as the design sizes it. */ + private static final MapA timeline builder has no slot for a date on the far side of its rail and + * discards a negative gutter, so its marker cannot centre on the rail. Here the + * rail is instead the left accent of the entry section, so its height derives + * from the entry it belongs to, and the gap between entries is bottom padding + * inside the border — which is what makes consecutive rails meet + * rather than leaving a break between roles.
+ * + *An accent is drawn centred on the edge it belongs to, so the section's + * left edge already is the rail's axis: a marker reaches it by walking + * back across the gutter and half its own width, and nothing else. Correcting + * by half the rail's thickness on top of that lands every marker a rail width + * to the right of the line it is meant to sit on.
+ */ +final class MidnightNavyMain { + + private MidnightNavyMain() { + } + + /** + * Draws the column. + * + * @param column the main cell + * @param summary the opening prose, or {@code null} + * @param experience the roles held, or {@code null} + * @param achievements the discs, or {@code null} + * @param certifications the closing columns, or {@code null} + */ + static void compose(SectionBuilder column, ParagraphSection summary, EntriesSection experience, + EntriesSection achievements, EntriesSection certifications) { + column.spacing(MAIN_SECTION_GAP) + .padding(new DocumentInsets(MAIN_PAD_TOP, MAIN_PAD_RIGHT, 0, MAIN_PAD_LEFT)); + if (SectionLookup.hasContent(summary)) { + renderSummary(column, summary); + } + if (SectionLookup.hasContent(experience)) { + renderExperience(column, experience); + } + if (SectionLookup.hasContent(achievements)) { + renderAchievements(column, achievements); + } + if (SectionLookup.hasContent(certifications)) { + renderCertifications(column, certifications); + } + } + + private static void renderSummary(SectionBuilder column, ParagraphSection summary) { + column.addSection("Summary", block -> { + block.spacing(0); + MidnightNavyWidgets.mainHeading(block, summary.title(), MAIN_RULE_THICKNESS, px(22.4)); + block.addParagraph(p -> p + .name("SummaryText") + .text(summary.body()) + .textStyle(style(BODY_SIZE, BODY, DocumentTextDecoration.DEFAULT)) + .lineSpacing(leading(22.7, BODY_SIZE))); + }); + } + + private static void renderExperience(SectionBuilder column, EntriesSection experience) { + column.addSection("Experience", block -> { + block.spacing(0); + MidnightNavyWidgets.mainHeading(block, experience.title(), MAIN_RULE_THICKNESS, px(23)); + ListA card shows the entry's title beside its mark: the design gives a card + * one line of text and no heading over it, so the title is that line.
+ */ + private static void renderAchievements(SectionBuilder column, EntriesSection achievements) { + column.addSection("Achievements", block -> { + block.spacing(0).keepTogether(); + MidnightNavyWidgets.mainHeading(block, achievements.title(), + ACHIEVEMENT_RULE_THICKNESS, px(32.4)); + MidnightNavyWidgets.layeredRow(block, "AchievementCards", row -> { + row.spacing(0).evenWeights().verticalAlign(RowVerticalAlign.TOP); + for (CvEntry card : achievements.entries()) { + row.addSection("AchievementCard", cell -> renderAchievementCard(cell, card)); + } + }); + }); + } + + private static void renderAchievementCard(SectionBuilder cell, CvEntry card) { + MidnightNavyWidgets.layeredRow(cell, "AchievementCardRow", row -> { + row.spacing(ACHIEVEMENT_DISC_GAP) + .verticalAlign(RowVerticalAlign.CENTER) + .columns(DocumentRowColumn.fixed(ACHIEVEMENT_DISC_DIAMETER), + DocumentRowColumn.weight(1)); + row.addSection("AchievementDiscCell", disc -> disc + .addContainer(container -> container + .name("AchievementDisc") + .circle(ACHIEVEMENT_DISC_DIAMETER) + .fillColor(NAVY) + .center(MidnightNavyIcons.icon(card.icon()) + .node(ACHIEVEMENT_ICON_SIZE)))); + row.addParagraph(p -> p + .name("AchievementText") + .text(card.title()) + .textStyle(style(BODY_SIZE, BODY, DocumentTextDecoration.DEFAULT)) + .lineSpacing(leading(22, BODY_SIZE))); + }); + } + + /** + * The certifications — even columns divided by a hairline. + * + *The divider is an accent on the column, so its height derives from the + * entry beside it rather than from a line whose length would have to be + * computed.
+ */ + private static void renderCertifications(SectionBuilder column, EntriesSection certifications) { + column.addSection("Certifications", block -> { + block.spacing(0).margin(new DocumentInsets(px(-13), 0, 0, 0)); + MidnightNavyWidgets.mainHeading(block, certifications.title(), + MAIN_RULE_THICKNESS, px(28.4)); + ListThe design was drawn at 1054 px across an A4 page, so {@link #PX} converts + * every length below from that raster to points: re-measuring the design at a + * different resolution changes this one number rather than each constant that + * came off it.
+ * + *Sizes are pinned by cap height rather than chosen, so a heading is as tall + * as the design's heading whatever the face's own metrics say, and + * {@link #leading} turns a measured line pitch into the additive value the + * engine's {@code lineSpacing} actually is.
+ */ +final class MidnightNavyStyles { + + private MidnightNavyStyles() { + } + + static final DocumentPageSize PAGE = DocumentPageSize.A4; + static final double PAGE_WIDTH = PAGE.width(); + + /** The design's raster is 1054 px wide; every length below came off it. */ + static final double PX = PAGE_WIDTH / 1054.0; + + /** Measured: the navy plate runs from the left paper edge to x=327 inclusive. */ + static final double ASIDE_RATIO = 328.0 / 1054.0; + static final double MAIN_RATIO = 1.0 - ASIDE_RATIO; + + static final double ASIDE_WIDTH = PAGE_WIDTH * ASIDE_RATIO; + static final double MAIN_CELL_WIDTH = PAGE_WIDTH - ASIDE_WIDTH; + + static final double ASIDE_PAD_LEFT = px(52); + static final double ASIDE_PAD_RIGHT = px(43); + static final double ASIDE_PAD_TOP = px(54); + static final double ASIDE_INNER_WIDTH = ASIDE_WIDTH - ASIDE_PAD_LEFT - ASIDE_PAD_RIGHT; + + /** + * The inset every aside content block carries; the identity block does not. + * + *The monogram is centred on the plate's full width rather than on the + * text column, so the horizontal inset belongs to the four blocks under it + * instead of to the column.
+ */ + static final DocumentInsets ASIDE_CONTENT_PAD = + new DocumentInsets(0, ASIDE_PAD_RIGHT, 0, ASIDE_PAD_LEFT); + + static final double MAIN_PAD_LEFT = px(53); + static final double MAIN_PAD_RIGHT = px(74); + static final double MAIN_PAD_TOP = px(71.3); + static final double MAIN_INNER_WIDTH = MAIN_CELL_WIDTH - MAIN_PAD_LEFT - MAIN_PAD_RIGHT; + + static final DocumentColor NAVY = DocumentColor.rgb(19, 34, 50); + static final DocumentColor INK = DocumentColor.rgb(16, 27, 44); + static final DocumentColor BODY = DocumentColor.rgb(51, 51, 51); + static final DocumentColor MUTED = DocumentColor.rgb(63, 74, 90); + static final DocumentColor RULE = DocumentColor.rgb(180, 186, 194); + static final DocumentColor HAIRLINE = DocumentColor.rgb(226, 227, 228); + static final DocumentColor ASIDE_RULE = DocumentColor.rgb(107, 116, 128); + static final DocumentColor ASIDE_DIVIDER = DocumentColor.rgb(195, 200, 206); + static final DocumentColor ASIDE_DIM = DocumentColor.rgb(213, 219, 225); + static final DocumentColor TRACK_DIM = DocumentColor.rgb(159, 166, 174); + static final DocumentColor WHITE = DocumentColor.WHITE; + + static final FontName FACE = FontName.BARLOW; + + /** The face's cap band as a fraction of its type size, measured off a render. */ + private static final double FACE_CAP_RATIO = 0.700; + + /** + * The gap between two language dots is spaces at the row's own type size, + * so the count is derived from the measured pitch and the face's space + * advance (0.200 em, read off the TTF) rather than tuned by eye. Setting the + * space at a larger size instead would buy the same gap and a line box three + * times too tall. + */ + static final double FACE_SPACE_ADVANCE = 0.200; + + static final double NAME_SIZE = sizeForCap(23); + static final double ROLE_SIZE = sizeForCap(10); + static final double MONOGRAM_SIZE = sizeForCap(31); + static final double ASIDE_HEAD_SIZE = sizeForCap(13); + static final double ASIDE_TEXT_SIZE = sizeForCap(10); + static final double ASIDE_SMALL_SIZE = sizeForCap(9); + static final double EDUCATION_TITLE_SIZE = sizeForCap(11); + static final double EDUCATION_YEARS_SIZE = sizeForCap(11); + static final double MAIN_HEAD_SIZE = sizeForCap(14); + static final double BODY_SIZE = sizeForCap(11); + static final double JOB_TITLE_SIZE = sizeForCap(12); + + static final double MONOGRAM_DIAMETER = px(135); + static final double MONOGRAM_STROKE = px(2.8); + + /** Measured: the first initial's cap top at 82 px, the second's at 129. */ + static final double MONOGRAM_PITCH = px(47); + static final double NAME_DIVIDER_WIDTH = px(201); + + static final double ASIDE_RULE_THICKNESS = px(2); + + /** The contact rule is measurably shorter than the other three. */ + static final double CONTACT_RULE_WIDTH = px(100); + + static final double CONTACT_ICON_SIZE = 8.5; + static final double CONTACT_ROW_GAP = px(13.5); + + static final double SKILL_TRACK_WIDTH = px(107); + static final double SKILL_TRACK_THICKNESS = px(2); + static final double SKILL_KNOB_WIDTH = px(9); + static final double SKILL_KNOB_HEIGHT = px(6); + static final double SKILL_ROW_GAP = px(11.3); + + static final int LANGUAGE_DOTS = 5; + static final double LANGUAGE_DOT_DIAMETER = px(10); + static final double LANGUAGE_DOT_PITCH = px(21.5); + static final double LANGUAGE_GROUP_WIDTH = + LANGUAGE_DOT_DIAMETER + (LANGUAGE_DOTS - 1) * LANGUAGE_DOT_PITCH; + static final double LANGUAGE_ROW_GAP = px(19.9); + static final double LANGUAGE_DOT_STROKE = px(1.4); + + static final double MAIN_RULE_THICKNESS = px(2); + static final double ACHIEVEMENT_RULE_THICKNESS = px(1); + static final double MAIN_SECTION_GAP = px(63); + + static final double RAIL_WIDTH = px(2.5); + static final double RAIL_GUTTER = px(27); + static final double MARKER_DIAMETER = px(9); + static final double ENTRY_GAP = px(46); + + static final double ACHIEVEMENT_DISC_DIAMETER = px(54); + static final double ACHIEVEMENT_ICON_SIZE = px(28); + static final double ACHIEVEMENT_DISC_GAP = px(13); + + static final double CERT_DIVIDER_WIDTH = px(1.2); + static final double CERT_DIVIDER_GAP = px(24); + static final double CERT_MARKER_DIAMETER = px(6); + + /** The type size whose cap band is {@code capPixels} of the design tall. */ + static double sizeForCap(double capPixels) { + return px(capPixels) / FACE_CAP_RATIO; + } + + /** + * A measured line pitch, as the additive value {@code lineSpacing} actually + * is: {@code lineSpacing} adds points between lines and the line + * box is 1.2 times the type size, so a measured leading converts as + * {@code leading - 1.2 * size} — never as a ratio. It is deliberately not + * clamped: this design sets three blocks tighter than their own line box, + * and clamping would silently open them back up. + */ + static double leading(double measuredPixels, double size) { + return px(measuredPixels) - 1.2 * size; + } + + static double px(double designPixels) { + return designPixels * PX; + } + + static DocumentTextStyle style(double size, DocumentColor color, + DocumentTextDecoration decoration) { + return DocumentTextStyle.builder() + .fontName(FACE) + .size(size) + .color(color) + .decoration(decoration) + .build(); + } + + static DocumentTextStyle asideText() { + return style(ASIDE_TEXT_SIZE, WHITE, DocumentTextDecoration.DEFAULT); + } +} diff --git a/templates/src/main/java/com/demcha/compose/document/templates/cv/presets/MidnightNavyWidgets.java b/templates/src/main/java/com/demcha/compose/document/templates/cv/presets/MidnightNavyWidgets.java new file mode 100644 index 000000000..438f8034c --- /dev/null +++ b/templates/src/main/java/com/demcha/compose/document/templates/cv/presets/MidnightNavyWidgets.java @@ -0,0 +1,159 @@ +package com.demcha.compose.document.templates.cv.presets; + +import com.demcha.compose.document.dsl.RowBuilder; +import com.demcha.compose.document.dsl.SectionBuilder; +import com.demcha.compose.document.node.DocumentNode; +import com.demcha.compose.document.node.LayerAlign; +import com.demcha.compose.document.style.DocumentInsets; +import com.demcha.compose.document.style.DocumentTextDecoration; + +import java.util.ArrayList; +import java.util.List; +import java.util.function.Consumer; + +import static com.demcha.compose.document.templates.cv.presets.MidnightNavyStyles.ASIDE_DIVIDER; +import static com.demcha.compose.document.templates.cv.presets.MidnightNavyStyles.ASIDE_HEAD_SIZE; +import static com.demcha.compose.document.templates.cv.presets.MidnightNavyStyles.ASIDE_RULE; +import static com.demcha.compose.document.templates.cv.presets.MidnightNavyStyles.ASIDE_RULE_THICKNESS; +import static com.demcha.compose.document.templates.cv.presets.MidnightNavyStyles.INK; +import static com.demcha.compose.document.templates.cv.presets.MidnightNavyStyles.MAIN_HEAD_SIZE; +import static com.demcha.compose.document.templates.cv.presets.MidnightNavyStyles.MAIN_INNER_WIDTH; +import static com.demcha.compose.document.templates.cv.presets.MidnightNavyStyles.RULE; +import static com.demcha.compose.document.templates.cv.presets.MidnightNavyStyles.WHITE; +import static com.demcha.compose.document.templates.cv.presets.MidnightNavyStyles.px; +import static com.demcha.compose.document.templates.cv.presets.MidnightNavyStyles.style; + +/** + * The pieces more than one part of the Midnight Navy sheet draws: the two kinds + * of heading, the wrapper every horizontal pair goes through, and the two text + * helpers the design's tracking needs. + */ +final class MidnightNavyWidgets { + + private MidnightNavyWidgets() { + } + + /** + * A row that survives inside a row cell. + * + *A row nested directly in a row cell is refused by the layout compiler, + * and both columns of this sheet are row cells — so every horizontal pair in + * the preset goes through here, wrapped in a single layer of a stack.
+ * + * @param parent the section to add the row to + * @param name the node name, for review and rollback + * @param spec describes the row + */ + static void layeredRow(SectionBuilder parent, String name, ConsumerThere is no letter-spacing API, so the tracking is real spaces and its + * width depends on the face's space advance: change the family and the + * tracking has to be re-checked.
+ * + * @param text the line to track + * @return the same line with a space between every pair of characters and + * three between words + */ + static String tracked(String text) { + if (text == null || text.isEmpty()) { + return ""; + } + StringBuilder out = new StringBuilder(text.length() * 2); + boolean startOfWord = true; + for (int i = 0; i < text.length(); i++) { + char ch = text.charAt(i); + if (ch == ' ') { + out.append(" "); + startOfWord = true; + continue; + } + if (!startOfWord) { + out.append(' '); + } + out.append(ch); + startOfWord = false; + } + return out.toString(); + } + + /** A label reduced to what can go in a node name. */ + static String compact(String text) { + return text == null ? "" : text.replaceAll("[^A-Za-z0-9]", ""); + } + + /** A body split into the lines it was written as, blanks dropped. */ + static List