Переглянути джерело

Implement template system for exams

Vijayakrishnan Krishnan 4 роки тому
батько
коміт
bd956e222d

+ 25 - 0
app/Helpers/helpers.php

@@ -138,3 +138,28 @@ if(!function_exists('renderNoteTemplates')) {
         }
     }
 }
+
+if(!function_exists('renderNoteExamTemplates')) {
+    function renderNoteExamTemplates($parentPath, $childPath)
+    {
+        $templates = json_decode(file_get_contents($parentPath));
+        $templates = $templates->templates;
+
+        // override as needed with what is in template set
+        if(file_exists($childPath)) {
+            $orTemplates = json_decode(file_get_contents($parentPath));
+            $orTemplates = $orTemplates->templates;
+            for ($i = 0; $i < count($templates); $i++) {
+                for ($j = 0; $j < count($orTemplates); $j++) {
+                    if($templates[$i]->text === $orTemplates[$j]->text) {
+                        $templates[$i] = $orTemplates[$j];
+                    }
+                }
+            }
+        }
+
+        foreach ($templates as $template) {
+            renderNoteTemplate($template, true);
+        }
+    }
+}

+ 9 - 0
app/Http/Controllers/HomeController.php

@@ -379,6 +379,15 @@ class HomeController extends Controller
         ]);
     }
 
+    public function noteExamTemplateSet(Request $request, $exam, $template)
+    {
+        return view('app/patient/note/_template-exam', [
+            "exam" => $exam,
+            "sectionInternalName" => 'exam-' . $exam . '-detail',
+            "templateName" => $template
+        ]);
+    }
+
     public function logInAs(Request $request)
     {
         if($this->pro->pro_type != 'ADMIN'){

+ 7 - 0
resources/views/app/patient/note/_template-exam.blade.php

@@ -0,0 +1,7 @@
+<?php
+renderNoteExamTemplates(
+    storage_path("templates/exam-default/exam-$exam-detail/$exam-exam.json"),
+    storage_path("templates/exam-$exam-detail/$templateName.json")
+);
+?>
+

+ 71 - 0
resources/views/app/patient/note/_templates-exam-index.blade.php

@@ -0,0 +1,71 @@
+<?php
+$templateIndex = json_decode(file_get_contents(storage_path('templates/index.json')));
+$hasTemplates = true;
+$templateName = '';
+$defaultTemplateName = '';
+$templateSets = [];
+foreach($templateIndex as $s => $templateSection) {
+    if(strpos($s, "exam-") === 0 && substr($s, -7) === "-detail") {
+        foreach($templateIndex->{$s} as $k => $templateSet) {
+            if($templateName === '') $templateName = $k;
+            if($templateSet->default) $defaultTemplateName = $k;
+            if(isset($templateSets[$k])) {
+                echo "$k already exists!";
+            }
+            $namePre = ucwords(str_replace("-", " ", str_replace("exam-", "", $s)));
+            // $templateSet->name = $namePre . ' / ' . $templateSet->name;
+            // $templateSets["$s/$k"] = $templateSet;
+            $templateSets[] = [
+                "exam" => preg_replace("/-detail$/", "", preg_replace("/^exam-/", "", $s)),
+                // "exam" => $s,
+                "key" => $k,
+                "templateSet" => $templateSet
+            ];
+        }
+    }
+}
+if($defaultTemplateName !== '') $templateName = $defaultTemplateName;
+?>
+    <span class="position-relative d-none if-edit ml-3 pl-3 border-left">
+        <a href="#" class="note-templates-trigger">Templates</a>
+        <div class="note-template-container">
+            <div class="position-relative w-100">
+                <div class="note-template-output">
+                    <div class="font-weight-bold text-secondary">Result:</div>
+                    <div class="note-template-output-text"></div>
+                </div>
+                <div class="note-template-buttons d-flex align-items-center">
+                    <button class="btn btn-sm btn-default bg-white border text-primary border-primary note-template-apply-trigger">Apply</button>
+                    <button class="btn btn-sm btn-default bg-light border text-secondary border-secondary note-template-close-trigger">Close</button>
+                </div>
+            </div>
+            <div class="p-1">
+                <select class="form-control form-control-sm note-exam-template-set-chooser" data-section="{{$sectionInternalName}}">
+                    <option exam="gen" value="default" selected>Default</option>
+                    @foreach($templateSets as $templateSet)
+                        <option exam="{{$templateSet["exam"]}}" value="{{$templateSet["key"]}}">{{$templateSet["templateSet"]->name}}</option>
+                    @endforeach
+                </select>
+            </div>
+            <div class="px-1 pb-1 border-bottom">
+                <select class="form-control form-control-sm note-exam-exam-chooser">
+                    <option value="gen" selected>General Exam</option>
+                    <option value="heent">HEENT System</option>
+                    <option value="neck">Neck</option>
+                    <option value="breast">Breast</option>
+                    <option value="resp">Resp System</option>
+                    <option value="cv">CV System</option>
+                    <option value="gi">GI System</option>
+                    <option value="gu-rectal">GU/Rectal</option>
+                    <option value="derm">Derm System</option>
+                    <option value="ext">Extremities</option>
+                    <option value="muscskel">Musc/Skel System</option>
+                    <option value="neuro">Neuro System</option>
+                    <option value="psych">Psych System</option>
+                </select>
+            </div>
+            {{--@include('app/patient/note/_template')--}}
+        </div>
+    </span>
+
+

+ 42 - 2
resources/views/app/patient/note/dashboard.blade.php

@@ -245,7 +245,11 @@
                                     <span class="edit-trigger"></span>
                                 </a>
                                 <?php $sectionInternalName = $section->sectionTemplate->internal_name; ?>
-                                @include('app/patient/note/_templates-index')
+                                @if($sectionInternalName === "exam")
+                                    @include('app/patient/note/_templates-exam-index')
+                                @else
+                                    @include('app/patient/note/_templates-index')
+                                @endif
                                 <?php
                                 if(file_exists(storage_path('sections/' . $sectionInternalName . '/actions.php'))) {
                                     include(storage_path('sections/' . $sectionInternalName . '/actions.php'));
@@ -466,6 +470,9 @@
                         container.find('.note-template-output-text').empty();
                         container.show();
                         loadTemplateSet(container.find('.note-template-set-chooser'));
+                        loadExamTemplateSet(container.find('.note-exam-template-set-chooser'),
+                            container.find('.note-exam-exam-chooser').val(),
+                            container.find('.note-exam-template-set-chooser').val());
                         return false;
                     });
 
@@ -574,6 +581,25 @@
                         return loadTemplateSet($(this));
                     });
 
+                $(document)
+                    .off('change.note-exam-template-set-chooser', '.note-exam-template-set-chooser')
+                    .on('change.note-exam-template-set-chooser', '.note-exam-template-set-chooser', function() {
+                        $(this).closest('.note-template-container')
+                            .find('.note-exam-exam-chooser')
+                                .val($(this).find('option:selected').attr('exam'));
+                        return loadExamTemplateSet($(this),
+                            $(this).closest('.note-template-container').find('.note-exam-exam-chooser').first().val(),
+                            $(this).val());
+                    });
+
+                $(document)
+                    .off('change.note-exam-exam-chooser', '.note-exam-exam-chooser')
+                    .on('change.note-exam-exam-chooser', '.note-exam-exam-chooser', function() {
+                        return loadExamTemplateSet($(this),
+                            $(this).val(),
+                            $(this).closest('.note-template-container').find('.note-exam-template-set-chooser').first().val());
+                    });
+
                 $('.remove-section-trigger').click(function() {
                     $.post('/api/section/deactivate', {
                         uid: $(this).attr('data-uid'),
@@ -607,9 +633,10 @@
             }
 
             function loadTemplateSet(_chooser) {
-                if(!_chooser.val()) return false;
+                if(!_chooser.length || !_chooser.val()) return false;
                 let container = _chooser.closest('.note-template-container');
                 container.find('>.note-template-item').remove();
+                container.find('.please-wait').remove();
                 container.append('<p class="please-wait my-2 text-secondary text-center">Please wait ...</p>');
                 $.get('/note-template-set/' + _chooser.attr('data-section') + '/' + _chooser.val(), function(_html) {
                     container.find('.please-wait').remove();
@@ -618,6 +645,19 @@
                 return false;
             }
 
+            function loadExamTemplateSet(_chooser, _exam, _templateSet) {
+                if(!_chooser.length || !_chooser.val()) return false;
+                let container = _chooser.closest('.note-template-container');
+                container.find('>.note-template-item').remove();
+                container.find('.please-wait').remove();
+                container.append('<p class="please-wait my-2 text-secondary text-center">Please wait ...</p>');
+                $.get('/note-template-set/exam/' + _exam + '/' + _templateSet, function(_html) {
+                    container.find('.please-wait').remove();
+                    container.append(_html);
+                });
+                return false;
+            }
+
             function generateOutputForNode(_node) {
                 let template = (_node.attr('prefix') ? _node.attr('prefix') : '') + _node.attr('template'),
                     value = template;

+ 1 - 0
routes/web.php

@@ -108,6 +108,7 @@ Route::middleware('pro.auth')->group(function () {
     });
 
     // load template set
+    Route::get('/note-template-set/exam/{exam}/{template}', 'HomeController@noteExamTemplateSet');
     Route::get('/note-template-set/{section}/{template}', 'HomeController@noteTemplateSet');
 
     // Patient suggest

+ 6339 - 0
storage/templates/exam-default/exam-breast-detail/breast-exam.json

@@ -0,0 +1,6339 @@
+{
+    "section": "exam-breast-detail",
+    "templateSet": "BREAST Exam",
+    "templates": [
+        {
+            "text": "1-Click normal exams",
+            "template": "{children}",
+            "children": [
+                {
+                    "text": "GEN: NAD",
+                    "template": "GEN: NAD"
+                },
+                {
+                    "text": "BREAST: NL skin, no peau d'orange",
+                    "template": "BREAST: NL skin exam, no peau d'orange"
+                },
+                {
+                    "text": "BREAST: NL nipple exam BL",
+                    "template": "BREAST: NL nipple exam bilaterally"
+                },
+                {
+                    "text": "BREAST: symmetric at rest",
+                    "template": "BREAST: symmetric at rest"
+                },
+                {
+                    "text": "BREAST: symmetric w\/ pectoral tension",
+                    "template": "BREAST: symmetric with pectoral tension"
+                },
+                {
+                    "text": "BREAST: no masses or lumps",
+                    "template": "BREAST: no masses or lumps"
+                },
+                {
+                    "text": "BREAST: nontender to palpation",
+                    "template": "BREAST: nontender to palpation"
+                },
+                {
+                    "text": "BREAST: no nipple discharge",
+                    "template": "BREAST: no nipple discharge"
+                },
+                {
+                    "text": "LYMPHATIC: no ant axillary LN",
+                    "template": "DERM: no anterior axillary lymphadenopathy"
+                },
+                {
+                    "text": "LYMPHATIC: no post axillary LN",
+                    "template": "DERM: no posterior axillary LN"
+                },
+                {
+                    "text": "LYMPHATIC: no supraclavicular LN",
+                    "template": "DERM: no supraclavicular lymphadenopathy"
+                },
+                {
+                    "text": "LYMPHATIC: no infraclavicular LN",
+                    "template": "DERM: no infraclavicular lymphadenopathy"
+                }
+            ]
+        },
+        {
+            "text": "General",
+            "template": "GEN: {children}",
+            "children": [
+                {
+                    "text": "NAD",
+                    "template": "NAD",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "cooperative with exam",
+                    "template": "cooperative with exam",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "well groomed",
+                    "template": "well groomed",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "well developed",
+                    "template": "well developed",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "well nourished",
+                    "template": "well nourished",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "overweight",
+                    "template": "overweight",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "obese",
+                    "template": "obese",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "morbidly obese",
+                    "template": "morbidly obese",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "emaciated",
+                    "template": "emaciated",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "appears to be stated age",
+                    "template": "appears to be stated age",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "appears older than stated age",
+                    "template": "appears older than stated age",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "appears younger than stated age",
+                    "template": "appears younger than stated age",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "HEENT",
+            "template": "HEENT: {children}",
+            "children": [
+                {
+                    "text": "head normocephalic, atraumatic",
+                    "template": "head normocephalic, atraumatic"
+                },
+                {
+                    "text": "EOMI",
+                    "template": "EOMI"
+                },
+                {
+                    "text": "PERRLA",
+                    "template": "PERRLA"
+                },
+                {
+                    "text": "scleral icterus",
+                    "template": "scleral icterus",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "pale conjunctivae",
+                    "template": "pale conjunctivae",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "hearing grossly intact",
+                    "template": "hearing grossly intact",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "normal dentition",
+                    "template": "normal dentition"
+                },
+                {
+                    "text": "normal lips",
+                    "template": "normal lips"
+                },
+                {
+                    "text": "normal gums",
+                    "template": "normal gums"
+                },
+                {
+                    "text": "pharynx unremarkable",
+                    "template": "pharynx unremarkable"
+                },
+                {
+                    "text": "mucous membranes moist",
+                    "template": "mucous membranes moist",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "frenular jaundice",
+                    "template": "frenular jaundice",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Neck",
+            "template": "NECK: {children}",
+            "children": [
+                {
+                    "text": "soft, nontender",
+                    "template": "soft, nontender"
+                },
+                {
+                    "text": "no increased JVP visible",
+                    "template": "no increased JVP visible"
+                },
+                {
+                    "text": "no cervical LN",
+                    "template": "no significant cervical lymphadenopathy"
+                },
+                {
+                    "text": "Lymphadenopathy",
+                    "template": "{children} lymphadenopathy",
+                    "children": [
+                        {
+                            "text": "shotty cervical",
+                            "template": "shotty cervical"
+                        },
+                        {
+                            "text": "submental",
+                            "template": "submental"
+                        },
+                        {
+                            "text": "R submandibular",
+                            "template": "R submandibular"
+                        },
+                        {
+                            "text": "L submandibular",
+                            "template": "L submandibular"
+                        },
+                        {
+                            "text": "R ant. cervical",
+                            "template": "R anterior cervical"
+                        },
+                        {
+                            "text": "L ant. cervical",
+                            "template": "L anterior cervical"
+                        },
+                        {
+                            "text": "R preauricular",
+                            "template": "R preauricular"
+                        },
+                        {
+                            "text": "L preauricular",
+                            "template": "L preauricular"
+                        },
+                        {
+                            "text": "R post. auricular",
+                            "template": "R posterior auricular"
+                        },
+                        {
+                            "text": "L post. auricular",
+                            "template": "L posterior auricular"
+                        },
+                        {
+                            "text": "R supraclavicular",
+                            "template": "R supraclavicular"
+                        },
+                        {
+                            "text": "L supraclavicular",
+                            "template": "L supraclavicular"
+                        }
+                    ]
+                },
+                {
+                    "text": "obese neck",
+                    "template": "neck obesity",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "thyromegaly",
+                    "template": "thyromegaly",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "JVP abnormality",
+                    "template": "JVP: {children}",
+                    "children": [
+                        {
+                            "text": "JVD",
+                            "template": "jugular venous distension",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "H-J reflux",
+                            "template": "hepatojugular reflux",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "inspiratory rise (Kussmaul)",
+                            "template": "inspiratory rise (Kussmaul)",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "JVP level (cm)",
+                    "template": "JVP {text} cm above the sternal angle",
+                    "type": "number"
+                },
+                {
+                    "text": "Neck circumference",
+                    "template": "Neck circumference: {text}",
+                    "type": "alpha"
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Breast and axillae",
+            "template": "BREAST: {children}",
+            "children": [
+                {
+                    "text": "normal breast exam",
+                    "template": "normal breast exam"
+                },
+                {
+                    "text": "breast mass present",
+                    "template": "breast mass present"
+                },
+                {
+                    "text": "surgical scarring noted",
+                    "template": "surgical scarring noted",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Breast, R",
+                    "template": "Breast, R: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "peau d'orange",
+                            "template": "peau d'orange",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "symmetric at rest",
+                            "template": "symmetric at rest",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "symmetric with pectoral tension",
+                            "template": "symmetric with pectoral tension",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "single mass",
+                            "template": "single mass"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "multiple masses",
+                            "template": "multiple masses"
+                        },
+                        {
+                            "text": "right upper quadrant abnormality",
+                            "template": "right upper quadrant abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "left upper quadrant abnormality",
+                            "template": "left upper quadrant abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "right lower quadrant abnormality",
+                            "template": "right lower quadrant abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "left lower quadrant abnormality",
+                            "template": "left lower quadrant abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tail of Spence abnormality",
+                            "template": "tail of Spence abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "s\/p mastectomy",
+                            "template": "s\/p mastectomy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "breast augmentation noted",
+                            "template": "breast augmentation noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "Breast, L",
+                    "template": "Breast, L: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "peau d'orange",
+                            "template": "peau d'orange",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "symmetric at rest",
+                            "template": "symmetric at rest",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "symmetric with pectoral tension",
+                            "template": "symmetric with pectoral tension",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "single mass",
+                            "template": "single mass"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "multiple masses",
+                            "template": "multiple masses"
+                        },
+                        {
+                            "text": "right upper quadrant abnormality",
+                            "template": "right upper quadrant abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "left upper quadrant abnormality",
+                            "template": "left upper quadrant abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "right lower quadrant abnormality",
+                            "template": "right lower quadrant abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "left lower quadrant abnormality",
+                            "template": "left lower quadrant abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tail of Spence abnormality",
+                            "template": "tail of Spence abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "s\/p mastectomy",
+                            "template": "s\/p mastectomy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "breast augmentation noted",
+                            "template": "breast augmentation noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "Breasts, BL",
+                    "template": "Breasts, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "peau d'orange",
+                            "template": "peau d'orange",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "symmetric at rest",
+                            "template": "symmetric at rest",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "symmetric with pectoral tension",
+                            "template": "symmetric with pectoral tension",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "single mass",
+                            "template": "single mass"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "multiple masses",
+                            "template": "multiple masses"
+                        },
+                        {
+                            "text": "right upper quadrant abnormality",
+                            "template": "right upper quadrant abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "left upper quadrant abnormality",
+                            "template": "left upper quadrant abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "right lower quadrant abnormality",
+                            "template": "right lower quadrant abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "left lower quadrant abnormality",
+                            "template": "left lower quadrant abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tail of Spence abnormality",
+                            "template": "tail of Spence abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "s\/p mastectomy",
+                            "template": "s\/p mastectomy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "breast augmentation noted",
+                            "template": "breast augmentation noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "Nipple, R",
+                    "template": "Nipple, R: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "discharge without pressure",
+                            "template": "discharge without pressure",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "expressed discharge",
+                            "template": "expressed discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clear discharge",
+                            "template": "clear discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bloody discharge",
+                            "template": "bloody discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "purulent discharge",
+                            "template": "purulent discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "areolar bleeding",
+                            "template": "areolar bleeding",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Nipple, L",
+                    "template": "Nipple, L: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "discharge without pressure",
+                            "template": "discharge without pressure",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "expressed discharge",
+                            "template": "expressed discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clear discharge",
+                            "template": "clear discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bloody discharge",
+                            "template": "bloody discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "purulent discharge",
+                            "template": "purulent discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "areolar bleeding",
+                            "template": "areolar bleeding",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Nipples, BL",
+                    "template": "Nipples, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "discharge without pressure",
+                            "template": "discharge without pressure",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "expressed discharge",
+                            "template": "expressed discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clear discharge",
+                            "template": "clear discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bloody discharge",
+                            "template": "bloody discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "purulent discharge",
+                            "template": "purulent discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "areolar bleeding",
+                            "template": "areolar bleeding",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Axilla, R",
+                    "template": "Axilla, R: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "mass",
+                            "template": "mass",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "axillary lymphadenopathy",
+                            "template": "axillary lymphadenopathy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pectoral lymphadenopathy",
+                            "template": "pectoral lymphadenopathy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "subscapular lymphadenopathy",
+                            "template": "subscapular lymphadenopathy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "brachial lymphadenopathy",
+                            "template": "brachial lymphadenopathy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acanthosis nigricans",
+                            "template": "acanthosis nigricans",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Axilla, L",
+                    "template": "Axilla, L: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "mass",
+                            "template": "mass",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "axillary lymphadenopathy",
+                            "template": "axillary lymphadenopathy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pectoral lymphadenopathy",
+                            "template": "pectoral lymphadenopathy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "subscapular lymphadenopathy",
+                            "template": "subscapular lymphadenopathy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "brachial lymphadenopathy",
+                            "template": "brachial lymphadenopathy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acanthosis nigricans",
+                            "template": "acanthosis nigricans",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Axillae, BL",
+                    "template": "Axillae, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "mass",
+                            "template": "mass",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "axillary lymphadenopathy",
+                            "template": "axillary lymphadenopathy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pectoral lymphadenopathy",
+                            "template": "pectoral lymphadenopathy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "subscapular lymphadenopathy",
+                            "template": "subscapular lymphadenopathy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "brachial lymphadenopathy",
+                            "template": "brachial lymphadenopathy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acanthosis nigricans",
+                            "template": "acanthosis nigricans",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findngs (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Respiratory",
+            "template": "RESP: {children}",
+            "children": [
+                {
+                    "text": "no respiratory distress",
+                    "template": "no respiratory distress"
+                },
+                {
+                    "text": "auscultation clear BL",
+                    "template": "clear to auscultation bilaterally"
+                },
+                {
+                    "text": "no wheezes\/rales\/rhonchi",
+                    "template": "no wheezes\/rales\/rhonchi"
+                },
+                {
+                    "text": "percussion clear BL",
+                    "template": "clear to percussion bilaterally"
+                },
+                {
+                    "text": "chest wall symmetric",
+                    "template": "chest wall symmetric"
+                },
+                {
+                    "text": "Abnl lung sounds, R",
+                    "template": "Abnl lung sounds, R: {children}",
+                    "children": [
+                        {
+                            "text": "whoop",
+                            "template": "whoop",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "stridor",
+                            "template": "stridor",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pleural rub",
+                            "template": "pleural rub"
+                        },
+                        {
+                            "text": "basilar rales",
+                            "template": "basilar rales"
+                        },
+                        {
+                            "text": "rales scattered",
+                            "template": "scattered rales"
+                        },
+                        {
+                            "text": "rhonchi scattered",
+                            "template": "scattered rhonchi"
+                        },
+                        {
+                            "text": "diminished breath sounds throughout",
+                            "template": "diminished breath sounds throughout"
+                        },
+                        {
+                            "text": "diminished breath sounds at bases",
+                            "template": "diminished breath sounds at bases"
+                        },
+                        {
+                            "text": "wheezes, expiration",
+                            "template": "expiratory wheezes"
+                        }
+                    ]
+                },
+                {
+                    "text": "Abnl lung sounds, L",
+                    "template": "Abnl lung sounds, L: {children}",
+                    "children": [
+                        {
+                            "text": "whoop",
+                            "template": "whoop",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "stridor",
+                            "template": "stridor",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pleural rub",
+                            "template": "pleural rub"
+                        },
+                        {
+                            "text": "basilar rales",
+                            "template": "basilar rales"
+                        },
+                        {
+                            "text": "rales scattered",
+                            "template": "scattered rales"
+                        },
+                        {
+                            "text": "rhonchi scattered",
+                            "template": "scattered rhonchi"
+                        },
+                        {
+                            "text": "diminished breath sounds throughout",
+                            "template": "diminished breath sounds throughout"
+                        },
+                        {
+                            "text": "diminished breath sounds at bases",
+                            "template": "diminished breath sounds at bases"
+                        },
+                        {
+                            "text": "wheezes, expiration",
+                            "template": "expiratory wheezes"
+                        }
+                    ]
+                },
+                {
+                    "text": "Abnl lung sounds, BL",
+                    "template": "Abnl lung sounds, BL: {children}",
+                    "children": [
+                        {
+                            "text": "whoop",
+                            "template": "whoop",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "stridor",
+                            "template": "stridor",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pleural rub",
+                            "template": "pleural rub"
+                        },
+                        {
+                            "text": "basilar rales",
+                            "template": "basilar rales"
+                        },
+                        {
+                            "text": "rales scattered",
+                            "template": "scattered rales"
+                        },
+                        {
+                            "text": "rhonchi scattered",
+                            "template": "scattered rhonchi"
+                        },
+                        {
+                            "text": "diminished breath sounds throughout",
+                            "template": "diminished breath sounds throughout"
+                        },
+                        {
+                            "text": "diminished breath sounds at bases",
+                            "template": "diminished breath sounds at bases"
+                        },
+                        {
+                            "text": "wheezes, expiration",
+                            "template": "expiratory wheezes"
+                        }
+                    ]
+                },
+                {
+                    "text": "Percussion, R",
+                    "template": "Percussion, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal to percussion",
+                            "template": "normal to percussion"
+                        },
+                        {
+                            "text": "dullness to percussion at base",
+                            "template": "dullness to percussion at base"
+                        },
+                        {
+                            "text": "dull throughout",
+                            "template": "dull to percussion throughout"
+                        }
+                    ]
+                },
+                {
+                    "text": "Percussion, L",
+                    "template": "Percussion, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal to percussion",
+                            "template": "normal to percussion"
+                        },
+                        {
+                            "text": "dullness to percussion at base",
+                            "template": "dullness to percussion at base"
+                        },
+                        {
+                            "text": "dull throughout",
+                            "template": "dull to percussion throughout"
+                        }
+                    ]
+                },
+                {
+                    "text": "Percussion, BL",
+                    "template": "Percussion, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal to percussion",
+                            "template": "normal to percussion"
+                        },
+                        {
+                            "text": "dullness to percussion at base",
+                            "template": "dullness to percussion at base"
+                        },
+                        {
+                            "text": "dull throughout",
+                            "template": "dull to percussion throughout"
+                        }
+                    ]
+                },
+                {
+                    "text": "Breathing dynamics, R",
+                    "template": "Breathing dynamics, R: {children}",
+                    "children": [
+                        {
+                            "text": "labored breathing",
+                            "template": "labored breathing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "accessory muscle use",
+                            "template": "accessory muscle use",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "rib retractions",
+                            "template": "rib retractions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abnormal diaphragm movement",
+                            "template": "abnormal diaphragm movement",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Breathing dynamics, L",
+                    "template": "Breathing dynamics, L: {children}",
+                    "children": [
+                        {
+                            "text": "labored breathing",
+                            "template": "labored breathing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "accessory muscle use",
+                            "template": "accessory muscle use",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "rib retractions",
+                            "template": "rib retractions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abnormal diaphragm movement",
+                            "template": "abnormal diaphragm movement",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Breathing dynamics, BL",
+                    "template": "Breathing dynamics, BL: {children}",
+                    "children": [
+                        {
+                            "text": "labored breathing",
+                            "template": "labored breathing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "accessory muscle use",
+                            "template": "accessory muscle use",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "rib retractions",
+                            "template": "rib retractions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abnormal diaphragm movement",
+                            "template": "abnormal diaphragm movement",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Cardiovascular",
+            "template": "CV: {children}",
+            "children": [
+                {
+                    "text": "RRR, no murmur\/rub\/gallop",
+                    "template": "RRR, no murmur\/rub\/gallop"
+                },
+                {
+                    "text": "S1, S2 findings",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "NL S1",
+                            "template": "NL S1"
+                        },
+                        {
+                            "text": "NL S2",
+                            "template": "NL S2"
+                        },
+                        {
+                            "text": "split S2",
+                            "template": "split S2"
+                        },
+                        {
+                            "text": "split S1",
+                            "template": "split S1"
+                        },
+                        {
+                            "text": "persistently split S2",
+                            "template": "persistently split S2"
+                        },
+                        {
+                            "text": "physiologically split S2",
+                            "template": "physiologically split S2"
+                        },
+                        {
+                            "text": "paradoxically split S2",
+                            "template": "paradoxically split S2"
+                        },
+                        {
+                            "text": "widely split S2",
+                            "template": "widely split S2"
+                        }
+                    ]
+                },
+                {
+                    "text": "S3 gallop",
+                    "template": "S3 gallop",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "S4 gallop",
+                    "template": "S4 gallop",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "regular rate and rhythm",
+                    "template": "regular rate and rhythm"
+                },
+                {
+                    "text": "regular rate",
+                    "template": "regular rate"
+                },
+                {
+                    "text": "regular rhythm",
+                    "template": "regular rhythm"
+                },
+                {
+                    "text": "no murmurs",
+                    "template": "no murmurs"
+                },
+                {
+                    "text": "Murmur grade",
+                    "template": "Murmur grade: {text}\/6",
+                    "type": "number"
+                },
+                {
+                    "text": "Murmur timing\/location",
+                    "template": "murmur {children}",
+                    "children": [
+                        {
+                            "text": "systolic",
+                            "template": "is systolic"
+                        },
+                        {
+                            "text": "diastolic",
+                            "template": "is diastolic"
+                        },
+                        {
+                            "text": "holosystolic",
+                            "template": "is holosystolic"
+                        },
+                        {
+                            "text": "continuous",
+                            "template": "is continuous"
+                        },
+                        {
+                            "text": "best: L sternal border",
+                            "template": "best heard at L sternal border"
+                        },
+                        {
+                            "text": "best: 2nd R ICS",
+                            "template": "best heard near 2nd R ICS"
+                        },
+                        {
+                            "text": "best: xiphoid\/ sternal area",
+                            "template": "best heard at xiphoid\/sternal area"
+                        },
+                        {
+                            "text": "best: apex",
+                            "template": "best heard at apex"
+                        },
+                        {
+                            "text": "best: R sternal border",
+                            "template": "best heard at R sternal border"
+                        },
+                        {
+                            "text": "nonradiating",
+                            "template": "nonradiating"
+                        },
+                        {
+                            "text": "radiates to axilla",
+                            "template": "radiates to axilla"
+                        },
+                        {
+                            "text": "radiates to apex",
+                            "template": "radiates to apex"
+                        },
+                        {
+                            "text": "radiates to carotids",
+                            "template": "radiates to carotids"
+                        },
+                        {
+                            "text": "radiates to R side",
+                            "template": "radiates to R side"
+                        },
+                        {
+                            "text": "radiates to sternum",
+                            "template": "radiates to sternum"
+                        },
+                        {
+                            "text": "radiates to L clavicular area",
+                            "template": "radiates to L clavicular area"
+                        }
+                    ]
+                },
+                {
+                    "text": "no increased JVP visible",
+                    "template": "no increased JVP visible"
+                },
+                {
+                    "text": "JVP level (cm)",
+                    "template": "JVP {text} cm above the sternal angle",
+                    "type": "number"
+                },
+                {
+                    "text": "Heaves, thrills, lifts",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "heave",
+                            "template": "heave",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "parasternal lift",
+                            "template": "parasternal lift",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "thrill",
+                            "template": "thrill",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Extra heart sounds",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "extra heart sounds",
+                            "template": "extra heart sounds",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pulmonary ejection sound",
+                            "template": "pulmonary ejection sound",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "aortic ejection sound",
+                            "template": "aortic ejection sound",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "systolic click",
+                            "template": "systolic click",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "midsystolic click",
+                            "template": "midsystolic click",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mid-late systolic click",
+                            "template": "mid-to-late systolic click",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pericardial rub",
+                            "template": "pericardial rub",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "knock",
+                            "template": "knock",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "opening snap",
+                            "template": "opening snap",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "plop",
+                            "template": "plop",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "prosthetic sounds",
+                            "template": "prosthetic sounds",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pacemaker sounds",
+                            "template": "pacemaker sounds",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "PMI nondisplaced",
+                    "template": "PMI nondisplaced"
+                },
+                {
+                    "text": "PMI displaced",
+                    "template": "PMI displaced",
+                    "children": [
+                        {
+                            "text": "laterally",
+                            "template": "laterally"
+                        },
+                        {
+                            "text": "inferiorly",
+                            "template": "inferiorly"
+                        },
+                        {
+                            "text": "superiorly",
+                            "template": "superiorly"
+                        },
+                        {
+                            "text": "parasternally",
+                            "template": "parasternally"
+                        }
+                    ]
+                },
+                {
+                    "text": "Peripheral pulses, R",
+                    "template": "Peripheral pulses, R: {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity normal",
+                            "template": "upper extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lower extremity normal",
+                            "template": "lower extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished in upper extremities",
+                            "template": "diminished in upper extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished in lower extremities",
+                            "template": "diminished in lower extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pulsus paradoxicus",
+                            "template": "pulsus paradoxicus",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Peripheral pulses, L",
+                    "template": "Peripheral pulses, L: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact"
+                        },
+                        {
+                            "text": "upper extremity normal",
+                            "template": "upper extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lower extremity normal",
+                            "template": "lower extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished in upper extremities",
+                            "template": "diminished in upper extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished in lower extremities",
+                            "template": "diminished in lower extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pulsus paradoxicus",
+                            "template": "pulsus paradoxicus",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Peripheral pulses, BL",
+                    "template": "Peripheral pulses, BL: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact"
+                        },
+                        {
+                            "text": "upper extremity normal",
+                            "template": "upper extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lower extremity normal",
+                            "template": "lower extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished in upper extremities",
+                            "template": "diminished in upper extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished in lower extremities",
+                            "template": "diminished in lower extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pulsus paradoxicus",
+                            "template": "pulsus paradoxicus",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Xanthomas, R",
+                    "template": "Xanthomas, R: {children}",
+                    "children": [
+                        {
+                            "text": "eyelids",
+                            "template": "eyelids"
+                        },
+                        {
+                            "text": "periorbital",
+                            "template": "periorbital area"
+                        },
+                        {
+                            "text": "hands",
+                            "template": "hands"
+                        },
+                        {
+                            "text": "achilles tendons",
+                            "template": "achilles tendons"
+                        },
+                        {
+                            "text": "feet",
+                            "template": "feet"
+                        },
+                        {
+                            "text": "elbows",
+                            "template": "elbows"
+                        },
+                        {
+                            "text": "knees",
+                            "template": "knees"
+                        },
+                        {
+                            "text": "shoulders",
+                            "template": "shoulders"
+                        },
+                        {
+                            "text": "buttocks",
+                            "template": "buttocks"
+                        }
+                    ]
+                },
+                {
+                    "text": "Xanthomas, L",
+                    "template": "Xanthomas, L: {children}",
+                    "children": [
+                        {
+                            "text": "eyelids",
+                            "template": "eyelids"
+                        },
+                        {
+                            "text": "periorbital",
+                            "template": "periorbital area"
+                        },
+                        {
+                            "text": "hands",
+                            "template": "hands"
+                        },
+                        {
+                            "text": "achilles tendons",
+                            "template": "achilles tendons"
+                        },
+                        {
+                            "text": "feet",
+                            "template": "feet"
+                        },
+                        {
+                            "text": "elbows",
+                            "template": "elbows"
+                        },
+                        {
+                            "text": "knees",
+                            "template": "knees"
+                        },
+                        {
+                            "text": "shoulders",
+                            "template": "shoulders"
+                        },
+                        {
+                            "text": "buttocks",
+                            "template": "buttocks"
+                        }
+                    ]
+                },
+                {
+                    "text": "Xanthomas, BL",
+                    "template": "Xanthomas, BL: {children}",
+                    "children": [
+                        {
+                            "text": "eyelids",
+                            "template": "eyelids"
+                        },
+                        {
+                            "text": "periorbital",
+                            "template": "periorbital area"
+                        },
+                        {
+                            "text": "hands",
+                            "template": "hands"
+                        },
+                        {
+                            "text": "achilles tendons",
+                            "template": "achilles tendons"
+                        },
+                        {
+                            "text": "feet",
+                            "template": "feet"
+                        },
+                        {
+                            "text": "elbows",
+                            "template": "elbows"
+                        },
+                        {
+                            "text": "knees",
+                            "template": "knees"
+                        },
+                        {
+                            "text": "shoulders",
+                            "template": "shoulders"
+                        },
+                        {
+                            "text": "buttocks",
+                            "template": "buttocks"
+                        }
+                    ]
+                },
+                {
+                    "text": "LE venous stasis changes",
+                    "template": "LE venous stasis changes",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "varicose veins",
+                    "template": "varicose veins",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "LE varicose veins, R",
+                    "template": "LE varicose veins, R: {children}",
+                    "children": [
+                        {
+                            "text": "no varicosities",
+                            "template": "none"
+                        },
+                        {
+                            "text": "bilaterally",
+                            "template": "bilaterally"
+                        }
+                    ]
+                },
+                {
+                    "text": "LE varicose veins, L",
+                    "template": "LE varicose veins, L: {children}",
+                    "children": [
+                        {
+                            "text": "no varicosities",
+                            "template": "none"
+                        },
+                        {
+                            "text": "bilaterally",
+                            "template": "bilaterally"
+                        }
+                    ]
+                },
+                {
+                    "text": "LE varicose veins, BL",
+                    "template": "LE varicose veins, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no varicosities",
+                            "template": "none"
+                        },
+                        {
+                            "text": "bilaterally",
+                            "template": "bilaterally"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "Other findings: {text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Cardiovascular, pulses",
+            "template": "CV: {children}",
+            "children": [
+                {
+                    "text": "pulse rate and rhythm regular",
+                    "template": "pulse rate and rhythm regular"
+                },
+                {
+                    "text": "pulse rate regular",
+                    "template": "pulse rate regular"
+                },
+                {
+                    "text": "pulse rhythm regular",
+                    "template": "pulse rhythm regular"
+                },
+                {
+                    "text": "Temporal artery, R",
+                    "template": "Temporal artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Temporal artery, L",
+                    "template": "Temporal artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Temporal arteries, BL",
+                    "template": "Temporal arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Carotid artery, R",
+                    "template": "Carotid artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "delayed upstroke",
+                            "template": "delayed upstroke"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Carotid artery, L",
+                    "template": "Carotid artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "delayed upstroke",
+                            "template": "delayed upstroke"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Carotid arteries, BL",
+                    "template": "Carotid arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "delayed upstroke",
+                            "template": "delayed upstroke"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Brachial artery, R",
+                    "template": "Brachial artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Brachial artery, L",
+                    "template": "Brachial artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Brachial arteries, BL",
+                    "template": "Brachial arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Radial artery, R",
+                    "template": "Radial artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "waterhammer",
+                            "template": "waterhammer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bisferiens",
+                            "template": "bisferiens",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Radial artery, L",
+                    "template": "Radial artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "waterhammer",
+                            "template": "waterhammer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bisferiens",
+                            "template": "bisferiens",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Radial arteries, BL",
+                    "template": "Radial arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "waterhammer",
+                            "template": "waterhammer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bisferiens",
+                            "template": "bisferiens",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Femoral artery, R",
+                    "template": "Femoral artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Femoral artery, L",
+                    "template": "Femoral artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Femoral arteries, BL",
+                    "template": "Femoral arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Popliteal artery, R",
+                    "template": "Popliteal artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Popliteal artery, L",
+                    "template": "Popliteal artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Popliteal arteries, BL",
+                    "template": "Popliteal arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Dorsalis pedis artery, R",
+                    "template": "Dorsalis pedis artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Dorsalis pedis artery, L",
+                    "template": "Dorsalis pedis artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Dorsalis pedis arteries, BL",
+                    "template": "Dorsalis pedis arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Posterior tibial, R",
+                    "template": "Posterior tibial, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Posterior tibial, L",
+                    "template": "Posterior tibial, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Posterior tibial arteries, BL",
+                    "template": "Posterior tibial arteries, BL {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Renal artery, R",
+                    "template": "Renal artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "bruit present",
+                            "template": "bruit present"
+                        },
+                        {
+                            "text": "palpable pulse",
+                            "template": "palpable pulse",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Renal artery, L",
+                    "template": "Renal artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "bruit present",
+                            "template": "bruit present"
+                        },
+                        {
+                            "text": "palpable pulse",
+                            "template": "palpable pulse",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Renal arteries, BL",
+                    "template": "Renal arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "bruit present",
+                            "template": "bruit present"
+                        },
+                        {
+                            "text": "palpable pulse",
+                            "template": "palpable pulse",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Aorta",
+                    "template": "Aorta: {children}",
+                    "children": [
+                        {
+                            "text": "enlargement",
+                            "template": "enlargement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Gastrointestinal",
+            "template": "GI: {children}",
+            "children": [
+                {
+                    "text": "bowel sounds intact throughout",
+                    "template": "bowel sounds intact throughout"
+                },
+                {
+                    "text": "borborygmi",
+                    "template": "borborygmi",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "soft, nontender to palpation",
+                    "template": "soft, nontender to palpation"
+                },
+                {
+                    "text": "no rebound\/guarding\/rigidity",
+                    "template": "no rebound\/guarding\/rigidity"
+                },
+                {
+                    "text": "rebound",
+                    "template": "rebound",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "voluntary guarding",
+                    "template": "voluntary guarding",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "involuntary guarding",
+                    "template": "involuntary guarding",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "rigidity",
+                    "template": "rigidity",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "hepatomegaly",
+                    "template": "hepatomegaly",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "splenomegaly",
+                    "template": "splenomegaly",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "masses",
+                    "template": "masses",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "hepatojugular reflex",
+                    "template": "hepatojugular reflex",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Liver",
+                    "template": "Liver: {children}",
+                    "children": [
+                        {
+                            "text": "normal",
+                            "template": "normal"
+                        },
+                        {
+                            "text": "caput medusae",
+                            "template": "caput medusae",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spider angiomata",
+                            "template": "spider angiomata",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "palpable",
+                            "template": "palpable",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "edge palpable below costal margin",
+                            "template": "edge palpable below costal margin",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hepatomegaly",
+                            "template": "hepatomegaly",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bulging flanks",
+                            "template": "bulging flanks",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flank dullness",
+                            "template": "flank dullness",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "shifting dullness",
+                            "template": "shifting dullness",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fluid wave",
+                            "template": "fluid wave",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ascites",
+                            "template": "ascites",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Spleen",
+                    "template": "Spleen: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "palpable",
+                            "template": "palpable",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "splenomegaly",
+                            "template": "splenomegaly",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Abdominal exam - inspection",
+                    "template": "Abdominal exam inspection: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities on inspection",
+                            "template": "no abnormalities on inspection"
+                        },
+                        {
+                            "text": "distended",
+                            "template": "distended",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flat",
+                            "template": "flat",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "obese",
+                            "template": "obese",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scaphoid",
+                            "template": "scaphoid",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scarring",
+                            "template": "scarring",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "rash",
+                            "template": "rash",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "umbilical hernia",
+                            "template": "umbilical hernia",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ventral hernia",
+                            "template": "ventral hernia",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spider angiomata",
+                            "template": "spider angiomata",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "caput medusae",
+                            "template": "caput medusae",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Abdominal exam - bowel sounds",
+                    "template": "Bowel sounds: {children}",
+                    "children": [
+                        {
+                            "text": "present on auscultation",
+                            "template": "present on auscultation"
+                        },
+                        {
+                            "text": "normoactive",
+                            "template": "normoactive"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "absent",
+                            "template": "absent",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "high pitched",
+                            "template": "high pitched",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Abdominal exam - tenderness",
+                    "template": "Abdominal pain: {children}",
+                    "children": [
+                        {
+                            "text": "no tenderness noted on exam",
+                            "template": "no tenderness noted on exam"
+                        },
+                        {
+                            "text": "tenderness at rest",
+                            "template": "tenderness present at rest",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tenderness with palpation",
+                            "template": "tenderness present with palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tenderness with movement",
+                            "template": "tenderness present with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mild",
+                            "template": "mild pain present"
+                        },
+                        {
+                            "text": "moderate",
+                            "template": "moderate pain present"
+                        },
+                        {
+                            "text": "severe",
+                            "template": "severe pain present"
+                        },
+                        {
+                            "text": "present throughout",
+                            "template": "pain present throughout"
+                        },
+                        {
+                            "text": "right sided tenderness",
+                            "template": "right sided tenderness present"
+                        },
+                        {
+                            "text": "left sided tenderness",
+                            "template": "left sided tenderness present"
+                        },
+                        {
+                            "text": "midepigastric tenderness",
+                            "template": "midepigastric tenderness present"
+                        },
+                        {
+                            "text": "RUQ tenderness",
+                            "template": "RUQ tenderness present"
+                        },
+                        {
+                            "text": "LUQ tenderness",
+                            "template": "LUQ tenderness present"
+                        },
+                        {
+                            "text": "hypogastric tenderness",
+                            "template": "hypogastric tenderness present"
+                        },
+                        {
+                            "text": "RLQ tenderness",
+                            "template": "RLQ tenderness present"
+                        },
+                        {
+                            "text": "LLQ tenderness",
+                            "template": "LLQ tenderness present"
+                        },
+                        {
+                            "text": "periumbilical tenderness",
+                            "template": "periumbilical tenderness present"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "GU\/Rectal",
+            "template": "GU\/RECTAL: {children}",
+            "children": [
+                {
+                    "text": "external genitalia NL appearance",
+                    "template": "external genitalia NL appearance"
+                },
+                {
+                    "text": "s\/p mastectomy",
+                    "template": "s\/p mastectomy"
+                },
+                {
+                    "text": "Hair distribution",
+                    "template": "Hair distribution",
+                    "children": [
+                        {
+                            "text": "normal",
+                            "template": "normal"
+                        },
+                        {
+                            "text": "hair loss noted",
+                            "template": "hair loss noted",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Urethral meatus",
+                    "template": "Urethral meatus: {children}",
+                    "children": [
+                        {
+                            "text": "NL size",
+                            "template": "NL size"
+                        },
+                        {
+                            "text": "lesions",
+                            "template": "lesions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "prolapse",
+                            "template": "prolapse",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythematous",
+                            "template": "erythematous",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discharge",
+                            "template": "discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender",
+                            "template": "tender",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Bladder",
+                    "template": "Bladder: {children}",
+                    "children": [
+                        {
+                            "text": "normal",
+                            "template": "normal"
+                        },
+                        {
+                            "text": "tender",
+                            "template": "tender",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "masses",
+                            "template": "masses",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "distended",
+                            "template": "distended",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cystocele",
+                            "template": "cystocele",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Vagina",
+                    "template": "Vagina: {children}",
+                    "children": [
+                        {
+                            "text": "NL appearance",
+                            "template": "NL appearance"
+                        },
+                        {
+                            "text": "NL pelvic support",
+                            "template": "NL pelvic support"
+                        },
+                        {
+                            "text": "atrophy",
+                            "template": "atrophy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discharge",
+                            "template": "discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lesions",
+                            "template": "lesions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "prolapse",
+                            "template": "prolapse",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bleeding",
+                            "template": "bleeding",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Cervix",
+                    "template": "Cervix: {children}",
+                    "children": [
+                        {
+                            "text": "NL appearance",
+                            "template": "NL appearance"
+                        },
+                        {
+                            "text": "midline",
+                            "template": "midline"
+                        },
+                        {
+                            "text": "lesions",
+                            "template": "lesions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discharge",
+                            "template": "discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bleeding",
+                            "template": "bleeding",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "specimens obtained for smear",
+                            "template": "specimens obtained for smear",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "specimens obtained for culture",
+                            "template": "specimens obtained for culture",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "s\/p surgical removal",
+                            "template": "s\/p surgical removal"
+                        }
+                    ]
+                },
+                {
+                    "text": "Uterus",
+                    "template": "Uterus: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "NL position",
+                            "template": "NL position"
+                        },
+                        {
+                            "text": "NL mobility",
+                            "template": "NL mobility"
+                        },
+                        {
+                            "text": "NL contour",
+                            "template": "NL contour"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "prolapse",
+                            "template": "prolapse",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender",
+                            "template": "tender",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "s\/p hysterectomy",
+                            "template": "s\/p hysterectomy"
+                        }
+                    ]
+                },
+                {
+                    "text": "Adnexa, R",
+                    "template": "Adnexa, R: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "tender",
+                            "template": "tender",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "masses",
+                            "template": "masses",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nodules",
+                            "template": "nodules",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "s\/p salpingectomy",
+                            "template": "s\/p salpingectomy"
+                        }
+                    ]
+                },
+                {
+                    "text": "Adnexa, L",
+                    "template": "Adnexa, L: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "tender",
+                            "template": "tender",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "masses",
+                            "template": "masses",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nodules",
+                            "template": "nodules",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "s\/p salpingectomy",
+                            "template": "s\/p salpingectomy"
+                        }
+                    ]
+                },
+                {
+                    "text": "Adnexae, BL",
+                    "template": "Adnexae, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "tender",
+                            "template": "tender",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "masses",
+                            "template": "masses",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nodules",
+                            "template": "nodules",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "s\/p salpingectomy",
+                            "template": "s\/p salpingectomy"
+                        }
+                    ]
+                },
+                {
+                    "text": "Anorectal area",
+                    "template": "Anus\/rectum: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "NL tone",
+                            "template": "NL tone"
+                        },
+                        {
+                            "text": "perianal lesions",
+                            "template": "perianal lesions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "external hemorrhoids",
+                            "template": "external hemorrhoids",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "NL anoscopy",
+                            "template": "NL anoscopy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "internal hemorrhoids",
+                            "template": "internal hemorrhoids",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "rectocele",
+                            "template": "rectocele",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "masses",
+                            "template": "masses",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "stool positive for occult blood",
+                            "template": "stool positive for occult blood"
+                        },
+                        {
+                            "text": "stool negative for occult blood",
+                            "template": "stool negative for occult blood"
+                        },
+                        {
+                            "text": "gross blood noted on DRE",
+                            "template": "gross blood noted on DRE"
+                        }
+                    ]
+                },
+                {
+                    "text": "Rectal exam deferred",
+                    "template": "Rectal exam deferred: {children}",
+                    "children": [
+                        {
+                            "text": "not indicated",
+                            "template": "not indicated"
+                        },
+                        {
+                            "text": "refused by patient",
+                            "template": "refused by patient"
+                        },
+                        {
+                            "text": "unstable",
+                            "template": "deferred due to unstable clinical status"
+                        },
+                        {
+                            "text": "contraindicated",
+                            "template": "deferred due to clinical contraindication"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Dermatologic\/Lymphatic",
+            "template": "DERM: {children}",
+            "children": [
+                {
+                    "text": "Dermatological findings, general",
+                    "template": "General dermatological findings :{children}",
+                    "children": [
+                        {
+                            "text": "no abnormal skin findings",
+                            "template": "no abnormal skin findings"
+                        },
+                        {
+                            "text": "hyperpigmentation",
+                            "template": "hyperpigmentation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hypopigmentation",
+                            "template": "hypopigmentation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tattoo markings",
+                            "template": "tattoo markings",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scarring",
+                            "template": "scarring",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "injection tracts",
+                            "template": "injection tracts",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "alopecia",
+                            "template": "alopecia",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acanthosis nigricans",
+                            "template": "acanthosis nigricans",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Anterior axillary lymphatics, R",
+                    "template": "Anterior axillary lymphatics, R: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Anterior axillary lymphatics, L",
+                    "template": "Anterior axillary lymphatics, L: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Anterior axillary lymphatics, BL",
+                    "template": "Anterior axillary lymphatics, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Posterior axillary lymphatics, R",
+                    "template": "Posterior axillary lymphatics, R: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Posterior axillary lymphatics, L",
+                    "template": "Posterior axillary lymphatics, L: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Posterior axillary lymphatics, BL",
+                    "template": "Posterior axillary lymphatics, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Apical axillary lymphatics, R",
+                    "template": "Apical axillary lymphatics, R: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Apical axillary lymphatics, L",
+                    "template": "Apical axillary lymphatics, L: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Apical axillary lymphatics, BL",
+                    "template": "Apical axillary lymphatics, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lateral axillary lymphatics, R",
+                    "template": "Lateral axillary lymphatics, R: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lateral axillary lymphatics, L",
+                    "template": "Lateral axillary lymphatics, L: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lateral axillary lymphatics, BL",
+                    "template": "Lateral axillary lymphatics, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Medial axillary lymphatics, R",
+                    "template": "Medial axillary lymphatics, R: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Medial axillary lymphatics, L",
+                    "template": "Medial axillary lymphatics, L: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Medial axillary lymphatics, BL",
+                    "template": "Medial axillary lymphatics, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "Other findings: {text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Extremities",
+            "template": "EXT: {children}",
+            "children": [
+                {
+                    "text": "no cyanosis\/clubbing\/ or edema",
+                    "template": "no cyanosis\/clubbing\/ or edema"
+                },
+                {
+                    "text": "cyanosis",
+                    "template": "cyanosis",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "clubbing",
+                    "template": "clubbing",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "edema",
+                    "template": "edema",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "anasarca",
+                    "template": "anasarca",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Upper extremity c\/e\/c, R",
+                    "template": "Upper extremity clubbing\/edema\/cyanosis, R: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity c\/e\/c, L",
+                    "template": "Upper extremity clubbing\/edema\/cyanosis, L: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremities c\/e\/c, BL",
+                    "template": "Upper extremities clubbing\/edema\/cyanosis, BL: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity c\/e\/c, R",
+                    "template": "Lower extremity clubbing\/edema\/cyanosis, R: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity c\/e\/c, L",
+                    "template": "Lower extremity clubbing\/edema\/cyanosis, L: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremities c\/e\/c, BL",
+                    "template": "Lower extremities clubbing\/edema\/cyanosis, BL: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "full range of motion throughout",
+                    "template": "full range of motion throughout"
+                },
+                {
+                    "text": "upper ext strength intact BL",
+                    "template": "upper extremity strength intact BL",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Upper extremity, ROM, R",
+                    "template": "Upper extremity, range of motion, R: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity, ROM, L",
+                    "template": "Upper extremity, range of motion, L: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremities, ROM, BL",
+                    "template": "Upper extremities, range of motion, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "lower ext strength intact BL",
+                    "template": "lower extremity strength intact BL",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Lower extremity, ROM, R",
+                    "template": "Lower extremity, range of motion, R: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity, ROM, L",
+                    "template": "Lower extremity, range of motion, L: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity, ROM, BL",
+                    "template": "Lower extremity, range of motion, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "upper extremity strength intact BL",
+                    "template": "Upper extremity strength intact BL",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Upper extremity strength, R",
+                    "template": "Upper extremity strength, R: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity strength, L",
+                    "template": "Upper extremity strength, L: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity strength, BL",
+                    "template": "Upper extremity strength, BL: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "lower extremity strength intact BL",
+                    "template": "Lower extremity strength intact BL",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Lower extremity strength, R",
+                    "template": "Lower extremity strength, R: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity strength, L",
+                    "template": "Lower extremity strength, L: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity strength, BL",
+                    "template": "Lower extremity strength, BL: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Musculoskeletal",
+            "template": "MUSC\/SKEL: {children}",
+            "children": [
+                {
+                    "text": "muscle strength NL throughout",
+                    "template": "muscle strength NL throughout"
+                },
+                {
+                    "text": "NL upper extremity exam BL",
+                    "template": "NL upper extremity exam BL",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "NL lower extremity exam BL",
+                    "template": "NL lower extremity exam BL",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Upper extremity, R",
+                    "template": "Upper extremity exam, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "normal strength and tone"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity, L",
+                    "template": "Upper extremity exam, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "normal strength and tone"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity, BL",
+                    "template": "Upper extremity exam, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "normal strength and tone"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity, R",
+                    "template": "Lower extremity exam, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "normal strength and tone"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity, L",
+                    "template": "Lower extremity exam, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "normal strength and tone"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity, BL",
+                    "template": "Lower extremity exam, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "normal strength and tone"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Back, R",
+                    "template": "Back exam, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sacral edema",
+                            "template": "sacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "presacral edema",
+                            "template": "presacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "costovertebral angle tenderness",
+                            "template": "costovertebral angle tenderness",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Back, L",
+                    "template": "Back exam, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sacral edema",
+                            "template": "sacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "presacral edema",
+                            "template": "presacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "costovertebral angle tenderness",
+                            "template": "costovertebral angle tenderness",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Back, BL",
+                    "template": "Back exam, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sacral edema",
+                            "template": "sacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "presacral edema",
+                            "template": "presacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "costovertebral angle tenderness",
+                            "template": "costovertebral angle tenderness",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Neurologic",
+            "template": "NEURO: {children}",
+            "children": [
+                {
+                    "text": "sensation grossly intact",
+                    "template": "sensation grossly intact"
+                },
+                {
+                    "text": "CN II-XII intact and nonfocal",
+                    "template": "CN II-XII intact and nonfocal"
+                },
+                {
+                    "text": "DTRs bilaterally equal throughout",
+                    "template": "deep tendon reflexes 2+, bilaterally equal throughout"
+                },
+                {
+                    "text": "normal gait and station",
+                    "template": "normal gait and station"
+                },
+                {
+                    "text": "normal gait",
+                    "template": "normal gait"
+                },
+                {
+                    "text": "normal station",
+                    "template": "normal station"
+                },
+                {
+                    "text": "pathological reflexes elicited",
+                    "template": "pathological reflexes elicited"
+                },
+                {
+                    "text": "no pathological reflexes elicited",
+                    "template": "no pathological reflexes elicited"
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Psychiatric",
+            "template": "PSYCH: {children}",
+            "children": [
+                {
+                    "text": "AO x 3",
+                    "template": "alert and oriented to time, place, and person"
+                },
+                {
+                    "text": "normal mood",
+                    "template": "normal mood"
+                },
+                {
+                    "text": "normal affect",
+                    "template": "normal affect"
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        }
+    ]
+}

+ 5811 - 0
storage/templates/exam-default/exam-cv-detail/cv-exam.json

@@ -0,0 +1,5811 @@
+{
+    "section": "exam-cv-detail",
+    "templateSet": "CV Exam",
+    "templates": [
+        {
+            "text": "1-Click normal exams",
+            "template": "{children}",
+            "children": [
+                {
+                    "text": "GEN: NAD",
+                    "template": "GEN: NAD"
+                },
+                {
+                    "text": "HEENT: no periorbital xanthelasma",
+                    "template": "HEENT: no periorbital xanthelasma"
+                },
+                {
+                    "text": "NECK: no increased JVP visible",
+                    "template": "NECK: no increased JVP visible"
+                },
+                {
+                    "text": "CAROTIDS: NL amp, no bruits BL",
+                    "template": "NECK: normal carotid pulse amplitude, no bruits bilaterally"
+                },
+                {
+                    "text": "RESP: CTA BL, no r\/w\/r",
+                    "template": "RESP: CTA BL, no r\/w\/r"
+                },
+                {
+                    "text": "CV: RRR, no m\/r\/g",
+                    "template": "CV: RRR, no m\/r\/g"
+                },
+                {
+                    "text": "CV: PMI nondisplaced, no heave\/thrill",
+                    "template": "CV: PMI nondisplaced, no heave\/thrill"
+                },
+                {
+                    "text": "GI: abd NT no masses\/ HSM",
+                    "template": "GI: abd NT no masses\/ HSM"
+                },
+                {
+                    "text": "EXT: peripheral pulses intact BL",
+                    "template": "EXT: peripheral pulses intact bilaterally"
+                },
+                {
+                    "text": "EXT: no C\/C\/E",
+                    "template": "EXT: no C\/C\/E"
+                },
+                {
+                    "text": "NEURO: AO x 3",
+                    "template": "NEURO: AO x 3"
+                },
+                {
+                    "text": "PSYCH: mood and affect NL",
+                    "template": "PSYCH: mood and affect NL"
+                }
+            ]
+        },
+        {
+            "text": "General",
+            "template": "GEN: {children}",
+            "children": [
+                {
+                    "text": "NAD",
+                    "template": "NAD"
+                },
+                {
+                    "text": "cooperative with exam",
+                    "template": "cooperative with exam"
+                },
+                {
+                    "text": "well groomed",
+                    "template": "well groomed"
+                },
+                {
+                    "text": "well developed",
+                    "template": "well developed"
+                },
+                {
+                    "text": "well nourished",
+                    "template": "well nourished"
+                },
+                {
+                    "text": "in apparent distress",
+                    "template": "in apparent distress"
+                },
+                {
+                    "text": "uncomfortable",
+                    "template": "uncomfortable",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "uncooperative with exam",
+                    "template": "uncooperative with exam",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "disheveled",
+                    "template": "disheveled",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "overweight",
+                    "template": "overweight",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "obese",
+                    "template": "obese",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "morbidly obese",
+                    "template": "morbidly obese",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "emaciated",
+                    "template": "emaciated"
+                },
+                {
+                    "text": "appears to be stated age",
+                    "template": "appears to be stated age"
+                },
+                {
+                    "text": "appears older than stated age",
+                    "template": "appears older than stated age"
+                },
+                {
+                    "text": "appears younger than stated age",
+                    "template": "appears younger than stated age"
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "HEENT",
+            "template": "HEENT: {children}",
+            "children": [
+                {
+                    "text": "NCAT",
+                    "template": "Head normocephalic, atraumatic"
+                },
+                {
+                    "text": "head normocephalic",
+                    "template": "head normocephalic"
+                },
+                {
+                    "text": "head atraumatic",
+                    "template": "head atraumatic"
+                },
+                {
+                    "text": "EOMI",
+                    "template": "EOMI"
+                },
+                {
+                    "text": "PERRLA",
+                    "template": "PERRLA"
+                },
+                {
+                    "text": "hearing grossly intact",
+                    "template": "hearing grossly intact"
+                },
+                {
+                    "text": "normal dentition",
+                    "template": "normal dentition"
+                },
+                {
+                    "text": "normal gums",
+                    "template": "normal gums"
+                },
+                {
+                    "text": "mucous membranes moist",
+                    "template": "mucous membranes moist"
+                },
+                {
+                    "text": "pharynx unremarkable",
+                    "template": "pharynx unremarkable"
+                },
+                {
+                    "text": "facial edema",
+                    "template": "facial edema",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "plethora",
+                    "template": "plethora",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "scleral icterus",
+                    "template": "scleral icterus",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "pale conjunctivae",
+                    "template": "pale conjunctivae",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "periorbital xanthelasma",
+                    "template": "periorbital xanthelasma",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "periorbital edema",
+                    "template": "periorbital edema",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Fundoscopy, right eye",
+                    "template": "Fundoscopy, right eye: {children}",
+                    "children": [
+                        {
+                            "text": "normal",
+                            "template": "normal"
+                        },
+                        {
+                            "text": "discs flat",
+                            "template": "discs flat"
+                        },
+                        {
+                            "text": "discs sharp",
+                            "template": "discs sharp"
+                        },
+                        {
+                            "text": "AV nicking",
+                            "template": "AV nicking",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "exudates",
+                            "template": "exudates",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hemorrhages",
+                            "template": "hemorrhages",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Fundoscopy, left eye",
+                    "template": "Fundoscopy, left eye: {children}",
+                    "children": [
+                        {
+                            "text": "normal",
+                            "template": "normal"
+                        },
+                        {
+                            "text": "discs flat",
+                            "template": "discs flat"
+                        },
+                        {
+                            "text": "discs sharp",
+                            "template": "discs sharp"
+                        },
+                        {
+                            "text": "AV nicking",
+                            "template": "AV nicking",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "exudates",
+                            "template": "exudates",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hemorrhages",
+                            "template": "hemorrhages",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Fundoscopy, bilateral",
+                    "template": "Fundoscopy, bilateral: {children}",
+                    "children": [
+                        {
+                            "text": "normal",
+                            "template": "normal"
+                        },
+                        {
+                            "text": "discs flat",
+                            "template": "discs flat"
+                        },
+                        {
+                            "text": "discs sharp",
+                            "template": "discs sharp"
+                        },
+                        {
+                            "text": "AV nicking",
+                            "template": "AV nicking",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "exudates",
+                            "template": "exudates",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hemorrhages",
+                            "template": "hemorrhages",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "perioral cyanosis",
+                    "template": "perioral cyanosis",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "perioral pallor",
+                    "template": "perioral pallor",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "mucosal petechiae",
+                    "template": "mucosal petechiae",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Neck",
+            "template": "NECK: {children}",
+            "children": [
+                {
+                    "text": "full range of motion",
+                    "template": "full range of motion"
+                },
+                {
+                    "text": "trachea midline",
+                    "template": "trachea midline"
+                },
+                {
+                    "text": "trachea deviated to the right",
+                    "template": "trachea deviated to the right"
+                },
+                {
+                    "text": "trachea deviated to the left",
+                    "template": "trachea deviated to the left"
+                },
+                {
+                    "text": "no increased JVP visible",
+                    "template": "no increased JVP visible"
+                },
+                {
+                    "text": "increased JVP visible",
+                    "template": "increased JVP visible"
+                },
+                {
+                    "text": "JVP level (cm)",
+                    "template": "JVP elevated at {text}",
+                    "type": "number"
+                },
+                {
+                    "text": "JVP inspiratory rise (paradoxical)",
+                    "template": "JVP inspiratory rise (paradoxical)",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "hepatojugular reflux",
+                    "template": "hepatojugular reflux",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "right carotid bruit",
+                    "template": "right carotid bruit",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "left carotid bruit",
+                    "template": "left carotid bruit",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "BL carotid bruits",
+                    "template": "BL carotid bruits",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "thyromegaly",
+                    "template": "thyromegaly",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Respiratory\/Chest Wall",
+            "template": "RESP: {children}",
+            "children": [
+                {
+                    "text": "no respiratory distress",
+                    "template": "no respiratory distress"
+                },
+                {
+                    "text": "auscultation clear BL",
+                    "template": "clear to auscultation bilaterally"
+                },
+                {
+                    "text": "no wheezes\/rales\/rhonchi",
+                    "template": "no wheezes\/rales\/rhonchi"
+                },
+                {
+                    "text": "percussion clear BL",
+                    "template": "clear to percussion bilaterally"
+                },
+                {
+                    "text": "chest wall symmetric",
+                    "template": "chest wall symmetric"
+                },
+                {
+                    "text": "barrel chest",
+                    "template": "barrel chest",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "pectus excavatum",
+                    "template": "pectus excavatum",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "pectus carinatum",
+                    "template": "pectus carinatum",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "kyphosis",
+                    "template": "kyphosis",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "scoliosis",
+                    "template": "scoliosis",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "subcutaneous emphysema",
+                    "template": "subcutaneous emphysema",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Abnl lung sounds, R",
+                    "template": "Abnl lung sounds, R: {children}",
+                    "children": [
+                        {
+                            "text": "whoop",
+                            "template": "whoop",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "stridor",
+                            "template": "stridor",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pleural rub",
+                            "template": "pleural rub",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wheezes, expiratory",
+                            "template": "expiratory wheezes",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "basilar rales",
+                            "template": "basilar rales"
+                        },
+                        {
+                            "text": "rales scattered",
+                            "template": "scattered rales"
+                        },
+                        {
+                            "text": "rhonchi scattered",
+                            "template": "scattered rhonchi"
+                        },
+                        {
+                            "text": "diminished breath sounds throughout",
+                            "template": "diminished breath sounds throughout"
+                        },
+                        {
+                            "text": "diminished breath sounds at bases",
+                            "template": "diminished breath sounds at bases"
+                        }
+                    ]
+                },
+                {
+                    "text": "Abnl lung sounds, L",
+                    "template": "Abnl lung sounds, L: {children}",
+                    "children": [
+                        {
+                            "text": "whoop",
+                            "template": "whoop",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "stridor",
+                            "template": "stridor",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pleural rub",
+                            "template": "pleural rub",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wheezes, expiratory",
+                            "template": "expiratory wheezes",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "basilar rales",
+                            "template": "basilar rales"
+                        },
+                        {
+                            "text": "rales scattered",
+                            "template": "scattered rales"
+                        },
+                        {
+                            "text": "rhonchi scattered",
+                            "template": "scattered rhonchi"
+                        },
+                        {
+                            "text": "diminished breath sounds throughout",
+                            "template": "diminished breath sounds throughout"
+                        },
+                        {
+                            "text": "diminished breath sounds at bases",
+                            "template": "diminished breath sounds at bases"
+                        }
+                    ]
+                },
+                {
+                    "text": "Abnl lung sounds, BL",
+                    "template": "Abnl lung sounds, BL: {children}",
+                    "children": [
+                        {
+                            "text": "whoop",
+                            "template": "whoop",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "stridor",
+                            "template": "stridor",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pleural rub",
+                            "template": "pleural rub",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wheezes, expiratory",
+                            "template": "expiratory wheezes",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "basilar rales",
+                            "template": "basilar rales"
+                        },
+                        {
+                            "text": "rales scattered",
+                            "template": "scattered rales"
+                        },
+                        {
+                            "text": "rhonchi scattered",
+                            "template": "scattered rhonchi"
+                        },
+                        {
+                            "text": "diminished breath sounds throughout",
+                            "template": "diminished breath sounds throughout"
+                        },
+                        {
+                            "text": "diminished breath sounds at bases",
+                            "template": "diminished breath sounds at bases"
+                        }
+                    ]
+                },
+                {
+                    "text": "Percussion, R",
+                    "template": "Percussion, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal to percussion",
+                            "template": "normal to percussion"
+                        },
+                        {
+                            "text": "dullness to percussion at base",
+                            "template": "dullness to percussion at base"
+                        },
+                        {
+                            "text": "dullness throughout",
+                            "template": "dullness to percussion throughout"
+                        }
+                    ]
+                },
+                {
+                    "text": "Percussion, L",
+                    "template": "Percussion, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal to percussion",
+                            "template": "normal to percussion"
+                        },
+                        {
+                            "text": "dullness to percussion at base",
+                            "template": "dullness to percussion at base"
+                        },
+                        {
+                            "text": "dullness throughout",
+                            "template": "dullness to percussion throughout"
+                        }
+                    ]
+                },
+                {
+                    "text": "Percussion, BL",
+                    "template": "Percussion, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal to percussion",
+                            "template": "normal to percussion"
+                        },
+                        {
+                            "text": "dullness to percussion at base",
+                            "template": "dullness to percussion at base"
+                        },
+                        {
+                            "text": "dullness throughout",
+                            "template": "dullness to percussion throughout"
+                        }
+                    ]
+                },
+                {
+                    "text": "Breathing dynamics, R",
+                    "template": "Breathing dynamics, R: {children}",
+                    "children": [
+                        {
+                            "text": "labored breathing",
+                            "template": "labored breathing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "accessory muscle use",
+                            "template": "accessory muscle use",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "rib retractions",
+                            "template": "rib retractions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abnormal diaphragm mvt",
+                            "template": "abnormal diaphragm movement",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Breathing dynamics, L",
+                    "template": "Breathing dynamics, L: {children}",
+                    "children": [
+                        {
+                            "text": "labored breathing",
+                            "template": "labored breathing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "accessory muscle use",
+                            "template": "accessory muscle use",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "rib retractions",
+                            "template": "rib retractions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abnormal diaphragm mvt",
+                            "template": "abnormal diaphragm movement",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Breathing dynamics, BL",
+                    "template": "Breathing dynamics, BL: {children}",
+                    "children": [
+                        {
+                            "text": "labored breathing",
+                            "template": "labored breathing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "accessory muscle use",
+                            "template": "accessory muscle use",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "rib retractions",
+                            "template": "rib retractions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abnormal diaphragm mvt",
+                            "template": "abnormal diaphragm movement",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Chest wall tenderness, R",
+                    "template": "Chest wall tenderness, R: {children}",
+                    "children": [
+                        {
+                            "text": "anterior",
+                            "template": "anterior"
+                        },
+                        {
+                            "text": "posterior",
+                            "template": "posterior"
+                        },
+                        {
+                            "text": "lateral",
+                            "template": "lateral"
+                        },
+                        {
+                            "text": "costochondral junction",
+                            "template": "costochondral junction"
+                        }
+                    ]
+                },
+                {
+                    "text": "Chest wall tenderness, L",
+                    "template": "Chest wall tenderness, L: {children}",
+                    "children": [
+                        {
+                            "text": "anterior",
+                            "template": "anterior"
+                        },
+                        {
+                            "text": "posterior",
+                            "template": "posterior"
+                        },
+                        {
+                            "text": "lateral",
+                            "template": "lateral"
+                        },
+                        {
+                            "text": "costochondral junction",
+                            "template": "costochondral junction"
+                        }
+                    ]
+                },
+                {
+                    "text": "Chest wall tenderness, BL",
+                    "template": "Chest wall tenderness, BL: {children}",
+                    "children": [
+                        {
+                            "text": "anterior",
+                            "template": "anterior"
+                        },
+                        {
+                            "text": "posterior",
+                            "template": "posterior"
+                        },
+                        {
+                            "text": "lateral",
+                            "template": "lateral"
+                        },
+                        {
+                            "text": "costochondral junction",
+                            "template": "costochondral junction"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Cardiovascular",
+            "template": "CV: {children}",
+            "children": [
+                {
+                    "text": "RRR, no murmur\/rub\/gallop",
+                    "template": "RRR, no murmur\/rub\/gallop"
+                },
+                {
+                    "text": "regular rate and rhythm",
+                    "template": "regular rate and rhythm"
+                },
+                {
+                    "text": "regular rate",
+                    "template": "regular rate"
+                },
+                {
+                    "text": "regular rhythm",
+                    "template": "regular rhythm"
+                },
+                {
+                    "text": "irregular rhythm",
+                    "template": "irregular rhythm"
+                },
+                {
+                    "text": "bradycardia",
+                    "template": "bradycardia",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "tachycardia",
+                    "template": "tachycardia",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "paced rhythm",
+                    "template": "paced rhythm",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "no murmurs",
+                    "template": "no murmurs"
+                },
+                {
+                    "text": "no increased JVP visible",
+                    "template": "no increased JVP visible"
+                },
+                {
+                    "text": "PMI nondisplaced",
+                    "template": "PMI nondisplaced"
+                },
+                {
+                    "text": "S1, S2 findings",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "NL S1",
+                            "template": "NL S1"
+                        },
+                        {
+                            "text": "NL S2",
+                            "template": "NL S2"
+                        },
+                        {
+                            "text": "split S2",
+                            "template": "split S2"
+                        },
+                        {
+                            "text": "split S1",
+                            "template": "split S1"
+                        },
+                        {
+                            "text": "persistently split S2",
+                            "template": "persistently split S2"
+                        },
+                        {
+                            "text": "physiologically split S2",
+                            "template": "physiologically split S2"
+                        },
+                        {
+                            "text": "paradoxically split S2",
+                            "template": "paradoxically split S2"
+                        },
+                        {
+                            "text": "widely split S2",
+                            "template": "widely split S2"
+                        }
+                    ]
+                },
+                {
+                    "text": "S3 gallop",
+                    "template": "S3 gallop",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "S4 gallop",
+                    "template": "S4 gallop",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Murmur grade",
+                    "template": "murmur grade: {text}\/6",
+                    "type": "number"
+                },
+                {
+                    "text": "Murmur timing\/location",
+                    "template": "murmur {children}",
+                    "children": [
+                        {
+                            "text": "systolic",
+                            "template": "is systolic"
+                        },
+                        {
+                            "text": "diastolic",
+                            "template": "is diastolic"
+                        },
+                        {
+                            "text": "holosystolic",
+                            "template": "is holosystolic"
+                        },
+                        {
+                            "text": "continuous",
+                            "template": "is continuous"
+                        },
+                        {
+                            "text": "best: L sternal border",
+                            "template": "best heard at L sternal border"
+                        },
+                        {
+                            "text": "best: 2nd R ICS",
+                            "template": "best heard near 2nd R ICS"
+                        },
+                        {
+                            "text": "best: xiphoid\/ sternal area",
+                            "template": "best heard at xiphoid\/sternal area"
+                        },
+                        {
+                            "text": "best: apex",
+                            "template": "best heard at apex"
+                        },
+                        {
+                            "text": "best: R sternal border",
+                            "template": "best heard at R sternal border"
+                        },
+                        {
+                            "text": "nonradiating",
+                            "template": "nonradiating"
+                        },
+                        {
+                            "text": "radiates to axilla",
+                            "template": "radiates to axilla"
+                        },
+                        {
+                            "text": "radiates to apex",
+                            "template": "radiates to apex"
+                        },
+                        {
+                            "text": "radiates to carotids",
+                            "template": "radiates to carotids"
+                        },
+                        {
+                            "text": "radiates to R side",
+                            "template": "radiates to R side"
+                        },
+                        {
+                            "text": "radiates to sternum",
+                            "template": "radiates to sternum"
+                        },
+                        {
+                            "text": "radiates to L clavicular area",
+                            "template": "radiates to L clavicular area"
+                        }
+                    ]
+                },
+                {
+                    "text": "JVP level (cm)",
+                    "template": "JVP {text} cm above the sternal angle",
+                    "type": "number"
+                },
+                {
+                    "text": "Heaves, Thrills, Lifts",
+                    "template": "CV: {children}",
+                    "children": [
+                        {
+                            "text": "heave",
+                            "template": "heave",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "parasternal lift",
+                            "template": "parasternal lift",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "thrill",
+                            "template": "thrill",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Extra heart sounds",
+                    "template": "CV: {children}",
+                    "children": [
+                        {
+                            "text": "extra heart sounds",
+                            "template": "extra heart sounds",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pulmonary ejection sound",
+                            "template": "pulmonary ejection sound",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "aortic ejection sound",
+                            "template": "aortic ejection sound",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "systolic click",
+                            "template": "systolic click",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "midsystolic click",
+                            "template": "midsystolic click",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mid-late systolic click",
+                            "template": "mid-to-late systolic click",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pericardial rub",
+                            "template": "pericardial rub",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "knock",
+                            "template": "knock",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "opening snap",
+                            "template": "opening snap",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "plop",
+                            "template": "plop",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "prosthetic sounds",
+                            "template": "prosthetic sounds",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pacemaker sounds",
+                            "template": "pacemaker sounds",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "PMI displaced",
+                    "template": "CV: PMI displaced",
+                    "children": [
+                        {
+                            "text": "laterally",
+                            "template": "laterally"
+                        },
+                        {
+                            "text": "inferiorly",
+                            "template": "inferiorly"
+                        },
+                        {
+                            "text": "superiorly",
+                            "template": "superiorly"
+                        },
+                        {
+                            "text": "parasternally",
+                            "template": "parasternally"
+                        }
+                    ]
+                },
+                {
+                    "text": "Peripheral pulses, R",
+                    "template": "Peripheral pulses, R: {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity normal",
+                            "template": "upper extremity normal"
+                        },
+                        {
+                            "text": "lower extremity normal",
+                            "template": "lower extremity normal"
+                        },
+                        {
+                            "text": "diminished upper ext.",
+                            "template": "diminished in upper extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished lower ext.",
+                            "template": "diminished in lower extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pulsus paradoxicus",
+                            "template": "pulsus paradoxicus",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Peripheral pulses, L",
+                    "template": "Peripheral pulses, L: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact"
+                        },
+                        {
+                            "text": "upper extremity normal",
+                            "template": "upper extremity normal"
+                        },
+                        {
+                            "text": "lower extremity normal",
+                            "template": "lower extremity normal"
+                        },
+                        {
+                            "text": "diminished upper ext.",
+                            "template": "diminished in upper extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished lower ext.",
+                            "template": "diminished in lower extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pulsus paradoxicus",
+                            "template": "pulsus paradoxicus",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Peripheral pulses, BL",
+                    "template": "Peripheral pulses, BL: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact"
+                        },
+                        {
+                            "text": "upper extremity normal",
+                            "template": "upper extremity normal"
+                        },
+                        {
+                            "text": "lower extremity normal",
+                            "template": "lower extremity normal"
+                        },
+                        {
+                            "text": "diminished upper ext.",
+                            "template": "diminished in upper extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished lower ext.",
+                            "template": "diminished in lower extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pulsus paradoxicus",
+                            "template": "pulsus paradoxicus",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Xanthomas, R",
+                    "template": "Xanthomas, R: {children}",
+                    "children": [
+                        {
+                            "text": "eyelids",
+                            "template": "eyelids"
+                        },
+                        {
+                            "text": "periorbital",
+                            "template": "periorbital area"
+                        },
+                        {
+                            "text": "hands",
+                            "template": "hands"
+                        },
+                        {
+                            "text": "achilles tendons",
+                            "template": "achilles tendons"
+                        },
+                        {
+                            "text": "feet",
+                            "template": "feet"
+                        },
+                        {
+                            "text": "elbows",
+                            "template": "elbows"
+                        },
+                        {
+                            "text": "knees",
+                            "template": "knees"
+                        },
+                        {
+                            "text": "shoulders",
+                            "template": "shoulders"
+                        },
+                        {
+                            "text": "buttocks",
+                            "template": "buttocks"
+                        }
+                    ]
+                },
+                {
+                    "text": "Xanthomas, L",
+                    "template": "Xanthomas, L: {children}",
+                    "children": [
+                        {
+                            "text": "eyelids",
+                            "template": "eyelids"
+                        },
+                        {
+                            "text": "periorbital",
+                            "template": "periorbital area"
+                        },
+                        {
+                            "text": "hands",
+                            "template": "hands"
+                        },
+                        {
+                            "text": "achilles tendons",
+                            "template": "achilles tendons"
+                        },
+                        {
+                            "text": "feet",
+                            "template": "feet"
+                        },
+                        {
+                            "text": "elbows",
+                            "template": "elbows"
+                        },
+                        {
+                            "text": "knees",
+                            "template": "knees"
+                        },
+                        {
+                            "text": "shoulders",
+                            "template": "shoulders"
+                        },
+                        {
+                            "text": "buttocks",
+                            "template": "buttocks"
+                        }
+                    ]
+                },
+                {
+                    "text": "Xanthomas, BL",
+                    "template": "Xanthomas, BL: {children}",
+                    "children": [
+                        {
+                            "text": "eyelids",
+                            "template": "eyelids"
+                        },
+                        {
+                            "text": "periorbital",
+                            "template": "periorbital area"
+                        },
+                        {
+                            "text": "hands",
+                            "template": "hands"
+                        },
+                        {
+                            "text": "achilles tendons",
+                            "template": "achilles tendons"
+                        },
+                        {
+                            "text": "feet",
+                            "template": "feet"
+                        },
+                        {
+                            "text": "elbows",
+                            "template": "elbows"
+                        },
+                        {
+                            "text": "knees",
+                            "template": "knees"
+                        },
+                        {
+                            "text": "shoulders",
+                            "template": "shoulders"
+                        },
+                        {
+                            "text": "buttocks",
+                            "template": "buttocks"
+                        }
+                    ]
+                },
+                {
+                    "text": "LE venous stasis changes",
+                    "template": "LE venous stasis changes",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "varicose veins",
+                    "template": "varicose veins",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "LE varicose veins, R",
+                    "template": "LE varicose veins, R",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "LE varicose veins, L",
+                    "template": "LE varicose veins, L",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "LE varicose veins, BL",
+                    "template": "LE varicose veins, BL",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Cardiovascular, pulses",
+            "template": "CV: {children}",
+            "children": [
+                {
+                    "text": "pulse rate and rhythm regular",
+                    "template": "pulse rate and rhythm regular"
+                },
+                {
+                    "text": "pulse rate regular",
+                    "template": "pulse rate regular"
+                },
+                {
+                    "text": "pulse rhythm regular",
+                    "template": "pulse rhythm regular"
+                },
+                {
+                    "text": "irregular rhythm",
+                    "template": "irregular rhythm"
+                },
+                {
+                    "text": "irregularly irregular rhythm",
+                    "template": "irregularly irregular rhythm"
+                },
+                {
+                    "text": "bradycardia",
+                    "template": "bradycardia",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "tachycardia",
+                    "template": "tachycardia",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "paced rhythm",
+                    "template": "paced rhythm"
+                },
+                {
+                    "text": "Temporal artery, R",
+                    "template": "Temporal artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Temporal artery, L",
+                    "template": "Temporal artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Temporal arteries, BL",
+                    "template": "Temporal arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Carotid artery, R",
+                    "template": "Carotid artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "delayed upstroke",
+                            "template": "delayed upstroke"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Carotid artery, L",
+                    "template": "Carotid artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "delayed upstroke",
+                            "template": "delayed upstroke"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Carotid arteries, BL",
+                    "template": "Carotid arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "delayed upstroke",
+                            "template": "delayed upstroke"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Brachial artery, R",
+                    "template": "Brachial artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Brachial artery, L",
+                    "template": "Brachial artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Brachial arteries, BL",
+                    "template": "Brachial arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Radial artery, R",
+                    "template": "Radial artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "waterhammer",
+                            "template": "waterhammer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bisferiens",
+                            "template": "bisferiens",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Radial artery, L",
+                    "template": "Radial artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "waterhammer",
+                            "template": "waterhammer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bisferiens",
+                            "template": "bisferiens",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Radial arteries, BL",
+                    "template": "Radial arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "waterhammer",
+                            "template": "waterhammer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bisferiens",
+                            "template": "bisferiens",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Femoral artery, R",
+                    "template": "Femoral artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Femoral artery, L",
+                    "template": "Femoral artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Femoral arteries, BL",
+                    "template": "Femoral arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Popliteal artery, R",
+                    "template": "Popliteal artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Popliteal artery, L",
+                    "template": "Popliteal artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Popliteal arteries, BL",
+                    "template": "Popliteal arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Dorsalis pedis artery, R",
+                    "template": "Dorsalis pedis artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Dorsalis pedis artery, L",
+                    "template": "Dorsalis pedis artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Dorsalis pedis arteries, BL",
+                    "template": "Dorsalis pedis arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Posterior tibial, R",
+                    "template": "Posterior tibial, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Posterior tibial, L",
+                    "template": "Posterior tibial, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Posterior tibial arteries, BL",
+                    "template": "Posterior tibial arteries, BL {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Renal artery, R",
+                    "template": "Renal artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "bruit",
+                            "template": "bruit",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "palpable pulse",
+                            "template": "palpable pulse",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Renal artery, L",
+                    "template": "Renal artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "bruit",
+                            "template": "bruit",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "palpable pulse",
+                            "template": "palpable pulse",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Renal arteries, BL",
+                    "template": "Renal arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "bruit",
+                            "template": "bruit",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "palpable pulse",
+                            "template": "palpable pulse",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Aorta",
+                    "template": "Aorta: {children}",
+                    "children": [
+                        {
+                            "text": "enlargement",
+                            "template": "enlargement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Gastrointestinal",
+            "template": "GI: {children}",
+            "children": [
+                {
+                    "text": "NL abdominal inspection",
+                    "template": "NL abdominal inspection"
+                },
+                {
+                    "text": "abdominal distension noted",
+                    "template": "abdominal distension noted"
+                },
+                {
+                    "text": "abdomen flat on inspection",
+                    "template": "abdomen flat on inspection"
+                },
+                {
+                    "text": "abdomen obese on inspection",
+                    "template": "abdomen obese on inspection"
+                },
+                {
+                    "text": "abdomen scaphoid on inspection",
+                    "template": "abdomen scaphoid on inspection"
+                },
+                {
+                    "text": "bowel sounds intact throughout",
+                    "template": "bowel sounds intact throughout"
+                },
+                {
+                    "text": "decreased bowel sounds",
+                    "template": "decreased bowel sounds",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "absent bowel sounds",
+                    "template": "absent bowel sounds"
+                },
+                {
+                    "text": "high pitched bowel sounds",
+                    "template": "high pitched bowel sounds",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "borborygmi",
+                    "template": "borborygmi",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "soft, nontender to palpation",
+                    "template": "soft, nontender to palpation"
+                },
+                {
+                    "text": "no rebound\/guarding\/rigidity",
+                    "template": "no rebound\/guarding\/rigidity"
+                },
+                {
+                    "text": "rebound",
+                    "template": "rebound",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "guarding",
+                    "template": "guarding",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "rigidity",
+                    "template": "rigidity",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "hepatomegaly",
+                    "template": "hepatomegaly",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "splenomegaly",
+                    "template": "splenomegaly",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "masses",
+                    "template": "masses",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Abdominal exam - tenderness",
+                    "template": "Abdominal pain: {children}",
+                    "children": [
+                        {
+                            "text": "no tenderness noted on exam",
+                            "template": "no tenderness noted on exam"
+                        },
+                        {
+                            "text": "tenderness at rest",
+                            "template": "tenderness present at rest",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tenderness with palpation",
+                            "template": "tenderness present with palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tenderness with movement",
+                            "template": "tenderness present with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mild",
+                            "template": "mild pain present"
+                        },
+                        {
+                            "text": "moderate",
+                            "template": "moderate pain present"
+                        },
+                        {
+                            "text": "severe",
+                            "template": "severe pain present"
+                        },
+                        {
+                            "text": "present throughout",
+                            "template": "pain present throughout"
+                        },
+                        {
+                            "text": "right sided tenderness",
+                            "template": "right sided tenderness present"
+                        },
+                        {
+                            "text": "left sided tenderness",
+                            "template": "left sided tenderness present"
+                        },
+                        {
+                            "text": "midepigastric tenderness",
+                            "template": "midepigastric tenderness present"
+                        },
+                        {
+                            "text": "RUQ tenderness",
+                            "template": "RUQ tenderness present"
+                        },
+                        {
+                            "text": "LUQ tenderness",
+                            "template": "LUQ tenderness present"
+                        },
+                        {
+                            "text": "hypogastric tenderness",
+                            "template": "hypogastric tenderness present"
+                        },
+                        {
+                            "text": "RLQ tenderness",
+                            "template": "RLQ tenderness present"
+                        },
+                        {
+                            "text": "LLQ tenderness",
+                            "template": "LLQ tenderness present"
+                        },
+                        {
+                            "text": "periumbilical tenderness",
+                            "template": "periumbilical tenderness present"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "GU\/Rectal",
+            "template": "GU\/RECTAL: {children}",
+            "children": [
+                {
+                    "text": "Anorectal area",
+                    "template": "Anus\/rectum: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "NL tone",
+                            "template": "NL tone"
+                        },
+                        {
+                            "text": "stool positive for occult blood",
+                            "template": "stool positive for occult blood"
+                        },
+                        {
+                            "text": "stool negative for occult blood",
+                            "template": "stool negative for occult blood"
+                        },
+                        {
+                            "text": "gross blood noted on DRE",
+                            "template": "gross blood noted on DRE"
+                        }
+                    ]
+                },
+                {
+                    "text": "Rectal exam deferred",
+                    "template": "Rectal exam deferred: {children}",
+                    "children": [
+                        {
+                            "text": "not indicated",
+                            "template": "not indicated"
+                        },
+                        {
+                            "text": "refused by patient",
+                            "template": "refused by patient"
+                        },
+                        {
+                            "text": "unstable",
+                            "template": "deferred due to unstable clinical status"
+                        },
+                        {
+                            "text": "contraindicated",
+                            "template": "deferred due to clinical contraindication"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Dermatologic\/Lymphatic",
+            "template": "DERM: {children}",
+            "children": [
+                {
+                    "text": "diaphoresis",
+                    "template": "diaphoresis",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "periorbital xanthelasma",
+                    "template": "periorbital xanthelasma",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "xanthomas",
+                    "template": "xanthomas",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "cyanosis",
+                    "template": "cyanosis",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Cyanosis location",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "perioral cyanosis",
+                            "template": "perioral cyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acral cyanosis",
+                            "template": "acral cyanosis",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "decreased hair LE",
+                    "template": "decreased hair LE",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "stasis dermatitis R LE",
+                    "template": "stasis dermatitis R LE",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "stasis dermatitis L LE",
+                    "template": "stasis dermatitis L LE",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "dry skin",
+                    "template": "dry skin",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "clubbing",
+                    "template": "clubbing",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "petechiae",
+                    "template": "petechiae",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "lymphadenopathy",
+                    "template": "lymphadenopathy",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Extremities",
+            "template": "EXT: {children}",
+            "children": [
+                {
+                    "text": "no cyanosis\/clubbing\/ or edema",
+                    "template": "no cyanosis\/clubbing\/ or edema"
+                },
+                {
+                    "text": "full range of motion throughout",
+                    "template": "full range of motion throughout"
+                },
+                {
+                    "text": "upper ext strength intact BL",
+                    "template": "upper extremity strength intact BL"
+                },
+                {
+                    "text": "lower ext strength intact BL",
+                    "template": "lower extremity strength intact BL"
+                },
+                {
+                    "text": "cyanosis",
+                    "template": "cyanosis",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "clubbing",
+                    "template": "clubbing",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "edema",
+                    "template": "edema",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "anasarca",
+                    "template": "anasarca",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Nailfold angle",
+                    "template": "nailfold angle {text} degrees",
+                    "type": "number"
+                },
+                {
+                    "text": "Ratio DIP: interphalangeal depth",
+                    "template": "DIP to interphalangeal depth ratio {text}:1",
+                    "type": "number"
+                },
+                {
+                    "text": "Upper extremity c\/e\/c, R",
+                    "template": "Upper extremity clubbing\/edema\/cyanosis, R: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "1+",
+                            "template": "1+"
+                        },
+                        {
+                            "text": "2+",
+                            "template": "2+"
+                        },
+                        {
+                            "text": "3+",
+                            "template": "3+"
+                        },
+                        {
+                            "text": "4+",
+                            "template": "4+"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity c\/e\/c, L",
+                    "template": "Upper extremity clubbing\/edema\/cyanosis, L: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "1+",
+                            "template": "1+"
+                        },
+                        {
+                            "text": "2+",
+                            "template": "2+"
+                        },
+                        {
+                            "text": "3+",
+                            "template": "3+"
+                        },
+                        {
+                            "text": "4+",
+                            "template": "4+"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremities c\/e\/c, BL",
+                    "template": "Upper extremities clubbing\/edema\/cyanosis, BL: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "1+",
+                            "template": "1+"
+                        },
+                        {
+                            "text": "2+",
+                            "template": "2+"
+                        },
+                        {
+                            "text": "3+",
+                            "template": "3+"
+                        },
+                        {
+                            "text": "4+",
+                            "template": "4+"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity c\/e\/c, R",
+                    "template": "Lower extremity clubbing\/edema\/cyanosis, R: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "1+",
+                            "template": "1+"
+                        },
+                        {
+                            "text": "2+",
+                            "template": "2+"
+                        },
+                        {
+                            "text": "3+",
+                            "template": "3+"
+                        },
+                        {
+                            "text": "4+",
+                            "template": "4+"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity c\/e\/c, L",
+                    "template": "Lower extremity clubbing\/edema\/cyanosis, L: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "1+",
+                            "template": "1+"
+                        },
+                        {
+                            "text": "2+",
+                            "template": "2+"
+                        },
+                        {
+                            "text": "3+",
+                            "template": "3+"
+                        },
+                        {
+                            "text": "4+",
+                            "template": "4+"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremities c\/e\/c, BL",
+                    "template": "Lower extremities clubbing\/edema\/cyanosis, BL: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "1+",
+                            "template": "1+"
+                        },
+                        {
+                            "text": "2+",
+                            "template": "2+"
+                        },
+                        {
+                            "text": "3+",
+                            "template": "3+"
+                        },
+                        {
+                            "text": "4+",
+                            "template": "4+"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity ROM, R",
+                    "template": "Upper extremity, range of motion, R: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity ROM, L",
+                    "template": "Upper extremity, range of motion, L: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremities ROM, BL",
+                    "template": "Upper extremities, range of motion, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity ROM, R",
+                    "template": "Lower extremity, range of motion, R: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity ROM, L",
+                    "template": "Lower extremity, range of motion, L: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity ROM, BL",
+                    "template": "Lower extremity, range of motion, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity strength, R",
+                    "template": "Upper extremity strength, R: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity strength, L",
+                    "template": "Upper extremity strength, L: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity strength, BL",
+                    "template": "Upper extremity strength, BL: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity strength, R",
+                    "template": "Lower extremity strength, R: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity strength, L",
+                    "template": "Lower extremity strength, L: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity strength, BL",
+                    "template": "Lower extremity strength, BL: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Musculoskeletal",
+            "template": "MUSC\/SKEL: {children}",
+            "children": [
+                {
+                    "text": "muscle strength NL throughout",
+                    "template": "muscle strength NL throughout"
+                },
+                {
+                    "text": "NL upper extremity exam",
+                    "template": "Upper extremity exam normal bilaterally"
+                },
+                {
+                    "text": "NL lower extremity exam",
+                    "template": "Lower extremity exam normal bilaterally"
+                },
+                {
+                    "text": "Upper extremity, R",
+                    "template": "Upper extremity exam, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "strength and tone normal"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "passive ROM decreased",
+                            "template": "passive range of motion decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active ROM decreased",
+                            "template": "active range of motion decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity, L",
+                    "template": "Upper extremity exam, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "strength and tone normal"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "passive ROM decreased",
+                            "template": "passive range of motion decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active ROM decreased",
+                            "template": "active range of motion decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity, BL",
+                    "template": "Upper extremity exam, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "strength and tone normal"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "passive ROM decreased",
+                            "template": "passive range of motion decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active ROM decreased",
+                            "template": "active range of motion decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity, R",
+                    "template": "Lower extremity exam, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "strength and tone normal"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "passive ROM decreased",
+                            "template": "passive range of motion decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active ROM decreased",
+                            "template": "active range of motion decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity, L",
+                    "template": "Lower extremity exam, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "strength and tone normal"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "passive ROM decreased",
+                            "template": "passive range of motion decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active ROM decreased",
+                            "template": "active range of motion decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity, BL",
+                    "template": "Lower extremity exam, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "strength and tone normal"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "passive ROM decreased",
+                            "template": "passive range of motion decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active ROM decreased",
+                            "template": "active range of motion decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Back, R",
+                    "template": "Back exam, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "passive ROM decreased",
+                            "template": "passive range of motion decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active ROM decreased",
+                            "template": "active range of motion decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sacral edema",
+                            "template": "sacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "presacral edema",
+                            "template": "presacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "costovertebral angle tenderness",
+                            "template": "costovertebral angle tenderness",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Back, L",
+                    "template": "Back exam, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "passive ROM decreased",
+                            "template": "passive range of motion decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active ROM decreased",
+                            "template": "active range of motion decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sacral edema",
+                            "template": "sacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "presacral edema",
+                            "template": "presacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "costovertebral angle tenderness",
+                            "template": "costovertebral angle tenderness",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Back, BL",
+                    "template": "Back exam, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "passive ROM decreased",
+                            "template": "passive range of motion decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active ROM decreased",
+                            "template": "active range of motion decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sacral edema",
+                            "template": "sacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "presacral edema",
+                            "template": "presacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "costovertebral angle tenderness",
+                            "template": "costovertebral angle tenderness",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Neurologic: General",
+            "template": "NEURO: {children}",
+            "children": [
+                {
+                    "text": "CN II-XII intact and nonfocal",
+                    "template": "CN II-XII intact and nonfocal"
+                },
+                {
+                    "text": "Other detail",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Neuro: Deep tendon reflexes",
+            "template": "NEURO: {children}",
+            "children": [
+                {
+                    "text": "DTRs intact and equal BL throughout",
+                    "template": "DTRs intact and equal BL throughout"
+                },
+                {
+                    "text": "Brachioradialis reflex, R",
+                    "template": "R brachioradialis reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Brachioradialis reflex, L",
+                    "template": "L brachioradialis reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Brachioradialis reflex, BL",
+                    "template": "L brachioradialis reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Biceps reflex, R",
+                    "template": "R biceps reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Biceps reflex, L",
+                    "template": "L biceps reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Biceps reflex, BL",
+                    "template": "BL biceps reflexes {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Triceps reflex, R",
+                    "template": "R triceps reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Triceps reflex, L",
+                    "template": "L triceps reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Triceps reflex, BL",
+                    "template": "BL triceps reflexes {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Patellar reflex, R",
+                    "template": "R patellar reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Patellar reflex, L",
+                    "template": "L patellar reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Patellar reflex, BL",
+                    "template": "BL patellar reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Achilles reflex, R",
+                    "template": "R achilles reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Achilles reflex, L",
+                    "template": "L achilles reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Achilles reflex, BL",
+                    "template": "BL achilles reflexes {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Ankle reflex, R",
+                    "template": "R ankle reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Ankle reflex, L",
+                    "template": "L ankle reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Ankle reflex, BL",
+                    "template": "BL ankle reflexes {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other detail",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Neuro: Gait, Station",
+            "template": "NEURO: {children}",
+            "children": [
+                {
+                    "text": "normal gait and station",
+                    "template": "normal gait and station"
+                },
+                {
+                    "text": "normal gait",
+                    "template": "normal gait"
+                },
+                {
+                    "text": "normal station",
+                    "template": "normal station"
+                },
+                {
+                    "text": "Romberg test positive",
+                    "template": "Romberg test positive"
+                },
+                {
+                    "text": "Romberg test negative",
+                    "template": "Romberg test negative"
+                },
+                {
+                    "text": "Gait",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "broad based gait",
+                            "template": "broad based gait"
+                        },
+                        {
+                            "text": "shuffling gait",
+                            "template": "shuffling gait"
+                        },
+                        {
+                            "text": "shortened step length",
+                            "template": "shortened step length"
+                        },
+                        {
+                            "text": "limp, right",
+                            "template": "limp present (affecting right side)"
+                        },
+                        {
+                            "text": "limp, left",
+                            "template": "limp present (affecting left side)"
+                        },
+                        {
+                            "text": "wide based gait",
+                            "template": "wide based gait"
+                        },
+                        {
+                            "text": "gait accuracy intact",
+                            "template": "gait accuracy intact"
+                        },
+                        {
+                            "text": "staggering gait noted",
+                            "template": "staggering gait noted"
+                        },
+                        {
+                            "text": "tandem walking intact",
+                            "template": "tandem walking intact"
+                        },
+                        {
+                            "text": "tandem walking impaired",
+                            "template": "tandem walking impaired"
+                        },
+                        {
+                            "text": "toe walking noted",
+                            "template": "toe walking noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "Station",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "positive Romberg (eyes open)",
+                            "template": "positive Romberg (eyes open)"
+                        },
+                        {
+                            "text": "negative Romberg (eyes open)",
+                            "template": "negative Romberg (eyes open)"
+                        },
+                        {
+                            "text": "positive Romberg (eyes closed)",
+                            "template": "positive Romberg (eyes closed)"
+                        },
+                        {
+                            "text": "pronator drift, eyes open, right",
+                            "template": "pronator drift noted with eyes open (affecting right upper extremity)"
+                        },
+                        {
+                            "text": "pronator drift, eyes open, left",
+                            "template": "pronator drift noted with eyes open (affecting left upper extremity)"
+                        },
+                        {
+                            "text": "pronator drift, eyes closed, right",
+                            "template": "pronator drift noted with eyes closed (affecting right upper extremity)"
+                        },
+                        {
+                            "text": "pronator drift, eyes closed, left",
+                            "template": "pronator drift noted with eyes closed (affecting left upper extremity)"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other detail",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Neuro: Pathological reflexes",
+            "template": "NEURO: {children}",
+            "children": [
+                {
+                    "text": "no pathological reflexes elicited",
+                    "template": "no pathological reflexes elicited"
+                },
+                {
+                    "text": "Babinski reflex",
+                    "template": "Babinski reflex {children}",
+                    "children": [
+                        {
+                            "text": "elicted on the right",
+                            "template": "elicted on the right"
+                        },
+                        {
+                            "text": "not elicited on the right",
+                            "template": "not elicited on the right"
+                        },
+                        {
+                            "text": "elicited on the left",
+                            "template": "elicited on the left"
+                        },
+                        {
+                            "text": "not elicited on the left",
+                            "template": "not elicited on the left"
+                        },
+                        {
+                            "text": "elicited bilaterally",
+                            "template": "elicited bilaterally"
+                        },
+                        {
+                            "text": "absent bilaterally",
+                            "template": "absent bilaterally"
+                        }
+                    ]
+                },
+                {
+                    "text": "Glabellar reflex",
+                    "template": "glabellar reflex {children}",
+                    "children": [
+                        {
+                            "text": "elicted on the right",
+                            "template": "elicted on the right"
+                        },
+                        {
+                            "text": "not elicited on the right",
+                            "template": "not elicited on the right"
+                        },
+                        {
+                            "text": "elicited on the left",
+                            "template": "elicited on the left"
+                        },
+                        {
+                            "text": "not elicited on the left",
+                            "template": "not elicited on the left"
+                        },
+                        {
+                            "text": "elicited bilaterally",
+                            "template": "elicited bilaterally"
+                        },
+                        {
+                            "text": "absent bilaterally",
+                            "template": "absent bilaterally"
+                        }
+                    ]
+                },
+                {
+                    "text": "Palmomental reflex",
+                    "template": "palmomental reflex {children}",
+                    "children": [
+                        {
+                            "text": "elicted on the right",
+                            "template": "elicted on the right"
+                        },
+                        {
+                            "text": "not elicited on the right",
+                            "template": "not elicited on the right"
+                        },
+                        {
+                            "text": "elicited on the left",
+                            "template": "elicited on the left"
+                        },
+                        {
+                            "text": "not elicited on the left",
+                            "template": "not elicited on the left"
+                        },
+                        {
+                            "text": "elicited bilaterally",
+                            "template": "elicited bilaterally"
+                        },
+                        {
+                            "text": "absent bilaterally",
+                            "template": "absent bilaterally"
+                        }
+                    ]
+                },
+                {
+                    "text": "Snout reflex",
+                    "template": "snout reflex {children}",
+                    "children": [
+                        {
+                            "text": "elicted on the right",
+                            "template": "elicted on the right"
+                        },
+                        {
+                            "text": "not elicited on the right",
+                            "template": "not elicited on the right"
+                        },
+                        {
+                            "text": "elicited on the left",
+                            "template": "elicited on the left"
+                        },
+                        {
+                            "text": "not elicited on the left",
+                            "template": "not elicited on the left"
+                        },
+                        {
+                            "text": "elicited bilaterally",
+                            "template": "elicited bilaterally"
+                        },
+                        {
+                            "text": "absent bilaterally",
+                            "template": "absent bilaterally"
+                        }
+                    ]
+                },
+                {
+                    "text": "Root reflex",
+                    "template": "root reflex {children}",
+                    "children": [
+                        {
+                            "text": "elicted on the right",
+                            "template": "elicted on the right"
+                        },
+                        {
+                            "text": "not elicited on the right",
+                            "template": "not elicited on the right"
+                        },
+                        {
+                            "text": "elicited on the left",
+                            "template": "elicited on the left"
+                        },
+                        {
+                            "text": "not elicited on the left",
+                            "template": "not elicited on the left"
+                        },
+                        {
+                            "text": "elicited bilaterally",
+                            "template": "elicited bilaterally"
+                        },
+                        {
+                            "text": "absent bilaterally",
+                            "template": "absent bilaterally"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other detail",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Neuro: Sensory",
+            "template": "NEURO: {children}",
+            "children": [
+                {
+                    "text": "sensation grossly intact throughout",
+                    "template": "sensation grossly intact throughout"
+                },
+                {
+                    "text": "Sensation to light touch",
+                    "template": "sensation to light touch {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity, right intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, intact BL",
+                            "template": "intact in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "upper extremity, right diminished",
+                            "template": "diminished in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left diminished",
+                            "template": "diminished in left upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, diminished BL",
+                            "template": "diminished in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "lower extremity, right intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, intact BL",
+                            "template": "intact in the bilateral lower extremities"
+                        },
+                        {
+                            "text": "lower extremity, right diminished",
+                            "template": "diminished in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left diminished",
+                            "template": "diminished in left lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, diminished BL",
+                            "template": "diminished in the bilateral lower extremities"
+                        }
+                    ]
+                },
+                {
+                    "text": "Sensation to dull touch",
+                    "template": "sensation to dull touch {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity, right intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, intact BL",
+                            "template": "intact in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "upper extremity, right diminished",
+                            "template": "diminished in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left diminished",
+                            "template": "diminished in left upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, diminished BL",
+                            "template": "diminished in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "lower extremity, right intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, intact BL",
+                            "template": "intact in the bilateral lower extremities"
+                        },
+                        {
+                            "text": "lower extremity, right diminished",
+                            "template": "diminished in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left diminished",
+                            "template": "diminished in left lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, diminished BL",
+                            "template": "diminished in the bilateral lower extremities"
+                        }
+                    ]
+                },
+                {
+                    "text": "Sensation to cold temperature",
+                    "template": "sensation to cold temperature {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity, right intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, intact BL",
+                            "template": "intact in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "upper extremity, right diminished",
+                            "template": "diminished in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left diminished",
+                            "template": "diminished in left upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, diminished BL",
+                            "template": "diminished in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "lower extremity, right intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, intact BL",
+                            "template": "intact in the bilateral lower extremities"
+                        },
+                        {
+                            "text": "lower extremity, right diminished",
+                            "template": "diminished in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left diminished",
+                            "template": "diminished in left lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, diminished BL",
+                            "template": "diminished in the bilateral lower extremities"
+                        }
+                    ]
+                },
+                {
+                    "text": "Sensation to warm temperature",
+                    "template": "sensation to warm temperature {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity, right intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, intact BL",
+                            "template": "intact in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "upper extremity, right diminished",
+                            "template": "diminished in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left diminished",
+                            "template": "diminished in left upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, diminished BL",
+                            "template": "diminished in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "lower extremity, right intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, intact BL",
+                            "template": "intact in the bilateral lower extremities"
+                        },
+                        {
+                            "text": "lower extremity, right diminished",
+                            "template": "diminished in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left diminished",
+                            "template": "diminished in left lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, diminished BL",
+                            "template": "diminished in the bilateral lower extremities"
+                        }
+                    ]
+                },
+                {
+                    "text": "Vibratory sensation",
+                    "template": "vibratory sensation {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity, right intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, intact BL",
+                            "template": "intact in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "upper extremity, right diminished",
+                            "template": "diminished in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left diminished",
+                            "template": "diminished in left upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, diminished BL",
+                            "template": "diminished in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "lower extremity, right intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, intact BL",
+                            "template": "intact in the bilateral lower extremities"
+                        },
+                        {
+                            "text": "lower extremity, right diminished",
+                            "template": "diminished in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left diminished",
+                            "template": "diminished in left lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, diminished BL",
+                            "template": "diminished in the bilateral lower extremities"
+                        }
+                    ]
+                },
+                {
+                    "text": "Stereognosis",
+                    "template": "stereognosis {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity, right intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, intact BL",
+                            "template": "intact in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "upper extremity, right diminished",
+                            "template": "diminished in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left diminished",
+                            "template": "diminished in left upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, diminished BL",
+                            "template": "diminished in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "lower extremity, right intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, intact BL",
+                            "template": "intact in the bilateral lower extremities"
+                        },
+                        {
+                            "text": "lower extremity, right diminished",
+                            "template": "diminished in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left diminished",
+                            "template": "diminished in left lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, diminished BL",
+                            "template": "diminished in the bilateral lower extremities"
+                        }
+                    ]
+                },
+                {
+                    "text": "Paresthesias",
+                    "template": "parethesias present {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity, right",
+                            "template": "in the R upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left",
+                            "template": "in the L upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, bilateral",
+                            "template": "bilaterally in the upper extremities"
+                        },
+                        {
+                            "text": "lower extremity, right",
+                            "template": "in the R lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left",
+                            "template": "in the L lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, bilateral",
+                            "template": "bilaterally in the lower extremities"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other detail",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Psychiatric",
+            "template": "PSYCH: {children}",
+            "children": [
+                {
+                    "text": "AO x 3",
+                    "template": "alert and oriented to time, place, and person"
+                },
+                {
+                    "text": "normal mood",
+                    "template": "normal mood"
+                },
+                {
+                    "text": "normal affect",
+                    "template": "normal affect"
+                },
+                {
+                    "text": "disoriented",
+                    "template": "disoriented"
+                },
+                {
+                    "text": "depressed",
+                    "template": "appears depressed"
+                },
+                {
+                    "text": "not depressed",
+                    "template": "does not appear depressed"
+                },
+                {
+                    "text": "anxious",
+                    "template": "appears anxious"
+                },
+                {
+                    "text": "not anxious",
+                    "template": "does not appear anxious"
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        }
+    ]
+}

+ 12754 - 0
storage/templates/exam-default/exam-derm-detail/derm-exam.json

@@ -0,0 +1,12754 @@
+{
+    "section": "exam-derm-detail",
+    "templateSet": "DERM Exam",
+    "templates": [
+        {
+            "text": "1-Click normal exams",
+            "template": "{children}",
+            "children": [
+                {
+                    "text": "GEN: NAD",
+                    "template": "GEN: NAD"
+                },
+                {
+                    "text": "HEENT: no oral pallor\/cyanosis",
+                    "template": "HEENT: no oral pallor\/cyanosis"
+                },
+                {
+                    "text": "HEENT: mucous membranes moist",
+                    "template": "HEENT: mucous membranes moist"
+                },
+                {
+                    "text": "CV: no stasis changes, no varicosities",
+                    "template": "CV: no stasis changes, no varicosities"
+                },
+                {
+                    "text": "DERM: NL skin temp, hydration",
+                    "template": "DERM: NL skin temperature and hydration"
+                },
+                {
+                    "text": "DERM: NL hair texture",
+                    "template": "DERM: NL hair texture"
+                },
+                {
+                    "text": "DERM: no nail abnormalities",
+                    "template": "DERM: no nail abnormalities"
+                },
+                {
+                    "text": "DERM: no jaundice",
+                    "template": "DERM: no jaundice"
+                },
+                {
+                    "text": "DERM: no pallor",
+                    "template": "DERM: no pallor"
+                },
+                {
+                    "text": "DERM: no xanthomas",
+                    "template": "DERM: no xanthomas"
+                },
+                {
+                    "text": "EXT: no C\/C\/E",
+                    "template": "EXT: no C\/C\/E"
+                }
+            ]
+        },
+        {
+            "text": "General",
+            "template": "GEN: {children}",
+            "children": [
+                {
+                    "text": "NAD",
+                    "template": "NAD"
+                },
+                {
+                    "text": "cooperative with exam",
+                    "template": "cooperative with exam"
+                },
+                {
+                    "text": "well groomed",
+                    "template": "well groomed",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "well developed",
+                    "template": "well developed",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "well nourished",
+                    "template": "well nourished",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "overweight",
+                    "template": "overweight",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "obese",
+                    "template": "obese",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "morbidly obese",
+                    "template": "morbidly obese",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "emaciated",
+                    "template": "emaciated"
+                },
+                {
+                    "text": "appears to be stated age",
+                    "template": "appears to be stated age"
+                },
+                {
+                    "text": "appears older than stated age",
+                    "template": "appears older than stated age"
+                },
+                {
+                    "text": "appears younger than stated age",
+                    "template": "appears younger than stated age",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "Other findings: {text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "HEENT",
+            "template": "HEENT: {children}",
+            "children": [
+                {
+                    "text": "head normocephalic, atraumatic",
+                    "template": "head normocephalic, atraumatic"
+                },
+                {
+                    "text": "EOMI",
+                    "template": "EOMI"
+                },
+                {
+                    "text": "PERRLA",
+                    "template": "PERRLA"
+                },
+                {
+                    "text": "scleral icterus",
+                    "template": "scleral icterus",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "pale conjunctivae",
+                    "template": "pale conjunctivae",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "hearing grossly intact",
+                    "template": "hearing grossly intact",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "normal dentition",
+                    "template": "normal dentition"
+                },
+                {
+                    "text": "normal lips",
+                    "template": "normal lips"
+                },
+                {
+                    "text": "normal gums",
+                    "template": "normal gums"
+                },
+                {
+                    "text": "pharynx unremarkable",
+                    "template": "pharynx unremarkable"
+                },
+                {
+                    "text": "mucous membranes moist",
+                    "template": "mucous membranes moist",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "frenular jaundice",
+                    "template": "frenular jaundice",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "Other findings: {text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Neck",
+            "template": "NECK: {children}",
+            "children": [
+                {
+                    "text": "soft, nontender",
+                    "template": "soft, nontender"
+                },
+                {
+                    "text": "no increased JVP visible",
+                    "template": "no increased JVP visible"
+                },
+                {
+                    "text": "hepatojugular reflex elicited",
+                    "template": "hepatojugular reflex elicited",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "no cervical LN",
+                    "template": "no significant cervical lymphadenopathy"
+                },
+                {
+                    "text": "neck not enlarged",
+                    "template": "neck not enlarged"
+                },
+                {
+                    "text": "obese neck",
+                    "template": "neck obesity",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "thyromegaly",
+                    "template": "thyromegaly",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Lymphadenopathy",
+                    "template": "{children} lymphadenopathy",
+                    "children": [
+                        {
+                            "text": "shotty cervical",
+                            "template": "shotty cervical"
+                        },
+                        {
+                            "text": "submental",
+                            "template": "submental"
+                        },
+                        {
+                            "text": "R submandibular",
+                            "template": "R submandibular"
+                        },
+                        {
+                            "text": "L submandibular",
+                            "template": "L submandibular"
+                        },
+                        {
+                            "text": "R ant. cervical",
+                            "template": "R anterior cervical"
+                        },
+                        {
+                            "text": "L ant. cervical",
+                            "template": "L anterior cervical"
+                        },
+                        {
+                            "text": "R preauricular",
+                            "template": "R preauricular"
+                        },
+                        {
+                            "text": "L preauricular",
+                            "template": "L preauricular"
+                        },
+                        {
+                            "text": "R post. auricular",
+                            "template": "R posterior auricular"
+                        },
+                        {
+                            "text": "L post. auricular",
+                            "template": "L posterior auricular"
+                        },
+                        {
+                            "text": "R supraclavicular",
+                            "template": "R supraclavicular"
+                        },
+                        {
+                            "text": "L supraclavicular",
+                            "template": "L supraclavicular"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "Other findings: {text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Respiratory",
+            "template": "RESP: {children}",
+            "children": [
+                {
+                    "text": "no respiratory distress",
+                    "template": "no respiratory distress"
+                },
+                {
+                    "text": "auscultation clear BL",
+                    "template": "clear to auscultation bilaterally"
+                },
+                {
+                    "text": "no wheezes\/rales\/rhonchi",
+                    "template": "no wheezes\/rales\/rhonchi"
+                },
+                {
+                    "text": "percussion clear BL",
+                    "template": "clear to percussion bilaterally"
+                },
+                {
+                    "text": "chest wall symmetric",
+                    "template": "chest wall symmetric"
+                },
+                {
+                    "text": "subcutaneous emphysema",
+                    "template": "subcutaneous emphysema",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Abnl lung sounds, R",
+                    "template": "Abnl lung sounds, R: {children}",
+                    "children": [
+                        {
+                            "text": "whoop",
+                            "template": "whoop",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "stridor",
+                            "template": "stridor",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pleural rub",
+                            "template": "pleural rub"
+                        },
+                        {
+                            "text": "basilar rales",
+                            "template": "basilar rales"
+                        },
+                        {
+                            "text": "rales scattered",
+                            "template": "scattered rales"
+                        },
+                        {
+                            "text": "rhonchi scattered",
+                            "template": "scattered rhonchi"
+                        },
+                        {
+                            "text": "diminished breath sounds throughout",
+                            "template": "diminished breath sounds throughout"
+                        },
+                        {
+                            "text": "diminished breath sounds at bases",
+                            "template": "diminished breath sounds at bases"
+                        },
+                        {
+                            "text": "wheezes, expiration",
+                            "template": "expiratory wheezes"
+                        }
+                    ]
+                },
+                {
+                    "text": "Abnl lung sounds, L",
+                    "template": "Abnl lung sounds, L: {children}",
+                    "children": [
+                        {
+                            "text": "whoop",
+                            "template": "whoop",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "stridor",
+                            "template": "stridor",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pleural rub",
+                            "template": "pleural rub"
+                        },
+                        {
+                            "text": "basilar rales",
+                            "template": "basilar rales"
+                        },
+                        {
+                            "text": "rales scattered",
+                            "template": "scattered rales"
+                        },
+                        {
+                            "text": "rhonchi scattered",
+                            "template": "scattered rhonchi"
+                        },
+                        {
+                            "text": "diminished breath sounds throughout",
+                            "template": "diminished breath sounds throughout"
+                        },
+                        {
+                            "text": "diminished breath sounds at bases",
+                            "template": "diminished breath sounds at bases"
+                        },
+                        {
+                            "text": "wheezes, expiration",
+                            "template": "expiratory wheezes"
+                        }
+                    ]
+                },
+                {
+                    "text": "Abnl lung sounds, BL",
+                    "template": "Abnl lung sounds, BL: {children}",
+                    "children": [
+                        {
+                            "text": "whoop",
+                            "template": "whoop",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "stridor",
+                            "template": "stridor",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pleural rub",
+                            "template": "pleural rub"
+                        },
+                        {
+                            "text": "basilar rales",
+                            "template": "basilar rales"
+                        },
+                        {
+                            "text": "rales scattered",
+                            "template": "scattered rales"
+                        },
+                        {
+                            "text": "rhonchi scattered",
+                            "template": "scattered rhonchi"
+                        },
+                        {
+                            "text": "diminished breath sounds throughout",
+                            "template": "diminished breath sounds throughout"
+                        },
+                        {
+                            "text": "diminished breath sounds at bases",
+                            "template": "diminished breath sounds at bases"
+                        },
+                        {
+                            "text": "wheezes, expiration",
+                            "template": "expiratory wheezes"
+                        }
+                    ]
+                },
+                {
+                    "text": "Percussion, R",
+                    "template": "Percussion, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal to percussion",
+                            "template": "normal to percussion"
+                        },
+                        {
+                            "text": "dullness to percussion at base",
+                            "template": "dullness to percussion at base"
+                        },
+                        {
+                            "text": "dull throughout",
+                            "template": "dull to percussion throughout"
+                        }
+                    ]
+                },
+                {
+                    "text": "Percussion, L",
+                    "template": "Percussion, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal to percussion",
+                            "template": "normal to percussion"
+                        },
+                        {
+                            "text": "dullness to percussion at base",
+                            "template": "dullness to percussion at base"
+                        },
+                        {
+                            "text": "dull throughout",
+                            "template": "dull to percussion throughout"
+                        }
+                    ]
+                },
+                {
+                    "text": "Percussion, BL",
+                    "template": "Percussion, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal to percussion",
+                            "template": "normal to percussion"
+                        },
+                        {
+                            "text": "dullness to percussion at base",
+                            "template": "dullness to percussion at base"
+                        },
+                        {
+                            "text": "dull throughout",
+                            "template": "dull to percussion throughout"
+                        }
+                    ]
+                },
+                {
+                    "text": "Breathing dynamics, R",
+                    "template": "Breathing dynamics, R: {children}",
+                    "children": [
+                        {
+                            "text": "labored breathing",
+                            "template": "labored breathing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "accessory muscle use",
+                            "template": "accessory muscle use",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "rib retractions",
+                            "template": "rib retractions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abnormal diaphragm mvt",
+                            "template": "abnormal diaphragm movement",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Breathing dynamics, L",
+                    "template": "Breathing dynamics, L: {children}",
+                    "children": [
+                        {
+                            "text": "labored breathing",
+                            "template": "labored breathing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "accessory muscle use",
+                            "template": "accessory muscle use",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "rib retractions",
+                            "template": "rib retractions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abnormal diaphragm mvt",
+                            "template": "abnormal diaphragm movement",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Breathing dynamics, BL",
+                    "template": "Breathing dynamics, BL: {children}",
+                    "children": [
+                        {
+                            "text": "labored breathing",
+                            "template": "labored breathing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "accessory muscle use",
+                            "template": "accessory muscle use",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "rib retractions",
+                            "template": "rib retractions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abnormal diaphragm mvt",
+                            "template": "abnormal diaphragm movement",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Cardiovascular",
+            "template": "CV: {children}",
+            "children": [
+                {
+                    "text": "RRR, no murmur\/rub\/gallop",
+                    "template": "RRR, no murmur\/rub\/gallop"
+                },
+                {
+                    "text": "S1, S2 findings",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "NL S1",
+                            "template": "NL S1"
+                        },
+                        {
+                            "text": "NL S2",
+                            "template": "NL S2"
+                        },
+                        {
+                            "text": "split S2",
+                            "template": "split S2"
+                        },
+                        {
+                            "text": "split S1",
+                            "template": "split S1"
+                        },
+                        {
+                            "text": "persistently split S2",
+                            "template": "persistently split S2"
+                        },
+                        {
+                            "text": "physiologically split S2",
+                            "template": "physiologically split S2"
+                        },
+                        {
+                            "text": "paradoxically split S2",
+                            "template": "paradoxically split S2"
+                        },
+                        {
+                            "text": "widely split S2",
+                            "template": "widely split S2"
+                        }
+                    ]
+                },
+                {
+                    "text": "S3 gallop",
+                    "template": "S3 gallop",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "S4 gallop",
+                    "template": "S4 gallop",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "regular rate and rhythm",
+                    "template": "regular rate and rhythm"
+                },
+                {
+                    "text": "regular rate",
+                    "template": "regular rate"
+                },
+                {
+                    "text": "regular rhythm",
+                    "template": "regular rhythm"
+                },
+                {
+                    "text": "no murmurs",
+                    "template": "no murmurs"
+                },
+                {
+                    "text": "Murmur grade",
+                    "template": "Murmur grade: {text}\/6",
+                    "type": "number"
+                },
+                {
+                    "text": "Murmur timing\/location",
+                    "template": "murmur {children}",
+                    "children": [
+                        {
+                            "text": "systolic",
+                            "template": "is systolic"
+                        },
+                        {
+                            "text": "diastolic",
+                            "template": "is diastolic"
+                        },
+                        {
+                            "text": "holosystolic",
+                            "template": "is holosystolic"
+                        },
+                        {
+                            "text": "continuous",
+                            "template": "is continuous"
+                        },
+                        {
+                            "text": "best: L sternal border",
+                            "template": "best heard at L sternal border"
+                        },
+                        {
+                            "text": "best: 2nd R ICS",
+                            "template": "best heard near 2nd R ICS"
+                        },
+                        {
+                            "text": "best: xiphoid\/ sternal area",
+                            "template": "best heard at xiphoid\/sternal area"
+                        },
+                        {
+                            "text": "best: apex",
+                            "template": "best heard at apex"
+                        },
+                        {
+                            "text": "best: R sternal border",
+                            "template": "best heard at R sternal border"
+                        },
+                        {
+                            "text": "nonradiating",
+                            "template": "nonradiating"
+                        },
+                        {
+                            "text": "radiates to axilla",
+                            "template": "radiates to axilla"
+                        },
+                        {
+                            "text": "radiates to apex",
+                            "template": "radiates to apex"
+                        },
+                        {
+                            "text": "radiates to carotids",
+                            "template": "radiates to carotids"
+                        },
+                        {
+                            "text": "radiates to R side",
+                            "template": "radiates to R side"
+                        },
+                        {
+                            "text": "radiates to sternum",
+                            "template": "radiates to sternum"
+                        },
+                        {
+                            "text": "radiates to L clavicular area",
+                            "template": "radiates to L clavicular area"
+                        }
+                    ]
+                },
+                {
+                    "text": "no increased JVP visible",
+                    "template": "no increased JVP visible"
+                },
+                {
+                    "text": "JVP level (cm)",
+                    "template": "JVP {text} cm above the sternal angle",
+                    "type": "number"
+                },
+                {
+                    "text": "Heaves, Thrills, Lifts",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "heave",
+                            "template": "heave",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "parasternal lift",
+                            "template": "parasternal lift",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "thrill",
+                            "template": "thrill",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Extra heart sounds",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "extra heart sounds",
+                            "template": "extra heart sounds",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pulmonary ejection sound",
+                            "template": "pulmonary ejection sound",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "aortic ejection sound",
+                            "template": "aortic ejection sound",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "systolic click",
+                            "template": "systolic click",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "midsystolic click",
+                            "template": "midsystolic click",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mid-late systolic click",
+                            "template": "mid-to-late systolic click",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pericardial rub",
+                            "template": "pericardial rub",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "knock",
+                            "template": "knock",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "opening snap",
+                            "template": "opening snap",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "plop",
+                            "template": "plop",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "prosthetic sounds",
+                            "template": "prosthetic sounds",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pacemaker sounds",
+                            "template": "pacemaker sounds",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "PMI nondisplaced",
+                    "template": "PMI nondisplaced"
+                },
+                {
+                    "text": "PMI displaced",
+                    "template": "PMI displaced",
+                    "children": [
+                        {
+                            "text": "laterally",
+                            "template": "laterally"
+                        },
+                        {
+                            "text": "inferiorly",
+                            "template": "inferiorly"
+                        },
+                        {
+                            "text": "superiorly",
+                            "template": "superiorly"
+                        },
+                        {
+                            "text": "parasternally",
+                            "template": "parasternally"
+                        }
+                    ]
+                },
+                {
+                    "text": "Peripheral pulses, R",
+                    "template": "Peripheral pulses, R: {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity normal",
+                            "template": "upper extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lower extremity normal",
+                            "template": "lower extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished in upper extremities",
+                            "template": "diminished in upper extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished in lower extremities",
+                            "template": "diminished in lower extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pulsus paradoxicus",
+                            "template": "pulsus paradoxicus",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Peripheral pulses, L",
+                    "template": "Peripheral pulses, L: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact"
+                        },
+                        {
+                            "text": "upper extremity normal",
+                            "template": "upper extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lower extremity normal",
+                            "template": "lower extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished in upper extremities",
+                            "template": "diminished in upper extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished in lower extremities",
+                            "template": "diminished in lower extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pulsus paradoxicus",
+                            "template": "pulsus paradoxicus",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Peripheral pulses, BL",
+                    "template": "Peripheral pulses, BL: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact"
+                        },
+                        {
+                            "text": "upper extremity normal",
+                            "template": "upper extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lower extremity normal",
+                            "template": "lower extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished in upper extremities",
+                            "template": "diminished in upper extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished in lower extremities",
+                            "template": "diminished in lower extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pulsus paradoxicus",
+                            "template": "pulsus paradoxicus",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Xanthomas, R",
+                    "template": "Xanthomas, R: {children}",
+                    "children": [
+                        {
+                            "text": "eyelids",
+                            "template": "eyelids"
+                        },
+                        {
+                            "text": "periorbital",
+                            "template": "periorbital area"
+                        },
+                        {
+                            "text": "hands",
+                            "template": "hands"
+                        },
+                        {
+                            "text": "Achilles tendons",
+                            "template": "Achilles tendons"
+                        },
+                        {
+                            "text": "feet",
+                            "template": "feet"
+                        },
+                        {
+                            "text": "elbows",
+                            "template": "elbows"
+                        },
+                        {
+                            "text": "knees",
+                            "template": "knees"
+                        },
+                        {
+                            "text": "shoulders",
+                            "template": "shoulders"
+                        },
+                        {
+                            "text": "buttocks",
+                            "template": "buttocks"
+                        }
+                    ]
+                },
+                {
+                    "text": "Xanthomas, L",
+                    "template": "Xanthomas, L: {children}",
+                    "children": [
+                        {
+                            "text": "eyelids",
+                            "template": "eyelids"
+                        },
+                        {
+                            "text": "periorbital",
+                            "template": "periorbital area"
+                        },
+                        {
+                            "text": "hands",
+                            "template": "hands"
+                        },
+                        {
+                            "text": "Achilles tendons",
+                            "template": "Achilles tendons"
+                        },
+                        {
+                            "text": "feet",
+                            "template": "feet"
+                        },
+                        {
+                            "text": "elbows",
+                            "template": "elbows"
+                        },
+                        {
+                            "text": "knees",
+                            "template": "knees"
+                        },
+                        {
+                            "text": "shoulders",
+                            "template": "shoulders"
+                        },
+                        {
+                            "text": "buttocks",
+                            "template": "buttocks"
+                        }
+                    ]
+                },
+                {
+                    "text": "Xanthomas, BL",
+                    "template": "Xanthomas, BL: {children}",
+                    "children": [
+                        {
+                            "text": "eyelids",
+                            "template": "eyelids"
+                        },
+                        {
+                            "text": "periorbital",
+                            "template": "periorbital area"
+                        },
+                        {
+                            "text": "hands",
+                            "template": "hands"
+                        },
+                        {
+                            "text": "Achilles tendons",
+                            "template": "Achilles tendons"
+                        },
+                        {
+                            "text": "feet",
+                            "template": "feet"
+                        },
+                        {
+                            "text": "elbows",
+                            "template": "elbows"
+                        },
+                        {
+                            "text": "knees",
+                            "template": "knees"
+                        },
+                        {
+                            "text": "shoulders",
+                            "template": "shoulders"
+                        },
+                        {
+                            "text": "buttocks",
+                            "template": "buttocks"
+                        }
+                    ]
+                },
+                {
+                    "text": "LE venous stasis changes",
+                    "template": "LE venous stasis changes",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "varicose veins",
+                    "template": "varicose veins",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "LE varicose veins, R",
+                    "template": "LE varicose veins, R: {children}",
+                    "children": [
+                        {
+                            "text": "present",
+                            "template": "present",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "LE varicose veins, L",
+                    "template": "LE varicose veins, L: {children}",
+                    "children": [
+                        {
+                            "text": "present",
+                            "template": "present",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "LE varicose veins, BL",
+                    "template": "LE varicose veins, BL: {children}",
+                    "children": [
+                        {
+                            "text": "present",
+                            "template": "present",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "Other findings: {text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Cardiovascular, pulses",
+            "template": "CV: {children}",
+            "children": [
+                {
+                    "text": "pulse rate and rhythm regular",
+                    "template": "pulse rate and rhythm regular"
+                },
+                {
+                    "text": "pulse rate regular",
+                    "template": "pulse rate regular"
+                },
+                {
+                    "text": "pulse rhythm regular",
+                    "template": "pulse rhythm regular"
+                },
+                {
+                    "text": "Temporal artery, R",
+                    "template": "Temporal artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Temporal artery, L",
+                    "template": "Temporal artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Temporal arteries, BL",
+                    "template": "Temporal arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Carotid artery, R",
+                    "template": "Carotid artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "delayed upstroke",
+                            "template": "delayed upstroke"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Carotid artery, L",
+                    "template": "Carotid artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "delayed upstroke",
+                            "template": "delayed upstroke"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Carotid arteries, BL",
+                    "template": "Carotid arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "delayed upstroke",
+                            "template": "delayed upstroke"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Brachial artery, R",
+                    "template": "Brachial artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Brachial artery, L",
+                    "template": "Brachial artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Brachial arteries, BL",
+                    "template": "Brachial arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Radial artery, R",
+                    "template": "Radial artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "waterhammer",
+                            "template": "waterhammer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bisferiens",
+                            "template": "bisferiens",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Radial artery, L",
+                    "template": "Radial artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "waterhammer",
+                            "template": "waterhammer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bisferiens",
+                            "template": "bisferiens",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Radial arteries, BL",
+                    "template": "Radial arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "waterhammer",
+                            "template": "waterhammer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bisferiens",
+                            "template": "bisferiens",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Femoral artery, R",
+                    "template": "Femoral artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Femoral artery, L",
+                    "template": "Femoral artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Femoral arteries, BL",
+                    "template": "Femoral arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Popliteal artery, R",
+                    "template": "Popliteal artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Popliteal artery, L",
+                    "template": "Popliteal artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Popliteal arteries, BL",
+                    "template": "Popliteal arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Dorsalis pedis artery, R",
+                    "template": "Dorsalis pedis artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Dorsalis pedis artery, L",
+                    "template": "Dorsalis pedis artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Dorsalis pedis arteries, BL",
+                    "template": "Dorsalis pedis arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Posterior tibial, R",
+                    "template": "Posterior tibial, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Posterior tibial, L",
+                    "template": "Posterior tibial, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Posterior tibial arteries, BL",
+                    "template": "Posterior tibial arteries, BL {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Renal artery, R",
+                    "template": "Renal artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "bruit present",
+                            "template": "bruit present"
+                        },
+                        {
+                            "text": "palpable pulse",
+                            "template": "palpable pulse",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Renal artery, L",
+                    "template": "Renal artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "bruit present",
+                            "template": "bruit present"
+                        },
+                        {
+                            "text": "palpable pulse",
+                            "template": "palpable pulse",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Renal arteries, BL",
+                    "template": "Renal arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "bruit present",
+                            "template": "bruit present"
+                        },
+                        {
+                            "text": "palpable pulse",
+                            "template": "palpable pulse",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Aorta",
+                    "template": "Aorta: {children}",
+                    "children": [
+                        {
+                            "text": "enlargement",
+                            "template": "enlargement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Gastrointestinal",
+            "template": "GI: {children}",
+            "children": [
+                {
+                    "text": "NL abdominal inspection",
+                    "template": "NL abdominal inspection"
+                },
+                {
+                    "text": "abdominal distension noted",
+                    "template": "abdominal distension noted"
+                },
+                {
+                    "text": "abdomen flat on inspection",
+                    "template": "abdomen flat on inspection"
+                },
+                {
+                    "text": "abdomen obese on inspection",
+                    "template": "abdomen obese on inspection"
+                },
+                {
+                    "text": "abdomen scaphoid on inspection",
+                    "template": "abdomen scaphoid on inspection"
+                },
+                {
+                    "text": "bowel sounds intact throughout",
+                    "template": "bowel sounds intact throughout"
+                },
+                {
+                    "text": "decreased bowel sounds",
+                    "template": "decreased bowel sounds",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "absent bowel sounds",
+                    "template": "absent bowel sounds"
+                },
+                {
+                    "text": "high pitched bowel sounds",
+                    "template": "high pitched bowel sounds",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "borborygmi",
+                    "template": "borborygmi",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "soft, nontender to palpation",
+                    "template": "soft, nontender to palpation"
+                },
+                {
+                    "text": "no rebound\/guarding\/rigidity",
+                    "template": "no rebound\/guarding\/rigidity"
+                },
+                {
+                    "text": "rebound",
+                    "template": "rebound",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "guarding",
+                    "template": "guarding",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "rigidity",
+                    "template": "rigidity",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "hepatomegaly",
+                    "template": "hepatomegaly",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "splenomegaly",
+                    "template": "splenomegaly",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "masses",
+                    "template": "masses",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "ascites",
+                    "template": "ascites",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Abdominal exam - tenderness",
+                    "template": "Abdominal pain: {children}",
+                    "children": [
+                        {
+                            "text": "no tenderness noted on exam",
+                            "template": "no tenderness noted on exam"
+                        },
+                        {
+                            "text": "tenderness at rest",
+                            "template": "tenderness present at rest",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tenderness with palpation",
+                            "template": "tenderness present with palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tenderness with movement",
+                            "template": "tenderness present with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mild",
+                            "template": "mild pain present"
+                        },
+                        {
+                            "text": "moderate",
+                            "template": "moderate pain present"
+                        },
+                        {
+                            "text": "severe",
+                            "template": "severe pain present"
+                        },
+                        {
+                            "text": "present throughout",
+                            "template": "pain present throughout"
+                        },
+                        {
+                            "text": "right sided tenderness",
+                            "template": "right sided tenderness present"
+                        },
+                        {
+                            "text": "left sided tenderness",
+                            "template": "left sided tenderness present"
+                        },
+                        {
+                            "text": "midepigastric tenderness",
+                            "template": "midepigastric tenderness present"
+                        },
+                        {
+                            "text": "RUQ tenderness",
+                            "template": "RUQ tenderness present"
+                        },
+                        {
+                            "text": "LUQ tenderness",
+                            "template": "LUQ tenderness present"
+                        },
+                        {
+                            "text": "hypogastric tenderness",
+                            "template": "hypogastric tenderness present"
+                        },
+                        {
+                            "text": "RLQ tenderness",
+                            "template": "RLQ tenderness present"
+                        },
+                        {
+                            "text": "LLQ tenderness",
+                            "template": "LLQ tenderness present"
+                        },
+                        {
+                            "text": "periumbilical tenderness",
+                            "template": "periumbilical tenderness present"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "Other findings: {text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Lymphatic",
+            "template": "DERM: {children}",
+            "children": [
+                {
+                    "text": "lymphadenopathy",
+                    "template": "lymphadenopathy",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Preauricular lymphatics, R",
+                    "template": "Preauricular lymphatics, R: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Preauricular lymphatics, L",
+                    "template": "Preauricular lymphatics, L: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Preauricular lymphatics, BL",
+                    "template": "Preauricular lymphatics, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Postauricular lymphatics, R",
+                    "template": "Postauricular lymphatics, R: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Postauricular lymphatics, L",
+                    "template": "Postauricular lymphatics, L: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Postauricular lymphatics, BL",
+                    "template": "Postauricular lymphatics, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Anterior cervical lymphatics, R",
+                    "template": "Anterior cervical lymphatics, R: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Anterior cervical lymphatics, L",
+                    "template": "Anterior cervical lymphatics, L: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Anterior cervical lymphatics, BL",
+                    "template": "Anterior cervical lymphatics, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Posterior cervical lymphatics, R",
+                    "template": "Posterior cervical lymphatics, R: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Posterior cervical lymphatics, L",
+                    "template": "Posterior cervical lymphatics, L: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Posterior cervical lymphatics, BL",
+                    "template": "Posterior cervical lymphatics, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Supraclavicular lymphatics, R",
+                    "template": "Supraclavicular lymphatics, R: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Supraclavicular lymphatics, L",
+                    "template": "Supraclavicular lymphatics, L: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Supraclavicular lymphatics, BL",
+                    "template": "Supraclavicular lymphatics, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Infraclavicular lymphatics, R",
+                    "template": "Infraclavicular lymphatics, R: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Infraclavicular lymphatics, L",
+                    "template": "Infraclavicular lymphatics, L: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Infraclavicular lymphatics, BL",
+                    "template": "Infraclavicular lymphatics, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Anterior axillary lymphatics, R",
+                    "template": "Anterior axillary lymphatics, R: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Anterior axillary lymphatics, L",
+                    "template": "Anterior axillary lymphatics, L: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Anterior axillary lymphatics, BL",
+                    "template": "Anterior axillary lymphatics, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Posterior axillary lymphatics, R",
+                    "template": "Posterior axillary lymphatics, R: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Posterior axillary lymphatics, L",
+                    "template": "Posterior axillary lymphatics, L: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Posterior axillary lymphatics, BL",
+                    "template": "Posterior axillary lymphatics, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Apical axillary lymphatics, R",
+                    "template": "Apical axillary lymphatics, R: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Apical axillary lymphatics, L",
+                    "template": "Apical axillary lymphatics, L: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Apical axillary lymphatics, BL",
+                    "template": "Apical axillary lymphatics, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lateral axillary lymphatics, R",
+                    "template": "Lateral axillary lymphatics, R: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lateral axillary lymphatics, L",
+                    "template": "Lateral axillary lymphatics, L: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lateral axillary lymphatics, BL",
+                    "template": "Lateral axillary lymphatics, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Medial axillary lymphatics, R",
+                    "template": "Medial axillary lymphatics, R: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Medial axillary lymphatics, L",
+                    "template": "Medial axillary lymphatics, L: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Medial axillary lymphatics, BL",
+                    "template": "Medial axillary lymphatics, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Femoral lymphatics, R",
+                    "template": "Femoral lymphatics, R: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Femoral lymphatics, L",
+                    "template": "Femoral lymphatics, L: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Femoral lymphatics, BL",
+                    "template": "Femoral lymphatics, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "Other findings: {text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Dermatologic",
+            "template": "DERM: {children}",
+            "children": [
+                {
+                    "text": "diaphoresis",
+                    "template": "diaphoresis",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "dry skin",
+                    "template": "dry skin",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "clubbing",
+                    "template": "clubbing",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "cyanosis",
+                    "template": "cyanosis",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "decreased hair",
+                    "template": "decreased hair",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "stasis dermatitis",
+                    "template": "stasis dermatitis",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "petechiae",
+                    "template": "petechiae",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "bruising",
+                    "template": "bruising",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "tattoo markings",
+                    "template": "tattoo markings",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "scarring",
+                    "template": "scarring",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "excoriations",
+                    "template": "excoriations",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "hives",
+                    "template": "hives",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "hyperpigmentation",
+                    "template": "hyperpigmentation",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "hypopigmentation",
+                    "template": "hypopigmentation",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "acanthosis nigricans",
+                    "template": "acanthosis nigricans",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "alopecia",
+                    "template": "alopecia",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "scarring",
+                    "template": "scarring",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Derm, lesion\/rash 1, description",
+            "template": "DERM: {children}",
+            "children": [
+                {
+                    "text": "Location of lesion\/rash",
+                    "template": "Location: {text}",
+                    "type": "alpha"
+                },
+                {
+                    "text": "Centimeter",
+                    "template": "Centimeter",
+                    "type": "number"
+                },
+                {
+                    "text": "Color",
+                    "template": "-colored",
+                    "children": [
+                        {
+                            "text": "white",
+                            "template": "white"
+                        },
+                        {
+                            "text": "pink",
+                            "template": "pink"
+                        },
+                        {
+                            "text": "red",
+                            "template": "red"
+                        },
+                        {
+                            "text": "violaceous",
+                            "template": "violaceous"
+                        },
+                        {
+                            "text": "brown",
+                            "template": "brown"
+                        },
+                        {
+                            "text": "black",
+                            "template": "black"
+                        },
+                        {
+                            "text": "blue",
+                            "template": "blue"
+                        },
+                        {
+                            "text": "orange",
+                            "template": "orange"
+                        },
+                        {
+                            "text": "yellow",
+                            "template": "yellow"
+                        }
+                    ]
+                },
+                {
+                    "text": "Acne",
+                    "template": "comedone",
+                    "children": [
+                        {
+                            "text": "localized",
+                            "template": "localized"
+                        },
+                        {
+                            "text": "generalized",
+                            "template": "generalized"
+                        },
+                        {
+                            "text": "pruritic",
+                            "template": "pruritic"
+                        },
+                        {
+                            "text": "erythematous",
+                            "template": "erythematous"
+                        },
+                        {
+                            "text": "hypopigmented",
+                            "template": "hypopigmented"
+                        },
+                        {
+                            "text": "hyperpigmented",
+                            "template": "hyperpigmented"
+                        },
+                        {
+                            "text": "excoriated",
+                            "template": "excoriated"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard"
+                        },
+                        {
+                            "text": "fluctuant",
+                            "template": "fluctuant"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth"
+                        },
+                        {
+                            "text": "irregular",
+                            "template": "irregular"
+                        },
+                        {
+                            "text": "round",
+                            "template": "round"
+                        },
+                        {
+                            "text": "polygonal",
+                            "template": "polygonal"
+                        },
+                        {
+                            "text": "annular",
+                            "template": "annular"
+                        },
+                        {
+                            "text": "serpiginous",
+                            "template": "serpiginous"
+                        },
+                        {
+                            "text": "nummular",
+                            "template": "nummular"
+                        },
+                        {
+                            "text": "umbilicated",
+                            "template": "umbilicated"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed"
+                        },
+                        {
+                            "text": "lichenified",
+                            "template": "lichenified"
+                        }
+                    ]
+                },
+                {
+                    "text": "Macule",
+                    "template": "macule",
+                    "children": [
+                        {
+                            "text": "localized",
+                            "template": "localized"
+                        },
+                        {
+                            "text": "generalized",
+                            "template": "generalized"
+                        },
+                        {
+                            "text": "pruritic",
+                            "template": "pruritic"
+                        },
+                        {
+                            "text": "erythematous",
+                            "template": "erythematous"
+                        },
+                        {
+                            "text": "hypopigmented",
+                            "template": "hypopigmented"
+                        },
+                        {
+                            "text": "hyperpigmented",
+                            "template": "hyperpigmented"
+                        },
+                        {
+                            "text": "excoriated",
+                            "template": "excoriated"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard"
+                        },
+                        {
+                            "text": "fluctuant",
+                            "template": "fluctuant"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth"
+                        },
+                        {
+                            "text": "irregular",
+                            "template": "irregular"
+                        },
+                        {
+                            "text": "round",
+                            "template": "round"
+                        },
+                        {
+                            "text": "polygonal",
+                            "template": "polygonal"
+                        },
+                        {
+                            "text": "annular",
+                            "template": "annular"
+                        },
+                        {
+                            "text": "serpiginous",
+                            "template": "serpiginous"
+                        },
+                        {
+                            "text": "nummular",
+                            "template": "nummular"
+                        },
+                        {
+                            "text": "umbilicated",
+                            "template": "umbilicated"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed"
+                        },
+                        {
+                            "text": "lichenified",
+                            "template": "lichenified"
+                        }
+                    ]
+                },
+                {
+                    "text": "Papule",
+                    "template": "papule",
+                    "children": [
+                        {
+                            "text": "localized",
+                            "template": "localized"
+                        },
+                        {
+                            "text": "generalized",
+                            "template": "generalized"
+                        },
+                        {
+                            "text": "pruritic",
+                            "template": "pruritic"
+                        },
+                        {
+                            "text": "erythematous",
+                            "template": "erythematous"
+                        },
+                        {
+                            "text": "hypopigmented",
+                            "template": "hypopigmented"
+                        },
+                        {
+                            "text": "hyperpigmented",
+                            "template": "hyperpigmented"
+                        },
+                        {
+                            "text": "excoriated",
+                            "template": "excoriated"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard"
+                        },
+                        {
+                            "text": "fluctuant",
+                            "template": "fluctuant"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth"
+                        },
+                        {
+                            "text": "irregular",
+                            "template": "irregular"
+                        },
+                        {
+                            "text": "round",
+                            "template": "round"
+                        },
+                        {
+                            "text": "polygonal",
+                            "template": "polygonal"
+                        },
+                        {
+                            "text": "annular",
+                            "template": "annular"
+                        },
+                        {
+                            "text": "serpiginous",
+                            "template": "serpiginous"
+                        },
+                        {
+                            "text": "nummular",
+                            "template": "nummular"
+                        },
+                        {
+                            "text": "umbilicated",
+                            "template": "umbilicated"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed"
+                        },
+                        {
+                            "text": "lichenified",
+                            "template": "lichenified"
+                        }
+                    ]
+                },
+                {
+                    "text": "Maculopapular",
+                    "template": "maculopapular rash",
+                    "children": [
+                        {
+                            "text": "localized",
+                            "template": "localized"
+                        },
+                        {
+                            "text": "generalized",
+                            "template": "generalized"
+                        },
+                        {
+                            "text": "pruritic",
+                            "template": "pruritic"
+                        },
+                        {
+                            "text": "erythematous",
+                            "template": "erythematous"
+                        },
+                        {
+                            "text": "hypopigmented",
+                            "template": "hypopigmented"
+                        },
+                        {
+                            "text": "hyperpigmented",
+                            "template": "hyperpigmented"
+                        },
+                        {
+                            "text": "excoriated",
+                            "template": "excoriated"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard"
+                        },
+                        {
+                            "text": "fluctuant",
+                            "template": "fluctuant"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth"
+                        },
+                        {
+                            "text": "irregular",
+                            "template": "irregular"
+                        },
+                        {
+                            "text": "round",
+                            "template": "round"
+                        },
+                        {
+                            "text": "polygonal",
+                            "template": "polygonal"
+                        },
+                        {
+                            "text": "annular",
+                            "template": "annular"
+                        },
+                        {
+                            "text": "serpiginous",
+                            "template": "serpiginous"
+                        },
+                        {
+                            "text": "nummular",
+                            "template": "nummular"
+                        },
+                        {
+                            "text": "umbilicated",
+                            "template": "umbilicated"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed"
+                        },
+                        {
+                            "text": "lichenified",
+                            "template": "lichenified"
+                        }
+                    ]
+                },
+                {
+                    "text": "Nodule",
+                    "template": "nodule",
+                    "children": [
+                        {
+                            "text": "localized",
+                            "template": "localized"
+                        },
+                        {
+                            "text": "generalized",
+                            "template": "generalized"
+                        },
+                        {
+                            "text": "pruritic",
+                            "template": "pruritic"
+                        },
+                        {
+                            "text": "erythematous",
+                            "template": "erythematous"
+                        },
+                        {
+                            "text": "hypopigmented",
+                            "template": "hypopigmented"
+                        },
+                        {
+                            "text": "hyperpigmented",
+                            "template": "hyperpigmented"
+                        },
+                        {
+                            "text": "excoriated",
+                            "template": "excoriated"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard"
+                        },
+                        {
+                            "text": "fluctuant",
+                            "template": "fluctuant"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth"
+                        },
+                        {
+                            "text": "irregular",
+                            "template": "irregular"
+                        },
+                        {
+                            "text": "round",
+                            "template": "round"
+                        },
+                        {
+                            "text": "polygonal",
+                            "template": "polygonal"
+                        },
+                        {
+                            "text": "annular",
+                            "template": "annular"
+                        },
+                        {
+                            "text": "serpiginous",
+                            "template": "serpiginous"
+                        },
+                        {
+                            "text": "nummular",
+                            "template": "nummular"
+                        },
+                        {
+                            "text": "umbilicated",
+                            "template": "umbilicated"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed"
+                        },
+                        {
+                            "text": "lichenified",
+                            "template": "lichenified"
+                        }
+                    ]
+                },
+                {
+                    "text": "Mass",
+                    "template": "mass",
+                    "children": [
+                        {
+                            "text": "localized",
+                            "template": "localized"
+                        },
+                        {
+                            "text": "generalized",
+                            "template": "generalized"
+                        },
+                        {
+                            "text": "pruritic",
+                            "template": "pruritic"
+                        },
+                        {
+                            "text": "erythematous",
+                            "template": "erythematous"
+                        },
+                        {
+                            "text": "hypopigmented",
+                            "template": "hypopigmented"
+                        },
+                        {
+                            "text": "hyperpigmented",
+                            "template": "hyperpigmented"
+                        },
+                        {
+                            "text": "excoriated",
+                            "template": "excoriated"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard"
+                        },
+                        {
+                            "text": "fluctuant",
+                            "template": "fluctuant"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth"
+                        },
+                        {
+                            "text": "irregular",
+                            "template": "irregular"
+                        },
+                        {
+                            "text": "round",
+                            "template": "round"
+                        },
+                        {
+                            "text": "polygonal",
+                            "template": "polygonal"
+                        },
+                        {
+                            "text": "annular",
+                            "template": "annular"
+                        },
+                        {
+                            "text": "serpiginous",
+                            "template": "serpiginous"
+                        },
+                        {
+                            "text": "nummular",
+                            "template": "nummular"
+                        },
+                        {
+                            "text": "umbilicated",
+                            "template": "umbilicated"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed"
+                        },
+                        {
+                            "text": "lichenified",
+                            "template": "lichenified"
+                        }
+                    ]
+                },
+                {
+                    "text": "Plaque",
+                    "template": "plaque",
+                    "children": [
+                        {
+                            "text": "localized",
+                            "template": "localized"
+                        },
+                        {
+                            "text": "generalized",
+                            "template": "generalized"
+                        },
+                        {
+                            "text": "pruritic",
+                            "template": "pruritic"
+                        },
+                        {
+                            "text": "erythematous",
+                            "template": "erythematous"
+                        },
+                        {
+                            "text": "hypopigmented",
+                            "template": "hypopigmented"
+                        },
+                        {
+                            "text": "hyperpigmented",
+                            "template": "hyperpigmented"
+                        },
+                        {
+                            "text": "excoriated",
+                            "template": "excoriated"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard"
+                        },
+                        {
+                            "text": "fluctuant",
+                            "template": "fluctuant"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth"
+                        },
+                        {
+                            "text": "irregular",
+                            "template": "irregular"
+                        },
+                        {
+                            "text": "round",
+                            "template": "round"
+                        },
+                        {
+                            "text": "polygonal",
+                            "template": "polygonal"
+                        },
+                        {
+                            "text": "annular",
+                            "template": "annular"
+                        },
+                        {
+                            "text": "serpiginous",
+                            "template": "serpiginous"
+                        },
+                        {
+                            "text": "nummular",
+                            "template": "nummular"
+                        },
+                        {
+                            "text": "umbilicated",
+                            "template": "umbilicated"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed"
+                        },
+                        {
+                            "text": "lichenified",
+                            "template": "lichenified"
+                        }
+                    ]
+                },
+                {
+                    "text": "Vesicle",
+                    "template": "vesicle",
+                    "children": [
+                        {
+                            "text": "localized",
+                            "template": "localized"
+                        },
+                        {
+                            "text": "generalized",
+                            "template": "generalized"
+                        },
+                        {
+                            "text": "pruritic",
+                            "template": "pruritic"
+                        },
+                        {
+                            "text": "erythematous",
+                            "template": "erythematous"
+                        },
+                        {
+                            "text": "hypopigmented",
+                            "template": "hypopigmented"
+                        },
+                        {
+                            "text": "hyperpigmented",
+                            "template": "hyperpigmented"
+                        },
+                        {
+                            "text": "excoriated",
+                            "template": "excoriated"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard"
+                        },
+                        {
+                            "text": "fluctuant",
+                            "template": "fluctuant"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth"
+                        },
+                        {
+                            "text": "irregular",
+                            "template": "irregular"
+                        },
+                        {
+                            "text": "round",
+                            "template": "round"
+                        },
+                        {
+                            "text": "polygonal",
+                            "template": "polygonal"
+                        },
+                        {
+                            "text": "annular",
+                            "template": "annular"
+                        },
+                        {
+                            "text": "serpiginous",
+                            "template": "serpiginous"
+                        },
+                        {
+                            "text": "nummular",
+                            "template": "nummular"
+                        },
+                        {
+                            "text": "umbilicated",
+                            "template": "umbilicated"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed"
+                        },
+                        {
+                            "text": "lichenified",
+                            "template": "lichenified"
+                        }
+                    ]
+                },
+                {
+                    "text": "Cyst",
+                    "template": "cyst",
+                    "children": [
+                        {
+                            "text": "localized",
+                            "template": "localized"
+                        },
+                        {
+                            "text": "generalized",
+                            "template": "generalized"
+                        },
+                        {
+                            "text": "pruritic",
+                            "template": "pruritic"
+                        },
+                        {
+                            "text": "erythematous",
+                            "template": "erythematous"
+                        },
+                        {
+                            "text": "hypopigmented",
+                            "template": "hypopigmented"
+                        },
+                        {
+                            "text": "hyperpigmented",
+                            "template": "hyperpigmented"
+                        },
+                        {
+                            "text": "excoriated",
+                            "template": "excoriated"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard"
+                        },
+                        {
+                            "text": "fluctuant",
+                            "template": "fluctuant"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth"
+                        },
+                        {
+                            "text": "irregular",
+                            "template": "irregular"
+                        },
+                        {
+                            "text": "round",
+                            "template": "round"
+                        },
+                        {
+                            "text": "polygonal",
+                            "template": "polygonal"
+                        },
+                        {
+                            "text": "annular",
+                            "template": "annular"
+                        },
+                        {
+                            "text": "serpiginous",
+                            "template": "serpiginous"
+                        },
+                        {
+                            "text": "nummular",
+                            "template": "nummular"
+                        },
+                        {
+                            "text": "umbilicated",
+                            "template": "umbilicated"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed"
+                        },
+                        {
+                            "text": "lichenified",
+                            "template": "lichenified"
+                        }
+                    ]
+                },
+                {
+                    "text": "Pustule",
+                    "template": "pustule",
+                    "children": [
+                        {
+                            "text": "localized",
+                            "template": "localized"
+                        },
+                        {
+                            "text": "generalized",
+                            "template": "generalized"
+                        },
+                        {
+                            "text": "pruritic",
+                            "template": "pruritic"
+                        },
+                        {
+                            "text": "erythematous",
+                            "template": "erythematous"
+                        },
+                        {
+                            "text": "hypopigmented",
+                            "template": "hypopigmented"
+                        },
+                        {
+                            "text": "hyperpigmented",
+                            "template": "hyperpigmented"
+                        },
+                        {
+                            "text": "excoriated",
+                            "template": "excoriated"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard"
+                        },
+                        {
+                            "text": "fluctuant",
+                            "template": "fluctuant"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth"
+                        },
+                        {
+                            "text": "irregular",
+                            "template": "irregular"
+                        },
+                        {
+                            "text": "round",
+                            "template": "round"
+                        },
+                        {
+                            "text": "polygonal",
+                            "template": "polygonal"
+                        },
+                        {
+                            "text": "annular",
+                            "template": "annular"
+                        },
+                        {
+                            "text": "serpiginous",
+                            "template": "serpiginous"
+                        },
+                        {
+                            "text": "nummular",
+                            "template": "nummular"
+                        },
+                        {
+                            "text": "umbilicated",
+                            "template": "umbilicated"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed"
+                        },
+                        {
+                            "text": "lichenified",
+                            "template": "lichenified"
+                        }
+                    ]
+                },
+                {
+                    "text": "Bulla",
+                    "template": "bulla",
+                    "children": [
+                        {
+                            "text": "localized",
+                            "template": "localized"
+                        },
+                        {
+                            "text": "generalized",
+                            "template": "generalized"
+                        },
+                        {
+                            "text": "pruritic",
+                            "template": "pruritic"
+                        },
+                        {
+                            "text": "erythematous",
+                            "template": "erythematous"
+                        },
+                        {
+                            "text": "hypopigmented",
+                            "template": "hypopigmented"
+                        },
+                        {
+                            "text": "hyperpigmented",
+                            "template": "hyperpigmented"
+                        },
+                        {
+                            "text": "excoriated",
+                            "template": "excoriated"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard"
+                        },
+                        {
+                            "text": "fluctuant",
+                            "template": "fluctuant"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth"
+                        },
+                        {
+                            "text": "irregular",
+                            "template": "irregular"
+                        },
+                        {
+                            "text": "round",
+                            "template": "round"
+                        },
+                        {
+                            "text": "polygonal",
+                            "template": "polygonal"
+                        },
+                        {
+                            "text": "annular",
+                            "template": "annular"
+                        },
+                        {
+                            "text": "serpiginous",
+                            "template": "serpiginous"
+                        },
+                        {
+                            "text": "nummular",
+                            "template": "nummular"
+                        },
+                        {
+                            "text": "umbilicated",
+                            "template": "umbilicated"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed"
+                        },
+                        {
+                            "text": "lichenified",
+                            "template": "lichenified"
+                        }
+                    ]
+                },
+                {
+                    "text": "Abscess",
+                    "template": "abscess",
+                    "children": [
+                        {
+                            "text": "localized",
+                            "template": "localized"
+                        },
+                        {
+                            "text": "generalized",
+                            "template": "generalized"
+                        },
+                        {
+                            "text": "pruritic",
+                            "template": "pruritic"
+                        },
+                        {
+                            "text": "erythematous",
+                            "template": "erythematous"
+                        },
+                        {
+                            "text": "hypopigmented",
+                            "template": "hypopigmented"
+                        },
+                        {
+                            "text": "hyperpigmented",
+                            "template": "hyperpigmented"
+                        },
+                        {
+                            "text": "excoriated",
+                            "template": "excoriated"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard"
+                        },
+                        {
+                            "text": "fluctuant",
+                            "template": "fluctuant"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth"
+                        },
+                        {
+                            "text": "irregular",
+                            "template": "irregular"
+                        },
+                        {
+                            "text": "round",
+                            "template": "round"
+                        },
+                        {
+                            "text": "polygonal",
+                            "template": "polygonal"
+                        },
+                        {
+                            "text": "annular",
+                            "template": "annular"
+                        },
+                        {
+                            "text": "serpiginous",
+                            "template": "serpiginous"
+                        },
+                        {
+                            "text": "nummular",
+                            "template": "nummular"
+                        },
+                        {
+                            "text": "umbilicated",
+                            "template": "umbilicated"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed"
+                        },
+                        {
+                            "text": "lichenified",
+                            "template": "lichenified"
+                        }
+                    ]
+                },
+                {
+                    "text": "Ulcer",
+                    "template": "ulcer",
+                    "children": [
+                        {
+                            "text": "localized",
+                            "template": "localized"
+                        },
+                        {
+                            "text": "generalized",
+                            "template": "generalized"
+                        },
+                        {
+                            "text": "pruritic",
+                            "template": "pruritic"
+                        },
+                        {
+                            "text": "erythematous",
+                            "template": "erythematous"
+                        },
+                        {
+                            "text": "hypopigmented",
+                            "template": "hypopigmented"
+                        },
+                        {
+                            "text": "hyperpigmented",
+                            "template": "hyperpigmented"
+                        },
+                        {
+                            "text": "excoriated",
+                            "template": "excoriated"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard"
+                        },
+                        {
+                            "text": "fluctuant",
+                            "template": "fluctuant"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth"
+                        },
+                        {
+                            "text": "irregular",
+                            "template": "irregular"
+                        },
+                        {
+                            "text": "round",
+                            "template": "round"
+                        },
+                        {
+                            "text": "polygonal",
+                            "template": "polygonal"
+                        },
+                        {
+                            "text": "annular",
+                            "template": "annular"
+                        },
+                        {
+                            "text": "serpiginous",
+                            "template": "serpiginous"
+                        },
+                        {
+                            "text": "nummular",
+                            "template": "nummular"
+                        },
+                        {
+                            "text": "umbilicated",
+                            "template": "umbilicated"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed"
+                        },
+                        {
+                            "text": "lichenified",
+                            "template": "lichenified"
+                        }
+                    ]
+                },
+                {
+                    "text": "Wheal",
+                    "template": "wheal",
+                    "children": [
+                        {
+                            "text": "localized",
+                            "template": "localized"
+                        },
+                        {
+                            "text": "generalized",
+                            "template": "generalized"
+                        },
+                        {
+                            "text": "pruritic",
+                            "template": "pruritic"
+                        },
+                        {
+                            "text": "erythematous",
+                            "template": "erythematous"
+                        },
+                        {
+                            "text": "hypopigmented",
+                            "template": "hypopigmented"
+                        },
+                        {
+                            "text": "hyperpigmented",
+                            "template": "hyperpigmented"
+                        },
+                        {
+                            "text": "excoriated",
+                            "template": "excoriated"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard"
+                        },
+                        {
+                            "text": "fluctuant",
+                            "template": "fluctuant"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth"
+                        },
+                        {
+                            "text": "irregular",
+                            "template": "irregular"
+                        },
+                        {
+                            "text": "round",
+                            "template": "round"
+                        },
+                        {
+                            "text": "polygonal",
+                            "template": "polygonal"
+                        },
+                        {
+                            "text": "annular",
+                            "template": "annular"
+                        },
+                        {
+                            "text": "serpiginous",
+                            "template": "serpiginous"
+                        },
+                        {
+                            "text": "nummular",
+                            "template": "nummular"
+                        },
+                        {
+                            "text": "umbilicated",
+                            "template": "umbilicated"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed"
+                        },
+                        {
+                            "text": "lichenified",
+                            "template": "lichenified"
+                        }
+                    ]
+                },
+                {
+                    "text": "Petechiae",
+                    "template": "petechial rash",
+                    "children": [
+                        {
+                            "text": "localized",
+                            "template": "localized"
+                        },
+                        {
+                            "text": "generalized",
+                            "template": "generalized"
+                        },
+                        {
+                            "text": "pruritic",
+                            "template": "pruritic"
+                        },
+                        {
+                            "text": "erythematous",
+                            "template": "erythematous"
+                        },
+                        {
+                            "text": "hypopigmented",
+                            "template": "hypopigmented"
+                        },
+                        {
+                            "text": "hyperpigmented",
+                            "template": "hyperpigmented"
+                        },
+                        {
+                            "text": "excoriated",
+                            "template": "excoriated"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard"
+                        },
+                        {
+                            "text": "fluctuant",
+                            "template": "fluctuant"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth"
+                        },
+                        {
+                            "text": "irregular",
+                            "template": "irregular"
+                        },
+                        {
+                            "text": "round",
+                            "template": "round"
+                        },
+                        {
+                            "text": "polygonal",
+                            "template": "polygonal"
+                        },
+                        {
+                            "text": "annular",
+                            "template": "annular"
+                        },
+                        {
+                            "text": "serpiginous",
+                            "template": "serpiginous"
+                        },
+                        {
+                            "text": "nummular",
+                            "template": "nummular"
+                        },
+                        {
+                            "text": "umbilicated",
+                            "template": "umbilicated"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed"
+                        },
+                        {
+                            "text": "lichenified",
+                            "template": "lichenified"
+                        }
+                    ]
+                },
+                {
+                    "text": "Scales",
+                    "template": "scales",
+                    "children": [
+                        {
+                            "text": "localized",
+                            "template": "localized"
+                        },
+                        {
+                            "text": "generalized",
+                            "template": "generalized"
+                        },
+                        {
+                            "text": "pruritic",
+                            "template": "pruritic"
+                        },
+                        {
+                            "text": "erythematous",
+                            "template": "erythematous"
+                        },
+                        {
+                            "text": "hypopigmented",
+                            "template": "hypopigmented"
+                        },
+                        {
+                            "text": "hyperpigmented",
+                            "template": "hyperpigmented"
+                        },
+                        {
+                            "text": "excoriated",
+                            "template": "excoriated"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard"
+                        },
+                        {
+                            "text": "fluctuant",
+                            "template": "fluctuant"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth"
+                        },
+                        {
+                            "text": "irregular",
+                            "template": "irregular"
+                        },
+                        {
+                            "text": "round",
+                            "template": "round"
+                        },
+                        {
+                            "text": "polygonal",
+                            "template": "polygonal"
+                        },
+                        {
+                            "text": "annular",
+                            "template": "annular"
+                        },
+                        {
+                            "text": "serpiginous",
+                            "template": "serpiginous"
+                        },
+                        {
+                            "text": "nummular",
+                            "template": "nummular"
+                        },
+                        {
+                            "text": "umbilicated",
+                            "template": "umbilicated"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed"
+                        },
+                        {
+                            "text": "lichenified",
+                            "template": "lichenified"
+                        }
+                    ]
+                }
+            ]
+        },
+        {
+            "text": "Derm, lesion\/rash 2, description",
+            "template": "DERM: {children}",
+            "children": [
+                {
+                    "text": "Location of lesion\/rash",
+                    "template": "Location: {text}",
+                    "type": "alpha"
+                },
+                {
+                    "text": "Centimeter",
+                    "template": "Centimeter",
+                    "type": "number"
+                },
+                {
+                    "text": "Color",
+                    "template": "-colored",
+                    "children": [
+                        {
+                            "text": "white",
+                            "template": "white"
+                        },
+                        {
+                            "text": "pink",
+                            "template": "pink"
+                        },
+                        {
+                            "text": "red",
+                            "template": "red"
+                        },
+                        {
+                            "text": "violaceous",
+                            "template": "violaceous"
+                        },
+                        {
+                            "text": "brown",
+                            "template": "brown"
+                        },
+                        {
+                            "text": "black",
+                            "template": "black"
+                        },
+                        {
+                            "text": "blue",
+                            "template": "blue"
+                        },
+                        {
+                            "text": "orange",
+                            "template": "orange"
+                        },
+                        {
+                            "text": "yellow",
+                            "template": "yellow"
+                        }
+                    ]
+                },
+                {
+                    "text": "Acne",
+                    "template": "comedone",
+                    "children": [
+                        {
+                            "text": "localized",
+                            "template": "localized"
+                        },
+                        {
+                            "text": "generalized",
+                            "template": "generalized"
+                        },
+                        {
+                            "text": "pruritic",
+                            "template": "pruritic"
+                        },
+                        {
+                            "text": "erythematous",
+                            "template": "erythematous"
+                        },
+                        {
+                            "text": "hypopigmented",
+                            "template": "hypopigmented"
+                        },
+                        {
+                            "text": "hyperpigmented",
+                            "template": "hyperpigmented"
+                        },
+                        {
+                            "text": "excoriated",
+                            "template": "excoriated"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard"
+                        },
+                        {
+                            "text": "fluctuant",
+                            "template": "fluctuant"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth"
+                        },
+                        {
+                            "text": "irregular",
+                            "template": "irregular"
+                        },
+                        {
+                            "text": "round",
+                            "template": "round"
+                        },
+                        {
+                            "text": "polygonal",
+                            "template": "polygonal"
+                        },
+                        {
+                            "text": "annular",
+                            "template": "annular"
+                        },
+                        {
+                            "text": "serpiginous",
+                            "template": "serpiginous"
+                        },
+                        {
+                            "text": "nummular",
+                            "template": "nummular"
+                        },
+                        {
+                            "text": "umbilicated",
+                            "template": "umbilicated"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed"
+                        },
+                        {
+                            "text": "lichenified",
+                            "template": "lichenified"
+                        }
+                    ]
+                },
+                {
+                    "text": "Macule",
+                    "template": "macule",
+                    "children": [
+                        {
+                            "text": "localized",
+                            "template": "localized"
+                        },
+                        {
+                            "text": "generalized",
+                            "template": "generalized"
+                        },
+                        {
+                            "text": "pruritic",
+                            "template": "pruritic"
+                        },
+                        {
+                            "text": "erythematous",
+                            "template": "erythematous"
+                        },
+                        {
+                            "text": "hypopigmented",
+                            "template": "hypopigmented"
+                        },
+                        {
+                            "text": "hyperpigmented",
+                            "template": "hyperpigmented"
+                        },
+                        {
+                            "text": "excoriated",
+                            "template": "excoriated"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard"
+                        },
+                        {
+                            "text": "fluctuant",
+                            "template": "fluctuant"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth"
+                        },
+                        {
+                            "text": "irregular",
+                            "template": "irregular"
+                        },
+                        {
+                            "text": "round",
+                            "template": "round"
+                        },
+                        {
+                            "text": "polygonal",
+                            "template": "polygonal"
+                        },
+                        {
+                            "text": "annular",
+                            "template": "annular"
+                        },
+                        {
+                            "text": "serpiginous",
+                            "template": "serpiginous"
+                        },
+                        {
+                            "text": "nummular",
+                            "template": "nummular"
+                        },
+                        {
+                            "text": "umbilicated",
+                            "template": "umbilicated"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed"
+                        },
+                        {
+                            "text": "lichenified",
+                            "template": "lichenified"
+                        }
+                    ]
+                },
+                {
+                    "text": "Papule",
+                    "template": "papule",
+                    "children": [
+                        {
+                            "text": "localized",
+                            "template": "localized"
+                        },
+                        {
+                            "text": "generalized",
+                            "template": "generalized"
+                        },
+                        {
+                            "text": "pruritic",
+                            "template": "pruritic"
+                        },
+                        {
+                            "text": "erythematous",
+                            "template": "erythematous"
+                        },
+                        {
+                            "text": "hypopigmented",
+                            "template": "hypopigmented"
+                        },
+                        {
+                            "text": "hyperpigmented",
+                            "template": "hyperpigmented"
+                        },
+                        {
+                            "text": "excoriated",
+                            "template": "excoriated"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard"
+                        },
+                        {
+                            "text": "fluctuant",
+                            "template": "fluctuant"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth"
+                        },
+                        {
+                            "text": "irregular",
+                            "template": "irregular"
+                        },
+                        {
+                            "text": "round",
+                            "template": "round"
+                        },
+                        {
+                            "text": "polygonal",
+                            "template": "polygonal"
+                        },
+                        {
+                            "text": "annular",
+                            "template": "annular"
+                        },
+                        {
+                            "text": "serpiginous",
+                            "template": "serpiginous"
+                        },
+                        {
+                            "text": "nummular",
+                            "template": "nummular"
+                        },
+                        {
+                            "text": "umbilicated",
+                            "template": "umbilicated"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed"
+                        },
+                        {
+                            "text": "lichenified",
+                            "template": "lichenified"
+                        }
+                    ]
+                },
+                {
+                    "text": "Maculopapular",
+                    "template": "maculopapular rash",
+                    "children": [
+                        {
+                            "text": "localized",
+                            "template": "localized"
+                        },
+                        {
+                            "text": "generalized",
+                            "template": "generalized"
+                        },
+                        {
+                            "text": "pruritic",
+                            "template": "pruritic"
+                        },
+                        {
+                            "text": "erythematous",
+                            "template": "erythematous"
+                        },
+                        {
+                            "text": "hypopigmented",
+                            "template": "hypopigmented"
+                        },
+                        {
+                            "text": "hyperpigmented",
+                            "template": "hyperpigmented"
+                        },
+                        {
+                            "text": "excoriated",
+                            "template": "excoriated"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard"
+                        },
+                        {
+                            "text": "fluctuant",
+                            "template": "fluctuant"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth"
+                        },
+                        {
+                            "text": "irregular",
+                            "template": "irregular"
+                        },
+                        {
+                            "text": "round",
+                            "template": "round"
+                        },
+                        {
+                            "text": "polygonal",
+                            "template": "polygonal"
+                        },
+                        {
+                            "text": "annular",
+                            "template": "annular"
+                        },
+                        {
+                            "text": "serpiginous",
+                            "template": "serpiginous"
+                        },
+                        {
+                            "text": "nummular",
+                            "template": "nummular"
+                        },
+                        {
+                            "text": "umbilicated",
+                            "template": "umbilicated"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed"
+                        },
+                        {
+                            "text": "lichenified",
+                            "template": "lichenified"
+                        }
+                    ]
+                },
+                {
+                    "text": "Nodule",
+                    "template": "nodule",
+                    "children": [
+                        {
+                            "text": "localized",
+                            "template": "localized"
+                        },
+                        {
+                            "text": "generalized",
+                            "template": "generalized"
+                        },
+                        {
+                            "text": "pruritic",
+                            "template": "pruritic"
+                        },
+                        {
+                            "text": "erythematous",
+                            "template": "erythematous"
+                        },
+                        {
+                            "text": "hypopigmented",
+                            "template": "hypopigmented"
+                        },
+                        {
+                            "text": "hyperpigmented",
+                            "template": "hyperpigmented"
+                        },
+                        {
+                            "text": "excoriated",
+                            "template": "excoriated"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard"
+                        },
+                        {
+                            "text": "fluctuant",
+                            "template": "fluctuant"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth"
+                        },
+                        {
+                            "text": "irregular",
+                            "template": "irregular"
+                        },
+                        {
+                            "text": "round",
+                            "template": "round"
+                        },
+                        {
+                            "text": "polygonal",
+                            "template": "polygonal"
+                        },
+                        {
+                            "text": "annular",
+                            "template": "annular"
+                        },
+                        {
+                            "text": "serpiginous",
+                            "template": "serpiginous"
+                        },
+                        {
+                            "text": "nummular",
+                            "template": "nummular"
+                        },
+                        {
+                            "text": "umbilicated",
+                            "template": "umbilicated"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed"
+                        },
+                        {
+                            "text": "lichenified",
+                            "template": "lichenified"
+                        }
+                    ]
+                },
+                {
+                    "text": "Mass",
+                    "template": "mass",
+                    "children": [
+                        {
+                            "text": "localized",
+                            "template": "localized"
+                        },
+                        {
+                            "text": "generalized",
+                            "template": "generalized"
+                        },
+                        {
+                            "text": "pruritic",
+                            "template": "pruritic"
+                        },
+                        {
+                            "text": "erythematous",
+                            "template": "erythematous"
+                        },
+                        {
+                            "text": "hypopigmented",
+                            "template": "hypopigmented"
+                        },
+                        {
+                            "text": "hyperpigmented",
+                            "template": "hyperpigmented"
+                        },
+                        {
+                            "text": "excoriated",
+                            "template": "excoriated"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard"
+                        },
+                        {
+                            "text": "fluctuant",
+                            "template": "fluctuant"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth"
+                        },
+                        {
+                            "text": "irregular",
+                            "template": "irregular"
+                        },
+                        {
+                            "text": "round",
+                            "template": "round"
+                        },
+                        {
+                            "text": "polygonal",
+                            "template": "polygonal"
+                        },
+                        {
+                            "text": "annular",
+                            "template": "annular"
+                        },
+                        {
+                            "text": "serpiginous",
+                            "template": "serpiginous"
+                        },
+                        {
+                            "text": "nummular",
+                            "template": "nummular"
+                        },
+                        {
+                            "text": "umbilicated",
+                            "template": "umbilicated"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed"
+                        },
+                        {
+                            "text": "lichenified",
+                            "template": "lichenified"
+                        }
+                    ]
+                },
+                {
+                    "text": "Plaque",
+                    "template": "plaque",
+                    "children": [
+                        {
+                            "text": "localized",
+                            "template": "localized"
+                        },
+                        {
+                            "text": "generalized",
+                            "template": "generalized"
+                        },
+                        {
+                            "text": "pruritic",
+                            "template": "pruritic"
+                        },
+                        {
+                            "text": "erythematous",
+                            "template": "erythematous"
+                        },
+                        {
+                            "text": "hypopigmented",
+                            "template": "hypopigmented"
+                        },
+                        {
+                            "text": "hyperpigmented",
+                            "template": "hyperpigmented"
+                        },
+                        {
+                            "text": "excoriated",
+                            "template": "excoriated"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard"
+                        },
+                        {
+                            "text": "fluctuant",
+                            "template": "fluctuant"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth"
+                        },
+                        {
+                            "text": "irregular",
+                            "template": "irregular"
+                        },
+                        {
+                            "text": "round",
+                            "template": "round"
+                        },
+                        {
+                            "text": "polygonal",
+                            "template": "polygonal"
+                        },
+                        {
+                            "text": "annular",
+                            "template": "annular"
+                        },
+                        {
+                            "text": "serpiginous",
+                            "template": "serpiginous"
+                        },
+                        {
+                            "text": "nummular",
+                            "template": "nummular"
+                        },
+                        {
+                            "text": "umbilicated",
+                            "template": "umbilicated"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed"
+                        },
+                        {
+                            "text": "lichenified",
+                            "template": "lichenified"
+                        }
+                    ]
+                },
+                {
+                    "text": "Vesicle",
+                    "template": "vesicle",
+                    "children": [
+                        {
+                            "text": "localized",
+                            "template": "localized"
+                        },
+                        {
+                            "text": "generalized",
+                            "template": "generalized"
+                        },
+                        {
+                            "text": "pruritic",
+                            "template": "pruritic"
+                        },
+                        {
+                            "text": "erythematous",
+                            "template": "erythematous"
+                        },
+                        {
+                            "text": "hypopigmented",
+                            "template": "hypopigmented"
+                        },
+                        {
+                            "text": "hyperpigmented",
+                            "template": "hyperpigmented"
+                        },
+                        {
+                            "text": "excoriated",
+                            "template": "excoriated"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard"
+                        },
+                        {
+                            "text": "fluctuant",
+                            "template": "fluctuant"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth"
+                        },
+                        {
+                            "text": "irregular",
+                            "template": "irregular"
+                        },
+                        {
+                            "text": "round",
+                            "template": "round"
+                        },
+                        {
+                            "text": "polygonal",
+                            "template": "polygonal"
+                        },
+                        {
+                            "text": "annular",
+                            "template": "annular"
+                        },
+                        {
+                            "text": "serpiginous",
+                            "template": "serpiginous"
+                        },
+                        {
+                            "text": "nummular",
+                            "template": "nummular"
+                        },
+                        {
+                            "text": "umbilicated",
+                            "template": "umbilicated"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed"
+                        },
+                        {
+                            "text": "lichenified",
+                            "template": "lichenified"
+                        }
+                    ]
+                },
+                {
+                    "text": "Cyst",
+                    "template": "cyst",
+                    "children": [
+                        {
+                            "text": "localized",
+                            "template": "localized"
+                        },
+                        {
+                            "text": "generalized",
+                            "template": "generalized"
+                        },
+                        {
+                            "text": "pruritic",
+                            "template": "pruritic"
+                        },
+                        {
+                            "text": "erythematous",
+                            "template": "erythematous"
+                        },
+                        {
+                            "text": "hypopigmented",
+                            "template": "hypopigmented"
+                        },
+                        {
+                            "text": "hyperpigmented",
+                            "template": "hyperpigmented"
+                        },
+                        {
+                            "text": "excoriated",
+                            "template": "excoriated"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard"
+                        },
+                        {
+                            "text": "fluctuant",
+                            "template": "fluctuant"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth"
+                        },
+                        {
+                            "text": "irregular",
+                            "template": "irregular"
+                        },
+                        {
+                            "text": "round",
+                            "template": "round"
+                        },
+                        {
+                            "text": "polygonal",
+                            "template": "polygonal"
+                        },
+                        {
+                            "text": "annular",
+                            "template": "annular"
+                        },
+                        {
+                            "text": "serpiginous",
+                            "template": "serpiginous"
+                        },
+                        {
+                            "text": "nummular",
+                            "template": "nummular"
+                        },
+                        {
+                            "text": "umbilicated",
+                            "template": "umbilicated"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed"
+                        },
+                        {
+                            "text": "lichenified",
+                            "template": "lichenified"
+                        }
+                    ]
+                },
+                {
+                    "text": "Pustule",
+                    "template": "pustule",
+                    "children": [
+                        {
+                            "text": "localized",
+                            "template": "localized"
+                        },
+                        {
+                            "text": "generalized",
+                            "template": "generalized"
+                        },
+                        {
+                            "text": "pruritic",
+                            "template": "pruritic"
+                        },
+                        {
+                            "text": "erythematous",
+                            "template": "erythematous"
+                        },
+                        {
+                            "text": "hypopigmented",
+                            "template": "hypopigmented"
+                        },
+                        {
+                            "text": "hyperpigmented",
+                            "template": "hyperpigmented"
+                        },
+                        {
+                            "text": "excoriated",
+                            "template": "excoriated"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard"
+                        },
+                        {
+                            "text": "fluctuant",
+                            "template": "fluctuant"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth"
+                        },
+                        {
+                            "text": "irregular",
+                            "template": "irregular"
+                        },
+                        {
+                            "text": "round",
+                            "template": "round"
+                        },
+                        {
+                            "text": "polygonal",
+                            "template": "polygonal"
+                        },
+                        {
+                            "text": "annular",
+                            "template": "annular"
+                        },
+                        {
+                            "text": "serpiginous",
+                            "template": "serpiginous"
+                        },
+                        {
+                            "text": "nummular",
+                            "template": "nummular"
+                        },
+                        {
+                            "text": "umbilicated",
+                            "template": "umbilicated"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed"
+                        },
+                        {
+                            "text": "lichenified",
+                            "template": "lichenified"
+                        }
+                    ]
+                },
+                {
+                    "text": "Bulla",
+                    "template": "bulla",
+                    "children": [
+                        {
+                            "text": "localized",
+                            "template": "localized"
+                        },
+                        {
+                            "text": "generalized",
+                            "template": "generalized"
+                        },
+                        {
+                            "text": "pruritic",
+                            "template": "pruritic"
+                        },
+                        {
+                            "text": "erythematous",
+                            "template": "erythematous"
+                        },
+                        {
+                            "text": "hypopigmented",
+                            "template": "hypopigmented"
+                        },
+                        {
+                            "text": "hyperpigmented",
+                            "template": "hyperpigmented"
+                        },
+                        {
+                            "text": "excoriated",
+                            "template": "excoriated"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard"
+                        },
+                        {
+                            "text": "fluctuant",
+                            "template": "fluctuant"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth"
+                        },
+                        {
+                            "text": "irregular",
+                            "template": "irregular"
+                        },
+                        {
+                            "text": "round",
+                            "template": "round"
+                        },
+                        {
+                            "text": "polygonal",
+                            "template": "polygonal"
+                        },
+                        {
+                            "text": "annular",
+                            "template": "annular"
+                        },
+                        {
+                            "text": "serpiginous",
+                            "template": "serpiginous"
+                        },
+                        {
+                            "text": "nummular",
+                            "template": "nummular"
+                        },
+                        {
+                            "text": "umbilicated",
+                            "template": "umbilicated"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed"
+                        },
+                        {
+                            "text": "lichenified",
+                            "template": "lichenified"
+                        }
+                    ]
+                },
+                {
+                    "text": "Abscess",
+                    "template": "abscess",
+                    "children": [
+                        {
+                            "text": "localized",
+                            "template": "localized"
+                        },
+                        {
+                            "text": "generalized",
+                            "template": "generalized"
+                        },
+                        {
+                            "text": "pruritic",
+                            "template": "pruritic"
+                        },
+                        {
+                            "text": "erythematous",
+                            "template": "erythematous"
+                        },
+                        {
+                            "text": "hypopigmented",
+                            "template": "hypopigmented"
+                        },
+                        {
+                            "text": "hyperpigmented",
+                            "template": "hyperpigmented"
+                        },
+                        {
+                            "text": "excoriated",
+                            "template": "excoriated"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard"
+                        },
+                        {
+                            "text": "fluctuant",
+                            "template": "fluctuant"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth"
+                        },
+                        {
+                            "text": "irregular",
+                            "template": "irregular"
+                        },
+                        {
+                            "text": "round",
+                            "template": "round"
+                        },
+                        {
+                            "text": "polygonal",
+                            "template": "polygonal"
+                        },
+                        {
+                            "text": "annular",
+                            "template": "annular"
+                        },
+                        {
+                            "text": "serpiginous",
+                            "template": "serpiginous"
+                        },
+                        {
+                            "text": "nummular",
+                            "template": "nummular"
+                        },
+                        {
+                            "text": "umbilicated",
+                            "template": "umbilicated"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed"
+                        },
+                        {
+                            "text": "lichenified",
+                            "template": "lichenified"
+                        }
+                    ]
+                },
+                {
+                    "text": "Ulcer",
+                    "template": "ulcer",
+                    "children": [
+                        {
+                            "text": "localized",
+                            "template": "localized"
+                        },
+                        {
+                            "text": "generalized",
+                            "template": "generalized"
+                        },
+                        {
+                            "text": "pruritic",
+                            "template": "pruritic"
+                        },
+                        {
+                            "text": "erythematous",
+                            "template": "erythematous"
+                        },
+                        {
+                            "text": "hypopigmented",
+                            "template": "hypopigmented"
+                        },
+                        {
+                            "text": "hyperpigmented",
+                            "template": "hyperpigmented"
+                        },
+                        {
+                            "text": "excoriated",
+                            "template": "excoriated"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard"
+                        },
+                        {
+                            "text": "fluctuant",
+                            "template": "fluctuant"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth"
+                        },
+                        {
+                            "text": "irregular",
+                            "template": "irregular"
+                        },
+                        {
+                            "text": "round",
+                            "template": "round"
+                        },
+                        {
+                            "text": "polygonal",
+                            "template": "polygonal"
+                        },
+                        {
+                            "text": "annular",
+                            "template": "annular"
+                        },
+                        {
+                            "text": "serpiginous",
+                            "template": "serpiginous"
+                        },
+                        {
+                            "text": "nummular",
+                            "template": "nummular"
+                        },
+                        {
+                            "text": "umbilicated",
+                            "template": "umbilicated"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed"
+                        },
+                        {
+                            "text": "lichenified",
+                            "template": "lichenified"
+                        }
+                    ]
+                },
+                {
+                    "text": "Wheal",
+                    "template": "wheal",
+                    "children": [
+                        {
+                            "text": "localized",
+                            "template": "localized"
+                        },
+                        {
+                            "text": "generalized",
+                            "template": "generalized"
+                        },
+                        {
+                            "text": "pruritic",
+                            "template": "pruritic"
+                        },
+                        {
+                            "text": "erythematous",
+                            "template": "erythematous"
+                        },
+                        {
+                            "text": "hypopigmented",
+                            "template": "hypopigmented"
+                        },
+                        {
+                            "text": "hyperpigmented",
+                            "template": "hyperpigmented"
+                        },
+                        {
+                            "text": "excoriated",
+                            "template": "excoriated"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard"
+                        },
+                        {
+                            "text": "fluctuant",
+                            "template": "fluctuant"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth"
+                        },
+                        {
+                            "text": "irregular",
+                            "template": "irregular"
+                        },
+                        {
+                            "text": "round",
+                            "template": "round"
+                        },
+                        {
+                            "text": "polygonal",
+                            "template": "polygonal"
+                        },
+                        {
+                            "text": "annular",
+                            "template": "annular"
+                        },
+                        {
+                            "text": "serpiginous",
+                            "template": "serpiginous"
+                        },
+                        {
+                            "text": "nummular",
+                            "template": "nummular"
+                        },
+                        {
+                            "text": "umbilicated",
+                            "template": "umbilicated"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed"
+                        },
+                        {
+                            "text": "lichenified",
+                            "template": "lichenified"
+                        }
+                    ]
+                },
+                {
+                    "text": "Petechiae",
+                    "template": "petechial rash",
+                    "children": [
+                        {
+                            "text": "localized",
+                            "template": "localized"
+                        },
+                        {
+                            "text": "generalized",
+                            "template": "generalized"
+                        },
+                        {
+                            "text": "pruritic",
+                            "template": "pruritic"
+                        },
+                        {
+                            "text": "erythematous",
+                            "template": "erythematous"
+                        },
+                        {
+                            "text": "hypopigmented",
+                            "template": "hypopigmented"
+                        },
+                        {
+                            "text": "hyperpigmented",
+                            "template": "hyperpigmented"
+                        },
+                        {
+                            "text": "excoriated",
+                            "template": "excoriated"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard"
+                        },
+                        {
+                            "text": "fluctuant",
+                            "template": "fluctuant"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth"
+                        },
+                        {
+                            "text": "irregular",
+                            "template": "irregular"
+                        },
+                        {
+                            "text": "round",
+                            "template": "round"
+                        },
+                        {
+                            "text": "polygonal",
+                            "template": "polygonal"
+                        },
+                        {
+                            "text": "annular",
+                            "template": "annular"
+                        },
+                        {
+                            "text": "serpiginous",
+                            "template": "serpiginous"
+                        },
+                        {
+                            "text": "nummular",
+                            "template": "nummular"
+                        },
+                        {
+                            "text": "umbilicated",
+                            "template": "umbilicated"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed"
+                        },
+                        {
+                            "text": "lichenified",
+                            "template": "lichenified"
+                        }
+                    ]
+                },
+                {
+                    "text": "Scales",
+                    "template": "scales",
+                    "children": [
+                        {
+                            "text": "localized",
+                            "template": "localized"
+                        },
+                        {
+                            "text": "generalized",
+                            "template": "generalized"
+                        },
+                        {
+                            "text": "pruritic",
+                            "template": "pruritic"
+                        },
+                        {
+                            "text": "erythematous",
+                            "template": "erythematous"
+                        },
+                        {
+                            "text": "hypopigmented",
+                            "template": "hypopigmented"
+                        },
+                        {
+                            "text": "hyperpigmented",
+                            "template": "hyperpigmented"
+                        },
+                        {
+                            "text": "excoriated",
+                            "template": "excoriated"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard"
+                        },
+                        {
+                            "text": "fluctuant",
+                            "template": "fluctuant"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth"
+                        },
+                        {
+                            "text": "irregular",
+                            "template": "irregular"
+                        },
+                        {
+                            "text": "round",
+                            "template": "round"
+                        },
+                        {
+                            "text": "polygonal",
+                            "template": "polygonal"
+                        },
+                        {
+                            "text": "annular",
+                            "template": "annular"
+                        },
+                        {
+                            "text": "serpiginous",
+                            "template": "serpiginous"
+                        },
+                        {
+                            "text": "nummular",
+                            "template": "nummular"
+                        },
+                        {
+                            "text": "umbilicated",
+                            "template": "umbilicated"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed"
+                        },
+                        {
+                            "text": "lichenified",
+                            "template": "lichenified"
+                        }
+                    ]
+                }
+            ]
+        },
+        {
+            "text": "Derm, lesion\/rash 3, description",
+            "template": "DERM: {children}",
+            "children": [
+                {
+                    "text": "Location of lesion\/rash",
+                    "template": "Location: {text}",
+                    "type": "alpha"
+                },
+                {
+                    "text": "Centimeter",
+                    "template": "Centimeter",
+                    "type": "number"
+                },
+                {
+                    "text": "Color",
+                    "template": "-colored",
+                    "children": [
+                        {
+                            "text": "white",
+                            "template": "white"
+                        },
+                        {
+                            "text": "pink",
+                            "template": "pink"
+                        },
+                        {
+                            "text": "red",
+                            "template": "red"
+                        },
+                        {
+                            "text": "violaceous",
+                            "template": "violaceous"
+                        },
+                        {
+                            "text": "brown",
+                            "template": "brown"
+                        },
+                        {
+                            "text": "black",
+                            "template": "black"
+                        },
+                        {
+                            "text": "blue",
+                            "template": "blue"
+                        },
+                        {
+                            "text": "orange",
+                            "template": "orange"
+                        },
+                        {
+                            "text": "yellow",
+                            "template": "yellow"
+                        }
+                    ]
+                },
+                {
+                    "text": "Acne",
+                    "template": "comedone",
+                    "children": [
+                        {
+                            "text": "localized",
+                            "template": "localized"
+                        },
+                        {
+                            "text": "generalized",
+                            "template": "generalized"
+                        },
+                        {
+                            "text": "pruritic",
+                            "template": "pruritic"
+                        },
+                        {
+                            "text": "erythematous",
+                            "template": "erythematous"
+                        },
+                        {
+                            "text": "hypopigmented",
+                            "template": "hypopigmented"
+                        },
+                        {
+                            "text": "hyperpigmented",
+                            "template": "hyperpigmented"
+                        },
+                        {
+                            "text": "excoriated",
+                            "template": "excoriated"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard"
+                        },
+                        {
+                            "text": "fluctuant",
+                            "template": "fluctuant"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth"
+                        },
+                        {
+                            "text": "irregular",
+                            "template": "irregular"
+                        },
+                        {
+                            "text": "round",
+                            "template": "round"
+                        },
+                        {
+                            "text": "polygonal",
+                            "template": "polygonal"
+                        },
+                        {
+                            "text": "annular",
+                            "template": "annular"
+                        },
+                        {
+                            "text": "serpiginous",
+                            "template": "serpiginous"
+                        },
+                        {
+                            "text": "nummular",
+                            "template": "nummular"
+                        },
+                        {
+                            "text": "umbilicated",
+                            "template": "umbilicated"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed"
+                        },
+                        {
+                            "text": "lichenified",
+                            "template": "lichenified"
+                        }
+                    ]
+                },
+                {
+                    "text": "Macule",
+                    "template": "macule",
+                    "children": [
+                        {
+                            "text": "localized",
+                            "template": "localized"
+                        },
+                        {
+                            "text": "generalized",
+                            "template": "generalized"
+                        },
+                        {
+                            "text": "pruritic",
+                            "template": "pruritic"
+                        },
+                        {
+                            "text": "erythematous",
+                            "template": "erythematous"
+                        },
+                        {
+                            "text": "hypopigmented",
+                            "template": "hypopigmented"
+                        },
+                        {
+                            "text": "hyperpigmented",
+                            "template": "hyperpigmented"
+                        },
+                        {
+                            "text": "excoriated",
+                            "template": "excoriated"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard"
+                        },
+                        {
+                            "text": "fluctuant",
+                            "template": "fluctuant"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth"
+                        },
+                        {
+                            "text": "irregular",
+                            "template": "irregular"
+                        },
+                        {
+                            "text": "round",
+                            "template": "round"
+                        },
+                        {
+                            "text": "polygonal",
+                            "template": "polygonal"
+                        },
+                        {
+                            "text": "annular",
+                            "template": "annular"
+                        },
+                        {
+                            "text": "serpiginous",
+                            "template": "serpiginous"
+                        },
+                        {
+                            "text": "nummular",
+                            "template": "nummular"
+                        },
+                        {
+                            "text": "umbilicated",
+                            "template": "umbilicated"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed"
+                        },
+                        {
+                            "text": "lichenified",
+                            "template": "lichenified"
+                        }
+                    ]
+                },
+                {
+                    "text": "Papule",
+                    "template": "papule",
+                    "children": [
+                        {
+                            "text": "localized",
+                            "template": "localized"
+                        },
+                        {
+                            "text": "generalized",
+                            "template": "generalized"
+                        },
+                        {
+                            "text": "pruritic",
+                            "template": "pruritic"
+                        },
+                        {
+                            "text": "erythematous",
+                            "template": "erythematous"
+                        },
+                        {
+                            "text": "hypopigmented",
+                            "template": "hypopigmented"
+                        },
+                        {
+                            "text": "hyperpigmented",
+                            "template": "hyperpigmented"
+                        },
+                        {
+                            "text": "excoriated",
+                            "template": "excoriated"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard"
+                        },
+                        {
+                            "text": "fluctuant",
+                            "template": "fluctuant"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth"
+                        },
+                        {
+                            "text": "irregular",
+                            "template": "irregular"
+                        },
+                        {
+                            "text": "round",
+                            "template": "round"
+                        },
+                        {
+                            "text": "polygonal",
+                            "template": "polygonal"
+                        },
+                        {
+                            "text": "annular",
+                            "template": "annular"
+                        },
+                        {
+                            "text": "serpiginous",
+                            "template": "serpiginous"
+                        },
+                        {
+                            "text": "nummular",
+                            "template": "nummular"
+                        },
+                        {
+                            "text": "umbilicated",
+                            "template": "umbilicated"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed"
+                        },
+                        {
+                            "text": "lichenified",
+                            "template": "lichenified"
+                        }
+                    ]
+                },
+                {
+                    "text": "Maculopapular",
+                    "template": "maculopapular rash",
+                    "children": [
+                        {
+                            "text": "localized",
+                            "template": "localized"
+                        },
+                        {
+                            "text": "generalized",
+                            "template": "generalized"
+                        },
+                        {
+                            "text": "pruritic",
+                            "template": "pruritic"
+                        },
+                        {
+                            "text": "erythematous",
+                            "template": "erythematous"
+                        },
+                        {
+                            "text": "hypopigmented",
+                            "template": "hypopigmented"
+                        },
+                        {
+                            "text": "hyperpigmented",
+                            "template": "hyperpigmented"
+                        },
+                        {
+                            "text": "excoriated",
+                            "template": "excoriated"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard"
+                        },
+                        {
+                            "text": "fluctuant",
+                            "template": "fluctuant"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth"
+                        },
+                        {
+                            "text": "irregular",
+                            "template": "irregular"
+                        },
+                        {
+                            "text": "round",
+                            "template": "round"
+                        },
+                        {
+                            "text": "polygonal",
+                            "template": "polygonal"
+                        },
+                        {
+                            "text": "annular",
+                            "template": "annular"
+                        },
+                        {
+                            "text": "serpiginous",
+                            "template": "serpiginous"
+                        },
+                        {
+                            "text": "nummular",
+                            "template": "nummular"
+                        },
+                        {
+                            "text": "umbilicated",
+                            "template": "umbilicated"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed"
+                        },
+                        {
+                            "text": "lichenified",
+                            "template": "lichenified"
+                        }
+                    ]
+                },
+                {
+                    "text": "Nodule",
+                    "template": "nodule",
+                    "children": [
+                        {
+                            "text": "localized",
+                            "template": "localized"
+                        },
+                        {
+                            "text": "generalized",
+                            "template": "generalized"
+                        },
+                        {
+                            "text": "pruritic",
+                            "template": "pruritic"
+                        },
+                        {
+                            "text": "erythematous",
+                            "template": "erythematous"
+                        },
+                        {
+                            "text": "hypopigmented",
+                            "template": "hypopigmented"
+                        },
+                        {
+                            "text": "hyperpigmented",
+                            "template": "hyperpigmented"
+                        },
+                        {
+                            "text": "excoriated",
+                            "template": "excoriated"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard"
+                        },
+                        {
+                            "text": "fluctuant",
+                            "template": "fluctuant"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth"
+                        },
+                        {
+                            "text": "irregular",
+                            "template": "irregular"
+                        },
+                        {
+                            "text": "round",
+                            "template": "round"
+                        },
+                        {
+                            "text": "polygonal",
+                            "template": "polygonal"
+                        },
+                        {
+                            "text": "annular",
+                            "template": "annular"
+                        },
+                        {
+                            "text": "serpiginous",
+                            "template": "serpiginous"
+                        },
+                        {
+                            "text": "nummular",
+                            "template": "nummular"
+                        },
+                        {
+                            "text": "umbilicated",
+                            "template": "umbilicated"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed"
+                        },
+                        {
+                            "text": "lichenified",
+                            "template": "lichenified"
+                        }
+                    ]
+                },
+                {
+                    "text": "Mass",
+                    "template": "mass",
+                    "children": [
+                        {
+                            "text": "localized",
+                            "template": "localized"
+                        },
+                        {
+                            "text": "generalized",
+                            "template": "generalized"
+                        },
+                        {
+                            "text": "pruritic",
+                            "template": "pruritic"
+                        },
+                        {
+                            "text": "erythematous",
+                            "template": "erythematous"
+                        },
+                        {
+                            "text": "hypopigmented",
+                            "template": "hypopigmented"
+                        },
+                        {
+                            "text": "hyperpigmented",
+                            "template": "hyperpigmented"
+                        },
+                        {
+                            "text": "excoriated",
+                            "template": "excoriated"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard"
+                        },
+                        {
+                            "text": "fluctuant",
+                            "template": "fluctuant"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth"
+                        },
+                        {
+                            "text": "irregular",
+                            "template": "irregular"
+                        },
+                        {
+                            "text": "round",
+                            "template": "round"
+                        },
+                        {
+                            "text": "polygonal",
+                            "template": "polygonal"
+                        },
+                        {
+                            "text": "annular",
+                            "template": "annular"
+                        },
+                        {
+                            "text": "serpiginous",
+                            "template": "serpiginous"
+                        },
+                        {
+                            "text": "nummular",
+                            "template": "nummular"
+                        },
+                        {
+                            "text": "umbilicated",
+                            "template": "umbilicated"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed"
+                        },
+                        {
+                            "text": "lichenified",
+                            "template": "lichenified"
+                        }
+                    ]
+                },
+                {
+                    "text": "Plaque",
+                    "template": "plaque",
+                    "children": [
+                        {
+                            "text": "localized",
+                            "template": "localized"
+                        },
+                        {
+                            "text": "generalized",
+                            "template": "generalized"
+                        },
+                        {
+                            "text": "pruritic",
+                            "template": "pruritic"
+                        },
+                        {
+                            "text": "erythematous",
+                            "template": "erythematous"
+                        },
+                        {
+                            "text": "hypopigmented",
+                            "template": "hypopigmented"
+                        },
+                        {
+                            "text": "hyperpigmented",
+                            "template": "hyperpigmented"
+                        },
+                        {
+                            "text": "excoriated",
+                            "template": "excoriated"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard"
+                        },
+                        {
+                            "text": "fluctuant",
+                            "template": "fluctuant"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth"
+                        },
+                        {
+                            "text": "irregular",
+                            "template": "irregular"
+                        },
+                        {
+                            "text": "round",
+                            "template": "round"
+                        },
+                        {
+                            "text": "polygonal",
+                            "template": "polygonal"
+                        },
+                        {
+                            "text": "annular",
+                            "template": "annular"
+                        },
+                        {
+                            "text": "serpiginous",
+                            "template": "serpiginous"
+                        },
+                        {
+                            "text": "nummular",
+                            "template": "nummular"
+                        },
+                        {
+                            "text": "umbilicated",
+                            "template": "umbilicated"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed"
+                        },
+                        {
+                            "text": "lichenified",
+                            "template": "lichenified"
+                        }
+                    ]
+                },
+                {
+                    "text": "Vesicle",
+                    "template": "vesicle",
+                    "children": [
+                        {
+                            "text": "localized",
+                            "template": "localized"
+                        },
+                        {
+                            "text": "generalized",
+                            "template": "generalized"
+                        },
+                        {
+                            "text": "pruritic",
+                            "template": "pruritic"
+                        },
+                        {
+                            "text": "erythematous",
+                            "template": "erythematous"
+                        },
+                        {
+                            "text": "hypopigmented",
+                            "template": "hypopigmented"
+                        },
+                        {
+                            "text": "hyperpigmented",
+                            "template": "hyperpigmented"
+                        },
+                        {
+                            "text": "excoriated",
+                            "template": "excoriated"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard"
+                        },
+                        {
+                            "text": "fluctuant",
+                            "template": "fluctuant"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth"
+                        },
+                        {
+                            "text": "irregular",
+                            "template": "irregular"
+                        },
+                        {
+                            "text": "round",
+                            "template": "round"
+                        },
+                        {
+                            "text": "polygonal",
+                            "template": "polygonal"
+                        },
+                        {
+                            "text": "annular",
+                            "template": "annular"
+                        },
+                        {
+                            "text": "serpiginous",
+                            "template": "serpiginous"
+                        },
+                        {
+                            "text": "nummular",
+                            "template": "nummular"
+                        },
+                        {
+                            "text": "umbilicated",
+                            "template": "umbilicated"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed"
+                        },
+                        {
+                            "text": "lichenified",
+                            "template": "lichenified"
+                        }
+                    ]
+                },
+                {
+                    "text": "Cyst",
+                    "template": "cyst",
+                    "children": [
+                        {
+                            "text": "localized",
+                            "template": "localized"
+                        },
+                        {
+                            "text": "generalized",
+                            "template": "generalized"
+                        },
+                        {
+                            "text": "pruritic",
+                            "template": "pruritic"
+                        },
+                        {
+                            "text": "erythematous",
+                            "template": "erythematous"
+                        },
+                        {
+                            "text": "hypopigmented",
+                            "template": "hypopigmented"
+                        },
+                        {
+                            "text": "hyperpigmented",
+                            "template": "hyperpigmented"
+                        },
+                        {
+                            "text": "excoriated",
+                            "template": "excoriated"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard"
+                        },
+                        {
+                            "text": "fluctuant",
+                            "template": "fluctuant"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth"
+                        },
+                        {
+                            "text": "irregular",
+                            "template": "irregular"
+                        },
+                        {
+                            "text": "round",
+                            "template": "round"
+                        },
+                        {
+                            "text": "polygonal",
+                            "template": "polygonal"
+                        },
+                        {
+                            "text": "annular",
+                            "template": "annular"
+                        },
+                        {
+                            "text": "serpiginous",
+                            "template": "serpiginous"
+                        },
+                        {
+                            "text": "nummular",
+                            "template": "nummular"
+                        },
+                        {
+                            "text": "umbilicated",
+                            "template": "umbilicated"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed"
+                        },
+                        {
+                            "text": "lichenified",
+                            "template": "lichenified"
+                        }
+                    ]
+                },
+                {
+                    "text": "Pustule",
+                    "template": "pustule",
+                    "children": [
+                        {
+                            "text": "localized",
+                            "template": "localized"
+                        },
+                        {
+                            "text": "generalized",
+                            "template": "generalized"
+                        },
+                        {
+                            "text": "pruritic",
+                            "template": "pruritic"
+                        },
+                        {
+                            "text": "erythematous",
+                            "template": "erythematous"
+                        },
+                        {
+                            "text": "hypopigmented",
+                            "template": "hypopigmented"
+                        },
+                        {
+                            "text": "hyperpigmented",
+                            "template": "hyperpigmented"
+                        },
+                        {
+                            "text": "excoriated",
+                            "template": "excoriated"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard"
+                        },
+                        {
+                            "text": "fluctuant",
+                            "template": "fluctuant"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth"
+                        },
+                        {
+                            "text": "irregular",
+                            "template": "irregular"
+                        },
+                        {
+                            "text": "round",
+                            "template": "round"
+                        },
+                        {
+                            "text": "polygonal",
+                            "template": "polygonal"
+                        },
+                        {
+                            "text": "annular",
+                            "template": "annular"
+                        },
+                        {
+                            "text": "serpiginous",
+                            "template": "serpiginous"
+                        },
+                        {
+                            "text": "nummular",
+                            "template": "nummular"
+                        },
+                        {
+                            "text": "umbilicated",
+                            "template": "umbilicated"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed"
+                        },
+                        {
+                            "text": "lichenified",
+                            "template": "lichenified"
+                        }
+                    ]
+                },
+                {
+                    "text": "Bulla",
+                    "template": "bulla",
+                    "children": [
+                        {
+                            "text": "localized",
+                            "template": "localized"
+                        },
+                        {
+                            "text": "generalized",
+                            "template": "generalized"
+                        },
+                        {
+                            "text": "pruritic",
+                            "template": "pruritic"
+                        },
+                        {
+                            "text": "erythematous",
+                            "template": "erythematous"
+                        },
+                        {
+                            "text": "hypopigmented",
+                            "template": "hypopigmented"
+                        },
+                        {
+                            "text": "hyperpigmented",
+                            "template": "hyperpigmented"
+                        },
+                        {
+                            "text": "excoriated",
+                            "template": "excoriated"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard"
+                        },
+                        {
+                            "text": "fluctuant",
+                            "template": "fluctuant"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth"
+                        },
+                        {
+                            "text": "irregular",
+                            "template": "irregular"
+                        },
+                        {
+                            "text": "round",
+                            "template": "round"
+                        },
+                        {
+                            "text": "polygonal",
+                            "template": "polygonal"
+                        },
+                        {
+                            "text": "annular",
+                            "template": "annular"
+                        },
+                        {
+                            "text": "serpiginous",
+                            "template": "serpiginous"
+                        },
+                        {
+                            "text": "nummular",
+                            "template": "nummular"
+                        },
+                        {
+                            "text": "umbilicated",
+                            "template": "umbilicated"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed"
+                        },
+                        {
+                            "text": "lichenified",
+                            "template": "lichenified"
+                        }
+                    ]
+                },
+                {
+                    "text": "Abscess",
+                    "template": "abscess",
+                    "children": [
+                        {
+                            "text": "localized",
+                            "template": "localized"
+                        },
+                        {
+                            "text": "generalized",
+                            "template": "generalized"
+                        },
+                        {
+                            "text": "pruritic",
+                            "template": "pruritic"
+                        },
+                        {
+                            "text": "erythematous",
+                            "template": "erythematous"
+                        },
+                        {
+                            "text": "hypopigmented",
+                            "template": "hypopigmented"
+                        },
+                        {
+                            "text": "hyperpigmented",
+                            "template": "hyperpigmented"
+                        },
+                        {
+                            "text": "excoriated",
+                            "template": "excoriated"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard"
+                        },
+                        {
+                            "text": "fluctuant",
+                            "template": "fluctuant"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth"
+                        },
+                        {
+                            "text": "irregular",
+                            "template": "irregular"
+                        },
+                        {
+                            "text": "round",
+                            "template": "round"
+                        },
+                        {
+                            "text": "polygonal",
+                            "template": "polygonal"
+                        },
+                        {
+                            "text": "annular",
+                            "template": "annular"
+                        },
+                        {
+                            "text": "serpiginous",
+                            "template": "serpiginous"
+                        },
+                        {
+                            "text": "nummular",
+                            "template": "nummular"
+                        },
+                        {
+                            "text": "umbilicated",
+                            "template": "umbilicated"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed"
+                        },
+                        {
+                            "text": "lichenified",
+                            "template": "lichenified"
+                        }
+                    ]
+                },
+                {
+                    "text": "Ulcer",
+                    "template": "ulcer",
+                    "children": [
+                        {
+                            "text": "localized",
+                            "template": "localized"
+                        },
+                        {
+                            "text": "generalized",
+                            "template": "generalized"
+                        },
+                        {
+                            "text": "pruritic",
+                            "template": "pruritic"
+                        },
+                        {
+                            "text": "erythematous",
+                            "template": "erythematous"
+                        },
+                        {
+                            "text": "hypopigmented",
+                            "template": "hypopigmented"
+                        },
+                        {
+                            "text": "hyperpigmented",
+                            "template": "hyperpigmented"
+                        },
+                        {
+                            "text": "excoriated",
+                            "template": "excoriated"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard"
+                        },
+                        {
+                            "text": "fluctuant",
+                            "template": "fluctuant"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth"
+                        },
+                        {
+                            "text": "irregular",
+                            "template": "irregular"
+                        },
+                        {
+                            "text": "round",
+                            "template": "round"
+                        },
+                        {
+                            "text": "polygonal",
+                            "template": "polygonal"
+                        },
+                        {
+                            "text": "annular",
+                            "template": "annular"
+                        },
+                        {
+                            "text": "serpiginous",
+                            "template": "serpiginous"
+                        },
+                        {
+                            "text": "nummular",
+                            "template": "nummular"
+                        },
+                        {
+                            "text": "umbilicated",
+                            "template": "umbilicated"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed"
+                        },
+                        {
+                            "text": "lichenified",
+                            "template": "lichenified"
+                        }
+                    ]
+                },
+                {
+                    "text": "Wheal",
+                    "template": "wheal",
+                    "children": [
+                        {
+                            "text": "localized",
+                            "template": "localized"
+                        },
+                        {
+                            "text": "generalized",
+                            "template": "generalized"
+                        },
+                        {
+                            "text": "pruritic",
+                            "template": "pruritic"
+                        },
+                        {
+                            "text": "erythematous",
+                            "template": "erythematous"
+                        },
+                        {
+                            "text": "hypopigmented",
+                            "template": "hypopigmented"
+                        },
+                        {
+                            "text": "hyperpigmented",
+                            "template": "hyperpigmented"
+                        },
+                        {
+                            "text": "excoriated",
+                            "template": "excoriated"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard"
+                        },
+                        {
+                            "text": "fluctuant",
+                            "template": "fluctuant"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth"
+                        },
+                        {
+                            "text": "irregular",
+                            "template": "irregular"
+                        },
+                        {
+                            "text": "round",
+                            "template": "round"
+                        },
+                        {
+                            "text": "polygonal",
+                            "template": "polygonal"
+                        },
+                        {
+                            "text": "annular",
+                            "template": "annular"
+                        },
+                        {
+                            "text": "serpiginous",
+                            "template": "serpiginous"
+                        },
+                        {
+                            "text": "nummular",
+                            "template": "nummular"
+                        },
+                        {
+                            "text": "umbilicated",
+                            "template": "umbilicated"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed"
+                        },
+                        {
+                            "text": "lichenified",
+                            "template": "lichenified"
+                        }
+                    ]
+                },
+                {
+                    "text": "Petechiae",
+                    "template": "petechial rash",
+                    "children": [
+                        {
+                            "text": "localized",
+                            "template": "localized"
+                        },
+                        {
+                            "text": "generalized",
+                            "template": "generalized"
+                        },
+                        {
+                            "text": "pruritic",
+                            "template": "pruritic"
+                        },
+                        {
+                            "text": "erythematous",
+                            "template": "erythematous"
+                        },
+                        {
+                            "text": "hypopigmented",
+                            "template": "hypopigmented"
+                        },
+                        {
+                            "text": "hyperpigmented",
+                            "template": "hyperpigmented"
+                        },
+                        {
+                            "text": "excoriated",
+                            "template": "excoriated"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard"
+                        },
+                        {
+                            "text": "fluctuant",
+                            "template": "fluctuant"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth"
+                        },
+                        {
+                            "text": "irregular",
+                            "template": "irregular"
+                        },
+                        {
+                            "text": "round",
+                            "template": "round"
+                        },
+                        {
+                            "text": "polygonal",
+                            "template": "polygonal"
+                        },
+                        {
+                            "text": "annular",
+                            "template": "annular"
+                        },
+                        {
+                            "text": "serpiginous",
+                            "template": "serpiginous"
+                        },
+                        {
+                            "text": "nummular",
+                            "template": "nummular"
+                        },
+                        {
+                            "text": "umbilicated",
+                            "template": "umbilicated"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed"
+                        },
+                        {
+                            "text": "lichenified",
+                            "template": "lichenified"
+                        }
+                    ]
+                },
+                {
+                    "text": "Scales",
+                    "template": "scales",
+                    "children": [
+                        {
+                            "text": "localized",
+                            "template": "localized"
+                        },
+                        {
+                            "text": "generalized",
+                            "template": "generalized"
+                        },
+                        {
+                            "text": "pruritic",
+                            "template": "pruritic"
+                        },
+                        {
+                            "text": "erythematous",
+                            "template": "erythematous"
+                        },
+                        {
+                            "text": "hypopigmented",
+                            "template": "hypopigmented"
+                        },
+                        {
+                            "text": "hyperpigmented",
+                            "template": "hyperpigmented"
+                        },
+                        {
+                            "text": "excoriated",
+                            "template": "excoriated"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard"
+                        },
+                        {
+                            "text": "fluctuant",
+                            "template": "fluctuant"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth"
+                        },
+                        {
+                            "text": "irregular",
+                            "template": "irregular"
+                        },
+                        {
+                            "text": "round",
+                            "template": "round"
+                        },
+                        {
+                            "text": "polygonal",
+                            "template": "polygonal"
+                        },
+                        {
+                            "text": "annular",
+                            "template": "annular"
+                        },
+                        {
+                            "text": "serpiginous",
+                            "template": "serpiginous"
+                        },
+                        {
+                            "text": "nummular",
+                            "template": "nummular"
+                        },
+                        {
+                            "text": "umbilicated",
+                            "template": "umbilicated"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed"
+                        },
+                        {
+                            "text": "lichenified",
+                            "template": "lichenified"
+                        }
+                    ]
+                }
+            ]
+        },
+        {
+            "text": "Derm, lesion\/rash 4, description",
+            "template": "DERM: {children}",
+            "children": [
+                {
+                    "text": "Location of lesion\/rash",
+                    "template": "Location: {text}",
+                    "type": "alpha"
+                },
+                {
+                    "text": "Centimeter",
+                    "template": "Centimeter",
+                    "type": "number"
+                },
+                {
+                    "text": "Color",
+                    "template": "-colored",
+                    "children": [
+                        {
+                            "text": "white",
+                            "template": "white"
+                        },
+                        {
+                            "text": "pink",
+                            "template": "pink"
+                        },
+                        {
+                            "text": "red",
+                            "template": "red"
+                        },
+                        {
+                            "text": "violaceous",
+                            "template": "violaceous"
+                        },
+                        {
+                            "text": "brown",
+                            "template": "brown"
+                        },
+                        {
+                            "text": "black",
+                            "template": "black"
+                        },
+                        {
+                            "text": "blue",
+                            "template": "blue"
+                        },
+                        {
+                            "text": "orange",
+                            "template": "orange"
+                        },
+                        {
+                            "text": "yellow",
+                            "template": "yellow"
+                        }
+                    ]
+                },
+                {
+                    "text": "Acne",
+                    "template": "comedone",
+                    "children": [
+                        {
+                            "text": "localized",
+                            "template": "localized"
+                        },
+                        {
+                            "text": "generalized",
+                            "template": "generalized"
+                        },
+                        {
+                            "text": "pruritic",
+                            "template": "pruritic"
+                        },
+                        {
+                            "text": "erythematous",
+                            "template": "erythematous"
+                        },
+                        {
+                            "text": "hypopigmented",
+                            "template": "hypopigmented"
+                        },
+                        {
+                            "text": "hyperpigmented",
+                            "template": "hyperpigmented"
+                        },
+                        {
+                            "text": "excoriated",
+                            "template": "excoriated"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard"
+                        },
+                        {
+                            "text": "fluctuant",
+                            "template": "fluctuant"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth"
+                        },
+                        {
+                            "text": "irregular",
+                            "template": "irregular"
+                        },
+                        {
+                            "text": "round",
+                            "template": "round"
+                        },
+                        {
+                            "text": "polygonal",
+                            "template": "polygonal"
+                        },
+                        {
+                            "text": "annular",
+                            "template": "annular"
+                        },
+                        {
+                            "text": "serpiginous",
+                            "template": "serpiginous"
+                        },
+                        {
+                            "text": "nummular",
+                            "template": "nummular"
+                        },
+                        {
+                            "text": "umbilicated",
+                            "template": "umbilicated"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed"
+                        },
+                        {
+                            "text": "lichenified",
+                            "template": "lichenified"
+                        }
+                    ]
+                },
+                {
+                    "text": "Macule",
+                    "template": "macule",
+                    "children": [
+                        {
+                            "text": "localized",
+                            "template": "localized"
+                        },
+                        {
+                            "text": "generalized",
+                            "template": "generalized"
+                        },
+                        {
+                            "text": "pruritic",
+                            "template": "pruritic"
+                        },
+                        {
+                            "text": "erythematous",
+                            "template": "erythematous"
+                        },
+                        {
+                            "text": "hypopigmented",
+                            "template": "hypopigmented"
+                        },
+                        {
+                            "text": "hyperpigmented",
+                            "template": "hyperpigmented"
+                        },
+                        {
+                            "text": "excoriated",
+                            "template": "excoriated"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard"
+                        },
+                        {
+                            "text": "fluctuant",
+                            "template": "fluctuant"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth"
+                        },
+                        {
+                            "text": "irregular",
+                            "template": "irregular"
+                        },
+                        {
+                            "text": "round",
+                            "template": "round"
+                        },
+                        {
+                            "text": "polygonal",
+                            "template": "polygonal"
+                        },
+                        {
+                            "text": "annular",
+                            "template": "annular"
+                        },
+                        {
+                            "text": "serpiginous",
+                            "template": "serpiginous"
+                        },
+                        {
+                            "text": "nummular",
+                            "template": "nummular"
+                        },
+                        {
+                            "text": "umbilicated",
+                            "template": "umbilicated"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed"
+                        },
+                        {
+                            "text": "lichenified",
+                            "template": "lichenified"
+                        }
+                    ]
+                },
+                {
+                    "text": "Papule",
+                    "template": "papule",
+                    "children": [
+                        {
+                            "text": "localized",
+                            "template": "localized"
+                        },
+                        {
+                            "text": "generalized",
+                            "template": "generalized"
+                        },
+                        {
+                            "text": "pruritic",
+                            "template": "pruritic"
+                        },
+                        {
+                            "text": "erythematous",
+                            "template": "erythematous"
+                        },
+                        {
+                            "text": "hypopigmented",
+                            "template": "hypopigmented"
+                        },
+                        {
+                            "text": "hyperpigmented",
+                            "template": "hyperpigmented"
+                        },
+                        {
+                            "text": "excoriated",
+                            "template": "excoriated"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard"
+                        },
+                        {
+                            "text": "fluctuant",
+                            "template": "fluctuant"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth"
+                        },
+                        {
+                            "text": "irregular",
+                            "template": "irregular"
+                        },
+                        {
+                            "text": "round",
+                            "template": "round"
+                        },
+                        {
+                            "text": "polygonal",
+                            "template": "polygonal"
+                        },
+                        {
+                            "text": "annular",
+                            "template": "annular"
+                        },
+                        {
+                            "text": "serpiginous",
+                            "template": "serpiginous"
+                        },
+                        {
+                            "text": "nummular",
+                            "template": "nummular"
+                        },
+                        {
+                            "text": "umbilicated",
+                            "template": "umbilicated"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed"
+                        },
+                        {
+                            "text": "lichenified",
+                            "template": "lichenified"
+                        }
+                    ]
+                },
+                {
+                    "text": "Maculopapular",
+                    "template": "maculopapular rash",
+                    "children": [
+                        {
+                            "text": "localized",
+                            "template": "localized"
+                        },
+                        {
+                            "text": "generalized",
+                            "template": "generalized"
+                        },
+                        {
+                            "text": "pruritic",
+                            "template": "pruritic"
+                        },
+                        {
+                            "text": "erythematous",
+                            "template": "erythematous"
+                        },
+                        {
+                            "text": "hypopigmented",
+                            "template": "hypopigmented"
+                        },
+                        {
+                            "text": "hyperpigmented",
+                            "template": "hyperpigmented"
+                        },
+                        {
+                            "text": "excoriated",
+                            "template": "excoriated"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard"
+                        },
+                        {
+                            "text": "fluctuant",
+                            "template": "fluctuant"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth"
+                        },
+                        {
+                            "text": "irregular",
+                            "template": "irregular"
+                        },
+                        {
+                            "text": "round",
+                            "template": "round"
+                        },
+                        {
+                            "text": "polygonal",
+                            "template": "polygonal"
+                        },
+                        {
+                            "text": "annular",
+                            "template": "annular"
+                        },
+                        {
+                            "text": "serpiginous",
+                            "template": "serpiginous"
+                        },
+                        {
+                            "text": "nummular",
+                            "template": "nummular"
+                        },
+                        {
+                            "text": "umbilicated",
+                            "template": "umbilicated"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed"
+                        },
+                        {
+                            "text": "lichenified",
+                            "template": "lichenified"
+                        }
+                    ]
+                },
+                {
+                    "text": "Nodule",
+                    "template": "nodule",
+                    "children": [
+                        {
+                            "text": "localized",
+                            "template": "localized"
+                        },
+                        {
+                            "text": "generalized",
+                            "template": "generalized"
+                        },
+                        {
+                            "text": "pruritic",
+                            "template": "pruritic"
+                        },
+                        {
+                            "text": "erythematous",
+                            "template": "erythematous"
+                        },
+                        {
+                            "text": "hypopigmented",
+                            "template": "hypopigmented"
+                        },
+                        {
+                            "text": "hyperpigmented",
+                            "template": "hyperpigmented"
+                        },
+                        {
+                            "text": "excoriated",
+                            "template": "excoriated"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard"
+                        },
+                        {
+                            "text": "fluctuant",
+                            "template": "fluctuant"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth"
+                        },
+                        {
+                            "text": "irregular",
+                            "template": "irregular"
+                        },
+                        {
+                            "text": "round",
+                            "template": "round"
+                        },
+                        {
+                            "text": "polygonal",
+                            "template": "polygonal"
+                        },
+                        {
+                            "text": "annular",
+                            "template": "annular"
+                        },
+                        {
+                            "text": "serpiginous",
+                            "template": "serpiginous"
+                        },
+                        {
+                            "text": "nummular",
+                            "template": "nummular"
+                        },
+                        {
+                            "text": "umbilicated",
+                            "template": "umbilicated"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed"
+                        },
+                        {
+                            "text": "lichenified",
+                            "template": "lichenified"
+                        }
+                    ]
+                },
+                {
+                    "text": "Mass",
+                    "template": "mass",
+                    "children": [
+                        {
+                            "text": "localized",
+                            "template": "localized"
+                        },
+                        {
+                            "text": "generalized",
+                            "template": "generalized"
+                        },
+                        {
+                            "text": "pruritic",
+                            "template": "pruritic"
+                        },
+                        {
+                            "text": "erythematous",
+                            "template": "erythematous"
+                        },
+                        {
+                            "text": "hypopigmented",
+                            "template": "hypopigmented"
+                        },
+                        {
+                            "text": "hyperpigmented",
+                            "template": "hyperpigmented"
+                        },
+                        {
+                            "text": "excoriated",
+                            "template": "excoriated"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard"
+                        },
+                        {
+                            "text": "fluctuant",
+                            "template": "fluctuant"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth"
+                        },
+                        {
+                            "text": "irregular",
+                            "template": "irregular"
+                        },
+                        {
+                            "text": "round",
+                            "template": "round"
+                        },
+                        {
+                            "text": "polygonal",
+                            "template": "polygonal"
+                        },
+                        {
+                            "text": "annular",
+                            "template": "annular"
+                        },
+                        {
+                            "text": "serpiginous",
+                            "template": "serpiginous"
+                        },
+                        {
+                            "text": "nummular",
+                            "template": "nummular"
+                        },
+                        {
+                            "text": "umbilicated",
+                            "template": "umbilicated"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed"
+                        },
+                        {
+                            "text": "lichenified",
+                            "template": "lichenified"
+                        }
+                    ]
+                },
+                {
+                    "text": "Plaque",
+                    "template": "plaque",
+                    "children": [
+                        {
+                            "text": "localized",
+                            "template": "localized"
+                        },
+                        {
+                            "text": "generalized",
+                            "template": "generalized"
+                        },
+                        {
+                            "text": "pruritic",
+                            "template": "pruritic"
+                        },
+                        {
+                            "text": "erythematous",
+                            "template": "erythematous"
+                        },
+                        {
+                            "text": "hypopigmented",
+                            "template": "hypopigmented"
+                        },
+                        {
+                            "text": "hyperpigmented",
+                            "template": "hyperpigmented"
+                        },
+                        {
+                            "text": "excoriated",
+                            "template": "excoriated"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard"
+                        },
+                        {
+                            "text": "fluctuant",
+                            "template": "fluctuant"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth"
+                        },
+                        {
+                            "text": "irregular",
+                            "template": "irregular"
+                        },
+                        {
+                            "text": "round",
+                            "template": "round"
+                        },
+                        {
+                            "text": "polygonal",
+                            "template": "polygonal"
+                        },
+                        {
+                            "text": "annular",
+                            "template": "annular"
+                        },
+                        {
+                            "text": "serpiginous",
+                            "template": "serpiginous"
+                        },
+                        {
+                            "text": "nummular",
+                            "template": "nummular"
+                        },
+                        {
+                            "text": "umbilicated",
+                            "template": "umbilicated"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed"
+                        },
+                        {
+                            "text": "lichenified",
+                            "template": "lichenified"
+                        }
+                    ]
+                },
+                {
+                    "text": "Vesicle",
+                    "template": "vesicle",
+                    "children": [
+                        {
+                            "text": "localized",
+                            "template": "localized"
+                        },
+                        {
+                            "text": "generalized",
+                            "template": "generalized"
+                        },
+                        {
+                            "text": "pruritic",
+                            "template": "pruritic"
+                        },
+                        {
+                            "text": "erythematous",
+                            "template": "erythematous"
+                        },
+                        {
+                            "text": "hypopigmented",
+                            "template": "hypopigmented"
+                        },
+                        {
+                            "text": "hyperpigmented",
+                            "template": "hyperpigmented"
+                        },
+                        {
+                            "text": "excoriated",
+                            "template": "excoriated"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard"
+                        },
+                        {
+                            "text": "fluctuant",
+                            "template": "fluctuant"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth"
+                        },
+                        {
+                            "text": "irregular",
+                            "template": "irregular"
+                        },
+                        {
+                            "text": "round",
+                            "template": "round"
+                        },
+                        {
+                            "text": "polygonal",
+                            "template": "polygonal"
+                        },
+                        {
+                            "text": "annular",
+                            "template": "annular"
+                        },
+                        {
+                            "text": "serpiginous",
+                            "template": "serpiginous"
+                        },
+                        {
+                            "text": "nummular",
+                            "template": "nummular"
+                        },
+                        {
+                            "text": "umbilicated",
+                            "template": "umbilicated"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed"
+                        },
+                        {
+                            "text": "lichenified",
+                            "template": "lichenified"
+                        }
+                    ]
+                },
+                {
+                    "text": "Cyst",
+                    "template": "cyst",
+                    "children": [
+                        {
+                            "text": "localized",
+                            "template": "localized"
+                        },
+                        {
+                            "text": "generalized",
+                            "template": "generalized"
+                        },
+                        {
+                            "text": "pruritic",
+                            "template": "pruritic"
+                        },
+                        {
+                            "text": "erythematous",
+                            "template": "erythematous"
+                        },
+                        {
+                            "text": "hypopigmented",
+                            "template": "hypopigmented"
+                        },
+                        {
+                            "text": "hyperpigmented",
+                            "template": "hyperpigmented"
+                        },
+                        {
+                            "text": "excoriated",
+                            "template": "excoriated"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard"
+                        },
+                        {
+                            "text": "fluctuant",
+                            "template": "fluctuant"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth"
+                        },
+                        {
+                            "text": "irregular",
+                            "template": "irregular"
+                        },
+                        {
+                            "text": "round",
+                            "template": "round"
+                        },
+                        {
+                            "text": "polygonal",
+                            "template": "polygonal"
+                        },
+                        {
+                            "text": "annular",
+                            "template": "annular"
+                        },
+                        {
+                            "text": "serpiginous",
+                            "template": "serpiginous"
+                        },
+                        {
+                            "text": "nummular",
+                            "template": "nummular"
+                        },
+                        {
+                            "text": "umbilicated",
+                            "template": "umbilicated"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed"
+                        },
+                        {
+                            "text": "lichenified",
+                            "template": "lichenified"
+                        }
+                    ]
+                },
+                {
+                    "text": "Pustule",
+                    "template": "pustule",
+                    "children": [
+                        {
+                            "text": "localized",
+                            "template": "localized"
+                        },
+                        {
+                            "text": "generalized",
+                            "template": "generalized"
+                        },
+                        {
+                            "text": "pruritic",
+                            "template": "pruritic"
+                        },
+                        {
+                            "text": "erythematous",
+                            "template": "erythematous"
+                        },
+                        {
+                            "text": "hypopigmented",
+                            "template": "hypopigmented"
+                        },
+                        {
+                            "text": "hyperpigmented",
+                            "template": "hyperpigmented"
+                        },
+                        {
+                            "text": "excoriated",
+                            "template": "excoriated"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard"
+                        },
+                        {
+                            "text": "fluctuant",
+                            "template": "fluctuant"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth"
+                        },
+                        {
+                            "text": "irregular",
+                            "template": "irregular"
+                        },
+                        {
+                            "text": "round",
+                            "template": "round"
+                        },
+                        {
+                            "text": "polygonal",
+                            "template": "polygonal"
+                        },
+                        {
+                            "text": "annular",
+                            "template": "annular"
+                        },
+                        {
+                            "text": "serpiginous",
+                            "template": "serpiginous"
+                        },
+                        {
+                            "text": "nummular",
+                            "template": "nummular"
+                        },
+                        {
+                            "text": "umbilicated",
+                            "template": "umbilicated"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed"
+                        },
+                        {
+                            "text": "lichenified",
+                            "template": "lichenified"
+                        }
+                    ]
+                },
+                {
+                    "text": "Bulla",
+                    "template": "bulla",
+                    "children": [
+                        {
+                            "text": "localized",
+                            "template": "localized"
+                        },
+                        {
+                            "text": "generalized",
+                            "template": "generalized"
+                        },
+                        {
+                            "text": "pruritic",
+                            "template": "pruritic"
+                        },
+                        {
+                            "text": "erythematous",
+                            "template": "erythematous"
+                        },
+                        {
+                            "text": "hypopigmented",
+                            "template": "hypopigmented"
+                        },
+                        {
+                            "text": "hyperpigmented",
+                            "template": "hyperpigmented"
+                        },
+                        {
+                            "text": "excoriated",
+                            "template": "excoriated"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard"
+                        },
+                        {
+                            "text": "fluctuant",
+                            "template": "fluctuant"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth"
+                        },
+                        {
+                            "text": "irregular",
+                            "template": "irregular"
+                        },
+                        {
+                            "text": "round",
+                            "template": "round"
+                        },
+                        {
+                            "text": "polygonal",
+                            "template": "polygonal"
+                        },
+                        {
+                            "text": "annular",
+                            "template": "annular"
+                        },
+                        {
+                            "text": "serpiginous",
+                            "template": "serpiginous"
+                        },
+                        {
+                            "text": "nummular",
+                            "template": "nummular"
+                        },
+                        {
+                            "text": "umbilicated",
+                            "template": "umbilicated"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed"
+                        },
+                        {
+                            "text": "lichenified",
+                            "template": "lichenified"
+                        }
+                    ]
+                },
+                {
+                    "text": "Abscess",
+                    "template": "abscess",
+                    "children": [
+                        {
+                            "text": "localized",
+                            "template": "localized"
+                        },
+                        {
+                            "text": "generalized",
+                            "template": "generalized"
+                        },
+                        {
+                            "text": "pruritic",
+                            "template": "pruritic"
+                        },
+                        {
+                            "text": "erythematous",
+                            "template": "erythematous"
+                        },
+                        {
+                            "text": "hypopigmented",
+                            "template": "hypopigmented"
+                        },
+                        {
+                            "text": "hyperpigmented",
+                            "template": "hyperpigmented"
+                        },
+                        {
+                            "text": "excoriated",
+                            "template": "excoriated"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard"
+                        },
+                        {
+                            "text": "fluctuant",
+                            "template": "fluctuant"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth"
+                        },
+                        {
+                            "text": "irregular",
+                            "template": "irregular"
+                        },
+                        {
+                            "text": "round",
+                            "template": "round"
+                        },
+                        {
+                            "text": "polygonal",
+                            "template": "polygonal"
+                        },
+                        {
+                            "text": "annular",
+                            "template": "annular"
+                        },
+                        {
+                            "text": "serpiginous",
+                            "template": "serpiginous"
+                        },
+                        {
+                            "text": "nummular",
+                            "template": "nummular"
+                        },
+                        {
+                            "text": "umbilicated",
+                            "template": "umbilicated"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed"
+                        },
+                        {
+                            "text": "lichenified",
+                            "template": "lichenified"
+                        }
+                    ]
+                },
+                {
+                    "text": "Ulcer",
+                    "template": "ulcer",
+                    "children": [
+                        {
+                            "text": "localized",
+                            "template": "localized"
+                        },
+                        {
+                            "text": "generalized",
+                            "template": "generalized"
+                        },
+                        {
+                            "text": "pruritic",
+                            "template": "pruritic"
+                        },
+                        {
+                            "text": "erythematous",
+                            "template": "erythematous"
+                        },
+                        {
+                            "text": "hypopigmented",
+                            "template": "hypopigmented"
+                        },
+                        {
+                            "text": "hyperpigmented",
+                            "template": "hyperpigmented"
+                        },
+                        {
+                            "text": "excoriated",
+                            "template": "excoriated"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard"
+                        },
+                        {
+                            "text": "fluctuant",
+                            "template": "fluctuant"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth"
+                        },
+                        {
+                            "text": "irregular",
+                            "template": "irregular"
+                        },
+                        {
+                            "text": "round",
+                            "template": "round"
+                        },
+                        {
+                            "text": "polygonal",
+                            "template": "polygonal"
+                        },
+                        {
+                            "text": "annular",
+                            "template": "annular"
+                        },
+                        {
+                            "text": "serpiginous",
+                            "template": "serpiginous"
+                        },
+                        {
+                            "text": "nummular",
+                            "template": "nummular"
+                        },
+                        {
+                            "text": "umbilicated",
+                            "template": "umbilicated"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed"
+                        },
+                        {
+                            "text": "lichenified",
+                            "template": "lichenified"
+                        }
+                    ]
+                },
+                {
+                    "text": "Wheal",
+                    "template": "wheal",
+                    "children": [
+                        {
+                            "text": "localized",
+                            "template": "localized"
+                        },
+                        {
+                            "text": "generalized",
+                            "template": "generalized"
+                        },
+                        {
+                            "text": "pruritic",
+                            "template": "pruritic"
+                        },
+                        {
+                            "text": "erythematous",
+                            "template": "erythematous"
+                        },
+                        {
+                            "text": "hypopigmented",
+                            "template": "hypopigmented"
+                        },
+                        {
+                            "text": "hyperpigmented",
+                            "template": "hyperpigmented"
+                        },
+                        {
+                            "text": "excoriated",
+                            "template": "excoriated"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard"
+                        },
+                        {
+                            "text": "fluctuant",
+                            "template": "fluctuant"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth"
+                        },
+                        {
+                            "text": "irregular",
+                            "template": "irregular"
+                        },
+                        {
+                            "text": "round",
+                            "template": "round"
+                        },
+                        {
+                            "text": "polygonal",
+                            "template": "polygonal"
+                        },
+                        {
+                            "text": "annular",
+                            "template": "annular"
+                        },
+                        {
+                            "text": "serpiginous",
+                            "template": "serpiginous"
+                        },
+                        {
+                            "text": "nummular",
+                            "template": "nummular"
+                        },
+                        {
+                            "text": "umbilicated",
+                            "template": "umbilicated"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed"
+                        },
+                        {
+                            "text": "lichenified",
+                            "template": "lichenified"
+                        }
+                    ]
+                },
+                {
+                    "text": "Petechiae",
+                    "template": "petechial rash",
+                    "children": [
+                        {
+                            "text": "localized",
+                            "template": "localized"
+                        },
+                        {
+                            "text": "generalized",
+                            "template": "generalized"
+                        },
+                        {
+                            "text": "pruritic",
+                            "template": "pruritic"
+                        },
+                        {
+                            "text": "erythematous",
+                            "template": "erythematous"
+                        },
+                        {
+                            "text": "hypopigmented",
+                            "template": "hypopigmented"
+                        },
+                        {
+                            "text": "hyperpigmented",
+                            "template": "hyperpigmented"
+                        },
+                        {
+                            "text": "excoriated",
+                            "template": "excoriated"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard"
+                        },
+                        {
+                            "text": "fluctuant",
+                            "template": "fluctuant"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth"
+                        },
+                        {
+                            "text": "irregular",
+                            "template": "irregular"
+                        },
+                        {
+                            "text": "round",
+                            "template": "round"
+                        },
+                        {
+                            "text": "polygonal",
+                            "template": "polygonal"
+                        },
+                        {
+                            "text": "annular",
+                            "template": "annular"
+                        },
+                        {
+                            "text": "serpiginous",
+                            "template": "serpiginous"
+                        },
+                        {
+                            "text": "nummular",
+                            "template": "nummular"
+                        },
+                        {
+                            "text": "umbilicated",
+                            "template": "umbilicated"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed"
+                        },
+                        {
+                            "text": "lichenified",
+                            "template": "lichenified"
+                        }
+                    ]
+                },
+                {
+                    "text": "Scales",
+                    "template": "scales",
+                    "children": [
+                        {
+                            "text": "localized",
+                            "template": "localized"
+                        },
+                        {
+                            "text": "generalized",
+                            "template": "generalized"
+                        },
+                        {
+                            "text": "pruritic",
+                            "template": "pruritic"
+                        },
+                        {
+                            "text": "erythematous",
+                            "template": "erythematous"
+                        },
+                        {
+                            "text": "hypopigmented",
+                            "template": "hypopigmented"
+                        },
+                        {
+                            "text": "hyperpigmented",
+                            "template": "hyperpigmented"
+                        },
+                        {
+                            "text": "excoriated",
+                            "template": "excoriated"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard"
+                        },
+                        {
+                            "text": "fluctuant",
+                            "template": "fluctuant"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth"
+                        },
+                        {
+                            "text": "irregular",
+                            "template": "irregular"
+                        },
+                        {
+                            "text": "round",
+                            "template": "round"
+                        },
+                        {
+                            "text": "polygonal",
+                            "template": "polygonal"
+                        },
+                        {
+                            "text": "annular",
+                            "template": "annular"
+                        },
+                        {
+                            "text": "serpiginous",
+                            "template": "serpiginous"
+                        },
+                        {
+                            "text": "nummular",
+                            "template": "nummular"
+                        },
+                        {
+                            "text": "umbilicated",
+                            "template": "umbilicated"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed"
+                        },
+                        {
+                            "text": "lichenified",
+                            "template": "lichenified"
+                        }
+                    ]
+                }
+            ]
+        },
+        {
+            "text": "Extremities",
+            "template": "EXT: {children}",
+            "children": [
+                {
+                    "text": "no C\/C\/E",
+                    "template": "no C\/C\/E"
+                },
+                {
+                    "text": "cyanosis",
+                    "template": "cyanosis",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "clubbing",
+                    "template": "clubbing",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "edema",
+                    "template": "edema",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "anasarca",
+                    "template": "anasarca",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Upper extremity C\/C\/E, R",
+                    "template": "Upper extremity cyanosis\/clubbing\/edema, R: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity C\/C\/E, L",
+                    "template": "Upper extremity cyanosis\/clubbing\/edema, L: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremities C\/C\/E, BL",
+                    "template": "Upper extremities cyanosis\/clubbing\/edema, BL: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity C\/C\/E, R",
+                    "template": "Lower extremity cyanosis\/clubbing\/edema, R: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity C\/C\/E, L",
+                    "template": "Lower extremity cyanosis\/clubbing\/edema, L: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremities C\/C\/E, BL",
+                    "template": "Lower extremities cyanosis\/clubbing\/edema, BL: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "full range of motion throughout",
+                    "template": "full range of motion throughout"
+                },
+                {
+                    "text": "upper ext strength intact BL",
+                    "template": "upper extremity strength intact BL"
+                },
+                {
+                    "text": "Upper extremity, ROM, R",
+                    "template": "Upper extremity, range of motion, R: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity, ROM, L",
+                    "template": "Upper extremity, range of motion, L: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremities, ROM, BL",
+                    "template": "Upper extremities, range of motion, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "lower ext strength intact BL",
+                    "template": "lower extremity strength intact BL"
+                },
+                {
+                    "text": "Lower extremity, ROM, R",
+                    "template": "Lower extremity, range of motion, R: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity, ROM, L",
+                    "template": "Lower extremity, range of motion, L: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity, ROM, BL",
+                    "template": "Lower extremity, range of motion, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "upper extremity strength intact BL",
+                    "template": "Upper extremity strength intact BL"
+                },
+                {
+                    "text": "Upper extremity strength, R",
+                    "template": "Upper extremity strength, R: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity strength, L",
+                    "template": "Upper extremity strength, L: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity strength, BL",
+                    "template": "Upper extremity strength, BL: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "lower extremity strength intact BL",
+                    "template": "Lower extremity strength intact BL"
+                },
+                {
+                    "text": "Lower extremity strength, R",
+                    "template": "Lower extremity strength, R: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity strength, L",
+                    "template": "Lower extremity strength, L: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity strength, BL",
+                    "template": "Lower extremity strength, BL: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Musculoskeletal",
+            "template": "MUSC\/SKEL: {children}",
+            "children": [
+                {
+                    "text": "muscle strength NL throughout",
+                    "template": "muscle strength NL throughout"
+                },
+                {
+                    "text": "NL upper extremity exam BL",
+                    "template": "NL upper extremity exam BL",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "NL lower extremity exam BL",
+                    "template": "NL lower extremity exam BL",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Upper extremity, R",
+                    "template": "Upper extremity exam, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "normal strength and tone"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity, L",
+                    "template": "Upper extremity exam, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "normal strength and tone"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity, BL",
+                    "template": "Upper extremity exam, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "strength and tone normal"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity, R",
+                    "template": "Lower extremity exam, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "normal strength and tone"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity, L",
+                    "template": "Lower extremity exam, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "normal strength and tone"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity, BL",
+                    "template": "Lower extremity exam, BL {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "normal strength and tone"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Back, R",
+                    "template": "Back exam, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sacral edema",
+                            "template": "sacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "presacral edema",
+                            "template": "presacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "costovertebral angle tenderness",
+                            "template": "costovertebral angle tenderness",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Back, L",
+                    "template": "Back exam, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sacral edema",
+                            "template": "sacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "presacral edema",
+                            "template": "presacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "costovertebral angle tenderness",
+                            "template": "costovertebral angle tenderness",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Back, BL",
+                    "template": "Back exam, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sacral edema",
+                            "template": "sacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "presacral edema",
+                            "template": "presacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "costovertebral angle tenderness",
+                            "template": "costovertebral angle tenderness",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Neurologic",
+            "template": "NEURO: {children}",
+            "children": [
+                {
+                    "text": "sensation grossly intact",
+                    "template": "sensation grossly intact"
+                },
+                {
+                    "text": "CN II-XII intact and nonfocal",
+                    "template": "CN II-XII intact and nonfocal"
+                },
+                {
+                    "text": "DTRs bilaterally equal throughout",
+                    "template": "deep tendon reflexes 2+, bilaterally equal throughout"
+                },
+                {
+                    "text": "pathological reflexes elicited",
+                    "template": "pathological reflexes elicited"
+                },
+                {
+                    "text": "no pathological reflexes elicited",
+                    "template": "no pathological reflexes elicited"
+                },
+                {
+                    "text": "normal gait and station",
+                    "template": "normal gait and station"
+                },
+                {
+                    "text": "normal gait",
+                    "template": "normal gait"
+                },
+                {
+                    "text": "normal station",
+                    "template": "normal station"
+                },
+                {
+                    "text": "cafe au lait spotting present",
+                    "template": "cafe au lait spotting present"
+                },
+                {
+                    "text": "no cafe au lait spotting",
+                    "template": "no cafe au lait spotting"
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "Other findings: {text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Psychiatric",
+            "template": "PSYCH: {children}",
+            "children": [
+                {
+                    "text": "AO x 3",
+                    "template": "alert and oriented to time, place, and person"
+                },
+                {
+                    "text": "normal mood",
+                    "template": "normal mood"
+                },
+                {
+                    "text": "normal affect",
+                    "template": "normal affect"
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "Other findings: {text}",
+                    "type": "alpha"
+                }
+            ]
+        }
+    ]
+}

+ 13961 - 0
storage/templates/exam-default/exam-ext-detail/ext-exam.json

@@ -0,0 +1,13961 @@
+{
+    "section": "exam-ext-detail",
+    "templateSet": "EXT Exam",
+    "templates": [
+        {
+            "text": "1-Click normal exams",
+            "template": "{children}",
+            "children": [
+                {
+                    "text": "GEN: NAD",
+                    "template": "GEN: NAD"
+                },
+                {
+                    "text": "SPINE: NL alignment, NT",
+                    "template": "MUSC\/SKEL: NL spine alignment, nontender"
+                },
+                {
+                    "text": "EXT x 4: strength\/bulk\/tone NL",
+                    "template": "MUSC\/SKEL: strength\/bulk\/tone NL in all 4 extremities"
+                },
+                {
+                    "text": "EXT x 4: FROM w\/o pain, instability",
+                    "template": "MUSC\/SKEL: full range of motion without pain or instability in all 4 extremities\n                            "
+                },
+                {
+                    "text": "EXT x 4: NL alignment\/symmetry",
+                    "template": "MUSC\/SKEL: all 4 extremities with normal alignment and symmetry"
+                },
+                {
+                    "text": "EXT x 4: no effusions or masses",
+                    "template": "MUSC\/SKEL: no effusions or masses in any extremity"
+                },
+                {
+                    "text": "EXT: no C\/C\/E",
+                    "template": "EXT: no cyanosis\/clubbing\/edema"
+                },
+                {
+                    "text": "EXT: peripheral pulses intact",
+                    "template": "EXT: peripheral pulses intact"
+                },
+                {
+                    "text": "NEURO: AO x 3",
+                    "template": "NEURO: AO x 3"
+                },
+                {
+                    "text": "NEURO: gait and station NL",
+                    "template": "NEURO: gait and station NL"
+                },
+                {
+                    "text": "NEURO: sensation intact thru",
+                    "template": "NEURO: sensation intact throughout"
+                },
+                {
+                    "text": "NEURO: DTR intact BL UE and LE",
+                    "template": "NEURO: DTRs intact bilaterally in the upper and lower extremities"
+                }
+            ]
+        },
+        {
+            "text": "General",
+            "template": "GEN: {children}",
+            "children": [
+                {
+                    "text": "NAD",
+                    "template": "NAD",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "cooperative with exam",
+                    "template": "cooperative with exam",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "well groomed",
+                    "template": "well groomed",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "well developed",
+                    "template": "well developed",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "well nourished",
+                    "template": "well nourished",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "overweight",
+                    "template": "overweight",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "obese",
+                    "template": "obese",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "morbidly obese",
+                    "template": "morbidly obese",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "emaciated",
+                    "template": "emaciated",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "appears to be stated age",
+                    "template": "appears to be stated age",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "appears older than stated age",
+                    "template": "appears older than stated age",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "appears younger than stated age",
+                    "template": "appears younger than stated age",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "HEENT",
+            "template": "HEENT: {children}",
+            "children": [
+                {
+                    "text": "head normocephalic, atraumatic",
+                    "template": "head normocephalic, atraumatic"
+                },
+                {
+                    "text": "EOMI",
+                    "template": "EOMI"
+                },
+                {
+                    "text": "PERRLA",
+                    "template": "PERRLA"
+                },
+                {
+                    "text": "scleral icterus",
+                    "template": "scleral icterus",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "pale conjunctivae",
+                    "template": "pale conjunctivae",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "hearing grossly intact",
+                    "template": "hearing grossly intact",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "normal dentition",
+                    "template": "normal dentition"
+                },
+                {
+                    "text": "normal lips",
+                    "template": "normal lips"
+                },
+                {
+                    "text": "normal gums",
+                    "template": "normal gums"
+                },
+                {
+                    "text": "pharynx unremarkable",
+                    "template": "pharynx unremarkable"
+                },
+                {
+                    "text": "mucous membranes moist",
+                    "template": "mucous membranes moist",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "frenular jaundice",
+                    "template": "frenular jaundice",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Neck",
+            "template": "NECK: {children}",
+            "children": [
+                {
+                    "text": "soft, nontender",
+                    "template": "soft, nontender"
+                },
+                {
+                    "text": "no increased JVP visible",
+                    "template": "no increased JVP visible"
+                },
+                {
+                    "text": "hepatojugular reflex elicited",
+                    "template": "hepatojugular reflex elicited",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "no cervical LN",
+                    "template": "no significant cervical lymphadenopathy"
+                },
+                {
+                    "text": "neck not enlarged",
+                    "template": "neck not enlarged"
+                },
+                {
+                    "text": "obese neck",
+                    "template": "neck obesity",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "thyromegaly",
+                    "template": "thyromegaly",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Lymphadenopathy",
+                    "template": "{children} lymphadenopathy",
+                    "children": [
+                        {
+                            "text": "shotty cervical",
+                            "template": "shotty cervical"
+                        },
+                        {
+                            "text": "submental",
+                            "template": "submental"
+                        },
+                        {
+                            "text": "R submandibular",
+                            "template": "R submandibular"
+                        },
+                        {
+                            "text": "L submandibular",
+                            "template": "L submandibular"
+                        },
+                        {
+                            "text": "R ant. cervical",
+                            "template": "R anterior cervical"
+                        },
+                        {
+                            "text": "L ant. cervical",
+                            "template": "L anterior cervical"
+                        },
+                        {
+                            "text": "R preauricular",
+                            "template": "R preauricular"
+                        },
+                        {
+                            "text": "L preauricular",
+                            "template": "L preauricular"
+                        },
+                        {
+                            "text": "R post. auricular",
+                            "template": "R posterior auricular"
+                        },
+                        {
+                            "text": "L post. auricular",
+                            "template": "L posterior auricular"
+                        },
+                        {
+                            "text": "R supraclavicular",
+                            "template": "R supraclavicular"
+                        },
+                        {
+                            "text": "L supraclavicular",
+                            "template": "L supraclavicular"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Respiratory",
+            "template": "RESP: {children}",
+            "children": [
+                {
+                    "text": "no respiratory distress",
+                    "template": "no respiratory distress"
+                },
+                {
+                    "text": "auscultation clear BL",
+                    "template": "clear to auscultation bilaterally"
+                },
+                {
+                    "text": "no wheezes\/rales\/rhonchi",
+                    "template": "no wheezes\/rales\/rhonchi"
+                },
+                {
+                    "text": "percussion clear BL",
+                    "template": "clear to percussion bilaterally"
+                },
+                {
+                    "text": "chest wall symmetric",
+                    "template": "chest wall symmetric"
+                },
+                {
+                    "text": "Abnl lung sounds, R",
+                    "template": "Abnl lung sounds, R: {children}",
+                    "children": [
+                        {
+                            "text": "whoop",
+                            "template": "whoop",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "stridor",
+                            "template": "stridor",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pleural rub",
+                            "template": "pleural rub"
+                        },
+                        {
+                            "text": "basilar rales",
+                            "template": "basilar rales"
+                        },
+                        {
+                            "text": "rales scattered",
+                            "template": "scattered rales"
+                        },
+                        {
+                            "text": "rhonchi scattered",
+                            "template": "scattered rhonchi"
+                        },
+                        {
+                            "text": "diminished breath sounds throughout",
+                            "template": "diminished breath sounds throughout"
+                        },
+                        {
+                            "text": "diminished breath sounds at bases",
+                            "template": "diminished breath sounds at bases"
+                        },
+                        {
+                            "text": "wheezes, expiration",
+                            "template": "expiratory wheezes"
+                        }
+                    ]
+                },
+                {
+                    "text": "Abnl lung sounds, L",
+                    "template": "Abnl lung sounds, L: {children}",
+                    "children": [
+                        {
+                            "text": "whoop",
+                            "template": "whoop",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "stridor",
+                            "template": "stridor",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pleural rub",
+                            "template": "pleural rub"
+                        },
+                        {
+                            "text": "basilar rales",
+                            "template": "basilar rales"
+                        },
+                        {
+                            "text": "rales scattered",
+                            "template": "scattered rales"
+                        },
+                        {
+                            "text": "rhonchi scattered",
+                            "template": "scattered rhonchi"
+                        },
+                        {
+                            "text": "diminished breath sounds throughout",
+                            "template": "diminished breath sounds throughout"
+                        },
+                        {
+                            "text": "diminished breath sounds at bases",
+                            "template": "diminished breath sounds at bases"
+                        },
+                        {
+                            "text": "wheezes, expiration",
+                            "template": "expiratory wheezes"
+                        }
+                    ]
+                },
+                {
+                    "text": "Abnl lung sounds, BL",
+                    "template": "Abnl lung sounds, BL: {children}",
+                    "children": [
+                        {
+                            "text": "whoop",
+                            "template": "whoop",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "stridor",
+                            "template": "stridor",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pleural rub",
+                            "template": "pleural rub"
+                        },
+                        {
+                            "text": "basilar rales",
+                            "template": "basilar rales"
+                        },
+                        {
+                            "text": "rales scattered",
+                            "template": "scattered rales"
+                        },
+                        {
+                            "text": "rhonchi scattered",
+                            "template": "scattered rhonchi"
+                        },
+                        {
+                            "text": "diminished breath sounds throughout",
+                            "template": "diminished breath sounds throughout"
+                        },
+                        {
+                            "text": "diminished breath sounds at bases",
+                            "template": "diminished breath sounds at bases"
+                        },
+                        {
+                            "text": "wheezes, expiration",
+                            "template": "expiratory wheezes"
+                        }
+                    ]
+                },
+                {
+                    "text": "Percussion, R",
+                    "template": "Percussion, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal to percussion",
+                            "template": "normal to percussion"
+                        },
+                        {
+                            "text": "dullness to percussion at base",
+                            "template": "dullness to percussion at base"
+                        },
+                        {
+                            "text": "dull throughout",
+                            "template": "dull to percussion throughout"
+                        }
+                    ]
+                },
+                {
+                    "text": "Percussion, L",
+                    "template": "Percussion, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal to percussion",
+                            "template": "normal to percussion"
+                        },
+                        {
+                            "text": "dullness to percussion at base",
+                            "template": "dullness to percussion at base"
+                        },
+                        {
+                            "text": "dull throughout",
+                            "template": "dull to percussion throughout"
+                        }
+                    ]
+                },
+                {
+                    "text": "Percussion, BL",
+                    "template": "Percussion, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal to percussion",
+                            "template": "normal to percussion"
+                        },
+                        {
+                            "text": "dullness to percussion at base",
+                            "template": "dullness to percussion at base"
+                        },
+                        {
+                            "text": "dull throughout",
+                            "template": "dull to percussion throughout"
+                        }
+                    ]
+                },
+                {
+                    "text": "Breathing dynamics, R",
+                    "template": "Breathing dynamics, R: {children}",
+                    "children": [
+                        {
+                            "text": "labored breathing",
+                            "template": "labored breathing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "accessory muscle use",
+                            "template": "accessory muscle use",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "rib retractions",
+                            "template": "rib retractions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abnormal diaphragm movement",
+                            "template": "abnormal diaphragm movement",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Breathing dynamics, L",
+                    "template": "Breathing dynamics, L: {children}",
+                    "children": [
+                        {
+                            "text": "labored breathing",
+                            "template": "labored breathing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "accessory muscle use",
+                            "template": "accessory muscle use",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "rib retractions",
+                            "template": "rib retractions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abnormal diaphragm movement",
+                            "template": "abnormal diaphragm movement",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Breathing dynamics, BL",
+                    "template": "Breathing dynamics, BL: {children}",
+                    "children": [
+                        {
+                            "text": "labored breathing",
+                            "template": "labored breathing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "accessory muscle use",
+                            "template": "accessory muscle use",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "rib retractions",
+                            "template": "rib retractions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abnormal diaphragm movement",
+                            "template": "abnormal diaphragm movement",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Cardiovascular",
+            "template": "CV: {children}",
+            "children": [
+                {
+                    "text": "RRR, no murmur\/rub\/gallop",
+                    "template": "RRR, no murmur\/rub\/gallop"
+                },
+                {
+                    "text": "S1, S2 findings",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "NL S1",
+                            "template": "NL S1"
+                        },
+                        {
+                            "text": "NL S2",
+                            "template": "NL S2"
+                        },
+                        {
+                            "text": "split S2",
+                            "template": "split S2"
+                        },
+                        {
+                            "text": "split S1",
+                            "template": "split S1"
+                        },
+                        {
+                            "text": "persistently split S2",
+                            "template": "persistently split S2"
+                        },
+                        {
+                            "text": "physiologically split S2",
+                            "template": "physiologically split S2"
+                        },
+                        {
+                            "text": "paradoxically split S2",
+                            "template": "paradoxically split S2"
+                        },
+                        {
+                            "text": "widely split S2",
+                            "template": "widely split S2"
+                        }
+                    ]
+                },
+                {
+                    "text": "S3 gallop",
+                    "template": "S3 gallop",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "S4 gallop",
+                    "template": "S4 gallop",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "regular rate and rhythm",
+                    "template": "regular rate and rhythm"
+                },
+                {
+                    "text": "regular rate",
+                    "template": "regular rate"
+                },
+                {
+                    "text": "regular rhythm",
+                    "template": "regular rhythm"
+                },
+                {
+                    "text": "no murmurs",
+                    "template": "no murmurs"
+                },
+                {
+                    "text": "Murmur grade",
+                    "template": "Murmur grade: {text}\/6",
+                    "type": "number"
+                },
+                {
+                    "text": "Murmur timing\/location",
+                    "template": "murmur {children}",
+                    "children": [
+                        {
+                            "text": "systolic",
+                            "template": "is systolic"
+                        },
+                        {
+                            "text": "diastolic",
+                            "template": "is diastolic"
+                        },
+                        {
+                            "text": "holosystolic",
+                            "template": "is holosystolic"
+                        },
+                        {
+                            "text": "continuous",
+                            "template": "is continuous"
+                        },
+                        {
+                            "text": "best: L sternal border",
+                            "template": "best heard at L sternal border"
+                        },
+                        {
+                            "text": "best: 2nd R ICS",
+                            "template": "best heard near 2nd R ICS"
+                        },
+                        {
+                            "text": "best: xiphoid\/ sternal area",
+                            "template": "best heard at xiphoid\/sternal area"
+                        },
+                        {
+                            "text": "best: apex",
+                            "template": "best heard at apex"
+                        },
+                        {
+                            "text": "best: R sternal border",
+                            "template": "best heard at R sternal border"
+                        },
+                        {
+                            "text": "nonradiating",
+                            "template": "nonradiating"
+                        },
+                        {
+                            "text": "radiates to axilla",
+                            "template": "radiates to axilla"
+                        },
+                        {
+                            "text": "radiates to apex",
+                            "template": "radiates to apex"
+                        },
+                        {
+                            "text": "radiates to carotids",
+                            "template": "radiates to carotids"
+                        },
+                        {
+                            "text": "radiates to R side",
+                            "template": "radiates to R side"
+                        },
+                        {
+                            "text": "radiates to sternum",
+                            "template": "radiates to sternum"
+                        },
+                        {
+                            "text": "radiates to L clavicular area",
+                            "template": "radiates to L clavicular area"
+                        }
+                    ]
+                },
+                {
+                    "text": "no increased JVP visible",
+                    "template": "no increased JVP visible"
+                },
+                {
+                    "text": "JVP level (cm)",
+                    "template": "JVP {text} cm above the sternal angle",
+                    "type": "number"
+                },
+                {
+                    "text": "Heaves, Thrills, Lifts",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "heave",
+                            "template": "heave",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "parasternal lift",
+                            "template": "parasternal lift",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "thrill",
+                            "template": "thrill",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Extra heart sounds",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "extra heart sounds",
+                            "template": "extra heart sounds",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pulmonary ejection sound",
+                            "template": "pulmonary ejection sound",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "aortic ejection sound",
+                            "template": "aortic ejection sound",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "systolic click",
+                            "template": "systolic click",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "midsystolic click",
+                            "template": "midsystolic click",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mid-late systolic click",
+                            "template": "mid-to-late systolic click",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pericardial rub",
+                            "template": "pericardial rub",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "knock",
+                            "template": "knock",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "opening snap",
+                            "template": "opening snap",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "plop",
+                            "template": "plop",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "prosthetic sounds",
+                            "template": "prosthetic sounds",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pacemaker sounds",
+                            "template": "pacemaker sounds",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "PMI nondisplaced",
+                    "template": "PMI nondisplaced"
+                },
+                {
+                    "text": "PMI displaced",
+                    "template": "PMI displaced",
+                    "children": [
+                        {
+                            "text": "laterally",
+                            "template": "laterally"
+                        },
+                        {
+                            "text": "inferiorly",
+                            "template": "inferiorly"
+                        },
+                        {
+                            "text": "superiorly",
+                            "template": "superiorly"
+                        },
+                        {
+                            "text": "parasternally",
+                            "template": "parasternally"
+                        }
+                    ]
+                },
+                {
+                    "text": "Peripheral pulses, R",
+                    "template": "Peripheral pulses, R: {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity normal",
+                            "template": "upper extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lower extremity normal",
+                            "template": "lower extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished in upper extremities",
+                            "template": "diminished in upper extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished in lower extremities",
+                            "template": "diminished in lower extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pulsus paradoxicus",
+                            "template": "pulsus paradoxicus",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Peripheral pulses, L",
+                    "template": "Peripheral pulses, L: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact"
+                        },
+                        {
+                            "text": "upper extremity normal",
+                            "template": "upper extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lower extremity normal",
+                            "template": "lower extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished in upper extremities",
+                            "template": "diminished in upper extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished in lower extremities",
+                            "template": "diminished in lower extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pulsus paradoxicus",
+                            "template": "pulsus paradoxicus",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Peripheral pulses, BL",
+                    "template": "Peripheral pulses, BL: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact"
+                        },
+                        {
+                            "text": "upper extremity normal",
+                            "template": "upper extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lower extremity normal",
+                            "template": "lower extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished in upper extremities",
+                            "template": "diminished in upper extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished in lower extremities",
+                            "template": "diminished in lower extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pulsus paradoxicus",
+                            "template": "pulsus paradoxicus",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Xanthomas, R",
+                    "template": "Xanthomas, R: {children}",
+                    "children": [
+                        {
+                            "text": "eyelids",
+                            "template": "eyelids"
+                        },
+                        {
+                            "text": "periorbital",
+                            "template": "periorbital area"
+                        },
+                        {
+                            "text": "hands",
+                            "template": "hands"
+                        },
+                        {
+                            "text": "achilles tendons",
+                            "template": "achilles tendons"
+                        },
+                        {
+                            "text": "feet",
+                            "template": "feet"
+                        },
+                        {
+                            "text": "elbows",
+                            "template": "elbows"
+                        },
+                        {
+                            "text": "knees",
+                            "template": "knees"
+                        },
+                        {
+                            "text": "shoulders",
+                            "template": "shoulders"
+                        },
+                        {
+                            "text": "buttocks",
+                            "template": "buttocks"
+                        }
+                    ]
+                },
+                {
+                    "text": "Xanthomas, L",
+                    "template": "Xanthomas, L: {children}",
+                    "children": [
+                        {
+                            "text": "eyelids",
+                            "template": "eyelids"
+                        },
+                        {
+                            "text": "periorbital",
+                            "template": "periorbital area"
+                        },
+                        {
+                            "text": "hands",
+                            "template": "hands"
+                        },
+                        {
+                            "text": "achilles tendons",
+                            "template": "achilles tendons"
+                        },
+                        {
+                            "text": "feet",
+                            "template": "feet"
+                        },
+                        {
+                            "text": "elbows",
+                            "template": "elbows"
+                        },
+                        {
+                            "text": "knees",
+                            "template": "knees"
+                        },
+                        {
+                            "text": "shoulders",
+                            "template": "shoulders"
+                        },
+                        {
+                            "text": "buttocks",
+                            "template": "buttocks"
+                        }
+                    ]
+                },
+                {
+                    "text": "Xanthomas, BL",
+                    "template": "Xanthomas, BL: {children}",
+                    "children": [
+                        {
+                            "text": "eyelids",
+                            "template": "eyelids"
+                        },
+                        {
+                            "text": "periorbital",
+                            "template": "periorbital area"
+                        },
+                        {
+                            "text": "hands",
+                            "template": "hands"
+                        },
+                        {
+                            "text": "achilles tendons",
+                            "template": "achilles tendons"
+                        },
+                        {
+                            "text": "feet",
+                            "template": "feet"
+                        },
+                        {
+                            "text": "elbows",
+                            "template": "elbows"
+                        },
+                        {
+                            "text": "knees",
+                            "template": "knees"
+                        },
+                        {
+                            "text": "shoulders",
+                            "template": "shoulders"
+                        },
+                        {
+                            "text": "buttocks",
+                            "template": "buttocks"
+                        }
+                    ]
+                },
+                {
+                    "text": "LE venous stasis changes",
+                    "template": "LE venous stasis changes",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "varicose veins",
+                    "template": "varicose veins",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "LE varicose veins, R",
+                    "template": "LE varicose veins, R: {children}",
+                    "children": [
+                        {
+                            "text": "present",
+                            "template": "present",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "LE varicose veins, L",
+                    "template": "LE varicose veins, L: {children}",
+                    "children": [
+                        {
+                            "text": "present",
+                            "template": "present",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "LE varicose veins, BL",
+                    "template": "LE varicose veins, BL: {children}",
+                    "children": [
+                        {
+                            "text": "present",
+                            "template": "present",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "Other findings: {text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Cardiovascular, pulses",
+            "template": "CV: {children}",
+            "children": [
+                {
+                    "text": "pulse rate and rhythm regular",
+                    "template": "pulse rate and rhythm regular"
+                },
+                {
+                    "text": "pulse rate regular",
+                    "template": "pulse rate regular"
+                },
+                {
+                    "text": "pulse rhythm regular",
+                    "template": "pulse rhythm regular"
+                },
+                {
+                    "text": "Temporal artery, R",
+                    "template": "Temporal artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Temporal artery, L",
+                    "template": "Temporal artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Temporal arteries, BL",
+                    "template": "Temporal arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Carotid artery, R",
+                    "template": "Carotid artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "delayed upstroke",
+                            "template": "delayed upstroke"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Carotid artery, L",
+                    "template": "Carotid artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "delayed upstroke",
+                            "template": "delayed upstroke"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Carotid arteries, BL",
+                    "template": "Carotid arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "delayed upstroke",
+                            "template": "delayed upstroke"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Brachial artery, R",
+                    "template": "Brachial artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Brachial artery, L",
+                    "template": "Brachial artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Brachial arteries, BL",
+                    "template": "Brachial arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Radial artery, R",
+                    "template": "Radial artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "waterhammer",
+                            "template": "waterhammer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bisferiens",
+                            "template": "bisferiens",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Radial artery, L",
+                    "template": "Radial artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "waterhammer",
+                            "template": "waterhammer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bisferiens",
+                            "template": "bisferiens",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Radial arteries, BL",
+                    "template": "Radial arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "waterhammer",
+                            "template": "waterhammer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bisferiens",
+                            "template": "bisferiens",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Femoral artery, R",
+                    "template": "Femoral artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Femoral artery, L",
+                    "template": "Femoral artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Femoral arteries, BL",
+                    "template": "Femoral arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Popliteal artery, R",
+                    "template": "Popliteal artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Popliteal artery, L",
+                    "template": "Popliteal artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Popliteal arteries, BL",
+                    "template": "Popliteal arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Dorsalis pedis artery, R",
+                    "template": "Dorsalis pedis artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Dorsalis pedis artery, L",
+                    "template": "Dorsalis pedis artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Dorsalis pedis arteries, BL",
+                    "template": "Dorsalis pedis arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Posterior tibial, R",
+                    "template": "Posterior tibial, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Posterior tibial, L",
+                    "template": "Posterior tibial, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Posterior tibial arteries, BL",
+                    "template": "Posterior tibial arteries, BL {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Renal artery, R",
+                    "template": "Renal artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "bruit present",
+                            "template": "bruit present"
+                        },
+                        {
+                            "text": "palpable pulse",
+                            "template": "palpable pulse",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Renal artery, L",
+                    "template": "Renal artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "bruit present",
+                            "template": "bruit present"
+                        },
+                        {
+                            "text": "palpable pulse",
+                            "template": "palpable pulse",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Renal arteries, BL",
+                    "template": "Renal arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "bruit present",
+                            "template": "bruit present"
+                        },
+                        {
+                            "text": "palpable pulse",
+                            "template": "palpable pulse",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Aorta",
+                    "template": "Aorta: {children}",
+                    "children": [
+                        {
+                            "text": "enlargement",
+                            "template": "enlargement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Gastrointestinal",
+            "template": "GI: {children}",
+            "children": [
+                {
+                    "text": "NL abdominal inspection",
+                    "template": "NL abdominal inspection"
+                },
+                {
+                    "text": "abdominal distension noted",
+                    "template": "abdominal distension noted"
+                },
+                {
+                    "text": "abdomen flat on inspection",
+                    "template": "abdomen flat on inspection"
+                },
+                {
+                    "text": "abdomen obese on inspection",
+                    "template": "abdomen obese on inspection"
+                },
+                {
+                    "text": "abdomen scaphoid on inspection",
+                    "template": "abdomen scaphoid on inspection"
+                },
+                {
+                    "text": "bowel sounds intact throughout",
+                    "template": "bowel sounds intact throughout"
+                },
+                {
+                    "text": "decreased bowel sounds",
+                    "template": "decreased bowel sounds",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "absent bowel sounds",
+                    "template": "absent bowel sounds",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "high pitched bowel sounds",
+                    "template": "high pitched bowel sounds",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "borborygmi",
+                    "template": "borborygmi",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "soft, nontender to palpation",
+                    "template": "soft, nontender to palpation"
+                },
+                {
+                    "text": "no rebound\/guarding\/rigidity",
+                    "template": "no rebound\/guarding\/rigidity"
+                },
+                {
+                    "text": "rebound",
+                    "template": "rebound",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "guarding",
+                    "template": "guarding",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "rigidity",
+                    "template": "rigidity",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "hepatomegaly",
+                    "template": "hepatomegaly",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "splenomegaly",
+                    "template": "splenomegaly",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "masses",
+                    "template": "masses",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Abdominal exam - tenderness",
+                    "template": "Abdominal pain: {children}",
+                    "children": [
+                        {
+                            "text": "no tenderness noted on exam",
+                            "template": "no tenderness noted on exam"
+                        },
+                        {
+                            "text": "tenderness at rest",
+                            "template": "tenderness present at rest",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tenderness with palpation",
+                            "template": "tenderness present with palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tenderness with movement",
+                            "template": "tenderness present with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mild",
+                            "template": "mild pain present"
+                        },
+                        {
+                            "text": "moderate",
+                            "template": "moderate pain present"
+                        },
+                        {
+                            "text": "severe",
+                            "template": "severe pain present"
+                        },
+                        {
+                            "text": "present throughout",
+                            "template": "pain present throughout"
+                        },
+                        {
+                            "text": "right sided tenderness",
+                            "template": "right sided tenderness present"
+                        },
+                        {
+                            "text": "left sided tenderness",
+                            "template": "left sided tenderness present"
+                        },
+                        {
+                            "text": "midepigastric tenderness",
+                            "template": "midepigastric tenderness present"
+                        },
+                        {
+                            "text": "RUQ tenderness",
+                            "template": "RUQ tenderness present"
+                        },
+                        {
+                            "text": "LUQ tenderness",
+                            "template": "LUQ tenderness present"
+                        },
+                        {
+                            "text": "hypogastric tenderness",
+                            "template": "hypogastric tenderness present"
+                        },
+                        {
+                            "text": "RLQ tenderness",
+                            "template": "RLQ tenderness present"
+                        },
+                        {
+                            "text": "LLQ tenderness",
+                            "template": "LLQ tenderness present"
+                        },
+                        {
+                            "text": "periumbilical tenderness",
+                            "template": "periumbilical tenderness present"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Dermatologic",
+            "template": "DERM: {children}",
+            "children": [
+                {
+                    "text": "diaphoresis",
+                    "template": "diaphoresis",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "dry skin",
+                    "template": "dry skin",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "clubbing",
+                    "template": "clubbing",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "cyanosis",
+                    "template": "cyanosis",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "decreased hair LE",
+                    "template": "decreased hair LE",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "venous stasis changes LE",
+                    "template": "venous stasis changes LE",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "stasis dermatitis R LE",
+                    "template": "stasis dermatitis R LE",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "stasis dermatitis L LE",
+                    "template": "stasis dermatitis L LE",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "petechiae",
+                    "template": "petechiae",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "bruising",
+                    "template": "bruising",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Extremities",
+            "template": "EXT: {children}",
+            "children": [
+                {
+                    "text": "no C\/C\/E",
+                    "template": "no C\/C\/E"
+                },
+                {
+                    "text": "cyanosis",
+                    "template": "cyanosis",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "clubbing",
+                    "template": "clubbing",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "edema",
+                    "template": "edema",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "anasarca",
+                    "template": "anasarca",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Upper extremity C\/C\/E, R",
+                    "template": "Upper extremity cyanosis\/clubbing\/edema, R: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity C\/C\/E, L",
+                    "template": "Upper extremity cyanosis\/clubbing\/edema, L: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremities C\/C\/E, BL",
+                    "template": "Upper extremities cyanosis\/clubbing\/edema, BL: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity C\/C\/E, R",
+                    "template": "Lower extremity cyanosis\/clubbing\/edema, R: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity C\/C\/E, L",
+                    "template": "Lower extremity cyanosis\/lubbing\/edema, L: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremities C\/C\/E, BL",
+                    "template": "Lower extremities cyanosis\/clubbing\/edema, BL: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "full range of motion throughout",
+                    "template": "full range of motion throughout"
+                },
+                {
+                    "text": "upper ext strength intact BL",
+                    "template": "upper extremity strength intact BL",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Upper extremity, ROM, R",
+                    "template": "Upper extremity, range of motion, R: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity, ROM, L",
+                    "template": "Upper extremity, range of motion, L: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremities, ROM, BL",
+                    "template": "Upper extremities, range of motion, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "lower ext strength intact BL",
+                    "template": "lower extremity strength intact BL",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Lower extremity, ROM, R",
+                    "template": "Lower extremity, range of motion, R: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity, ROM, L",
+                    "template": "Lower extremity, range of motion, L: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity, ROM, BL",
+                    "template": "Lower extremity, range of motion, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "upper extremity strength intact BL",
+                    "template": "Upper extremity strength intact BL",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Upper extremity strength, R",
+                    "template": "Upper extremity strength, R: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity strength, L",
+                    "template": "Upper extremity strength, L: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity strength, BL",
+                    "template": "Upper extremity strength, BL: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "lower extremity strength intact BL",
+                    "template": "Lower extremity strength intact BL",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Lower extremity strength, R",
+                    "template": "Lower extremity strength, R: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity strength, L",
+                    "template": "Lower extremity strength, L: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity strength, BL",
+                    "template": "Lower extremity strength, BL: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Upper extremity joints, areas",
+            "template": "EXT: {children}",
+            "children": [
+                {
+                    "text": "Shoulder, R",
+                    "template": "Shoulder, R: {children}",
+                    "children": [
+                        {
+                            "text": "full range of motion intact",
+                            "template": "full range of motion intact"
+                        },
+                        {
+                            "text": "laxity present",
+                            "template": "laxity present",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "internal rotation intact",
+                            "template": "internal rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "external rotation intact",
+                            "template": "external rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "apprehension test normal",
+                            "template": "apprehension test normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "impingement test normal",
+                            "template": "impingement test normal",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Shoulder, L",
+                    "template": "Shoulder, L: {children}",
+                    "children": [
+                        {
+                            "text": "full range of motion intact",
+                            "template": "full range of motion intact"
+                        },
+                        {
+                            "text": "laxity present",
+                            "template": "laxity present",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "internal rotation intact",
+                            "template": "internal rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "external rotation intact",
+                            "template": "external rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "apprehension test normal",
+                            "template": "apprehension test normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "impingement test normal",
+                            "template": "impingement test normal",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Shoulders, BL",
+                    "template": "Shoulders, BL: {children}",
+                    "children": [
+                        {
+                            "text": "full range of motion intact",
+                            "template": "full range of motion intact"
+                        },
+                        {
+                            "text": "laxity present",
+                            "template": "laxity present",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "internal rotation intact",
+                            "template": "internal rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "external rotation intact",
+                            "template": "external rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "apprehension test normal",
+                            "template": "apprehension test normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "impingement test normal",
+                            "template": "impingement test normal",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper arm, R",
+                    "template": "Upper arm, R: {children}",
+                    "children": [
+                        {
+                            "text": "full range of motion intact",
+                            "template": "full range of motion intact"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper arm, L",
+                    "template": "Upper arm, L: {children}",
+                    "children": [
+                        {
+                            "text": "full range of motion intact",
+                            "template": "full range of motion intact"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper arms, BL",
+                    "template": "Upper arms, BL: {children}",
+                    "children": [
+                        {
+                            "text": "full range of motion intact",
+                            "template": "full range of motion intact"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Forearm, R",
+                    "template": "Forearm, R: {children}",
+                    "children": [
+                        {
+                            "text": "full range of motion intact",
+                            "template": "full range of motion intact"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pronation intact",
+                            "template": "pronation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "supination intact",
+                            "template": "supination intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Forearm, L",
+                    "template": "Forearm, L: {children}",
+                    "children": [
+                        {
+                            "text": "full range of motion intact",
+                            "template": "full range of motion intact"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pronation intact",
+                            "template": "pronation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "supination intact",
+                            "template": "supination intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Forearms, BL",
+                    "template": "Forearms, BL: {children}",
+                    "children": [
+                        {
+                            "text": "full range of motion intact",
+                            "template": "full range of motion intact"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pronation intact",
+                            "template": "pronation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "supination intact",
+                            "template": "supination intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Elbow, R",
+                    "template": "Elbow, R: {children}",
+                    "children": [
+                        {
+                            "text": "full range of motion intact",
+                            "template": "full range of motion intact"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Elbow, L",
+                    "template": "Elbow, L: {children}",
+                    "children": [
+                        {
+                            "text": "full range of motion intact",
+                            "template": "full range of motion intact"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Elbows, BL",
+                    "template": "Elbows, BL: {children}",
+                    "children": [
+                        {
+                            "text": "full range of motion intact",
+                            "template": "full range of motion intact"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Hand, R",
+                    "template": "Hand, R: {children}",
+                    "children": [
+                        {
+                            "text": "radial aspect involved",
+                            "template": "radial aspect involved"
+                        },
+                        {
+                            "text": "ulnar aspect involved",
+                            "template": "ulnar aspect involved"
+                        },
+                        {
+                            "text": "full range of motion intact",
+                            "template": "full range of motion intact"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "snuff box tenderness present",
+                            "template": "snuff box tenderness present",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pronation intact",
+                            "template": "pronation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "supination intact",
+                            "template": "supination intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Hand, L",
+                    "template": "Hand, L: {children}",
+                    "children": [
+                        {
+                            "text": "radial aspect involved",
+                            "template": "radial aspect involved"
+                        },
+                        {
+                            "text": "ulnar aspect involved",
+                            "template": "ulnar aspect involved"
+                        },
+                        {
+                            "text": "full range of motion intact",
+                            "template": "full range of motion intact"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "snuff box tenderness present",
+                            "template": "snuff box tenderness present",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pronation intact",
+                            "template": "pronation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "supination intact",
+                            "template": "supination intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Hands, BL",
+                    "template": "Hands, BL: {children}",
+                    "children": [
+                        {
+                            "text": "radial aspect involved",
+                            "template": "radial aspect involved"
+                        },
+                        {
+                            "text": "ulnar aspect involved",
+                            "template": "ulnar aspect involved"
+                        },
+                        {
+                            "text": "full range of motion intact",
+                            "template": "full range of motion intact"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "snuff box tenderness present",
+                            "template": "snuff box tenderness present",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pronation intact",
+                            "template": "pronation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "supination intact",
+                            "template": "supination intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Wrist, R",
+                    "template": "Wrist, R: {children}",
+                    "children": [
+                        {
+                            "text": "radial aspect involved",
+                            "template": "radial aspect involved"
+                        },
+                        {
+                            "text": "ulnar aspect involved",
+                            "template": "ulnar aspect involved"
+                        },
+                        {
+                            "text": "full range of motion intact",
+                            "template": "full range of motion intact"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pronation intact",
+                            "template": "pronation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "supination intact",
+                            "template": "supination intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "Phalen maneuver",
+                            "template": "Phalen maneuver",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "Tinel sign",
+                            "template": "Tinel sign",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "Allen test",
+                            "template": "Allen test",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Wrist, L",
+                    "template": "Wrist, L: {children}",
+                    "children": [
+                        {
+                            "text": "radial aspect involved",
+                            "template": "radial aspect involved"
+                        },
+                        {
+                            "text": "ulnar aspect involved",
+                            "template": "ulnar aspect involved"
+                        },
+                        {
+                            "text": "full range of motion intact",
+                            "template": "full range of motion intact"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pronation intact",
+                            "template": "pronation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "supination intact",
+                            "template": "supination intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "Phalen maneuver",
+                            "template": "Phalen maneuver",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "Tinel sign",
+                            "template": "Tinel sign",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "Allen test",
+                            "template": "Allen test",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Wrists, BL",
+                    "template": "Wrist, BL: {children}",
+                    "children": [
+                        {
+                            "text": "radial aspect involved",
+                            "template": "radial aspect involved"
+                        },
+                        {
+                            "text": "ulnar aspect involved",
+                            "template": "ulnar aspect involved"
+                        },
+                        {
+                            "text": "full range of motion intact",
+                            "template": "full range of motion intact"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pronation intact",
+                            "template": "pronation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "supination intact",
+                            "template": "supination intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "Phalen maneuver",
+                            "template": "Phalen maneuver",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "Tinel sign",
+                            "template": "Tinel sign",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "Allen test",
+                            "template": "Allen test",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Upper extremity fingers",
+            "template": "EXT: {children}",
+            "children": [
+                {
+                    "text": "1st (thumb) finger, R",
+                    "template": "1st (thumb), R: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cool to touch",
+                            "template": "cool to touch",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ulcer",
+                            "template": "ulcer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain",
+                            "template": "pain",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "adduction intact",
+                            "template": "adduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "1st (thumb) finger, L",
+                    "template": "1st (thumb) finger, L: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cool to touch",
+                            "template": "cool to touch",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ulcer",
+                            "template": "ulcer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain",
+                            "template": "pain",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "adduction intact",
+                            "template": "adduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "1st (thumb) fingers, BL",
+                    "template": "1st (thumb) fingers, BL: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cool to touch",
+                            "template": "cool to touch",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ulcer",
+                            "template": "ulcer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain",
+                            "template": "pain",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "adduction intact",
+                            "template": "adduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "2nd finger, R",
+                    "template": "2nd finger, R: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cool to touch",
+                            "template": "cool to touch",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ulcer",
+                            "template": "ulcer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain",
+                            "template": "pain",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "adduction intact",
+                            "template": "adduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "2nd finger, L",
+                    "template": "2nd finger, L: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cool to touch",
+                            "template": "cool to touch",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ulcer",
+                            "template": "ulcer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain",
+                            "template": "pain",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "adduction intact",
+                            "template": "adduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "2nd fingers, BL",
+                    "template": "2nd fingers, BL: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cool to touch",
+                            "template": "cool to touch",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ulcer",
+                            "template": "ulcer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain",
+                            "template": "pain",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "adduction intact",
+                            "template": "adduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "3rd finger, R",
+                    "template": "3rd finger, R: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cool to touch",
+                            "template": "cool to touch",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ulcer",
+                            "template": "ulcer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain",
+                            "template": "pain",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "adduction intact",
+                            "template": "adduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "3rd finger, L",
+                    "template": "3rd finger, L: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cool to touch",
+                            "template": "cool to touch",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ulcer",
+                            "template": "ulcer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain",
+                            "template": "pain",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "adduction intact",
+                            "template": "adduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "3rd fingers, BL",
+                    "template": "3rd fingers, BL: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cool to touch",
+                            "template": "cool to touch",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ulcer",
+                            "template": "ulcer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain",
+                            "template": "pain",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "adduction intact",
+                            "template": "adduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "4th finger, R",
+                    "template": "4th finger, R: {children}",
+                    "children": [
+                        {
+                            "text": "bilateral",
+                            "template": "(bilateral)"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cool to touch",
+                            "template": "cool to touch",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ulcer",
+                            "template": "ulcer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain",
+                            "template": "pain",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "adduction intact",
+                            "template": "adduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "4th finger, L",
+                    "template": "4th finger, L: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cool to touch",
+                            "template": "cool to touch",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ulcer",
+                            "template": "ulcer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain",
+                            "template": "pain",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "adduction intact",
+                            "template": "adduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "4th fingers, BL",
+                    "template": "4th fingers, BL: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cool to touch",
+                            "template": "cool to touch",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ulcer",
+                            "template": "ulcer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain",
+                            "template": "pain",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "adduction intact",
+                            "template": "adduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "5th finger, R",
+                    "template": "5th finger, R: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cool to touch",
+                            "template": "cool to touch",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ulcer",
+                            "template": "ulcer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain",
+                            "template": "pain",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "adduction intact",
+                            "template": "adduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bilateral",
+                            "template": "(bilateral)"
+                        }
+                    ]
+                },
+                {
+                    "text": "5th finger, L",
+                    "template": "5th finger, L: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cool to touch",
+                            "template": "cool to touch",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ulcer",
+                            "template": "ulcer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain",
+                            "template": "pain",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "adduction intact",
+                            "template": "adduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bilateral",
+                            "template": "(bilateral)"
+                        }
+                    ]
+                },
+                {
+                    "text": "5th fingers, BL",
+                    "template": "5th fingers, BL: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cool to touch",
+                            "template": "cool to touch",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ulcer",
+                            "template": "ulcer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain",
+                            "template": "pain",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "adduction intact",
+                            "template": "adduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bilateral",
+                            "template": "(bilateral)"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Lower extremity joints, areas",
+            "template": "EXT: {children}",
+            "children": [
+                {
+                    "text": "Hip, R",
+                    "template": "Hip, R: {children}",
+                    "children": [
+                        {
+                            "text": "full range of motion intact",
+                            "template": "full range of motion intact"
+                        },
+                        {
+                            "text": "laxity present",
+                            "template": "laxity present",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "internal rotation intact",
+                            "template": "internal rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "external rotation intact",
+                            "template": "external rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "adduction intact",
+                            "template": "adduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Hip, L",
+                    "template": "Hip, L: {children}",
+                    "children": [
+                        {
+                            "text": "full range of motion intact",
+                            "template": "full range of motion intact"
+                        },
+                        {
+                            "text": "laxity present",
+                            "template": "laxity present",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "internal rotation intact",
+                            "template": "internal rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "external rotation intact",
+                            "template": "external rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "adduction intact",
+                            "template": "adduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Hips, BL",
+                    "template": "Hips, BL: {children}",
+                    "children": [
+                        {
+                            "text": "full range of motion intact",
+                            "template": "full range of motion intact"
+                        },
+                        {
+                            "text": "laxity present",
+                            "template": "laxity present",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "internal rotation intact",
+                            "template": "internal rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "external rotation intact",
+                            "template": "external rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "adduction intact",
+                            "template": "adduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Thigh, R",
+                    "template": "Thigh, R: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "edema",
+                            "template": "edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Thigh, L",
+                    "template": "Thigh, L: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "edema",
+                            "template": "edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Thighs, BL",
+                    "template": "Thighs, BL: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "edema",
+                            "template": "edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Hamstrings, R",
+                    "template": "Hamstrings, R: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "edema",
+                            "template": "edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Hamstrings, L",
+                    "template": "Hamstrings, L: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "edema",
+                            "template": "edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Hamstrings, BL",
+                    "template": "Hamstrings, BL: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "edema",
+                            "template": "edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Knee, R",
+                    "template": "Knee, R: {children}",
+                    "children": [
+                        {
+                            "text": "full range of motion intact",
+                            "template": "full range of motion intact"
+                        },
+                        {
+                            "text": "laxity present",
+                            "template": "laxity present",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "Lachman test",
+                            "template": "Lachman test",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "McMurray test",
+                            "template": "McMurray test",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "anterior drawer test",
+                            "template": "anterior drawer test",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "posterior drawer test",
+                            "template": "posterior drawer test",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Knee, L",
+                    "template": "Knee, L: {children}",
+                    "children": [
+                        {
+                            "text": "full range of motion intact",
+                            "template": "full range of motion intact"
+                        },
+                        {
+                            "text": "laxity present",
+                            "template": "laxity present",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "Lachman test",
+                            "template": "Lachman test",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "McMurray test",
+                            "template": "McMurray test",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "anterior drawer test",
+                            "template": "anterior drawer test",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "posterior drawer test",
+                            "template": "posterior drawer test",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Knees, BL",
+                    "template": "Knees, BL: {children}",
+                    "children": [
+                        {
+                            "text": "full range of motion intact",
+                            "template": "full range of motion intact"
+                        },
+                        {
+                            "text": "laxity present",
+                            "template": "laxity present",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "Lachman test",
+                            "template": "Lachman test",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "McMurray test",
+                            "template": "McMurray test",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "anterior drawer test",
+                            "template": "anterior drawer test",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "posterior drawer test",
+                            "template": "posterior drawer test",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Shin, R",
+                    "template": "Shin, R: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "edema",
+                            "template": "edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Shin, L",
+                    "template": "Shin, L: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "edema",
+                            "template": "edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Shins, BL",
+                    "template": "Shins, BL: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "edema",
+                            "template": "edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Calf, R",
+                    "template": "Calf, R: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "edema",
+                            "template": "edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Calf, L",
+                    "template": "Calf, L: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "edema",
+                            "template": "edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Calves, BL",
+                    "template": "Calves, BL: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "edema",
+                            "template": "edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Ankle, R",
+                    "template": "Ankle, R: {children}",
+                    "children": [
+                        {
+                            "text": "full range of motion intact",
+                            "template": "full range of motion intact"
+                        },
+                        {
+                            "text": "laxity present",
+                            "template": "laxity present",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "edema",
+                            "template": "edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "eversion intact",
+                            "template": "eversion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "inversion intact",
+                            "template": "inversion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Ankle, L",
+                    "template": "Ankle, L: {children}",
+                    "children": [
+                        {
+                            "text": "full range of motion intact",
+                            "template": "full range of motion intact"
+                        },
+                        {
+                            "text": "laxity present",
+                            "template": "laxity present",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "edema",
+                            "template": "edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "eversion intact",
+                            "template": "eversion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "inversion intact",
+                            "template": "inversion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Ankles, BL",
+                    "template": "Ankles, BL: {children}",
+                    "children": [
+                        {
+                            "text": "full range of motion intact",
+                            "template": "full range of motion intact"
+                        },
+                        {
+                            "text": "laxity present",
+                            "template": "laxity present",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "edema",
+                            "template": "edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "eversion intact",
+                            "template": "eversion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "inversion intact",
+                            "template": "inversion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Foot, R",
+                    "template": "Foot, R: {children}",
+                    "children": [
+                        {
+                            "text": "full range of motion intact",
+                            "template": "full range of motion intact"
+                        },
+                        {
+                            "text": "laxity present",
+                            "template": "laxity present",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "dorsiflexion intact",
+                            "template": "dorsiflexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "plantar flexion intact",
+                            "template": "plantar flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "monofilament testing intact",
+                            "template": "monofilament testing intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Foot, L",
+                    "template": "Foot, L: {children}",
+                    "children": [
+                        {
+                            "text": "full range of motion intact",
+                            "template": "full range of motion intact"
+                        },
+                        {
+                            "text": "laxity present",
+                            "template": "laxity present",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "dorsiflexion intact",
+                            "template": "dorsiflexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "plantar flexion intact",
+                            "template": "plantar flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "monofilament testing intact",
+                            "template": "monofilament testing intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Feet, BL",
+                    "template": "Feet, BL: {children}",
+                    "children": [
+                        {
+                            "text": "full range of motion intact",
+                            "template": "full range of motion intact"
+                        },
+                        {
+                            "text": "laxity present",
+                            "template": "laxity present",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "dorsiflexion intact",
+                            "template": "dorsiflexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "plantar flexion intact",
+                            "template": "plantar flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "monofilament testing intact",
+                            "template": "monofilament testing intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Lower extremity toes",
+            "template": "EXT: {children}",
+            "children": [
+                {
+                    "text": "1st (great) toe, R",
+                    "template": "1st (great) toe, R: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cool to touch",
+                            "template": "cool to touch",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ulcer",
+                            "template": "ulcer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain",
+                            "template": "pain",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "adduction intact",
+                            "template": "adduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "1st (great) toe, L",
+                    "template": "1st (great) toe, L: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cool to touch",
+                            "template": "cool to touch",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ulcer",
+                            "template": "ulcer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain",
+                            "template": "pain",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "adduction intact",
+                            "template": "adduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "1st (great) toes, BL",
+                    "template": "1st (great) toe, BL: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cool to touch",
+                            "template": "cool to touch",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ulcer",
+                            "template": "ulcer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain",
+                            "template": "pain",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "adduction intact",
+                            "template": "adduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "2nd toe, R",
+                    "template": "2nd toe, R: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cool to touch",
+                            "template": "cool to touch",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ulcer",
+                            "template": "ulcer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain",
+                            "template": "pain",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "adduction intact",
+                            "template": "adduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "2nd toe, L",
+                    "template": "2nd toe, L: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cool to touch",
+                            "template": "cool to touch",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ulcer",
+                            "template": "ulcer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain",
+                            "template": "pain",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "adduction intact",
+                            "template": "adduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "2nd toes, BL",
+                    "template": "2nd toes, BL: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cool to touch",
+                            "template": "cool to touch",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ulcer",
+                            "template": "ulcer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain",
+                            "template": "pain",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "adduction intact",
+                            "template": "adduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "3rd toe, R",
+                    "template": "3rd toe, R: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cool to touch",
+                            "template": "cool to touch",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ulcer",
+                            "template": "ulcer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain",
+                            "template": "pain",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "adduction intact",
+                            "template": "adduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "3rd toe, L",
+                    "template": "3rd toe, L: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cool to touch",
+                            "template": "cool to touch",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ulcer",
+                            "template": "ulcer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain",
+                            "template": "pain",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "adduction intact",
+                            "template": "adduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "3rd toes, BL",
+                    "template": "3rd toes, BL: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cool to touch",
+                            "template": "cool to touch",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ulcer",
+                            "template": "ulcer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain",
+                            "template": "pain",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "adduction intact",
+                            "template": "adduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "4th toe, R",
+                    "template": "4th toe, R: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cool to touch",
+                            "template": "cool to touch",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ulcer",
+                            "template": "ulcer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain",
+                            "template": "pain",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "adduction intact",
+                            "template": "adduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "4th toe, L",
+                    "template": "4th toe, L: {children}",
+                    "children": [
+                        {
+                            "text": "left",
+                            "template": "(left)"
+                        },
+                        {
+                            "text": "bilateral",
+                            "template": "(bilateral)"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cool to touch",
+                            "template": "cool to touch",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ulcer",
+                            "template": "ulcer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain",
+                            "template": "pain",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "adduction intact",
+                            "template": "adduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "4th toes, BL",
+                    "template": "4th toes, BL: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cool to touch",
+                            "template": "cool to touch",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ulcer",
+                            "template": "ulcer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain",
+                            "template": "pain",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "adduction intact",
+                            "template": "adduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "5th toe, R",
+                    "template": "5th toe, R: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cool to touch",
+                            "template": "cool to touch",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ulcer",
+                            "template": "ulcer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain",
+                            "template": "pain",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "adduction intact",
+                            "template": "adduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bilateral",
+                            "template": "(bilateral)"
+                        }
+                    ]
+                },
+                {
+                    "text": "5th toe, L",
+                    "template": "5th toe, L: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cool to touch",
+                            "template": "cool to touch",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ulcer",
+                            "template": "ulcer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain",
+                            "template": "pain",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "adduction intact",
+                            "template": "adduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bilateral",
+                            "template": "(bilateral)"
+                        }
+                    ]
+                },
+                {
+                    "text": "5th toes, BL",
+                    "template": "5th toes, BL: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cool to touch",
+                            "template": "cool to touch",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ulcer",
+                            "template": "ulcer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain",
+                            "template": "pain",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "adduction intact",
+                            "template": "adduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bilateral",
+                            "template": "(bilateral)"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Musculoskeletal",
+            "template": "MUSC\/SKEL: {children}",
+            "children": [
+                {
+                    "text": "muscle strength NL throughout",
+                    "template": "muscle strength NL throughout"
+                },
+                {
+                    "text": "NL upper extremity exam BL",
+                    "template": "NL upper extremity exam BL",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "NL lower extremity exam BL",
+                    "template": "NL lower extremity exam BL",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Upper extremity, R",
+                    "template": "Upper extremity exam, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "normal strength and tone"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity, L",
+                    "template": "Upper extremity exam, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "normal strength and tone"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity, BL",
+                    "template": "Upper extremity exam, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "normal strength and tone"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity, R",
+                    "template": "Lower extremity exam, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "normal strength and tone"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity, L",
+                    "template": "Lower extremity exam, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "normal strength and tone"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity, BL",
+                    "template": "Lower extremity exam, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "normal strength and tone"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Back\/spine",
+            "template": "MUSC\/SKEL: {children}",
+            "children": [
+                {
+                    "text": "Back, R",
+                    "template": "Back exam, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sacral edema",
+                            "template": "sacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "presacral edema",
+                            "template": "presacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "costovertebral angle tenderness",
+                            "template": "costovertebral angle tenderness",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Back, L",
+                    "template": "Back exam, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sacral edema",
+                            "template": "sacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "presacral edema",
+                            "template": "presacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "costovertebral angle tenderness",
+                            "template": "costovertebral angle tenderness",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Back, BL",
+                    "template": "Back exam, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sacral edema",
+                            "template": "sacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "presacral edema",
+                            "template": "presacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "costovertebral angle tenderness",
+                            "template": "costovertebral angle tenderness",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Cervical spine\/musculature, R",
+                    "template": "Cervical spine\/musculature, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Cervical spine\/musculature, L",
+                    "template": "Cervical spine\/musculature, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Cervical spine\/musculature, BL",
+                    "template": "Cervical spine\/musculature, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Thoracic spine\/musculature, R",
+                    "template": "Thoracic spine\/musculature, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Thoracic spine\/musculature, L",
+                    "template": "Thoracic spine\/musculature, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Thoracic spine\/musculature, BL",
+                    "template": "Thoracic spine\/musculature, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lumbar spine\/musculature, R",
+                    "template": "Lumbar spine\/musculature, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "CVA tenderness",
+                            "template": "CVA tenderness",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "straight leg raise normal",
+                            "template": "straight leg raise normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "femoral nerve stretch test",
+                            "template": "femoral nerve stretch test",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "FABER test",
+                            "template": "FABER test",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lumbar spine\/musculature, L",
+                    "template": "Lumbar spine\/musculature, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "CVA tenderness",
+                            "template": "CVA tenderness",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "straight leg raise normal",
+                            "template": "straight leg raise normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "femoral nerve stretch test",
+                            "template": "femoral nerve stretch test",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "FABER test",
+                            "template": "FABER test",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lumbar spine\/musculature, BL",
+                    "template": "Lumbar spine\/musculature, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "CVA tenderness",
+                            "template": "CVA tenderness",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "straight leg raise normal",
+                            "template": "straight leg raise normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "femoral nerve stretch test",
+                            "template": "femoral nerve stretch test",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "FABER test",
+                            "template": "FABER test",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Sacral spine\/musculature, R",
+                    "template": "Sacral spine\/musculature, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "CVA tenderness",
+                            "template": "CVA tenderness",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "straight leg raise normal",
+                            "template": "straight leg raise normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "femoral nerve stretch test",
+                            "template": "femoral nerve stretch test",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "FABER test",
+                            "template": "FABER test",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Sacral spine\/musculature, L",
+                    "template": "Sacral spine\/musculature, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "CVA tenderness",
+                            "template": "CVA tenderness",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "straight leg raise normal",
+                            "template": "straight leg raise normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "femoral nerve stretch test",
+                            "template": "femoral nerve stretch test",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "FABER test",
+                            "template": "FABER test",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Sacral spine\/musculature, BL",
+                    "template": "Sacral spine\/musculature, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "CVA tenderness",
+                            "template": "CVA tenderness",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "straight leg raise normal",
+                            "template": "straight leg raise normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "femoral nerve stretch test",
+                            "template": "femoral nerve stretch test",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "FABER test",
+                            "template": "FABER test",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Neuro: Cranial nerves",
+            "template": "NEURO: {children}",
+            "children": [
+                {
+                    "text": "CN II-XII intact and nonfocal",
+                    "template": "CN II-XII intact and nonfocal"
+                },
+                {
+                    "text": "CN I: sense of smell",
+                    "template": "sense of smell (CN I) {children}",
+                    "children": [
+                        {
+                            "text": "not assessed",
+                            "template": "not assessed"
+                        },
+                        {
+                            "text": "intact and nonfocal",
+                            "template": "intact and nonfocal"
+                        },
+                        {
+                            "text": "decreased sense of smell",
+                            "template": "decreased sense of smell"
+                        },
+                        {
+                            "text": "anosmia",
+                            "template": "anosmia",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN II, R eye visual acuity\/fields",
+                    "template": "R eye visual acuity\/fields (CN II) {children}",
+                    "children": [
+                        {
+                            "text": "visual acuity intact BL",
+                            "template": "visual acuity intact BL"
+                        },
+                        {
+                            "text": "decreased visual acuity BL",
+                            "template": "decreased visual acuity BL"
+                        },
+                        {
+                            "text": "monocular blindness noted",
+                            "template": "monocular blindness noted"
+                        },
+                        {
+                            "text": "R hemianopsia noted",
+                            "template": "R hemianopsia noted"
+                        },
+                        {
+                            "text": "L hemianopsia noted",
+                            "template": "L hemianopsia noted"
+                        },
+                        {
+                            "text": "R upper quadrantanopsia noted",
+                            "template": "R upper quadrantanopsia noted"
+                        },
+                        {
+                            "text": "L upper quadrantanopsia noted",
+                            "template": "L upper quadrantanopsia noted"
+                        },
+                        {
+                            "text": "R lower quadrantanopsia noted",
+                            "template": "R lower quadrantanopsia noted"
+                        },
+                        {
+                            "text": "L upper quadrantanopsia noted",
+                            "template": "L upper quadrantanopsia noted"
+                        },
+                        {
+                            "text": "L lower quadrantanopsia noted",
+                            "template": "L lower quadrantanopsia noted"
+                        },
+                        {
+                            "text": "macular sparing noted",
+                            "template": "macular sparing noted"
+                        },
+                        {
+                            "text": "central vision loss noted",
+                            "template": "central vision loss noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN II, L eye visual acuity\/fields",
+                    "template": "L eye visual acuity\/fields (CN II) {children}",
+                    "children": [
+                        {
+                            "text": "visual acuity intact BL",
+                            "template": "visual acuity intact BL"
+                        },
+                        {
+                            "text": "decreased visual acuity BL",
+                            "template": "decreased visual acuity BL"
+                        },
+                        {
+                            "text": "monocular blindness noted",
+                            "template": "monocular blindness noted"
+                        },
+                        {
+                            "text": "R hemianopsia noted",
+                            "template": "R hemianopsia noted"
+                        },
+                        {
+                            "text": "L hemianopsia noted",
+                            "template": "L hemianopsia noted"
+                        },
+                        {
+                            "text": "R upper quadrantanopsia noted",
+                            "template": "R upper quadrantanopsia noted"
+                        },
+                        {
+                            "text": "L upper quadrantanopsia noted",
+                            "template": "L upper quadrantanopsia noted"
+                        },
+                        {
+                            "text": "R lower quadrantanopsia noted",
+                            "template": "R lower quadrantanopsia noted"
+                        },
+                        {
+                            "text": "L upper quadrantanopsia noted",
+                            "template": "L upper quadrantanopsia noted"
+                        },
+                        {
+                            "text": "L lower quadrantanopsia noted",
+                            "template": "L lower quadrantanopsia noted"
+                        },
+                        {
+                            "text": "macular sparing noted",
+                            "template": "macular sparing noted"
+                        },
+                        {
+                            "text": "central vision loss noted",
+                            "template": "central vision loss noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN II, BL visual acuity\/fields",
+                    "template": "BL visual acuity\/fields (CN II) {children}",
+                    "children": [
+                        {
+                            "text": "visual acuity intact BL",
+                            "template": "visual acuity intact BL"
+                        },
+                        {
+                            "text": "decreased visual acuity BL",
+                            "template": "decreased visual acuity BL"
+                        },
+                        {
+                            "text": "monocular blindness noted",
+                            "template": "monocular blindness noted"
+                        },
+                        {
+                            "text": "R hemianopsia noted",
+                            "template": "R hemianopsia noted"
+                        },
+                        {
+                            "text": "L hemianopsia noted",
+                            "template": "L hemianopsia noted"
+                        },
+                        {
+                            "text": "R upper quadrantanopsia noted",
+                            "template": "R upper quadrantanopsia noted"
+                        },
+                        {
+                            "text": "L upper quadrantanopsia noted",
+                            "template": "L upper quadrantanopsia noted"
+                        },
+                        {
+                            "text": "R lower quadrantanopsia noted",
+                            "template": "R lower quadrantanopsia noted"
+                        },
+                        {
+                            "text": "L upper quadrantanopsia noted",
+                            "template": "L upper quadrantanopsia noted"
+                        },
+                        {
+                            "text": "L lower quadrantanopsia noted",
+                            "template": "L lower quadrantanopsia noted"
+                        },
+                        {
+                            "text": "macular sparing noted",
+                            "template": "macular sparing noted"
+                        },
+                        {
+                            "text": "central vision loss noted",
+                            "template": "central vision loss noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN II: R pupil",
+                    "template": "R pupil (CN II) {children}",
+                    "children": [
+                        {
+                            "text": "normal size",
+                            "template": "normal in size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged"
+                        },
+                        {
+                            "text": "miosis noted",
+                            "template": "miosis noted"
+                        },
+                        {
+                            "text": "eccentric",
+                            "template": "eccentric"
+                        },
+                        {
+                            "text": "irregularly shaped",
+                            "template": "irregularly shaped"
+                        },
+                        {
+                            "text": "midline",
+                            "template": "midline"
+                        },
+                        {
+                            "text": "reactive to light",
+                            "template": "reactive to light"
+                        },
+                        {
+                            "text": "accommodation intact",
+                            "template": "accommodation intact"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN II: L pupil",
+                    "template": "L pupil (CN II) {children}",
+                    "children": [
+                        {
+                            "text": "normal size",
+                            "template": "normal in size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged"
+                        },
+                        {
+                            "text": "miosis noted",
+                            "template": "miosis noted"
+                        },
+                        {
+                            "text": "eccentric",
+                            "template": "eccentric"
+                        },
+                        {
+                            "text": "irregularly shaped",
+                            "template": "irregularly shaped"
+                        },
+                        {
+                            "text": "midline",
+                            "template": "midline"
+                        },
+                        {
+                            "text": "reactive to light",
+                            "template": "reactive to light"
+                        },
+                        {
+                            "text": "accommodation intact",
+                            "template": "accommodation intact"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN II: BL pupils",
+                    "template": "BL pupils (CN II) {children}",
+                    "children": [
+                        {
+                            "text": "normal size",
+                            "template": "normal in size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged"
+                        },
+                        {
+                            "text": "miosis noted",
+                            "template": "miosis noted"
+                        },
+                        {
+                            "text": "eccentric",
+                            "template": "eccentric"
+                        },
+                        {
+                            "text": "irregularly shaped",
+                            "template": "irregularly shaped"
+                        },
+                        {
+                            "text": "midline",
+                            "template": "midline"
+                        },
+                        {
+                            "text": "reactive to light",
+                            "template": "reactive to light"
+                        },
+                        {
+                            "text": "accommodation intact",
+                            "template": "accommodation intact"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN III\/IV\/VI: R eye",
+                    "template": "R eye (CN III\/IV\/VI) {children}",
+                    "children": [
+                        {
+                            "text": "extraocular mvmts intact, nonfocal",
+                            "template": "extraocular movements intact and nonfocal"
+                        },
+                        {
+                            "text": "upward gaze intact",
+                            "template": "upward gaze intact"
+                        },
+                        {
+                            "text": "upward gaze impaired",
+                            "template": "upward gaze impaired"
+                        },
+                        {
+                            "text": "downward gaze intact",
+                            "template": "downward gaze intact"
+                        },
+                        {
+                            "text": "downward gaze impaired",
+                            "template": "downward gaze impaired"
+                        },
+                        {
+                            "text": "inward gaze intact",
+                            "template": "inward gaze intact"
+                        },
+                        {
+                            "text": "inward gaze impaired",
+                            "template": "inward gaze impaired"
+                        },
+                        {
+                            "text": "outward gaze intact",
+                            "template": "outward gaze intact"
+                        },
+                        {
+                            "text": "outward gaze impaired",
+                            "template": "outward gaze impaired"
+                        },
+                        {
+                            "text": "dysconjugate gaze noted",
+                            "template": "dysconjugate gaze noted"
+                        },
+                        {
+                            "text": "no horizontal nystagmus",
+                            "template": "no horizontal nystagmus"
+                        },
+                        {
+                            "text": "horizontal nystagmus present at rest",
+                            "template": "horizontal nystagmus present at rest"
+                        },
+                        {
+                            "text": "horizontal nystagmus elicited",
+                            "template": "horizontal nystagmus elicited"
+                        },
+                        {
+                            "text": "no vertical nystagmus",
+                            "template": "no vertical nystagmus"
+                        },
+                        {
+                            "text": "vertical nystagmus present at rest",
+                            "template": "vertical nystagmus present at rest"
+                        },
+                        {
+                            "text": "vertical nystagmus elicited",
+                            "template": "vertical nystagmus elicited"
+                        },
+                        {
+                            "text": "miosis noted",
+                            "template": "miosis noted"
+                        },
+                        {
+                            "text": "lid lag not present",
+                            "template": "lid lag not present"
+                        },
+                        {
+                            "text": "ptosis noted",
+                            "template": "ptosis noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN III\/IV\/VI: L eye",
+                    "template": "L eye (CN III\/IV\/VI) {children}",
+                    "children": [
+                        {
+                            "text": "extraocular mvmts intact, nonfocal",
+                            "template": "extraocular movements intact and nonfocal"
+                        },
+                        {
+                            "text": "upward gaze intact",
+                            "template": "upward gaze intact"
+                        },
+                        {
+                            "text": "upward gaze impaired",
+                            "template": "upward gaze impaired"
+                        },
+                        {
+                            "text": "downward gaze intact",
+                            "template": "downward gaze intact"
+                        },
+                        {
+                            "text": "downward gaze impaired",
+                            "template": "downward gaze impaired"
+                        },
+                        {
+                            "text": "inward gaze intact",
+                            "template": "inward gaze intact"
+                        },
+                        {
+                            "text": "inward gaze impaired",
+                            "template": "inward gaze impaired"
+                        },
+                        {
+                            "text": "outward gaze intact",
+                            "template": "outward gaze intact"
+                        },
+                        {
+                            "text": "outward gaze impaired",
+                            "template": "outward gaze impaired"
+                        },
+                        {
+                            "text": "dysconjugate gaze noted",
+                            "template": "dysconjugate gaze noted"
+                        },
+                        {
+                            "text": "no horizontal nystagmus",
+                            "template": "no horizontal nystagmus"
+                        },
+                        {
+                            "text": "horizontal nystagmus present at rest",
+                            "template": "horizontal nystagmus present at rest"
+                        },
+                        {
+                            "text": "horizontal nystagmus elicited",
+                            "template": "horizontal nystagmus elicited"
+                        },
+                        {
+                            "text": "no vertical nystagmus",
+                            "template": "no vertical nystagmus"
+                        },
+                        {
+                            "text": "vertical nystagmus present at rest",
+                            "template": "vertical nystagmus present at rest"
+                        },
+                        {
+                            "text": "vertical nystagmus elicited",
+                            "template": "vertical nystagmus elicited"
+                        },
+                        {
+                            "text": "miosis noted",
+                            "template": "miosis noted"
+                        },
+                        {
+                            "text": "lid lag not present",
+                            "template": "lid lag not present"
+                        },
+                        {
+                            "text": "ptosis noted",
+                            "template": "ptosis noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN III\/IV\/VI: BL eyes",
+                    "template": "BL (CN III\/IV\/VI) {children}",
+                    "children": [
+                        {
+                            "text": "extraocular mvmts intact, nonfocal",
+                            "template": "extraocular movements intact and nonfocal"
+                        },
+                        {
+                            "text": "upward gaze intact",
+                            "template": "upward gaze intact"
+                        },
+                        {
+                            "text": "upward gaze impaired",
+                            "template": "upward gaze impaired"
+                        },
+                        {
+                            "text": "downward gaze intact",
+                            "template": "downward gaze intact"
+                        },
+                        {
+                            "text": "downward gaze impaired",
+                            "template": "downward gaze impaired"
+                        },
+                        {
+                            "text": "inward gaze intact",
+                            "template": "inward gaze intact"
+                        },
+                        {
+                            "text": "inward gaze impaired",
+                            "template": "inward gaze impaired"
+                        },
+                        {
+                            "text": "outward gaze intact",
+                            "template": "outward gaze intact"
+                        },
+                        {
+                            "text": "outward gaze impaired",
+                            "template": "outward gaze impaired"
+                        },
+                        {
+                            "text": "dysconjugate gaze noted",
+                            "template": "dysconjugate gaze noted"
+                        },
+                        {
+                            "text": "no horizontal nystagmus",
+                            "template": "no horizontal nystagmus"
+                        },
+                        {
+                            "text": "horizontal nystagmus present at rest",
+                            "template": "horizontal nystagmus present at rest"
+                        },
+                        {
+                            "text": "horizontal nystagmus elicited",
+                            "template": "horizontal nystagmus elicited"
+                        },
+                        {
+                            "text": "no vertical nystagmus",
+                            "template": "no vertical nystagmus"
+                        },
+                        {
+                            "text": "vertical nystagmus present at rest",
+                            "template": "vertical nystagmus present at rest"
+                        },
+                        {
+                            "text": "vertical nystagmus elicited",
+                            "template": "vertical nystagmus elicited"
+                        },
+                        {
+                            "text": "miosis noted",
+                            "template": "miosis noted"
+                        },
+                        {
+                            "text": "lid lag not present",
+                            "template": "lid lag not present"
+                        },
+                        {
+                            "text": "ptosis noted",
+                            "template": "ptosis noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN V: R",
+                    "template": "R (CN V) {children}",
+                    "children": [
+                        {
+                            "text": "corneal reflex intact",
+                            "template": "corneal reflex intact"
+                        },
+                        {
+                            "text": "absent corneal reflex",
+                            "template": "absent corneal reflex"
+                        },
+                        {
+                            "text": "temporal muscle strength intact",
+                            "template": "temporal muscle strength intact"
+                        },
+                        {
+                            "text": "decreased temporal muscle strength",
+                            "template": "decreased temporal muscle strength"
+                        },
+                        {
+                            "text": "masseter muscle strength intact",
+                            "template": "masseter muscle strength intact"
+                        },
+                        {
+                            "text": "decreased masseter muscle strength",
+                            "template": "decreased masseter muscle strength"
+                        },
+                        {
+                            "text": "forehead sensation intact",
+                            "template": "forehead sensation intact"
+                        },
+                        {
+                            "text": "decreased forehead sensation",
+                            "template": "decreased forehead sensation"
+                        },
+                        {
+                            "text": "cheek sensation intact",
+                            "template": "cheek sensation intact"
+                        },
+                        {
+                            "text": "decreased cheek sensation",
+                            "template": "decreased cheek sensation"
+                        },
+                        {
+                            "text": "jaw strength intact",
+                            "template": "jaw strength intact"
+                        },
+                        {
+                            "text": "decreased jaw strength",
+                            "template": "decreased jaw strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN V: L",
+                    "template": "L (CN V) {children}",
+                    "children": [
+                        {
+                            "text": "corneal reflex intact",
+                            "template": "corneal reflex intact"
+                        },
+                        {
+                            "text": "absent corneal reflex",
+                            "template": "absent corneal reflex"
+                        },
+                        {
+                            "text": "temporal muscle strength intact",
+                            "template": "temporal muscle strength intact"
+                        },
+                        {
+                            "text": "decreased temporal muscle strength",
+                            "template": "decreased temporal muscle strength"
+                        },
+                        {
+                            "text": "masseter muscle strength intact",
+                            "template": "masseter muscle strength intact"
+                        },
+                        {
+                            "text": "decreased masseter muscle strength",
+                            "template": "decreased masseter muscle strength"
+                        },
+                        {
+                            "text": "forehead sensation intact",
+                            "template": "forehead sensation intact"
+                        },
+                        {
+                            "text": "decreased forehead sensation",
+                            "template": "decreased forehead sensation"
+                        },
+                        {
+                            "text": "cheek sensation intact",
+                            "template": "cheek sensation intact"
+                        },
+                        {
+                            "text": "decreased cheek sensation",
+                            "template": "decreased cheek sensation"
+                        },
+                        {
+                            "text": "jaw strength intact",
+                            "template": "jaw strength intact"
+                        },
+                        {
+                            "text": "decreased jaw strength",
+                            "template": "decreased jaw strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN V: BL",
+                    "template": "BL (CN V) {children}",
+                    "children": [
+                        {
+                            "text": "corneal reflex intact",
+                            "template": "corneal reflex intact"
+                        },
+                        {
+                            "text": "absent corneal reflex",
+                            "template": "absent corneal reflex"
+                        },
+                        {
+                            "text": "temporal muscle strength intact",
+                            "template": "temporal muscle strength intact"
+                        },
+                        {
+                            "text": "decreased temporal muscle strength",
+                            "template": "decreased temporal muscle strength"
+                        },
+                        {
+                            "text": "masseter muscle strength intact",
+                            "template": "masseter muscle strength intact"
+                        },
+                        {
+                            "text": "decreased masseter muscle strength",
+                            "template": "decreased masseter muscle strength"
+                        },
+                        {
+                            "text": "forehead sensation intact",
+                            "template": "forehead sensation intact"
+                        },
+                        {
+                            "text": "decreased forehead sensation",
+                            "template": "decreased forehead sensation"
+                        },
+                        {
+                            "text": "cheek sensation intact",
+                            "template": "cheek sensation intact"
+                        },
+                        {
+                            "text": "decreased cheek sensation",
+                            "template": "decreased cheek sensation"
+                        },
+                        {
+                            "text": "jaw strength intact",
+                            "template": "jaw strength intact"
+                        },
+                        {
+                            "text": "decreased jaw strength",
+                            "template": "decreased jaw strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN VII: R",
+                    "template": "R (CN VII) {children}",
+                    "children": [
+                        {
+                            "text": "facial symmetry intact",
+                            "template": "facial symmetry intact"
+                        },
+                        {
+                            "text": "facial asymmetry present",
+                            "template": "facial asymmetry present"
+                        },
+                        {
+                            "text": "facial droop present",
+                            "template": "facial droop present"
+                        },
+                        {
+                            "text": "eyebrow raise intact",
+                            "template": "eyebrow raise intact"
+                        },
+                        {
+                            "text": "eyebrow raise decreased",
+                            "template": "eyebrow raise decreased"
+                        },
+                        {
+                            "text": "eye close against resistance intact",
+                            "template": "eye close against resistance intact"
+                        },
+                        {
+                            "text": "eye close against resistance decreased",
+                            "template": "eye close against resistance decreased"
+                        },
+                        {
+                            "text": "cheek puff intact",
+                            "template": "cheek puff intact"
+                        },
+                        {
+                            "text": "cheek puff decreased",
+                            "template": "cheek puff decreased"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN VII: L",
+                    "template": "L (CN VII) {children}",
+                    "children": [
+                        {
+                            "text": "facial symmetry intact",
+                            "template": "facial symmetry intact"
+                        },
+                        {
+                            "text": "facial asymmetry present",
+                            "template": "facial asymmetry present"
+                        },
+                        {
+                            "text": "facial droop present",
+                            "template": "facial droop present"
+                        },
+                        {
+                            "text": "eyebrow raise intact",
+                            "template": "eyebrow raise intact"
+                        },
+                        {
+                            "text": "eyebrow raise decreased",
+                            "template": "eyebrow raise decreased"
+                        },
+                        {
+                            "text": "eye close against resistance intact",
+                            "template": "eye close against resistance intact"
+                        },
+                        {
+                            "text": "eye close against resistance decreased",
+                            "template": "eye close against resistance decreased"
+                        },
+                        {
+                            "text": "cheek puff intact",
+                            "template": "cheek puff intact"
+                        },
+                        {
+                            "text": "cheek puff decreased",
+                            "template": "cheek puff decreased"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN VII: BL",
+                    "template": "BL (CN VII) {children}",
+                    "children": [
+                        {
+                            "text": "facial symmetry intact",
+                            "template": "facial symmetry intact"
+                        },
+                        {
+                            "text": "facial asymmetry present",
+                            "template": "facial asymmetry present"
+                        },
+                        {
+                            "text": "facial droop present",
+                            "template": "facial droop present"
+                        },
+                        {
+                            "text": "eyebrow raise intact",
+                            "template": "eyebrow raise intact"
+                        },
+                        {
+                            "text": "eyebrow raise decreased",
+                            "template": "eyebrow raise decreased"
+                        },
+                        {
+                            "text": "eye close against resistance intact",
+                            "template": "eye close against resistance intact"
+                        },
+                        {
+                            "text": "eye close against resistance decreased",
+                            "template": "eye close against resistance decreased"
+                        },
+                        {
+                            "text": "cheek puff intact",
+                            "template": "cheek puff intact"
+                        },
+                        {
+                            "text": "cheek puff decreased",
+                            "template": "cheek puff decreased"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN VIII: R",
+                    "template": "R side (CN VIII) {children}",
+                    "children": [
+                        {
+                            "text": "hearing intact",
+                            "template": "hearing intact"
+                        },
+                        {
+                            "text": "hearing decreased",
+                            "template": "hearing decreased"
+                        },
+                        {
+                            "text": "deafness",
+                            "template": "deafness"
+                        },
+                        {
+                            "text": "Weber normal",
+                            "template": "Weber normal"
+                        },
+                        {
+                            "text": "Weber with right lateralization",
+                            "template": "Weber with right lateralization"
+                        },
+                        {
+                            "text": "Weber with left lateralization",
+                            "template": "Weber with left lateralization"
+                        },
+                        {
+                            "text": "Rinne normal",
+                            "template": "Rinne normal (air conduction greater than bone bilaterally)"
+                        },
+                        {
+                            "text": "Rinne positive, right",
+                            "template": "Rinne positive (air conduction worse than bone on right)"
+                        },
+                        {
+                            "text": "Rinne positive, left",
+                            "template": "Rinne positive (air conduction worse than bone on left)"
+                        },
+                        {
+                            "text": "Rinne negative, right",
+                            "template": "Rinne negative (air conduction better than bone on right)"
+                        },
+                        {
+                            "text": "Rinne negative, left",
+                            "template": "Rinne negative (air conduction better than bone on left)"
+                        },
+                        {
+                            "text": "caloric reflex test intact",
+                            "template": "caloric reflex test intact"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN VIII: L",
+                    "template": "L side (CN VIII) {children}",
+                    "children": [
+                        {
+                            "text": "hearing intact",
+                            "template": "hearing intact"
+                        },
+                        {
+                            "text": "hearing decreased",
+                            "template": "hearing decreased"
+                        },
+                        {
+                            "text": "deafness",
+                            "template": "deafness"
+                        },
+                        {
+                            "text": "Weber normal",
+                            "template": "Weber normal"
+                        },
+                        {
+                            "text": "Weber with right lateralization",
+                            "template": "Weber with right lateralization"
+                        },
+                        {
+                            "text": "Weber with left lateralization",
+                            "template": "Weber with left lateralization"
+                        },
+                        {
+                            "text": "Rinne normal",
+                            "template": "Rinne normal (air conduction greater than bone bilaterally)"
+                        },
+                        {
+                            "text": "Rinne positive, right",
+                            "template": "Rinne positive (air conduction worse than bone on right)"
+                        },
+                        {
+                            "text": "Rinne positive, left",
+                            "template": "Rinne positive (air conduction worse than bone on left)"
+                        },
+                        {
+                            "text": "Rinne negative, right",
+                            "template": "Rinne negative (air conduction better than bone on right)"
+                        },
+                        {
+                            "text": "Rinne negative, left",
+                            "template": "Rinne negative (air conduction better than bone on left)"
+                        },
+                        {
+                            "text": "caloric reflex test intact",
+                            "template": "caloric reflex test intact"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN VIII: BL",
+                    "template": "BL (CN VIII) {children}",
+                    "children": [
+                        {
+                            "text": "hearing intact",
+                            "template": "hearing intact"
+                        },
+                        {
+                            "text": "hearing decreased",
+                            "template": "hearing decreased"
+                        },
+                        {
+                            "text": "deafness",
+                            "template": "deafness"
+                        },
+                        {
+                            "text": "Weber normal",
+                            "template": "Weber normal"
+                        },
+                        {
+                            "text": "Weber with right lateralization",
+                            "template": "Weber with right lateralization"
+                        },
+                        {
+                            "text": "Weber with left lateralization",
+                            "template": "Weber with left lateralization"
+                        },
+                        {
+                            "text": "Rinne normal",
+                            "template": "Rinne normal (air conduction greater than bone bilaterally)"
+                        },
+                        {
+                            "text": "Rinne positive, right",
+                            "template": "Rinne positive (air conduction worse than bone on right)"
+                        },
+                        {
+                            "text": "Rinne positive, left",
+                            "template": "Rinne positive (air conduction worse than bone on left)"
+                        },
+                        {
+                            "text": "Rinne negative, right",
+                            "template": "Rinne negative (air conduction better than bone on right)"
+                        },
+                        {
+                            "text": "Rinne negative, left",
+                            "template": "Rinne negative (air conduction better than bone on left)"
+                        },
+                        {
+                            "text": "caloric reflex test intact",
+                            "template": "caloric reflex test intact"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN IX\/X",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "swallowing intact",
+                            "template": "ability to swallow intact (CN IX\/X intact)"
+                        },
+                        {
+                            "text": "swallowing impaired",
+                            "template": "swallowing impaired (CN IX\/X diminished)"
+                        },
+                        {
+                            "text": "gag reflex intact",
+                            "template": "gag reflex intact (CN IX\/X intact)"
+                        },
+                        {
+                            "text": "gag reflex diminished",
+                            "template": "gag reflex diminished (CN IX\/X diminished)"
+                        },
+                        {
+                            "text": "uvula midline",
+                            "template": "uvula midline (CN IX\/X intact)"
+                        },
+                        {
+                            "text": "uvula deviated to right",
+                            "template": "uvula deviated to right (CN IX\/X diminished)"
+                        },
+                        {
+                            "text": "uvula deviatied to left",
+                            "template": "uvula deviatied to left (CN IX\/X diminished)"
+                        },
+                        {
+                            "text": "hoarse voice quality present",
+                            "template": "hoarse voice quality present (CN IX\/X diminished)"
+                        },
+                        {
+                            "text": "nasal voice quality present",
+                            "template": "nasal voice quality present (CN IX\/X diminished)"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN XI: R",
+                    "template": "R side (CN XI) {children}",
+                    "children": [
+                        {
+                            "text": "shoulder shrug intact",
+                            "template": "shoulder shrug intact"
+                        },
+                        {
+                            "text": "shoulder shrug decreased",
+                            "template": "shoulder shrug decreased"
+                        },
+                        {
+                            "text": "ability to turn head against resistance intact",
+                            "template": "ability to turn head against resistance intact"
+                        },
+                        {
+                            "text": "ability to turn head against resistance diminished",
+                            "template": "ability to turn head against resistance diminished"
+                        },
+                        {
+                            "text": "trapezius muscle tone intact",
+                            "template": "trapezius muscle tone intact"
+                        },
+                        {
+                            "text": "trapezius muscle atrophy noted",
+                            "template": "trapezius muscle atrophy noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN XI: L",
+                    "template": "L side (CN XI) {children}",
+                    "children": [
+                        {
+                            "text": "shoulder shrug intact",
+                            "template": "shoulder shrug intact"
+                        },
+                        {
+                            "text": "shoulder shrug decreased",
+                            "template": "shoulder shrug decreased"
+                        },
+                        {
+                            "text": "ability to turn head against resistance intact",
+                            "template": "ability to turn head against resistance intact"
+                        },
+                        {
+                            "text": "ability to turn head against resistance diminished",
+                            "template": "ability to turn head against resistance diminished"
+                        },
+                        {
+                            "text": "trapezius muscle tone intact",
+                            "template": "trapezius muscle tone intact"
+                        },
+                        {
+                            "text": "trapezius muscle atrophy noted",
+                            "template": "trapezius muscle atrophy noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN XI: BL",
+                    "template": "BL (CN XI) {children}",
+                    "children": [
+                        {
+                            "text": "shoulder shrug intact",
+                            "template": "shoulder shrug intact"
+                        },
+                        {
+                            "text": "shoulder shrug decreased",
+                            "template": "shoulder shrug decreased"
+                        },
+                        {
+                            "text": "ability to turn head against resistance intact",
+                            "template": "ability to turn head against resistance intact"
+                        },
+                        {
+                            "text": "ability to turn head against resistance diminished",
+                            "template": "ability to turn head against resistance diminished"
+                        },
+                        {
+                            "text": "trapezius muscle tone intact",
+                            "template": "trapezius muscle tone intact"
+                        },
+                        {
+                            "text": "trapezius muscle atrophy noted",
+                            "template": "trapezius muscle atrophy noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN XII",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "speech articulation intact",
+                            "template": "speech articulation intact (CN XII intact)"
+                        },
+                        {
+                            "text": "speech articulation impaired",
+                            "template": "speech articulation impaired (CN XII diminished)"
+                        },
+                        {
+                            "text": "tongue midline without deviation",
+                            "template": "tongue midline without deviation (CN XII intact)"
+                        },
+                        {
+                            "text": "tongue deviated to right",
+                            "template": "tongue deviated to right (CN XII diminished)"
+                        },
+                        {
+                            "text": "tongue deviated to left",
+                            "template": "tongue deviated to left (CN XII diminished)"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other detail",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Neuro: Deep tendon reflexes",
+            "template": "NEURO: {children}",
+            "children": [
+                {
+                    "text": "DTRs intact and equal BL throughout",
+                    "template": "DTRs intact and equal BL throughout"
+                },
+                {
+                    "text": "Brachioradialis reflex, R",
+                    "template": "R brachioradialis reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Brachioradialis reflex, L",
+                    "template": "L brachioradialis reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Brachioradialis reflex, BL",
+                    "template": "L brachioradialis reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Biceps reflex, R",
+                    "template": "R biceps reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Biceps reflex, L",
+                    "template": "L biceps reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Biceps reflex, BL",
+                    "template": "BL biceps reflexes {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Triceps reflex, R",
+                    "template": "R triceps reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Triceps reflex, L",
+                    "template": "L triceps reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Triceps reflex, BL",
+                    "template": "BL triceps reflexes {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Patellar reflex, R",
+                    "template": "R patellar reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Patellar reflex, L",
+                    "template": "L patellar reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Patellar reflex, BL",
+                    "template": "BL patellar reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Achilles reflex, R",
+                    "template": "R achilles reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Achilles reflex, L",
+                    "template": "L achilles reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Achilles reflex, BL",
+                    "template": "BL achilles reflexes {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Ankle reflex, R",
+                    "template": "R ankle reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Ankle reflex, L",
+                    "template": "L ankle reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Ankle reflex, BL",
+                    "template": "BL ankle reflexes {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other detail",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Neuro: Dermatomes",
+            "template": "NEURO: {children}",
+            "children": [
+                {
+                    "text": "Cervical dermatomes, R",
+                    "template": "R cervical dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "C1 sensation diminished",
+                            "template": "C1 sensation diminished"
+                        },
+                        {
+                            "text": "C2 sensation diminished",
+                            "template": "C2 sensation diminished"
+                        },
+                        {
+                            "text": "C3 sensation diminished",
+                            "template": "C3 sensation diminished"
+                        },
+                        {
+                            "text": "C4 sensation diminished",
+                            "template": "C4 sensation diminished"
+                        },
+                        {
+                            "text": "C5 sensation diminished",
+                            "template": "C5 sensation diminished"
+                        },
+                        {
+                            "text": "C6 sensation diminished",
+                            "template": "C6 sensation diminished"
+                        },
+                        {
+                            "text": "C7 sensation diminished",
+                            "template": "C7 sensation diminished"
+                        },
+                        {
+                            "text": "C8 sensation diminished",
+                            "template": "C8 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Cervical dermatomes, L",
+                    "template": "L cervical dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "C1 sensation diminished",
+                            "template": "C1 sensation diminished"
+                        },
+                        {
+                            "text": "C2 sensation diminished",
+                            "template": "C2 sensation diminished"
+                        },
+                        {
+                            "text": "C3 sensation diminished",
+                            "template": "C3 sensation diminished"
+                        },
+                        {
+                            "text": "C4 sensation diminished",
+                            "template": "C4 sensation diminished"
+                        },
+                        {
+                            "text": "C5 sensation diminished",
+                            "template": "C5 sensation diminished"
+                        },
+                        {
+                            "text": "C6 sensation diminished",
+                            "template": "C6 sensation diminished"
+                        },
+                        {
+                            "text": "C7 sensation diminished",
+                            "template": "C7 sensation diminished"
+                        },
+                        {
+                            "text": "C8 sensation diminished",
+                            "template": "C8 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Cervical dermatomes, BL",
+                    "template": "BL cervical dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "C1 sensation diminished",
+                            "template": "C1 sensation diminished"
+                        },
+                        {
+                            "text": "C2 sensation diminished",
+                            "template": "C2 sensation diminished"
+                        },
+                        {
+                            "text": "C3 sensation diminished",
+                            "template": "C3 sensation diminished"
+                        },
+                        {
+                            "text": "C4 sensation diminished",
+                            "template": "C4 sensation diminished"
+                        },
+                        {
+                            "text": "C5 sensation diminished",
+                            "template": "C5 sensation diminished"
+                        },
+                        {
+                            "text": "C6 sensation diminished",
+                            "template": "C6 sensation diminished"
+                        },
+                        {
+                            "text": "C7 sensation diminished",
+                            "template": "C7 sensation diminished"
+                        },
+                        {
+                            "text": "C8 sensation diminished",
+                            "template": "C8 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Thoracic dermatomes, R",
+                    "template": "R thoracic dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "T1 sensation diminished",
+                            "template": "T1 sensation diminished"
+                        },
+                        {
+                            "text": "T2 sensation diminished",
+                            "template": "T2 sensation diminished"
+                        },
+                        {
+                            "text": "T3 sensation diminished",
+                            "template": "T3 sensation diminished"
+                        },
+                        {
+                            "text": "T4 sensation diminished",
+                            "template": "T4 sensation diminished"
+                        },
+                        {
+                            "text": "T5 sensation diminished",
+                            "template": "T5 sensation diminished"
+                        },
+                        {
+                            "text": "T6 sensation diminished",
+                            "template": "T6 sensation diminished"
+                        },
+                        {
+                            "text": "T7 sensation diminished",
+                            "template": "T7 sensation diminished"
+                        },
+                        {
+                            "text": "T8 sensation diminished",
+                            "template": "T8 sensation diminished"
+                        },
+                        {
+                            "text": "T9 sensation diminished",
+                            "template": "T9 sensation diminished"
+                        },
+                        {
+                            "text": "T10 sensation diminished",
+                            "template": "T10 sensation diminished"
+                        },
+                        {
+                            "text": "T11 sensation diminished",
+                            "template": "T11 sensation diminished"
+                        },
+                        {
+                            "text": "T12 sensation diminished",
+                            "template": "T12 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Thoracic dermatomes, L",
+                    "template": "L thoracic dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "T1 sensation diminished",
+                            "template": "T1 sensation diminished"
+                        },
+                        {
+                            "text": "T2 sensation diminished",
+                            "template": "T2 sensation diminished"
+                        },
+                        {
+                            "text": "T3 sensation diminished",
+                            "template": "T3 sensation diminished"
+                        },
+                        {
+                            "text": "T4 sensation diminished",
+                            "template": "T4 sensation diminished"
+                        },
+                        {
+                            "text": "T5 sensation diminished",
+                            "template": "T5 sensation diminished"
+                        },
+                        {
+                            "text": "T6 sensation diminished",
+                            "template": "T6 sensation diminished"
+                        },
+                        {
+                            "text": "T7 sensation diminished",
+                            "template": "T7 sensation diminished"
+                        },
+                        {
+                            "text": "T8 sensation diminished",
+                            "template": "T8 sensation diminished"
+                        },
+                        {
+                            "text": "T9 sensation diminished",
+                            "template": "T9 sensation diminished"
+                        },
+                        {
+                            "text": "T10 sensation diminished",
+                            "template": "T10 sensation diminished"
+                        },
+                        {
+                            "text": "T11 sensation diminished",
+                            "template": "T11 sensation diminished"
+                        },
+                        {
+                            "text": "T12 sensation diminished",
+                            "template": "T12 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Thoracic dermatomes, BL",
+                    "template": "BL thoracic dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "T1 sensation diminished",
+                            "template": "T1 sensation diminished"
+                        },
+                        {
+                            "text": "T2 sensation diminished",
+                            "template": "T2 sensation diminished"
+                        },
+                        {
+                            "text": "T3 sensation diminished",
+                            "template": "T3 sensation diminished"
+                        },
+                        {
+                            "text": "T4 sensation diminished",
+                            "template": "T4 sensation diminished"
+                        },
+                        {
+                            "text": "T5 sensation diminished",
+                            "template": "T5 sensation diminished"
+                        },
+                        {
+                            "text": "T6 sensation diminished",
+                            "template": "T6 sensation diminished"
+                        },
+                        {
+                            "text": "T7 sensation diminished",
+                            "template": "T7 sensation diminished"
+                        },
+                        {
+                            "text": "T8 sensation diminished",
+                            "template": "T8 sensation diminished"
+                        },
+                        {
+                            "text": "T9 sensation diminished",
+                            "template": "T9 sensation diminished"
+                        },
+                        {
+                            "text": "T10 sensation diminished",
+                            "template": "T10 sensation diminished"
+                        },
+                        {
+                            "text": "T11 sensation diminished",
+                            "template": "T11 sensation diminished"
+                        },
+                        {
+                            "text": "T12 sensation diminished",
+                            "template": "T12 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lumbar dermatomes, R",
+                    "template": "R lumbar dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "L1 sensation diminished",
+                            "template": "L1 sensation diminished"
+                        },
+                        {
+                            "text": "L2 sensation diminished",
+                            "template": "L2 sensation diminished"
+                        },
+                        {
+                            "text": "L3 sensation diminished",
+                            "template": "L3 sensation diminished"
+                        },
+                        {
+                            "text": "L4 sensation diminished",
+                            "template": "L4 sensation diminished"
+                        },
+                        {
+                            "text": "L5 sensation diminished",
+                            "template": "L5 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lumbar dermatomes, L",
+                    "template": "L lumbar dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "L1 sensation diminished",
+                            "template": "L1 sensation diminished"
+                        },
+                        {
+                            "text": "L2 sensation diminished",
+                            "template": "L2 sensation diminished"
+                        },
+                        {
+                            "text": "L3 sensation diminished",
+                            "template": "L3 sensation diminished"
+                        },
+                        {
+                            "text": "L4 sensation diminished",
+                            "template": "L4 sensation diminished"
+                        },
+                        {
+                            "text": "L5 sensation diminished",
+                            "template": "L5 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lumbar dermatomes, BL",
+                    "template": "BL lumbar dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "L1 sensation diminished",
+                            "template": "L1 sensation diminished"
+                        },
+                        {
+                            "text": "L2 sensation diminished",
+                            "template": "L2 sensation diminished"
+                        },
+                        {
+                            "text": "L3 sensation diminished",
+                            "template": "L3 sensation diminished"
+                        },
+                        {
+                            "text": "L4 sensation diminished",
+                            "template": "L4 sensation diminished"
+                        },
+                        {
+                            "text": "L5 sensation diminished",
+                            "template": "L5 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Sacral dermatomes, R",
+                    "template": "R sacral dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "S1 sensation diminished",
+                            "template": "S1 sensation diminished"
+                        },
+                        {
+                            "text": "S2 sensation diminished",
+                            "template": "S2 sensation diminished"
+                        },
+                        {
+                            "text": "S3 sensation diminished",
+                            "template": "S3 sensation diminished"
+                        },
+                        {
+                            "text": "S4 sensation diminished",
+                            "template": "S4 sensation diminished"
+                        },
+                        {
+                            "text": "S5 sensation diminished",
+                            "template": "S5 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Sacral dermatomes, L",
+                    "template": "L sacral dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "S1 sensation diminished",
+                            "template": "S1 sensation diminished"
+                        },
+                        {
+                            "text": "S2 sensation diminished",
+                            "template": "S2 sensation diminished"
+                        },
+                        {
+                            "text": "S3 sensation diminished",
+                            "template": "S3 sensation diminished"
+                        },
+                        {
+                            "text": "S4 sensation diminished",
+                            "template": "S4 sensation diminished"
+                        },
+                        {
+                            "text": "S5 sensation diminished",
+                            "template": "S5 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Sacral dermatomes, BL",
+                    "template": "BL sacral dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "S1 sensation diminished",
+                            "template": "S1 sensation diminished"
+                        },
+                        {
+                            "text": "S2 sensation diminished",
+                            "template": "S2 sensation diminished"
+                        },
+                        {
+                            "text": "S3 sensation diminished",
+                            "template": "S3 sensation diminished"
+                        },
+                        {
+                            "text": "S4 sensation diminished",
+                            "template": "S4 sensation diminished"
+                        },
+                        {
+                            "text": "S5 sensation diminished",
+                            "template": "S5 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other detail",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Neuro: Gait, Station",
+            "template": "NEURO: {children}",
+            "children": [
+                {
+                    "text": "normal gait and station",
+                    "template": "normal gait and station"
+                },
+                {
+                    "text": "normal gait",
+                    "template": "normal gait"
+                },
+                {
+                    "text": "normal station",
+                    "template": "normal station"
+                },
+                {
+                    "text": "Romberg test positive",
+                    "template": "Romberg test positive"
+                },
+                {
+                    "text": "Romberg test negative",
+                    "template": "Romberg test negative"
+                },
+                {
+                    "text": "Gait",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "broad based gait",
+                            "template": "broad based gait"
+                        },
+                        {
+                            "text": "shuffling gait",
+                            "template": "shuffling gait"
+                        },
+                        {
+                            "text": "shortened step length",
+                            "template": "shortened step length"
+                        },
+                        {
+                            "text": "limp, right",
+                            "template": "limp present (affecting right side)"
+                        },
+                        {
+                            "text": "limp, left",
+                            "template": "limp present (affecting left side)"
+                        },
+                        {
+                            "text": "wide based gait",
+                            "template": "wide based gait"
+                        },
+                        {
+                            "text": "gait accuracy intact",
+                            "template": "gait accuracy intact"
+                        },
+                        {
+                            "text": "staggering gait noted",
+                            "template": "staggering gait noted"
+                        },
+                        {
+                            "text": "tandem walking intact",
+                            "template": "tandem walking intact"
+                        },
+                        {
+                            "text": "tandem walking impaired",
+                            "template": "tandem walking impaired"
+                        },
+                        {
+                            "text": "toe walking noted",
+                            "template": "toe walking noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "Station",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "positive Romberg (eyes open)",
+                            "template": "positive Romberg (eyes open)"
+                        },
+                        {
+                            "text": "negative Romberg (eyes open)",
+                            "template": "negative Romberg (eyes open)"
+                        },
+                        {
+                            "text": "positive Romberg (eyes closed)",
+                            "template": "positive Romberg (eyes closed)"
+                        },
+                        {
+                            "text": "pronator drift, eyes open, right",
+                            "template": "pronator drift noted with eyes open (affecting right upper extremity)"
+                        },
+                        {
+                            "text": "pronator drift, eyes open, left",
+                            "template": "pronator drift noted with eyes open (affecting left upper extremity)"
+                        },
+                        {
+                            "text": "pronator drift, eyes closed, right",
+                            "template": "pronator drift noted with eyes closed (affecting right upper extremity)"
+                        },
+                        {
+                            "text": "pronator drift, eyes closed, left",
+                            "template": "pronator drift noted with eyes closed (affecting left upper extremity)"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other detail",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Neuro: Pathological reflexes",
+            "template": "NEURO: {children}",
+            "children": [
+                {
+                    "text": "no pathological reflexes elicited",
+                    "template": "no pathological reflexes elicited"
+                },
+                {
+                    "text": "Babinski reflex",
+                    "template": "Babinski reflex {children}",
+                    "children": [
+                        {
+                            "text": "elicted on the right",
+                            "template": "elicted on the right"
+                        },
+                        {
+                            "text": "not elicited on the right",
+                            "template": "not elicited on the right"
+                        },
+                        {
+                            "text": "elicited on the left",
+                            "template": "elicited on the left"
+                        },
+                        {
+                            "text": "not elicited on the left",
+                            "template": "not elicited on the left"
+                        },
+                        {
+                            "text": "elicited bilaterally",
+                            "template": "elicited bilaterally"
+                        },
+                        {
+                            "text": "absent bilaterally",
+                            "template": "absent bilaterally"
+                        }
+                    ]
+                },
+                {
+                    "text": "Glabellar reflex",
+                    "template": "glabellar reflex {children}",
+                    "children": [
+                        {
+                            "text": "elicted on the right",
+                            "template": "elicted on the right"
+                        },
+                        {
+                            "text": "not elicited on the right",
+                            "template": "not elicited on the right"
+                        },
+                        {
+                            "text": "elicited on the left",
+                            "template": "elicited on the left"
+                        },
+                        {
+                            "text": "not elicited on the left",
+                            "template": "not elicited on the left"
+                        },
+                        {
+                            "text": "elicited bilaterally",
+                            "template": "elicited bilaterally"
+                        },
+                        {
+                            "text": "absent bilaterally",
+                            "template": "absent bilaterally"
+                        }
+                    ]
+                },
+                {
+                    "text": "Palmomental reflex",
+                    "template": "palmomental reflex {children}",
+                    "children": [
+                        {
+                            "text": "elicted on the right",
+                            "template": "elicted on the right"
+                        },
+                        {
+                            "text": "not elicited on the right",
+                            "template": "not elicited on the right"
+                        },
+                        {
+                            "text": "elicited on the left",
+                            "template": "elicited on the left"
+                        },
+                        {
+                            "text": "not elicited on the left",
+                            "template": "not elicited on the left"
+                        },
+                        {
+                            "text": "elicited bilaterally",
+                            "template": "elicited bilaterally"
+                        },
+                        {
+                            "text": "absent bilaterally",
+                            "template": "absent bilaterally"
+                        }
+                    ]
+                },
+                {
+                    "text": "Snout reflex",
+                    "template": "snout reflex {children}",
+                    "children": [
+                        {
+                            "text": "elicted on the right",
+                            "template": "elicted on the right"
+                        },
+                        {
+                            "text": "not elicited on the right",
+                            "template": "not elicited on the right"
+                        },
+                        {
+                            "text": "elicited on the left",
+                            "template": "elicited on the left"
+                        },
+                        {
+                            "text": "not elicited on the left",
+                            "template": "not elicited on the left"
+                        },
+                        {
+                            "text": "elicited bilaterally",
+                            "template": "elicited bilaterally"
+                        },
+                        {
+                            "text": "absent bilaterally",
+                            "template": "absent bilaterally"
+                        }
+                    ]
+                },
+                {
+                    "text": "Root reflex",
+                    "template": "root reflex {children}",
+                    "children": [
+                        {
+                            "text": "elicted on the right",
+                            "template": "elicted on the right"
+                        },
+                        {
+                            "text": "not elicited on the right",
+                            "template": "not elicited on the right"
+                        },
+                        {
+                            "text": "elicited on the left",
+                            "template": "elicited on the left"
+                        },
+                        {
+                            "text": "not elicited on the left",
+                            "template": "not elicited on the left"
+                        },
+                        {
+                            "text": "elicited bilaterally",
+                            "template": "elicited bilaterally"
+                        },
+                        {
+                            "text": "absent bilaterally",
+                            "template": "absent bilaterally"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other detail",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Neuro: Sensory",
+            "template": "NEURO: {children}",
+            "children": [
+                {
+                    "text": "sensation grossly intact throughout",
+                    "template": "sensation grossly intact throughout"
+                },
+                {
+                    "text": "Sensation to light touch",
+                    "template": "sensation to light touch {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity, right intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, intact BL",
+                            "template": "intact in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "upper extremity, right diminished",
+                            "template": "diminished in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left diminished",
+                            "template": "diminished in left upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, diminished BL",
+                            "template": "diminished in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "lower extremity, right intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, intact BL",
+                            "template": "intact in the bilateral lower extremities"
+                        },
+                        {
+                            "text": "lower extremity, right diminished",
+                            "template": "diminished in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left diminished",
+                            "template": "diminished in left lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, diminished BL",
+                            "template": "diminished in the bilateral lower extremities"
+                        }
+                    ]
+                },
+                {
+                    "text": "Sensation to dull touch",
+                    "template": "sensation to dull touch {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity, right intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, intact BL",
+                            "template": "intact in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "upper extremity, right diminished",
+                            "template": "diminished in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left diminished",
+                            "template": "diminished in left upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, diminished BL",
+                            "template": "diminished in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "lower extremity, right intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, intact BL",
+                            "template": "intact in the bilateral lower extremities"
+                        },
+                        {
+                            "text": "lower extremity, right diminished",
+                            "template": "diminished in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left diminished",
+                            "template": "diminished in left lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, diminished BL",
+                            "template": "diminished in the bilateral lower extremities"
+                        }
+                    ]
+                },
+                {
+                    "text": "Sensation to cold temperature",
+                    "template": "sensation to cold temperature {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity, right intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, intact BL",
+                            "template": "intact in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "upper extremity, right diminished",
+                            "template": "diminished in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left diminished",
+                            "template": "diminished in left upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, diminished BL",
+                            "template": "diminished in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "lower extremity, right intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, intact BL",
+                            "template": "intact in the bilateral lower extremities"
+                        },
+                        {
+                            "text": "lower extremity, right diminished",
+                            "template": "diminished in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left diminished",
+                            "template": "diminished in left lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, diminished BL",
+                            "template": "diminished in the bilateral lower extremities"
+                        }
+                    ]
+                },
+                {
+                    "text": "Sensation to warm temperature",
+                    "template": "sensation to warm temperature {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity, right intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, intact BL",
+                            "template": "intact in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "upper extremity, right diminished",
+                            "template": "diminished in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left diminished",
+                            "template": "diminished in left upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, diminished BL",
+                            "template": "diminished in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "lower extremity, right intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, intact BL",
+                            "template": "intact in the bilateral lower extremities"
+                        },
+                        {
+                            "text": "lower extremity, right diminished",
+                            "template": "diminished in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left diminished",
+                            "template": "diminished in left lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, diminished BL",
+                            "template": "diminished in the bilateral lower extremities"
+                        }
+                    ]
+                },
+                {
+                    "text": "Vibratory sensation",
+                    "template": "vibratory sensation {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity, right intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, intact BL",
+                            "template": "intact in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "upper extremity, right diminished",
+                            "template": "diminished in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left diminished",
+                            "template": "diminished in left upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, diminished BL",
+                            "template": "diminished in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "lower extremity, right intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, intact BL",
+                            "template": "intact in the bilateral lower extremities"
+                        },
+                        {
+                            "text": "lower extremity, right diminished",
+                            "template": "diminished in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left diminished",
+                            "template": "diminished in left lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, diminished BL",
+                            "template": "diminished in the bilateral lower extremities"
+                        }
+                    ]
+                },
+                {
+                    "text": "Stereognosis",
+                    "template": "stereognosis {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity, right intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, intact BL",
+                            "template": "intact in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "upper extremity, right diminished",
+                            "template": "diminished in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left diminished",
+                            "template": "diminished in left upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, diminished BL",
+                            "template": "diminished in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "lower extremity, right intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, intact BL",
+                            "template": "intact in the bilateral lower extremities"
+                        },
+                        {
+                            "text": "lower extremity, right diminished",
+                            "template": "diminished in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left diminished",
+                            "template": "diminished in left lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, diminished BL",
+                            "template": "diminished in the bilateral lower extremities"
+                        }
+                    ]
+                },
+                {
+                    "text": "Paresthesias",
+                    "template": "parethesias present {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity, right",
+                            "template": "in the R upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left",
+                            "template": "in the L upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, bilateral",
+                            "template": "bilaterally in the upper extremities"
+                        },
+                        {
+                            "text": "lower extremity, right",
+                            "template": "in the R lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left",
+                            "template": "in the L lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, bilateral",
+                            "template": "bilaterally in the lower extremities"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other detail",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Psychiatric",
+            "template": "PSYCH: {children}",
+            "children": [
+                {
+                    "text": "AO x 3",
+                    "template": "alert and oriented to time, place, and person"
+                },
+                {
+                    "text": "normal mood",
+                    "template": "normal mood"
+                },
+                {
+                    "text": "normal affect",
+                    "template": "normal affect"
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        }
+    ]
+}

+ 8084 - 0
storage/templates/exam-default/exam-gen-detail/gen-exam.json

@@ -0,0 +1,8084 @@
+{
+    "section": "exam-gen-detail",
+    "templateSet": "GEN Exam",
+    "templates": [
+        {
+            "text": "1-Click normal exams",
+            "template": "{children}",
+            "children": [
+                {
+                    "text": "GEN: NAD",
+                    "template": "GEN: NAD"
+                },
+                {
+                    "text": "NECK: supple, NT, FROM",
+                    "template": "NECK: supple, NT, FROM"
+                },
+                {
+                    "text": "RESP: CTA BL, no r\/w\/r",
+                    "template": "RESP: lungs clear to auscultation bilaterally, no rales, wheezes or rhonchi"
+                },
+                {
+                    "text": "RESP: nonlabored, no acc mm use",
+                    "template": "RESP: nonlabored breathing, no use of accessory of muscles of respiration"
+                },
+                {
+                    "text": "CV: RRR, no m\/r\/g",
+                    "template": "CV: RRR, no m\/r\/g"
+                },
+                {
+                    "text": "GI: +BS, nontender to palpation",
+                    "template": "GI: +BS, nontender to palpation"
+                },
+                {
+                    "text": "GI: no masses, no HSM",
+                    "template": "GI: no masses, no HSM"
+                },
+                {
+                    "text": "EXT: no C\/C\/E",
+                    "template": "EXT: no cyanosis\/clubbing\/edema"
+                },
+                {
+                    "text": "DERM: skin warm and dry",
+                    "template": "DERM: skin warm and dry"
+                },
+                {
+                    "text": "NEURO: AO x 3",
+                    "template": "NEURO: AO x 3"
+                },
+                {
+                    "text": "PSYCH: judgment\/insight intact",
+                    "template": "PSYCH: judgment\/insight intact"
+                },
+                {
+                    "text": "PSYCH: NL mood\/affect",
+                    "template": "PSYCH: NL mood\/affect"
+                }
+            ]
+        },
+        {
+            "text": "General",
+            "template": "GEN: {children}",
+            "children": [
+                {
+                    "text": "NAD",
+                    "template": "NAD",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "cooperative with exam",
+                    "template": "cooperative with exam",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "well groomed",
+                    "template": "well groomed",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "well developed",
+                    "template": "well developed",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "well nourished",
+                    "template": "well nourished",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "overweight",
+                    "template": "overweight",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "obese",
+                    "template": "obese",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "morbidly obese",
+                    "template": "morbidly obese",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "emaciated",
+                    "template": "emaciated",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "appears to be stated age",
+                    "template": "appears to be stated age",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "appears older than stated age",
+                    "template": "appears older than stated age",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "appears younger than stated age",
+                    "template": "appears younger than stated age",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "Other findings: {text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "HEENT",
+            "template": "HEENT: {children}",
+            "children": [
+                {
+                    "text": "head normocephalic, atraumatic",
+                    "template": "head normocephalic, atraumatic"
+                },
+                {
+                    "text": "EOMI",
+                    "template": "EOMI"
+                },
+                {
+                    "text": "PERRLA",
+                    "template": "PERRLA"
+                },
+                {
+                    "text": "scleral icterus",
+                    "template": "scleral icterus",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "pale conjunctivae",
+                    "template": "pale conjunctivae",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "hearing grossly intact",
+                    "template": "hearing grossly intact",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "normal dentition",
+                    "template": "normal dentition"
+                },
+                {
+                    "text": "normal lips",
+                    "template": "normal lips"
+                },
+                {
+                    "text": "normal gums",
+                    "template": "normal gums"
+                },
+                {
+                    "text": "pharynx unremarkable",
+                    "template": "pharynx unremarkable"
+                },
+                {
+                    "text": "mucous membranes moist",
+                    "template": "mucous membranes moist",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "frenular jaundice",
+                    "template": "frenular jaundice",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "Other findings: {text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Neck",
+            "template": "NECK: {children}",
+            "children": [
+                {
+                    "text": "soft, nontender",
+                    "template": "soft, nontender"
+                },
+                {
+                    "text": "no increased JVP visible",
+                    "template": "no increased JVP visible"
+                },
+                {
+                    "text": "hepatojugular reflex elicited",
+                    "template": "hepatojugular reflex elicited",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "no cervical LN",
+                    "template": "no significant cervical lymphadenopathy"
+                },
+                {
+                    "text": "neck not enlarged",
+                    "template": "neck not enlarged"
+                },
+                {
+                    "text": "obese neck",
+                    "template": "neck obesity",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "thyromegaly",
+                    "template": "thyromegaly",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Lymphadenopathy",
+                    "template": "{children} lymphadenopathy",
+                    "children": [
+                        {
+                            "text": "shotty cervical",
+                            "template": "shotty cervical"
+                        },
+                        {
+                            "text": "submental",
+                            "template": "submental"
+                        },
+                        {
+                            "text": "R submandibular",
+                            "template": "R submandibular"
+                        },
+                        {
+                            "text": "L submandibular",
+                            "template": "L submandibular"
+                        },
+                        {
+                            "text": "R ant. cervical",
+                            "template": "R anterior cervical"
+                        },
+                        {
+                            "text": "L ant. cervical",
+                            "template": "L anterior cervical"
+                        },
+                        {
+                            "text": "R preauricular",
+                            "template": "R preauricular"
+                        },
+                        {
+                            "text": "L preauricular",
+                            "template": "L preauricular"
+                        },
+                        {
+                            "text": "R post. auricular",
+                            "template": "R posterior auricular"
+                        },
+                        {
+                            "text": "L post. auricular",
+                            "template": "L posterior auricular"
+                        },
+                        {
+                            "text": "R supraclavicular",
+                            "template": "R supraclavicular"
+                        },
+                        {
+                            "text": "L supraclavicular",
+                            "template": "L supraclavicular"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "Other findings: {text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Breast, Axillae",
+            "template": "BREAST: {children}",
+            "children": [
+                {
+                    "text": "normal breast exam",
+                    "template": "normal breast exam"
+                },
+                {
+                    "text": "breast mass present",
+                    "template": "breast mass present"
+                },
+                {
+                    "text": "surgical scarring noted",
+                    "template": "surgical scarring noted",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Breast, R",
+                    "template": "Breast, R: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "peau d'orange",
+                            "template": "peau d'orange",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "symmetric at rest",
+                            "template": "symmetric at rest",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "symmetric with pectoral tension",
+                            "template": "symmetric with pectoral tension",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "single mass",
+                            "template": "single mass"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "multiple masses",
+                            "template": "multiple masses"
+                        },
+                        {
+                            "text": "right upper quadrant abnormality",
+                            "template": "right upper quadrant abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "left upper quadrant abnormality",
+                            "template": "left upper quadrant abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "right lower quadrant abnormality",
+                            "template": "right lower quadrant abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "left lower quadrant abnormality",
+                            "template": "left lower quadrant abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tail of Spence abnormality",
+                            "template": "tail of Spence abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hysterectomy and\/or oophorectomy",
+                            "template": "hysterectomy and\/or oophorectomy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "breast augmentation noted",
+                            "template": "breast augmentation noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "Breast, L",
+                    "template": "Breast, L: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "peau d'orange",
+                            "template": "peau d'orange",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "symmetric at rest",
+                            "template": "symmetric at rest",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "symmetric with pectoral tension",
+                            "template": "symmetric with pectoral tension",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "single mass",
+                            "template": "single mass"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "multiple masses",
+                            "template": "multiple masses"
+                        },
+                        {
+                            "text": "right upper quadrant abnormality",
+                            "template": "right upper quadrant abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "left upper quadrant abnormality",
+                            "template": "left upper quadrant abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "right lower quadrant abnormality",
+                            "template": "right lower quadrant abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "left lower quadrant abnormality",
+                            "template": "left lower quadrant abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tail of Spence abnormality",
+                            "template": "tail of Spence abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hysterectomy and\/or oophorectomy",
+                            "template": "hysterectomy and\/or oophorectomy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "breast augmentation noted",
+                            "template": "breast augmentation noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "Breasts, BL",
+                    "template": "Breasts, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "peau d'orange",
+                            "template": "peau d'orange",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "symmetric at rest",
+                            "template": "symmetric at rest",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "symmetric with pectoral tension",
+                            "template": "symmetric with pectoral tension",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "single mass",
+                            "template": "single mass"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "multiple masses",
+                            "template": "multiple masses"
+                        },
+                        {
+                            "text": "right upper quadrant abnormality",
+                            "template": "right upper quadrant abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "left upper quadrant abnormality",
+                            "template": "left upper quadrant abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "right lower quadrant abnormality",
+                            "template": "right lower quadrant abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "left lower quadrant abnormality",
+                            "template": "left lower quadrant abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tail of Spence abnormality",
+                            "template": "tail of Spence abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hysterectomy and\/or oophorectomy",
+                            "template": "hysterectomy and\/or oophorectomy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "breast augmentation noted",
+                            "template": "breast augmentation noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "Nipple, R",
+                    "template": "Nipple, R: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "discharge without pressure",
+                            "template": "discharge without pressure",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "expressed discharge",
+                            "template": "expressed discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clear discharge",
+                            "template": "clear discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bloody discharge",
+                            "template": "bloody discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "purulent discharge",
+                            "template": "purulent discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "areolar bleeding",
+                            "template": "areolar bleeding",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Nipple, L",
+                    "template": "Nipple, L: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "discharge without pressure",
+                            "template": "discharge without pressure",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "expressed discharge",
+                            "template": "expressed discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clear discharge",
+                            "template": "clear discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bloody discharge",
+                            "template": "bloody discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "purulent discharge",
+                            "template": "purulent discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "areolar bleeding",
+                            "template": "areolar bleeding",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Nipples, BL",
+                    "template": "Nipples, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "discharge without pressure",
+                            "template": "discharge without pressure",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "expressed discharge",
+                            "template": "expressed discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clear discharge",
+                            "template": "clear discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bloody discharge",
+                            "template": "bloody discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "purulent discharge",
+                            "template": "purulent discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "areolar bleeding",
+                            "template": "areolar bleeding",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Axilla, R",
+                    "template": "Axilla, R: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "mass",
+                            "template": "mass",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pectoral lymphadenopathy",
+                            "template": "pectoral lymphadenopathy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "subscapular lymphadenopathy",
+                            "template": "subscapular lymphadenopathy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "brachial lymphadenopathy",
+                            "template": "brachial lymphadenopathy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acanthosis nigricans",
+                            "template": "acanthosis nigricans",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Axilla, L",
+                    "template": "Axilla, L: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "mass",
+                            "template": "mass",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pectoral lymphadenopathy",
+                            "template": "pectoral lymphadenopathy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "subscapular lymphadenopathy",
+                            "template": "subscapular lymphadenopathy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "brachial lymphadenopathy",
+                            "template": "brachial lymphadenopathy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acanthosis nigricans",
+                            "template": "acanthosis nigricans",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Axillae, BL",
+                    "template": "Axillae, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "mass",
+                            "template": "mass",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pectoral lymphadenopathy",
+                            "template": "pectoral lymphadenopathy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "subscapular lymphadenopathy",
+                            "template": "subscapular lymphadenopathy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "brachial lymphadenopathy",
+                            "template": "brachial lymphadenopathy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acanthosis nigricans",
+                            "template": "acanthosis nigricans",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Respiratory",
+            "template": "RESP: {children}",
+            "children": [
+                {
+                    "text": "no respiratory distress",
+                    "template": "no respiratory distress"
+                },
+                {
+                    "text": "auscultation clear BL",
+                    "template": "clear to auscultation bilaterally"
+                },
+                {
+                    "text": "no wheezes\/rales\/rhonchi",
+                    "template": "no wheezes\/rales\/rhonchi"
+                },
+                {
+                    "text": "percussion clear BL",
+                    "template": "clear to percussion bilaterally"
+                },
+                {
+                    "text": "chest wall symmetric",
+                    "template": "chest wall symmetric"
+                },
+                {
+                    "text": "subcutaneous emphysema",
+                    "template": "subcutaneous emphysema",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Abnl lung sounds, R",
+                    "template": "Abnl lung sounds, R: {children}",
+                    "children": [
+                        {
+                            "text": "whoop",
+                            "template": "whoop",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "stridor",
+                            "template": "stridor",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pleural rub",
+                            "template": "pleural rub"
+                        },
+                        {
+                            "text": "basilar rales",
+                            "template": "basilar rales"
+                        },
+                        {
+                            "text": "rales scattered",
+                            "template": "scattered rales"
+                        },
+                        {
+                            "text": "rhonchi scattered",
+                            "template": "scattered rhonchi"
+                        },
+                        {
+                            "text": "diminished breath sounds throughout",
+                            "template": "diminished breath sounds throughout"
+                        },
+                        {
+                            "text": "diminished breath sounds at bases",
+                            "template": "diminished breath sounds at bases"
+                        },
+                        {
+                            "text": "wheezes, expiration",
+                            "template": "expiratory wheezes"
+                        }
+                    ]
+                },
+                {
+                    "text": "Abnl lung sounds, L",
+                    "template": "Abnl lung sounds, L: {children}",
+                    "children": [
+                        {
+                            "text": "whoop",
+                            "template": "whoop",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "stridor",
+                            "template": "stridor",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pleural rub",
+                            "template": "pleural rub"
+                        },
+                        {
+                            "text": "basilar rales",
+                            "template": "basilar rales"
+                        },
+                        {
+                            "text": "rales scattered",
+                            "template": "scattered rales"
+                        },
+                        {
+                            "text": "rhonchi scattered",
+                            "template": "scattered rhonchi"
+                        },
+                        {
+                            "text": "diminished breath sounds throughout",
+                            "template": "diminished breath sounds throughout"
+                        },
+                        {
+                            "text": "diminished breath sounds at bases",
+                            "template": "diminished breath sounds at bases"
+                        },
+                        {
+                            "text": "wheezes, expiration",
+                            "template": "expiratory wheezes"
+                        }
+                    ]
+                },
+                {
+                    "text": "Abnl lung sounds, BL",
+                    "template": "Abnl lung sounds, BL: {children}",
+                    "children": [
+                        {
+                            "text": "whoop",
+                            "template": "whoop",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "stridor",
+                            "template": "stridor",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pleural rub",
+                            "template": "pleural rub"
+                        },
+                        {
+                            "text": "basilar rales",
+                            "template": "basilar rales"
+                        },
+                        {
+                            "text": "rales scattered",
+                            "template": "scattered rales"
+                        },
+                        {
+                            "text": "rhonchi scattered",
+                            "template": "scattered rhonchi"
+                        },
+                        {
+                            "text": "diminished breath sounds throughout",
+                            "template": "diminished breath sounds throughout"
+                        },
+                        {
+                            "text": "diminished breath sounds at bases",
+                            "template": "diminished breath sounds at bases"
+                        },
+                        {
+                            "text": "wheezes, expiration",
+                            "template": "expiratory wheezes"
+                        }
+                    ]
+                },
+                {
+                    "text": "Percussion, R",
+                    "template": "Percussion, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal to percussion",
+                            "template": "normal to percussion"
+                        },
+                        {
+                            "text": "dullness to percussion at base",
+                            "template": "dullness to percussion at base"
+                        },
+                        {
+                            "text": "dull throughout",
+                            "template": "dull to percussion throughout"
+                        }
+                    ]
+                },
+                {
+                    "text": "Percussion, L",
+                    "template": "Percussion, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal to percussion",
+                            "template": "normal to percussion"
+                        },
+                        {
+                            "text": "dullness to percussion at base",
+                            "template": "dullness to percussion at base"
+                        },
+                        {
+                            "text": "dull throughout",
+                            "template": "dull to percussion throughout"
+                        }
+                    ]
+                },
+                {
+                    "text": "Percussion, BL",
+                    "template": "Percussion, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal to percussion",
+                            "template": "normal to percussion"
+                        },
+                        {
+                            "text": "dullness to percussion at base",
+                            "template": "dullness to percussion at base"
+                        },
+                        {
+                            "text": "dull throughout",
+                            "template": "dull to percussion throughout"
+                        }
+                    ]
+                },
+                {
+                    "text": "Breathing dynamics, R",
+                    "template": "Breathing dynamics, R: {children}",
+                    "children": [
+                        {
+                            "text": "labored breathing",
+                            "template": "labored breathing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "accessory muscle use",
+                            "template": "accessory muscle use",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "rib retractions",
+                            "template": "rib retractions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abnormal diaphragm movement",
+                            "template": "abnormal diaphragm movement",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Breathing dynamics, L",
+                    "template": "Breathing dynamics, L: {children}",
+                    "children": [
+                        {
+                            "text": "labored breathing",
+                            "template": "labored breathing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "accessory muscle use",
+                            "template": "accessory muscle use",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "rib retractions",
+                            "template": "rib retractions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abnormal diaphragm movement",
+                            "template": "abnormal diaphragm movement",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Breathing dynamics, BL",
+                    "template": "Breathing dynamics, BL: {children}",
+                    "children": [
+                        {
+                            "text": "labored breathing",
+                            "template": "labored breathing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "accessory muscle use",
+                            "template": "accessory muscle use",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "rib retractions",
+                            "template": "rib retractions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abnormal diaphragm movement",
+                            "template": "abnormal diaphragm movement",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Cardiovascular",
+            "template": "CV: {children}",
+            "children": [
+                {
+                    "text": "RRR, no murmur\/rub\/gallop",
+                    "template": "RRR, no murmur\/rub\/gallop"
+                },
+                {
+                    "text": "S1, S2 findings",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "NL S1",
+                            "template": "NL S1"
+                        },
+                        {
+                            "text": "NL S2",
+                            "template": "NL S2"
+                        },
+                        {
+                            "text": "split S2",
+                            "template": "split S2"
+                        },
+                        {
+                            "text": "split S1",
+                            "template": "split S1"
+                        },
+                        {
+                            "text": "persistently split S2",
+                            "template": "persistently split S2"
+                        },
+                        {
+                            "text": "physiologically split S2",
+                            "template": "physiologically split S2"
+                        },
+                        {
+                            "text": "paradoxically split S2",
+                            "template": "paradoxically split S2"
+                        },
+                        {
+                            "text": "widely split S2",
+                            "template": "widely split S2"
+                        }
+                    ]
+                },
+                {
+                    "text": "S3 gallop",
+                    "template": "S3 gallop",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "S4 gallop",
+                    "template": "S4 gallop",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "regular rate and rhythm",
+                    "template": "regular rate and rhythm"
+                },
+                {
+                    "text": "regular rate",
+                    "template": "regular rate"
+                },
+                {
+                    "text": "regular rhythm",
+                    "template": "regular rhythm"
+                },
+                {
+                    "text": "no murmurs",
+                    "template": "no murmurs"
+                },
+                {
+                    "text": "Murmur grade",
+                    "template": "Murmur grade: {text}\/6",
+                    "type": "number"
+                },
+                {
+                    "text": "Murmur timing\/location",
+                    "template": "murmur {children}",
+                    "children": [
+                        {
+                            "text": "systolic",
+                            "template": "is systolic"
+                        },
+                        {
+                            "text": "diastolic",
+                            "template": "is diastolic"
+                        },
+                        {
+                            "text": "holosystolic",
+                            "template": "is holosystolic"
+                        },
+                        {
+                            "text": "continuous",
+                            "template": "is continuous"
+                        },
+                        {
+                            "text": "best: L sternal border",
+                            "template": "best heard at L sternal border"
+                        },
+                        {
+                            "text": "best: 2nd R ICS",
+                            "template": "best heard near 2nd R ICS"
+                        },
+                        {
+                            "text": "best: xiphoid\/ sternal area",
+                            "template": "best heard at xiphoid\/sternal area"
+                        },
+                        {
+                            "text": "best: apex",
+                            "template": "best heard at apex"
+                        },
+                        {
+                            "text": "best: R sternal border",
+                            "template": "best heard at R sternal border"
+                        },
+                        {
+                            "text": "nonradiating",
+                            "template": "nonradiating"
+                        },
+                        {
+                            "text": "radiates to axilla",
+                            "template": "radiates to axilla"
+                        },
+                        {
+                            "text": "radiates to apex",
+                            "template": "radiates to apex"
+                        },
+                        {
+                            "text": "radiates to carotids",
+                            "template": "radiates to carotids"
+                        },
+                        {
+                            "text": "radiates to R side",
+                            "template": "radiates to R side"
+                        },
+                        {
+                            "text": "radiates to sternum",
+                            "template": "radiates to sternum"
+                        },
+                        {
+                            "text": "radiates to L clavicular area",
+                            "template": "radiates to L clavicular area"
+                        }
+                    ]
+                },
+                {
+                    "text": "no increased JVP visible",
+                    "template": "no increased JVP visible"
+                },
+                {
+                    "text": "JVP level (cm)",
+                    "template": "JVP {text} cm above the sternal angle",
+                    "type": "number"
+                },
+                {
+                    "text": "Heaves, thrills, lifts",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "heave",
+                            "template": "heave",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "parasternal lift",
+                            "template": "parasternal lift",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "thrill",
+                            "template": "thrill",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Extra heart sounds",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "extra heart sounds",
+                            "template": "extra heart sounds",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pulmonary ejection sound",
+                            "template": "pulmonary ejection sound",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "aortic ejection sound",
+                            "template": "aortic ejection sound",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "systolic click",
+                            "template": "systolic click",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "midsystolic click",
+                            "template": "midsystolic click",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mid-late systolic click",
+                            "template": "mid-to-late systolic click",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pericardial rub",
+                            "template": "pericardial rub",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "knock",
+                            "template": "knock",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "opening snap",
+                            "template": "opening snap",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "plop",
+                            "template": "plop",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "prosthetic sounds",
+                            "template": "prosthetic sounds",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pacemaker sounds",
+                            "template": "pacemaker sounds",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "PMI nondisplaced",
+                    "template": "PMI nondisplaced"
+                },
+                {
+                    "text": "PMI displaced",
+                    "template": "PMI displaced",
+                    "children": [
+                        {
+                            "text": "laterally",
+                            "template": "laterally"
+                        },
+                        {
+                            "text": "inferiorly",
+                            "template": "inferiorly"
+                        },
+                        {
+                            "text": "superiorly",
+                            "template": "superiorly"
+                        },
+                        {
+                            "text": "parasternally",
+                            "template": "parasternally"
+                        }
+                    ]
+                },
+                {
+                    "text": "Peripheral pulses, R",
+                    "template": "Peripheral pulses, R: {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity normal",
+                            "template": "upper extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lower extremity normal",
+                            "template": "lower extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished in upper extremities",
+                            "template": "diminished in upper extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished in lower extremities",
+                            "template": "diminished in lower extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pulsus paradoxicus",
+                            "template": "pulsus paradoxicus",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Peripheral pulses, L",
+                    "template": "Peripheral pulses, L: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact"
+                        },
+                        {
+                            "text": "upper extremity normal",
+                            "template": "upper extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lower extremity normal",
+                            "template": "lower extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished in upper extremities",
+                            "template": "diminished in upper extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished in lower extremities",
+                            "template": "diminished in lower extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pulsus paradoxicus",
+                            "template": "pulsus paradoxicus",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Peripheral pulses, BL",
+                    "template": "Peripheral pulses, BL: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact"
+                        },
+                        {
+                            "text": "upper extremity normal",
+                            "template": "upper extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lower extremity normal",
+                            "template": "lower extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished in upper extremities",
+                            "template": "diminished in upper extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished in lower extremities",
+                            "template": "diminished in lower extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pulsus paradoxicus",
+                            "template": "pulsus paradoxicus",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Xanthomas, R",
+                    "template": "Xanthomas, R: {children}",
+                    "children": [
+                        {
+                            "text": "eyelids",
+                            "template": "eyelids"
+                        },
+                        {
+                            "text": "periorbital",
+                            "template": "periorbital area"
+                        },
+                        {
+                            "text": "hands",
+                            "template": "hands"
+                        },
+                        {
+                            "text": "achilles tendons",
+                            "template": "achilles tendons"
+                        },
+                        {
+                            "text": "feet",
+                            "template": "feet"
+                        },
+                        {
+                            "text": "elbows",
+                            "template": "elbows"
+                        },
+                        {
+                            "text": "knees",
+                            "template": "knees"
+                        },
+                        {
+                            "text": "shoulders",
+                            "template": "shoulders"
+                        },
+                        {
+                            "text": "buttocks",
+                            "template": "buttocks"
+                        }
+                    ]
+                },
+                {
+                    "text": "Xanthomas, L",
+                    "template": "Xanthomas, L: {children}",
+                    "children": [
+                        {
+                            "text": "eyelids",
+                            "template": "eyelids"
+                        },
+                        {
+                            "text": "periorbital",
+                            "template": "periorbital area"
+                        },
+                        {
+                            "text": "hands",
+                            "template": "hands"
+                        },
+                        {
+                            "text": "achilles tendons",
+                            "template": "achilles tendons"
+                        },
+                        {
+                            "text": "feet",
+                            "template": "feet"
+                        },
+                        {
+                            "text": "elbows",
+                            "template": "elbows"
+                        },
+                        {
+                            "text": "knees",
+                            "template": "knees"
+                        },
+                        {
+                            "text": "shoulders",
+                            "template": "shoulders"
+                        },
+                        {
+                            "text": "buttocks",
+                            "template": "buttocks"
+                        }
+                    ]
+                },
+                {
+                    "text": "Xanthomas, BL",
+                    "template": "Xanthomas, BL: {children}",
+                    "children": [
+                        {
+                            "text": "eyelids",
+                            "template": "eyelids"
+                        },
+                        {
+                            "text": "periorbital",
+                            "template": "periorbital area"
+                        },
+                        {
+                            "text": "hands",
+                            "template": "hands"
+                        },
+                        {
+                            "text": "achilles tendons",
+                            "template": "achilles tendons"
+                        },
+                        {
+                            "text": "feet",
+                            "template": "feet"
+                        },
+                        {
+                            "text": "elbows",
+                            "template": "elbows"
+                        },
+                        {
+                            "text": "knees",
+                            "template": "knees"
+                        },
+                        {
+                            "text": "shoulders",
+                            "template": "shoulders"
+                        },
+                        {
+                            "text": "buttocks",
+                            "template": "buttocks"
+                        }
+                    ]
+                },
+                {
+                    "text": "LE venous stasis changes",
+                    "template": "LE venous stasis changes",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "varicose veins",
+                    "template": "varicose veins",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "LE varicose veins, R",
+                    "template": "LE varicose veins, R: {children}",
+                    "children": [
+                        {
+                            "text": "present",
+                            "template": "present",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "LE varicose veins, L",
+                    "template": "LE varicose veins, L: {children}",
+                    "children": [
+                        {
+                            "text": "present",
+                            "template": "present",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "LE varicose veins, BL",
+                    "template": "LE varicose veins, BL: {children}",
+                    "children": [
+                        {
+                            "text": "present",
+                            "template": "present",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "Other findings: {text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Cardiovascular, pulses",
+            "template": "CV: {children}",
+            "children": [
+                {
+                    "text": "pulse rate and rhythm regular",
+                    "template": "pulse rate and rhythm regular"
+                },
+                {
+                    "text": "pulse rate regular",
+                    "template": "pulse rate regular"
+                },
+                {
+                    "text": "pulse rhythm regular",
+                    "template": "pulse rhythm regular"
+                },
+                {
+                    "text": "Temporal artery, R",
+                    "template": "Temporal artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Temporal artery, L",
+                    "template": "Temporal artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Temporal arteries, BL",
+                    "template": "Temporal arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Carotid artery, R",
+                    "template": "Carotid artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "delayed upstroke",
+                            "template": "delayed upstroke"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Carotid artery, L",
+                    "template": "Carotid artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "delayed upstroke",
+                            "template": "delayed upstroke"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Carotid arteries, BL",
+                    "template": "Carotid arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "delayed upstroke",
+                            "template": "delayed upstroke"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Brachial artery, R",
+                    "template": "Brachial artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Brachial artery, L",
+                    "template": "Brachial artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Brachial arteries, BL",
+                    "template": "Brachial arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Radial artery, R",
+                    "template": "Radial artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "waterhammer",
+                            "template": "waterhammer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bisferiens",
+                            "template": "bisferiens",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Radial artery, L",
+                    "template": "Radial artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "waterhammer",
+                            "template": "waterhammer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bisferiens",
+                            "template": "bisferiens",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Radial arteries, BL",
+                    "template": "Radial arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "waterhammer",
+                            "template": "waterhammer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bisferiens",
+                            "template": "bisferiens",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Femoral artery, R",
+                    "template": "Femoral artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Femoral artery, L",
+                    "template": "Femoral artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Femoral arteries, BL",
+                    "template": "Femoral arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Popliteal artery, R",
+                    "template": "Popliteal artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Popliteal artery, L",
+                    "template": "Popliteal artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Popliteal arteries, BL",
+                    "template": "Popliteal arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Dorsalis pedis artery, R",
+                    "template": "Dorsalis pedis artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Dorsalis pedis artery, L",
+                    "template": "Dorsalis pedis artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Dorsalis pedis arteries, BL",
+                    "template": "Dorsalis pedis arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Posterior tibial, R",
+                    "template": "Posterior tibial, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Posterior tibial, L",
+                    "template": "Posterior tibial, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Posterior tibial arteries, BL",
+                    "template": "Posterior tibial arteries, BL {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Renal artery, R",
+                    "template": "Renal artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "bruit present",
+                            "template": "bruit present"
+                        },
+                        {
+                            "text": "palpable pulse",
+                            "template": "palpable pulse",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Renal artery, L",
+                    "template": "Renal artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "bruit present",
+                            "template": "bruit present"
+                        },
+                        {
+                            "text": "palpable pulse",
+                            "template": "palpable pulse",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Renal arteries, BL",
+                    "template": "Renal arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "bruit present",
+                            "template": "bruit present"
+                        },
+                        {
+                            "text": "palpable pulse",
+                            "template": "palpable pulse",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Aorta",
+                    "template": "Aorta: {children}",
+                    "children": [
+                        {
+                            "text": "enlargement",
+                            "template": "enlargement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Gastrointestinal",
+            "template": "GI: {children}",
+            "children": [
+                {
+                    "text": "NL abdominal inspection",
+                    "template": "NL abdominal inspection"
+                },
+                {
+                    "text": "abdominal distension noted",
+                    "template": "abdominal distension noted"
+                },
+                {
+                    "text": "abdomen flat on inspection",
+                    "template": "abdomen flat on inspection"
+                },
+                {
+                    "text": "abdomen obese on inspection",
+                    "template": "abdomen obese on inspection"
+                },
+                {
+                    "text": "abdomen scaphoid on inspection",
+                    "template": "abdomen scaphoid on inspection"
+                },
+                {
+                    "text": "bowel sounds intact throughout",
+                    "template": "bowel sounds intact throughout"
+                },
+                {
+                    "text": "decreased bowel sounds",
+                    "template": "decreased bowel sounds",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "absent bowel sounds",
+                    "template": "absent bowel sounds",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "high pitched bowel sounds",
+                    "template": "high pitched bowel sounds",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "borborygmi",
+                    "template": "borborygmi",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "soft, nontender to palpation",
+                    "template": "soft, nontender to palpation"
+                },
+                {
+                    "text": "no rebound\/guarding\/rigidity",
+                    "template": "no rebound\/guarding\/rigidity"
+                },
+                {
+                    "text": "rebound",
+                    "template": "rebound",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "guarding",
+                    "template": "guarding",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "rigidity",
+                    "template": "rigidity",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "hepatomegaly",
+                    "template": "hepatomegaly",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "splenomegaly",
+                    "template": "splenomegaly",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "masses",
+                    "template": "masses",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "ascites",
+                    "template": "ascites",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Abdominal exam - tenderness",
+                    "template": "Abdominal pain: {children}",
+                    "children": [
+                        {
+                            "text": "no tenderness noted on exam",
+                            "template": "no tenderness noted on exam"
+                        },
+                        {
+                            "text": "tenderness at rest",
+                            "template": "tenderness present at rest",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tenderness with palpation",
+                            "template": "tenderness present with palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tenderness with movement",
+                            "template": "tenderness present with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mild",
+                            "template": "mild pain present"
+                        },
+                        {
+                            "text": "moderate",
+                            "template": "moderate pain present"
+                        },
+                        {
+                            "text": "severe",
+                            "template": "severe pain present"
+                        },
+                        {
+                            "text": "present throughout",
+                            "template": "pain present throughout"
+                        },
+                        {
+                            "text": "right sided tenderness",
+                            "template": "right sided tenderness present"
+                        },
+                        {
+                            "text": "left sided tenderness",
+                            "template": "left sided tenderness present"
+                        },
+                        {
+                            "text": "midepigastric tenderness",
+                            "template": "midepigastric tenderness present"
+                        },
+                        {
+                            "text": "RUQ tenderness",
+                            "template": "RUQ tenderness present"
+                        },
+                        {
+                            "text": "LUQ tenderness",
+                            "template": "LUQ tenderness present"
+                        },
+                        {
+                            "text": "hypogastric tenderness",
+                            "template": "hypogastric tenderness present"
+                        },
+                        {
+                            "text": "RLQ tenderness",
+                            "template": "RLQ tenderness present"
+                        },
+                        {
+                            "text": "LLQ tenderness",
+                            "template": "LLQ tenderness present"
+                        },
+                        {
+                            "text": "periumbilical tenderness",
+                            "template": "periumbilical tenderness present"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "Other findings: {text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "GU\/Rectal: Female",
+            "template": "GU\/RECTAL: {children}",
+            "children": [
+                {
+                    "text": "external genitalia NL appearance",
+                    "template": "external genitalia NL appearance"
+                },
+                {
+                    "text": "hysterectomy and\/or oophorectomy",
+                    "template": "hysterectomy and\/or oophorectomy"
+                },
+                {
+                    "text": "Hair distribution",
+                    "template": "Hair distribution",
+                    "children": [
+                        {
+                            "text": "normal",
+                            "template": "normal"
+                        },
+                        {
+                            "text": "hair loss noted",
+                            "template": "hair loss noted",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Urethral meatus",
+                    "template": "Urethral meatus: {children}",
+                    "children": [
+                        {
+                            "text": "NL size",
+                            "template": "NL size"
+                        },
+                        {
+                            "text": "lesions",
+                            "template": "lesions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "prolapse",
+                            "template": "prolapse",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythematous",
+                            "template": "erythematous",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discharge",
+                            "template": "discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender",
+                            "template": "tender",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Bladder",
+                    "template": "Bladder: {children}",
+                    "children": [
+                        {
+                            "text": "normal",
+                            "template": "normal"
+                        },
+                        {
+                            "text": "tender",
+                            "template": "tender",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "masses",
+                            "template": "masses",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "distended",
+                            "template": "distended",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cystocele",
+                            "template": "cystocele",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Vagina",
+                    "template": "Vagina: {children}",
+                    "children": [
+                        {
+                            "text": "NL appearance",
+                            "template": "NL appearance"
+                        },
+                        {
+                            "text": "NL pelvic support",
+                            "template": "NL pelvic support"
+                        },
+                        {
+                            "text": "atrophy",
+                            "template": "atrophy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discharge",
+                            "template": "discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lesions",
+                            "template": "lesions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "prolapse",
+                            "template": "prolapse",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bleeding",
+                            "template": "bleeding",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Cervix",
+                    "template": "Cervix: {children}",
+                    "children": [
+                        {
+                            "text": "NL appearance",
+                            "template": "NL appearance"
+                        },
+                        {
+                            "text": "midline",
+                            "template": "midline"
+                        },
+                        {
+                            "text": "lesions",
+                            "template": "lesions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discharge",
+                            "template": "discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bleeding",
+                            "template": "bleeding",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "specimens obtained for smear",
+                            "template": "specimens obtained for smear",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "specimens obtained for culture",
+                            "template": "specimens obtained for culture",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "s\/p surgical removal",
+                            "template": "s\/p surgical removal"
+                        }
+                    ]
+                },
+                {
+                    "text": "Uterus",
+                    "template": "Uterus: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "NL position",
+                            "template": "NL position"
+                        },
+                        {
+                            "text": "NL mobility",
+                            "template": "NL mobility"
+                        },
+                        {
+                            "text": "NL contour",
+                            "template": "NL contour"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "prolapse",
+                            "template": "prolapse",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender",
+                            "template": "tender",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "s\/p hysterectomy",
+                            "template": "s\/p hysterectomy"
+                        }
+                    ]
+                },
+                {
+                    "text": "Adnexa, R",
+                    "template": "Adnexa, R: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "tender",
+                            "template": "tender",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "masses",
+                            "template": "masses",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nodules",
+                            "template": "nodules",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "s\/p salpingectomy",
+                            "template": "s\/p salpingectomy"
+                        }
+                    ]
+                },
+                {
+                    "text": "Adnexa, L",
+                    "template": "Adnexa, L: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "tender",
+                            "template": "tender",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "masses",
+                            "template": "masses",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nodules",
+                            "template": "nodules",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "s\/p salpingectomy",
+                            "template": "s\/p salpingectomy"
+                        }
+                    ]
+                },
+                {
+                    "text": "Adnexae, BL",
+                    "template": "Adnexae, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "tender",
+                            "template": "tender",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "masses",
+                            "template": "masses",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nodules",
+                            "template": "nodules",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "s\/p salpingectomy",
+                            "template": "s\/p salpingectomy"
+                        }
+                    ]
+                },
+                {
+                    "text": "Anorectal area",
+                    "template": "Anus\/rectum: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "NL tone",
+                            "template": "NL tone"
+                        },
+                        {
+                            "text": "perianal lesions",
+                            "template": "perianal lesions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "external hemorrhoids",
+                            "template": "external hemorrhoids",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "internal hemorrhoids",
+                            "template": "internal hemorrhoids",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "NL anoscopy",
+                            "template": "NL anoscopy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "rectocele",
+                            "template": "rectocele",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "masses",
+                            "template": "masses",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "stool positive for occult blood",
+                            "template": "stool positive for occult blood"
+                        },
+                        {
+                            "text": "stool negative for occult blood",
+                            "template": "stool negative for occult blood"
+                        },
+                        {
+                            "text": "gross blood noted on DRE",
+                            "template": "gross blood noted on DRE"
+                        }
+                    ]
+                },
+                {
+                    "text": "Rectal exam deferred",
+                    "template": "Rectal exam deferred: {children}",
+                    "children": [
+                        {
+                            "text": "not indicated",
+                            "template": "not indicated"
+                        },
+                        {
+                            "text": "refused by patient",
+                            "template": "refused by patient"
+                        },
+                        {
+                            "text": "unstable",
+                            "template": "deferred due to unstable clinical status"
+                        },
+                        {
+                            "text": "contraindicated",
+                            "template": "deferred due to clinical contraindication"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "Other findings: {text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "GU\/Rectal: Male",
+            "template": "GU\/RECTAL: {children}",
+            "children": [
+                {
+                    "text": "external genital NL appearance",
+                    "template": "external genital NL appearance"
+                },
+                {
+                    "text": "s\/p prostatectomy",
+                    "template": "s\/p prostatectomy"
+                },
+                {
+                    "text": "cremasteric reflex elicited",
+                    "template": "cremasteric reflex elicited",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Hair distribution",
+                    "template": "Hair distribution",
+                    "children": [
+                        {
+                            "text": "normal",
+                            "template": "normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hair loss noted",
+                            "template": "hair loss noted",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Bladder",
+                    "template": "Bladder: {children}",
+                    "children": [
+                        {
+                            "text": "normal",
+                            "template": "normal"
+                        },
+                        {
+                            "text": "tender",
+                            "template": "tender",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "masses",
+                            "template": "masses",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "distended",
+                            "template": "distended",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cystocele",
+                            "template": "cystocele",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Penis",
+                    "template": "Penis: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "urethral meatus patent",
+                            "template": "urethral meatus patent",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "urethral meatal location NL",
+                            "template": "urethral meatal location NL",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hypospadias",
+                            "template": "hypospadias",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clear discharge",
+                            "template": "clear discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bloody discharge",
+                            "template": "bloody discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "purulent discharge",
+                            "template": "purulent discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "smegma",
+                            "template": "smegma",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "circumcised",
+                            "template": "circumcised",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "urinary incontinence with cough",
+                            "template": "urinary incontinence with cough",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lesion",
+                            "template": "lesion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lesions",
+                            "template": "lesions",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Scrotum, R",
+                    "template": "Scrotum, R: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "symmetric",
+                            "template": "symmetric",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "NL size",
+                            "template": "NL size",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "atrophied",
+                            "template": "atrophied",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "NL position",
+                            "template": "NL position",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hydrocele",
+                            "template": "hydrocele",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mass",
+                            "template": "mass",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "rash",
+                            "template": "rash",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ulceration",
+                            "template": "ulceration",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lesions",
+                            "template": "lesions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nodular",
+                            "template": "nodular",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Scrotum, L",
+                    "template": "Scrotum, L: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "symmetric",
+                            "template": "symmetric",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "NL size",
+                            "template": "NL size",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "atrophied",
+                            "template": "atrophied",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "NL position",
+                            "template": "NL position",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hydrocele",
+                            "template": "hydrocele",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mass",
+                            "template": "mass",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "rash",
+                            "template": "rash",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ulceration",
+                            "template": "ulceration",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lesions",
+                            "template": "lesions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nodular",
+                            "template": "nodular",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Scrotal findings, BL",
+                    "template": "Scrotal findings, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "symmetric",
+                            "template": "symmetric",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "NL size",
+                            "template": "NL size",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "atrophied",
+                            "template": "atrophied",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "NL position",
+                            "template": "NL position",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hydrocele",
+                            "template": "hydrocele",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mass",
+                            "template": "mass",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "rash",
+                            "template": "rash",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ulceration",
+                            "template": "ulceration",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lesions",
+                            "template": "lesions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nodular",
+                            "template": "nodular",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Testis, R",
+                    "template": "Testis, R: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "mass",
+                            "template": "mass",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "transillumination noted",
+                            "template": "transillumination noted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender",
+                            "template": "tender",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "opaque",
+                            "template": "opaque",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "undescended",
+                            "template": "undescended",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "s\/p orchiectomy",
+                            "template": "s\/p orchiectomy"
+                        }
+                    ]
+                },
+                {
+                    "text": "Testis, L",
+                    "template": "Testis, L: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "mass",
+                            "template": "mass",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "transillumination noted",
+                            "template": "transillumination noted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender",
+                            "template": "tender",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "opaque",
+                            "template": "opaque",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "undescended",
+                            "template": "undescended",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "s\/p orchiectomy",
+                            "template": "s\/p orchiectomy"
+                        }
+                    ]
+                },
+                {
+                    "text": "Testes, BL",
+                    "template": "Testes, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "mass",
+                            "template": "mass",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "transillumination noted",
+                            "template": "transillumination noted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender",
+                            "template": "tender",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "opaque",
+                            "template": "opaque",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "undescended",
+                            "template": "undescended",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "s\/p orchiectomy",
+                            "template": "s\/p orchiectomy"
+                        }
+                    ]
+                },
+                {
+                    "text": "Spermatic cord",
+                    "template": "Spermatic cord: {children}",
+                    "children": [
+                        {
+                            "text": "right spermatic cord",
+                            "template": "right spermatic cord"
+                        },
+                        {
+                            "text": "left spermatic cord",
+                            "template": "left spermatic cord"
+                        },
+                        {
+                            "text": "bilateral spermatic cords",
+                            "template": "bilateral spermatic cords"
+                        },
+                        {
+                            "text": "tender",
+                            "template": "tender",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Inguinal canal, R",
+                    "template": "Inguinal canal, R: {children}",
+                    "children": [
+                        {
+                            "text": "tenderness to palpation",
+                            "template": "tenderness to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hernia present at rest",
+                            "template": "hernia present at rest",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hernia present with cough",
+                            "template": "hernia present with cough",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Inguinal canal, L",
+                    "template": "Inguinal canal, L: {children}",
+                    "children": [
+                        {
+                            "text": "tenderness to palpation",
+                            "template": "tenderness to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hernia present at rest",
+                            "template": "hernia present at rest",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hernia present with cough",
+                            "template": "hernia present with cough",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Inguinal canals, BL",
+                    "template": "Inguinal canals, BL: {children}",
+                    "children": [
+                        {
+                            "text": "tenderness to palpation",
+                            "template": "tenderness to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hernia present at rest",
+                            "template": "hernia present at rest",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hernia present with cough",
+                            "template": "hernia present with cough",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Prostate",
+                    "template": "Prostate exam {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "masses",
+                            "template": "masses",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nodule noted",
+                            "template": "nodule noted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nodules noted",
+                            "template": "nodules noted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender",
+                            "template": "tender",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "rubbery",
+                            "template": "rubbery",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "boggy",
+                            "template": "boggy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Anorectal area",
+                    "template": "Anus\/rectum: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "NL tone",
+                            "template": "NL tone"
+                        },
+                        {
+                            "text": "perianal lesions",
+                            "template": "perianal lesions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "external hemorrhoids",
+                            "template": "external hemorrhoids",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "internal hemorrhoids",
+                            "template": "internal hemorrhoids",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "NL anoscopy",
+                            "template": "NL anoscopy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "rectocele",
+                            "template": "rectocele",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "masses",
+                            "template": "masses",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "stool positive for occult blood",
+                            "template": "stool positive for occult blood"
+                        },
+                        {
+                            "text": "stool negative for occult blood",
+                            "template": "stool negative for occult blood"
+                        },
+                        {
+                            "text": "gross blood noted on DRE",
+                            "template": "gross blood noted on DRE"
+                        }
+                    ]
+                },
+                {
+                    "text": "Rectal exam deferred",
+                    "template": "Rectal exam deferred: {children}",
+                    "children": [
+                        {
+                            "text": "not indicated",
+                            "template": "not indicated"
+                        },
+                        {
+                            "text": "refused by patient",
+                            "template": "refused by patient"
+                        },
+                        {
+                            "text": "unstable",
+                            "template": "deferred due to unstable clinical status"
+                        },
+                        {
+                            "text": "contraindicated",
+                            "template": "deferred due to clinical contraindication"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "Other findings: {text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Dermatologic\/Lymphatic",
+            "template": "DERM: {children}",
+            "children": [
+                {
+                    "text": "Dermatologic findings, general",
+                    "template": "General dermatologic findings :{children}",
+                    "children": [
+                        {
+                            "text": "no abnormal skin findings",
+                            "template": "no abnormal skin findings"
+                        },
+                        {
+                            "text": "hyperpigmentation",
+                            "template": "hyperpigmentation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hypopigmentation",
+                            "template": "hypopigmentation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tattoo markings",
+                            "template": "tattoo markings",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scarring",
+                            "template": "scarring",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "injection tracts",
+                            "template": "injection tracts",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "alopecia",
+                            "template": "alopecia",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acanthosis nigricans",
+                            "template": "acanthosis nigricans",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "lymphadenopathy",
+                    "template": "lymphadenopathy",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Preauricular lymphatics, R",
+                    "template": "Preauricular lymphatics, R: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Preauricular lymphatics, L",
+                    "template": "Preauricular lymphatics, L: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Preauricular lymphatics, BL",
+                    "template": "Preauricular lymphatics, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Postauricular lymphatics, R",
+                    "template": "Postauricular lymphatics, R: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Postauricular lymphatics, L",
+                    "template": "Postauricular lymphatics, L: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Postauricular lymphatics, BL",
+                    "template": "Postauricular lymphatics, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Anterior cervical lymphatics, R",
+                    "template": "Anterior cervical lymphatics, R: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Anterior cervical lymphatics, L",
+                    "template": "Anterior cervical lymphatics, L: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Anterior cervical lymphatics, BL",
+                    "template": "Anterior cervical lymphatics, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Posterior cervical lymphatics, R",
+                    "template": "Posterior cervical lymphatics, R: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Posterior cervical lymphatics, L",
+                    "template": "Posterior cervical lymphatics, L: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Posterior cervical lymphatics, BL",
+                    "template": "Posterior cervical lymphatics, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Supraclavicular lymphatics, R",
+                    "template": "Supraclavicular lymphatics, R: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Supraclavicular lymphatics, L",
+                    "template": "Supraclavicular lymphatics, L: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Supraclavicular lymphatics, BL",
+                    "template": "Supraclavicular lymphatics, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Infraclavicular lymphatics, R",
+                    "template": "Infraclavicular lymphatics, R: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Infraclavicular lymphatics, L",
+                    "template": "Infraclavicular lymphatics, L: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Infraclavicular lymphatics, BL",
+                    "template": "Infraclavicular lymphatics, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Anterior axillary lymphatics, R",
+                    "template": "Anterior axillary lymphatics, R: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Anterior axillary lymphatics, L",
+                    "template": "Anterior axillary lymphatics, L: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Anterior axillary lymphatics, BL",
+                    "template": "Anterior axillary lymphatics, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Posterior axillary lymphatics, R",
+                    "template": "Posterior axillary lymphatics, R: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Posterior axillary lymphatics, L",
+                    "template": "Posterior axillary lymphatics, L: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Posterior axillary lymphatics, BL",
+                    "template": "Posterior axillary lymphatics, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Apical axillary lymphatics, R",
+                    "template": "Apical axillary lymphatics, R: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Apical axillary lymphatics, L",
+                    "template": "Apical axillary lymphatics, L: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Apical axillary lymphatics, BL",
+                    "template": "Apical axillary lymphatics, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lateral axillary lymphatics, R",
+                    "template": "Lateral axillary lymphatics, R: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lateral axillary lymphatics, L",
+                    "template": "Lateral axillary lymphatics, L: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lateral axillary lymphatics, BL",
+                    "template": "Lateral axillary lymphatics, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Medial axillary lymphatics, R",
+                    "template": "Medial axillary lymphatics, R: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Medial axillary lymphatics, L",
+                    "template": "Medial axillary lymphatics, L: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Medial axillary lymphatics, BL",
+                    "template": "Medial axillary lymphatics, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Femoral lymphatics, R",
+                    "template": "Femoral lymphatics, R: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Femoral lymphatics, L",
+                    "template": "Femoral lymphatics, L: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Femoral lymphatics, BL",
+                    "template": "Femoral lymphatics, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "Other findings: {text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Musculoskeletal",
+            "template": "MUSC\/SKEL: {children}",
+            "children": [
+                {
+                    "text": "muscle strength NL throughout",
+                    "template": "muscle strength NL throughout"
+                },
+                {
+                    "text": "NL upper extremity exam BL",
+                    "template": "NL upper extremity exam BL",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "NL lower extremity exam BL",
+                    "template": "NL lower extremity exam BL",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Upper extremity, R",
+                    "template": "Upper extremity exam, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "normal strength and tone"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity, L",
+                    "template": "Upper extremity exam, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "normal strength and tone"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity, BL",
+                    "template": "Upper extremity exam, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "normal strength and tone"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity, R",
+                    "template": "Lower extremity exam, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "normal strength and tone"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity, L",
+                    "template": "Lower extremity exam, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "normal strength and tone"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity, BL",
+                    "template": "Lower extremity exam, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "normal strength and tone"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Back, R",
+                    "template": "Back exam, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sacral edema",
+                            "template": "sacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "presacral edema",
+                            "template": "presacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "costovertebral angle tenderness",
+                            "template": "costovertebral angle tenderness",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Back, L",
+                    "template": "Back exam, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sacral edema",
+                            "template": "sacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "presacral edema",
+                            "template": "presacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "costovertebral angle tenderness",
+                            "template": "costovertebral angle tenderness",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Back, BL",
+                    "template": "Back exam, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sacral edema",
+                            "template": "sacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "presacral edema",
+                            "template": "presacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "costovertebral angle tenderness",
+                            "template": "costovertebral angle tenderness",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Extremities",
+            "template": "EXT: {children}",
+            "children": [
+                {
+                    "text": "no C\/C\/E",
+                    "template": "no C\/C\/E"
+                },
+                {
+                    "text": "cyanosis",
+                    "template": "cyanosis",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "clubbing",
+                    "template": "clubbing",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "edema",
+                    "template": "edema",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "anasarca",
+                    "template": "anasarca",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Upper extremity C\/C\/E, R",
+                    "template": "Upper extremity C\/C\/E, R: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity C\/C\/E, L",
+                    "template": "Upper extremity C\/C\/E, L: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremities C\/C\/E, BL",
+                    "template": "Upper extremities C\/C\/E, BL: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity C\/C\/E, R",
+                    "template": "Lower extremity C\/C\/E, R: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity C\/C\/E, L",
+                    "template": "Lower extremity C\/C\/E, L: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremities C\/C\/E, BL",
+                    "template": "Lower extremities C\/C\/E, BL: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "full range of motion throughout",
+                    "template": "full range of motion throughout"
+                },
+                {
+                    "text": "upper ext strength intact BL",
+                    "template": "upper extremity strength intact BL",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Upper extremity, ROM, R",
+                    "template": "Upper extremity, range of motion, R: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity, ROM, L",
+                    "template": "Upper extremity, range of motion, L: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremities, ROM, BL",
+                    "template": "Upper extremities, range of motion, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "lower ext strength intact BL",
+                    "template": "lower extremity strength intact BL",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Lower extremity, ROM, R",
+                    "template": "Lower extremity, range of motion, R: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity, ROM, L",
+                    "template": "Lower extremity, range of motion, L: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity, ROM, BL",
+                    "template": "Lower extremity, range of motion, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "upper extremity strength intact BL",
+                    "template": "Upper extremity strength intact BL",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Upper extremity strength, R",
+                    "template": "Upper extremity strength, R: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity strength, L",
+                    "template": "Upper extremity strength, L: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity strength, BL",
+                    "template": "Upper extremity strength, BL: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "lower extremity strength intact BL",
+                    "template": "Lower extremity strength intact BL",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Lower extremity strength, R",
+                    "template": "Lower extremity strength, R: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity strength, L",
+                    "template": "Lower extremity strength, L: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity strength, BL",
+                    "template": "Lower extremity strength, BL: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Neurologic",
+            "template": "NEURO: {children}",
+            "children": [
+                {
+                    "text": "sensation grossly intact",
+                    "template": "sensation grossly intact"
+                },
+                {
+                    "text": "CN II-XII intact and nonfocal",
+                    "template": "CN II-XII intact and nonfocal"
+                },
+                {
+                    "text": "DTRs bilaterally equal throughout",
+                    "template": "deep tendon reflexes 2+, bilaterally equal throughout"
+                },
+                {
+                    "text": "pathological reflexes elicited",
+                    "template": "pathological reflexes elicited"
+                },
+                {
+                    "text": "no pathological reflexes elicited",
+                    "template": "no pathological reflexes elicited"
+                },
+                {
+                    "text": "normal gait and station",
+                    "template": "normal gait and station"
+                },
+                {
+                    "text": "normal gait",
+                    "template": "normal gait"
+                },
+                {
+                    "text": "normal station",
+                    "template": "normal station"
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "Other findings: {text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Psychiatric",
+            "template": "PSYCH: {children}",
+            "children": [
+                {
+                    "text": "AO x 3",
+                    "template": "alert and oriented to time, place, and person"
+                },
+                {
+                    "text": "normal mood",
+                    "template": "normal mood"
+                },
+                {
+                    "text": "normal affect",
+                    "template": "normal affect"
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "Other findings: {text}",
+                    "type": "alpha"
+                }
+            ]
+        }
+    ]
+}

+ 6845 - 0
storage/templates/exam-default/exam-gi-detail/gi-exam.json

@@ -0,0 +1,6845 @@
+{
+    "section": "exam-gi-detail",
+    "templateSet": "GI Exam",
+    "templates": [
+        {
+            "text": "1-Click normal exams",
+            "template": "{children}",
+            "children": [
+                {
+                    "text": "GEN: NAD",
+                    "template": "GEN: NAD"
+                },
+                {
+                    "text": "HEENT: sclerae, frenulum anicteric",
+                    "template": "HEENT: no scleral icterus, no frenular icterus"
+                },
+                {
+                    "text": "RESP: CTA BL, no r\/w\/r",
+                    "template": "RESP: Clear to auscultation BL, no rales, wheezes, or rhonchi"
+                },
+                {
+                    "text": "RESP: nonlab, no dullness to perc",
+                    "template": "RESP: nonlabored, no dullness to percussion"
+                },
+                {
+                    "text": "CV: RRR, no m\/r\/g",
+                    "template": "CV: RRR, no m\/r\/g"
+                },
+                {
+                    "text": "GI: +BS, NT, no r\/g\/r",
+                    "template": "GI: +BS, nontender to palpation, no rebound, guarding, or rigidity"
+                },
+                {
+                    "text": "GI: no masses, no HSM",
+                    "template": "GI: no masses, no hepatosplenomegaly"
+                },
+                {
+                    "text": "GI: no abdominal bruit\/umbilical hernia",
+                    "template": "GI: no abdominal bruit, no umbilical hernia"
+                },
+                {
+                    "text": "GI: no ascites, no fluid wave",
+                    "template": "GI: no ascites, no fluid wave"
+                },
+                {
+                    "text": "EXT: no C\/C\/E",
+                    "template": "EXT: no C\/C\/E"
+                },
+                {
+                    "text": "DERM: no jaundice",
+                    "template": "DERM: no jaundice"
+                },
+                {
+                    "text": "NEURO: AO x 3, no asterixis",
+                    "template": "NEURO: AO x 3, no asterixis"
+                }
+            ]
+        },
+        {
+            "text": "General",
+            "template": "GEN: {children}",
+            "children": [
+                {
+                    "text": "NAD",
+                    "template": "NAD",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "cooperative with exam",
+                    "template": "cooperative with exam",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "well groomed",
+                    "template": "well groomed",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "well developed",
+                    "template": "well developed",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "well nourished",
+                    "template": "well nourished",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "overweight",
+                    "template": "overweight",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "obese",
+                    "template": "obese",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "morbidly obese",
+                    "template": "morbidly obese",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "emaciated",
+                    "template": "emaciated",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "appears to be stated age",
+                    "template": "appears to be stated age",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "appears older than stated age",
+                    "template": "appears older than stated age",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "appears younger than stated age",
+                    "template": "appears younger than stated age",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Other detail",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "HEENT",
+            "template": "HEENT: {children}",
+            "children": [
+                {
+                    "text": "head normocephalic, atraumatic",
+                    "template": "head normocephalic, atraumatic"
+                },
+                {
+                    "text": "head normocephalic",
+                    "template": "head normocephalic",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "head atraumatic",
+                    "template": "head atraumatic",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "facial edema",
+                    "template": "facial edema",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "plethora",
+                    "template": "plethora",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "EOMI",
+                    "template": "EOMI"
+                },
+                {
+                    "text": "PERRLA",
+                    "template": "PERRLA"
+                },
+                {
+                    "text": "scleral icterus",
+                    "template": "scleral icterus",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "pale conjunctivae",
+                    "template": "pale conjunctivae",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "periorbital xanthelasma",
+                    "template": "periorbital xanthelasma",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "periorbital edema",
+                    "template": "periorbital edema",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "hearing grossly intact",
+                    "template": "hearing grossly intact",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "normal dentition",
+                    "template": "normal dentition"
+                },
+                {
+                    "text": "normal gums",
+                    "template": "normal gums"
+                },
+                {
+                    "text": "gingival hypertrophy",
+                    "template": "gingival hypertrophy",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "pharynx unremarkable",
+                    "template": "pharynx unremarkable"
+                },
+                {
+                    "text": "frenular jaundice",
+                    "template": "frenular jaundice",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "mucosal petechiae",
+                    "template": "mucosal petechiae",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "mucous membranes moist",
+                    "template": "mucous membranes moist",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "voice NL",
+                    "template": "voice NL"
+                },
+                {
+                    "text": "Other detail",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Neck",
+            "template": "NECK: {children}",
+            "children": [
+                {
+                    "text": "soft, nontender",
+                    "template": "soft, nontender"
+                },
+                {
+                    "text": "no increased JVP visible",
+                    "template": "no increased JVP visible"
+                },
+                {
+                    "text": "hepatojugular reflex elicited",
+                    "template": "hepatojugular reflex elicited",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "no cervical LN",
+                    "template": "no significant cervical lymphadenopathy"
+                },
+                {
+                    "text": "neck not enlarged",
+                    "template": "neck not enlarged"
+                },
+                {
+                    "text": "obese neck",
+                    "template": "neck obesity",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "thyromegaly",
+                    "template": "thyromegaly",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Lymphadenopathy",
+                    "template": "{children} lymphadenopathy",
+                    "children": [
+                        {
+                            "text": "shotty cervical",
+                            "template": "shotty cervical"
+                        },
+                        {
+                            "text": "submental",
+                            "template": "submental"
+                        },
+                        {
+                            "text": "R submandibular",
+                            "template": "R submandibular"
+                        },
+                        {
+                            "text": "L submandibular",
+                            "template": "L submandibular"
+                        },
+                        {
+                            "text": "R ant. cervical",
+                            "template": "R anterior cervical"
+                        },
+                        {
+                            "text": "L ant. cervical",
+                            "template": "L anterior cervical"
+                        },
+                        {
+                            "text": "R preauricular",
+                            "template": "R preauricular"
+                        },
+                        {
+                            "text": "L preauricular",
+                            "template": "L preauricular"
+                        },
+                        {
+                            "text": "R post. auricular",
+                            "template": "R posterior auricular"
+                        },
+                        {
+                            "text": "L post. auricular",
+                            "template": "L posterior auricular"
+                        },
+                        {
+                            "text": "R supraclavicular",
+                            "template": "R supraclavicular"
+                        },
+                        {
+                            "text": "L supraclavicular",
+                            "template": "L supraclavicular"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other detail",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Respiratory",
+            "template": "RESP: {children}",
+            "children": [
+                {
+                    "text": "no respiratory distress",
+                    "template": "no respiratory distress"
+                },
+                {
+                    "text": "auscultation clear BL",
+                    "template": "clear to auscultation bilaterally"
+                },
+                {
+                    "text": "no wheezes\/rales\/rhonchi",
+                    "template": "no wheezes\/rales\/rhonchi"
+                },
+                {
+                    "text": "percussion clear BL",
+                    "template": "clear to percussion bilaterally"
+                },
+                {
+                    "text": "chest wall symmetric",
+                    "template": "chest wall symmetric"
+                },
+                {
+                    "text": "subcutaneous emphysema",
+                    "template": "subcutaneous emphysema",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Abnl lung sounds, R",
+                    "template": "Abnl lung sounds, R: {children}",
+                    "children": [
+                        {
+                            "text": "whoop",
+                            "template": "whoop",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "stridor",
+                            "template": "stridor",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pleural rub",
+                            "template": "pleural rub"
+                        },
+                        {
+                            "text": "basilar rales",
+                            "template": "basilar rales"
+                        },
+                        {
+                            "text": "rales scattered",
+                            "template": "scattered rales"
+                        },
+                        {
+                            "text": "rhonchi scattered",
+                            "template": "scattered rhonchi"
+                        },
+                        {
+                            "text": "diminished breath sounds throughout",
+                            "template": "diminished breath sounds throughout"
+                        },
+                        {
+                            "text": "diminished breath sounds at bases",
+                            "template": "diminished breath sounds at bases"
+                        },
+                        {
+                            "text": "wheezes, expiration",
+                            "template": "expiratory wheezes"
+                        }
+                    ]
+                },
+                {
+                    "text": "Abnl lung sounds, L",
+                    "template": "Abnl lung sounds, L: {children}",
+                    "children": [
+                        {
+                            "text": "whoop",
+                            "template": "whoop",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "stridor",
+                            "template": "stridor",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pleural rub",
+                            "template": "pleural rub"
+                        },
+                        {
+                            "text": "basilar rales",
+                            "template": "basilar rales"
+                        },
+                        {
+                            "text": "rales scattered",
+                            "template": "scattered rales"
+                        },
+                        {
+                            "text": "rhonchi scattered",
+                            "template": "scattered rhonchi"
+                        },
+                        {
+                            "text": "diminished breath sounds throughout",
+                            "template": "diminished breath sounds throughout"
+                        },
+                        {
+                            "text": "diminished breath sounds at bases",
+                            "template": "diminished breath sounds at bases"
+                        },
+                        {
+                            "text": "wheezes, expiration",
+                            "template": "expiratory wheezes"
+                        }
+                    ]
+                },
+                {
+                    "text": "Abnl lung sounds, BL",
+                    "template": "Abnl lung sounds, BL: {children}",
+                    "children": [
+                        {
+                            "text": "whoop",
+                            "template": "whoop",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "stridor",
+                            "template": "stridor",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pleural rub",
+                            "template": "pleural rub"
+                        },
+                        {
+                            "text": "basilar rales",
+                            "template": "basilar rales"
+                        },
+                        {
+                            "text": "rales scattered",
+                            "template": "scattered rales"
+                        },
+                        {
+                            "text": "rhonchi scattered",
+                            "template": "scattered rhonchi"
+                        },
+                        {
+                            "text": "diminished breath sounds throughout",
+                            "template": "diminished breath sounds throughout"
+                        },
+                        {
+                            "text": "diminished breath sounds at bases",
+                            "template": "diminished breath sounds at bases"
+                        },
+                        {
+                            "text": "wheezes, expiration",
+                            "template": "expiratory wheezes"
+                        }
+                    ]
+                },
+                {
+                    "text": "Percussion, R",
+                    "template": "Percussion, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal to percussion",
+                            "template": "normal to percussion"
+                        },
+                        {
+                            "text": "dullness to percussion at base",
+                            "template": "dullness to percussion at base"
+                        },
+                        {
+                            "text": "dull throughout",
+                            "template": "dull to percussion throughout"
+                        }
+                    ]
+                },
+                {
+                    "text": "Percussion, L",
+                    "template": "Percussion, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal to percussion",
+                            "template": "normal to percussion"
+                        },
+                        {
+                            "text": "dullness to percussion at base",
+                            "template": "dullness to percussion at base"
+                        },
+                        {
+                            "text": "dull throughout",
+                            "template": "dull to percussion throughout"
+                        }
+                    ]
+                },
+                {
+                    "text": "Percussion, BL",
+                    "template": "Percussion, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal to percussion",
+                            "template": "normal to percussion"
+                        },
+                        {
+                            "text": "dullness to percussion at base",
+                            "template": "dullness to percussion at base"
+                        },
+                        {
+                            "text": "dull throughout",
+                            "template": "dull to percussion throughout"
+                        }
+                    ]
+                },
+                {
+                    "text": "Breathing dynamics, R",
+                    "template": "Breathing dynamics, R: {children}",
+                    "children": [
+                        {
+                            "text": "labored breathing",
+                            "template": "labored breathing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "accessory muscle use",
+                            "template": "accessory muscle use",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "rib retractions",
+                            "template": "rib retractions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abnormal diaphragm movement",
+                            "template": "abnormal diaphragm movement",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Breathing dynamics, L",
+                    "template": "Breathing dynamics, L: {children}",
+                    "children": [
+                        {
+                            "text": "labored breathing",
+                            "template": "labored breathing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "accessory muscle use",
+                            "template": "accessory muscle use",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "rib retractions",
+                            "template": "rib retractions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abnormal diaphragm movement",
+                            "template": "abnormal diaphragm movement",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Breathing dynamics, BL",
+                    "template": "Breathing dynamics, BL: {children}",
+                    "children": [
+                        {
+                            "text": "labored breathing",
+                            "template": "labored breathing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "accessory muscle use",
+                            "template": "accessory muscle use",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "rib retractions",
+                            "template": "rib retractions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abnormal diaphragm movement",
+                            "template": "abnormal diaphragm movement",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other detail",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Cardiovascular",
+            "template": "CV: {children}",
+            "children": [
+                {
+                    "text": "RRR, no murmur\/rub\/gallop",
+                    "template": "RRR, no murmur\/rub\/gallop"
+                },
+                {
+                    "text": "S1, S2 findings",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "NL S1",
+                            "template": "NL S1"
+                        },
+                        {
+                            "text": "NL S2",
+                            "template": "NL S2"
+                        },
+                        {
+                            "text": "split S2",
+                            "template": "split S2"
+                        },
+                        {
+                            "text": "split S1",
+                            "template": "split S1"
+                        },
+                        {
+                            "text": "persistently split S2",
+                            "template": "persistently split S2"
+                        },
+                        {
+                            "text": "physiologically split S2",
+                            "template": "physiologically split S2"
+                        },
+                        {
+                            "text": "paradoxically split S2",
+                            "template": "paradoxically split S2"
+                        },
+                        {
+                            "text": "widely split S2",
+                            "template": "widely split S2"
+                        }
+                    ]
+                },
+                {
+                    "text": "S3 gallop",
+                    "template": "S3 gallop",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "S4 gallop",
+                    "template": "S4 gallop",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "regular rate and rhythm",
+                    "template": "regular rate and rhythm"
+                },
+                {
+                    "text": "regular rate",
+                    "template": "regular rate"
+                },
+                {
+                    "text": "regular rhythm",
+                    "template": "regular rhythm"
+                },
+                {
+                    "text": "no murmurs",
+                    "template": "no murmurs"
+                },
+                {
+                    "text": "Murmur grade",
+                    "template": "Murmur grade: {text}\/6",
+                    "type": "number"
+                },
+                {
+                    "text": "Murmur timing\/location",
+                    "template": "murmur {children}",
+                    "children": [
+                        {
+                            "text": "systolic",
+                            "template": "is systolic"
+                        },
+                        {
+                            "text": "diastolic",
+                            "template": "is diastolic"
+                        },
+                        {
+                            "text": "holosystolic",
+                            "template": "is holosystolic"
+                        },
+                        {
+                            "text": "continuous",
+                            "template": "is continuous"
+                        },
+                        {
+                            "text": "best: L sternal border",
+                            "template": "best heard at L sternal border"
+                        },
+                        {
+                            "text": "best: 2nd R ICS",
+                            "template": "best heard near 2nd R ICS"
+                        },
+                        {
+                            "text": "best: xiphoid\/ sternal area",
+                            "template": "best heard at xiphoid\/sternal area"
+                        },
+                        {
+                            "text": "best: apex",
+                            "template": "best heard at apex"
+                        },
+                        {
+                            "text": "best: R sternal border",
+                            "template": "best heard at R sternal border"
+                        },
+                        {
+                            "text": "nonradiating",
+                            "template": "nonradiating"
+                        },
+                        {
+                            "text": "radiates to axilla",
+                            "template": "radiates to axilla"
+                        },
+                        {
+                            "text": "radiates to apex",
+                            "template": "radiates to apex"
+                        },
+                        {
+                            "text": "radiates to carotids",
+                            "template": "radiates to carotids"
+                        },
+                        {
+                            "text": "radiates to R side",
+                            "template": "radiates to R side"
+                        },
+                        {
+                            "text": "radiates to sternum",
+                            "template": "radiates to sternum"
+                        },
+                        {
+                            "text": "radiates to L clavicular area",
+                            "template": "radiates to L clavicular area"
+                        }
+                    ]
+                },
+                {
+                    "text": "no increased JVP visible",
+                    "template": "no increased JVP visible"
+                },
+                {
+                    "text": "JVP level (cm)",
+                    "template": "JVP {text} cm above the sternal angle",
+                    "type": "number"
+                },
+                {
+                    "text": "Heaves, Thrills, Lifts",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "heave",
+                            "template": "heave",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "parasternal lift",
+                            "template": "parasternal lift",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "thrill",
+                            "template": "thrill",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Extra heart sounds",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "extra heart sounds",
+                            "template": "extra heart sounds",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pulmonary ejection sound",
+                            "template": "pulmonary ejection sound",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "aortic ejection sound",
+                            "template": "aortic ejection sound",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "systolic click",
+                            "template": "systolic click",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "midsystolic click",
+                            "template": "midsystolic click",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mid-late systolic click",
+                            "template": "mid-to-late systolic click",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pericardial rub",
+                            "template": "pericardial rub",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "knock",
+                            "template": "knock",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "opening snap",
+                            "template": "opening snap",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "plop",
+                            "template": "plop",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "prosthetic sounds",
+                            "template": "prosthetic sounds",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pacemaker sounds",
+                            "template": "pacemaker sounds",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "PMI nondisplaced",
+                    "template": "PMI nondisplaced"
+                },
+                {
+                    "text": "PMI displaced",
+                    "template": "PMI displaced",
+                    "children": [
+                        {
+                            "text": "laterally",
+                            "template": "laterally"
+                        },
+                        {
+                            "text": "inferiorly",
+                            "template": "inferiorly"
+                        },
+                        {
+                            "text": "superiorly",
+                            "template": "superiorly"
+                        },
+                        {
+                            "text": "parasternally",
+                            "template": "parasternally"
+                        }
+                    ]
+                },
+                {
+                    "text": "Peripheral pulses, R",
+                    "template": "Peripheral pulses, R: {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity normal",
+                            "template": "upper extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lower extremity normal",
+                            "template": "lower extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished upper ext.",
+                            "template": "diminished in upper extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished lower ext.",
+                            "template": "diminished in lower extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pulsus paradoxicus",
+                            "template": "pulsus paradoxicus",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Peripheral pulses, L",
+                    "template": "Peripheral pulses, L: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact"
+                        },
+                        {
+                            "text": "upper extremity normal",
+                            "template": "upper extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lower extremity normal",
+                            "template": "lower extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished upper ext.",
+                            "template": "diminished in upper extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished lower ext.",
+                            "template": "diminished in lower extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pulsus paradoxicus",
+                            "template": "pulsus paradoxicus",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Peripheral pulses, BL",
+                    "template": "Peripheral pulses, BL: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact"
+                        },
+                        {
+                            "text": "upper extremity normal",
+                            "template": "upper extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lower extremity normal",
+                            "template": "lower extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished upper ext.",
+                            "template": "diminished in upper extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished lower ext.",
+                            "template": "diminished in lower extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pulsus paradoxicus",
+                            "template": "pulsus paradoxicus",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Xanthomas, R",
+                    "template": "Xanthomas, R: {children}",
+                    "children": [
+                        {
+                            "text": "eyelids",
+                            "template": "eyelids"
+                        },
+                        {
+                            "text": "periorbital",
+                            "template": "periorbital area"
+                        },
+                        {
+                            "text": "hands",
+                            "template": "hands"
+                        },
+                        {
+                            "text": "achilles tendons",
+                            "template": "achilles tendons"
+                        },
+                        {
+                            "text": "feet",
+                            "template": "feet"
+                        },
+                        {
+                            "text": "elbows",
+                            "template": "elbows"
+                        },
+                        {
+                            "text": "knees",
+                            "template": "knees"
+                        },
+                        {
+                            "text": "shoulders",
+                            "template": "shoulders"
+                        },
+                        {
+                            "text": "buttocks",
+                            "template": "buttocks"
+                        }
+                    ]
+                },
+                {
+                    "text": "Xanthomas, L",
+                    "template": "Xanthomas, L: {children}",
+                    "children": [
+                        {
+                            "text": "eyelids",
+                            "template": "eyelids"
+                        },
+                        {
+                            "text": "periorbital",
+                            "template": "periorbital area"
+                        },
+                        {
+                            "text": "hands",
+                            "template": "hands"
+                        },
+                        {
+                            "text": "achilles tendons",
+                            "template": "achilles tendons"
+                        },
+                        {
+                            "text": "feet",
+                            "template": "feet"
+                        },
+                        {
+                            "text": "elbows",
+                            "template": "elbows"
+                        },
+                        {
+                            "text": "knees",
+                            "template": "knees"
+                        },
+                        {
+                            "text": "shoulders",
+                            "template": "shoulders"
+                        },
+                        {
+                            "text": "buttocks",
+                            "template": "buttocks"
+                        }
+                    ]
+                },
+                {
+                    "text": "Xanthomas, BL",
+                    "template": "Xanthomas, BL: {children}",
+                    "children": [
+                        {
+                            "text": "eyelids",
+                            "template": "eyelids"
+                        },
+                        {
+                            "text": "periorbital",
+                            "template": "periorbital area"
+                        },
+                        {
+                            "text": "hands",
+                            "template": "hands"
+                        },
+                        {
+                            "text": "achilles tendons",
+                            "template": "achilles tendons"
+                        },
+                        {
+                            "text": "feet",
+                            "template": "feet"
+                        },
+                        {
+                            "text": "elbows",
+                            "template": "elbows"
+                        },
+                        {
+                            "text": "knees",
+                            "template": "knees"
+                        },
+                        {
+                            "text": "shoulders",
+                            "template": "shoulders"
+                        },
+                        {
+                            "text": "buttocks",
+                            "template": "buttocks"
+                        }
+                    ]
+                },
+                {
+                    "text": "LE venous stasis changes",
+                    "template": "LE venous stasis changes",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "varicose veins",
+                    "template": "varicose veins",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "LE varicose veins, R",
+                    "template": "LE varicose veins, R: {children}",
+                    "children": [
+                        {
+                            "text": "present",
+                            "template": "present",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "LE varicose veins, L",
+                    "template": "LE varicose veins, L: {children}",
+                    "children": [
+                        {
+                            "text": "present",
+                            "template": "present",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "LE varicose veins, BL",
+                    "template": "LE varicose veins, BL: {children}",
+                    "children": [
+                        {
+                            "text": "present",
+                            "template": "present",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other detail",
+                    "template": "Other detail: {text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Cardiovascular, pulses",
+            "template": "CV: {children}",
+            "children": [
+                {
+                    "text": "pulse rate and rhythm regular",
+                    "template": "pulse rate and rhythm regular"
+                },
+                {
+                    "text": "pulse rate regular",
+                    "template": "pulse rate regular"
+                },
+                {
+                    "text": "pulse rhythm regular",
+                    "template": "pulse rhythm regular"
+                },
+                {
+                    "text": "Temporal artery, R",
+                    "template": "Temporal artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Temporal artery, L",
+                    "template": "Temporal artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Temporal arteries, BL",
+                    "template": "Temporal arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Carotid artery, R",
+                    "template": "Carotid artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "delayed upstroke",
+                            "template": "delayed upstroke"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Carotid artery, L",
+                    "template": "Carotid artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "delayed upstroke",
+                            "template": "delayed upstroke"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Carotid arteries, BL",
+                    "template": "Carotid arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "delayed upstroke",
+                            "template": "delayed upstroke"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Brachial artery, R",
+                    "template": "Brachial artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Brachial artery, L",
+                    "template": "Brachial artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Brachial arteries, BL",
+                    "template": "Brachial arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Radial artery, R",
+                    "template": "Radial artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "waterhammer",
+                            "template": "waterhammer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bisferiens",
+                            "template": "bisferiens",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Radial artery, L",
+                    "template": "Radial artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "waterhammer",
+                            "template": "waterhammer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bisferiens",
+                            "template": "bisferiens",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Radial arteries, BL",
+                    "template": "Radial arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "waterhammer",
+                            "template": "waterhammer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bisferiens",
+                            "template": "bisferiens",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Femoral artery, R",
+                    "template": "Femoral artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Femoral artery, L",
+                    "template": "Femoral artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Femoral arteries, BL",
+                    "template": "Femoral arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Popliteal artery, R",
+                    "template": "Popliteal artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Popliteal artery, L",
+                    "template": "Popliteal artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Popliteal arteries, BL",
+                    "template": "Popliteal arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Dorsalis pedis artery, R",
+                    "template": "Dorsalis pedis artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Dorsalis pedis artery, L",
+                    "template": "Dorsalis pedis artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Dorsalis pedis arteries, BL",
+                    "template": "Dorsalis pedis arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Posterior tibial, R",
+                    "template": "Posterior tibial, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Posterior tibial, L",
+                    "template": "Posterior tibial, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Posterior tibial arteries, BL",
+                    "template": "Posterior tibial arteries, BL {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Renal artery, R",
+                    "template": "Renal artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "bruit present",
+                            "template": "bruit present"
+                        },
+                        {
+                            "text": "palpable pulse",
+                            "template": "palpable pulse",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Renal artery, L",
+                    "template": "Renal artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "bruit present",
+                            "template": "bruit present"
+                        },
+                        {
+                            "text": "palpable pulse",
+                            "template": "palpable pulse",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Renal arteries, BL",
+                    "template": "Renal arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "bruit present",
+                            "template": "bruit present"
+                        },
+                        {
+                            "text": "palpable pulse",
+                            "template": "palpable pulse",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Aorta",
+                    "template": "Aorta: {children}",
+                    "children": [
+                        {
+                            "text": "enlargement",
+                            "template": "enlargement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other detail",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Gastrointestinal",
+            "template": "GI: {children}",
+            "children": [
+                {
+                    "text": "bowel sounds intact throughout",
+                    "template": "bowel sounds intact throughout"
+                },
+                {
+                    "text": "soft, nontender to palpation",
+                    "template": "soft, nontender to palpation"
+                },
+                {
+                    "text": "no rebound\/guarding\/rigidity",
+                    "template": "no rebound\/guarding\/rigidity"
+                },
+                {
+                    "text": "borborygmi",
+                    "template": "borborygmi",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "rebound",
+                    "template": "rebound",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "voluntary guarding",
+                    "template": "voluntary guarding",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "involuntary guarding",
+                    "template": "involuntary guarding",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "rigidity",
+                    "template": "rigidity",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "hepatomegaly",
+                    "template": "hepatomegaly",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "splenomegaly",
+                    "template": "splenomegaly",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "masses",
+                    "template": "masses",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "hepatojugular reflex",
+                    "template": "hepatojugular reflex",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Liver",
+                    "template": "Liver: {children}",
+                    "children": [
+                        {
+                            "text": "normal",
+                            "template": "normal"
+                        },
+                        {
+                            "text": "caput medusae",
+                            "template": "caput medusae",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spider angiomata",
+                            "template": "spider angiomata",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "palpable",
+                            "template": "palpable",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "edge palpable below costal margin",
+                            "template": "edge palpable below costal margin",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hepatomegaly",
+                            "template": "hepatomegaly",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bulging flanks",
+                            "template": "bulging flanks",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flank dullness",
+                            "template": "flank dullness",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "shifting dullness",
+                            "template": "shifting dullness",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fluid wave",
+                            "template": "fluid wave",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ascites",
+                            "template": "ascites",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Spleen",
+                    "template": "Spleen: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "palpable",
+                            "template": "palpable",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "splenomegaly",
+                            "template": "splenomegaly",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Abdominal exam: inspection",
+                    "template": "Abdominal exam inspection: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities on inspection",
+                            "template": "no abnormalities on inspection"
+                        },
+                        {
+                            "text": "distended",
+                            "template": "distended",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flat",
+                            "template": "flat",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "obese",
+                            "template": "obese",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scaphoid",
+                            "template": "scaphoid",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scarring",
+                            "template": "scarring",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "rash",
+                            "template": "rash",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "umbilical hernia",
+                            "template": "umbilical hernia",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ventral hernia",
+                            "template": "ventral hernia",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spider angiomata",
+                            "template": "spider angiomata",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "caput medusae",
+                            "template": "caput medusae",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Abdominal exam: bowel sounds",
+                    "template": "Bowel sounds: {children}",
+                    "children": [
+                        {
+                            "text": "present on auscultation",
+                            "template": "present on auscultation"
+                        },
+                        {
+                            "text": "normoactive",
+                            "template": "normoactive"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "absent",
+                            "template": "absent",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "high pitched",
+                            "template": "high pitched",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Abdominal exam: tenderness",
+                    "template": "Abdominal pain: {children}",
+                    "children": [
+                        {
+                            "text": "no tenderness noted on exam",
+                            "template": "no tenderness noted on exam"
+                        },
+                        {
+                            "text": "tenderness at rest",
+                            "template": "tenderness present at rest",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tenderness with palpation",
+                            "template": "tenderness present with palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tenderness with movement",
+                            "template": "tenderness present with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mild",
+                            "template": "mild pain present"
+                        },
+                        {
+                            "text": "moderate",
+                            "template": "moderate pain present"
+                        },
+                        {
+                            "text": "severe",
+                            "template": "severe pain present"
+                        },
+                        {
+                            "text": "present throughout",
+                            "template": "pain present throughout"
+                        },
+                        {
+                            "text": "right sided tenderness",
+                            "template": "right sided tenderness present"
+                        },
+                        {
+                            "text": "left sided tenderness",
+                            "template": "left sided tenderness present"
+                        },
+                        {
+                            "text": "midepigastric tenderness",
+                            "template": "midepigastric tenderness present"
+                        },
+                        {
+                            "text": "RUQ tenderness",
+                            "template": "RUQ tenderness present"
+                        },
+                        {
+                            "text": "LUQ tenderness",
+                            "template": "LUQ tenderness present"
+                        },
+                        {
+                            "text": "hypogastric tenderness",
+                            "template": "hypogastric tenderness present"
+                        },
+                        {
+                            "text": "RLQ tenderness",
+                            "template": "RLQ tenderness present"
+                        },
+                        {
+                            "text": "LLQ tenderness",
+                            "template": "LLQ tenderness present"
+                        },
+                        {
+                            "text": "periumbilical tenderness",
+                            "template": "periumbilical tenderness present"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other detail",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "GU\/Rectal: Female",
+            "template": "GU\/RECTAL: {children}",
+            "children": [
+                {
+                    "text": "external genitalia NL appearance",
+                    "template": "external genitalia NL appearance"
+                },
+                {
+                    "text": "s\/p mastectomy",
+                    "template": "s\/p mastectomy"
+                },
+                {
+                    "text": "Hair distribution",
+                    "template": "Hair distribution",
+                    "children": [
+                        {
+                            "text": "normal",
+                            "template": "normal"
+                        },
+                        {
+                            "text": "hair loss noted",
+                            "template": "hair loss noted",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Urethral meatus",
+                    "template": "Urethral meatus: {children}",
+                    "children": [
+                        {
+                            "text": "NL size",
+                            "template": "NL size"
+                        },
+                        {
+                            "text": "lesions",
+                            "template": "lesions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "prolapse",
+                            "template": "prolapse",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythematous",
+                            "template": "erythematous",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discharge",
+                            "template": "discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender",
+                            "template": "tender",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Bladder",
+                    "template": "Bladder: {children}",
+                    "children": [
+                        {
+                            "text": "normal",
+                            "template": "normal"
+                        },
+                        {
+                            "text": "tender",
+                            "template": "tender",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "masses",
+                            "template": "masses",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "distended",
+                            "template": "distended",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cystocele",
+                            "template": "cystocele",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Vagina",
+                    "template": "Vagina: {children}",
+                    "children": [
+                        {
+                            "text": "NL appearance",
+                            "template": "NL appearance"
+                        },
+                        {
+                            "text": "NL pelvic support",
+                            "template": "NL pelvic support"
+                        },
+                        {
+                            "text": "atrophy",
+                            "template": "atrophy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discharge",
+                            "template": "discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lesions",
+                            "template": "lesions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "prolapse",
+                            "template": "prolapse",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bleeding",
+                            "template": "bleeding",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Cervix",
+                    "template": "Cervix: {children}",
+                    "children": [
+                        {
+                            "text": "NL appearance",
+                            "template": "NL appearance"
+                        },
+                        {
+                            "text": "midline",
+                            "template": "midline"
+                        },
+                        {
+                            "text": "lesions",
+                            "template": "lesions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discharge",
+                            "template": "discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bleeding",
+                            "template": "bleeding",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "specimens obtained for smear",
+                            "template": "specimens obtained for smear",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "specimens obtained for culture",
+                            "template": "specimens obtained for culture",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "s\/p surgical removal",
+                            "template": "s\/p surgical removal"
+                        }
+                    ]
+                },
+                {
+                    "text": "Uterus",
+                    "template": "Uterus: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "NL position",
+                            "template": "NL position"
+                        },
+                        {
+                            "text": "NL mobility",
+                            "template": "NL mobility"
+                        },
+                        {
+                            "text": "NL contour",
+                            "template": "NL contour"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "prolapse",
+                            "template": "prolapse",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender",
+                            "template": "tender",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "s\/p hysterectomy",
+                            "template": "s\/p hysterectomy"
+                        }
+                    ]
+                },
+                {
+                    "text": "Adnexa, R",
+                    "template": "Adnexa, R: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "tender",
+                            "template": "tender",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "masses",
+                            "template": "masses",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nodules",
+                            "template": "nodules",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "s\/p salpingectomy",
+                            "template": "s\/p salpingectomy"
+                        }
+                    ]
+                },
+                {
+                    "text": "Adnexa, L",
+                    "template": "Adnexa, L: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "tender",
+                            "template": "tender",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "masses",
+                            "template": "masses",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nodules",
+                            "template": "nodules",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "s\/p salpingectomy",
+                            "template": "s\/p salpingectomy"
+                        }
+                    ]
+                },
+                {
+                    "text": "Adnexae, BL",
+                    "template": "Adnexae, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "tender",
+                            "template": "tender",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "masses",
+                            "template": "masses",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nodules",
+                            "template": "nodules",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "s\/p salpingectomy",
+                            "template": "s\/p salpingectomy"
+                        }
+                    ]
+                },
+                {
+                    "text": "Anorectal area",
+                    "template": "Anus\/rectum: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "NL tone",
+                            "template": "NL tone"
+                        },
+                        {
+                            "text": "perianal lesions",
+                            "template": "perianal lesions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "external hemorrhoids",
+                            "template": "external hemorrhoids",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "internal hemorrhoids",
+                            "template": "internal hemorrhoids",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "NL anoscopy",
+                            "template": "NL anoscopy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "rectocele",
+                            "template": "rectocele",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "masses",
+                            "template": "masses",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "stool positive for occult blood",
+                            "template": "stool positive for occult blood"
+                        },
+                        {
+                            "text": "stool negative for occult blood",
+                            "template": "stool negative for occult blood"
+                        },
+                        {
+                            "text": "gross blood noted on DRE",
+                            "template": "gross blood noted on DRE"
+                        }
+                    ]
+                },
+                {
+                    "text": "Rectal exam deferred",
+                    "template": "Rectal exam deferred: {children}",
+                    "children": [
+                        {
+                            "text": "not indicated",
+                            "template": "not indicated"
+                        },
+                        {
+                            "text": "refused by patient",
+                            "template": "refused by patient"
+                        },
+                        {
+                            "text": "unstable",
+                            "template": "deferred due to unstable clinical status"
+                        },
+                        {
+                            "text": "contraindicated",
+                            "template": "deferred due to clinical contraindication"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other detail",
+                    "template": "Other detail: {text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "GU\/Rectal: Male",
+            "template": "GU\/RECTAL: {children}",
+            "children": [
+                {
+                    "text": "external genital NL appearance",
+                    "template": "external genital NL appearance"
+                },
+                {
+                    "text": "s\/p prostatectomy",
+                    "template": "s\/p prostatectomy"
+                },
+                {
+                    "text": "cremasteric reflex elicited",
+                    "template": "cremasteric reflex elicited",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Hair distribution",
+                    "template": "Hair distribution",
+                    "children": [
+                        {
+                            "text": "normal",
+                            "template": "normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hair loss noted",
+                            "template": "hair loss noted",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Bladder",
+                    "template": "Bladder: {children}",
+                    "children": [
+                        {
+                            "text": "normal",
+                            "template": "normal"
+                        },
+                        {
+                            "text": "tender",
+                            "template": "tender",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "masses",
+                            "template": "masses",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "distended",
+                            "template": "distended",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cystocele",
+                            "template": "cystocele",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Penis",
+                    "template": "Penis: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "urethral meatus patent",
+                            "template": "urethral meatus patent",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "urethral meatal location NL",
+                            "template": "urethral meatal location NL",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hypospadias",
+                            "template": "hypospadias",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clear discharge",
+                            "template": "clear discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bloody discharge",
+                            "template": "bloody discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "purulent discharge",
+                            "template": "purulent discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "smegma",
+                            "template": "smegma",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "circumcised",
+                            "template": "circumcised",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "urinary incontinence with cough",
+                            "template": "urinary incontinence with cough",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lesion",
+                            "template": "lesion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lesions",
+                            "template": "lesions",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Scrotum, R",
+                    "template": "Scrotum, R: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "symmetric",
+                            "template": "symmetric",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "NL size",
+                            "template": "NL size",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "atrophied",
+                            "template": "atrophied",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "NL position",
+                            "template": "NL position",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hydrocele",
+                            "template": "hydrocele",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mass",
+                            "template": "mass",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "rash",
+                            "template": "rash",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ulceration",
+                            "template": "ulceration",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lesions",
+                            "template": "lesions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nodular",
+                            "template": "nodular",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Scrotum, L",
+                    "template": "Scrotum, L: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "symmetric",
+                            "template": "symmetric",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "NL size",
+                            "template": "NL size",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "atrophied",
+                            "template": "atrophied",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "NL position",
+                            "template": "NL position",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hydrocele",
+                            "template": "hydrocele",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mass",
+                            "template": "mass",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "rash",
+                            "template": "rash",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ulceration",
+                            "template": "ulceration",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lesions",
+                            "template": "lesions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nodular",
+                            "template": "nodular",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Scrotal findings, BL",
+                    "template": "Scrotal findings, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "symmetric",
+                            "template": "symmetric",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "NL size",
+                            "template": "NL size",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "atrophied",
+                            "template": "atrophied",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "NL position",
+                            "template": "NL position",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hydrocele",
+                            "template": "hydrocele",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mass",
+                            "template": "mass",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "rash",
+                            "template": "rash",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ulceration",
+                            "template": "ulceration",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lesions",
+                            "template": "lesions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nodular",
+                            "template": "nodular",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Testis, R",
+                    "template": "Testis, R: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "mass",
+                            "template": "mass",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "transillumination noted",
+                            "template": "transillumination noted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender",
+                            "template": "tender",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "opaque",
+                            "template": "opaque",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "undescended",
+                            "template": "undescended",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "s\/p orchiectomy",
+                            "template": "s\/p orchiectomy"
+                        }
+                    ]
+                },
+                {
+                    "text": "Testis, L",
+                    "template": "Testis, L: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "mass",
+                            "template": "mass",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "transillumination noted",
+                            "template": "transillumination noted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender",
+                            "template": "tender",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "opaque",
+                            "template": "opaque",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "undescended",
+                            "template": "undescended",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "s\/p orchiectomy",
+                            "template": "s\/p orchiectomy"
+                        }
+                    ]
+                },
+                {
+                    "text": "Testes, BL",
+                    "template": "Testes, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "mass",
+                            "template": "mass",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "transillumination noted",
+                            "template": "transillumination noted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender",
+                            "template": "tender",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "opaque",
+                            "template": "opaque",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "undescended",
+                            "template": "undescended",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "s\/p orchiectomy",
+                            "template": "s\/p orchiectomy"
+                        }
+                    ]
+                },
+                {
+                    "text": "Spermatic cord",
+                    "template": "Spermatic cord: {children}",
+                    "children": [
+                        {
+                            "text": "right spermatic cord",
+                            "template": "right spermatic cord"
+                        },
+                        {
+                            "text": "left spermatic cord",
+                            "template": "left spermatic cord"
+                        },
+                        {
+                            "text": "bilateral spermatic cords",
+                            "template": "bilateral spermatic cords"
+                        },
+                        {
+                            "text": "tender",
+                            "template": "tender",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Inguinal canal, R",
+                    "template": "Inguinal canal, R: {children}",
+                    "children": [
+                        {
+                            "text": "tenderness to palpation",
+                            "template": "tenderness to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hernia present at rest",
+                            "template": "hernia present at rest",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hernia present with cough",
+                            "template": "hernia present with cough",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Inguinal canal, L",
+                    "template": "Inguinal canal, L: {children}",
+                    "children": [
+                        {
+                            "text": "tenderness to palpation",
+                            "template": "tenderness to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hernia present at rest",
+                            "template": "hernia present at rest",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hernia present with cough",
+                            "template": "hernia present with cough",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Inguinal canals, BL",
+                    "template": "Inguinal canals, BL: {children}",
+                    "children": [
+                        {
+                            "text": "tenderness to palpation",
+                            "template": "tenderness to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hernia present at rest",
+                            "template": "hernia present at rest",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hernia present with cough",
+                            "template": "hernia present with cough",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Prostate",
+                    "template": "Prostate exam {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "masses",
+                            "template": "masses",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nodule noted",
+                            "template": "nodule noted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nodules noted",
+                            "template": "nodules noted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender",
+                            "template": "tender",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "rubbery",
+                            "template": "rubbery",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "boggy",
+                            "template": "boggy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Anorectal area",
+                    "template": "Anus\/rectum: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "NL tone",
+                            "template": "NL tone"
+                        },
+                        {
+                            "text": "perianal lesions",
+                            "template": "perianal lesions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "external hemorrhoids",
+                            "template": "external hemorrhoids",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "internal hemorrhoids",
+                            "template": "internal hemorrhoids",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "NL anoscopy",
+                            "template": "NL anoscopy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "rectocele",
+                            "template": "rectocele",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "masses",
+                            "template": "masses",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "stool positive for occult blood",
+                            "template": "stool positive for occult blood"
+                        },
+                        {
+                            "text": "stool negative for occult blood",
+                            "template": "stool negative for occult blood"
+                        },
+                        {
+                            "text": "gross blood noted on DRE",
+                            "template": "gross blood noted on DRE"
+                        }
+                    ]
+                },
+                {
+                    "text": "Rectal exam deferred",
+                    "template": "Rectal exam deferred: {children}",
+                    "children": [
+                        {
+                            "text": "not indicated",
+                            "template": "not indicated"
+                        },
+                        {
+                            "text": "refused by patient",
+                            "template": "refused by patient"
+                        },
+                        {
+                            "text": "unstable",
+                            "template": "deferred due to unstable clinical status"
+                        },
+                        {
+                            "text": "contraindicated",
+                            "template": "deferred due to clinical contraindication"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other detail",
+                    "template": "Other detail: {text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Dermatologic\/Lymphatic",
+            "template": "DERM: {children}",
+            "children": [
+                {
+                    "text": "diaphoresis",
+                    "template": "diaphoresis",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "periorbital xanthelasma",
+                    "template": "periorbital xanthelasma",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "xanthomas",
+                    "template": "xanthomas",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "cyanosis",
+                    "template": "cyanosis",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Cyanosis location",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "perioral cyanosis",
+                            "template": "perioral cyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acral cyanosis",
+                            "template": "acral cyanosis",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "decreased hair LE",
+                    "template": "decreased hair LE",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "stasis dermatitis R LE",
+                    "template": "stasis dermatitis R LE",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "stasis dermatitis L LE",
+                    "template": "stasis dermatitis L LE",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "dry skin",
+                    "template": "dry skin",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "clubbing",
+                    "template": "clubbing",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "petechiae",
+                    "template": "petechiae",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "lymphadenopathy",
+                    "template": "lymphadenopathy",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Other detail",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Extremities",
+            "template": "EXT: {children}",
+            "children": [
+                {
+                    "text": "no C\/C\/E",
+                    "template": "no C\/C\/E"
+                },
+                {
+                    "text": "cyanosis",
+                    "template": "cyanosis",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "clubbing",
+                    "template": "clubbing",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "edema",
+                    "template": "edema",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "anasarca",
+                    "template": "anasarca",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Upper extremity C\/C\/E",
+                    "template": "Upper extremity C\/C\/E, R: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity C\/C\/E, L",
+                    "template": "Upper extremity C\/C\/E, L: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremities C\/C\/E, BL",
+                    "template": "Upper extremities C\/C\/E, BL: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity C\/C\/E, R",
+                    "template": "Lower extremity C\/C\/E, R: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity C\/C\/E, L",
+                    "template": "Lower extremity C\/C\/E, L: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremities C\/C\/E, BL",
+                    "template": "Lower extremities C\/C\/E, BL: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "full range of motion throughout",
+                    "template": "full range of motion throughout"
+                },
+                {
+                    "text": "upper ext strength intact BL",
+                    "template": "upper extremity strength intact BL",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Upper extremity, ROM, R",
+                    "template": "Upper extremity, range of motion, R: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity, ROM, L",
+                    "template": "Upper extremity, range of motion, L: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremities, ROM, BL",
+                    "template": "Upper extremities, range of motion, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "lower ext strength intact BL",
+                    "template": "lower extremity strength intact BL",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Lower extremity, ROM, R",
+                    "template": "Lower extremity, range of motion, R: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity, ROM, L",
+                    "template": "Lower extremity, range of motion, L: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity, ROM, BL",
+                    "template": "Lower extremity, range of motion, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "upper extremity strength intact BL",
+                    "template": "Upper extremity strength intact BL",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Upper extremity strength, R",
+                    "template": "Upper extremity strength, R: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity strength, L",
+                    "template": "Upper extremity strength, L: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity strength, BL",
+                    "template": "Upper extremity strength, BL: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "lower extremity strength intact BL",
+                    "template": "Lower extremity strength intact BL",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Lower extremity strength, R",
+                    "template": "Lower extremity strength, R: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity strength, L",
+                    "template": "Lower extremity strength, L: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity strength, BL",
+                    "template": "Lower extremity strength, BL: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other detail",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Musculoskeletal",
+            "template": "MUSC\/SKEL: {children}",
+            "children": [
+                {
+                    "text": "muscle strength NL throughout",
+                    "template": "muscle strength NL throughout"
+                },
+                {
+                    "text": "NL upper extremity exam",
+                    "template": "Upper extremity exam normal bilaterally",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "NL lower extremity exam",
+                    "template": "Lower extremity exam normal bilaterally",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Upper extremity, R",
+                    "template": "Upper extremity exam, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "strength and tone normal"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity, L",
+                    "template": "Upper extremity exam, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "strength and tone normal"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity, BL",
+                    "template": "Upper extremity exam, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "strength and tone normal"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity, R",
+                    "template": "Lower extremity exam, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "strength and tone normal"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity, L",
+                    "template": "Lower extremity exam, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "strength and tone normal"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity, BL",
+                    "template": "Lower extremity exam, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "strength and tone normal"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Back, R",
+                    "template": "Back exam, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sacral edema",
+                            "template": "sacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "presacral edema",
+                            "template": "presacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "costovertebral angle tenderness",
+                            "template": "costovertebral angle tenderness",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Back, L",
+                    "template": "Back exam, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sacral edema",
+                            "template": "sacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "presacral edema",
+                            "template": "presacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "costovertebral angle tenderness",
+                            "template": "costovertebral angle tenderness",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Back, BL",
+                    "template": "Back exam, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sacral edema",
+                            "template": "sacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "presacral edema",
+                            "template": "presacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "costovertebral angle tenderness",
+                            "template": "costovertebral angle tenderness",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other detail",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Neurologic: General",
+            "template": "NEURO: {children}",
+            "children": [
+                {
+                    "text": "CN II-XII intact and nonfocal",
+                    "template": "CN II-XII intact and nonfocal"
+                },
+                {
+                    "text": "asterixis present",
+                    "template": "asterixis present"
+                },
+                {
+                    "text": "no asterixis noted",
+                    "template": "no asterixis noted"
+                },
+                {
+                    "text": "Other detail",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Neuro: Deep tendon reflexes",
+            "template": "NEURO: {children}",
+            "children": [
+                {
+                    "text": "DTRs intact and equal BL throughout",
+                    "template": "DTRs intact and equal BL throughout"
+                },
+                {
+                    "text": "Brachioradialis reflex, R",
+                    "template": "R brachioradialis reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Brachioradialis reflex, L",
+                    "template": "L brachioradialis reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Brachioradialis reflex, BL",
+                    "template": "L brachioradialis reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Biceps reflex, R",
+                    "template": "R biceps reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Biceps reflex, L",
+                    "template": "L biceps reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Biceps reflex, BL",
+                    "template": "BL biceps reflexes {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Triceps reflex, R",
+                    "template": "R triceps reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Triceps reflex, L",
+                    "template": "L triceps reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Triceps reflex, BL",
+                    "template": "BL triceps reflexes {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Patellar reflex, R",
+                    "template": "R patellar reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Patellar reflex, L",
+                    "template": "L patellar reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Patellar reflex, BL",
+                    "template": "BL patellar reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Achilles reflex, R",
+                    "template": "R achilles reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Achilles reflex, L",
+                    "template": "L achilles reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Achilles reflex, BL",
+                    "template": "BL achilles reflexes {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Ankle reflex, R",
+                    "template": "R ankle reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Ankle reflex, L",
+                    "template": "L ankle reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Ankle reflex, BL",
+                    "template": "BL ankle reflexes {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other detail",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Neuro: Gait, Station",
+            "template": "NEURO: {children}",
+            "children": [
+                {
+                    "text": "normal gait and station",
+                    "template": "normal gait and station"
+                },
+                {
+                    "text": "normal gait",
+                    "template": "normal gait"
+                },
+                {
+                    "text": "normal station",
+                    "template": "normal station"
+                },
+                {
+                    "text": "Romberg test positive",
+                    "template": "Romberg test positive"
+                },
+                {
+                    "text": "Romberg test negative",
+                    "template": "Romberg test negative"
+                },
+                {
+                    "text": "Gait",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "broad based gait",
+                            "template": "broad based gait"
+                        },
+                        {
+                            "text": "shuffling gait",
+                            "template": "shuffling gait"
+                        },
+                        {
+                            "text": "shortened step length",
+                            "template": "shortened step length"
+                        },
+                        {
+                            "text": "limp, right",
+                            "template": "limp present (affecting right side)"
+                        },
+                        {
+                            "text": "limp, left",
+                            "template": "limp present (affecting left side)"
+                        },
+                        {
+                            "text": "wide based gait",
+                            "template": "wide based gait"
+                        },
+                        {
+                            "text": "gait accuracy intact",
+                            "template": "gait accuracy intact"
+                        },
+                        {
+                            "text": "staggering gait noted",
+                            "template": "staggering gait noted"
+                        },
+                        {
+                            "text": "tandem walking intact",
+                            "template": "tandem walking intact"
+                        },
+                        {
+                            "text": "tandem walking impaired",
+                            "template": "tandem walking impaired"
+                        },
+                        {
+                            "text": "toe walking noted",
+                            "template": "toe walking noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "Station",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "positive Romberg (eyes open)",
+                            "template": "positive Romberg (eyes open)"
+                        },
+                        {
+                            "text": "negative Romberg (eyes open)",
+                            "template": "negative Romberg (eyes open)"
+                        },
+                        {
+                            "text": "positive Romberg (eyes closed)",
+                            "template": "positive Romberg (eyes closed)"
+                        },
+                        {
+                            "text": "pronator drift, eyes open, right",
+                            "template": "pronator drift noted with eyes open (affecting right upper extremity)"
+                        },
+                        {
+                            "text": "pronator drift, eyes open, left",
+                            "template": "pronator drift noted with eyes open (affecting left upper extremity)"
+                        },
+                        {
+                            "text": "pronator drift, eyes closed, right",
+                            "template": "pronator drift noted with eyes closed (affecting right upper extremity)"
+                        },
+                        {
+                            "text": "pronator drift, eyes closed, left",
+                            "template": "pronator drift noted with eyes closed (affecting left upper extremity)"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other detail",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Neuro: Pathological reflexes",
+            "template": "NEURO: {children}",
+            "children": [
+                {
+                    "text": "no pathological reflexes elicited",
+                    "template": "no pathological reflexes elicited"
+                },
+                {
+                    "text": "Babinski reflex",
+                    "template": "Babinski reflex {children}",
+                    "children": [
+                        {
+                            "text": "elicted on the right",
+                            "template": "elicted on the right"
+                        },
+                        {
+                            "text": "not elicited on the right",
+                            "template": "not elicited on the right"
+                        },
+                        {
+                            "text": "elicited on the left",
+                            "template": "elicited on the left"
+                        },
+                        {
+                            "text": "not elicited on the left",
+                            "template": "not elicited on the left"
+                        },
+                        {
+                            "text": "elicited bilaterally",
+                            "template": "elicited bilaterally"
+                        },
+                        {
+                            "text": "absent bilaterally",
+                            "template": "absent bilaterally"
+                        }
+                    ]
+                },
+                {
+                    "text": "Glabellar reflex",
+                    "template": "glabellar reflex {children}",
+                    "children": [
+                        {
+                            "text": "elicted on the right",
+                            "template": "elicted on the right"
+                        },
+                        {
+                            "text": "not elicited on the right",
+                            "template": "not elicited on the right"
+                        },
+                        {
+                            "text": "elicited on the left",
+                            "template": "elicited on the left"
+                        },
+                        {
+                            "text": "not elicited on the left",
+                            "template": "not elicited on the left"
+                        },
+                        {
+                            "text": "elicited bilaterally",
+                            "template": "elicited bilaterally"
+                        },
+                        {
+                            "text": "absent bilaterally",
+                            "template": "absent bilaterally"
+                        }
+                    ]
+                },
+                {
+                    "text": "Palmomental reflex",
+                    "template": "palmomental reflex {children}",
+                    "children": [
+                        {
+                            "text": "elicted on the right",
+                            "template": "elicted on the right"
+                        },
+                        {
+                            "text": "not elicited on the right",
+                            "template": "not elicited on the right"
+                        },
+                        {
+                            "text": "elicited on the left",
+                            "template": "elicited on the left"
+                        },
+                        {
+                            "text": "not elicited on the left",
+                            "template": "not elicited on the left"
+                        },
+                        {
+                            "text": "elicited bilaterally",
+                            "template": "elicited bilaterally"
+                        },
+                        {
+                            "text": "absent bilaterally",
+                            "template": "absent bilaterally"
+                        }
+                    ]
+                },
+                {
+                    "text": "Snout reflex",
+                    "template": "snout reflex {children}",
+                    "children": [
+                        {
+                            "text": "elicted on the right",
+                            "template": "elicted on the right"
+                        },
+                        {
+                            "text": "not elicited on the right",
+                            "template": "not elicited on the right"
+                        },
+                        {
+                            "text": "elicited on the left",
+                            "template": "elicited on the left"
+                        },
+                        {
+                            "text": "not elicited on the left",
+                            "template": "not elicited on the left"
+                        },
+                        {
+                            "text": "elicited bilaterally",
+                            "template": "elicited bilaterally"
+                        },
+                        {
+                            "text": "absent bilaterally",
+                            "template": "absent bilaterally"
+                        }
+                    ]
+                },
+                {
+                    "text": "Root reflex",
+                    "template": "root reflex {children}",
+                    "children": [
+                        {
+                            "text": "elicted on the right",
+                            "template": "elicted on the right"
+                        },
+                        {
+                            "text": "not elicited on the right",
+                            "template": "not elicited on the right"
+                        },
+                        {
+                            "text": "elicited on the left",
+                            "template": "elicited on the left"
+                        },
+                        {
+                            "text": "not elicited on the left",
+                            "template": "not elicited on the left"
+                        },
+                        {
+                            "text": "elicited bilaterally",
+                            "template": "elicited bilaterally"
+                        },
+                        {
+                            "text": "absent bilaterally",
+                            "template": "absent bilaterally"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other detail",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Neuro: Sensory",
+            "template": "NEURO: {children}",
+            "children": [
+                {
+                    "text": "sensation grossly intact throughout",
+                    "template": "sensation grossly intact throughout"
+                },
+                {
+                    "text": "Sensation to light touch",
+                    "template": "sensation to light touch {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity, right intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, intact BL",
+                            "template": "intact in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "upper extremity, right diminished",
+                            "template": "diminished in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left diminished",
+                            "template": "diminished in left upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, diminished BL",
+                            "template": "diminished in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "lower extremity, right intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, intact BL",
+                            "template": "intact in the bilateral lower extremities"
+                        },
+                        {
+                            "text": "lower extremity, right diminished",
+                            "template": "diminished in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left diminished",
+                            "template": "diminished in left lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, diminished BL",
+                            "template": "diminished in the bilateral lower extremities"
+                        }
+                    ]
+                },
+                {
+                    "text": "Sensation to dull touch",
+                    "template": "sensation to dull touch {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity, right intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, intact BL",
+                            "template": "intact in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "upper extremity, right diminished",
+                            "template": "diminished in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left diminished",
+                            "template": "diminished in left upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, diminished BL",
+                            "template": "diminished in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "lower extremity, right intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, intact BL",
+                            "template": "intact in the bilateral lower extremities"
+                        },
+                        {
+                            "text": "lower extremity, right diminished",
+                            "template": "diminished in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left diminished",
+                            "template": "diminished in left lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, diminished BL",
+                            "template": "diminished in the bilateral lower extremities"
+                        }
+                    ]
+                },
+                {
+                    "text": "Sensation to cold temperature",
+                    "template": "sensation to cold temperature {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity, right intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, intact BL",
+                            "template": "intact in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "upper extremity, right diminished",
+                            "template": "diminished in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left diminished",
+                            "template": "diminished in left upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, diminished BL",
+                            "template": "diminished in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "lower extremity, right intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, intact BL",
+                            "template": "intact in the bilateral lower extremities"
+                        },
+                        {
+                            "text": "lower extremity, right diminished",
+                            "template": "diminished in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left diminished",
+                            "template": "diminished in left lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, diminished BL",
+                            "template": "diminished in the bilateral lower extremities"
+                        }
+                    ]
+                },
+                {
+                    "text": "Sensation to warm temperature",
+                    "template": "sensation to warm temperature {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity, right intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, intact BL",
+                            "template": "intact in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "upper extremity, right diminished",
+                            "template": "diminished in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left diminished",
+                            "template": "diminished in left upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, diminished BL",
+                            "template": "diminished in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "lower extremity, right intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, intact BL",
+                            "template": "intact in the bilateral lower extremities"
+                        },
+                        {
+                            "text": "lower extremity, right diminished",
+                            "template": "diminished in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left diminished",
+                            "template": "diminished in left lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, diminished BL",
+                            "template": "diminished in the bilateral lower extremities"
+                        }
+                    ]
+                },
+                {
+                    "text": "Vibratory sensation",
+                    "template": "vibratory sensation {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity, right intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, intact BL",
+                            "template": "intact in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "upper extremity, right diminished",
+                            "template": "diminished in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left diminished",
+                            "template": "diminished in left upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, diminished BL",
+                            "template": "diminished in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "lower extremity, right intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, intact BL",
+                            "template": "intact in the bilateral lower extremities"
+                        },
+                        {
+                            "text": "lower extremity, right diminished",
+                            "template": "diminished in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left diminished",
+                            "template": "diminished in left lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, diminished BL",
+                            "template": "diminished in the bilateral lower extremities"
+                        }
+                    ]
+                },
+                {
+                    "text": "Stereognosis",
+                    "template": "stereognosis {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity, right intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, intact BL",
+                            "template": "intact in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "upper extremity, right diminished",
+                            "template": "diminished in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left diminished",
+                            "template": "diminished in left upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, diminished BL",
+                            "template": "diminished in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "lower extremity, right intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, intact BL",
+                            "template": "intact in the bilateral lower extremities"
+                        },
+                        {
+                            "text": "lower extremity, right diminished",
+                            "template": "diminished in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left diminished",
+                            "template": "diminished in left lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, diminished BL",
+                            "template": "diminished in the bilateral lower extremities"
+                        }
+                    ]
+                },
+                {
+                    "text": "Paresthesias",
+                    "template": "parethesias present {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity, right",
+                            "template": "in the R upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left",
+                            "template": "in the L upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, bilateral",
+                            "template": "bilaterally in the upper extremities"
+                        },
+                        {
+                            "text": "lower extremity, right",
+                            "template": "in the R lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left",
+                            "template": "in the L lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, bilateral",
+                            "template": "bilaterally in the lower extremities"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other detail",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Psychiatric",
+            "template": "PSYCH: {children}",
+            "children": [
+                {
+                    "text": "AO x 3",
+                    "template": "alert and oriented to time, place, and person"
+                },
+                {
+                    "text": "normal mood",
+                    "template": "normal mood"
+                },
+                {
+                    "text": "normal affect",
+                    "template": "normal affect"
+                },
+                {
+                    "text": "judgment intact",
+                    "template": "judgment intact"
+                },
+                {
+                    "text": "insight intact",
+                    "template": "insight intact"
+                },
+                {
+                    "text": "Mental status\/Concentration",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "responds appropriately",
+                            "template": "responds appropriately"
+                        },
+                        {
+                            "text": "responds inappropriately",
+                            "template": "responds inappropriately"
+                        },
+                        {
+                            "text": "short term memory intact",
+                            "template": "short term memory intact"
+                        },
+                        {
+                            "text": "short term memory impaired",
+                            "template": "short term memory impaired"
+                        },
+                        {
+                            "text": "long term memory intact",
+                            "template": "long term memory intact"
+                        },
+                        {
+                            "text": "long term memory impaired",
+                            "template": "long term memory impaired"
+                        },
+                        {
+                            "text": "memory grossly intact",
+                            "template": "memory grossly intact"
+                        },
+                        {
+                            "text": "memory deficits noted",
+                            "template": "memory deficits noted"
+                        },
+                        {
+                            "text": "thought content normal",
+                            "template": "thought content normal"
+                        },
+                        {
+                            "text": "abnormal thought content",
+                            "template": "abnormal thought content"
+                        },
+                        {
+                            "text": "appears coherent",
+                            "template": "appears coherent"
+                        },
+                        {
+                            "text": "appears incoherent",
+                            "template": "appears incoherent"
+                        },
+                        {
+                            "text": "abstraction ability intact",
+                            "template": "abstraction ability intact"
+                        },
+                        {
+                            "text": "abstraction ability impaired",
+                            "template": "abstraction ability impaired"
+                        },
+                        {
+                            "text": "unable to assess mental status",
+                            "template": "unable to assess mental status"
+                        },
+                        {
+                            "text": "unresponsive to questions",
+                            "template": "unresponsive to questions"
+                        },
+                        {
+                            "text": "able to concentrate",
+                            "template": "able to concentrate",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other detail",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        }
+    ]
+}

+ 7040 - 0
storage/templates/exam-default/exam-gu-rectal-detail/gu-rectal-exam.json

@@ -0,0 +1,7040 @@
+{
+    "section": "exam-gu-rectal-detail",
+    "templateSet": "GU\/RECTAL Exam",
+    "templates": [
+        {
+            "text": "1-Click normal exams",
+            "template": "{children}",
+            "children": [
+                {
+                    "text": "GEN: NAD",
+                    "template": "GEN: NAD"
+                },
+                {
+                    "text": "BREAST: no masses or lumps",
+                    "template": "BREAST: no masses or lumps"
+                },
+                {
+                    "text": "GI: abd soft, NT to palp, + BS",
+                    "template": "GI: abdomen soft, nontender to palpation, bowel sounds intact on auscultation"
+                },
+                {
+                    "text": "GI: no masses, no HSM, no r\/g\/r",
+                    "template": "RESP: no masses, no hepatosplenomegaly, no rebound, guarding or rigidity"
+                },
+                {
+                    "text": "LYMPHATIC: no inguinal LN",
+                    "template": "DERM: no inguinal lymphadenopathy"
+                },
+                {
+                    "text": "GU: NL pubic hair distribution",
+                    "template": "GU\/RECTAL: NL pubic hair distribution"
+                },
+                {
+                    "text": "GU: NL external genitalia appearance",
+                    "template": "GU\/RECTAL: NL external genitalia appearance"
+                },
+                {
+                    "text": "GU: no genital lesions or discharge",
+                    "template": "GU\/RECTAL: no genital lesions or discharge"
+                },
+                {
+                    "text": "RECTAL: normal tone, no masses",
+                    "template": "GU\/RECTAL: normal tone, no masses"
+                },
+                {
+                    "text": "RECTAL: no int or ext hemorrhoids",
+                    "template": "GU\/RECTAL: no internal or external hemorrhoids"
+                },
+                {
+                    "text": "RECTAL: no perianal lesions",
+                    "template": "GU\/RECTAL: no perianal lesions"
+                },
+                {
+                    "text": "RECTAL: negative for FOB",
+                    "template": "GU\/RECTAL: negative for fecal occult blood"
+                }
+            ]
+        },
+        {
+            "text": "General",
+            "template": "GEN: {children}",
+            "children": [
+                {
+                    "text": "NAD",
+                    "template": "NAD",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "cooperative with exam",
+                    "template": "cooperative with exam",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "well groomed",
+                    "template": "well groomed",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "well developed",
+                    "template": "well developed",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "well nourished",
+                    "template": "well nourished",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "overweight",
+                    "template": "overweight",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "obese",
+                    "template": "obese",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "morbidly obese",
+                    "template": "morbidly obese",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "emaciated",
+                    "template": "emaciated",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "appears to be stated age",
+                    "template": "appears to be stated age",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "appears older than stated age",
+                    "template": "appears older than stated age",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "appears younger than stated age",
+                    "template": "appears younger than stated age",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "Other findings: {text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Neck",
+            "template": "NECK: {children}",
+            "children": [
+                {
+                    "text": "soft, nontender",
+                    "template": "soft, nontender"
+                },
+                {
+                    "text": "no increased JVP visible",
+                    "template": "no increased JVP visible"
+                },
+                {
+                    "text": "hepatojugular reflex elicited",
+                    "template": "hepatojugular reflex elicited",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "no cervical LN",
+                    "template": "no significant cervical lymphadenopathy"
+                },
+                {
+                    "text": "neck not enlarged",
+                    "template": "neck not enlarged"
+                },
+                {
+                    "text": "obese neck",
+                    "template": "neck obesity",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "thyromegaly",
+                    "template": "thyromegaly",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Lymphadenopathy",
+                    "template": "{children} lymphadenopathy",
+                    "children": [
+                        {
+                            "text": "shotty cervical",
+                            "template": "shotty cervical"
+                        },
+                        {
+                            "text": "submental",
+                            "template": "submental"
+                        },
+                        {
+                            "text": "R submandibular",
+                            "template": "R submandibular"
+                        },
+                        {
+                            "text": "L submandibular",
+                            "template": "L submandibular"
+                        },
+                        {
+                            "text": "R ant. cervical",
+                            "template": "R anterior cervical"
+                        },
+                        {
+                            "text": "L ant. cervical",
+                            "template": "L anterior cervical"
+                        },
+                        {
+                            "text": "R preauricular",
+                            "template": "R preauricular"
+                        },
+                        {
+                            "text": "L preauricular",
+                            "template": "L preauricular"
+                        },
+                        {
+                            "text": "R post. auricular",
+                            "template": "R posterior auricular"
+                        },
+                        {
+                            "text": "L post. auricular",
+                            "template": "L posterior auricular"
+                        },
+                        {
+                            "text": "R supraclavicular",
+                            "template": "R supraclavicular"
+                        },
+                        {
+                            "text": "L supraclavicular",
+                            "template": "L supraclavicular"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "Other findings: {text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "HEENT",
+            "template": "HEENT: {children}",
+            "children": [
+                {
+                    "text": "head normocephalic, atraumatic",
+                    "template": "head normocephalic, atraumatic"
+                },
+                {
+                    "text": "EOMI",
+                    "template": "EOMI"
+                },
+                {
+                    "text": "PERRLA",
+                    "template": "PERRLA"
+                },
+                {
+                    "text": "scleral icterus",
+                    "template": "scleral icterus",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "pale conjunctivae",
+                    "template": "pale conjunctivae",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "hearing grossly intact",
+                    "template": "hearing grossly intact",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "normal dentition",
+                    "template": "normal dentition"
+                },
+                {
+                    "text": "normal lips",
+                    "template": "normal lips"
+                },
+                {
+                    "text": "normal gums",
+                    "template": "normal gums"
+                },
+                {
+                    "text": "pharynx unremarkable",
+                    "template": "pharynx unremarkable"
+                },
+                {
+                    "text": "mucous membranes moist",
+                    "template": "mucous membranes moist",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "frenular jaundice",
+                    "template": "frenular jaundice",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "Other findings: {text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Breast, Axillae",
+            "template": "BREAST: {children}",
+            "children": [
+                {
+                    "text": "normal breast exam",
+                    "template": "normal breast exam"
+                },
+                {
+                    "text": "breast mass present",
+                    "template": "breast mass present"
+                },
+                {
+                    "text": "surgical scarring noted",
+                    "template": "surgical scarring noted",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Breast, R",
+                    "template": "Breast, R: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "peau d'orange",
+                            "template": "peau d'orange",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "symmetric at rest",
+                            "template": "symmetric at rest",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "symmetric with pectoral tension",
+                            "template": "symmetric with pectoral tension",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "single mass",
+                            "template": "single mass"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "multiple masses",
+                            "template": "multiple masses"
+                        },
+                        {
+                            "text": "right upper quadrant abnormality",
+                            "template": "right upper quadrant abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "left upper quadrant abnormality",
+                            "template": "left upper quadrant abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "right lower quadrant abnormality",
+                            "template": "right lower quadrant abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "left lower quadrant abnormality",
+                            "template": "left lower quadrant abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tail of Spence abnormality",
+                            "template": "tail of Spence abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "s\/p mastectomy",
+                            "template": "s\/p mastectomy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "breast augmentation noted",
+                            "template": "breast augmentation noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "Breast, L",
+                    "template": "Breast, L: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "peau d'orange",
+                            "template": "peau d'orange",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "symmetric at rest",
+                            "template": "symmetric at rest",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "symmetric with pectoral tension",
+                            "template": "symmetric with pectoral tension",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "single mass",
+                            "template": "single mass"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "multiple masses",
+                            "template": "multiple masses"
+                        },
+                        {
+                            "text": "right upper quadrant abnormality",
+                            "template": "right upper quadrant abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "left upper quadrant abnormality",
+                            "template": "left upper quadrant abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "right lower quadrant abnormality",
+                            "template": "right lower quadrant abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "left lower quadrant abnormality",
+                            "template": "left lower quadrant abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tail of Spence abnormality",
+                            "template": "tail of Spence abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "s\/p mastectomy",
+                            "template": "s\/p mastectomy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "breast augmentation noted",
+                            "template": "breast augmentation noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "Breasts, BL",
+                    "template": "Breasts, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "peau d'orange",
+                            "template": "peau d'orange",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "symmetric at rest",
+                            "template": "symmetric at rest",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "symmetric with pectoral tension",
+                            "template": "symmetric with pectoral tension",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "single mass",
+                            "template": "single mass"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "multiple masses",
+                            "template": "multiple masses"
+                        },
+                        {
+                            "text": "right upper quadrant abnormality",
+                            "template": "right upper quadrant abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "left upper quadrant abnormality",
+                            "template": "left upper quadrant abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "right lower quadrant abnormality",
+                            "template": "right lower quadrant abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "left lower quadrant abnormality",
+                            "template": "left lower quadrant abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tail of Spence abnormality",
+                            "template": "tail of Spence abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "s\/p mastectomy",
+                            "template": "s\/p mastectomy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "breast augmentation noted",
+                            "template": "breast augmentation noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "Nipple, R",
+                    "template": "Nipple, R: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "discharge without pressure",
+                            "template": "discharge without pressure",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "expressed discharge",
+                            "template": "expressed discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clear discharge",
+                            "template": "clear discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bloody discharge",
+                            "template": "bloody discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "purulent discharge",
+                            "template": "purulent discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "areolar bleeding",
+                            "template": "areolar bleeding",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Nipple, L",
+                    "template": "Nipple, L: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "discharge without pressure",
+                            "template": "discharge without pressure",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "expressed discharge",
+                            "template": "expressed discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clear discharge",
+                            "template": "clear discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bloody discharge",
+                            "template": "bloody discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "purulent discharge",
+                            "template": "purulent discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "areolar bleeding",
+                            "template": "areolar bleeding",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Nipples, BL",
+                    "template": "Nipples, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "discharge without pressure",
+                            "template": "discharge without pressure",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "expressed discharge",
+                            "template": "expressed discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clear discharge",
+                            "template": "clear discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bloody discharge",
+                            "template": "bloody discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "purulent discharge",
+                            "template": "purulent discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "areolar bleeding",
+                            "template": "areolar bleeding",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Axilla, R",
+                    "template": "Axilla, R: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "mass",
+                            "template": "mass",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "axillary lymphadenopathy",
+                            "template": "axillary lymphadenopathy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pectoral lymphadenopathy",
+                            "template": "pectoral lymphadenopathy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "subscapular lymphadenopathy",
+                            "template": "subscapular lymphadenopathy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "brachial lymphadenopathy",
+                            "template": "brachial lymphadenopathy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acanthosis nigricans",
+                            "template": "acanthosis nigricans",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Axilla, L",
+                    "template": "Axilla, L: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "mass",
+                            "template": "mass",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "axillary lymphadenopathy",
+                            "template": "axillary lymphadenopathy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pectoral lymphadenopathy",
+                            "template": "pectoral lymphadenopathy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "subscapular lymphadenopathy",
+                            "template": "subscapular lymphadenopathy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "brachial lymphadenopathy",
+                            "template": "brachial lymphadenopathy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acanthosis nigricans",
+                            "template": "acanthosis nigricans",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Axillae, BL",
+                    "template": "Axillae, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "mass",
+                            "template": "mass",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "axillary lymphadenopathy",
+                            "template": "axillary lymphadenopathy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pectoral lymphadenopathy",
+                            "template": "pectoral lymphadenopathy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "subscapular lymphadenopathy",
+                            "template": "subscapular lymphadenopathy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "brachial lymphadenopathy",
+                            "template": "brachial lymphadenopathy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acanthosis nigricans",
+                            "template": "acanthosis nigricans",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "Other findings: {text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Respiratory",
+            "template": "RESP: {children}",
+            "children": [
+                {
+                    "text": "no respiratory distress",
+                    "template": "no respiratory distress"
+                },
+                {
+                    "text": "auscultation clear BL",
+                    "template": "clear to auscultation bilaterally"
+                },
+                {
+                    "text": "no wheezes\/rales\/rhonchi",
+                    "template": "no wheezes\/rales\/rhonchi"
+                },
+                {
+                    "text": "percussion clear BL",
+                    "template": "clear to percussion bilaterally"
+                },
+                {
+                    "text": "chest wall symmetric",
+                    "template": "chest wall symmetric"
+                },
+                {
+                    "text": "subcutaneous emphysema",
+                    "template": "subcutaneous emphysema",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Abnl lung sounds, R",
+                    "template": "Abnl lung sounds, R: {children}",
+                    "children": [
+                        {
+                            "text": "whoop",
+                            "template": "whoop",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "stridor",
+                            "template": "stridor",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pleural rub",
+                            "template": "pleural rub"
+                        },
+                        {
+                            "text": "basilar rales",
+                            "template": "basilar rales"
+                        },
+                        {
+                            "text": "rales scattered",
+                            "template": "scattered rales"
+                        },
+                        {
+                            "text": "rhonchi scattered",
+                            "template": "scattered rhonchi"
+                        },
+                        {
+                            "text": "diminished breath sounds throughout",
+                            "template": "diminished breath sounds throughout"
+                        },
+                        {
+                            "text": "diminished breath sounds at bases",
+                            "template": "diminished breath sounds at bases"
+                        },
+                        {
+                            "text": "wheezes, expiration",
+                            "template": "expiratory wheezes"
+                        }
+                    ]
+                },
+                {
+                    "text": "Abnl lung sounds, L",
+                    "template": "Abnl lung sounds, L: {children}",
+                    "children": [
+                        {
+                            "text": "whoop",
+                            "template": "whoop",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "stridor",
+                            "template": "stridor",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pleural rub",
+                            "template": "pleural rub"
+                        },
+                        {
+                            "text": "basilar rales",
+                            "template": "basilar rales"
+                        },
+                        {
+                            "text": "rales scattered",
+                            "template": "scattered rales"
+                        },
+                        {
+                            "text": "rhonchi scattered",
+                            "template": "scattered rhonchi"
+                        },
+                        {
+                            "text": "diminished breath sounds throughout",
+                            "template": "diminished breath sounds throughout"
+                        },
+                        {
+                            "text": "diminished breath sounds at bases",
+                            "template": "diminished breath sounds at bases"
+                        },
+                        {
+                            "text": "wheezes, expiration",
+                            "template": "expiratory wheezes"
+                        }
+                    ]
+                },
+                {
+                    "text": "Abnl lung sounds, BL",
+                    "template": "Abnl lung sounds, BL: {children}",
+                    "children": [
+                        {
+                            "text": "whoop",
+                            "template": "whoop",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "stridor",
+                            "template": "stridor",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pleural rub",
+                            "template": "pleural rub"
+                        },
+                        {
+                            "text": "basilar rales",
+                            "template": "basilar rales"
+                        },
+                        {
+                            "text": "rales scattered",
+                            "template": "scattered rales"
+                        },
+                        {
+                            "text": "rhonchi scattered",
+                            "template": "scattered rhonchi"
+                        },
+                        {
+                            "text": "diminished breath sounds throughout",
+                            "template": "diminished breath sounds throughout"
+                        },
+                        {
+                            "text": "diminished breath sounds at bases",
+                            "template": "diminished breath sounds at bases"
+                        },
+                        {
+                            "text": "wheezes, expiration",
+                            "template": "expiratory wheezes"
+                        }
+                    ]
+                },
+                {
+                    "text": "Percussion, R",
+                    "template": "Percussion, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal to percussion",
+                            "template": "normal to percussion"
+                        },
+                        {
+                            "text": "dullness to percussion at base",
+                            "template": "dullness to percussion at base"
+                        },
+                        {
+                            "text": "dull throughout",
+                            "template": "dull to percussion throughout"
+                        }
+                    ]
+                },
+                {
+                    "text": "Percussion, L",
+                    "template": "Percussion, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal to percussion",
+                            "template": "normal to percussion"
+                        },
+                        {
+                            "text": "dullness to percussion at base",
+                            "template": "dullness to percussion at base"
+                        },
+                        {
+                            "text": "dull throughout",
+                            "template": "dull to percussion throughout"
+                        }
+                    ]
+                },
+                {
+                    "text": "Percussion, BL",
+                    "template": "Percussion, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal to percussion",
+                            "template": "normal to percussion"
+                        },
+                        {
+                            "text": "dullness to percussion at base",
+                            "template": "dullness to percussion at base"
+                        },
+                        {
+                            "text": "dull throughout",
+                            "template": "dull to percussion throughout"
+                        }
+                    ]
+                },
+                {
+                    "text": "Breathing dynamics, R",
+                    "template": "Breathing dynamics, R: {children}",
+                    "children": [
+                        {
+                            "text": "labored breathing",
+                            "template": "labored breathing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "accessory muscle use",
+                            "template": "accessory muscle use",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "rib retractions",
+                            "template": "rib retractions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abnormal diaphragm movement",
+                            "template": "abnormal diaphragm movement",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Breathing dynamics, L",
+                    "template": "Breathing dynamics, L: {children}",
+                    "children": [
+                        {
+                            "text": "labored breathing",
+                            "template": "labored breathing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "accessory muscle use",
+                            "template": "accessory muscle use",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "rib retractions",
+                            "template": "rib retractions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abnormal diaphragm movement",
+                            "template": "abnormal diaphragm movement",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Breathing dynamics, BL",
+                    "template": "Breathing dynamics, BL: {children}",
+                    "children": [
+                        {
+                            "text": "labored breathing",
+                            "template": "labored breathing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "accessory muscle use",
+                            "template": "accessory muscle use",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "rib retractions",
+                            "template": "rib retractions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abnormal diaphragm movement",
+                            "template": "abnormal diaphragm movement",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Cardiovascular",
+            "template": "CV: {children}",
+            "children": [
+                {
+                    "text": "RRR, no murmur\/rub\/gallop",
+                    "template": "RRR, no murmur\/rub\/gallop"
+                },
+                {
+                    "text": "S1, S2 findings",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "NL S1",
+                            "template": "NL S1"
+                        },
+                        {
+                            "text": "NL S2",
+                            "template": "NL S2"
+                        },
+                        {
+                            "text": "split S2",
+                            "template": "split S2"
+                        },
+                        {
+                            "text": "split S1",
+                            "template": "split S1"
+                        },
+                        {
+                            "text": "persistently split S2",
+                            "template": "persistently split S2"
+                        },
+                        {
+                            "text": "physiologically split S2",
+                            "template": "physiologically split S2"
+                        },
+                        {
+                            "text": "paradoxically split S2",
+                            "template": "paradoxically split S2"
+                        },
+                        {
+                            "text": "widely split S2",
+                            "template": "widely split S2"
+                        }
+                    ]
+                },
+                {
+                    "text": "S3 gallop",
+                    "template": "S3 gallop",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "S4 gallop",
+                    "template": "S4 gallop",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "regular rate and rhythm",
+                    "template": "regular rate and rhythm"
+                },
+                {
+                    "text": "regular rate",
+                    "template": "regular rate"
+                },
+                {
+                    "text": "regular rhythm",
+                    "template": "regular rhythm"
+                },
+                {
+                    "text": "no murmurs",
+                    "template": "no murmurs"
+                },
+                {
+                    "text": "Murmur grade",
+                    "template": "Murmur grade: {text}\/6",
+                    "type": "number"
+                },
+                {
+                    "text": "Murmur timing\/location",
+                    "template": "murmur {children}",
+                    "children": [
+                        {
+                            "text": "systolic",
+                            "template": "is systolic"
+                        },
+                        {
+                            "text": "diastolic",
+                            "template": "is diastolic"
+                        },
+                        {
+                            "text": "holosystolic",
+                            "template": "is holosystolic"
+                        },
+                        {
+                            "text": "continuous",
+                            "template": "is continuous"
+                        },
+                        {
+                            "text": "best: L sternal border",
+                            "template": "best heard at L sternal border"
+                        },
+                        {
+                            "text": "best: 2nd R ICS",
+                            "template": "best heard near 2nd R ICS"
+                        },
+                        {
+                            "text": "best: xiphoid\/ sternal area",
+                            "template": "best heard at xiphoid\/sternal area"
+                        },
+                        {
+                            "text": "best: apex",
+                            "template": "best heard at apex"
+                        },
+                        {
+                            "text": "best: R sternal border",
+                            "template": "best heard at R sternal border"
+                        },
+                        {
+                            "text": "nonradiating",
+                            "template": "nonradiating"
+                        },
+                        {
+                            "text": "radiates to axilla",
+                            "template": "radiates to axilla"
+                        },
+                        {
+                            "text": "radiates to apex",
+                            "template": "radiates to apex"
+                        },
+                        {
+                            "text": "radiates to carotids",
+                            "template": "radiates to carotids"
+                        },
+                        {
+                            "text": "radiates to R side",
+                            "template": "radiates to R side"
+                        },
+                        {
+                            "text": "radiates to sternum",
+                            "template": "radiates to sternum"
+                        },
+                        {
+                            "text": "radiates to L clavicular area",
+                            "template": "radiates to L clavicular area"
+                        }
+                    ]
+                },
+                {
+                    "text": "no increased JVP visible",
+                    "template": "no increased JVP visible"
+                },
+                {
+                    "text": "JVP level (cm)",
+                    "template": "JVP {text} cm above the sternal angle",
+                    "type": "number"
+                },
+                {
+                    "text": "Heaves, Thrills, Lifts",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "heave",
+                            "template": "heave",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "parasternal lift",
+                            "template": "parasternal lift",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "thrill",
+                            "template": "thrill",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Extra heart sounds",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "extra heart sounds",
+                            "template": "extra heart sounds",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pulmonary ejection sound",
+                            "template": "pulmonary ejection sound",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "aortic ejection sound",
+                            "template": "aortic ejection sound",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "systolic click",
+                            "template": "systolic click",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "midsystolic click",
+                            "template": "midsystolic click",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mid-late systolic click",
+                            "template": "mid-to-late systolic click",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pericardial rub",
+                            "template": "pericardial rub",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "knock",
+                            "template": "knock",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "opening snap",
+                            "template": "opening snap",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "plop",
+                            "template": "plop",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "prosthetic sounds",
+                            "template": "prosthetic sounds",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pacemaker sounds",
+                            "template": "pacemaker sounds",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "PMI nondisplaced",
+                    "template": "PMI nondisplaced"
+                },
+                {
+                    "text": "PMI displaced",
+                    "template": "PMI displaced",
+                    "children": [
+                        {
+                            "text": "laterally",
+                            "template": "laterally"
+                        },
+                        {
+                            "text": "inferiorly",
+                            "template": "inferiorly"
+                        },
+                        {
+                            "text": "superiorly",
+                            "template": "superiorly"
+                        },
+                        {
+                            "text": "parasternally",
+                            "template": "parasternally"
+                        }
+                    ]
+                },
+                {
+                    "text": "Peripheral pulses, R",
+                    "template": "Peripheral pulses, R: {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity normal",
+                            "template": "upper extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lower extremity normal",
+                            "template": "lower extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished upper ext.",
+                            "template": "diminished upper extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished lower ext.",
+                            "template": "diminished in lower extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pulsus paradoxicus",
+                            "template": "pulsus paradoxicus",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Peripheral pulses, L",
+                    "template": "Peripheral pulses, L: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact"
+                        },
+                        {
+                            "text": "upper extremity normal",
+                            "template": "upper extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lower extremity normal",
+                            "template": "lower extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished upper ext.",
+                            "template": "diminished in upper extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished lower ext.",
+                            "template": "diminished in lower extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pulsus paradoxicus",
+                            "template": "pulsus paradoxicus",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Peripheral pulses, BL",
+                    "template": "Peripheral pulses, BL: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact"
+                        },
+                        {
+                            "text": "upper extremity normal",
+                            "template": "upper extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lower extremity normal",
+                            "template": "lower extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished upper ext.",
+                            "template": "diminished in upper extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished lower ext.",
+                            "template": "diminished in lower extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pulsus paradoxicus",
+                            "template": "pulsus paradoxicus",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Xanthomas, R",
+                    "template": "Xanthomas, R: {children}",
+                    "children": [
+                        {
+                            "text": "eyelids",
+                            "template": "eyelids"
+                        },
+                        {
+                            "text": "periorbital",
+                            "template": "periorbital area"
+                        },
+                        {
+                            "text": "hands",
+                            "template": "hands"
+                        },
+                        {
+                            "text": "achilles tendons",
+                            "template": "achilles tendons"
+                        },
+                        {
+                            "text": "feet",
+                            "template": "feet"
+                        },
+                        {
+                            "text": "elbows",
+                            "template": "elbows"
+                        },
+                        {
+                            "text": "knees",
+                            "template": "knees"
+                        },
+                        {
+                            "text": "shoulders",
+                            "template": "shoulders"
+                        },
+                        {
+                            "text": "buttocks",
+                            "template": "buttocks"
+                        }
+                    ]
+                },
+                {
+                    "text": "Xanthomas, L",
+                    "template": "Xanthomas, L: {children}",
+                    "children": [
+                        {
+                            "text": "eyelids",
+                            "template": "eyelids"
+                        },
+                        {
+                            "text": "periorbital",
+                            "template": "periorbital area"
+                        },
+                        {
+                            "text": "hands",
+                            "template": "hands"
+                        },
+                        {
+                            "text": "achilles tendons",
+                            "template": "achilles tendons"
+                        },
+                        {
+                            "text": "feet",
+                            "template": "feet"
+                        },
+                        {
+                            "text": "elbows",
+                            "template": "elbows"
+                        },
+                        {
+                            "text": "knees",
+                            "template": "knees"
+                        },
+                        {
+                            "text": "shoulders",
+                            "template": "shoulders"
+                        },
+                        {
+                            "text": "buttocks",
+                            "template": "buttocks"
+                        }
+                    ]
+                },
+                {
+                    "text": "Xanthomas, BL",
+                    "template": "Xanthomas, BL: {children}",
+                    "children": [
+                        {
+                            "text": "eyelids",
+                            "template": "eyelids"
+                        },
+                        {
+                            "text": "periorbital",
+                            "template": "periorbital area"
+                        },
+                        {
+                            "text": "hands",
+                            "template": "hands"
+                        },
+                        {
+                            "text": "achilles tendons",
+                            "template": "achilles tendons"
+                        },
+                        {
+                            "text": "feet",
+                            "template": "feet"
+                        },
+                        {
+                            "text": "elbows",
+                            "template": "elbows"
+                        },
+                        {
+                            "text": "knees",
+                            "template": "knees"
+                        },
+                        {
+                            "text": "shoulders",
+                            "template": "shoulders"
+                        },
+                        {
+                            "text": "buttocks",
+                            "template": "buttocks"
+                        }
+                    ]
+                },
+                {
+                    "text": "LE venous stasis changes",
+                    "template": "LE venous stasis changes",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "varicose veins",
+                    "template": "varicose veins",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "LE varicose veins, R",
+                    "template": "LE varicose veins, R: {children}",
+                    "children": [
+                        {
+                            "text": "present",
+                            "template": "present",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "LE varicose veins, L",
+                    "template": "LE varicose veins, L: {children}",
+                    "children": [
+                        {
+                            "text": "present",
+                            "template": "present",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "LE varicose veins, BL",
+                    "template": "LE varicose veins, BL: {children}",
+                    "children": [
+                        {
+                            "text": "present",
+                            "template": "present",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "Other findings: {text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Cardiovascular, pulses",
+            "template": "CV: {children}",
+            "children": [
+                {
+                    "text": "pulse rate and rhythm regular",
+                    "template": "pulse rate and rhythm regular"
+                },
+                {
+                    "text": "pulse rate regular",
+                    "template": "pulse rate regular"
+                },
+                {
+                    "text": "pulse rhythm regular",
+                    "template": "pulse rhythm regular"
+                },
+                {
+                    "text": "Temporal artery, R",
+                    "template": "Temporal artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Temporal artery, L",
+                    "template": "Temporal artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Temporal arteries, BL",
+                    "template": "Temporal arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Carotid artery, R",
+                    "template": "Carotid artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "delayed upstroke",
+                            "template": "delayed upstroke"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Carotid artery, L",
+                    "template": "Carotid artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "delayed upstroke",
+                            "template": "delayed upstroke"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Carotid arteries, BL",
+                    "template": "Carotid arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "delayed upstroke",
+                            "template": "delayed upstroke"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Brachial artery, R",
+                    "template": "Brachial artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Brachial artery, L",
+                    "template": "Brachial artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Brachial arteries, BL",
+                    "template": "Brachial arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Radial artery, R",
+                    "template": "Radial artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "waterhammer",
+                            "template": "waterhammer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bisferiens",
+                            "template": "bisferiens",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Radial artery, L",
+                    "template": "Radial artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "waterhammer",
+                            "template": "waterhammer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bisferiens",
+                            "template": "bisferiens",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Radial arteries, BL",
+                    "template": "Radial arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "waterhammer",
+                            "template": "waterhammer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bisferiens",
+                            "template": "bisferiens",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Femoral artery, R",
+                    "template": "Femoral artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Femoral artery, L",
+                    "template": "Femoral artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Femoral arteries, BL",
+                    "template": "Femoral arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Popliteal artery, R",
+                    "template": "Popliteal artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Popliteal artery, L",
+                    "template": "Popliteal artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Popliteal arteries, BL",
+                    "template": "Popliteal arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Dorsalis pedis artery, R",
+                    "template": "Dorsalis pedis artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Dorsalis pedis artery, L",
+                    "template": "Dorsalis pedis artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Dorsalis pedis arteries, BL",
+                    "template": "Dorsalis pedis arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Posterior tibial, R",
+                    "template": "Posterior tibial, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Posterior tibial, L",
+                    "template": "Posterior tibial, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Posterior tibial arteries, BL",
+                    "template": "Posterior tibial arteries, BL {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Renal artery, R",
+                    "template": "Renal artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "bruit present",
+                            "template": "bruit present"
+                        },
+                        {
+                            "text": "palpable pulse",
+                            "template": "palpable pulse",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Renal artery, L",
+                    "template": "Renal artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "bruit present",
+                            "template": "bruit present"
+                        },
+                        {
+                            "text": "palpable pulse",
+                            "template": "palpable pulse",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Renal arteries, BL",
+                    "template": "Renal arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "bruit present",
+                            "template": "bruit present"
+                        },
+                        {
+                            "text": "palpable pulse",
+                            "template": "palpable pulse",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Aorta",
+                    "template": "Aorta: {children}",
+                    "children": [
+                        {
+                            "text": "enlargement",
+                            "template": "enlargement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Gastrointestinal",
+            "template": "GI: {children}",
+            "children": [
+                {
+                    "text": "NL abdominal inspection",
+                    "template": "NL abdominal inspection"
+                },
+                {
+                    "text": "abdominal distension noted",
+                    "template": "abdominal distension noted"
+                },
+                {
+                    "text": "abdomen flat on inspection",
+                    "template": "abdomen flat on inspection"
+                },
+                {
+                    "text": "abdomen obese on inspection",
+                    "template": "abdomen obese on inspection"
+                },
+                {
+                    "text": "abdomen scaphoid on inspection",
+                    "template": "abdomen scaphoid on inspection"
+                },
+                {
+                    "text": "bowel sounds intact throughout",
+                    "template": "bowel sounds intact throughout"
+                },
+                {
+                    "text": "decreased bowel sounds",
+                    "template": "decreased bowel sounds",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "absent bowel sounds",
+                    "template": "absent bowel sounds",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "high pitched bowel sounds",
+                    "template": "high pitched bowel sounds",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "borborygmi",
+                    "template": "borborygmi",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "soft, nontender to palpation",
+                    "template": "soft, nontender to palpation"
+                },
+                {
+                    "text": "no rebound\/guarding\/rigidity",
+                    "template": "no rebound\/guarding\/rigidity"
+                },
+                {
+                    "text": "rebound",
+                    "template": "rebound",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "guarding",
+                    "template": "guarding",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "rigidity",
+                    "template": "rigidity",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "hepatomegaly",
+                    "template": "hepatomegaly",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "splenomegaly",
+                    "template": "splenomegaly",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "masses",
+                    "template": "masses",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "ascites",
+                    "template": "ascites",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Abdominal exam: tenderness",
+                    "template": "Abdominal pain: {children}",
+                    "children": [
+                        {
+                            "text": "no tenderness noted on exam",
+                            "template": "no tenderness noted on exam"
+                        },
+                        {
+                            "text": "tenderness at rest",
+                            "template": "tenderness present at rest",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tenderness with palpation",
+                            "template": "tenderness present with palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tenderness with movement",
+                            "template": "tenderness present with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mild",
+                            "template": "mild pain present"
+                        },
+                        {
+                            "text": "moderate",
+                            "template": "moderate pain present"
+                        },
+                        {
+                            "text": "severe",
+                            "template": "severe pain present"
+                        },
+                        {
+                            "text": "present throughout",
+                            "template": "pain present throughout"
+                        },
+                        {
+                            "text": "right sided tenderness",
+                            "template": "right sided tenderness present"
+                        },
+                        {
+                            "text": "left sided tenderness",
+                            "template": "left sided tenderness present"
+                        },
+                        {
+                            "text": "midepigastric tenderness",
+                            "template": "midepigastric tenderness present"
+                        },
+                        {
+                            "text": "RUQ tenderness",
+                            "template": "RUQ tenderness present"
+                        },
+                        {
+                            "text": "LUQ tenderness",
+                            "template": "LUQ tenderness present"
+                        },
+                        {
+                            "text": "hypogastric tenderness",
+                            "template": "hypogastric tenderness present"
+                        },
+                        {
+                            "text": "RLQ tenderness",
+                            "template": "RLQ tenderness present"
+                        },
+                        {
+                            "text": "LLQ tenderness",
+                            "template": "LLQ tenderness present"
+                        },
+                        {
+                            "text": "periumbilical tenderness",
+                            "template": "periumbilical tenderness present"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "Other findings: {text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "GU\/Rectal: Female",
+            "template": "GU\/RECTAL: {children}",
+            "children": [
+                {
+                    "text": "external genitalia NL appearance",
+                    "template": "external genitalia NL appearance"
+                },
+                {
+                    "text": "s\/p mastectomy",
+                    "template": "s\/p mastectomy"
+                },
+                {
+                    "text": "Hair distribution",
+                    "template": "Hair distribution",
+                    "children": [
+                        {
+                            "text": "normal",
+                            "template": "normal"
+                        },
+                        {
+                            "text": "hair loss noted",
+                            "template": "hair loss noted",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Urethral meatus",
+                    "template": "Urethral meatus: {children}",
+                    "children": [
+                        {
+                            "text": "NL size",
+                            "template": "NL size"
+                        },
+                        {
+                            "text": "lesions",
+                            "template": "lesions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "prolapse",
+                            "template": "prolapse",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythematous",
+                            "template": "erythematous",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discharge",
+                            "template": "discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender",
+                            "template": "tender",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Bladder",
+                    "template": "Bladder: {children}",
+                    "children": [
+                        {
+                            "text": "normal",
+                            "template": "normal"
+                        },
+                        {
+                            "text": "tender",
+                            "template": "tender",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "masses",
+                            "template": "masses",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "distended",
+                            "template": "distended",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cystocele",
+                            "template": "cystocele",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Vagina",
+                    "template": "Vagina: {children}",
+                    "children": [
+                        {
+                            "text": "NL appearance",
+                            "template": "NL appearance"
+                        },
+                        {
+                            "text": "NL pelvic support",
+                            "template": "NL pelvic support"
+                        },
+                        {
+                            "text": "atrophy",
+                            "template": "atrophy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discharge",
+                            "template": "discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lesions",
+                            "template": "lesions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "prolapse",
+                            "template": "prolapse",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bleeding",
+                            "template": "bleeding",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Cervix",
+                    "template": "Cervix: {children}",
+                    "children": [
+                        {
+                            "text": "NL appearance",
+                            "template": "NL appearance"
+                        },
+                        {
+                            "text": "midline",
+                            "template": "midline"
+                        },
+                        {
+                            "text": "lesions",
+                            "template": "lesions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discharge",
+                            "template": "discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bleeding",
+                            "template": "bleeding",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "specimens obtained for smear",
+                            "template": "specimens obtained for smear",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "specimens obtained for culture",
+                            "template": "specimens obtained for culture",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "s\/p surgical removal",
+                            "template": "s\/p surgical removal"
+                        }
+                    ]
+                },
+                {
+                    "text": "Uterus",
+                    "template": "Uterus: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "NL position",
+                            "template": "NL position"
+                        },
+                        {
+                            "text": "NL mobility",
+                            "template": "NL mobility"
+                        },
+                        {
+                            "text": "NL contour",
+                            "template": "NL contour"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "prolapse",
+                            "template": "prolapse",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender",
+                            "template": "tender",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "s\/p hysterectomy",
+                            "template": "s\/p hysterectomy"
+                        }
+                    ]
+                },
+                {
+                    "text": "Adnexa, R",
+                    "template": "Adnexa, R: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "tender",
+                            "template": "tender",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "masses",
+                            "template": "masses",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nodules",
+                            "template": "nodules",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "s\/p salpingectomy",
+                            "template": "s\/p salpingectomy"
+                        }
+                    ]
+                },
+                {
+                    "text": "Adnexa, L",
+                    "template": "Adnexa, L: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "tender",
+                            "template": "tender",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "masses",
+                            "template": "masses",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nodules",
+                            "template": "nodules",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "s\/p salpingectomy",
+                            "template": "s\/p salpingectomy"
+                        }
+                    ]
+                },
+                {
+                    "text": "Adnexae, BL",
+                    "template": "Adnexae, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "tender",
+                            "template": "tender",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "masses",
+                            "template": "masses",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nodules",
+                            "template": "nodules",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "s\/p salpingectomy",
+                            "template": "s\/p salpingectomy"
+                        }
+                    ]
+                },
+                {
+                    "text": "Anorectal area",
+                    "template": "Anus\/rectum: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "NL tone",
+                            "template": "NL tone"
+                        },
+                        {
+                            "text": "perianal lesions",
+                            "template": "perianal lesions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "external hemorrhoids",
+                            "template": "external hemorrhoids",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "internal hemorrhoids",
+                            "template": "internal hemorrhoids",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "NL anoscopy",
+                            "template": "NL anoscopy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "rectocele",
+                            "template": "rectocele",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "masses",
+                            "template": "masses",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "stool positive for occult blood",
+                            "template": "stool positive for occult blood"
+                        },
+                        {
+                            "text": "stool negative for occult blood",
+                            "template": "stool negative for occult blood"
+                        },
+                        {
+                            "text": "gross blood noted on DRE",
+                            "template": "gross blood noted on DRE"
+                        }
+                    ]
+                },
+                {
+                    "text": "Rectal exam deferred",
+                    "template": "Rectal exam deferred: {children}",
+                    "children": [
+                        {
+                            "text": "not indicated",
+                            "template": "not indicated"
+                        },
+                        {
+                            "text": "refused by patient",
+                            "template": "refused by patient"
+                        },
+                        {
+                            "text": "unstable",
+                            "template": "deferred due to unstable clinical status"
+                        },
+                        {
+                            "text": "contraindicated",
+                            "template": "deferred due to clinical contraindication"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "Other findings: {text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "GU\/Rectal: Male",
+            "template": "GU\/RECTAL: {children}",
+            "children": [
+                {
+                    "text": "external genital NL appearance",
+                    "template": "external genital NL appearance"
+                },
+                {
+                    "text": "s\/p prostatectomy",
+                    "template": "s\/p prostatectomy"
+                },
+                {
+                    "text": "cremasteric reflex elicited",
+                    "template": "cremasteric reflex elicited",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Hair distribution",
+                    "template": "Hair distribution",
+                    "children": [
+                        {
+                            "text": "normal",
+                            "template": "normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hair loss noted",
+                            "template": "hair loss noted",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Bladder",
+                    "template": "Bladder: {children}",
+                    "children": [
+                        {
+                            "text": "normal",
+                            "template": "normal"
+                        },
+                        {
+                            "text": "tender",
+                            "template": "tender",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "masses",
+                            "template": "masses",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "distended",
+                            "template": "distended",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cystocele",
+                            "template": "cystocele",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Penis",
+                    "template": "Penis: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "urethral meatus patent",
+                            "template": "urethral meatus patent",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "urethral meatal location NL",
+                            "template": "urethral meatal location NL",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hypospadias",
+                            "template": "hypospadias",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clear discharge",
+                            "template": "clear discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bloody discharge",
+                            "template": "bloody discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "purulent discharge",
+                            "template": "purulent discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "smegma",
+                            "template": "smegma",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "circumcised",
+                            "template": "circumcised",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "urinary incontinence with cough",
+                            "template": "urinary incontinence with cough",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lesion",
+                            "template": "lesion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lesions",
+                            "template": "lesions",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Scrotum, R",
+                    "template": "Scrotum, R: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "symmetric",
+                            "template": "symmetric",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "NL size",
+                            "template": "NL size",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "atrophied",
+                            "template": "atrophied",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "NL position",
+                            "template": "NL position",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hydrocele",
+                            "template": "hydrocele",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mass",
+                            "template": "mass",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "rash",
+                            "template": "rash",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ulceration",
+                            "template": "ulceration",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lesions",
+                            "template": "lesions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nodular",
+                            "template": "nodular",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Scrotum, L",
+                    "template": "Scrotum, L: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "symmetric",
+                            "template": "symmetric",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "NL size",
+                            "template": "NL size",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "atrophied",
+                            "template": "atrophied",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "NL position",
+                            "template": "NL position",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hydrocele",
+                            "template": "hydrocele",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mass",
+                            "template": "mass",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "rash",
+                            "template": "rash",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ulceration",
+                            "template": "ulceration",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lesions",
+                            "template": "lesions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nodular",
+                            "template": "nodular",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Scrotal findings, BL",
+                    "template": "Scrotal findings, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "symmetric",
+                            "template": "symmetric",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "NL size",
+                            "template": "NL size",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "atrophied",
+                            "template": "atrophied",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "NL position",
+                            "template": "NL position",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hydrocele",
+                            "template": "hydrocele",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mass",
+                            "template": "mass",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "rash",
+                            "template": "rash",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ulceration",
+                            "template": "ulceration",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lesions",
+                            "template": "lesions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "smooth",
+                            "template": "smooth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nodular",
+                            "template": "nodular",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Testis, R",
+                    "template": "Testis, R: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "mass",
+                            "template": "mass",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "transillumination noted",
+                            "template": "transillumination noted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender",
+                            "template": "tender",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "opaque",
+                            "template": "opaque",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "undescended",
+                            "template": "undescended",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "s\/p orchiectomy",
+                            "template": "s\/p orchiectomy"
+                        }
+                    ]
+                },
+                {
+                    "text": "Testis, L",
+                    "template": "Testis, L: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "mass",
+                            "template": "mass",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "transillumination noted",
+                            "template": "transillumination noted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender",
+                            "template": "tender",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "opaque",
+                            "template": "opaque",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "undescended",
+                            "template": "undescended",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "s\/p orchiectomy",
+                            "template": "s\/p orchiectomy"
+                        }
+                    ]
+                },
+                {
+                    "text": "Testes, BL",
+                    "template": "Testes, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "mass",
+                            "template": "mass",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "transillumination noted",
+                            "template": "transillumination noted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender",
+                            "template": "tender",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "opaque",
+                            "template": "opaque",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "undescended",
+                            "template": "undescended",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "s\/p orchiectomy",
+                            "template": "s\/p orchiectomy"
+                        }
+                    ]
+                },
+                {
+                    "text": "Spermatic cord",
+                    "template": "Spermatic cord: {children}",
+                    "children": [
+                        {
+                            "text": "right spermatic cord",
+                            "template": "right spermatic cord"
+                        },
+                        {
+                            "text": "left spermatic cord",
+                            "template": "left spermatic cord"
+                        },
+                        {
+                            "text": "bilateral spermatic cords",
+                            "template": "bilateral spermatic cords"
+                        },
+                        {
+                            "text": "tender",
+                            "template": "tender",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Inguinal canal, R",
+                    "template": "Inguinal canal, R: {children}",
+                    "children": [
+                        {
+                            "text": "tenderness to palpation",
+                            "template": "tenderness to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hernia present at rest",
+                            "template": "hernia present at rest",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hernia present with cough",
+                            "template": "hernia present with cough",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Inguinal canal, L",
+                    "template": "Inguinal canal, L: {children}",
+                    "children": [
+                        {
+                            "text": "tenderness to palpation",
+                            "template": "tenderness to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hernia present at rest",
+                            "template": "hernia present at rest",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hernia present with cough",
+                            "template": "hernia present with cough",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Inguinal canals, BL",
+                    "template": "Inguinal canals, BL: {children}",
+                    "children": [
+                        {
+                            "text": "tenderness to palpation",
+                            "template": "tenderness to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hernia present at rest",
+                            "template": "hernia present at rest",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hernia present with cough",
+                            "template": "hernia present with cough",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Prostate",
+                    "template": "Prostate exam {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "masses",
+                            "template": "masses",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nodule noted",
+                            "template": "nodule noted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nodules noted",
+                            "template": "nodules noted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender",
+                            "template": "tender",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "rubbery",
+                            "template": "rubbery",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "boggy",
+                            "template": "boggy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Anorectal area",
+                    "template": "Anus\/rectum: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "NL tone",
+                            "template": "NL tone"
+                        },
+                        {
+                            "text": "perianal lesions",
+                            "template": "perianal lesions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "external hemorrhoids",
+                            "template": "external hemorrhoids",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "internal hemorrhoids",
+                            "template": "internal hemorrhoids",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "NL anoscopy",
+                            "template": "NL anoscopy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "rectocele",
+                            "template": "rectocele",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "masses",
+                            "template": "masses",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "stool positive for occult blood",
+                            "template": "stool positive for occult blood"
+                        },
+                        {
+                            "text": "stool negative for occult blood",
+                            "template": "stool negative for occult blood"
+                        },
+                        {
+                            "text": "gross blood noted on DRE",
+                            "template": "gross blood noted on DRE"
+                        }
+                    ]
+                },
+                {
+                    "text": "Rectal exam deferred",
+                    "template": "Rectal exam deferred: {children}",
+                    "children": [
+                        {
+                            "text": "not indicated",
+                            "template": "not indicated"
+                        },
+                        {
+                            "text": "refused by patient",
+                            "template": "refused by patient"
+                        },
+                        {
+                            "text": "unstable",
+                            "template": "deferred due to unstable clinical status"
+                        },
+                        {
+                            "text": "contraindicated",
+                            "template": "deferred due to clinical contraindication"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "Other findings: {text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Dermatologic\/Lymphatic",
+            "template": "DERM: {children}",
+            "children": [
+                {
+                    "text": "Dermatological findings, general",
+                    "template": "General dermatological findings :{children}",
+                    "children": [
+                        {
+                            "text": "no abnormal skin findings",
+                            "template": "no abnormal skin findings"
+                        },
+                        {
+                            "text": "hyperpigmentation",
+                            "template": "hyperpigmentation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hypopigmentation",
+                            "template": "hypopigmentation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tattoo markings",
+                            "template": "tattoo markings",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scarring",
+                            "template": "scarring",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "injection tracts",
+                            "template": "injection tracts",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "alopecia",
+                            "template": "alopecia",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acanthosis nigricans",
+                            "template": "acanthosis nigricans",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Anterior axillary lymphatics, R",
+                    "template": "Anterior axillary lymphatics, R: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Anterior axillary lymphatics, L",
+                    "template": "Anterior axillary lymphatics, L: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Anterior axillary lymphatics, BL",
+                    "template": "Anterior axillary lymphatics, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Posterior axillary lymphatics, R",
+                    "template": "Posterior axillary lymphatics, R: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Posterior axillary lymphatics, L",
+                    "template": "Posterior axillary lymphatics, L: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Posterior axillary lymphatics, BL",
+                    "template": "Posterior axillary lymphatics, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Apical axillary lymphatics, R",
+                    "template": "Apical axillary lymphatics, R: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Apical axillary lymphatics, L",
+                    "template": "Apical axillary lymphatics, L: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Apical axillary lymphatics, BL",
+                    "template": "Apical axillary lymphatics, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lateral axillary lymphatics, R",
+                    "template": "Lateral axillary lymphatics, R: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lateral axillary lymphatics, L",
+                    "template": "Lateral axillary lymphatics, L: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lateral axillary lymphatics, BL",
+                    "template": "Lateral axillary lymphatics, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Medial axillary lymphatics, R",
+                    "template": "Medial axillary lymphatics, R: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Medial axillary lymphatics, L",
+                    "template": "Medial axillary lymphatics, L: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Medial axillary lymphatics, BL",
+                    "template": "Medial axillary lymphatics, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Femoral lymphatics, R",
+                    "template": "Femoral lymphatics, R: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Femoral lymphatics, L",
+                    "template": "Femoral lymphatics, L: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Femoral lymphatics, BL",
+                    "template": "Femoral lymphatics, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mobile",
+                            "template": "mobile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discrete",
+                            "template": "discrete",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "matted",
+                            "template": "matted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hard",
+                            "template": "hard",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "firm",
+                            "template": "firm",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "Other findings: {text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Extremities",
+            "template": "EXT: {children}",
+            "children": [
+                {
+                    "text": "no C\/C\/E",
+                    "template": "no C\/C\/E"
+                },
+                {
+                    "text": "cyanosis",
+                    "template": "cyanosis",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "clubbing",
+                    "template": "clubbing",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "edema",
+                    "template": "edema",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "anasarca",
+                    "template": "anasarca",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Upper extremity C\/C\/E, R",
+                    "template": "Upper extremity C\/C\/E, R: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity C\/C\/E, L",
+                    "template": "Upper extremity C\/C\/E, L: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremities C\/C\/E, BL",
+                    "template": "Upper extremities C\/C\/E, BL: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity C\/C\/E, R",
+                    "template": "Lower extremity C\/C\/E, R: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity C\/C\/E, L",
+                    "template": "Lower extremity clubbing\/edema\/cyanosis, L: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremities C\/C\/E, BL",
+                    "template": "Lower extremities clubbing\/edema\/cyanosis, BL: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "full range of motion throughout",
+                    "template": "full range of motion throughout"
+                },
+                {
+                    "text": "upper ext strength intact BL",
+                    "template": "upper extremity strength intact BL",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Upper extremity, ROM, R",
+                    "template": "Upper extremity, range of motion, R: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity, ROM, L",
+                    "template": "Upper extremity, range of motion, L: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremities, ROM, BL",
+                    "template": "Upper extremities, range of motion, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "lower ext strength intact BL",
+                    "template": "lower extremity strength intact BL",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Lower extremity, ROM, R",
+                    "template": "Lower extremity, range of motion, R: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity, ROM, L",
+                    "template": "Lower extremity, range of motion, L: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity, ROM, BL",
+                    "template": "Lower extremity, range of motion, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "upper extremity strength intact BL",
+                    "template": "Upper extremity strength intact BL",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Upper extremity strength, R",
+                    "template": "Upper extremity strength, R: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity strength, L",
+                    "template": "Upper extremity strength, L: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity strength, BL",
+                    "template": "Upper extremity strength, BL: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "lower extremity strength intact BL",
+                    "template": "Lower extremity strength intact BL",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Lower extremity strength, R",
+                    "template": "Lower extremity strength, R: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity strength, L",
+                    "template": "Lower extremity strength, L: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity strength, BL",
+                    "template": "Lower extremity strength, BL: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Musculoskeletal",
+            "template": "MUSC\/SKEL: {children}",
+            "children": [
+                {
+                    "text": "muscle strength NL throughout",
+                    "template": "muscle strength NL throughout"
+                },
+                {
+                    "text": "NL upper extremity exam BL",
+                    "template": "NL upper extremity exam BL",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "NL lower extremity exam BL",
+                    "template": "NL lower extremity exam BL",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Upper extremity, R",
+                    "template": "Upper extremity exam, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "strength and tone normal"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity, L",
+                    "template": "Upper extremity exam, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "strength and tone normal"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity, BL",
+                    "template": "Upper extremity exam, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "strength and tone normal"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity, R",
+                    "template": "Lower extremity exam, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "strength and tone normal"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity, L",
+                    "template": "Lower extremity exam, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "strength and tone normal"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity, BL",
+                    "template": "Lower extremity exam, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "strength and tone normal"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Back, R",
+                    "template": "Back exam, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sacral edema",
+                            "template": "sacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "presacral edema",
+                            "template": "presacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "costovertebral angle tenderness",
+                            "template": "costovertebral angle tenderness",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Back, L",
+                    "template": "Back exam, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sacral edema",
+                            "template": "sacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "presacral edema",
+                            "template": "presacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "costovertebral angle tenderness",
+                            "template": "costovertebral angle tenderness",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Back, BL",
+                    "template": "Back exam, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sacral edema",
+                            "template": "sacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "presacral edema",
+                            "template": "presacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "costovertebral angle tenderness",
+                            "template": "costovertebral angle tenderness",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Neurological",
+            "template": "NEURO: {children}",
+            "children": [
+                {
+                    "text": "sensation grossly intact",
+                    "template": "sensation grossly intact"
+                },
+                {
+                    "text": "CN II-XII intact and nonfocal",
+                    "template": "CN II-XII intact and nonfocal"
+                },
+                {
+                    "text": "DTRs bilaterally equal throughout",
+                    "template": "deep tendon reflexes 2+, bilaterally equal throughout"
+                },
+                {
+                    "text": "pathological reflexes elicited",
+                    "template": "pathological reflexes elicited"
+                },
+                {
+                    "text": "no pathological reflexes elicited",
+                    "template": "no pathological reflexes elicited"
+                },
+                {
+                    "text": "normal gait and station",
+                    "template": "normal gait and station"
+                },
+                {
+                    "text": "normal gait",
+                    "template": "normal gait"
+                },
+                {
+                    "text": "normal station",
+                    "template": "normal station"
+                },
+                {
+                    "text": "perianal sensation intact",
+                    "template": "perianal sensation intact"
+                },
+                {
+                    "text": "perianal sensation diminished",
+                    "template": "perianal sensation diminished"
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "Other findings: {text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Psychiatric",
+            "template": "PSYCH: {children}",
+            "children": [
+                {
+                    "text": "AO x 3",
+                    "template": "alert and oriented to time, place, and person"
+                },
+                {
+                    "text": "normal mood",
+                    "template": "normal mood"
+                },
+                {
+                    "text": "normal affect",
+                    "template": "normal affect"
+                },
+                {
+                    "text": "Other detail",
+                    "template": "Other detail: {text}",
+                    "type": "alpha"
+                }
+            ]
+        }
+    ]
+}

+ 9619 - 0
storage/templates/exam-default/exam-heent-detail/heent-exam.json

@@ -0,0 +1,9619 @@
+{
+    "section": "exam-heent-detail",
+    "templateSet": "HEENT Exam",
+    "templates": [
+        {
+            "text": "1-Click normal exams",
+            "template": "{children}",
+            "children": [
+                {
+                    "text": "GEN: NAD",
+                    "template": "GEN: NAD"
+                },
+                {
+                    "text": "HEAD: HNCAT, sinuses NT to palp",
+                    "template": "HEENT: head normocephalic and atraumatic, sinuses nontender to palpation"
+                },
+                {
+                    "text": "EYES: EOMI, PERRLA",
+                    "template": "HEENT: EOMI, PERRLA"
+                },
+                {
+                    "text": "EYES: vision grossly intact",
+                    "template": "HEENT: vision grossly intact"
+                },
+                {
+                    "text": "EARS: NL tympanic membranes",
+                    "template": "HEENT: NL tympanic membranes"
+                },
+                {
+                    "text": "EARS: no erythema\/exudates\/ulcers",
+                    "template": "HEENT: external auditory canals NL with no erythema\/exudates\/ulcers"
+                },
+                {
+                    "text": "EARS: hearing grossly intact BL",
+                    "template": "HEENT: hearing grossly intact BL"
+                },
+                {
+                    "text": "MOUTH\/GUMS: NL teeth\/lips\/gums",
+                    "template": "HEENT: NL teeth\/lips\/gums"
+                },
+                {
+                    "text": "MUCOUS MEMBRANES: moist",
+                    "template": "HEENT: mucous membranes moist"
+                },
+                {
+                    "text": "PHARYNX: no eryth\/exudates\/ulcers",
+                    "template": "HEENT: no pharyngeal erythema\/exudates\/ulcers"
+                },
+                {
+                    "text": "RESP: CTA BL, no r\/w\/r",
+                    "template": "RESP: CTA BL, no rales, wheeze, or rhonchi"
+                },
+                {
+                    "text": "RESP: no use of acc mm of resp",
+                    "template": "RESP: no use of accessory muscles of respiration"
+                }
+            ]
+        },
+        {
+            "text": "General",
+            "template": "GEN: {children}",
+            "children": [
+                {
+                    "text": "NAD",
+                    "template": "NAD",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "cooperative with exam",
+                    "template": "cooperative with exam",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "well groomed",
+                    "template": "well groomed",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "well developed",
+                    "template": "well developed",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "well nourished",
+                    "template": "well nourished",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "overweight",
+                    "template": "overweight",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "obese",
+                    "template": "obese",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "morbidly obese",
+                    "template": "morbidly obese",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "emaciated",
+                    "template": "emaciated",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "appears to be stated age",
+                    "template": "appears to be stated age",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "appears older than stated age",
+                    "template": "appears older than stated age",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "appears younger than stated age",
+                    "template": "appears younger than stated age",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "HEENT: Head",
+            "template": "HEENT: {children}",
+            "children": [
+                {
+                    "text": "head normocephalic, atraumatic",
+                    "template": "head normocephalic, atraumatic"
+                },
+                {
+                    "text": "head normocephalic",
+                    "template": "head normocephalic",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "head atraumatic",
+                    "template": "head atraumatic",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "bruising",
+                    "template": "bruising",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "scarring",
+                    "template": "scarring",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "face symmetric",
+                    "template": "face symmetric",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "facial droop, R",
+                    "template": "facial droop, R",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "facial droop, L",
+                    "template": "facial droop, L",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Jaw",
+                    "template": "Jaw exam {children}",
+                    "children": [
+                        {
+                            "text": "right",
+                            "template": "(right)"
+                        },
+                        {
+                            "text": "left",
+                            "template": "(left)"
+                        },
+                        {
+                            "text": "bilateral",
+                            "template": "(bilateral)"
+                        },
+                        {
+                            "text": "TMJ clicking noted",
+                            "template": "TMJ clicking noted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "deviation noted",
+                            "template": "deviation noted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tenderness to palpation",
+                            "template": "tenderness to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "claudication",
+                            "template": "claudication",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "HEENT: Eyes",
+            "template": "HEENT: {children}",
+            "children": [
+                {
+                    "text": "EOMI",
+                    "template": "EOMI"
+                },
+                {
+                    "text": "PERRLA",
+                    "template": "PERRLA"
+                },
+                {
+                    "text": "periorbital xanthelasma",
+                    "template": "periorbital xanthelasma",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "hearing grossly intact",
+                    "template": "hearing grossly intact",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Eye exam, inspection",
+                    "template": "Inspection findings {children}",
+                    "children": [
+                        {
+                            "text": "EOMI",
+                            "template": "extraocular movements intact"
+                        },
+                        {
+                            "text": "sclerae anicteric",
+                            "template": "sclerae anicteric",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "conjunctival injection",
+                            "template": "conjunctival injection",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "conjunctival pallor",
+                            "template": "conjunctival pallor",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "purulent discharge",
+                            "template": "purulent discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "drainage present",
+                            "template": "drainage present",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bleeding present",
+                            "template": "bleeding present",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tearing present",
+                            "template": "tearing present",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cataract",
+                            "template": "cataract",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cataracts",
+                            "template": "cataracts",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Vision exam, R",
+                    "template": "Vision exam, R: {children}",
+                    "children": [
+                        {
+                            "text": "blind",
+                            "template": "blind"
+                        },
+                        {
+                            "text": "grossly intact",
+                            "template": "vision grossly intact"
+                        },
+                        {
+                            "text": "visual fields intact",
+                            "template": "visual fields intact"
+                        },
+                        {
+                            "text": "visual acuity impaired",
+                            "template": "visual acuity impaired"
+                        },
+                        {
+                            "text": "blurry vision",
+                            "template": "blurry vision",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "near sighted",
+                            "template": "near sighted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "far sighted",
+                            "template": "far sighted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "macular sparing",
+                            "template": "macular sparing"
+                        },
+                        {
+                            "text": "central vision loss",
+                            "template": "central vision loss"
+                        },
+                        {
+                            "text": "right upper quadrantanopsia",
+                            "template": "right upper quadrantanopsia"
+                        },
+                        {
+                            "text": "right lower quadrantanopsia",
+                            "template": "right lower quadrantanopsia"
+                        },
+                        {
+                            "text": "left upper quadrantanopsia",
+                            "template": "left upper quadrantanopsia"
+                        },
+                        {
+                            "text": "left lower quadrantanopsia",
+                            "template": "left lower quadrantanopsia"
+                        },
+                        {
+                            "text": "right hemianopsia",
+                            "template": "right hemianopsia"
+                        },
+                        {
+                            "text": "left hemianopsia",
+                            "template": "left hemianopsia"
+                        },
+                        {
+                            "text": "homonymous hemianopsia",
+                            "template": "homonymous hemianopsia"
+                        }
+                    ]
+                },
+                {
+                    "text": "Vision exam, L",
+                    "template": "Vision exam, L: {children}",
+                    "children": [
+                        {
+                            "text": "blind",
+                            "template": "blind"
+                        },
+                        {
+                            "text": "grossly intact",
+                            "template": "vision grossly intact"
+                        },
+                        {
+                            "text": "visual fields intact",
+                            "template": "visual fields intact"
+                        },
+                        {
+                            "text": "visual acuity impaired",
+                            "template": "visual acuity impaired"
+                        },
+                        {
+                            "text": "blurry vision",
+                            "template": "blurry vision",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "near sighted",
+                            "template": "near sighted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "far sighted",
+                            "template": "far sighted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "macular sparing",
+                            "template": "macular sparing"
+                        },
+                        {
+                            "text": "central vision loss",
+                            "template": "central vision loss"
+                        },
+                        {
+                            "text": "right upper quadrantanopsia",
+                            "template": "right upper quadrantanopsia"
+                        },
+                        {
+                            "text": "right lower quadrantanopsia",
+                            "template": "right lower quadrantanopsia"
+                        },
+                        {
+                            "text": "left upper quadrantanopsia",
+                            "template": "left upper quadrantanopsia"
+                        },
+                        {
+                            "text": "left lower quadrantanopsia",
+                            "template": "left lower quadrantanopsia"
+                        },
+                        {
+                            "text": "right hemianopsia",
+                            "template": "right hemianopsia"
+                        },
+                        {
+                            "text": "left hemianopsia",
+                            "template": "left hemianopsia"
+                        },
+                        {
+                            "text": "homonymous hemianopsia",
+                            "template": "homonymous hemianopsia"
+                        }
+                    ]
+                },
+                {
+                    "text": "Vision exam, BL",
+                    "template": "Vision exam, BL: {children}",
+                    "children": [
+                        {
+                            "text": "blind",
+                            "template": "blind"
+                        },
+                        {
+                            "text": "grossly intact",
+                            "template": "vision grossly intact"
+                        },
+                        {
+                            "text": "visual fields intact",
+                            "template": "visual fields intact"
+                        },
+                        {
+                            "text": "visual acuity impaired",
+                            "template": "visual acuity impaired"
+                        },
+                        {
+                            "text": "blurry vision",
+                            "template": "blurry vision",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "near sighted",
+                            "template": "near sighted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "far sighted",
+                            "template": "far sighted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "macular sparing",
+                            "template": "macular sparing"
+                        },
+                        {
+                            "text": "central vision loss",
+                            "template": "central vision loss"
+                        },
+                        {
+                            "text": "right upper quadrantanopsia",
+                            "template": "right upper quadrantanopsia"
+                        },
+                        {
+                            "text": "right lower quadrantanopsia",
+                            "template": "right lower quadrantanopsia"
+                        },
+                        {
+                            "text": "left upper quadrantanopsia",
+                            "template": "left upper quadrantanopsia"
+                        },
+                        {
+                            "text": "left lower quadrantanopsia",
+                            "template": "left lower quadrantanopsia"
+                        },
+                        {
+                            "text": "right hemianopsia",
+                            "template": "right hemianopsia"
+                        },
+                        {
+                            "text": "left hemianopsia",
+                            "template": "left hemianopsia"
+                        },
+                        {
+                            "text": "homonymous hemianopsia",
+                            "template": "homonymous hemianopsia"
+                        }
+                    ]
+                },
+                {
+                    "text": "Pupil exam, R",
+                    "template": "Pupil exam, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "anisocoria",
+                            "template": "anisocoria",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "miosis",
+                            "template": "miosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "eccentric",
+                            "template": "eccentric",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "irregularly shaped",
+                            "template": "irregularly shaped",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "midline",
+                            "template": "midline",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "reactive to light",
+                            "template": "reactive to light",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "accommodation intact",
+                            "template": "accommodation intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Pupil exam, L",
+                    "template": "Pupil exam, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "anisocoria",
+                            "template": "anisocoria",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "miosis",
+                            "template": "miosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "eccentric",
+                            "template": "eccentric",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "irregularly shaped",
+                            "template": "irregularly shaped",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "midline",
+                            "template": "midline",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "reactive to light",
+                            "template": "reactive to light",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "accommodation intact",
+                            "template": "accommodation intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Pupil exam, BL",
+                    "template": "Pupil exam, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "anisocoria",
+                            "template": "anisocoria",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "miosis",
+                            "template": "miosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "eccentric",
+                            "template": "eccentric",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "irregularly shaped",
+                            "template": "irregularly shaped",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "midline",
+                            "template": "midline",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "reactive to light",
+                            "template": "reactive to light",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "accommodation intact",
+                            "template": "accommodation intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Fundoscopy, R",
+                    "template": "Fundoscopic exam, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal",
+                            "template": "normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discs flat",
+                            "template": "discs flat",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discs sharp",
+                            "template": "discs sharp",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "AV nicking",
+                            "template": "AV nicking",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "exudates",
+                            "template": "exudates",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hemorrhages",
+                            "template": "hemorrhages",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Fundoscopy, L",
+                    "template": "Fundoscopic exam, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal",
+                            "template": "normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discs flat",
+                            "template": "discs flat",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discs sharp",
+                            "template": "discs sharp",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "AV nicking",
+                            "template": "AV nicking",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "exudates",
+                            "template": "exudates",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hemorrhages",
+                            "template": "hemorrhages",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Fundoscopy, BL",
+                    "template": "Fundoscopic exam, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal",
+                            "template": "normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discs flat",
+                            "template": "discs flat",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discs sharp",
+                            "template": "discs sharp",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "AV nicking",
+                            "template": "AV nicking",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "exudates",
+                            "template": "exudates",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hemorrhages",
+                            "template": "hemorrhages",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "HEENT: Ears",
+            "template": "HEENT: {children}",
+            "children": [
+                {
+                    "text": "hearing grossly intact",
+                    "template": "hearing grossly intact",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Hearing, R",
+                    "template": "Hearing exam, R: {children}",
+                    "children": [
+                        {
+                            "text": "grossly intact",
+                            "template": "grossly intact"
+                        },
+                        {
+                            "text": "intact to whispered voice",
+                            "template": "intact to whispered voice"
+                        },
+                        {
+                            "text": "intact to finger rub",
+                            "template": "intact to finger rub"
+                        },
+                        {
+                            "text": "Weber normal",
+                            "template": "Weber normal"
+                        },
+                        {
+                            "text": "Weber lateralizes to right",
+                            "template": "Weber lateralizes to right"
+                        },
+                        {
+                            "text": "Rinne positive (AC>BC)",
+                            "template": "Rinne Positive (Normal): Air Conduction is greater than bone conduction (AC>BC)"
+                        },
+                        {
+                            "text": "Rinne negative (BC>AC or BC=AC)",
+                            "template": "Rinne Negative (Abnormal): Bone Conduction is greater than (or equal to) air\n                                        conduction (BC>AC or BC=AC)\n                                    "
+                        }
+                    ]
+                },
+                {
+                    "text": "Hearing, L",
+                    "template": "Hearing exam, L: {children}",
+                    "children": [
+                        {
+                            "text": "grossly intact",
+                            "template": "grossly intact"
+                        },
+                        {
+                            "text": "intact to whispered voice",
+                            "template": "intact to whispered voice"
+                        },
+                        {
+                            "text": "intact to finger rub",
+                            "template": "intact to finger rub"
+                        },
+                        {
+                            "text": "Weber normal",
+                            "template": "Weber normal"
+                        },
+                        {
+                            "text": "Weber lateralizes to left",
+                            "template": "Weber lateralizes to left"
+                        },
+                        {
+                            "text": "Rinne positive (AC>BC)",
+                            "template": "Rinne Positive (Normal): Air Conduction is greater than bone conduction (AC>BC)"
+                        },
+                        {
+                            "text": "Rinne negative (BC>AC or BC=AC)",
+                            "template": "Rinne Negative (Abnormal): Bone Conduction is greater than (or equal to) air\n                                        conduction (BC>AC or BC=AC)\n                                    "
+                        }
+                    ]
+                },
+                {
+                    "text": "Hearing, BL",
+                    "template": "Hearing exam, BL: {children}",
+                    "children": [
+                        {
+                            "text": "grossly intact",
+                            "template": "grossly intact"
+                        },
+                        {
+                            "text": "intact to whispered voice",
+                            "template": "intact to whispered voice"
+                        },
+                        {
+                            "text": "intact to finger rub",
+                            "template": "intact to finger rub"
+                        },
+                        {
+                            "text": "Weber normal",
+                            "template": "Weber normal"
+                        },
+                        {
+                            "text": "Rinne positive (AC>BC)",
+                            "template": "Rinne Positive (Normal): Air Conduction is greater than bone conduction (AC>BC)"
+                        },
+                        {
+                            "text": "Rinne negative (BC>AC or BC=AC)",
+                            "template": "Rinne Negative (Abnormal): Bone Conduction is greater than (or equal to) air\n                                        conduction (BC>AC or BC=AC)\n                                    "
+                        }
+                    ]
+                },
+                {
+                    "text": "Tympanic membranes, R",
+                    "template": "Tympanic membrane exam, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal",
+                            "template": "normal"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "exudate",
+                            "template": "exudate",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bulging",
+                            "template": "bulging",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "NL mobility on insufflation",
+                            "template": "normal mobility on insufflation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hypomobile on insufflation",
+                            "template": "hypomobile on insufflation"
+                        },
+                        {
+                            "text": "effusion present",
+                            "template": "effusion present"
+                        },
+                        {
+                            "text": "light reflex dull",
+                            "template": "light reflex dull",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "membrane rupture",
+                            "template": "membrane rupture",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "light reflex absent",
+                            "template": "light reflex absent",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clear discharge",
+                            "template": "clear discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "purulent discharge",
+                            "template": "purulent discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clear drainage",
+                            "template": "clear drainage",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "purulent drainage",
+                            "template": "purulent drainage",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Tympanic membranes, L",
+                    "template": "Tympanic membrane exam, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal",
+                            "template": "normal"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "exudate",
+                            "template": "exudate",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bulging",
+                            "template": "bulging",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "NL mobility on insufflation",
+                            "template": "normal mobility on insufflation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hypomobile on insufflation",
+                            "template": "hypomobile on insufflation"
+                        },
+                        {
+                            "text": "effusion present",
+                            "template": "effusion present"
+                        },
+                        {
+                            "text": "light reflex dull",
+                            "template": "light reflex dull",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "membrane rupture",
+                            "template": "membrane rupture",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "light reflex absent",
+                            "template": "light reflex absent",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clear discharge",
+                            "template": "clear discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "purulent discharge",
+                            "template": "purulent discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clear drainage",
+                            "template": "clear drainage",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "purulent drainage",
+                            "template": "purulent drainage",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Tympanic membranes, BL",
+                    "template": "Tympanic membrane exam, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal",
+                            "template": "normal"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "exudate",
+                            "template": "exudate",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bulging",
+                            "template": "bulging",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "NL mobility on insufflation",
+                            "template": "normal mobility on insufflation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hypomobile on insufflation",
+                            "template": "hypomobile on insufflation"
+                        },
+                        {
+                            "text": "light reflex dull",
+                            "template": "light reflex dull",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "membrane rupture",
+                            "template": "membrane rupture",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "light reflex absent",
+                            "template": "light reflex absent",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "effusion present",
+                            "template": "effusion present"
+                        },
+                        {
+                            "text": "clear discharge",
+                            "template": "clear discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "purulent discharge",
+                            "template": "purulent discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clear drainage",
+                            "template": "clear drainage",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "purulent drainage",
+                            "template": "purulent drainage",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "External ear canals, R",
+                    "template": "External ear canal exam, R: {children}",
+                    "children": [
+                        {
+                            "text": "cerumen present",
+                            "template": "cerumen present",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cerumen impaction",
+                            "template": "cerumen impaction",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cerumen obscuring TM",
+                            "template": "cerumen obscures visualization of tympanic membrane"
+                        },
+                        {
+                            "text": "erythema of external canal",
+                            "template": "erythema of external canal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "external canal red",
+                            "template": "external canal red",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "external canal swollen",
+                            "template": "external canal swollen",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "external canal, pain on otoscopy",
+                            "template": "external canal painful on otoscopy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "drainage",
+                            "template": "drainage",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pus",
+                            "template": "pus",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "External ear canals, L",
+                    "template": "External ear canal exam, L: {children}",
+                    "children": [
+                        {
+                            "text": "cerumen present",
+                            "template": "cerumen present",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cerumen impaction",
+                            "template": "cerumen impaction",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cerumen obscuring TM",
+                            "template": "cerumen obscures visualization of tympanic membrane"
+                        },
+                        {
+                            "text": "erythema of external canal",
+                            "template": "erythema of external canal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "external canal red",
+                            "template": "external canal red",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "external canal swollen",
+                            "template": "external canal swollen",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "external canal, pain on otoscopy",
+                            "template": "external canal painful on otoscopy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "drainage",
+                            "template": "drainage",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pus",
+                            "template": "pus",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "External ear canals, BL",
+                    "template": "External ear canal exam, BL: {children}",
+                    "children": [
+                        {
+                            "text": "cerumen present",
+                            "template": "cerumen present",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cerumen impaction",
+                            "template": "cerumen impaction",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cerumen obscuring TM",
+                            "template": "cerumen obscures visualization of tympanic membrane"
+                        },
+                        {
+                            "text": "erythema of external canal",
+                            "template": "erythema of external canal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "external canal red",
+                            "template": "external canal red",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "external canal swollen",
+                            "template": "external canal swollen",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "external canal, pain on otoscopy",
+                            "template": "external canal painful on otoscopy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "drainage",
+                            "template": "drainage",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pus",
+                            "template": "pus",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "External ear, R",
+                    "template": "External ear exam, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal appearance",
+                            "template": "normal appearance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lesion",
+                            "template": "lesion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scarring",
+                            "template": "scarring",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "actinic keratosis",
+                            "template": "actinic keratosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mass",
+                            "template": "mass",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "External ear, L",
+                    "template": "External ear exam, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal appearance",
+                            "template": "normal appearance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lesion",
+                            "template": "lesion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scarring",
+                            "template": "scarring",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "actinic keratosis",
+                            "template": "actinic keratosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mass",
+                            "template": "mass",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "External ear, BL",
+                    "template": "External ear exam, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal appearance",
+                            "template": "normal appearance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lesion",
+                            "template": "lesion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scarring",
+                            "template": "scarring",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "actinic keratosis",
+                            "template": "actinic keratosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mass",
+                            "template": "mass",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "HEENT: Nose\/Nares\/Sinuses",
+            "template": "HEENT: {children}",
+            "children": [
+                {
+                    "text": "sensation of smell intact",
+                    "template": "sensation of smell intact"
+                },
+                {
+                    "text": "Nares, R",
+                    "template": "Nares, R: {children}",
+                    "children": [
+                        {
+                            "text": "NL nasal mucosa",
+                            "template": "NL nasal mucosa"
+                        },
+                        {
+                            "text": "NL nasal septa",
+                            "template": "NL nasal septa"
+                        },
+                        {
+                            "text": "NL nasal turbinates",
+                            "template": "NL nasal turbinates"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "septal perforation",
+                            "template": "septal perforation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hypertrophy of nasal turbinates",
+                            "template": "hypertrophy of nasal turbinates",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clear drainage",
+                            "template": "clear drainage",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "purulent discharge",
+                            "template": "purulent discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "crusting",
+                            "template": "crusting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "epistaxis",
+                            "template": "epistaxis",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Nares, L",
+                    "template": "Nares, L: {children}",
+                    "children": [
+                        {
+                            "text": "NL nasal mucosa",
+                            "template": "NL nasal mucosa"
+                        },
+                        {
+                            "text": "NL nasal septa",
+                            "template": "NL nasal septa"
+                        },
+                        {
+                            "text": "NL nasal turbinates",
+                            "template": "NL nasal turbinates"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "septal perforation",
+                            "template": "septal perforation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hypertrophy of nasal turbinates",
+                            "template": "hypertrophy of nasal turbinates",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clear drainage",
+                            "template": "clear drainage",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "purulent discharge",
+                            "template": "purulent discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "crusting",
+                            "template": "crusting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "epistaxis",
+                            "template": "epistaxis",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Nares, BL",
+                    "template": "Nares, BL: {children}",
+                    "children": [
+                        {
+                            "text": "NL nasal mucosa",
+                            "template": "NL nasal mucosa"
+                        },
+                        {
+                            "text": "NL nasal septa",
+                            "template": "NL nasal septa"
+                        },
+                        {
+                            "text": "NL nasal turbinates",
+                            "template": "NL nasal turbinates"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "septal perforation",
+                            "template": "septal perforation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hypertrophy of nasal turbinates",
+                            "template": "hypertrophy of nasal turbinates",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clear drainage",
+                            "template": "clear drainage",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "purulent discharge",
+                            "template": "purulent discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "crusting",
+                            "template": "crusting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "epistaxis",
+                            "template": "epistaxis",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Maxillary sinus, R",
+                    "template": "Maxillary sinus, R: {children}",
+                    "children": [
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "transillumination normal",
+                            "template": "transillumination normal"
+                        },
+                        {
+                            "text": "transillumination abnormal",
+                            "template": "transillumination abnormal"
+                        }
+                    ]
+                },
+                {
+                    "text": "Maxillary sinus, L",
+                    "template": "Maxillary sinus, L: {children}",
+                    "children": [
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "transillumination normal",
+                            "template": "transillumination normal"
+                        },
+                        {
+                            "text": "transillumination abnormal",
+                            "template": "transillumination abnormal"
+                        }
+                    ]
+                },
+                {
+                    "text": "Maxillary sinuses, BL",
+                    "template": "Maxillary sinus, BL: {children}",
+                    "children": [
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "transillumination normal",
+                            "template": "transillumination normal"
+                        },
+                        {
+                            "text": "transillumination abnormal",
+                            "template": "transillumination abnormal"
+                        }
+                    ]
+                },
+                {
+                    "text": "Frontal sinus, R",
+                    "template": "Frontal sinus, R: {children}",
+                    "children": [
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "transillumination normal",
+                            "template": "transillumination normal"
+                        },
+                        {
+                            "text": "transillumination abnormal",
+                            "template": "transillumination abnormal"
+                        }
+                    ]
+                },
+                {
+                    "text": "Frontal sinus, L",
+                    "template": "Frontal sinus, L: {children}",
+                    "children": [
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "transillumination normal",
+                            "template": "transillumination normal"
+                        },
+                        {
+                            "text": "transillumination abnormal",
+                            "template": "transillumination abnormal"
+                        }
+                    ]
+                },
+                {
+                    "text": "Frontal sinuses, BL",
+                    "template": "Frontal sinuses, BL: {children}",
+                    "children": [
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "transillumination normal",
+                            "template": "transillumination normal"
+                        },
+                        {
+                            "text": "transillumination abnormal",
+                            "template": "transillumination abnormal"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "HEENT: Mouth\/Throat",
+            "template": "HEENT: {children}",
+            "children": [
+                {
+                    "text": "mucous membranes moist",
+                    "template": "mucous membranes moist"
+                },
+                {
+                    "text": "voice NL",
+                    "template": "voice NL"
+                },
+                {
+                    "text": "Mouth\/Lips",
+                    "template": "mouth\/lips: {children}",
+                    "children": [
+                        {
+                            "text": "aphthous ulcer",
+                            "template": "aphthous ulcer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mucous membranes moist",
+                            "template": "mucous membranes moist",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mucous membranes dry",
+                            "template": "mucous membranes dry",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "normal lips",
+                            "template": "normal lips",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lip ulcer",
+                            "template": "lip ulcer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lips dry",
+                            "template": "lips dry",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lips cracked",
+                            "template": "lips cracked",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "smile symmetric",
+                            "template": "smile symmetric"
+                        },
+                        {
+                            "text": "facial droop, right",
+                            "template": "right facial droop",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "facial droop, left",
+                            "template": "left facial droop",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Teeth\/Gums",
+                    "template": "teeth\/gum: {children}",
+                    "children": [
+                        {
+                            "text": "normal dentition",
+                            "template": "normal dentition"
+                        },
+                        {
+                            "text": "edentulous",
+                            "template": "edentulous",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tooth loss noted",
+                            "template": "tooth loss noted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "dentures",
+                            "template": "dentures",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "gingival hypertrophy",
+                            "template": "gingival hypertrophy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "gingival erythema",
+                            "template": "gingival erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "gingival lesions",
+                            "template": "gingival lesions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bleeding",
+                            "template": "bleeding",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "dental caries noted",
+                            "template": "dental caries noted",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Tongue",
+                    "template": "tongue: {children}",
+                    "children": [
+                        {
+                            "text": "normal",
+                            "template": "normal"
+                        },
+                        {
+                            "text": "tongue midline",
+                            "template": "tongue midline"
+                        },
+                        {
+                            "text": "tongue deviation to right",
+                            "template": "tongue deviation to right"
+                        },
+                        {
+                            "text": "tongue deviation to left",
+                            "template": "tongue deviation to left"
+                        },
+                        {
+                            "text": "beefy",
+                            "template": "beefy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "red",
+                            "template": "red",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lesion present",
+                            "template": "lesion present"
+                        },
+                        {
+                            "text": "bleeding present",
+                            "template": "bleeding present",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "geographic tongue",
+                            "template": "geographic tongue"
+                        },
+                        {
+                            "text": "strawberry tongue",
+                            "template": "strawberry tongue",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Throat\/Oropharynx",
+                    "template": "throat\/oropharynx: {children}",
+                    "children": [
+                        {
+                            "text": "pharyngeal exam NL",
+                            "template": "pharyngeal exam NL"
+                        },
+                        {
+                            "text": "mucous membranes moist",
+                            "template": "mucous membranes moist",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mucous membranes dry",
+                            "template": "mucous membranes dry",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "oropharyngeal erythema",
+                            "template": "oropharyngeal erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "exudates pharynx",
+                            "template": "pharyngeal exudates",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cobblestoning post. pharynx",
+                            "template": "cobblestoning posterior pharynx"
+                        },
+                        {
+                            "text": "R tonsillomegaly",
+                            "template": "right-sided tonsillomegaly",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "L tonsillomegaly",
+                            "template": "left-sided tonsillomegaly",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "oropharyngeal ulcers present",
+                            "template": "oropharyngeal ulcers present"
+                        },
+                        {
+                            "text": "oropharyngeal lesions present",
+                            "template": "oropharyngeal lesions present"
+                        },
+                        {
+                            "text": "uvula midline",
+                            "template": "uvula midline"
+                        },
+                        {
+                            "text": "uvula deviated to the right",
+                            "template": "uvula deviated to the right"
+                        },
+                        {
+                            "text": "uvula deviated to the left",
+                            "template": "uvula deviated to the left"
+                        },
+                        {
+                            "text": "pharyngeal saliva pooling",
+                            "template": "pharyngeal saliva pooling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bleeding w\/dislodged membrane",
+                            "template": "bleeding w\/dislodged membrane",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tightly adhering gray membrane",
+                            "template": "tightly adhering gray membrane"
+                        },
+                        {
+                            "text": "cobblestoning post. pharynx",
+                            "template": "cobblestoning post. pharynx"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Neck",
+            "template": "NECK: {children}",
+            "children": [
+                {
+                    "text": "soft, nontender",
+                    "template": "soft, nontender"
+                },
+                {
+                    "text": "no increased JVP visible",
+                    "template": "no increased JVP visible"
+                },
+                {
+                    "text": "no cervical LN",
+                    "template": "no significant cervical lymphadenopathy"
+                },
+                {
+                    "text": "Lymphatics",
+                    "template": "Lymphatics: {children}",
+                    "children": [
+                        {
+                            "text": "shotty cervical lymphadenopathy",
+                            "template": "shotty cervical lymphadenopathy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "submental lymphadenopathy",
+                            "template": "submental lymphadenopathy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "R submandibular lymphadenopathy",
+                            "template": "R submandibular lymphadenopathy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "L submandibular lymphadenopathy",
+                            "template": "L submandibular lymphadenopathy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "R ant. cervical lymphadenopathy",
+                            "template": "R ant. cervical lymphadenopathy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "L ant. cervical lymphadenopathy",
+                            "template": "L ant. cervical lymphadenopathy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "R preauricular lymphadenopathy",
+                            "template": "R preauricular lymphadenopathy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "L preauricular lymphadenopathy",
+                            "template": "L preauricular lymphadenopathy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "R post. auricular lymphadenopathy",
+                            "template": "R post. auricular lymphadenopathy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "L post. auricular lymphadenopathy",
+                            "template": "L post. auricular lymphadenopathy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "R supraclavicular lymphadenopathy",
+                            "template": "R supraclavicular lymphadenopathy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "L supraclavicular lymphadenopathy",
+                            "template": "L supraclavicular lymphadenopathy",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "obese neck",
+                    "template": "neck obesity",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "thyromegaly",
+                    "template": "thyromegaly",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "JVP abnormality",
+                    "template": "JVP: {children}",
+                    "children": [
+                        {
+                            "text": "JVD",
+                            "template": "jugular venous distension",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "H-J reflux",
+                            "template": "hepato-jugular reflux",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "inspiratory rise (Kussmaul)",
+                            "template": "inspiratory rise (Kussmaul)",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "JVP level (cm)",
+                    "template": "JVP {text} cm above the sternal angle",
+                    "type": "number"
+                },
+                {
+                    "text": "Neck circumference",
+                    "template": "Neck circumference: {text}",
+                    "type": "alpha"
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Respiratory",
+            "template": "RESP: {children}",
+            "children": [
+                {
+                    "text": "no respiratory distress",
+                    "template": "no respiratory distress"
+                },
+                {
+                    "text": "auscultation clear BL",
+                    "template": "clear to auscultation bilaterally"
+                },
+                {
+                    "text": "no wheezes\/rales\/rhonchi",
+                    "template": "no wheezes\/rales\/rhonchi"
+                },
+                {
+                    "text": "percussion clear BL",
+                    "template": "clear to percussion bilaterally"
+                },
+                {
+                    "text": "chest wall symmetric",
+                    "template": "chest wall symmetric"
+                },
+                {
+                    "text": "Abnl lung sounds, R",
+                    "template": "Abnl lung sounds, R: {children}",
+                    "children": [
+                        {
+                            "text": "whoop",
+                            "template": "whoop",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "stridor",
+                            "template": "stridor",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pleural rub",
+                            "template": "pleural rub"
+                        },
+                        {
+                            "text": "basilar rales",
+                            "template": "basilar rales"
+                        },
+                        {
+                            "text": "rales scattered",
+                            "template": "scattered rales"
+                        },
+                        {
+                            "text": "rhonchi scattered",
+                            "template": "scattered rhonchi"
+                        },
+                        {
+                            "text": "diminished breath sounds throughout",
+                            "template": "diminished breath sounds throughout"
+                        },
+                        {
+                            "text": "diminished breath sounds at bases",
+                            "template": "diminished breath sounds at bases"
+                        },
+                        {
+                            "text": "wheezes, expiration",
+                            "template": "expiratory wheezes"
+                        }
+                    ]
+                },
+                {
+                    "text": "Abnl lung sounds, L",
+                    "template": "Abnl lung sounds, L: {children}",
+                    "children": [
+                        {
+                            "text": "whoop",
+                            "template": "whoop",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "stridor",
+                            "template": "stridor",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pleural rub",
+                            "template": "pleural rub"
+                        },
+                        {
+                            "text": "basilar rales",
+                            "template": "basilar rales"
+                        },
+                        {
+                            "text": "rales scattered",
+                            "template": "scattered rales"
+                        },
+                        {
+                            "text": "rhonchi scattered",
+                            "template": "scattered rhonchi"
+                        },
+                        {
+                            "text": "diminished breath sounds throughout",
+                            "template": "diminished breath sounds throughout"
+                        },
+                        {
+                            "text": "diminished breath sounds at bases",
+                            "template": "diminished breath sounds at bases"
+                        },
+                        {
+                            "text": "wheezes, expiration",
+                            "template": "expiratory wheezes"
+                        }
+                    ]
+                },
+                {
+                    "text": "Abnl lung sounds, BL",
+                    "template": "Abnl lung sounds, BL: {children}",
+                    "children": [
+                        {
+                            "text": "whoop",
+                            "template": "whoop",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "stridor",
+                            "template": "stridor",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pleural rub",
+                            "template": "pleural rub"
+                        },
+                        {
+                            "text": "basilar rales",
+                            "template": "basilar rales"
+                        },
+                        {
+                            "text": "rales scattered",
+                            "template": "scattered rales"
+                        },
+                        {
+                            "text": "rhonchi scattered",
+                            "template": "scattered rhonchi"
+                        },
+                        {
+                            "text": "diminished breath sounds throughout",
+                            "template": "diminished breath sounds throughout"
+                        },
+                        {
+                            "text": "diminished breath sounds at bases",
+                            "template": "diminished breath sounds at bases"
+                        },
+                        {
+                            "text": "wheezes, expiration",
+                            "template": "expiratory wheezes"
+                        }
+                    ]
+                },
+                {
+                    "text": "Percussion, R",
+                    "template": "Percussion, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal to percussion",
+                            "template": "normal to percussion"
+                        },
+                        {
+                            "text": "dullness to percussion at base",
+                            "template": "dullness to percussion at base"
+                        },
+                        {
+                            "text": "dull throughout",
+                            "template": "dull to percussion throughout"
+                        }
+                    ]
+                },
+                {
+                    "text": "Percussion, L",
+                    "template": "Percussion, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal to percussion",
+                            "template": "normal to percussion"
+                        },
+                        {
+                            "text": "dullness to percussion at base",
+                            "template": "dullness to percussion at base"
+                        },
+                        {
+                            "text": "dull throughout",
+                            "template": "dull to percussion throughout"
+                        }
+                    ]
+                },
+                {
+                    "text": "Percussion, BL",
+                    "template": "Percussion, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal to percussion",
+                            "template": "normal to percussion"
+                        },
+                        {
+                            "text": "dullness to percussion at base",
+                            "template": "dullness to percussion at base"
+                        },
+                        {
+                            "text": "dull throughout",
+                            "template": "dull to percussion throughout"
+                        }
+                    ]
+                },
+                {
+                    "text": "Breathing dynamics, R",
+                    "template": "Breathing dynamics, R: {children}",
+                    "children": [
+                        {
+                            "text": "labored breathing",
+                            "template": "labored breathing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "accessory muscle use",
+                            "template": "accessory muscle use",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "rib retractions",
+                            "template": "rib retractions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abnormal diaphragm movement",
+                            "template": "abnormal diaphragm movement",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Breathing dynamics, L",
+                    "template": "Breathing dynamics, L: {children}",
+                    "children": [
+                        {
+                            "text": "labored breathing",
+                            "template": "labored breathing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "accessory muscle use",
+                            "template": "accessory muscle use",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "rib retractions",
+                            "template": "rib retractions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abnormal diaphragm movement",
+                            "template": "abnormal diaphragm movement",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Breathing dynamics, BL",
+                    "template": "Breathing dynamics, BL: {children}",
+                    "children": [
+                        {
+                            "text": "labored breathing",
+                            "template": "labored breathing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "accessory muscle use",
+                            "template": "accessory muscle use",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "rib retractions",
+                            "template": "rib retractions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abnormal diaphragm movement",
+                            "template": "abnormal diaphragm movement",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Cardiovascular",
+            "template": "CV: {children}",
+            "children": [
+                {
+                    "text": "RRR, no murmur\/rub\/gallop",
+                    "template": "RRR, no murmur\/rub\/gallop"
+                },
+                {
+                    "text": "S1, S2 findings",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "NL S1",
+                            "template": "NL S1"
+                        },
+                        {
+                            "text": "NL S2",
+                            "template": "NL S2"
+                        },
+                        {
+                            "text": "split S2",
+                            "template": "split S2"
+                        },
+                        {
+                            "text": "split S1",
+                            "template": "split S1"
+                        },
+                        {
+                            "text": "persistently split S2",
+                            "template": "persistently split S2"
+                        },
+                        {
+                            "text": "physiologically split S2",
+                            "template": "physiologically split S2"
+                        },
+                        {
+                            "text": "paradoxically split S2",
+                            "template": "paradoxically split S2"
+                        },
+                        {
+                            "text": "widely split S2",
+                            "template": "widely split S2"
+                        }
+                    ]
+                },
+                {
+                    "text": "S3 gallop",
+                    "template": "S3 gallop",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "S4 gallop",
+                    "template": "S4 gallop",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "regular rate and rhythm",
+                    "template": "regular rate and rhythm"
+                },
+                {
+                    "text": "regular rate",
+                    "template": "regular rate"
+                },
+                {
+                    "text": "regular rhythm",
+                    "template": "regular rhythm"
+                },
+                {
+                    "text": "no murmurs",
+                    "template": "no murmurs"
+                },
+                {
+                    "text": "Murmur grade",
+                    "template": "Murmur grade: {text}\/6",
+                    "type": "number"
+                },
+                {
+                    "text": "Murmur timing\/location",
+                    "template": "murmur {children}",
+                    "children": [
+                        {
+                            "text": "systolic",
+                            "template": "is systolic"
+                        },
+                        {
+                            "text": "diastolic",
+                            "template": "is diastolic"
+                        },
+                        {
+                            "text": "holosystolic",
+                            "template": "is holosystolic"
+                        },
+                        {
+                            "text": "continuous",
+                            "template": "is continuous"
+                        },
+                        {
+                            "text": "best: L sternal border",
+                            "template": "best heard at L sternal border"
+                        },
+                        {
+                            "text": "best: 2nd R ICS",
+                            "template": "best heard near 2nd R ICS"
+                        },
+                        {
+                            "text": "best: xiphoid\/ sternal area",
+                            "template": "best heard at xiphoid\/sternal area"
+                        },
+                        {
+                            "text": "best: apex",
+                            "template": "best heard at apex"
+                        },
+                        {
+                            "text": "best: R sternal border",
+                            "template": "best heard at R sternal border"
+                        },
+                        {
+                            "text": "nonradiating",
+                            "template": "nonradiating"
+                        },
+                        {
+                            "text": "radiates to axilla",
+                            "template": "radiates to axilla"
+                        },
+                        {
+                            "text": "radiates to apex",
+                            "template": "radiates to apex"
+                        },
+                        {
+                            "text": "radiates to carotids",
+                            "template": "radiates to carotids"
+                        },
+                        {
+                            "text": "radiates to R side",
+                            "template": "radiates to R side"
+                        },
+                        {
+                            "text": "radiates to sternum",
+                            "template": "radiates to sternum"
+                        },
+                        {
+                            "text": "radiates to L clavicular area",
+                            "template": "radiates to L clavicular area"
+                        }
+                    ]
+                },
+                {
+                    "text": "no increased JVP visible",
+                    "template": "no increased JVP visible"
+                },
+                {
+                    "text": "JVP level (cm)",
+                    "template": "JVP {text} cm above the sternal angle",
+                    "type": "number"
+                },
+                {
+                    "text": "Heaves, Thrills, Lifts",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "heave",
+                            "template": "heave",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "parasternal lift",
+                            "template": "parasternal lift",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "thrill",
+                            "template": "thrill",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Extra heart sounds",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "extra heart sounds",
+                            "template": "extra heart sounds",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pulmonary ejection sound",
+                            "template": "pulmonary ejection sound",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "aortic ejection sound",
+                            "template": "aortic ejection sound",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "systolic click",
+                            "template": "systolic click",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "midsystolic click",
+                            "template": "midsystolic click",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mid-late systolic click",
+                            "template": "mid-to-late systolic click",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pericardial rub",
+                            "template": "pericardial rub",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "knock",
+                            "template": "knock",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "opening snap",
+                            "template": "opening snap",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "plop",
+                            "template": "plop",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "prosthetic sounds",
+                            "template": "prosthetic sounds",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pacemaker sounds",
+                            "template": "pacemaker sounds",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "PMI nondisplaced",
+                    "template": "PMI nondisplaced"
+                },
+                {
+                    "text": "PMI displaced",
+                    "template": "PMI displaced",
+                    "children": [
+                        {
+                            "text": "laterally",
+                            "template": "laterally"
+                        },
+                        {
+                            "text": "inferiorly",
+                            "template": "inferiorly"
+                        },
+                        {
+                            "text": "superiorly",
+                            "template": "superiorly"
+                        },
+                        {
+                            "text": "parasternally",
+                            "template": "parasternally"
+                        }
+                    ]
+                },
+                {
+                    "text": "Peripheral pulses, R",
+                    "template": "Peripheral pulses, R: {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity normal",
+                            "template": "upper extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lower extremity normal",
+                            "template": "lower extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished in upper extremities",
+                            "template": "diminished in upper extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished in lower extremities",
+                            "template": "diminished in lower extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pulsus paradoxicus",
+                            "template": "pulsus paradoxicus",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Peripheral pulses, L",
+                    "template": "Peripheral pulses, L: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact"
+                        },
+                        {
+                            "text": "upper extremity normal",
+                            "template": "upper extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lower extremity normal",
+                            "template": "lower extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished in upper extremities",
+                            "template": "diminished in upper extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished in lower extremities",
+                            "template": "diminished in lower extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pulsus paradoxicus",
+                            "template": "pulsus paradoxicus",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Peripheral pulses, BL",
+                    "template": "Peripheral pulses, BL: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact"
+                        },
+                        {
+                            "text": "upper extremity normal",
+                            "template": "upper extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lower extremity normal",
+                            "template": "lower extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished in upper extremities",
+                            "template": "diminished in upper extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished in lower extremities",
+                            "template": "diminished in lower extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pulsus paradoxicus",
+                            "template": "pulsus paradoxicus",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Xanthomas, R",
+                    "template": "Xanthomas, R: {children}",
+                    "children": [
+                        {
+                            "text": "eyelids",
+                            "template": "eyelids"
+                        },
+                        {
+                            "text": "periorbital",
+                            "template": "periorbital area"
+                        },
+                        {
+                            "text": "hands",
+                            "template": "hands"
+                        },
+                        {
+                            "text": "Achilles tendons",
+                            "template": "Achilles tendons"
+                        },
+                        {
+                            "text": "feet",
+                            "template": "feet"
+                        },
+                        {
+                            "text": "elbows",
+                            "template": "elbows"
+                        },
+                        {
+                            "text": "knees",
+                            "template": "knees"
+                        },
+                        {
+                            "text": "shoulders",
+                            "template": "shoulders"
+                        },
+                        {
+                            "text": "buttocks",
+                            "template": "buttocks"
+                        }
+                    ]
+                },
+                {
+                    "text": "Xanthomas, L",
+                    "template": "Xanthomas, L: {children}",
+                    "children": [
+                        {
+                            "text": "eyelids",
+                            "template": "eyelids"
+                        },
+                        {
+                            "text": "periorbital",
+                            "template": "periorbital area"
+                        },
+                        {
+                            "text": "hands",
+                            "template": "hands"
+                        },
+                        {
+                            "text": "Achilles tendons",
+                            "template": "Achilles tendons"
+                        },
+                        {
+                            "text": "feet",
+                            "template": "feet"
+                        },
+                        {
+                            "text": "elbows",
+                            "template": "elbows"
+                        },
+                        {
+                            "text": "knees",
+                            "template": "knees"
+                        },
+                        {
+                            "text": "shoulders",
+                            "template": "shoulders"
+                        },
+                        {
+                            "text": "buttocks",
+                            "template": "buttocks"
+                        }
+                    ]
+                },
+                {
+                    "text": "Xanthomas, BL",
+                    "template": "Xanthomas, BL: {children}",
+                    "children": [
+                        {
+                            "text": "eyelids",
+                            "template": "eyelids"
+                        },
+                        {
+                            "text": "periorbital",
+                            "template": "periorbital area"
+                        },
+                        {
+                            "text": "hands",
+                            "template": "hands"
+                        },
+                        {
+                            "text": "Achilles tendons",
+                            "template": "Achilles tendons"
+                        },
+                        {
+                            "text": "feet",
+                            "template": "feet"
+                        },
+                        {
+                            "text": "elbows",
+                            "template": "elbows"
+                        },
+                        {
+                            "text": "knees",
+                            "template": "knees"
+                        },
+                        {
+                            "text": "shoulders",
+                            "template": "shoulders"
+                        },
+                        {
+                            "text": "buttocks",
+                            "template": "buttocks"
+                        }
+                    ]
+                },
+                {
+                    "text": "LE venous stasis changes",
+                    "template": "LE venous stasis changes",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "varicose veins",
+                    "template": "varicose veins",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "LE varicose veins, R",
+                    "template": "LE varicose veins, R: {children}",
+                    "children": [
+                        {
+                            "text": "present",
+                            "template": "present",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "LE varicose veins, L",
+                    "template": "LE varicose veins, L: {children}",
+                    "children": [
+                        {
+                            "text": "present",
+                            "template": "present",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "LE varicose veins, BL",
+                    "template": "LE varicose veins, BL: {children}",
+                    "children": [
+                        {
+                            "text": "present",
+                            "template": "present",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "Other findings: {text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Cardiovascular, pulses",
+            "template": "CV: {children}",
+            "children": [
+                {
+                    "text": "pulse rate and rhythm regular",
+                    "template": "pulse rate and rhythm regular"
+                },
+                {
+                    "text": "pulse rate regular",
+                    "template": "pulse rate regular"
+                },
+                {
+                    "text": "pulse rhythm regular",
+                    "template": "pulse rhythm regular"
+                },
+                {
+                    "text": "Temporal artery, R",
+                    "template": "Temporal artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Temporal artery, L",
+                    "template": "Temporal artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Temporal arteries, BL",
+                    "template": "Temporal arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Carotid artery, R",
+                    "template": "Carotid artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "delayed upstroke",
+                            "template": "delayed upstroke"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Carotid artery, L",
+                    "template": "Carotid artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "delayed upstroke",
+                            "template": "delayed upstroke"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Carotid arteries, BL",
+                    "template": "Carotid arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "delayed upstroke",
+                            "template": "delayed upstroke"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Brachial artery, R",
+                    "template": "Brachial artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Brachial artery, L",
+                    "template": "Brachial artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Brachial arteries, BL",
+                    "template": "Brachial arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Radial artery, R",
+                    "template": "Radial artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "waterhammer",
+                            "template": "waterhammer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bisferiens",
+                            "template": "bisferiens",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Radial artery, L",
+                    "template": "Radial artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "waterhammer",
+                            "template": "waterhammer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bisferiens",
+                            "template": "bisferiens",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Radial arteries, BL",
+                    "template": "Radial arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "waterhammer",
+                            "template": "waterhammer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bisferiens",
+                            "template": "bisferiens",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Femoral artery, R",
+                    "template": "Femoral artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Femoral artery, L",
+                    "template": "Femoral artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Femoral arteries, BL",
+                    "template": "Femoral arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Popliteal artery, R",
+                    "template": "Popliteal artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Popliteal artery, L",
+                    "template": "Popliteal artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Popliteal arteries, BL",
+                    "template": "Popliteal arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Dorsalis pedis artery, R",
+                    "template": "Dorsalis pedis artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Dorsalis pedis artery, L",
+                    "template": "Dorsalis pedis artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Dorsalis pedis arteries, BL",
+                    "template": "Dorsalis pedis arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Posterior tibial, R",
+                    "template": "Posterior tibial, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Posterior tibial, L",
+                    "template": "Posterior tibial, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Posterior tibial arteries, BL",
+                    "template": "Posterior tibial arteries, BL {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Renal artery, R",
+                    "template": "Renal artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "bruit present",
+                            "template": "bruit present"
+                        },
+                        {
+                            "text": "palpable pulse",
+                            "template": "palpable pulse",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Renal artery, L",
+                    "template": "Renal artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "bruit present",
+                            "template": "bruit present"
+                        },
+                        {
+                            "text": "palpable pulse",
+                            "template": "palpable pulse",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Renal arteries, BL",
+                    "template": "Renal arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "bruit present",
+                            "template": "bruit present"
+                        },
+                        {
+                            "text": "palpable pulse",
+                            "template": "palpable pulse",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Aorta",
+                    "template": "Aorta: {children}",
+                    "children": [
+                        {
+                            "text": "enlargement",
+                            "template": "enlargement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Gastrointestinal",
+            "template": "GI: {children}",
+            "children": [
+                {
+                    "text": "bowel sounds intact throughout",
+                    "template": "bowel sounds intact throughout"
+                },
+                {
+                    "text": "borborygmi",
+                    "template": "borborygmi",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "soft, nontender to palpation",
+                    "template": "soft, nontender to palpation"
+                },
+                {
+                    "text": "no rebound\/guarding\/rigidity",
+                    "template": "no rebound\/guarding\/rigidity"
+                },
+                {
+                    "text": "rebound",
+                    "template": "rebound",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "voluntary guarding",
+                    "template": "voluntary guarding",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "involuntary guarding",
+                    "template": "involuntary guarding",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "rigidity",
+                    "template": "rigidity",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "hepatomegaly",
+                    "template": "hepatomegaly",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "splenomegaly",
+                    "template": "splenomegaly",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "masses",
+                    "template": "masses",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "hepatojugular reflex",
+                    "template": "hepatojugular reflex",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Liver",
+                    "template": "Liver: {children}",
+                    "children": [
+                        {
+                            "text": "normal",
+                            "template": "normal"
+                        },
+                        {
+                            "text": "caput medusae",
+                            "template": "caput medusae",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spider angiomata",
+                            "template": "spider angiomata",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "palpable",
+                            "template": "palpable",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "edge palpable below costal margin",
+                            "template": "edge palpable below costal margin",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hepatomegaly",
+                            "template": "hepatomegaly",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bulging flanks",
+                            "template": "bulging flanks",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flank dullness",
+                            "template": "flank dullness",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "shifting dullness",
+                            "template": "shifting dullness",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fluid wave",
+                            "template": "fluid wave",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ascites",
+                            "template": "ascites",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Spleen",
+                    "template": "Spleen: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "palpable",
+                            "template": "palpable",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "splenomegaly",
+                            "template": "splenomegaly",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Abdominal exam: inspection",
+                    "template": "Abdominal exam inspection: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities on inspection",
+                            "template": "no abnormalities on inspection"
+                        },
+                        {
+                            "text": "distended",
+                            "template": "distended",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flat",
+                            "template": "flat",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "obese",
+                            "template": "obese",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scaphoid",
+                            "template": "scaphoid",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scarring",
+                            "template": "scarring",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "rash",
+                            "template": "rash",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "umbilical hernia",
+                            "template": "umbilical hernia",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ventral hernia",
+                            "template": "ventral hernia",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spider angiomata",
+                            "template": "spider angiomata",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "caput medusae",
+                            "template": "caput medusae",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Abdominal exam: bowel sounds",
+                    "template": "Bowel sounds: {children}",
+                    "children": [
+                        {
+                            "text": "present on auscultation",
+                            "template": "present on auscultation"
+                        },
+                        {
+                            "text": "normoactive",
+                            "template": "normoactive"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "absent",
+                            "template": "absent",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "high pitched",
+                            "template": "high pitched",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Abdominal exam: tenderness",
+                    "template": "Abdominal pain: {children}",
+                    "children": [
+                        {
+                            "text": "no tenderness noted on exam",
+                            "template": "no tenderness noted on exam"
+                        },
+                        {
+                            "text": "tenderness at rest",
+                            "template": "tenderness present at rest",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tenderness with palpation",
+                            "template": "tenderness present with palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tenderness with movement",
+                            "template": "tenderness present with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mild",
+                            "template": "mild pain present"
+                        },
+                        {
+                            "text": "moderate",
+                            "template": "moderate pain present"
+                        },
+                        {
+                            "text": "severe",
+                            "template": "severe pain present"
+                        },
+                        {
+                            "text": "present throughout",
+                            "template": "pain present throughout"
+                        },
+                        {
+                            "text": "right sided tenderness",
+                            "template": "right sided tenderness present"
+                        },
+                        {
+                            "text": "left sided tenderness",
+                            "template": "left sided tenderness present"
+                        },
+                        {
+                            "text": "midepigastric tenderness",
+                            "template": "midepigastric tenderness present"
+                        },
+                        {
+                            "text": "RUQ tenderness",
+                            "template": "RUQ tenderness present"
+                        },
+                        {
+                            "text": "LUQ tenderness",
+                            "template": "LUQ tenderness present"
+                        },
+                        {
+                            "text": "hypogastric tenderness",
+                            "template": "hypogastric tenderness present"
+                        },
+                        {
+                            "text": "RLQ tenderness",
+                            "template": "RLQ tenderness present"
+                        },
+                        {
+                            "text": "LLQ tenderness",
+                            "template": "LLQ tenderness present"
+                        },
+                        {
+                            "text": "periumbilical tenderness",
+                            "template": "periumbilical tenderness present"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Dermatologic\/Lymphatic",
+            "template": "DERM: {children}",
+            "children": [
+                {
+                    "text": "diaphoresis",
+                    "template": "diaphoresis",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "periorbital xanthelasma",
+                    "template": "periorbital xanthelasma",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "xanthomas",
+                    "template": "xanthomas",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "cyanosis",
+                    "template": "cyanosis",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Cyanosis location",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "perioral cyanosis",
+                            "template": "perioral cyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acral cyanosis",
+                            "template": "acral cyanosis",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "decreased hair LE",
+                    "template": "decreased hair LE",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "stasis dermatitis R LE",
+                    "template": "stasis dermatitis R LE",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "stasis dermatitis L LE",
+                    "template": "stasis dermatitis L LE",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "dry skin",
+                    "template": "dry skin",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "clubbing",
+                    "template": "clubbing",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "petechiae",
+                    "template": "petechiae",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "lymphadenopathy",
+                    "template": "lymphadenopathy",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Extremities",
+            "template": "EXT: {children}",
+            "children": [
+                {
+                    "text": "no C\/C\/E",
+                    "template": "no C\/C\/E"
+                },
+                {
+                    "text": "cyanosis",
+                    "template": "cyanosis",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "clubbing",
+                    "template": "clubbing",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "edema",
+                    "template": "edema",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "anasarca",
+                    "template": "anasarca",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Upper extremity C\/C\/E, R",
+                    "template": "Upper extremity C\/C\/E, R: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity C\/C\/E, L",
+                    "template": "Upper extremity C\/C\/E, L: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremities C\/C\/E, BL",
+                    "template": "Upper extremities C\/C\/E, BL: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity C\/C\/E, R",
+                    "template": "Lower extremity C\/C\/E, R: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity C\/C\/E, L",
+                    "template": "Lower extremity C\/C\/E, L: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremities C\/C\/E, BL",
+                    "template": "Lower extremities C\/C\/E, BL: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "full range of motion throughout",
+                    "template": "full range of motion throughout"
+                },
+                {
+                    "text": "upper ext strength intact BL",
+                    "template": "upper extremity strength intact BL",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Upper extremity, ROM, R",
+                    "template": "Upper extremity, range of motion, R: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity, ROM, L",
+                    "template": "Upper extremity, range of motion, L: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremities, ROM, BL",
+                    "template": "Upper extremities, range of motion, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "lower ext strength intact BL",
+                    "template": "lower extremity strength intact BL",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Lower extremity, ROM, R",
+                    "template": "Lower extremity, range of motion, R: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity, ROM, L",
+                    "template": "Lower extremity, range of motion, L: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity, ROM, BL",
+                    "template": "Lower extremity, range of motion, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "upper extremity strength intact BL",
+                    "template": "Upper extremity strength intact BL",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Upper extremity strength, R",
+                    "template": "Upper extremity strength, R: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity strength, L",
+                    "template": "Upper extremity strength, L: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity strength, BL",
+                    "template": "Upper extremity strength, BL: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "lower extremity strength intact BL",
+                    "template": "Lower extremity strength intact BL",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Lower extremity strength, R",
+                    "template": "Lower extremity strength, R: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity strength, L",
+                    "template": "Lower extremity strength, L: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity strength, BL",
+                    "template": "Lower extremity strength, BL: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Musculoskeletal",
+            "template": "MUSC\/SKEL: {children}",
+            "children": [
+                {
+                    "text": "muscle strength NL throughout",
+                    "template": "muscle strength NL throughout"
+                },
+                {
+                    "text": "NL upper extremity exam BL",
+                    "template": "NL upper extremity exam BL",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "NL lower extremity exam BL",
+                    "template": "NL lower extremity exam BL",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Upper extremity, R",
+                    "template": "Upper extremity exam, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "normal strength and tone"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity, L",
+                    "template": "Upper extremity exam, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "normal strength and tone"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity, BL",
+                    "template": "Upper extremity exam, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "normal strength and tone"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity, R",
+                    "template": "Lower extremity exam, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "normal strength and tone"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity, L",
+                    "template": "Lower extremity exam, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "normal strength and tone"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity, BL",
+                    "template": "Lower extremity exam, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "normal strength and tone"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Back, R",
+                    "template": "Back exam, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sacral edema",
+                            "template": "sacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "presacral edema",
+                            "template": "presacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "costovertebral angle tenderness",
+                            "template": "costovertebral angle tenderness",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Back, L",
+                    "template": "Back exam, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sacral edema",
+                            "template": "sacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "presacral edema",
+                            "template": "presacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "costovertebral angle tenderness",
+                            "template": "costovertebral angle tenderness",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Back, BL",
+                    "template": "Back exam, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sacral edema",
+                            "template": "sacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "presacral edema",
+                            "template": "presacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "costovertebral angle tenderness",
+                            "template": "costovertebral angle tenderness",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Neuro: Cranial nerves",
+            "template": "NEURO: {children}",
+            "children": [
+                {
+                    "text": "CN II-XII intact and nonfocal",
+                    "template": "CN II-XII intact and nonfocal"
+                },
+                {
+                    "text": "CN I: sense of smell",
+                    "template": "sense of smell (CN I) {children}",
+                    "children": [
+                        {
+                            "text": "not assessed",
+                            "template": "not assessed"
+                        },
+                        {
+                            "text": "intact and nonfocal",
+                            "template": "intact and nonfocal"
+                        },
+                        {
+                            "text": "decreased sense of smell",
+                            "template": "decreased sense of smell"
+                        },
+                        {
+                            "text": "anosmia",
+                            "template": "anosmia",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN II, R eye visual acuity\/fields",
+                    "template": "R eye visual acuity\/fields (CN II) {children}",
+                    "children": [
+                        {
+                            "text": "visual acuity intact BL",
+                            "template": "visual acuity intact BL"
+                        },
+                        {
+                            "text": "decreased visual acuity BL",
+                            "template": "decreased visual acuity BL"
+                        },
+                        {
+                            "text": "monocular blindness noted",
+                            "template": "monocular blindness noted"
+                        },
+                        {
+                            "text": "R hemianopsia noted",
+                            "template": "R hemianopsia noted"
+                        },
+                        {
+                            "text": "L hemianopsia noted",
+                            "template": "L hemianopsia noted"
+                        },
+                        {
+                            "text": "R upper quadrantanopsia noted",
+                            "template": "R upper quadrantanopsia noted"
+                        },
+                        {
+                            "text": "L upper quadrantanopsia noted",
+                            "template": "L upper quadrantanopsia noted"
+                        },
+                        {
+                            "text": "R lower quadrantanopsia noted",
+                            "template": "R lower quadrantanopsia noted"
+                        },
+                        {
+                            "text": "L upper quadrantanopsia noted",
+                            "template": "L upper quadrantanopsia noted"
+                        },
+                        {
+                            "text": "L lower quadrantanopsia noted",
+                            "template": "L lower quadrantanopsia noted"
+                        },
+                        {
+                            "text": "macular sparing noted",
+                            "template": "macular sparing noted"
+                        },
+                        {
+                            "text": "central vision loss noted",
+                            "template": "central vision loss noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN II, L eye visual acuity\/fields",
+                    "template": "L eye visual acuity\/fields (CN II) {children}",
+                    "children": [
+                        {
+                            "text": "visual acuity intact BL",
+                            "template": "visual acuity intact BL"
+                        },
+                        {
+                            "text": "decreased visual acuity BL",
+                            "template": "decreased visual acuity BL"
+                        },
+                        {
+                            "text": "monocular blindness noted",
+                            "template": "monocular blindness noted"
+                        },
+                        {
+                            "text": "R hemianopsia noted",
+                            "template": "R hemianopsia noted"
+                        },
+                        {
+                            "text": "L hemianopsia noted",
+                            "template": "L hemianopsia noted"
+                        },
+                        {
+                            "text": "R upper quadrantanopsia noted",
+                            "template": "R upper quadrantanopsia noted"
+                        },
+                        {
+                            "text": "L upper quadrantanopsia noted",
+                            "template": "L upper quadrantanopsia noted"
+                        },
+                        {
+                            "text": "R lower quadrantanopsia noted",
+                            "template": "R lower quadrantanopsia noted"
+                        },
+                        {
+                            "text": "L upper quadrantanopsia noted",
+                            "template": "L upper quadrantanopsia noted"
+                        },
+                        {
+                            "text": "L lower quadrantanopsia noted",
+                            "template": "L lower quadrantanopsia noted"
+                        },
+                        {
+                            "text": "macular sparing noted",
+                            "template": "macular sparing noted"
+                        },
+                        {
+                            "text": "central vision loss noted",
+                            "template": "central vision loss noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN II, BL visual acuity\/fields",
+                    "template": "BL visual acuity\/fields (CN II) {children}",
+                    "children": [
+                        {
+                            "text": "visual acuity intact BL",
+                            "template": "visual acuity intact BL"
+                        },
+                        {
+                            "text": "decreased visual acuity BL",
+                            "template": "decreased visual acuity BL"
+                        },
+                        {
+                            "text": "monocular blindness noted",
+                            "template": "monocular blindness noted"
+                        },
+                        {
+                            "text": "R hemianopsia noted",
+                            "template": "R hemianopsia noted"
+                        },
+                        {
+                            "text": "L hemianopsia noted",
+                            "template": "L hemianopsia noted"
+                        },
+                        {
+                            "text": "R upper quadrantanopsia noted",
+                            "template": "R upper quadrantanopsia noted"
+                        },
+                        {
+                            "text": "L upper quadrantanopsia noted",
+                            "template": "L upper quadrantanopsia noted"
+                        },
+                        {
+                            "text": "R lower quadrantanopsia noted",
+                            "template": "R lower quadrantanopsia noted"
+                        },
+                        {
+                            "text": "L upper quadrantanopsia noted",
+                            "template": "L upper quadrantanopsia noted"
+                        },
+                        {
+                            "text": "L lower quadrantanopsia noted",
+                            "template": "L lower quadrantanopsia noted"
+                        },
+                        {
+                            "text": "macular sparing noted",
+                            "template": "macular sparing noted"
+                        },
+                        {
+                            "text": "central vision loss noted",
+                            "template": "central vision loss noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN II: R pupil",
+                    "template": "R pupil (CN II) {children}",
+                    "children": [
+                        {
+                            "text": "normal size",
+                            "template": "normal in size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged"
+                        },
+                        {
+                            "text": "miosis noted",
+                            "template": "miosis noted"
+                        },
+                        {
+                            "text": "eccentric",
+                            "template": "eccentric"
+                        },
+                        {
+                            "text": "irregularly shaped",
+                            "template": "irregularly shaped"
+                        },
+                        {
+                            "text": "midline",
+                            "template": "midline"
+                        },
+                        {
+                            "text": "reactive to light",
+                            "template": "reactive to light"
+                        },
+                        {
+                            "text": "accommodation intact",
+                            "template": "accommodation intact"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN II: L pupil",
+                    "template": "L pupil (CN II) {children}",
+                    "children": [
+                        {
+                            "text": "normal size",
+                            "template": "normal in size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged"
+                        },
+                        {
+                            "text": "miosis noted",
+                            "template": "miosis noted"
+                        },
+                        {
+                            "text": "eccentric",
+                            "template": "eccentric"
+                        },
+                        {
+                            "text": "irregularly shaped",
+                            "template": "irregularly shaped"
+                        },
+                        {
+                            "text": "midline",
+                            "template": "midline"
+                        },
+                        {
+                            "text": "reactive to light",
+                            "template": "reactive to light"
+                        },
+                        {
+                            "text": "accommodation intact",
+                            "template": "accommodation intact"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN II: BL pupils",
+                    "template": "BL pupils (CN II) {children}",
+                    "children": [
+                        {
+                            "text": "normal size",
+                            "template": "normal in size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged"
+                        },
+                        {
+                            "text": "miosis noted",
+                            "template": "miosis noted"
+                        },
+                        {
+                            "text": "eccentric",
+                            "template": "eccentric"
+                        },
+                        {
+                            "text": "irregularly shaped",
+                            "template": "irregularly shaped"
+                        },
+                        {
+                            "text": "midline",
+                            "template": "midline"
+                        },
+                        {
+                            "text": "reactive to light",
+                            "template": "reactive to light"
+                        },
+                        {
+                            "text": "accommodation intact",
+                            "template": "accommodation intact"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN III\/IV\/VI: R eye",
+                    "template": "R eye (CN III\/IV\/VI) {children}",
+                    "children": [
+                        {
+                            "text": "extraocular mvmts intact, nonfocal",
+                            "template": "extraocular movements intact and nonfocal"
+                        },
+                        {
+                            "text": "upward gaze intact",
+                            "template": "upward gaze intact"
+                        },
+                        {
+                            "text": "upward gaze impaired",
+                            "template": "upward gaze impaired"
+                        },
+                        {
+                            "text": "downward gaze intact",
+                            "template": "downward gaze intact"
+                        },
+                        {
+                            "text": "downward gaze impaired",
+                            "template": "downward gaze impaired"
+                        },
+                        {
+                            "text": "inward gaze intact",
+                            "template": "inward gaze intact"
+                        },
+                        {
+                            "text": "inward gaze impaired",
+                            "template": "inward gaze impaired"
+                        },
+                        {
+                            "text": "outward gaze intact",
+                            "template": "outward gaze intact"
+                        },
+                        {
+                            "text": "outward gaze impaired",
+                            "template": "outward gaze impaired"
+                        },
+                        {
+                            "text": "dysconjugate gaze noted",
+                            "template": "dysconjugate gaze noted"
+                        },
+                        {
+                            "text": "no horizontal nystagmus",
+                            "template": "no horizontal nystagmus"
+                        },
+                        {
+                            "text": "horizontal nystagmus present at rest",
+                            "template": "horizontal nystagmus present at rest"
+                        },
+                        {
+                            "text": "horizontal nystagmus elicited",
+                            "template": "horizontal nystagmus elicited"
+                        },
+                        {
+                            "text": "no vertical nystagmus",
+                            "template": "no vertical nystagmus"
+                        },
+                        {
+                            "text": "vertical nystagmus present at rest",
+                            "template": "vertical nystagmus present at rest"
+                        },
+                        {
+                            "text": "vertical nystagmus elicited",
+                            "template": "vertical nystagmus elicited"
+                        },
+                        {
+                            "text": "miosis noted",
+                            "template": "miosis noted"
+                        },
+                        {
+                            "text": "lid lag not present",
+                            "template": "lid lag not present"
+                        },
+                        {
+                            "text": "ptosis noted",
+                            "template": "ptosis noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN III\/IV\/VI: L eye",
+                    "template": "L eye (CN III\/IV\/VI) {children}",
+                    "children": [
+                        {
+                            "text": "extraocular mvmts intact, nonfocal",
+                            "template": "extraocular movements intact and nonfocal"
+                        },
+                        {
+                            "text": "upward gaze intact",
+                            "template": "upward gaze intact"
+                        },
+                        {
+                            "text": "upward gaze impaired",
+                            "template": "upward gaze impaired"
+                        },
+                        {
+                            "text": "downward gaze intact",
+                            "template": "downward gaze intact"
+                        },
+                        {
+                            "text": "downward gaze impaired",
+                            "template": "downward gaze impaired"
+                        },
+                        {
+                            "text": "inward gaze intact",
+                            "template": "inward gaze intact"
+                        },
+                        {
+                            "text": "inward gaze impaired",
+                            "template": "inward gaze impaired"
+                        },
+                        {
+                            "text": "outward gaze intact",
+                            "template": "outward gaze intact"
+                        },
+                        {
+                            "text": "outward gaze impaired",
+                            "template": "outward gaze impaired"
+                        },
+                        {
+                            "text": "dysconjugate gaze noted",
+                            "template": "dysconjugate gaze noted"
+                        },
+                        {
+                            "text": "no horizontal nystagmus",
+                            "template": "no horizontal nystagmus"
+                        },
+                        {
+                            "text": "horizontal nystagmus present at rest",
+                            "template": "horizontal nystagmus present at rest"
+                        },
+                        {
+                            "text": "horizontal nystagmus elicited",
+                            "template": "horizontal nystagmus elicited"
+                        },
+                        {
+                            "text": "no vertical nystagmus",
+                            "template": "no vertical nystagmus"
+                        },
+                        {
+                            "text": "vertical nystagmus present at rest",
+                            "template": "vertical nystagmus present at rest"
+                        },
+                        {
+                            "text": "vertical nystagmus elicited",
+                            "template": "vertical nystagmus elicited"
+                        },
+                        {
+                            "text": "miosis noted",
+                            "template": "miosis noted"
+                        },
+                        {
+                            "text": "lid lag not present",
+                            "template": "lid lag not present"
+                        },
+                        {
+                            "text": "ptosis noted",
+                            "template": "ptosis noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN III\/IV\/VI: BL eyes",
+                    "template": "BL (CN III\/IV\/VI) {children}",
+                    "children": [
+                        {
+                            "text": "extraocular mvmts intact, nonfocal",
+                            "template": "extraocular movements intact and nonfocal"
+                        },
+                        {
+                            "text": "upward gaze intact",
+                            "template": "upward gaze intact"
+                        },
+                        {
+                            "text": "upward gaze impaired",
+                            "template": "upward gaze impaired"
+                        },
+                        {
+                            "text": "downward gaze intact",
+                            "template": "downward gaze intact"
+                        },
+                        {
+                            "text": "downward gaze impaired",
+                            "template": "downward gaze impaired"
+                        },
+                        {
+                            "text": "inward gaze intact",
+                            "template": "inward gaze intact"
+                        },
+                        {
+                            "text": "inward gaze impaired",
+                            "template": "inward gaze impaired"
+                        },
+                        {
+                            "text": "outward gaze intact",
+                            "template": "outward gaze intact"
+                        },
+                        {
+                            "text": "outward gaze impaired",
+                            "template": "outward gaze impaired"
+                        },
+                        {
+                            "text": "dysconjugate gaze noted",
+                            "template": "dysconjugate gaze noted"
+                        },
+                        {
+                            "text": "no horizontal nystagmus",
+                            "template": "no horizontal nystagmus"
+                        },
+                        {
+                            "text": "horizontal nystagmus present at rest",
+                            "template": "horizontal nystagmus present at rest"
+                        },
+                        {
+                            "text": "horizontal nystagmus elicited",
+                            "template": "horizontal nystagmus elicited"
+                        },
+                        {
+                            "text": "no vertical nystagmus",
+                            "template": "no vertical nystagmus"
+                        },
+                        {
+                            "text": "vertical nystagmus present at rest",
+                            "template": "vertical nystagmus present at rest"
+                        },
+                        {
+                            "text": "vertical nystagmus elicited",
+                            "template": "vertical nystagmus elicited"
+                        },
+                        {
+                            "text": "miosis noted",
+                            "template": "miosis noted"
+                        },
+                        {
+                            "text": "lid lag not present",
+                            "template": "lid lag not present"
+                        },
+                        {
+                            "text": "ptosis noted",
+                            "template": "ptosis noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN V: R",
+                    "template": "R (CN V) {children}",
+                    "children": [
+                        {
+                            "text": "corneal reflex intact",
+                            "template": "corneal reflex intact"
+                        },
+                        {
+                            "text": "absent corneal reflex",
+                            "template": "absent corneal reflex"
+                        },
+                        {
+                            "text": "temporal muscle strength intact",
+                            "template": "temporal muscle strength intact"
+                        },
+                        {
+                            "text": "decreased temporal muscle strength",
+                            "template": "decreased temporal muscle strength"
+                        },
+                        {
+                            "text": "masseter muscle strength intact",
+                            "template": "masseter muscle strength intact"
+                        },
+                        {
+                            "text": "decreased masseter muscle strength",
+                            "template": "decreased masseter muscle strength"
+                        },
+                        {
+                            "text": "forehead sensation intact",
+                            "template": "forehead sensation intact"
+                        },
+                        {
+                            "text": "decreased forehead sensation",
+                            "template": "decreased forehead sensation"
+                        },
+                        {
+                            "text": "cheek sensation intact",
+                            "template": "cheek sensation intact"
+                        },
+                        {
+                            "text": "decreased cheek sensation",
+                            "template": "decreased cheek sensation"
+                        },
+                        {
+                            "text": "jaw strength intact",
+                            "template": "jaw strength intact"
+                        },
+                        {
+                            "text": "decreased jaw strength",
+                            "template": "decreased jaw strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN V: L",
+                    "template": "L (CN V) {children}",
+                    "children": [
+                        {
+                            "text": "corneal reflex intact",
+                            "template": "corneal reflex intact"
+                        },
+                        {
+                            "text": "absent corneal reflex",
+                            "template": "absent corneal reflex"
+                        },
+                        {
+                            "text": "temporal muscle strength intact",
+                            "template": "temporal muscle strength intact"
+                        },
+                        {
+                            "text": "decreased temporal muscle strength",
+                            "template": "decreased temporal muscle strength"
+                        },
+                        {
+                            "text": "masseter muscle strength intact",
+                            "template": "masseter muscle strength intact"
+                        },
+                        {
+                            "text": "decreased masseter muscle strength",
+                            "template": "decreased masseter muscle strength"
+                        },
+                        {
+                            "text": "forehead sensation intact",
+                            "template": "forehead sensation intact"
+                        },
+                        {
+                            "text": "decreased forehead sensation",
+                            "template": "decreased forehead sensation"
+                        },
+                        {
+                            "text": "cheek sensation intact",
+                            "template": "cheek sensation intact"
+                        },
+                        {
+                            "text": "decreased cheek sensation",
+                            "template": "decreased cheek sensation"
+                        },
+                        {
+                            "text": "jaw strength intact",
+                            "template": "jaw strength intact"
+                        },
+                        {
+                            "text": "decreased jaw strength",
+                            "template": "decreased jaw strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN V: BL",
+                    "template": "BL (CN V) {children}",
+                    "children": [
+                        {
+                            "text": "corneal reflex intact",
+                            "template": "corneal reflex intact"
+                        },
+                        {
+                            "text": "absent corneal reflex",
+                            "template": "absent corneal reflex"
+                        },
+                        {
+                            "text": "temporal muscle strength intact",
+                            "template": "temporal muscle strength intact"
+                        },
+                        {
+                            "text": "decreased temporal muscle strength",
+                            "template": "decreased temporal muscle strength"
+                        },
+                        {
+                            "text": "masseter muscle strength intact",
+                            "template": "masseter muscle strength intact"
+                        },
+                        {
+                            "text": "decreased masseter muscle strength",
+                            "template": "decreased masseter muscle strength"
+                        },
+                        {
+                            "text": "forehead sensation intact",
+                            "template": "forehead sensation intact"
+                        },
+                        {
+                            "text": "decreased forehead sensation",
+                            "template": "decreased forehead sensation"
+                        },
+                        {
+                            "text": "cheek sensation intact",
+                            "template": "cheek sensation intact"
+                        },
+                        {
+                            "text": "decreased cheek sensation",
+                            "template": "decreased cheek sensation"
+                        },
+                        {
+                            "text": "jaw strength intact",
+                            "template": "jaw strength intact"
+                        },
+                        {
+                            "text": "decreased jaw strength",
+                            "template": "decreased jaw strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN VII: R",
+                    "template": "R (CN VII) {children}",
+                    "children": [
+                        {
+                            "text": "facial symmetry intact",
+                            "template": "facial symmetry intact"
+                        },
+                        {
+                            "text": "facial asymmetry present",
+                            "template": "facial asymmetry present"
+                        },
+                        {
+                            "text": "facial droop present",
+                            "template": "facial droop present"
+                        },
+                        {
+                            "text": "eyebrow raise intact",
+                            "template": "eyebrow raise intact"
+                        },
+                        {
+                            "text": "eyebrow raise decreased",
+                            "template": "eyebrow raise decreased"
+                        },
+                        {
+                            "text": "eye close against resistance intact",
+                            "template": "eye close against resistance intact"
+                        },
+                        {
+                            "text": "eye close against resistance decreased",
+                            "template": "eye close against resistance decreased"
+                        },
+                        {
+                            "text": "cheek puff intact",
+                            "template": "cheek puff intact"
+                        },
+                        {
+                            "text": "cheek puff decreased",
+                            "template": "cheek puff decreased"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN VII: L",
+                    "template": "L (CN VII) {children}",
+                    "children": [
+                        {
+                            "text": "facial symmetry intact",
+                            "template": "facial symmetry intact"
+                        },
+                        {
+                            "text": "facial asymmetry present",
+                            "template": "facial asymmetry present"
+                        },
+                        {
+                            "text": "facial droop present",
+                            "template": "facial droop present"
+                        },
+                        {
+                            "text": "eyebrow raise intact",
+                            "template": "eyebrow raise intact"
+                        },
+                        {
+                            "text": "eyebrow raise decreased",
+                            "template": "eyebrow raise decreased"
+                        },
+                        {
+                            "text": "eye close against resistance intact",
+                            "template": "eye close against resistance intact"
+                        },
+                        {
+                            "text": "eye close against resistance decreased",
+                            "template": "eye close against resistance decreased"
+                        },
+                        {
+                            "text": "cheek puff intact",
+                            "template": "cheek puff intact"
+                        },
+                        {
+                            "text": "cheek puff decreased",
+                            "template": "cheek puff decreased"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN VII: BL",
+                    "template": "BL (CN VII) {children}",
+                    "children": [
+                        {
+                            "text": "facial symmetry intact",
+                            "template": "facial symmetry intact"
+                        },
+                        {
+                            "text": "facial asymmetry present",
+                            "template": "facial asymmetry present"
+                        },
+                        {
+                            "text": "facial droop present",
+                            "template": "facial droop present"
+                        },
+                        {
+                            "text": "eyebrow raise intact",
+                            "template": "eyebrow raise intact"
+                        },
+                        {
+                            "text": "eyebrow raise decreased",
+                            "template": "eyebrow raise decreased"
+                        },
+                        {
+                            "text": "eye close against resistance intact",
+                            "template": "eye close against resistance intact"
+                        },
+                        {
+                            "text": "eye close against resistance decreased",
+                            "template": "eye close against resistance decreased"
+                        },
+                        {
+                            "text": "cheek puff intact",
+                            "template": "cheek puff intact"
+                        },
+                        {
+                            "text": "cheek puff decreased",
+                            "template": "cheek puff decreased"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN VIII: R",
+                    "template": "R side (CN VIII) {children}",
+                    "children": [
+                        {
+                            "text": "hearing intact",
+                            "template": "hearing intact"
+                        },
+                        {
+                            "text": "hearing decreased",
+                            "template": "hearing decreased"
+                        },
+                        {
+                            "text": "deafness",
+                            "template": "deafness"
+                        },
+                        {
+                            "text": "Weber normal",
+                            "template": "Weber normal"
+                        },
+                        {
+                            "text": "Weber with right lateralization",
+                            "template": "Weber with right lateralization"
+                        },
+                        {
+                            "text": "Weber with left lateralization",
+                            "template": "Weber with left lateralization"
+                        },
+                        {
+                            "text": "Rinne normal",
+                            "template": "Rinne normal (air conduction greater than bone bilaterally)"
+                        },
+                        {
+                            "text": "Rinne positive, right",
+                            "template": "Rinne positive (air conduction worse than bone on right)"
+                        },
+                        {
+                            "text": "Rinne positive, left",
+                            "template": "Rinne positive (air conduction worse than bone on left)"
+                        },
+                        {
+                            "text": "Rinne negative, right",
+                            "template": "Rinne negative (air conduction better than bone on right)"
+                        },
+                        {
+                            "text": "Rinne negative, left",
+                            "template": "Rinne negative (air conduction better than bone on left)"
+                        },
+                        {
+                            "text": "caloric reflex test intact",
+                            "template": "caloric reflex test intact"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN VIII: L",
+                    "template": "L side (CN VIII) {children}",
+                    "children": [
+                        {
+                            "text": "hearing intact",
+                            "template": "hearing intact"
+                        },
+                        {
+                            "text": "hearing decreased",
+                            "template": "hearing decreased"
+                        },
+                        {
+                            "text": "deafness",
+                            "template": "deafness"
+                        },
+                        {
+                            "text": "Weber normal",
+                            "template": "Weber normal"
+                        },
+                        {
+                            "text": "Weber with right lateralization",
+                            "template": "Weber with right lateralization"
+                        },
+                        {
+                            "text": "Weber with left lateralization",
+                            "template": "Weber with left lateralization"
+                        },
+                        {
+                            "text": "Rinne normal",
+                            "template": "Rinne normal (air conduction greater than bone bilaterally)"
+                        },
+                        {
+                            "text": "Rinne positive, right",
+                            "template": "Rinne positive (air conduction worse than bone on right)"
+                        },
+                        {
+                            "text": "Rinne positive, left",
+                            "template": "Rinne positive (air conduction worse than bone on left)"
+                        },
+                        {
+                            "text": "Rinne negative, right",
+                            "template": "Rinne negative (air conduction better than bone on right)"
+                        },
+                        {
+                            "text": "Rinne negative, left",
+                            "template": "Rinne negative (air conduction better than bone on left)"
+                        },
+                        {
+                            "text": "caloric reflex test intact",
+                            "template": "caloric reflex test intact"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN VIII: BL",
+                    "template": "BL (CN VIII) {children}",
+                    "children": [
+                        {
+                            "text": "hearing intact",
+                            "template": "hearing intact"
+                        },
+                        {
+                            "text": "hearing decreased",
+                            "template": "hearing decreased"
+                        },
+                        {
+                            "text": "deafness",
+                            "template": "deafness"
+                        },
+                        {
+                            "text": "Weber normal",
+                            "template": "Weber normal"
+                        },
+                        {
+                            "text": "Weber with right lateralization",
+                            "template": "Weber with right lateralization"
+                        },
+                        {
+                            "text": "Weber with left lateralization",
+                            "template": "Weber with left lateralization"
+                        },
+                        {
+                            "text": "Rinne normal",
+                            "template": "Rinne normal (air conduction greater than bone bilaterally)"
+                        },
+                        {
+                            "text": "Rinne positive, right",
+                            "template": "Rinne positive (air conduction worse than bone on right)"
+                        },
+                        {
+                            "text": "Rinne positive, left",
+                            "template": "Rinne positive (air conduction worse than bone on left)"
+                        },
+                        {
+                            "text": "Rinne negative, right",
+                            "template": "Rinne negative (air conduction better than bone on right)"
+                        },
+                        {
+                            "text": "Rinne negative, left",
+                            "template": "Rinne negative (air conduction better than bone on left)"
+                        },
+                        {
+                            "text": "caloric reflex test intact",
+                            "template": "caloric reflex test intact"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN IX\/X",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "swallowing intact",
+                            "template": "ability to swallow intact (CN IX\/X intact)"
+                        },
+                        {
+                            "text": "swallowing impaired",
+                            "template": "swallowing impaired (CN IX\/X diminished)"
+                        },
+                        {
+                            "text": "gag reflex intact",
+                            "template": "gag reflex intact (CN IX\/X intact)"
+                        },
+                        {
+                            "text": "gag reflex diminished",
+                            "template": "gag reflex diminished (CN IX\/X diminished)"
+                        },
+                        {
+                            "text": "uvula midline",
+                            "template": "uvula midline (CN IX\/X intact)"
+                        },
+                        {
+                            "text": "uvula deviated to right",
+                            "template": "uvula deviated to right (CN IX\/X diminished)"
+                        },
+                        {
+                            "text": "uvula deviatied to left",
+                            "template": "uvula deviatied to left (CN IX\/X diminished)"
+                        },
+                        {
+                            "text": "hoarse voice quality present",
+                            "template": "hoarse voice quality present (CN IX\/X diminished)"
+                        },
+                        {
+                            "text": "nasal voice quality present",
+                            "template": "nasal voice quality present (CN IX\/X diminished)"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN XI: R",
+                    "template": "R side (CN XI) {children}",
+                    "children": [
+                        {
+                            "text": "shoulder shrug intact",
+                            "template": "shoulder shrug intact"
+                        },
+                        {
+                            "text": "shoulder shrug decreased",
+                            "template": "shoulder shrug decreased"
+                        },
+                        {
+                            "text": "ability to turn head against resistance intact",
+                            "template": "ability to turn head against resistance intact"
+                        },
+                        {
+                            "text": "ability to turn head against resistance diminished",
+                            "template": "ability to turn head against resistance diminished"
+                        },
+                        {
+                            "text": "trapezius muscle tone intact",
+                            "template": "trapezius muscle tone intact"
+                        },
+                        {
+                            "text": "trapezius muscle atrophy noted",
+                            "template": "trapezius muscle atrophy noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN XI: L",
+                    "template": "L side (CN XI) {children}",
+                    "children": [
+                        {
+                            "text": "shoulder shrug intact",
+                            "template": "shoulder shrug intact"
+                        },
+                        {
+                            "text": "shoulder shrug decreased",
+                            "template": "shoulder shrug decreased"
+                        },
+                        {
+                            "text": "ability to turn head against resistance intact",
+                            "template": "ability to turn head against resistance intact"
+                        },
+                        {
+                            "text": "ability to turn head against resistance diminished",
+                            "template": "ability to turn head against resistance diminished"
+                        },
+                        {
+                            "text": "trapezius muscle tone intact",
+                            "template": "trapezius muscle tone intact"
+                        },
+                        {
+                            "text": "trapezius muscle atrophy noted",
+                            "template": "trapezius muscle atrophy noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN XI: BL",
+                    "template": "BL (CN XI) {children}",
+                    "children": [
+                        {
+                            "text": "shoulder shrug intact",
+                            "template": "shoulder shrug intact"
+                        },
+                        {
+                            "text": "shoulder shrug decreased",
+                            "template": "shoulder shrug decreased"
+                        },
+                        {
+                            "text": "ability to turn head against resistance intact",
+                            "template": "ability to turn head against resistance intact"
+                        },
+                        {
+                            "text": "ability to turn head against resistance diminished",
+                            "template": "ability to turn head against resistance diminished"
+                        },
+                        {
+                            "text": "trapezius muscle tone intact",
+                            "template": "trapezius muscle tone intact"
+                        },
+                        {
+                            "text": "trapezius muscle atrophy noted",
+                            "template": "trapezius muscle atrophy noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN XII",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "speech articulation intact",
+                            "template": "speech articulation intact (CN XII intact)"
+                        },
+                        {
+                            "text": "speech articulation impaired",
+                            "template": "speech articulation impaired (CN XII diminished)"
+                        },
+                        {
+                            "text": "tongue midline without deviation",
+                            "template": "tongue midline without deviation (CN XII intact)"
+                        },
+                        {
+                            "text": "tongue deviated to right",
+                            "template": "tongue deviated to right (CN XII diminished)"
+                        },
+                        {
+                            "text": "tongue deviated to left",
+                            "template": "tongue deviated to left (CN XII diminished)"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other detail",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Neuro: Dermatomes",
+            "template": "NEURO: {children}",
+            "children": [
+                {
+                    "text": "Cervical dermatomes, R",
+                    "template": "R cervical dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "C1 sensation diminished",
+                            "template": "C1 sensation diminished"
+                        },
+                        {
+                            "text": "C2 sensation diminished",
+                            "template": "C2 sensation diminished"
+                        },
+                        {
+                            "text": "C3 sensation diminished",
+                            "template": "C3 sensation diminished"
+                        },
+                        {
+                            "text": "C4 sensation diminished",
+                            "template": "C4 sensation diminished"
+                        },
+                        {
+                            "text": "C5 sensation diminished",
+                            "template": "C5 sensation diminished"
+                        },
+                        {
+                            "text": "C6 sensation diminished",
+                            "template": "C6 sensation diminished"
+                        },
+                        {
+                            "text": "C7 sensation diminished",
+                            "template": "C7 sensation diminished"
+                        },
+                        {
+                            "text": "C8 sensation diminished",
+                            "template": "C8 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Cervical dermatomes, L",
+                    "template": "L cervical dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "C1 sensation diminished",
+                            "template": "C1 sensation diminished"
+                        },
+                        {
+                            "text": "C2 sensation diminished",
+                            "template": "C2 sensation diminished"
+                        },
+                        {
+                            "text": "C3 sensation diminished",
+                            "template": "C3 sensation diminished"
+                        },
+                        {
+                            "text": "C4 sensation diminished",
+                            "template": "C4 sensation diminished"
+                        },
+                        {
+                            "text": "C5 sensation diminished",
+                            "template": "C5 sensation diminished"
+                        },
+                        {
+                            "text": "C6 sensation diminished",
+                            "template": "C6 sensation diminished"
+                        },
+                        {
+                            "text": "C7 sensation diminished",
+                            "template": "C7 sensation diminished"
+                        },
+                        {
+                            "text": "C8 sensation diminished",
+                            "template": "C8 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Cervical dermatomes, BL",
+                    "template": "BL cervical dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "C1 sensation diminished",
+                            "template": "C1 sensation diminished"
+                        },
+                        {
+                            "text": "C2 sensation diminished",
+                            "template": "C2 sensation diminished"
+                        },
+                        {
+                            "text": "C3 sensation diminished",
+                            "template": "C3 sensation diminished"
+                        },
+                        {
+                            "text": "C4 sensation diminished",
+                            "template": "C4 sensation diminished"
+                        },
+                        {
+                            "text": "C5 sensation diminished",
+                            "template": "C5 sensation diminished"
+                        },
+                        {
+                            "text": "C6 sensation diminished",
+                            "template": "C6 sensation diminished"
+                        },
+                        {
+                            "text": "C7 sensation diminished",
+                            "template": "C7 sensation diminished"
+                        },
+                        {
+                            "text": "C8 sensation diminished",
+                            "template": "C8 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Thoracic dermatomes, R",
+                    "template": "R thoracic dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "T1 sensation diminished",
+                            "template": "T1 sensation diminished"
+                        },
+                        {
+                            "text": "T2 sensation diminished",
+                            "template": "T2 sensation diminished"
+                        },
+                        {
+                            "text": "T3 sensation diminished",
+                            "template": "T3 sensation diminished"
+                        },
+                        {
+                            "text": "T4 sensation diminished",
+                            "template": "T4 sensation diminished"
+                        },
+                        {
+                            "text": "T5 sensation diminished",
+                            "template": "T5 sensation diminished"
+                        },
+                        {
+                            "text": "T6 sensation diminished",
+                            "template": "T6 sensation diminished"
+                        },
+                        {
+                            "text": "T7 sensation diminished",
+                            "template": "T7 sensation diminished"
+                        },
+                        {
+                            "text": "T8 sensation diminished",
+                            "template": "T8 sensation diminished"
+                        },
+                        {
+                            "text": "T9 sensation diminished",
+                            "template": "T9 sensation diminished"
+                        },
+                        {
+                            "text": "T10 sensation diminished",
+                            "template": "T10 sensation diminished"
+                        },
+                        {
+                            "text": "T11 sensation diminished",
+                            "template": "T11 sensation diminished"
+                        },
+                        {
+                            "text": "T12 sensation diminished",
+                            "template": "T12 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Thoracic dermatomes, L",
+                    "template": "L thoracic dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "T1 sensation diminished",
+                            "template": "T1 sensation diminished"
+                        },
+                        {
+                            "text": "T2 sensation diminished",
+                            "template": "T2 sensation diminished"
+                        },
+                        {
+                            "text": "T3 sensation diminished",
+                            "template": "T3 sensation diminished"
+                        },
+                        {
+                            "text": "T4 sensation diminished",
+                            "template": "T4 sensation diminished"
+                        },
+                        {
+                            "text": "T5 sensation diminished",
+                            "template": "T5 sensation diminished"
+                        },
+                        {
+                            "text": "T6 sensation diminished",
+                            "template": "T6 sensation diminished"
+                        },
+                        {
+                            "text": "T7 sensation diminished",
+                            "template": "T7 sensation diminished"
+                        },
+                        {
+                            "text": "T8 sensation diminished",
+                            "template": "T8 sensation diminished"
+                        },
+                        {
+                            "text": "T9 sensation diminished",
+                            "template": "T9 sensation diminished"
+                        },
+                        {
+                            "text": "T10 sensation diminished",
+                            "template": "T10 sensation diminished"
+                        },
+                        {
+                            "text": "T11 sensation diminished",
+                            "template": "T11 sensation diminished"
+                        },
+                        {
+                            "text": "T12 sensation diminished",
+                            "template": "T12 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Thoracic dermatomes, BL",
+                    "template": "BL thoracic dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "T1 sensation diminished",
+                            "template": "T1 sensation diminished"
+                        },
+                        {
+                            "text": "T2 sensation diminished",
+                            "template": "T2 sensation diminished"
+                        },
+                        {
+                            "text": "T3 sensation diminished",
+                            "template": "T3 sensation diminished"
+                        },
+                        {
+                            "text": "T4 sensation diminished",
+                            "template": "T4 sensation diminished"
+                        },
+                        {
+                            "text": "T5 sensation diminished",
+                            "template": "T5 sensation diminished"
+                        },
+                        {
+                            "text": "T6 sensation diminished",
+                            "template": "T6 sensation diminished"
+                        },
+                        {
+                            "text": "T7 sensation diminished",
+                            "template": "T7 sensation diminished"
+                        },
+                        {
+                            "text": "T8 sensation diminished",
+                            "template": "T8 sensation diminished"
+                        },
+                        {
+                            "text": "T9 sensation diminished",
+                            "template": "T9 sensation diminished"
+                        },
+                        {
+                            "text": "T10 sensation diminished",
+                            "template": "T10 sensation diminished"
+                        },
+                        {
+                            "text": "T11 sensation diminished",
+                            "template": "T11 sensation diminished"
+                        },
+                        {
+                            "text": "T12 sensation diminished",
+                            "template": "T12 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lumbar dermatomes, R",
+                    "template": "R lumbar dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "L1 sensation diminished",
+                            "template": "L1 sensation diminished"
+                        },
+                        {
+                            "text": "L2 sensation diminished",
+                            "template": "L2 sensation diminished"
+                        },
+                        {
+                            "text": "L3 sensation diminished",
+                            "template": "L3 sensation diminished"
+                        },
+                        {
+                            "text": "L4 sensation diminished",
+                            "template": "L4 sensation diminished"
+                        },
+                        {
+                            "text": "L5 sensation diminished",
+                            "template": "L5 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lumbar dermatomes, L",
+                    "template": "L lumbar dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "L1 sensation diminished",
+                            "template": "L1 sensation diminished"
+                        },
+                        {
+                            "text": "L2 sensation diminished",
+                            "template": "L2 sensation diminished"
+                        },
+                        {
+                            "text": "L3 sensation diminished",
+                            "template": "L3 sensation diminished"
+                        },
+                        {
+                            "text": "L4 sensation diminished",
+                            "template": "L4 sensation diminished"
+                        },
+                        {
+                            "text": "L5 sensation diminished",
+                            "template": "L5 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lumbar dermatomes, BL",
+                    "template": "BL lumbar dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "L1 sensation diminished",
+                            "template": "L1 sensation diminished"
+                        },
+                        {
+                            "text": "L2 sensation diminished",
+                            "template": "L2 sensation diminished"
+                        },
+                        {
+                            "text": "L3 sensation diminished",
+                            "template": "L3 sensation diminished"
+                        },
+                        {
+                            "text": "L4 sensation diminished",
+                            "template": "L4 sensation diminished"
+                        },
+                        {
+                            "text": "L5 sensation diminished",
+                            "template": "L5 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Sacral dermatomes, R",
+                    "template": "R sacral dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "S1 sensation diminished",
+                            "template": "S1 sensation diminished"
+                        },
+                        {
+                            "text": "S2 sensation diminished",
+                            "template": "S2 sensation diminished"
+                        },
+                        {
+                            "text": "S3 sensation diminished",
+                            "template": "S3 sensation diminished"
+                        },
+                        {
+                            "text": "S4 sensation diminished",
+                            "template": "S4 sensation diminished"
+                        },
+                        {
+                            "text": "S5 sensation diminished",
+                            "template": "S5 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Sacral dermatomes, L",
+                    "template": "L sacral dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "S1 sensation diminished",
+                            "template": "S1 sensation diminished"
+                        },
+                        {
+                            "text": "S2 sensation diminished",
+                            "template": "S2 sensation diminished"
+                        },
+                        {
+                            "text": "S3 sensation diminished",
+                            "template": "S3 sensation diminished"
+                        },
+                        {
+                            "text": "S4 sensation diminished",
+                            "template": "S4 sensation diminished"
+                        },
+                        {
+                            "text": "S5 sensation diminished",
+                            "template": "S5 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Sacral dermatomes, BL",
+                    "template": "BL sacral dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "S1 sensation diminished",
+                            "template": "S1 sensation diminished"
+                        },
+                        {
+                            "text": "S2 sensation diminished",
+                            "template": "S2 sensation diminished"
+                        },
+                        {
+                            "text": "S3 sensation diminished",
+                            "template": "S3 sensation diminished"
+                        },
+                        {
+                            "text": "S4 sensation diminished",
+                            "template": "S4 sensation diminished"
+                        },
+                        {
+                            "text": "S5 sensation diminished",
+                            "template": "S5 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other detail",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Neuro: Deep tendon reflexes",
+            "template": "NEURO: {children}",
+            "children": [
+                {
+                    "text": "DTRs intact and equal BL throughout",
+                    "template": "DTRs intact and equal BL throughout"
+                },
+                {
+                    "text": "Brachioradialis reflex, R",
+                    "template": "R brachioradialis reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Brachioradialis reflex, L",
+                    "template": "L brachioradialis reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Brachioradialis reflex, BL",
+                    "template": "L brachioradialis reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Biceps reflex, R",
+                    "template": "R biceps reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Biceps reflex, L",
+                    "template": "L biceps reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Biceps reflex, BL",
+                    "template": "BL biceps reflexes {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Triceps reflex, R",
+                    "template": "R triceps reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Triceps reflex, L",
+                    "template": "L triceps reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Triceps reflex, BL",
+                    "template": "BL triceps reflexes {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Patellar reflex, R",
+                    "template": "R patellar reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Patellar reflex, L",
+                    "template": "L patellar reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Patellar reflex, BL",
+                    "template": "BL patellar reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Achilles reflex, R",
+                    "template": "R achilles reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Achilles reflex, L",
+                    "template": "L achilles reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Achilles reflex, BL",
+                    "template": "BL achilles reflexes {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Ankle reflex, R",
+                    "template": "R ankle reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Ankle reflex, L",
+                    "template": "L ankle reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Ankle reflex, BL",
+                    "template": "BL ankle reflexes {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other detail",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Neuro: Gait, Station",
+            "template": "NEURO: {children}",
+            "children": [
+                {
+                    "text": "normal gait and station",
+                    "template": "normal gait and station"
+                },
+                {
+                    "text": "normal gait",
+                    "template": "normal gait"
+                },
+                {
+                    "text": "normal station",
+                    "template": "normal station"
+                },
+                {
+                    "text": "Romberg test positive",
+                    "template": "Romberg test positive"
+                },
+                {
+                    "text": "Romberg test negative",
+                    "template": "Romberg test negative"
+                },
+                {
+                    "text": "Gait",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "broad based gait",
+                            "template": "broad based gait"
+                        },
+                        {
+                            "text": "shuffling gait",
+                            "template": "shuffling gait"
+                        },
+                        {
+                            "text": "shortened step length",
+                            "template": "shortened step length"
+                        },
+                        {
+                            "text": "limp, right",
+                            "template": "limp present (affecting right side)"
+                        },
+                        {
+                            "text": "limp, left",
+                            "template": "limp present (affecting left side)"
+                        },
+                        {
+                            "text": "wide based gait",
+                            "template": "wide based gait"
+                        },
+                        {
+                            "text": "gait accuracy intact",
+                            "template": "gait accuracy intact"
+                        },
+                        {
+                            "text": "staggering gait noted",
+                            "template": "staggering gait noted"
+                        },
+                        {
+                            "text": "tandem walking intact",
+                            "template": "tandem walking intact"
+                        },
+                        {
+                            "text": "tandem walking impaired",
+                            "template": "tandem walking impaired"
+                        },
+                        {
+                            "text": "toe walking noted",
+                            "template": "toe walking noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "Station",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "positive Romberg (eyes open)",
+                            "template": "positive Romberg (eyes open)"
+                        },
+                        {
+                            "text": "negative Romberg (eyes open)",
+                            "template": "negative Romberg (eyes open)"
+                        },
+                        {
+                            "text": "positive Romberg (eyes closed)",
+                            "template": "positive Romberg (eyes closed)"
+                        },
+                        {
+                            "text": "pronator drift, eyes open, right",
+                            "template": "pronator drift noted with eyes open (affecting right upper extremity)"
+                        },
+                        {
+                            "text": "pronator drift, eyes open, left",
+                            "template": "pronator drift noted with eyes open (affecting left upper extremity)"
+                        },
+                        {
+                            "text": "pronator drift, eyes closed, right",
+                            "template": "pronator drift noted with eyes closed (affecting right upper extremity)"
+                        },
+                        {
+                            "text": "pronator drift, eyes closed, left",
+                            "template": "pronator drift noted with eyes closed (affecting left upper extremity)"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other detail",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Neuro: Pathological reflexes",
+            "template": "NEURO: {children}",
+            "children": [
+                {
+                    "text": "no pathological reflexes elicited",
+                    "template": "no pathological reflexes elicited"
+                },
+                {
+                    "text": "Babinski reflex",
+                    "template": "Babinski reflex {children}",
+                    "children": [
+                        {
+                            "text": "elicted on the right",
+                            "template": "elicted on the right"
+                        },
+                        {
+                            "text": "not elicited on the right",
+                            "template": "not elicited on the right"
+                        },
+                        {
+                            "text": "elicited on the left",
+                            "template": "elicited on the left"
+                        },
+                        {
+                            "text": "not elicited on the left",
+                            "template": "not elicited on the left"
+                        },
+                        {
+                            "text": "elicited bilaterally",
+                            "template": "elicited bilaterally"
+                        },
+                        {
+                            "text": "absent bilaterally",
+                            "template": "absent bilaterally"
+                        }
+                    ]
+                },
+                {
+                    "text": "Glabellar reflex",
+                    "template": "glabellar reflex {children}",
+                    "children": [
+                        {
+                            "text": "elicted on the right",
+                            "template": "elicted on the right"
+                        },
+                        {
+                            "text": "not elicited on the right",
+                            "template": "not elicited on the right"
+                        },
+                        {
+                            "text": "elicited on the left",
+                            "template": "elicited on the left"
+                        },
+                        {
+                            "text": "not elicited on the left",
+                            "template": "not elicited on the left"
+                        },
+                        {
+                            "text": "elicited bilaterally",
+                            "template": "elicited bilaterally"
+                        },
+                        {
+                            "text": "absent bilaterally",
+                            "template": "absent bilaterally"
+                        }
+                    ]
+                },
+                {
+                    "text": "Palmomental reflex",
+                    "template": "palmomental reflex {children}",
+                    "children": [
+                        {
+                            "text": "elicted on the right",
+                            "template": "elicted on the right"
+                        },
+                        {
+                            "text": "not elicited on the right",
+                            "template": "not elicited on the right"
+                        },
+                        {
+                            "text": "elicited on the left",
+                            "template": "elicited on the left"
+                        },
+                        {
+                            "text": "not elicited on the left",
+                            "template": "not elicited on the left"
+                        },
+                        {
+                            "text": "elicited bilaterally",
+                            "template": "elicited bilaterally"
+                        },
+                        {
+                            "text": "absent bilaterally",
+                            "template": "absent bilaterally"
+                        }
+                    ]
+                },
+                {
+                    "text": "Snout reflex",
+                    "template": "snout reflex {children}",
+                    "children": [
+                        {
+                            "text": "elicted on the right",
+                            "template": "elicted on the right"
+                        },
+                        {
+                            "text": "not elicited on the right",
+                            "template": "not elicited on the right"
+                        },
+                        {
+                            "text": "elicited on the left",
+                            "template": "elicited on the left"
+                        },
+                        {
+                            "text": "not elicited on the left",
+                            "template": "not elicited on the left"
+                        },
+                        {
+                            "text": "elicited bilaterally",
+                            "template": "elicited bilaterally"
+                        },
+                        {
+                            "text": "absent bilaterally",
+                            "template": "absent bilaterally"
+                        }
+                    ]
+                },
+                {
+                    "text": "Root reflex",
+                    "template": "root reflex {children}",
+                    "children": [
+                        {
+                            "text": "elicted on the right",
+                            "template": "elicted on the right"
+                        },
+                        {
+                            "text": "not elicited on the right",
+                            "template": "not elicited on the right"
+                        },
+                        {
+                            "text": "elicited on the left",
+                            "template": "elicited on the left"
+                        },
+                        {
+                            "text": "not elicited on the left",
+                            "template": "not elicited on the left"
+                        },
+                        {
+                            "text": "elicited bilaterally",
+                            "template": "elicited bilaterally"
+                        },
+                        {
+                            "text": "absent bilaterally",
+                            "template": "absent bilaterally"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other detail",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Neuro: Sensory",
+            "template": "NEURO: {children}",
+            "children": [
+                {
+                    "text": "sensation grossly intact throughout",
+                    "template": "sensation grossly intact throughout"
+                },
+                {
+                    "text": "Sensation to light touch",
+                    "template": "sensation to light touch {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity, right intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, intact BL",
+                            "template": "intact in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "upper extremity, right diminished",
+                            "template": "diminished in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left diminished",
+                            "template": "diminished in left upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, diminished BL",
+                            "template": "diminished in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "lower extremity, right intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, intact BL",
+                            "template": "intact in the bilateral lower extremities"
+                        },
+                        {
+                            "text": "lower extremity, right diminished",
+                            "template": "diminished in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left diminished",
+                            "template": "diminished in left lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, diminished BL",
+                            "template": "diminished in the bilateral lower extremities"
+                        }
+                    ]
+                },
+                {
+                    "text": "Sensation to dull touch",
+                    "template": "sensation to dull touch {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity, right intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, intact BL",
+                            "template": "intact in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "upper extremity, right diminished",
+                            "template": "diminished in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left diminished",
+                            "template": "diminished in left upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, diminished BL",
+                            "template": "diminished in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "lower extremity, right intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, intact BL",
+                            "template": "intact in the bilateral lower extremities"
+                        },
+                        {
+                            "text": "lower extremity, right diminished",
+                            "template": "diminished in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left diminished",
+                            "template": "diminished in left lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, diminished BL",
+                            "template": "diminished in the bilateral lower extremities"
+                        }
+                    ]
+                },
+                {
+                    "text": "Sensation to cold temperature",
+                    "template": "sensation to cold temperature {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity, right intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, intact BL",
+                            "template": "intact in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "upper extremity, right diminished",
+                            "template": "diminished in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left diminished",
+                            "template": "diminished in left upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, diminished BL",
+                            "template": "diminished in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "lower extremity, right intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, intact BL",
+                            "template": "intact in the bilateral lower extremities"
+                        },
+                        {
+                            "text": "lower extremity, right diminished",
+                            "template": "diminished in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left diminished",
+                            "template": "diminished in left lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, diminished BL",
+                            "template": "diminished in the bilateral lower extremities"
+                        }
+                    ]
+                },
+                {
+                    "text": "Sensation to warm temperature",
+                    "template": "sensation to warm temperature {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity, right intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, intact BL",
+                            "template": "intact in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "upper extremity, right diminished",
+                            "template": "diminished in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left diminished",
+                            "template": "diminished in left upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, diminished BL",
+                            "template": "diminished in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "lower extremity, right intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, intact BL",
+                            "template": "intact in the bilateral lower extremities"
+                        },
+                        {
+                            "text": "lower extremity, right diminished",
+                            "template": "diminished in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left diminished",
+                            "template": "diminished in left lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, diminished BL",
+                            "template": "diminished in the bilateral lower extremities"
+                        }
+                    ]
+                },
+                {
+                    "text": "Vibratory sensation",
+                    "template": "vibratory sensation {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity, right intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, intact BL",
+                            "template": "intact in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "upper extremity, right diminished",
+                            "template": "diminished in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left diminished",
+                            "template": "diminished in left upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, diminished BL",
+                            "template": "diminished in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "lower extremity, right intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, intact BL",
+                            "template": "intact in the bilateral lower extremities"
+                        },
+                        {
+                            "text": "lower extremity, right diminished",
+                            "template": "diminished in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left diminished",
+                            "template": "diminished in left lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, diminished BL",
+                            "template": "diminished in the bilateral lower extremities"
+                        }
+                    ]
+                },
+                {
+                    "text": "Stereognosis",
+                    "template": "stereognosis {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity, right intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, intact BL",
+                            "template": "intact in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "upper extremity, right diminished",
+                            "template": "diminished in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left diminished",
+                            "template": "diminished in left upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, diminished BL",
+                            "template": "diminished in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "lower extremity, right intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, intact BL",
+                            "template": "intact in the bilateral lower extremities"
+                        },
+                        {
+                            "text": "lower extremity, right diminished",
+                            "template": "diminished in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left diminished",
+                            "template": "diminished in left lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, diminished BL",
+                            "template": "diminished in the bilateral lower extremities"
+                        }
+                    ]
+                },
+                {
+                    "text": "Paresthesias",
+                    "template": "parethesias present {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity, right",
+                            "template": "in the R upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left",
+                            "template": "in the L upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, bilateral",
+                            "template": "bilaterally in the upper extremities"
+                        },
+                        {
+                            "text": "lower extremity, right",
+                            "template": "in the R lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left",
+                            "template": "in the L lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, bilateral",
+                            "template": "bilaterally in the lower extremities"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other detail",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Psychiatric",
+            "template": "PSYCH: {children}",
+            "children": [
+                {
+                    "text": "AO x 3",
+                    "template": "alert and oriented to time, place, and person"
+                },
+                {
+                    "text": "insight intact",
+                    "template": "insight intact"
+                },
+                {
+                    "text": "judgment intact",
+                    "template": "judgment intact"
+                },
+                {
+                    "text": "Alertness",
+                    "template": "patient appears {children}",
+                    "children": [
+                        {
+                            "text": "alert",
+                            "template": "alert"
+                        },
+                        {
+                            "text": "drowsy but arousable",
+                            "template": "drowsy but arousable"
+                        },
+                        {
+                            "text": "drowsy and non-arousable",
+                            "template": "drowsy and non-arousable"
+                        },
+                        {
+                            "text": "lethargic",
+                            "template": "lethargic"
+                        }
+                    ]
+                },
+                {
+                    "text": "Orientation",
+                    "template": "patient is {children}",
+                    "children": [
+                        {
+                            "text": "oriented to time",
+                            "template": "oriented to time",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "oriented to place",
+                            "template": "oriented to place",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "oriented to self",
+                            "template": "oriented to self",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "oriented to examiner",
+                            "template": "oriented to examiner",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "oriented to situation",
+                            "template": "oriented to situation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "knows current President",
+                            "template": "knows current President",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Mood",
+                    "template": "Mood {children}",
+                    "children": [
+                        {
+                            "text": "normal mood",
+                            "template": "normal mood"
+                        },
+                        {
+                            "text": "anxious",
+                            "template": "anxious",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "depressed",
+                            "template": "depressed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "Irritable",
+                            "template": "Irritable",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "apathetic mood",
+                            "template": "apathetic mood",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "euphoric",
+                            "template": "euphoric",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "elevated",
+                            "template": "elevated",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "expansive",
+                            "template": "expansive",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Mental status\/Concentration",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "responds appropriately",
+                            "template": "responds appropriately"
+                        },
+                        {
+                            "text": "responds inappropriately",
+                            "template": "responds inappropriately"
+                        },
+                        {
+                            "text": "short term memory intact",
+                            "template": "short term memory intact"
+                        },
+                        {
+                            "text": "short term memory impaired",
+                            "template": "short term memory impaired"
+                        },
+                        {
+                            "text": "long term memory intact",
+                            "template": "long term memory intact"
+                        },
+                        {
+                            "text": "long term memory impaired",
+                            "template": "long term memory impaired"
+                        },
+                        {
+                            "text": "memory grossly intact",
+                            "template": "memory grossly intact"
+                        },
+                        {
+                            "text": "memory deficits noted",
+                            "template": "memory deficits noted"
+                        },
+                        {
+                            "text": "thought content normal",
+                            "template": "thought content normal"
+                        },
+                        {
+                            "text": "abnormal thought content",
+                            "template": "abnormal thought content"
+                        },
+                        {
+                            "text": "appears coherent",
+                            "template": "appears coherent"
+                        },
+                        {
+                            "text": "appears incoherent",
+                            "template": "appears incoherent"
+                        },
+                        {
+                            "text": "abstraction ability intact",
+                            "template": "abstraction ability intact"
+                        },
+                        {
+                            "text": "abstraction ability impaired",
+                            "template": "abstraction ability impaired"
+                        },
+                        {
+                            "text": "unable to assess mental status",
+                            "template": "unable to assess mental status"
+                        },
+                        {
+                            "text": "unresponsive to questions",
+                            "template": "unresponsive to questions"
+                        },
+                        {
+                            "text": "able to concentrate",
+                            "template": "able to concentrate",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other detail",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        }
+    ]
+}

+ 13961 - 0
storage/templates/exam-default/exam-muscskel-detail/muscskel-exam.json

@@ -0,0 +1,13961 @@
+{
+    "section": "exam-musc-skel-detail",
+    "templateSet": "MUSCSKEL Exam",
+    "templates": [
+        {
+            "text": "1-Click normal exams",
+            "template": "{children}",
+            "children": [
+                {
+                    "text": "GEN: NAD",
+                    "template": "GEN: NAD"
+                },
+                {
+                    "text": "NECK: supple, FROM, no cervical LN",
+                    "template": "NECK: supple, full range of motion, no cervical lymphadenopathy"
+                },
+                {
+                    "text": "SPINE: NL alignment, NT to palp",
+                    "template": "MUSC\/SKEL: NL spine alignment, nontender to palpation"
+                },
+                {
+                    "text": "EXT x 4: strength\/bulk\/tone NL",
+                    "template": "MUSC\/SKEL: upper and lower extremity strength, bulk and tone NL bilaterally"
+                },
+                {
+                    "text": "EXT x 4: NL alignment and symm",
+                    "template": "MUSC\/SKEL: NL alignment and symmetry, bilateral upper and lower extremities"
+                },
+                {
+                    "text": "EXT x 4: no joint effusions\/masses",
+                    "template": "MUSC\/SKEL: bilateral upper and lower extremities with no joint effusions, no masses\n                            "
+                },
+                {
+                    "text": "EXT x 4: FROM w\/o limitation",
+                    "template": "MUSC\/SKEL: full range of motion, bilateral upper and lower extremities, without\n                                limitation\n                            "
+                },
+                {
+                    "text": "EXT x 4: no active\/passive pain or instability",
+                    "template": "MUSC\/SKEL: no pain or instability on active or passive motion"
+                },
+                {
+                    "text": "NEURO: AO x 3",
+                    "template": "NEURO: AO x 3"
+                },
+                {
+                    "text": "NEURO: gait and station NL",
+                    "template": "NEURO: gait and station NL"
+                },
+                {
+                    "text": "NEURO: sensation intact thru",
+                    "template": "NEURO: sensation intact throughout"
+                },
+                {
+                    "text": "NEURO: DTR intact BL UE and LE",
+                    "template": "NEURO: DTRs intact bilaterally in the upper and lower extremities"
+                }
+            ]
+        },
+        {
+            "text": "General",
+            "template": "GEN: {children}",
+            "children": [
+                {
+                    "text": "NAD",
+                    "template": "NAD",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "cooperative with exam",
+                    "template": "cooperative with exam",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "well groomed",
+                    "template": "well groomed",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "well developed",
+                    "template": "well developed",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "well nourished",
+                    "template": "well nourished",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "overweight",
+                    "template": "overweight",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "obese",
+                    "template": "obese",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "morbidly obese",
+                    "template": "morbidly obese",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "emaciated",
+                    "template": "emaciated",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "appears to be stated age",
+                    "template": "appears to be stated age",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "appears older than stated age",
+                    "template": "appears older than stated age",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "appears younger than stated age",
+                    "template": "appears younger than stated age",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "HEENT",
+            "template": "HEENT: {children}",
+            "children": [
+                {
+                    "text": "head normocephalic, atraumatic",
+                    "template": "head normocephalic, atraumatic"
+                },
+                {
+                    "text": "EOMI",
+                    "template": "EOMI"
+                },
+                {
+                    "text": "PERRLA",
+                    "template": "PERRLA"
+                },
+                {
+                    "text": "scleral icterus",
+                    "template": "scleral icterus",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "pale conjunctivae",
+                    "template": "pale conjunctivae",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "hearing grossly intact",
+                    "template": "hearing grossly intact",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "normal dentition",
+                    "template": "normal dentition"
+                },
+                {
+                    "text": "normal lips",
+                    "template": "normal lips"
+                },
+                {
+                    "text": "normal gums",
+                    "template": "normal gums"
+                },
+                {
+                    "text": "pharynx unremarkable",
+                    "template": "pharynx unremarkable"
+                },
+                {
+                    "text": "mucous membranes moist",
+                    "template": "mucous membranes moist",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "frenular jaundice",
+                    "template": "frenular jaundice",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Neck",
+            "template": "NECK: {children}",
+            "children": [
+                {
+                    "text": "soft, nontender",
+                    "template": "soft, nontender"
+                },
+                {
+                    "text": "no increased JVP visible",
+                    "template": "no increased JVP visible"
+                },
+                {
+                    "text": "hepatojugular reflex elicited",
+                    "template": "hepatojugular reflex elicited",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "no cervical LN",
+                    "template": "no significant cervical lymphadenopathy"
+                },
+                {
+                    "text": "neck not enlarged",
+                    "template": "neck not enlarged"
+                },
+                {
+                    "text": "obese neck",
+                    "template": "neck obesity",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "thyromegaly",
+                    "template": "thyromegaly",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Lymphadenopathy",
+                    "template": "{children} lymphadenopathy",
+                    "children": [
+                        {
+                            "text": "shotty cervical",
+                            "template": "shotty cervical"
+                        },
+                        {
+                            "text": "submental",
+                            "template": "submental"
+                        },
+                        {
+                            "text": "R submandibular",
+                            "template": "R submandibular"
+                        },
+                        {
+                            "text": "L submandibular",
+                            "template": "L submandibular"
+                        },
+                        {
+                            "text": "R ant. cervical",
+                            "template": "R anterior cervical"
+                        },
+                        {
+                            "text": "L ant. cervical",
+                            "template": "L anterior cervical"
+                        },
+                        {
+                            "text": "R preauricular",
+                            "template": "R preauricular"
+                        },
+                        {
+                            "text": "L preauricular",
+                            "template": "L preauricular"
+                        },
+                        {
+                            "text": "R post. auricular",
+                            "template": "R posterior auricular"
+                        },
+                        {
+                            "text": "L post. auricular",
+                            "template": "L posterior auricular"
+                        },
+                        {
+                            "text": "R supraclavicular",
+                            "template": "R supraclavicular"
+                        },
+                        {
+                            "text": "L supraclavicular",
+                            "template": "L supraclavicular"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Respiratory",
+            "template": "RESP: {children}",
+            "children": [
+                {
+                    "text": "no respiratory distress",
+                    "template": "no respiratory distress"
+                },
+                {
+                    "text": "auscultation clear BL",
+                    "template": "clear to auscultation bilaterally"
+                },
+                {
+                    "text": "no wheezes\/rales\/rhonchi",
+                    "template": "no wheezes\/rales\/rhonchi"
+                },
+                {
+                    "text": "percussion clear BL",
+                    "template": "clear to percussion bilaterally"
+                },
+                {
+                    "text": "chest wall symmetric",
+                    "template": "chest wall symmetric"
+                },
+                {
+                    "text": "Abnl lung sounds, R",
+                    "template": "Abnl lung sounds, R: {children}",
+                    "children": [
+                        {
+                            "text": "whoop",
+                            "template": "whoop",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "stridor",
+                            "template": "stridor",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pleural rub",
+                            "template": "pleural rub"
+                        },
+                        {
+                            "text": "basilar rales",
+                            "template": "basilar rales"
+                        },
+                        {
+                            "text": "rales scattered",
+                            "template": "scattered rales"
+                        },
+                        {
+                            "text": "rhonchi scattered",
+                            "template": "scattered rhonchi"
+                        },
+                        {
+                            "text": "diminished breath sounds throughout",
+                            "template": "diminished breath sounds throughout"
+                        },
+                        {
+                            "text": "diminished breath sounds at bases",
+                            "template": "diminished breath sounds at bases"
+                        },
+                        {
+                            "text": "wheezes, expiration",
+                            "template": "expiratory wheezes"
+                        }
+                    ]
+                },
+                {
+                    "text": "Abnl lung sounds, L",
+                    "template": "Abnl lung sounds, L: {children}",
+                    "children": [
+                        {
+                            "text": "whoop",
+                            "template": "whoop",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "stridor",
+                            "template": "stridor",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pleural rub",
+                            "template": "pleural rub"
+                        },
+                        {
+                            "text": "basilar rales",
+                            "template": "basilar rales"
+                        },
+                        {
+                            "text": "rales scattered",
+                            "template": "scattered rales"
+                        },
+                        {
+                            "text": "rhonchi scattered",
+                            "template": "scattered rhonchi"
+                        },
+                        {
+                            "text": "diminished breath sounds throughout",
+                            "template": "diminished breath sounds throughout"
+                        },
+                        {
+                            "text": "diminished breath sounds at bases",
+                            "template": "diminished breath sounds at bases"
+                        },
+                        {
+                            "text": "wheezes, expiration",
+                            "template": "expiratory wheezes"
+                        }
+                    ]
+                },
+                {
+                    "text": "Abnl lung sounds, BL",
+                    "template": "Abnl lung sounds, BL: {children}",
+                    "children": [
+                        {
+                            "text": "whoop",
+                            "template": "whoop",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "stridor",
+                            "template": "stridor",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pleural rub",
+                            "template": "pleural rub"
+                        },
+                        {
+                            "text": "basilar rales",
+                            "template": "basilar rales"
+                        },
+                        {
+                            "text": "rales scattered",
+                            "template": "scattered rales"
+                        },
+                        {
+                            "text": "rhonchi scattered",
+                            "template": "scattered rhonchi"
+                        },
+                        {
+                            "text": "diminished breath sounds throughout",
+                            "template": "diminished breath sounds throughout"
+                        },
+                        {
+                            "text": "diminished breath sounds at bases",
+                            "template": "diminished breath sounds at bases"
+                        },
+                        {
+                            "text": "wheezes, expiration",
+                            "template": "expiratory wheezes"
+                        }
+                    ]
+                },
+                {
+                    "text": "Percussion, R",
+                    "template": "Percussion, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal to percussion",
+                            "template": "normal to percussion"
+                        },
+                        {
+                            "text": "dullness to percussion at base",
+                            "template": "dullness to percussion at base"
+                        },
+                        {
+                            "text": "dull throughout",
+                            "template": "dull to percussion throughout"
+                        }
+                    ]
+                },
+                {
+                    "text": "Percussion, L",
+                    "template": "Percussion, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal to percussion",
+                            "template": "normal to percussion"
+                        },
+                        {
+                            "text": "dullness to percussion at base",
+                            "template": "dullness to percussion at base"
+                        },
+                        {
+                            "text": "dull throughout",
+                            "template": "dull to percussion throughout"
+                        }
+                    ]
+                },
+                {
+                    "text": "Percussion, BL",
+                    "template": "Percussion, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal to percussion",
+                            "template": "normal to percussion"
+                        },
+                        {
+                            "text": "dullness to percussion at base",
+                            "template": "dullness to percussion at base"
+                        },
+                        {
+                            "text": "dull throughout",
+                            "template": "dull to percussion throughout"
+                        }
+                    ]
+                },
+                {
+                    "text": "Breathing dynamics, R",
+                    "template": "Breathing dynamics, R: {children}",
+                    "children": [
+                        {
+                            "text": "labored breathing",
+                            "template": "labored breathing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "accessory muscle use",
+                            "template": "accessory muscle use",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "rib retractions",
+                            "template": "rib retractions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abnormal diaphragm movement",
+                            "template": "abnormal diaphragm movement",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Breathing dynamics, L",
+                    "template": "Breathing dynamics, L: {children}",
+                    "children": [
+                        {
+                            "text": "labored breathing",
+                            "template": "labored breathing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "accessory muscle use",
+                            "template": "accessory muscle use",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "rib retractions",
+                            "template": "rib retractions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abnormal diaphragm movement",
+                            "template": "abnormal diaphragm movement",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Breathing dynamics, BL",
+                    "template": "Breathing dynamics, BL: {children}",
+                    "children": [
+                        {
+                            "text": "labored breathing",
+                            "template": "labored breathing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "accessory muscle use",
+                            "template": "accessory muscle use",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "rib retractions",
+                            "template": "rib retractions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abnormal diaphragm movement",
+                            "template": "abnormal diaphragm movement",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Cardiovascular",
+            "template": "CV: {children}",
+            "children": [
+                {
+                    "text": "RRR, no murmur\/rub\/gallop",
+                    "template": "RRR, no murmur\/rub\/gallop"
+                },
+                {
+                    "text": "S1, S2 findings",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "NL S1",
+                            "template": "NL S1"
+                        },
+                        {
+                            "text": "NL S2",
+                            "template": "NL S2"
+                        },
+                        {
+                            "text": "split S2",
+                            "template": "split S2"
+                        },
+                        {
+                            "text": "split S1",
+                            "template": "split S1"
+                        },
+                        {
+                            "text": "persistently split S2",
+                            "template": "persistently split S2"
+                        },
+                        {
+                            "text": "physiologically split S2",
+                            "template": "physiologically split S2"
+                        },
+                        {
+                            "text": "paradoxically split S2",
+                            "template": "paradoxically split S2"
+                        },
+                        {
+                            "text": "widely split S2",
+                            "template": "widely split S2"
+                        }
+                    ]
+                },
+                {
+                    "text": "S3 gallop",
+                    "template": "S3 gallop",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "S4 gallop",
+                    "template": "S4 gallop",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "regular rate and rhythm",
+                    "template": "regular rate and rhythm"
+                },
+                {
+                    "text": "regular rate",
+                    "template": "regular rate"
+                },
+                {
+                    "text": "regular rhythm",
+                    "template": "regular rhythm"
+                },
+                {
+                    "text": "no murmurs",
+                    "template": "no murmurs"
+                },
+                {
+                    "text": "Murmur grade",
+                    "template": "Murmur grade: {text}\/6",
+                    "type": "number"
+                },
+                {
+                    "text": "Murmur timing\/location",
+                    "template": "murmur {children}",
+                    "children": [
+                        {
+                            "text": "systolic",
+                            "template": "is systolic"
+                        },
+                        {
+                            "text": "diastolic",
+                            "template": "is diastolic"
+                        },
+                        {
+                            "text": "holosystolic",
+                            "template": "is holosystolic"
+                        },
+                        {
+                            "text": "continuous",
+                            "template": "is continuous"
+                        },
+                        {
+                            "text": "best: L sternal border",
+                            "template": "best heard at L sternal border"
+                        },
+                        {
+                            "text": "best: 2nd R ICS",
+                            "template": "best heard near 2nd R ICS"
+                        },
+                        {
+                            "text": "best: xiphoid\/ sternal area",
+                            "template": "best heard at xiphoid\/sternal area"
+                        },
+                        {
+                            "text": "best: apex",
+                            "template": "best heard at apex"
+                        },
+                        {
+                            "text": "best: R sternal border",
+                            "template": "best heard at R sternal border"
+                        },
+                        {
+                            "text": "nonradiating",
+                            "template": "nonradiating"
+                        },
+                        {
+                            "text": "radiates to axilla",
+                            "template": "radiates to axilla"
+                        },
+                        {
+                            "text": "radiates to apex",
+                            "template": "radiates to apex"
+                        },
+                        {
+                            "text": "radiates to carotids",
+                            "template": "radiates to carotids"
+                        },
+                        {
+                            "text": "radiates to R side",
+                            "template": "radiates to R side"
+                        },
+                        {
+                            "text": "radiates to sternum",
+                            "template": "radiates to sternum"
+                        },
+                        {
+                            "text": "radiates to L clavicular area",
+                            "template": "radiates to L clavicular area"
+                        }
+                    ]
+                },
+                {
+                    "text": "no increased JVP visible",
+                    "template": "no increased JVP visible"
+                },
+                {
+                    "text": "JVP level (cm)",
+                    "template": "JVP {text} cm above the sternal angle",
+                    "type": "number"
+                },
+                {
+                    "text": "Heaves, Thrills, Lifts",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "heave",
+                            "template": "heave",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "parasternal lift",
+                            "template": "parasternal lift",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "thrill",
+                            "template": "thrill",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Extra heart sounds",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "extra heart sounds",
+                            "template": "extra heart sounds",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pulmonary ejection sound",
+                            "template": "pulmonary ejection sound",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "aortic ejection sound",
+                            "template": "aortic ejection sound",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "systolic click",
+                            "template": "systolic click",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "midsystolic click",
+                            "template": "midsystolic click",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mid-late systolic click",
+                            "template": "mid-to-late systolic click",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pericardial rub",
+                            "template": "pericardial rub",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "knock",
+                            "template": "knock",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "opening snap",
+                            "template": "opening snap",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "plop",
+                            "template": "plop",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "prosthetic sounds",
+                            "template": "prosthetic sounds",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pacemaker sounds",
+                            "template": "pacemaker sounds",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "PMI nondisplaced",
+                    "template": "PMI nondisplaced"
+                },
+                {
+                    "text": "PMI displaced",
+                    "template": "PMI displaced",
+                    "children": [
+                        {
+                            "text": "laterally",
+                            "template": "laterally"
+                        },
+                        {
+                            "text": "inferiorly",
+                            "template": "inferiorly"
+                        },
+                        {
+                            "text": "superiorly",
+                            "template": "superiorly"
+                        },
+                        {
+                            "text": "parasternally",
+                            "template": "parasternally"
+                        }
+                    ]
+                },
+                {
+                    "text": "Peripheral pulses, R",
+                    "template": "Peripheral pulses, R: {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity normal",
+                            "template": "upper extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lower extremity normal",
+                            "template": "lower extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished in upper extremities",
+                            "template": "diminished in upper extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished in lower extremities",
+                            "template": "diminished in lower extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pulsus paradoxicus",
+                            "template": "pulsus paradoxicus",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Peripheral pulses, L",
+                    "template": "Peripheral pulses, L: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact"
+                        },
+                        {
+                            "text": "upper extremity normal",
+                            "template": "upper extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lower extremity normal",
+                            "template": "lower extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished in upper extremities",
+                            "template": "diminished in upper extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished in lower extremities",
+                            "template": "diminished in lower extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pulsus paradoxicus",
+                            "template": "pulsus paradoxicus",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Peripheral pulses, BL",
+                    "template": "Peripheral pulses, BL: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact"
+                        },
+                        {
+                            "text": "upper extremity normal",
+                            "template": "upper extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lower extremity normal",
+                            "template": "lower extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished in upper extremities",
+                            "template": "diminished in upper extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished in lower extremities",
+                            "template": "diminished in lower extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pulsus paradoxicus",
+                            "template": "pulsus paradoxicus",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Xanthomas, R",
+                    "template": "Xanthomas, R: {children}",
+                    "children": [
+                        {
+                            "text": "eyelids",
+                            "template": "eyelids"
+                        },
+                        {
+                            "text": "periorbital",
+                            "template": "periorbital area"
+                        },
+                        {
+                            "text": "hands",
+                            "template": "hands"
+                        },
+                        {
+                            "text": "Achilles tendons",
+                            "template": "Achilles tendons"
+                        },
+                        {
+                            "text": "feet",
+                            "template": "feet"
+                        },
+                        {
+                            "text": "elbows",
+                            "template": "elbows"
+                        },
+                        {
+                            "text": "knees",
+                            "template": "knees"
+                        },
+                        {
+                            "text": "shoulders",
+                            "template": "shoulders"
+                        },
+                        {
+                            "text": "buttocks",
+                            "template": "buttocks"
+                        }
+                    ]
+                },
+                {
+                    "text": "Xanthomas, L",
+                    "template": "Xanthomas, L: {children}",
+                    "children": [
+                        {
+                            "text": "eyelids",
+                            "template": "eyelids"
+                        },
+                        {
+                            "text": "periorbital",
+                            "template": "periorbital area"
+                        },
+                        {
+                            "text": "hands",
+                            "template": "hands"
+                        },
+                        {
+                            "text": "Achilles tendons",
+                            "template": "Achilles tendons"
+                        },
+                        {
+                            "text": "feet",
+                            "template": "feet"
+                        },
+                        {
+                            "text": "elbows",
+                            "template": "elbows"
+                        },
+                        {
+                            "text": "knees",
+                            "template": "knees"
+                        },
+                        {
+                            "text": "shoulders",
+                            "template": "shoulders"
+                        },
+                        {
+                            "text": "buttocks",
+                            "template": "buttocks"
+                        }
+                    ]
+                },
+                {
+                    "text": "Xanthomas, BL",
+                    "template": "Xanthomas, BL: {children}",
+                    "children": [
+                        {
+                            "text": "eyelids",
+                            "template": "eyelids"
+                        },
+                        {
+                            "text": "periorbital",
+                            "template": "periorbital area"
+                        },
+                        {
+                            "text": "hands",
+                            "template": "hands"
+                        },
+                        {
+                            "text": "Achilles tendons",
+                            "template": "Achilles tendons"
+                        },
+                        {
+                            "text": "feet",
+                            "template": "feet"
+                        },
+                        {
+                            "text": "elbows",
+                            "template": "elbows"
+                        },
+                        {
+                            "text": "knees",
+                            "template": "knees"
+                        },
+                        {
+                            "text": "shoulders",
+                            "template": "shoulders"
+                        },
+                        {
+                            "text": "buttocks",
+                            "template": "buttocks"
+                        }
+                    ]
+                },
+                {
+                    "text": "LE venous stasis changes",
+                    "template": "LE venous stasis changes",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "varicose veins",
+                    "template": "varicose veins",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "LE varicose veins, R",
+                    "template": "LE varicose veins, R: {children}",
+                    "children": [
+                        {
+                            "text": "present",
+                            "template": "present",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "LE varicose veins, L",
+                    "template": "LE varicose veins, L: {children}",
+                    "children": [
+                        {
+                            "text": "present",
+                            "template": "present",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "LE varicose veins, BL",
+                    "template": "LE varicose veins, BL: {children}",
+                    "children": [
+                        {
+                            "text": "present",
+                            "template": "present",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "Other findings: {text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Cardiovascular, pulses",
+            "template": "CV: {children}",
+            "children": [
+                {
+                    "text": "pulse rate and rhythm regular",
+                    "template": "pulse rate and rhythm regular"
+                },
+                {
+                    "text": "pulse rate regular",
+                    "template": "pulse rate regular"
+                },
+                {
+                    "text": "pulse rhythm regular",
+                    "template": "pulse rhythm regular"
+                },
+                {
+                    "text": "Temporal artery, R",
+                    "template": "Temporal artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Temporal artery, L",
+                    "template": "Temporal artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Temporal arteries, BL",
+                    "template": "Temporal arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Carotid artery, R",
+                    "template": "Carotid artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "delayed upstroke",
+                            "template": "delayed upstroke"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Carotid artery, L",
+                    "template": "Carotid artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "delayed upstroke",
+                            "template": "delayed upstroke"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Carotid arteries, BL",
+                    "template": "Carotid arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "delayed upstroke",
+                            "template": "delayed upstroke"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Brachial artery, R",
+                    "template": "Brachial artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Brachial artery, L",
+                    "template": "Brachial artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Brachial arteries, BL",
+                    "template": "Brachial arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Radial artery, R",
+                    "template": "Radial artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "waterhammer",
+                            "template": "waterhammer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bisferiens",
+                            "template": "bisferiens",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Radial artery, L",
+                    "template": "Radial artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "waterhammer",
+                            "template": "waterhammer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bisferiens",
+                            "template": "bisferiens",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Radial arteries, BL",
+                    "template": "Radial arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "waterhammer",
+                            "template": "waterhammer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bisferiens",
+                            "template": "bisferiens",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Femoral artery, R",
+                    "template": "Femoral artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Femoral artery, L",
+                    "template": "Femoral artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Femoral arteries, BL",
+                    "template": "Femoral arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Popliteal artery, R",
+                    "template": "Popliteal artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Popliteal artery, L",
+                    "template": "Popliteal artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Popliteal arteries, BL",
+                    "template": "Popliteal arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Dorsalis pedis artery, R",
+                    "template": "Dorsalis pedis artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Dorsalis pedis artery, L",
+                    "template": "Dorsalis pedis artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Dorsalis pedis arteries, BL",
+                    "template": "Dorsalis pedis arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Posterior tibial, R",
+                    "template": "Posterior tibial, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Posterior tibial, L",
+                    "template": "Posterior tibial, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Posterior tibial arteries, BL",
+                    "template": "Posterior tibial arteries, BL {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Renal artery, R",
+                    "template": "Renal artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "bruit present",
+                            "template": "bruit present"
+                        },
+                        {
+                            "text": "palpable pulse",
+                            "template": "palpable pulse",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Renal artery, L",
+                    "template": "Renal artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "bruit present",
+                            "template": "bruit present"
+                        },
+                        {
+                            "text": "palpable pulse",
+                            "template": "palpable pulse",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Renal arteries, BL",
+                    "template": "Renal arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "bruit present",
+                            "template": "bruit present"
+                        },
+                        {
+                            "text": "palpable pulse",
+                            "template": "palpable pulse",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Aorta",
+                    "template": "Aorta: {children}",
+                    "children": [
+                        {
+                            "text": "enlargement",
+                            "template": "enlargement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Gastrointestinal",
+            "template": "GI: {children}",
+            "children": [
+                {
+                    "text": "NL abdominal inspection",
+                    "template": "NL abdominal inspection"
+                },
+                {
+                    "text": "abdominal distension noted",
+                    "template": "abdominal distension noted"
+                },
+                {
+                    "text": "abdomen flat on inspection",
+                    "template": "abdomen flat on inspection"
+                },
+                {
+                    "text": "abdomen obese on inspection",
+                    "template": "abdomen obese on inspection"
+                },
+                {
+                    "text": "abdomen scaphoid on inspection",
+                    "template": "abdomen scaphoid on inspection"
+                },
+                {
+                    "text": "bowel sounds intact throughout",
+                    "template": "bowel sounds intact throughout"
+                },
+                {
+                    "text": "decreased bowel sounds",
+                    "template": "decreased bowel sounds",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "absent bowel sounds",
+                    "template": "absent bowel sounds",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "high pitched bowel sounds",
+                    "template": "high pitched bowel sounds",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "borborygmi",
+                    "template": "borborygmi",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "soft, nontender to palpation",
+                    "template": "soft, nontender to palpation"
+                },
+                {
+                    "text": "no rebound\/guarding\/rigidity",
+                    "template": "no rebound\/guarding\/rigidity"
+                },
+                {
+                    "text": "rebound",
+                    "template": "rebound",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "guarding",
+                    "template": "guarding",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "rigidity",
+                    "template": "rigidity",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "hepatomegaly",
+                    "template": "hepatomegaly",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "splenomegaly",
+                    "template": "splenomegaly",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "masses",
+                    "template": "masses",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Abdominal exam - tenderness",
+                    "template": "Abdominal pain: {children}",
+                    "children": [
+                        {
+                            "text": "no tenderness noted on exam",
+                            "template": "no tenderness noted on exam"
+                        },
+                        {
+                            "text": "tenderness at rest",
+                            "template": "tenderness present at rest",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tenderness with palpation",
+                            "template": "tenderness present with palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tenderness with movement",
+                            "template": "tenderness present with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mild",
+                            "template": "mild pain present"
+                        },
+                        {
+                            "text": "moderate",
+                            "template": "moderate pain present"
+                        },
+                        {
+                            "text": "severe",
+                            "template": "severe pain present"
+                        },
+                        {
+                            "text": "present throughout",
+                            "template": "pain present throughout"
+                        },
+                        {
+                            "text": "right sided tenderness",
+                            "template": "right sided tenderness present"
+                        },
+                        {
+                            "text": "left sided tenderness",
+                            "template": "left sided tenderness present"
+                        },
+                        {
+                            "text": "midepigastric tenderness",
+                            "template": "midepigastric tenderness present"
+                        },
+                        {
+                            "text": "RUQ tenderness",
+                            "template": "RUQ tenderness present"
+                        },
+                        {
+                            "text": "LUQ tenderness",
+                            "template": "LUQ tenderness present"
+                        },
+                        {
+                            "text": "hypogastric tenderness",
+                            "template": "hypogastric tenderness present"
+                        },
+                        {
+                            "text": "RLQ tenderness",
+                            "template": "RLQ tenderness present"
+                        },
+                        {
+                            "text": "LLQ tenderness",
+                            "template": "LLQ tenderness present"
+                        },
+                        {
+                            "text": "periumbilical tenderness",
+                            "template": "periumbilical tenderness present"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Dermatologic",
+            "template": "DERM: {children}",
+            "children": [
+                {
+                    "text": "diaphoresis",
+                    "template": "diaphoresis",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "dry skin",
+                    "template": "dry skin",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "clubbing",
+                    "template": "clubbing",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "cyanosis",
+                    "template": "cyanosis",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "decreased hair LE",
+                    "template": "decreased hair LE",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "venous stasis changes LE",
+                    "template": "venous stasis changes LE",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "stasis dermatitis R LE",
+                    "template": "stasis dermatitis R LE",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "stasis dermatitis L LE",
+                    "template": "stasis dermatitis L LE",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "petechiae",
+                    "template": "petechiae",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "bruising",
+                    "template": "bruising",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Extremities",
+            "template": "EXT: {children}",
+            "children": [
+                {
+                    "text": "no C\/C\/E",
+                    "template": "no C\/C\/E"
+                },
+                {
+                    "text": "cyanosis",
+                    "template": "cyanosis",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "clubbing",
+                    "template": "clubbing",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "edema",
+                    "template": "edema",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "anasarca",
+                    "template": "anasarca",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Upper extremity C\/C\/E, R",
+                    "template": "Upper extremity C\/C\/E, R: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity C\/C\/E, L",
+                    "template": "Upper extremity C\/C\/E, L: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremities C\/C\/E, BL",
+                    "template": "Upper extremities C\/C\/E, BL: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity C\/C\/E, R",
+                    "template": "Lower extremity C\/C\/E, R: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity C\/C\/E, L",
+                    "template": "Lower extremity C\/C\/E, L: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremities C\/C\/E, BL",
+                    "template": "Lower extremities C\/C\/E, BL: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "full range of motion throughout",
+                    "template": "full range of motion throughout"
+                },
+                {
+                    "text": "upper ext strength intact BL",
+                    "template": "upper extremity strength intact BL",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Upper extremity, ROM, R",
+                    "template": "Upper extremity, range of motion, R: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity, ROM, L",
+                    "template": "Upper extremity, range of motion, L: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremities, ROM, BL",
+                    "template": "Upper extremities, range of motion, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "lower ext strength intact BL",
+                    "template": "lower extremity strength intact BL",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Lower extremity, ROM, R",
+                    "template": "Lower extremity, range of motion, R: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity, ROM, L",
+                    "template": "Lower extremity, range of motion, L: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity, ROM, BL",
+                    "template": "Lower extremity, range of motion, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "upper extremity strength intact BL",
+                    "template": "Upper extremity strength intact BL",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Upper extremity strength, R",
+                    "template": "Upper extremity strength, R: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity strength, L",
+                    "template": "Upper extremity strength, L: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity strength, BL",
+                    "template": "Upper extremity strength, BL: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "lower extremity strength intact BL",
+                    "template": "Lower extremity strength intact BL",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Lower extremity strength, R",
+                    "template": "Lower extremity strength, R: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity strength, L",
+                    "template": "Lower extremity strength, L: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity strength, BL",
+                    "template": "Lower extremity strength, BL: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Upper extremity joints, areas",
+            "template": "EXT: {children}",
+            "children": [
+                {
+                    "text": "Shoulder, R",
+                    "template": "Shoulder, R: {children}",
+                    "children": [
+                        {
+                            "text": "full range of motion intact",
+                            "template": "full range of motion intact"
+                        },
+                        {
+                            "text": "laxity present",
+                            "template": "laxity present",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "internal rotation intact",
+                            "template": "internal rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "external rotation intact",
+                            "template": "external rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "apprehension test normal",
+                            "template": "apprehension test normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "impingement test normal",
+                            "template": "impingement test normal",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Shoulder, L",
+                    "template": "Shoulder, L: {children}",
+                    "children": [
+                        {
+                            "text": "full range of motion intact",
+                            "template": "full range of motion intact"
+                        },
+                        {
+                            "text": "laxity present",
+                            "template": "laxity present",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "internal rotation intact",
+                            "template": "internal rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "external rotation intact",
+                            "template": "external rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "apprehension test normal",
+                            "template": "apprehension test normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "impingement test normal",
+                            "template": "impingement test normal",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Shoulders, BL",
+                    "template": "Shoulders, BL: {children}",
+                    "children": [
+                        {
+                            "text": "full range of motion intact",
+                            "template": "full range of motion intact"
+                        },
+                        {
+                            "text": "laxity present",
+                            "template": "laxity present",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "internal rotation intact",
+                            "template": "internal rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "external rotation intact",
+                            "template": "external rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "apprehension test normal",
+                            "template": "apprehension test normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "impingement test normal",
+                            "template": "impingement test normal",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper arm, R",
+                    "template": "Upper arm, R: {children}",
+                    "children": [
+                        {
+                            "text": "full range of motion intact",
+                            "template": "full range of motion intact"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper arm, L",
+                    "template": "Upper arm, L: {children}",
+                    "children": [
+                        {
+                            "text": "full range of motion intact",
+                            "template": "full range of motion intact"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper arms, BL",
+                    "template": "Upper arms, BL: {children}",
+                    "children": [
+                        {
+                            "text": "full range of motion intact",
+                            "template": "full range of motion intact"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Forearm, R",
+                    "template": "Forearm, R: {children}",
+                    "children": [
+                        {
+                            "text": "full range of motion intact",
+                            "template": "full range of motion intact"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pronation intact",
+                            "template": "pronation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "supination intact",
+                            "template": "supination intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Forearm, L",
+                    "template": "Forearm, L: {children}",
+                    "children": [
+                        {
+                            "text": "full range of motion intact",
+                            "template": "full range of motion intact"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pronation intact",
+                            "template": "pronation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "supination intact",
+                            "template": "supination intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Forearms, BL",
+                    "template": "Forearms, BL: {children}",
+                    "children": [
+                        {
+                            "text": "full range of motion intact",
+                            "template": "full range of motion intact"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pronation intact",
+                            "template": "pronation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "supination intact",
+                            "template": "supination intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Elbow, R",
+                    "template": "Elbow, R: {children}",
+                    "children": [
+                        {
+                            "text": "full range of motion intact",
+                            "template": "full range of motion intact"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Elbow, L",
+                    "template": "Elbow, L: {children}",
+                    "children": [
+                        {
+                            "text": "full range of motion intact",
+                            "template": "full range of motion intact"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Elbows, BL",
+                    "template": "Elbows, BL: {children}",
+                    "children": [
+                        {
+                            "text": "full range of motion intact",
+                            "template": "full range of motion intact"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Hand, R",
+                    "template": "Hand, R: {children}",
+                    "children": [
+                        {
+                            "text": "radial aspect involved",
+                            "template": "radial aspect involved"
+                        },
+                        {
+                            "text": "ulnar aspect involved",
+                            "template": "ulnar aspect involved"
+                        },
+                        {
+                            "text": "full range of motion intact",
+                            "template": "full range of motion intact"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "snuff box tenderness present",
+                            "template": "snuff box tenderness present",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pronation intact",
+                            "template": "pronation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "supination intact",
+                            "template": "supination intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Hand, L",
+                    "template": "Hand, L: {children}",
+                    "children": [
+                        {
+                            "text": "radial aspect involved",
+                            "template": "radial aspect involved"
+                        },
+                        {
+                            "text": "ulnar aspect involved",
+                            "template": "ulnar aspect involved"
+                        },
+                        {
+                            "text": "full range of motion intact",
+                            "template": "full range of motion intact"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "snuff box tenderness present",
+                            "template": "snuff box tenderness present",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pronation intact",
+                            "template": "pronation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "supination intact",
+                            "template": "supination intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Hands, BL",
+                    "template": "Hands, BL: {children}",
+                    "children": [
+                        {
+                            "text": "radial aspect involved",
+                            "template": "radial aspect involved"
+                        },
+                        {
+                            "text": "ulnar aspect involved",
+                            "template": "ulnar aspect involved"
+                        },
+                        {
+                            "text": "full range of motion intact",
+                            "template": "full range of motion intact"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "snuff box tenderness present",
+                            "template": "snuff box tenderness present",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pronation intact",
+                            "template": "pronation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "supination intact",
+                            "template": "supination intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Wrist, R",
+                    "template": "Wrist, R: {children}",
+                    "children": [
+                        {
+                            "text": "radial aspect involved",
+                            "template": "radial aspect involved"
+                        },
+                        {
+                            "text": "ulnar aspect involved",
+                            "template": "ulnar aspect involved"
+                        },
+                        {
+                            "text": "full range of motion intact",
+                            "template": "full range of motion intact"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pronation intact",
+                            "template": "pronation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "supination intact",
+                            "template": "supination intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "Phalen maneuver",
+                            "template": "Phalen maneuver",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "Tinel sign",
+                            "template": "Tinel sign",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "Allen test",
+                            "template": "Allen test",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Wrist, L",
+                    "template": "Wrist, L: {children}",
+                    "children": [
+                        {
+                            "text": "radial aspect involved",
+                            "template": "radial aspect involved"
+                        },
+                        {
+                            "text": "ulnar aspect involved",
+                            "template": "ulnar aspect involved"
+                        },
+                        {
+                            "text": "full range of motion intact",
+                            "template": "full range of motion intact"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pronation intact",
+                            "template": "pronation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "supination intact",
+                            "template": "supination intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "Phalen maneuver",
+                            "template": "Phalen maneuver",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "Tinel sign",
+                            "template": "Tinel sign",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "Allen test",
+                            "template": "Allen test",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Wrists, BL",
+                    "template": "Wrist, BL: {children}",
+                    "children": [
+                        {
+                            "text": "radial aspect involved",
+                            "template": "radial aspect involved"
+                        },
+                        {
+                            "text": "ulnar aspect involved",
+                            "template": "ulnar aspect involved"
+                        },
+                        {
+                            "text": "full range of motion intact",
+                            "template": "full range of motion intact"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pronation intact",
+                            "template": "pronation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "supination intact",
+                            "template": "supination intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "Phalen maneuver",
+                            "template": "Phalen maneuver",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "Tinel sign",
+                            "template": "Tinel sign",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "Allen test",
+                            "template": "Allen test",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Upper extremity fingers",
+            "template": "EXT: {children}",
+            "children": [
+                {
+                    "text": "1st (thumb) finger, R",
+                    "template": "1st (thumb), R: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cool to touch",
+                            "template": "cool to touch",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ulcer",
+                            "template": "ulcer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain",
+                            "template": "pain",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "adduction intact",
+                            "template": "adduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "1st (thumb) finger, L",
+                    "template": "1st (thumb) finger, L: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cool to touch",
+                            "template": "cool to touch",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ulcer",
+                            "template": "ulcer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain",
+                            "template": "pain",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "adduction intact",
+                            "template": "adduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "1st (thumb) fingers, BL",
+                    "template": "1st (thumb) fingers, BL: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cool to touch",
+                            "template": "cool to touch",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ulcer",
+                            "template": "ulcer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain",
+                            "template": "pain",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "adduction intact",
+                            "template": "adduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "2nd finger, R",
+                    "template": "2nd finger, R: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cool to touch",
+                            "template": "cool to touch",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ulcer",
+                            "template": "ulcer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain",
+                            "template": "pain",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "adduction intact",
+                            "template": "adduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "2nd finger, L",
+                    "template": "2nd finger, L: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cool to touch",
+                            "template": "cool to touch",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ulcer",
+                            "template": "ulcer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain",
+                            "template": "pain",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "adduction intact",
+                            "template": "adduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "2nd fingers, BL",
+                    "template": "2nd fingers, BL: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cool to touch",
+                            "template": "cool to touch",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ulcer",
+                            "template": "ulcer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain",
+                            "template": "pain",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "adduction intact",
+                            "template": "adduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "3rd finger, R",
+                    "template": "3rd finger, R: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cool to touch",
+                            "template": "cool to touch",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ulcer",
+                            "template": "ulcer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain",
+                            "template": "pain",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "adduction intact",
+                            "template": "adduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "3rd finger, L",
+                    "template": "3rd finger, L: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cool to touch",
+                            "template": "cool to touch",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ulcer",
+                            "template": "ulcer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain",
+                            "template": "pain",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "adduction intact",
+                            "template": "adduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "3rd fingers, BL",
+                    "template": "3rd fingers, BL: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cool to touch",
+                            "template": "cool to touch",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ulcer",
+                            "template": "ulcer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain",
+                            "template": "pain",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "adduction intact",
+                            "template": "adduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "4th finger, R",
+                    "template": "4th finger, R: {children}",
+                    "children": [
+                        {
+                            "text": "bilateral",
+                            "template": "(bilateral)"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cool to touch",
+                            "template": "cool to touch",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ulcer",
+                            "template": "ulcer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain",
+                            "template": "pain",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "adduction intact",
+                            "template": "adduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "4th finger, L",
+                    "template": "4th finger, L: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cool to touch",
+                            "template": "cool to touch",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ulcer",
+                            "template": "ulcer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain",
+                            "template": "pain",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "adduction intact",
+                            "template": "adduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "4th fingers, BL",
+                    "template": "4th fingers, BL: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cool to touch",
+                            "template": "cool to touch",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ulcer",
+                            "template": "ulcer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain",
+                            "template": "pain",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "adduction intact",
+                            "template": "adduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "5th finger, R",
+                    "template": "5th finger, R: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cool to touch",
+                            "template": "cool to touch",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ulcer",
+                            "template": "ulcer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain",
+                            "template": "pain",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "adduction intact",
+                            "template": "adduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bilateral",
+                            "template": "(bilateral)"
+                        }
+                    ]
+                },
+                {
+                    "text": "5th finger, L",
+                    "template": "5th finger, L: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cool to touch",
+                            "template": "cool to touch",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ulcer",
+                            "template": "ulcer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain",
+                            "template": "pain",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "adduction intact",
+                            "template": "adduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bilateral",
+                            "template": "(bilateral)"
+                        }
+                    ]
+                },
+                {
+                    "text": "5th fingers, BL",
+                    "template": "5th fingers, BL: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cool to touch",
+                            "template": "cool to touch",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ulcer",
+                            "template": "ulcer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain",
+                            "template": "pain",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "adduction intact",
+                            "template": "adduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bilateral",
+                            "template": "(bilateral)"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Lower extremity joints, areas",
+            "template": "EXT: {children}",
+            "children": [
+                {
+                    "text": "Hip, R",
+                    "template": "Hip, R: {children}",
+                    "children": [
+                        {
+                            "text": "full range of motion intact",
+                            "template": "full range of motion intact"
+                        },
+                        {
+                            "text": "laxity present",
+                            "template": "laxity present",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "internal rotation intact",
+                            "template": "internal rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "external rotation intact",
+                            "template": "external rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "adduction intact",
+                            "template": "adduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Hip, L",
+                    "template": "Hip, L: {children}",
+                    "children": [
+                        {
+                            "text": "full range of motion intact",
+                            "template": "full range of motion intact"
+                        },
+                        {
+                            "text": "laxity present",
+                            "template": "laxity present",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "internal rotation intact",
+                            "template": "internal rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "external rotation intact",
+                            "template": "external rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "adduction intact",
+                            "template": "adduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Hips, BL",
+                    "template": "Hips, BL: {children}",
+                    "children": [
+                        {
+                            "text": "full range of motion intact",
+                            "template": "full range of motion intact"
+                        },
+                        {
+                            "text": "laxity present",
+                            "template": "laxity present",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "internal rotation intact",
+                            "template": "internal rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "external rotation intact",
+                            "template": "external rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "adduction intact",
+                            "template": "adduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Thigh, R",
+                    "template": "Thigh, R: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "edema",
+                            "template": "edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Thigh, L",
+                    "template": "Thigh, L: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "edema",
+                            "template": "edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Thighs, BL",
+                    "template": "Thighs, BL: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "edema",
+                            "template": "edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Hamstrings, R",
+                    "template": "Hamstrings, R: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "edema",
+                            "template": "edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Hamstrings, L",
+                    "template": "Hamstrings, L: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "edema",
+                            "template": "edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Hamstrings, BL",
+                    "template": "Hamstrings, BL: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "edema",
+                            "template": "edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Knee, R",
+                    "template": "Knee, R: {children}",
+                    "children": [
+                        {
+                            "text": "full range of motion intact",
+                            "template": "full range of motion intact"
+                        },
+                        {
+                            "text": "laxity present",
+                            "template": "laxity present",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "Lachman test",
+                            "template": "Lachman test",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "McMurray test",
+                            "template": "McMurray test",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "anterior drawer test",
+                            "template": "anterior drawer test",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "posterior drawer test",
+                            "template": "posterior drawer test",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Knee, L",
+                    "template": "Knee, L: {children}",
+                    "children": [
+                        {
+                            "text": "full range of motion intact",
+                            "template": "full range of motion intact"
+                        },
+                        {
+                            "text": "laxity present",
+                            "template": "laxity present",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "Lachman test",
+                            "template": "Lachman test",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "McMurray test",
+                            "template": "McMurray test",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "anterior drawer test",
+                            "template": "anterior drawer test",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "posterior drawer test",
+                            "template": "posterior drawer test",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Knees, BL",
+                    "template": "Knees, BL: {children}",
+                    "children": [
+                        {
+                            "text": "full range of motion intact",
+                            "template": "full range of motion intact"
+                        },
+                        {
+                            "text": "laxity present",
+                            "template": "laxity present",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "Lachman test",
+                            "template": "Lachman test",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "McMurray test",
+                            "template": "McMurray test",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "anterior drawer test",
+                            "template": "anterior drawer test",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "posterior drawer test",
+                            "template": "posterior drawer test",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Shin, R",
+                    "template": "Shin, R: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "edema",
+                            "template": "edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Shin, L",
+                    "template": "Shin, L: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "edema",
+                            "template": "edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Shins, BL",
+                    "template": "Shins, BL: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "edema",
+                            "template": "edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Calf, R",
+                    "template": "Calf, R: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "edema",
+                            "template": "edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Calf, L",
+                    "template": "Calf, L: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "edema",
+                            "template": "edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Calves, BL",
+                    "template": "Calves, BL: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "edema",
+                            "template": "edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Ankle, R",
+                    "template": "Ankle, R: {children}",
+                    "children": [
+                        {
+                            "text": "full range of motion intact",
+                            "template": "full range of motion intact"
+                        },
+                        {
+                            "text": "laxity present",
+                            "template": "laxity present",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "edema",
+                            "template": "edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "eversion intact",
+                            "template": "eversion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "inversion intact",
+                            "template": "inversion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Ankle, L",
+                    "template": "Ankle, L: {children}",
+                    "children": [
+                        {
+                            "text": "full range of motion intact",
+                            "template": "full range of motion intact"
+                        },
+                        {
+                            "text": "laxity present",
+                            "template": "laxity present",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "edema",
+                            "template": "edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "eversion intact",
+                            "template": "eversion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "inversion intact",
+                            "template": "inversion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Ankles, BL",
+                    "template": "Ankles, BL: {children}",
+                    "children": [
+                        {
+                            "text": "full range of motion intact",
+                            "template": "full range of motion intact"
+                        },
+                        {
+                            "text": "laxity present",
+                            "template": "laxity present",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "edema",
+                            "template": "edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "eversion intact",
+                            "template": "eversion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "inversion intact",
+                            "template": "inversion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Foot, R",
+                    "template": "Foot, R: {children}",
+                    "children": [
+                        {
+                            "text": "full range of motion intact",
+                            "template": "full range of motion intact"
+                        },
+                        {
+                            "text": "laxity present",
+                            "template": "laxity present",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "dorsiflexion intact",
+                            "template": "dorsiflexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "plantar flexion intact",
+                            "template": "plantar flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "monofilament testing intact",
+                            "template": "monofilament testing intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Foot, L",
+                    "template": "Foot, L: {children}",
+                    "children": [
+                        {
+                            "text": "full range of motion intact",
+                            "template": "full range of motion intact"
+                        },
+                        {
+                            "text": "laxity present",
+                            "template": "laxity present",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "dorsiflexion intact",
+                            "template": "dorsiflexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "plantar flexion intact",
+                            "template": "plantar flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "monofilament testing intact",
+                            "template": "monofilament testing intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Feet, BL",
+                    "template": "Feet, BL: {children}",
+                    "children": [
+                        {
+                            "text": "full range of motion intact",
+                            "template": "full range of motion intact"
+                        },
+                        {
+                            "text": "laxity present",
+                            "template": "laxity present",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "dorsiflexion intact",
+                            "template": "dorsiflexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "plantar flexion intact",
+                            "template": "plantar flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "monofilament testing intact",
+                            "template": "monofilament testing intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Lower extremity toes",
+            "template": "EXT: {children}",
+            "children": [
+                {
+                    "text": "1st (great) toe, R",
+                    "template": "1st (great) toe, R: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cool to touch",
+                            "template": "cool to touch",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ulcer",
+                            "template": "ulcer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain",
+                            "template": "pain",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "adduction intact",
+                            "template": "adduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "1st (great) toe, L",
+                    "template": "1st (great) toe, L: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cool to touch",
+                            "template": "cool to touch",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ulcer",
+                            "template": "ulcer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain",
+                            "template": "pain",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "adduction intact",
+                            "template": "adduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "1st (great) toes, BL",
+                    "template": "1st (great) toe, BL: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cool to touch",
+                            "template": "cool to touch",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ulcer",
+                            "template": "ulcer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain",
+                            "template": "pain",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "adduction intact",
+                            "template": "adduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "2nd toe, R",
+                    "template": "2nd toe, R: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cool to touch",
+                            "template": "cool to touch",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ulcer",
+                            "template": "ulcer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain",
+                            "template": "pain",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "adduction intact",
+                            "template": "adduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "2nd toe, L",
+                    "template": "2nd toe, L: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cool to touch",
+                            "template": "cool to touch",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ulcer",
+                            "template": "ulcer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain",
+                            "template": "pain",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "adduction intact",
+                            "template": "adduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "2nd toes, BL",
+                    "template": "2nd toes, BL: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cool to touch",
+                            "template": "cool to touch",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ulcer",
+                            "template": "ulcer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain",
+                            "template": "pain",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "adduction intact",
+                            "template": "adduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "3rd toe, R",
+                    "template": "3rd toe, R: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cool to touch",
+                            "template": "cool to touch",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ulcer",
+                            "template": "ulcer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain",
+                            "template": "pain",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "adduction intact",
+                            "template": "adduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "3rd toe, L",
+                    "template": "3rd toe, L: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cool to touch",
+                            "template": "cool to touch",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ulcer",
+                            "template": "ulcer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain",
+                            "template": "pain",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "adduction intact",
+                            "template": "adduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "3rd toes, BL",
+                    "template": "3rd toes, BL: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cool to touch",
+                            "template": "cool to touch",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ulcer",
+                            "template": "ulcer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain",
+                            "template": "pain",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "adduction intact",
+                            "template": "adduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "4th toe, R",
+                    "template": "4th toe, R: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cool to touch",
+                            "template": "cool to touch",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ulcer",
+                            "template": "ulcer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain",
+                            "template": "pain",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "adduction intact",
+                            "template": "adduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "4th toe, L",
+                    "template": "4th toe, L: {children}",
+                    "children": [
+                        {
+                            "text": "left",
+                            "template": "(left)"
+                        },
+                        {
+                            "text": "bilateral",
+                            "template": "(bilateral)"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cool to touch",
+                            "template": "cool to touch",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ulcer",
+                            "template": "ulcer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain",
+                            "template": "pain",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "adduction intact",
+                            "template": "adduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "4th toes, BL",
+                    "template": "4th toes, BL: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cool to touch",
+                            "template": "cool to touch",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ulcer",
+                            "template": "ulcer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain",
+                            "template": "pain",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "adduction intact",
+                            "template": "adduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "5th toe, R",
+                    "template": "5th toe, R: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cool to touch",
+                            "template": "cool to touch",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ulcer",
+                            "template": "ulcer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain",
+                            "template": "pain",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "adduction intact",
+                            "template": "adduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bilateral",
+                            "template": "(bilateral)"
+                        }
+                    ]
+                },
+                {
+                    "text": "5th toe, L",
+                    "template": "5th toe, L: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cool to touch",
+                            "template": "cool to touch",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ulcer",
+                            "template": "ulcer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain",
+                            "template": "pain",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "adduction intact",
+                            "template": "adduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bilateral",
+                            "template": "(bilateral)"
+                        }
+                    ]
+                },
+                {
+                    "text": "5th toes, BL",
+                    "template": "5th toes, BL: {children}",
+                    "children": [
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruising",
+                            "template": "bruising",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "warmth",
+                            "template": "warmth",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cool to touch",
+                            "template": "cool to touch",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ulcer",
+                            "template": "ulcer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "joint effusion",
+                            "template": "joint effusion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bony abnormality",
+                            "template": "bony abnormality",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain",
+                            "template": "pain",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "adduction intact",
+                            "template": "adduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abduction intact",
+                            "template": "abduction intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sensation to light touch intact",
+                            "template": "sensation to light touch intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bilateral",
+                            "template": "(bilateral)"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Musculoskeletal",
+            "template": "MUSC\/SKEL: {children}",
+            "children": [
+                {
+                    "text": "muscle strength NL throughout",
+                    "template": "muscle strength NL throughout"
+                },
+                {
+                    "text": "NL upper extremity exam BL",
+                    "template": "NL upper extremity exam BL",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "NL lower extremity exam BL",
+                    "template": "NL lower extremity exam BL",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Upper extremity, R",
+                    "template": "Upper extremity exam, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "normal strength and tone"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity, L",
+                    "template": "Upper extremity exam, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "normal strength and tone"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity, BL",
+                    "template": "Upper extremity exam, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "normal strength and tone"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity, R",
+                    "template": "Lower extremity exam, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "normal strength and tone"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity, L",
+                    "template": "Lower extremity exam, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "normal strength and tone"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity, BL",
+                    "template": "Lower extremity exam, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "normal strength and tone"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Back\/spine",
+            "template": "MUSC\/SKEL: {children}",
+            "children": [
+                {
+                    "text": "Back, R",
+                    "template": "Back exam, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sacral edema",
+                            "template": "sacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "presacral edema",
+                            "template": "presacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "costovertebral angle tenderness",
+                            "template": "costovertebral angle tenderness",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Back, L",
+                    "template": "Back exam, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sacral edema",
+                            "template": "sacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "presacral edema",
+                            "template": "presacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "costovertebral angle tenderness",
+                            "template": "costovertebral angle tenderness",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Back, BL",
+                    "template": "Back exam, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sacral edema",
+                            "template": "sacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "presacral edema",
+                            "template": "presacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "costovertebral angle tenderness",
+                            "template": "costovertebral angle tenderness",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Cervical spine\/musculature, R",
+                    "template": "Cervical spine\/musculature, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Cervical spine\/musculature, L",
+                    "template": "Cervical spine\/musculature, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Cervical spine\/musculature, BL",
+                    "template": "Cervical spine\/musculature, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Thoracic spine\/musculature, R",
+                    "template": "Thoracic spine\/musculature, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Thoracic spine\/musculature, L",
+                    "template": "Thoracic spine\/musculature, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Thoracic spine\/musculature, BL",
+                    "template": "Thoracic spine\/musculature, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lumbar spine\/musculature, R",
+                    "template": "Lumbar spine\/musculature, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "CVA tenderness",
+                            "template": "CVA tenderness",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "straight leg raise normal",
+                            "template": "straight leg raise normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "femoral nerve stretch test",
+                            "template": "femoral nerve stretch test",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "FABER test",
+                            "template": "FABER test",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lumbar spine\/musculature, L",
+                    "template": "Lumbar spine\/musculature, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "CVA tenderness",
+                            "template": "CVA tenderness",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "straight leg raise normal",
+                            "template": "straight leg raise normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "femoral nerve stretch test",
+                            "template": "femoral nerve stretch test",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "FABER test",
+                            "template": "FABER test",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lumbar spine\/musculature, BL",
+                    "template": "Lumbar spine\/musculature, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "CVA tenderness",
+                            "template": "CVA tenderness",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "straight leg raise normal",
+                            "template": "straight leg raise normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "femoral nerve stretch test",
+                            "template": "femoral nerve stretch test",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "FABER test",
+                            "template": "FABER test",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Sacral spine\/musculature, R",
+                    "template": "Sacral spine\/musculature, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "CVA tenderness",
+                            "template": "CVA tenderness",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "straight leg raise normal",
+                            "template": "straight leg raise normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "femoral nerve stretch test",
+                            "template": "femoral nerve stretch test",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "FABER test",
+                            "template": "FABER test",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Sacral spine\/musculature, L",
+                    "template": "Sacral spine\/musculature, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "CVA tenderness",
+                            "template": "CVA tenderness",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "straight leg raise normal",
+                            "template": "straight leg raise normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "femoral nerve stretch test",
+                            "template": "femoral nerve stretch test",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "FABER test",
+                            "template": "FABER test",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Sacral spine\/musculature, BL",
+                    "template": "Sacral spine\/musculature, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "CVA tenderness",
+                            "template": "CVA tenderness",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "straight leg raise normal",
+                            "template": "straight leg raise normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "femoral nerve stretch test",
+                            "template": "femoral nerve stretch test",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "FABER test",
+                            "template": "FABER test",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Neuro: Cranial nerves",
+            "template": "NEURO: {children}",
+            "children": [
+                {
+                    "text": "CN II-XII intact and nonfocal",
+                    "template": "CN II-XII intact and nonfocal"
+                },
+                {
+                    "text": "CN I: sense of smell",
+                    "template": "sense of smell (CN I) {children}",
+                    "children": [
+                        {
+                            "text": "not assessed",
+                            "template": "not assessed"
+                        },
+                        {
+                            "text": "intact and nonfocal",
+                            "template": "intact and nonfocal"
+                        },
+                        {
+                            "text": "decreased sense of smell",
+                            "template": "decreased sense of smell"
+                        },
+                        {
+                            "text": "anosmia",
+                            "template": "anosmia",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN II, R eye visual acuity\/fields",
+                    "template": "R eye visual acuity\/fields (CN II) {children}",
+                    "children": [
+                        {
+                            "text": "visual acuity intact BL",
+                            "template": "visual acuity intact BL"
+                        },
+                        {
+                            "text": "decreased visual acuity BL",
+                            "template": "decreased visual acuity BL"
+                        },
+                        {
+                            "text": "monocular blindness noted",
+                            "template": "monocular blindness noted"
+                        },
+                        {
+                            "text": "R hemianopsia noted",
+                            "template": "R hemianopsia noted"
+                        },
+                        {
+                            "text": "L hemianopsia noted",
+                            "template": "L hemianopsia noted"
+                        },
+                        {
+                            "text": "R upper quadrantanopsia noted",
+                            "template": "R upper quadrantanopsia noted"
+                        },
+                        {
+                            "text": "L upper quadrantanopsia noted",
+                            "template": "L upper quadrantanopsia noted"
+                        },
+                        {
+                            "text": "R lower quadrantanopsia noted",
+                            "template": "R lower quadrantanopsia noted"
+                        },
+                        {
+                            "text": "L upper quadrantanopsia noted",
+                            "template": "L upper quadrantanopsia noted"
+                        },
+                        {
+                            "text": "L lower quadrantanopsia noted",
+                            "template": "L lower quadrantanopsia noted"
+                        },
+                        {
+                            "text": "macular sparing noted",
+                            "template": "macular sparing noted"
+                        },
+                        {
+                            "text": "central vision loss noted",
+                            "template": "central vision loss noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN II, L eye visual acuity\/fields",
+                    "template": "L eye visual acuity\/fields (CN II) {children}",
+                    "children": [
+                        {
+                            "text": "visual acuity intact BL",
+                            "template": "visual acuity intact BL"
+                        },
+                        {
+                            "text": "decreased visual acuity BL",
+                            "template": "decreased visual acuity BL"
+                        },
+                        {
+                            "text": "monocular blindness noted",
+                            "template": "monocular blindness noted"
+                        },
+                        {
+                            "text": "R hemianopsia noted",
+                            "template": "R hemianopsia noted"
+                        },
+                        {
+                            "text": "L hemianopsia noted",
+                            "template": "L hemianopsia noted"
+                        },
+                        {
+                            "text": "R upper quadrantanopsia noted",
+                            "template": "R upper quadrantanopsia noted"
+                        },
+                        {
+                            "text": "L upper quadrantanopsia noted",
+                            "template": "L upper quadrantanopsia noted"
+                        },
+                        {
+                            "text": "R lower quadrantanopsia noted",
+                            "template": "R lower quadrantanopsia noted"
+                        },
+                        {
+                            "text": "L upper quadrantanopsia noted",
+                            "template": "L upper quadrantanopsia noted"
+                        },
+                        {
+                            "text": "L lower quadrantanopsia noted",
+                            "template": "L lower quadrantanopsia noted"
+                        },
+                        {
+                            "text": "macular sparing noted",
+                            "template": "macular sparing noted"
+                        },
+                        {
+                            "text": "central vision loss noted",
+                            "template": "central vision loss noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN II, BL visual acuity\/fields",
+                    "template": "BL visual acuity\/fields (CN II) {children}",
+                    "children": [
+                        {
+                            "text": "visual acuity intact BL",
+                            "template": "visual acuity intact BL"
+                        },
+                        {
+                            "text": "decreased visual acuity BL",
+                            "template": "decreased visual acuity BL"
+                        },
+                        {
+                            "text": "monocular blindness noted",
+                            "template": "monocular blindness noted"
+                        },
+                        {
+                            "text": "R hemianopsia noted",
+                            "template": "R hemianopsia noted"
+                        },
+                        {
+                            "text": "L hemianopsia noted",
+                            "template": "L hemianopsia noted"
+                        },
+                        {
+                            "text": "R upper quadrantanopsia noted",
+                            "template": "R upper quadrantanopsia noted"
+                        },
+                        {
+                            "text": "L upper quadrantanopsia noted",
+                            "template": "L upper quadrantanopsia noted"
+                        },
+                        {
+                            "text": "R lower quadrantanopsia noted",
+                            "template": "R lower quadrantanopsia noted"
+                        },
+                        {
+                            "text": "L upper quadrantanopsia noted",
+                            "template": "L upper quadrantanopsia noted"
+                        },
+                        {
+                            "text": "L lower quadrantanopsia noted",
+                            "template": "L lower quadrantanopsia noted"
+                        },
+                        {
+                            "text": "macular sparing noted",
+                            "template": "macular sparing noted"
+                        },
+                        {
+                            "text": "central vision loss noted",
+                            "template": "central vision loss noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN II: R pupil",
+                    "template": "R pupil (CN II) {children}",
+                    "children": [
+                        {
+                            "text": "normal size",
+                            "template": "normal in size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged"
+                        },
+                        {
+                            "text": "miosis noted",
+                            "template": "miosis noted"
+                        },
+                        {
+                            "text": "eccentric",
+                            "template": "eccentric"
+                        },
+                        {
+                            "text": "irregularly shaped",
+                            "template": "irregularly shaped"
+                        },
+                        {
+                            "text": "midline",
+                            "template": "midline"
+                        },
+                        {
+                            "text": "reactive to light",
+                            "template": "reactive to light"
+                        },
+                        {
+                            "text": "accommodation intact",
+                            "template": "accommodation intact"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN II: L pupil",
+                    "template": "L pupil (CN II) {children}",
+                    "children": [
+                        {
+                            "text": "normal size",
+                            "template": "normal in size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged"
+                        },
+                        {
+                            "text": "miosis noted",
+                            "template": "miosis noted"
+                        },
+                        {
+                            "text": "eccentric",
+                            "template": "eccentric"
+                        },
+                        {
+                            "text": "irregularly shaped",
+                            "template": "irregularly shaped"
+                        },
+                        {
+                            "text": "midline",
+                            "template": "midline"
+                        },
+                        {
+                            "text": "reactive to light",
+                            "template": "reactive to light"
+                        },
+                        {
+                            "text": "accommodation intact",
+                            "template": "accommodation intact"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN II: BL pupils",
+                    "template": "BL pupils (CN II) {children}",
+                    "children": [
+                        {
+                            "text": "normal size",
+                            "template": "normal in size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged"
+                        },
+                        {
+                            "text": "miosis noted",
+                            "template": "miosis noted"
+                        },
+                        {
+                            "text": "eccentric",
+                            "template": "eccentric"
+                        },
+                        {
+                            "text": "irregularly shaped",
+                            "template": "irregularly shaped"
+                        },
+                        {
+                            "text": "midline",
+                            "template": "midline"
+                        },
+                        {
+                            "text": "reactive to light",
+                            "template": "reactive to light"
+                        },
+                        {
+                            "text": "accommodation intact",
+                            "template": "accommodation intact"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN III\/IV\/VI: R eye",
+                    "template": "R eye (CN III\/IV\/VI) {children}",
+                    "children": [
+                        {
+                            "text": "extraocular mvmts intact, nonfocal",
+                            "template": "extraocular movements intact and nonfocal"
+                        },
+                        {
+                            "text": "upward gaze intact",
+                            "template": "upward gaze intact"
+                        },
+                        {
+                            "text": "upward gaze impaired",
+                            "template": "upward gaze impaired"
+                        },
+                        {
+                            "text": "downward gaze intact",
+                            "template": "downward gaze intact"
+                        },
+                        {
+                            "text": "downward gaze impaired",
+                            "template": "downward gaze impaired"
+                        },
+                        {
+                            "text": "inward gaze intact",
+                            "template": "inward gaze intact"
+                        },
+                        {
+                            "text": "inward gaze impaired",
+                            "template": "inward gaze impaired"
+                        },
+                        {
+                            "text": "outward gaze intact",
+                            "template": "outward gaze intact"
+                        },
+                        {
+                            "text": "outward gaze impaired",
+                            "template": "outward gaze impaired"
+                        },
+                        {
+                            "text": "dysconjugate gaze noted",
+                            "template": "dysconjugate gaze noted"
+                        },
+                        {
+                            "text": "no horizontal nystagmus",
+                            "template": "no horizontal nystagmus"
+                        },
+                        {
+                            "text": "horizontal nystagmus present at rest",
+                            "template": "horizontal nystagmus present at rest"
+                        },
+                        {
+                            "text": "horizontal nystagmus elicited",
+                            "template": "horizontal nystagmus elicited"
+                        },
+                        {
+                            "text": "no vertical nystagmus",
+                            "template": "no vertical nystagmus"
+                        },
+                        {
+                            "text": "vertical nystagmus present at rest",
+                            "template": "vertical nystagmus present at rest"
+                        },
+                        {
+                            "text": "vertical nystagmus elicited",
+                            "template": "vertical nystagmus elicited"
+                        },
+                        {
+                            "text": "miosis noted",
+                            "template": "miosis noted"
+                        },
+                        {
+                            "text": "lid lag not present",
+                            "template": "lid lag not present"
+                        },
+                        {
+                            "text": "ptosis noted",
+                            "template": "ptosis noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN III\/IV\/VI: L eye",
+                    "template": "L eye (CN III\/IV\/VI) {children}",
+                    "children": [
+                        {
+                            "text": "extraocular mvmts intact, nonfocal",
+                            "template": "extraocular movements intact and nonfocal"
+                        },
+                        {
+                            "text": "upward gaze intact",
+                            "template": "upward gaze intact"
+                        },
+                        {
+                            "text": "upward gaze impaired",
+                            "template": "upward gaze impaired"
+                        },
+                        {
+                            "text": "downward gaze intact",
+                            "template": "downward gaze intact"
+                        },
+                        {
+                            "text": "downward gaze impaired",
+                            "template": "downward gaze impaired"
+                        },
+                        {
+                            "text": "inward gaze intact",
+                            "template": "inward gaze intact"
+                        },
+                        {
+                            "text": "inward gaze impaired",
+                            "template": "inward gaze impaired"
+                        },
+                        {
+                            "text": "outward gaze intact",
+                            "template": "outward gaze intact"
+                        },
+                        {
+                            "text": "outward gaze impaired",
+                            "template": "outward gaze impaired"
+                        },
+                        {
+                            "text": "dysconjugate gaze noted",
+                            "template": "dysconjugate gaze noted"
+                        },
+                        {
+                            "text": "no horizontal nystagmus",
+                            "template": "no horizontal nystagmus"
+                        },
+                        {
+                            "text": "horizontal nystagmus present at rest",
+                            "template": "horizontal nystagmus present at rest"
+                        },
+                        {
+                            "text": "horizontal nystagmus elicited",
+                            "template": "horizontal nystagmus elicited"
+                        },
+                        {
+                            "text": "no vertical nystagmus",
+                            "template": "no vertical nystagmus"
+                        },
+                        {
+                            "text": "vertical nystagmus present at rest",
+                            "template": "vertical nystagmus present at rest"
+                        },
+                        {
+                            "text": "vertical nystagmus elicited",
+                            "template": "vertical nystagmus elicited"
+                        },
+                        {
+                            "text": "miosis noted",
+                            "template": "miosis noted"
+                        },
+                        {
+                            "text": "lid lag not present",
+                            "template": "lid lag not present"
+                        },
+                        {
+                            "text": "ptosis noted",
+                            "template": "ptosis noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN III\/IV\/VI: BL eyes",
+                    "template": "BL (CN III\/IV\/VI) {children}",
+                    "children": [
+                        {
+                            "text": "extraocular mvmts intact, nonfocal",
+                            "template": "extraocular movements intact and nonfocal"
+                        },
+                        {
+                            "text": "upward gaze intact",
+                            "template": "upward gaze intact"
+                        },
+                        {
+                            "text": "upward gaze impaired",
+                            "template": "upward gaze impaired"
+                        },
+                        {
+                            "text": "downward gaze intact",
+                            "template": "downward gaze intact"
+                        },
+                        {
+                            "text": "downward gaze impaired",
+                            "template": "downward gaze impaired"
+                        },
+                        {
+                            "text": "inward gaze intact",
+                            "template": "inward gaze intact"
+                        },
+                        {
+                            "text": "inward gaze impaired",
+                            "template": "inward gaze impaired"
+                        },
+                        {
+                            "text": "outward gaze intact",
+                            "template": "outward gaze intact"
+                        },
+                        {
+                            "text": "outward gaze impaired",
+                            "template": "outward gaze impaired"
+                        },
+                        {
+                            "text": "dysconjugate gaze noted",
+                            "template": "dysconjugate gaze noted"
+                        },
+                        {
+                            "text": "no horizontal nystagmus",
+                            "template": "no horizontal nystagmus"
+                        },
+                        {
+                            "text": "horizontal nystagmus present at rest",
+                            "template": "horizontal nystagmus present at rest"
+                        },
+                        {
+                            "text": "horizontal nystagmus elicited",
+                            "template": "horizontal nystagmus elicited"
+                        },
+                        {
+                            "text": "no vertical nystagmus",
+                            "template": "no vertical nystagmus"
+                        },
+                        {
+                            "text": "vertical nystagmus present at rest",
+                            "template": "vertical nystagmus present at rest"
+                        },
+                        {
+                            "text": "vertical nystagmus elicited",
+                            "template": "vertical nystagmus elicited"
+                        },
+                        {
+                            "text": "miosis noted",
+                            "template": "miosis noted"
+                        },
+                        {
+                            "text": "lid lag not present",
+                            "template": "lid lag not present"
+                        },
+                        {
+                            "text": "ptosis noted",
+                            "template": "ptosis noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN V: R",
+                    "template": "R (CN V) {children}",
+                    "children": [
+                        {
+                            "text": "corneal reflex intact",
+                            "template": "corneal reflex intact"
+                        },
+                        {
+                            "text": "absent corneal reflex",
+                            "template": "absent corneal reflex"
+                        },
+                        {
+                            "text": "temporal muscle strength intact",
+                            "template": "temporal muscle strength intact"
+                        },
+                        {
+                            "text": "decreased temporal muscle strength",
+                            "template": "decreased temporal muscle strength"
+                        },
+                        {
+                            "text": "masseter muscle strength intact",
+                            "template": "masseter muscle strength intact"
+                        },
+                        {
+                            "text": "decreased masseter muscle strength",
+                            "template": "decreased masseter muscle strength"
+                        },
+                        {
+                            "text": "forehead sensation intact",
+                            "template": "forehead sensation intact"
+                        },
+                        {
+                            "text": "decreased forehead sensation",
+                            "template": "decreased forehead sensation"
+                        },
+                        {
+                            "text": "cheek sensation intact",
+                            "template": "cheek sensation intact"
+                        },
+                        {
+                            "text": "decreased cheek sensation",
+                            "template": "decreased cheek sensation"
+                        },
+                        {
+                            "text": "jaw strength intact",
+                            "template": "jaw strength intact"
+                        },
+                        {
+                            "text": "decreased jaw strength",
+                            "template": "decreased jaw strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN V: L",
+                    "template": "L (CN V) {children}",
+                    "children": [
+                        {
+                            "text": "corneal reflex intact",
+                            "template": "corneal reflex intact"
+                        },
+                        {
+                            "text": "absent corneal reflex",
+                            "template": "absent corneal reflex"
+                        },
+                        {
+                            "text": "temporal muscle strength intact",
+                            "template": "temporal muscle strength intact"
+                        },
+                        {
+                            "text": "decreased temporal muscle strength",
+                            "template": "decreased temporal muscle strength"
+                        },
+                        {
+                            "text": "masseter muscle strength intact",
+                            "template": "masseter muscle strength intact"
+                        },
+                        {
+                            "text": "decreased masseter muscle strength",
+                            "template": "decreased masseter muscle strength"
+                        },
+                        {
+                            "text": "forehead sensation intact",
+                            "template": "forehead sensation intact"
+                        },
+                        {
+                            "text": "decreased forehead sensation",
+                            "template": "decreased forehead sensation"
+                        },
+                        {
+                            "text": "cheek sensation intact",
+                            "template": "cheek sensation intact"
+                        },
+                        {
+                            "text": "decreased cheek sensation",
+                            "template": "decreased cheek sensation"
+                        },
+                        {
+                            "text": "jaw strength intact",
+                            "template": "jaw strength intact"
+                        },
+                        {
+                            "text": "decreased jaw strength",
+                            "template": "decreased jaw strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN V: BL",
+                    "template": "BL (CN V) {children}",
+                    "children": [
+                        {
+                            "text": "corneal reflex intact",
+                            "template": "corneal reflex intact"
+                        },
+                        {
+                            "text": "absent corneal reflex",
+                            "template": "absent corneal reflex"
+                        },
+                        {
+                            "text": "temporal muscle strength intact",
+                            "template": "temporal muscle strength intact"
+                        },
+                        {
+                            "text": "decreased temporal muscle strength",
+                            "template": "decreased temporal muscle strength"
+                        },
+                        {
+                            "text": "masseter muscle strength intact",
+                            "template": "masseter muscle strength intact"
+                        },
+                        {
+                            "text": "decreased masseter muscle strength",
+                            "template": "decreased masseter muscle strength"
+                        },
+                        {
+                            "text": "forehead sensation intact",
+                            "template": "forehead sensation intact"
+                        },
+                        {
+                            "text": "decreased forehead sensation",
+                            "template": "decreased forehead sensation"
+                        },
+                        {
+                            "text": "cheek sensation intact",
+                            "template": "cheek sensation intact"
+                        },
+                        {
+                            "text": "decreased cheek sensation",
+                            "template": "decreased cheek sensation"
+                        },
+                        {
+                            "text": "jaw strength intact",
+                            "template": "jaw strength intact"
+                        },
+                        {
+                            "text": "decreased jaw strength",
+                            "template": "decreased jaw strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN VII: R",
+                    "template": "R (CN VII) {children}",
+                    "children": [
+                        {
+                            "text": "facial symmetry intact",
+                            "template": "facial symmetry intact"
+                        },
+                        {
+                            "text": "facial asymmetry present",
+                            "template": "facial asymmetry present"
+                        },
+                        {
+                            "text": "facial droop present",
+                            "template": "facial droop present"
+                        },
+                        {
+                            "text": "eyebrow raise intact",
+                            "template": "eyebrow raise intact"
+                        },
+                        {
+                            "text": "eyebrow raise decreased",
+                            "template": "eyebrow raise decreased"
+                        },
+                        {
+                            "text": "eye close against resistance intact",
+                            "template": "eye close against resistance intact"
+                        },
+                        {
+                            "text": "eye close against resistance decreased",
+                            "template": "eye close against resistance decreased"
+                        },
+                        {
+                            "text": "cheek puff intact",
+                            "template": "cheek puff intact"
+                        },
+                        {
+                            "text": "cheek puff decreased",
+                            "template": "cheek puff decreased"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN VII: L",
+                    "template": "L (CN VII) {children}",
+                    "children": [
+                        {
+                            "text": "facial symmetry intact",
+                            "template": "facial symmetry intact"
+                        },
+                        {
+                            "text": "facial asymmetry present",
+                            "template": "facial asymmetry present"
+                        },
+                        {
+                            "text": "facial droop present",
+                            "template": "facial droop present"
+                        },
+                        {
+                            "text": "eyebrow raise intact",
+                            "template": "eyebrow raise intact"
+                        },
+                        {
+                            "text": "eyebrow raise decreased",
+                            "template": "eyebrow raise decreased"
+                        },
+                        {
+                            "text": "eye close against resistance intact",
+                            "template": "eye close against resistance intact"
+                        },
+                        {
+                            "text": "eye close against resistance decreased",
+                            "template": "eye close against resistance decreased"
+                        },
+                        {
+                            "text": "cheek puff intact",
+                            "template": "cheek puff intact"
+                        },
+                        {
+                            "text": "cheek puff decreased",
+                            "template": "cheek puff decreased"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN VII: BL",
+                    "template": "BL (CN VII) {children}",
+                    "children": [
+                        {
+                            "text": "facial symmetry intact",
+                            "template": "facial symmetry intact"
+                        },
+                        {
+                            "text": "facial asymmetry present",
+                            "template": "facial asymmetry present"
+                        },
+                        {
+                            "text": "facial droop present",
+                            "template": "facial droop present"
+                        },
+                        {
+                            "text": "eyebrow raise intact",
+                            "template": "eyebrow raise intact"
+                        },
+                        {
+                            "text": "eyebrow raise decreased",
+                            "template": "eyebrow raise decreased"
+                        },
+                        {
+                            "text": "eye close against resistance intact",
+                            "template": "eye close against resistance intact"
+                        },
+                        {
+                            "text": "eye close against resistance decreased",
+                            "template": "eye close against resistance decreased"
+                        },
+                        {
+                            "text": "cheek puff intact",
+                            "template": "cheek puff intact"
+                        },
+                        {
+                            "text": "cheek puff decreased",
+                            "template": "cheek puff decreased"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN VIII: R",
+                    "template": "R side (CN VIII) {children}",
+                    "children": [
+                        {
+                            "text": "hearing intact",
+                            "template": "hearing intact"
+                        },
+                        {
+                            "text": "hearing decreased",
+                            "template": "hearing decreased"
+                        },
+                        {
+                            "text": "deafness",
+                            "template": "deafness"
+                        },
+                        {
+                            "text": "Weber normal",
+                            "template": "Weber normal"
+                        },
+                        {
+                            "text": "Weber with right lateralization",
+                            "template": "Weber with right lateralization"
+                        },
+                        {
+                            "text": "Weber with left lateralization",
+                            "template": "Weber with left lateralization"
+                        },
+                        {
+                            "text": "Rinne normal",
+                            "template": "Rinne normal (air conduction greater than bone bilaterally)"
+                        },
+                        {
+                            "text": "Rinne positive, right",
+                            "template": "Rinne positive (air conduction worse than bone on right)"
+                        },
+                        {
+                            "text": "Rinne positive, left",
+                            "template": "Rinne positive (air conduction worse than bone on left)"
+                        },
+                        {
+                            "text": "Rinne negative, right",
+                            "template": "Rinne negative (air conduction better than bone on right)"
+                        },
+                        {
+                            "text": "Rinne negative, left",
+                            "template": "Rinne negative (air conduction better than bone on left)"
+                        },
+                        {
+                            "text": "caloric reflex test intact",
+                            "template": "caloric reflex test intact"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN VIII: L",
+                    "template": "L side (CN VIII) {children}",
+                    "children": [
+                        {
+                            "text": "hearing intact",
+                            "template": "hearing intact"
+                        },
+                        {
+                            "text": "hearing decreased",
+                            "template": "hearing decreased"
+                        },
+                        {
+                            "text": "deafness",
+                            "template": "deafness"
+                        },
+                        {
+                            "text": "Weber normal",
+                            "template": "Weber normal"
+                        },
+                        {
+                            "text": "Weber with right lateralization",
+                            "template": "Weber with right lateralization"
+                        },
+                        {
+                            "text": "Weber with left lateralization",
+                            "template": "Weber with left lateralization"
+                        },
+                        {
+                            "text": "Rinne normal",
+                            "template": "Rinne normal (air conduction greater than bone bilaterally)"
+                        },
+                        {
+                            "text": "Rinne positive, right",
+                            "template": "Rinne positive (air conduction worse than bone on right)"
+                        },
+                        {
+                            "text": "Rinne positive, left",
+                            "template": "Rinne positive (air conduction worse than bone on left)"
+                        },
+                        {
+                            "text": "Rinne negative, right",
+                            "template": "Rinne negative (air conduction better than bone on right)"
+                        },
+                        {
+                            "text": "Rinne negative, left",
+                            "template": "Rinne negative (air conduction better than bone on left)"
+                        },
+                        {
+                            "text": "caloric reflex test intact",
+                            "template": "caloric reflex test intact"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN VIII: BL",
+                    "template": "BL (CN VIII) {children}",
+                    "children": [
+                        {
+                            "text": "hearing intact",
+                            "template": "hearing intact"
+                        },
+                        {
+                            "text": "hearing decreased",
+                            "template": "hearing decreased"
+                        },
+                        {
+                            "text": "deafness",
+                            "template": "deafness"
+                        },
+                        {
+                            "text": "Weber normal",
+                            "template": "Weber normal"
+                        },
+                        {
+                            "text": "Weber with right lateralization",
+                            "template": "Weber with right lateralization"
+                        },
+                        {
+                            "text": "Weber with left lateralization",
+                            "template": "Weber with left lateralization"
+                        },
+                        {
+                            "text": "Rinne normal",
+                            "template": "Rinne normal (air conduction greater than bone bilaterally)"
+                        },
+                        {
+                            "text": "Rinne positive, right",
+                            "template": "Rinne positive (air conduction worse than bone on right)"
+                        },
+                        {
+                            "text": "Rinne positive, left",
+                            "template": "Rinne positive (air conduction worse than bone on left)"
+                        },
+                        {
+                            "text": "Rinne negative, right",
+                            "template": "Rinne negative (air conduction better than bone on right)"
+                        },
+                        {
+                            "text": "Rinne negative, left",
+                            "template": "Rinne negative (air conduction better than bone on left)"
+                        },
+                        {
+                            "text": "caloric reflex test intact",
+                            "template": "caloric reflex test intact"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN IX\/X",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "swallowing intact",
+                            "template": "ability to swallow intact (CN IX\/X intact)"
+                        },
+                        {
+                            "text": "swallowing impaired",
+                            "template": "swallowing impaired (CN IX\/X diminished)"
+                        },
+                        {
+                            "text": "gag reflex intact",
+                            "template": "gag reflex intact (CN IX\/X intact)"
+                        },
+                        {
+                            "text": "gag reflex diminished",
+                            "template": "gag reflex diminished (CN IX\/X diminished)"
+                        },
+                        {
+                            "text": "uvula midline",
+                            "template": "uvula midline (CN IX\/X intact)"
+                        },
+                        {
+                            "text": "uvula deviated to right",
+                            "template": "uvula deviated to right (CN IX\/X diminished)"
+                        },
+                        {
+                            "text": "uvula deviatied to left",
+                            "template": "uvula deviatied to left (CN IX\/X diminished)"
+                        },
+                        {
+                            "text": "hoarse voice quality present",
+                            "template": "hoarse voice quality present (CN IX\/X diminished)"
+                        },
+                        {
+                            "text": "nasal voice quality present",
+                            "template": "nasal voice quality present (CN IX\/X diminished)"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN XI: R",
+                    "template": "R side (CN XI) {children}",
+                    "children": [
+                        {
+                            "text": "shoulder shrug intact",
+                            "template": "shoulder shrug intact"
+                        },
+                        {
+                            "text": "shoulder shrug decreased",
+                            "template": "shoulder shrug decreased"
+                        },
+                        {
+                            "text": "ability to turn head against resistance intact",
+                            "template": "ability to turn head against resistance intact"
+                        },
+                        {
+                            "text": "ability to turn head against resistance diminished",
+                            "template": "ability to turn head against resistance diminished"
+                        },
+                        {
+                            "text": "trapezius muscle tone intact",
+                            "template": "trapezius muscle tone intact"
+                        },
+                        {
+                            "text": "trapezius muscle atrophy noted",
+                            "template": "trapezius muscle atrophy noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN XI: L",
+                    "template": "L side (CN XI) {children}",
+                    "children": [
+                        {
+                            "text": "shoulder shrug intact",
+                            "template": "shoulder shrug intact"
+                        },
+                        {
+                            "text": "shoulder shrug decreased",
+                            "template": "shoulder shrug decreased"
+                        },
+                        {
+                            "text": "ability to turn head against resistance intact",
+                            "template": "ability to turn head against resistance intact"
+                        },
+                        {
+                            "text": "ability to turn head against resistance diminished",
+                            "template": "ability to turn head against resistance diminished"
+                        },
+                        {
+                            "text": "trapezius muscle tone intact",
+                            "template": "trapezius muscle tone intact"
+                        },
+                        {
+                            "text": "trapezius muscle atrophy noted",
+                            "template": "trapezius muscle atrophy noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN XI: BL",
+                    "template": "BL (CN XI) {children}",
+                    "children": [
+                        {
+                            "text": "shoulder shrug intact",
+                            "template": "shoulder shrug intact"
+                        },
+                        {
+                            "text": "shoulder shrug decreased",
+                            "template": "shoulder shrug decreased"
+                        },
+                        {
+                            "text": "ability to turn head against resistance intact",
+                            "template": "ability to turn head against resistance intact"
+                        },
+                        {
+                            "text": "ability to turn head against resistance diminished",
+                            "template": "ability to turn head against resistance diminished"
+                        },
+                        {
+                            "text": "trapezius muscle tone intact",
+                            "template": "trapezius muscle tone intact"
+                        },
+                        {
+                            "text": "trapezius muscle atrophy noted",
+                            "template": "trapezius muscle atrophy noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN XII",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "speech articulation intact",
+                            "template": "speech articulation intact (CN XII intact)"
+                        },
+                        {
+                            "text": "speech articulation impaired",
+                            "template": "speech articulation impaired (CN XII diminished)"
+                        },
+                        {
+                            "text": "tongue midline without deviation",
+                            "template": "tongue midline without deviation (CN XII intact)"
+                        },
+                        {
+                            "text": "tongue deviated to right",
+                            "template": "tongue deviated to right (CN XII diminished)"
+                        },
+                        {
+                            "text": "tongue deviated to left",
+                            "template": "tongue deviated to left (CN XII diminished)"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other detail",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Neuro: Deep tendon reflexes",
+            "template": "NEURO: {children}",
+            "children": [
+                {
+                    "text": "DTRs intact and equal BL throughout",
+                    "template": "DTRs intact and equal BL throughout"
+                },
+                {
+                    "text": "Brachioradialis reflex, R",
+                    "template": "R brachioradialis reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Brachioradialis reflex, L",
+                    "template": "L brachioradialis reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Brachioradialis reflex, BL",
+                    "template": "L brachioradialis reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Biceps reflex, R",
+                    "template": "R biceps reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Biceps reflex, L",
+                    "template": "L biceps reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Biceps reflex, BL",
+                    "template": "BL biceps reflexes {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Triceps reflex, R",
+                    "template": "R triceps reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Triceps reflex, L",
+                    "template": "L triceps reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Triceps reflex, BL",
+                    "template": "BL triceps reflexes {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Patellar reflex, R",
+                    "template": "R patellar reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Patellar reflex, L",
+                    "template": "L patellar reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Patellar reflex, BL",
+                    "template": "BL patellar reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Achilles reflex, R",
+                    "template": "R achilles reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Achilles reflex, L",
+                    "template": "L achilles reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Achilles reflex, BL",
+                    "template": "BL achilles reflexes {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Ankle reflex, R",
+                    "template": "R ankle reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Ankle reflex, L",
+                    "template": "L ankle reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Ankle reflex, BL",
+                    "template": "BL ankle reflexes {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other detail",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Neuro: Dermatomes",
+            "template": "NEURO: {children}",
+            "children": [
+                {
+                    "text": "Cervical dermatomes, R",
+                    "template": "R cervical dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "C1 sensation diminished",
+                            "template": "C1 sensation diminished"
+                        },
+                        {
+                            "text": "C2 sensation diminished",
+                            "template": "C2 sensation diminished"
+                        },
+                        {
+                            "text": "C3 sensation diminished",
+                            "template": "C3 sensation diminished"
+                        },
+                        {
+                            "text": "C4 sensation diminished",
+                            "template": "C4 sensation diminished"
+                        },
+                        {
+                            "text": "C5 sensation diminished",
+                            "template": "C5 sensation diminished"
+                        },
+                        {
+                            "text": "C6 sensation diminished",
+                            "template": "C6 sensation diminished"
+                        },
+                        {
+                            "text": "C7 sensation diminished",
+                            "template": "C7 sensation diminished"
+                        },
+                        {
+                            "text": "C8 sensation diminished",
+                            "template": "C8 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Cervical dermatomes, L",
+                    "template": "L cervical dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "C1 sensation diminished",
+                            "template": "C1 sensation diminished"
+                        },
+                        {
+                            "text": "C2 sensation diminished",
+                            "template": "C2 sensation diminished"
+                        },
+                        {
+                            "text": "C3 sensation diminished",
+                            "template": "C3 sensation diminished"
+                        },
+                        {
+                            "text": "C4 sensation diminished",
+                            "template": "C4 sensation diminished"
+                        },
+                        {
+                            "text": "C5 sensation diminished",
+                            "template": "C5 sensation diminished"
+                        },
+                        {
+                            "text": "C6 sensation diminished",
+                            "template": "C6 sensation diminished"
+                        },
+                        {
+                            "text": "C7 sensation diminished",
+                            "template": "C7 sensation diminished"
+                        },
+                        {
+                            "text": "C8 sensation diminished",
+                            "template": "C8 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Cervical dermatomes, BL",
+                    "template": "BL cervical dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "C1 sensation diminished",
+                            "template": "C1 sensation diminished"
+                        },
+                        {
+                            "text": "C2 sensation diminished",
+                            "template": "C2 sensation diminished"
+                        },
+                        {
+                            "text": "C3 sensation diminished",
+                            "template": "C3 sensation diminished"
+                        },
+                        {
+                            "text": "C4 sensation diminished",
+                            "template": "C4 sensation diminished"
+                        },
+                        {
+                            "text": "C5 sensation diminished",
+                            "template": "C5 sensation diminished"
+                        },
+                        {
+                            "text": "C6 sensation diminished",
+                            "template": "C6 sensation diminished"
+                        },
+                        {
+                            "text": "C7 sensation diminished",
+                            "template": "C7 sensation diminished"
+                        },
+                        {
+                            "text": "C8 sensation diminished",
+                            "template": "C8 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Thoracic dermatomes, R",
+                    "template": "R thoracic dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "T1 sensation diminished",
+                            "template": "T1 sensation diminished"
+                        },
+                        {
+                            "text": "T2 sensation diminished",
+                            "template": "T2 sensation diminished"
+                        },
+                        {
+                            "text": "T3 sensation diminished",
+                            "template": "T3 sensation diminished"
+                        },
+                        {
+                            "text": "T4 sensation diminished",
+                            "template": "T4 sensation diminished"
+                        },
+                        {
+                            "text": "T5 sensation diminished",
+                            "template": "T5 sensation diminished"
+                        },
+                        {
+                            "text": "T6 sensation diminished",
+                            "template": "T6 sensation diminished"
+                        },
+                        {
+                            "text": "T7 sensation diminished",
+                            "template": "T7 sensation diminished"
+                        },
+                        {
+                            "text": "T8 sensation diminished",
+                            "template": "T8 sensation diminished"
+                        },
+                        {
+                            "text": "T9 sensation diminished",
+                            "template": "T9 sensation diminished"
+                        },
+                        {
+                            "text": "T10 sensation diminished",
+                            "template": "T10 sensation diminished"
+                        },
+                        {
+                            "text": "T11 sensation diminished",
+                            "template": "T11 sensation diminished"
+                        },
+                        {
+                            "text": "T12 sensation diminished",
+                            "template": "T12 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Thoracic dermatomes, L",
+                    "template": "L thoracic dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "T1 sensation diminished",
+                            "template": "T1 sensation diminished"
+                        },
+                        {
+                            "text": "T2 sensation diminished",
+                            "template": "T2 sensation diminished"
+                        },
+                        {
+                            "text": "T3 sensation diminished",
+                            "template": "T3 sensation diminished"
+                        },
+                        {
+                            "text": "T4 sensation diminished",
+                            "template": "T4 sensation diminished"
+                        },
+                        {
+                            "text": "T5 sensation diminished",
+                            "template": "T5 sensation diminished"
+                        },
+                        {
+                            "text": "T6 sensation diminished",
+                            "template": "T6 sensation diminished"
+                        },
+                        {
+                            "text": "T7 sensation diminished",
+                            "template": "T7 sensation diminished"
+                        },
+                        {
+                            "text": "T8 sensation diminished",
+                            "template": "T8 sensation diminished"
+                        },
+                        {
+                            "text": "T9 sensation diminished",
+                            "template": "T9 sensation diminished"
+                        },
+                        {
+                            "text": "T10 sensation diminished",
+                            "template": "T10 sensation diminished"
+                        },
+                        {
+                            "text": "T11 sensation diminished",
+                            "template": "T11 sensation diminished"
+                        },
+                        {
+                            "text": "T12 sensation diminished",
+                            "template": "T12 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Thoracic dermatomes, BL",
+                    "template": "BL thoracic dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "T1 sensation diminished",
+                            "template": "T1 sensation diminished"
+                        },
+                        {
+                            "text": "T2 sensation diminished",
+                            "template": "T2 sensation diminished"
+                        },
+                        {
+                            "text": "T3 sensation diminished",
+                            "template": "T3 sensation diminished"
+                        },
+                        {
+                            "text": "T4 sensation diminished",
+                            "template": "T4 sensation diminished"
+                        },
+                        {
+                            "text": "T5 sensation diminished",
+                            "template": "T5 sensation diminished"
+                        },
+                        {
+                            "text": "T6 sensation diminished",
+                            "template": "T6 sensation diminished"
+                        },
+                        {
+                            "text": "T7 sensation diminished",
+                            "template": "T7 sensation diminished"
+                        },
+                        {
+                            "text": "T8 sensation diminished",
+                            "template": "T8 sensation diminished"
+                        },
+                        {
+                            "text": "T9 sensation diminished",
+                            "template": "T9 sensation diminished"
+                        },
+                        {
+                            "text": "T10 sensation diminished",
+                            "template": "T10 sensation diminished"
+                        },
+                        {
+                            "text": "T11 sensation diminished",
+                            "template": "T11 sensation diminished"
+                        },
+                        {
+                            "text": "T12 sensation diminished",
+                            "template": "T12 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lumbar dermatomes, R",
+                    "template": "R lumbar dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "L1 sensation diminished",
+                            "template": "L1 sensation diminished"
+                        },
+                        {
+                            "text": "L2 sensation diminished",
+                            "template": "L2 sensation diminished"
+                        },
+                        {
+                            "text": "L3 sensation diminished",
+                            "template": "L3 sensation diminished"
+                        },
+                        {
+                            "text": "L4 sensation diminished",
+                            "template": "L4 sensation diminished"
+                        },
+                        {
+                            "text": "L5 sensation diminished",
+                            "template": "L5 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lumbar dermatomes, L",
+                    "template": "L lumbar dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "L1 sensation diminished",
+                            "template": "L1 sensation diminished"
+                        },
+                        {
+                            "text": "L2 sensation diminished",
+                            "template": "L2 sensation diminished"
+                        },
+                        {
+                            "text": "L3 sensation diminished",
+                            "template": "L3 sensation diminished"
+                        },
+                        {
+                            "text": "L4 sensation diminished",
+                            "template": "L4 sensation diminished"
+                        },
+                        {
+                            "text": "L5 sensation diminished",
+                            "template": "L5 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lumbar dermatomes, BL",
+                    "template": "BL lumbar dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "L1 sensation diminished",
+                            "template": "L1 sensation diminished"
+                        },
+                        {
+                            "text": "L2 sensation diminished",
+                            "template": "L2 sensation diminished"
+                        },
+                        {
+                            "text": "L3 sensation diminished",
+                            "template": "L3 sensation diminished"
+                        },
+                        {
+                            "text": "L4 sensation diminished",
+                            "template": "L4 sensation diminished"
+                        },
+                        {
+                            "text": "L5 sensation diminished",
+                            "template": "L5 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Sacral dermatomes, R",
+                    "template": "R sacral dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "S1 sensation diminished",
+                            "template": "S1 sensation diminished"
+                        },
+                        {
+                            "text": "S2 sensation diminished",
+                            "template": "S2 sensation diminished"
+                        },
+                        {
+                            "text": "S3 sensation diminished",
+                            "template": "S3 sensation diminished"
+                        },
+                        {
+                            "text": "S4 sensation diminished",
+                            "template": "S4 sensation diminished"
+                        },
+                        {
+                            "text": "S5 sensation diminished",
+                            "template": "S5 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Sacral dermatomes, L",
+                    "template": "L sacral dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "S1 sensation diminished",
+                            "template": "S1 sensation diminished"
+                        },
+                        {
+                            "text": "S2 sensation diminished",
+                            "template": "S2 sensation diminished"
+                        },
+                        {
+                            "text": "S3 sensation diminished",
+                            "template": "S3 sensation diminished"
+                        },
+                        {
+                            "text": "S4 sensation diminished",
+                            "template": "S4 sensation diminished"
+                        },
+                        {
+                            "text": "S5 sensation diminished",
+                            "template": "S5 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Sacral dermatomes, BL",
+                    "template": "BL sacral dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "S1 sensation diminished",
+                            "template": "S1 sensation diminished"
+                        },
+                        {
+                            "text": "S2 sensation diminished",
+                            "template": "S2 sensation diminished"
+                        },
+                        {
+                            "text": "S3 sensation diminished",
+                            "template": "S3 sensation diminished"
+                        },
+                        {
+                            "text": "S4 sensation diminished",
+                            "template": "S4 sensation diminished"
+                        },
+                        {
+                            "text": "S5 sensation diminished",
+                            "template": "S5 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other detail",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Neuro: Gait, Station",
+            "template": "NEURO: {children}",
+            "children": [
+                {
+                    "text": "normal gait and station",
+                    "template": "normal gait and station"
+                },
+                {
+                    "text": "normal gait",
+                    "template": "normal gait"
+                },
+                {
+                    "text": "normal station",
+                    "template": "normal station"
+                },
+                {
+                    "text": "Romberg test positive",
+                    "template": "Romberg test positive"
+                },
+                {
+                    "text": "Romberg test negative",
+                    "template": "Romberg test negative"
+                },
+                {
+                    "text": "Gait",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "broad based gait",
+                            "template": "broad based gait"
+                        },
+                        {
+                            "text": "shuffling gait",
+                            "template": "shuffling gait"
+                        },
+                        {
+                            "text": "shortened step length",
+                            "template": "shortened step length"
+                        },
+                        {
+                            "text": "limp, right",
+                            "template": "limp present (affecting right side)"
+                        },
+                        {
+                            "text": "limp, left",
+                            "template": "limp present (affecting left side)"
+                        },
+                        {
+                            "text": "wide based gait",
+                            "template": "wide based gait"
+                        },
+                        {
+                            "text": "gait accuracy intact",
+                            "template": "gait accuracy intact"
+                        },
+                        {
+                            "text": "staggering gait noted",
+                            "template": "staggering gait noted"
+                        },
+                        {
+                            "text": "tandem walking intact",
+                            "template": "tandem walking intact"
+                        },
+                        {
+                            "text": "tandem walking impaired",
+                            "template": "tandem walking impaired"
+                        },
+                        {
+                            "text": "toe walking noted",
+                            "template": "toe walking noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "Station",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "positive Romberg (eyes open)",
+                            "template": "positive Romberg (eyes open)"
+                        },
+                        {
+                            "text": "negative Romberg (eyes open)",
+                            "template": "negative Romberg (eyes open)"
+                        },
+                        {
+                            "text": "positive Romberg (eyes closed)",
+                            "template": "positive Romberg (eyes closed)"
+                        },
+                        {
+                            "text": "pronator drift, eyes open, right",
+                            "template": "pronator drift noted with eyes open (affecting right upper extremity)"
+                        },
+                        {
+                            "text": "pronator drift, eyes open, left",
+                            "template": "pronator drift noted with eyes open (affecting left upper extremity)"
+                        },
+                        {
+                            "text": "pronator drift, eyes closed, right",
+                            "template": "pronator drift noted with eyes closed (affecting right upper extremity)"
+                        },
+                        {
+                            "text": "pronator drift, eyes closed, left",
+                            "template": "pronator drift noted with eyes closed (affecting left upper extremity)"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other detail",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Neuro: Pathological reflexes",
+            "template": "NEURO: {children}",
+            "children": [
+                {
+                    "text": "no pathological reflexes elicited",
+                    "template": "no pathological reflexes elicited"
+                },
+                {
+                    "text": "Babinski reflex",
+                    "template": "Babinski reflex {children}",
+                    "children": [
+                        {
+                            "text": "elicted on the right",
+                            "template": "elicted on the right"
+                        },
+                        {
+                            "text": "not elicited on the right",
+                            "template": "not elicited on the right"
+                        },
+                        {
+                            "text": "elicited on the left",
+                            "template": "elicited on the left"
+                        },
+                        {
+                            "text": "not elicited on the left",
+                            "template": "not elicited on the left"
+                        },
+                        {
+                            "text": "elicited bilaterally",
+                            "template": "elicited bilaterally"
+                        },
+                        {
+                            "text": "absent bilaterally",
+                            "template": "absent bilaterally"
+                        }
+                    ]
+                },
+                {
+                    "text": "Glabellar reflex",
+                    "template": "glabellar reflex {children}",
+                    "children": [
+                        {
+                            "text": "elicted on the right",
+                            "template": "elicted on the right"
+                        },
+                        {
+                            "text": "not elicited on the right",
+                            "template": "not elicited on the right"
+                        },
+                        {
+                            "text": "elicited on the left",
+                            "template": "elicited on the left"
+                        },
+                        {
+                            "text": "not elicited on the left",
+                            "template": "not elicited on the left"
+                        },
+                        {
+                            "text": "elicited bilaterally",
+                            "template": "elicited bilaterally"
+                        },
+                        {
+                            "text": "absent bilaterally",
+                            "template": "absent bilaterally"
+                        }
+                    ]
+                },
+                {
+                    "text": "Palmomental reflex",
+                    "template": "palmomental reflex {children}",
+                    "children": [
+                        {
+                            "text": "elicted on the right",
+                            "template": "elicted on the right"
+                        },
+                        {
+                            "text": "not elicited on the right",
+                            "template": "not elicited on the right"
+                        },
+                        {
+                            "text": "elicited on the left",
+                            "template": "elicited on the left"
+                        },
+                        {
+                            "text": "not elicited on the left",
+                            "template": "not elicited on the left"
+                        },
+                        {
+                            "text": "elicited bilaterally",
+                            "template": "elicited bilaterally"
+                        },
+                        {
+                            "text": "absent bilaterally",
+                            "template": "absent bilaterally"
+                        }
+                    ]
+                },
+                {
+                    "text": "Snout reflex",
+                    "template": "snout reflex {children}",
+                    "children": [
+                        {
+                            "text": "elicted on the right",
+                            "template": "elicted on the right"
+                        },
+                        {
+                            "text": "not elicited on the right",
+                            "template": "not elicited on the right"
+                        },
+                        {
+                            "text": "elicited on the left",
+                            "template": "elicited on the left"
+                        },
+                        {
+                            "text": "not elicited on the left",
+                            "template": "not elicited on the left"
+                        },
+                        {
+                            "text": "elicited bilaterally",
+                            "template": "elicited bilaterally"
+                        },
+                        {
+                            "text": "absent bilaterally",
+                            "template": "absent bilaterally"
+                        }
+                    ]
+                },
+                {
+                    "text": "Root reflex",
+                    "template": "root reflex {children}",
+                    "children": [
+                        {
+                            "text": "elicted on the right",
+                            "template": "elicted on the right"
+                        },
+                        {
+                            "text": "not elicited on the right",
+                            "template": "not elicited on the right"
+                        },
+                        {
+                            "text": "elicited on the left",
+                            "template": "elicited on the left"
+                        },
+                        {
+                            "text": "not elicited on the left",
+                            "template": "not elicited on the left"
+                        },
+                        {
+                            "text": "elicited bilaterally",
+                            "template": "elicited bilaterally"
+                        },
+                        {
+                            "text": "absent bilaterally",
+                            "template": "absent bilaterally"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other detail",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Neuro: Sensory",
+            "template": "NEURO: {children}",
+            "children": [
+                {
+                    "text": "sensation grossly intact throughout",
+                    "template": "sensation grossly intact throughout"
+                },
+                {
+                    "text": "Sensation to light touch",
+                    "template": "sensation to light touch {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity, right intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, intact BL",
+                            "template": "intact in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "upper extremity, right diminished",
+                            "template": "diminished in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left diminished",
+                            "template": "diminished in left upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, diminished BL",
+                            "template": "diminished in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "lower extremity, right intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, intact BL",
+                            "template": "intact in the bilateral lower extremities"
+                        },
+                        {
+                            "text": "lower extremity, right diminished",
+                            "template": "diminished in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left diminished",
+                            "template": "diminished in left lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, diminished BL",
+                            "template": "diminished in the bilateral lower extremities"
+                        }
+                    ]
+                },
+                {
+                    "text": "Sensation to dull touch",
+                    "template": "sensation to dull touch {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity, right intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, intact BL",
+                            "template": "intact in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "upper extremity, right diminished",
+                            "template": "diminished in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left diminished",
+                            "template": "diminished in left upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, diminished BL",
+                            "template": "diminished in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "lower extremity, right intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, intact BL",
+                            "template": "intact in the bilateral lower extremities"
+                        },
+                        {
+                            "text": "lower extremity, right diminished",
+                            "template": "diminished in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left diminished",
+                            "template": "diminished in left lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, diminished BL",
+                            "template": "diminished in the bilateral lower extremities"
+                        }
+                    ]
+                },
+                {
+                    "text": "Sensation to cold temperature",
+                    "template": "sensation to cold temperature {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity, right intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, intact BL",
+                            "template": "intact in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "upper extremity, right diminished",
+                            "template": "diminished in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left diminished",
+                            "template": "diminished in left upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, diminished BL",
+                            "template": "diminished in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "lower extremity, right intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, intact BL",
+                            "template": "intact in the bilateral lower extremities"
+                        },
+                        {
+                            "text": "lower extremity, right diminished",
+                            "template": "diminished in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left diminished",
+                            "template": "diminished in left lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, diminished BL",
+                            "template": "diminished in the bilateral lower extremities"
+                        }
+                    ]
+                },
+                {
+                    "text": "Sensation to warm temperature",
+                    "template": "sensation to warm temperature {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity, right intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, intact BL",
+                            "template": "intact in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "upper extremity, right diminished",
+                            "template": "diminished in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left diminished",
+                            "template": "diminished in left upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, diminished BL",
+                            "template": "diminished in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "lower extremity, right intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, intact BL",
+                            "template": "intact in the bilateral lower extremities"
+                        },
+                        {
+                            "text": "lower extremity, right diminished",
+                            "template": "diminished in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left diminished",
+                            "template": "diminished in left lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, diminished BL",
+                            "template": "diminished in the bilateral lower extremities"
+                        }
+                    ]
+                },
+                {
+                    "text": "Vibratory sensation",
+                    "template": "vibratory sensation {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity, right intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, intact BL",
+                            "template": "intact in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "upper extremity, right diminished",
+                            "template": "diminished in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left diminished",
+                            "template": "diminished in left upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, diminished BL",
+                            "template": "diminished in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "lower extremity, right intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, intact BL",
+                            "template": "intact in the bilateral lower extremities"
+                        },
+                        {
+                            "text": "lower extremity, right diminished",
+                            "template": "diminished in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left diminished",
+                            "template": "diminished in left lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, diminished BL",
+                            "template": "diminished in the bilateral lower extremities"
+                        }
+                    ]
+                },
+                {
+                    "text": "Stereognosis",
+                    "template": "stereognosis {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity, right intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, intact BL",
+                            "template": "intact in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "upper extremity, right diminished",
+                            "template": "diminished in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left diminished",
+                            "template": "diminished in left upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, diminished BL",
+                            "template": "diminished in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "lower extremity, right intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, intact BL",
+                            "template": "intact in the bilateral lower extremities"
+                        },
+                        {
+                            "text": "lower extremity, right diminished",
+                            "template": "diminished in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left diminished",
+                            "template": "diminished in left lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, diminished BL",
+                            "template": "diminished in the bilateral lower extremities"
+                        }
+                    ]
+                },
+                {
+                    "text": "Paresthesias",
+                    "template": "parethesias present {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity, right",
+                            "template": "in the R upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left",
+                            "template": "in the L upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, bilateral",
+                            "template": "bilaterally in the upper extremities"
+                        },
+                        {
+                            "text": "lower extremity, right",
+                            "template": "in the R lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left",
+                            "template": "in the L lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, bilateral",
+                            "template": "bilaterally in the lower extremities"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other detail",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Psychiatric",
+            "template": "PSYCH: {children}",
+            "children": [
+                {
+                    "text": "AO x 3",
+                    "template": "alert and oriented to time, place, and person"
+                },
+                {
+                    "text": "normal mood",
+                    "template": "normal mood"
+                },
+                {
+                    "text": "normal affect",
+                    "template": "normal affect"
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        }
+    ]
+}

+ 10360 - 0
storage/templates/exam-default/exam-neck-detail/neck-exam.json

@@ -0,0 +1,10360 @@
+{
+    "section": "exam-neck-detail",
+    "templateSet": "NECK Exam",
+    "templates": [
+        {
+            "text": "1-Click normal exams",
+            "template": "{children}",
+            "children": [
+                {
+                    "text": "GEN: NAD",
+                    "template": "GEN: NAD"
+                },
+                {
+                    "text": "HEENT: sinuses NT on palpation",
+                    "template": "HEENT: sinuses NT on palpation"
+                },
+                {
+                    "text": "HEENT: NL teeth\/lips\/gums",
+                    "template": "HEENT: NL teeth\/lips\/gums"
+                },
+                {
+                    "text": "HEENT: no pharyngeal erythema\/exudate\/ulcer",
+                    "template": "HEENT: no pharyngeal erythema, exudates or ulcers"
+                },
+                {
+                    "text": "HEENT: mucous membranes moist",
+                    "template": "HEENT: mucous membranes moist"
+                },
+                {
+                    "text": "NECK: trachea midline",
+                    "template": "NECK: trachea midline"
+                },
+                {
+                    "text": "NECK: no TMG, NT, no masses",
+                    "template": "NECK: no thyromegaly, nontender, no masses"
+                },
+                {
+                    "text": "NECK: no incr JVP visible",
+                    "template": "NECK: no increased JVP visible"
+                },
+                {
+                    "text": "NECK: no cervical LN",
+                    "template": "NECK: no cervical lymphadenopathy"
+                },
+                {
+                    "text": "RESP: CTA BL, no r\/w\/r, no stridor",
+                    "template": "RESP: CTA BL, no rales, wheeze, or rhonchi, no stridor"
+                },
+                {
+                    "text": "CV: RRR, no m\/r\/g",
+                    "template": "CV: RRR, no m\/r\/g"
+                },
+                {
+                    "text": "NEURO: AO x 3",
+                    "template": "NEURO: AO x 3"
+                }
+            ]
+        },
+        {
+            "text": "General",
+            "template": "GEN: {children}",
+            "children": [
+                {
+                    "text": "NAD",
+                    "template": "NAD",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "cooperative with exam",
+                    "template": "cooperative with exam",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "well groomed",
+                    "template": "well groomed",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "well developed",
+                    "template": "well developed",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "well nourished",
+                    "template": "well nourished",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "overweight",
+                    "template": "overweight",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "obese",
+                    "template": "obese",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "morbidly obese",
+                    "template": "morbidly obese",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "emaciated",
+                    "template": "emaciated",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "appears to be stated age",
+                    "template": "appears to be stated age",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "appears older than stated age",
+                    "template": "appears older than stated age",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "appears younger than stated age",
+                    "template": "appears younger than stated age",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "HEENT: Head",
+            "template": "HEENT: {children}",
+            "children": [
+                {
+                    "text": "head normocephalic, atraumatic",
+                    "template": "head normocephalic, atraumatic"
+                },
+                {
+                    "text": "head normocephalic",
+                    "template": "head normocephalic",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "head atraumatic",
+                    "template": "head atraumatic",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "bruising",
+                    "template": "bruising",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "scarring",
+                    "template": "scarring",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "face symmetric",
+                    "template": "face symmetric",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "facial droop, R",
+                    "template": "facial droop, R",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "facial droop, L",
+                    "template": "facial droop, L",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Jaw",
+                    "template": "Jaw exam {children}",
+                    "children": [
+                        {
+                            "text": "right",
+                            "template": "(right)"
+                        },
+                        {
+                            "text": "left",
+                            "template": "(left)"
+                        },
+                        {
+                            "text": "bilateral",
+                            "template": "(bilateral)"
+                        },
+                        {
+                            "text": "TMJ clicking noted",
+                            "template": "TMJ clicking noted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "deviation noted",
+                            "template": "deviation noted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tenderness to palpation",
+                            "template": "tenderness to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "claudication",
+                            "template": "claudication",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "HEENT: Eyes",
+            "template": "HEENT: {children}",
+            "children": [
+                {
+                    "text": "EOMI",
+                    "template": "EOMI"
+                },
+                {
+                    "text": "PERRLA",
+                    "template": "PERRLA"
+                },
+                {
+                    "text": "periorbital xanthelasma",
+                    "template": "periorbital xanthelasma",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "hearing grossly intact",
+                    "template": "hearing grossly intact",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Eye exam, inspection",
+                    "template": "Inspection findings {children}",
+                    "children": [
+                        {
+                            "text": "EOMI",
+                            "template": "extraocular movements intact"
+                        },
+                        {
+                            "text": "sclerae anicteric",
+                            "template": "sclerae anicteric",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "conjunctival injection",
+                            "template": "conjunctival injection",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "conjunctival pallor",
+                            "template": "conjunctival pallor",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "purulent discharge",
+                            "template": "purulent discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "drainage present",
+                            "template": "drainage present",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bleeding present",
+                            "template": "bleeding present",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tearing present",
+                            "template": "tearing present",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cataract",
+                            "template": "cataract",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cataracts",
+                            "template": "cataracts",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Vision exam, R",
+                    "template": "Vision exam, R: {children}",
+                    "children": [
+                        {
+                            "text": "blind",
+                            "template": "blind"
+                        },
+                        {
+                            "text": "grossly intact",
+                            "template": "vision grossly intact"
+                        },
+                        {
+                            "text": "visual fields intact",
+                            "template": "visual fields intact"
+                        },
+                        {
+                            "text": "visual acuity impaired",
+                            "template": "visual acuity impaired"
+                        },
+                        {
+                            "text": "blurry vision",
+                            "template": "blurry vision",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "near sighted",
+                            "template": "near sighted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "far sighted",
+                            "template": "far sighted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "macular sparing",
+                            "template": "macular sparing"
+                        },
+                        {
+                            "text": "central vision loss",
+                            "template": "central vision loss"
+                        },
+                        {
+                            "text": "right upper quadrantopsia",
+                            "template": "right upper quadrantopsia"
+                        },
+                        {
+                            "text": "right lower quadrantopsia",
+                            "template": "right lower quadrantopsia"
+                        },
+                        {
+                            "text": "left upper quadrantopsia",
+                            "template": "left upper quadrantopsia"
+                        },
+                        {
+                            "text": "left lower quadrantopsia",
+                            "template": "left lower quadrantopsia"
+                        },
+                        {
+                            "text": "right hemianopsia",
+                            "template": "right hemianopsia"
+                        },
+                        {
+                            "text": "left hemianopsia",
+                            "template": "left hemianopsia"
+                        },
+                        {
+                            "text": "homonymous hemianopsia",
+                            "template": "homonymous hemianopsia"
+                        }
+                    ]
+                },
+                {
+                    "text": "Vision exam, L",
+                    "template": "Vision exam, L: {children}",
+                    "children": [
+                        {
+                            "text": "blind",
+                            "template": "blind"
+                        },
+                        {
+                            "text": "grossly intact",
+                            "template": "vision grossly intact"
+                        },
+                        {
+                            "text": "visual fields intact",
+                            "template": "visual fields intact"
+                        },
+                        {
+                            "text": "visual acuity impaired",
+                            "template": "visual acuity impaired"
+                        },
+                        {
+                            "text": "blurry vision",
+                            "template": "blurry vision",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "near sighted",
+                            "template": "near sighted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "far sighted",
+                            "template": "far sighted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "macular sparing",
+                            "template": "macular sparing"
+                        },
+                        {
+                            "text": "central vision loss",
+                            "template": "central vision loss"
+                        },
+                        {
+                            "text": "right upper quadrantopsia",
+                            "template": "right upper quadrantopsia"
+                        },
+                        {
+                            "text": "right lower quadrantopsia",
+                            "template": "right lower quadrantopsia"
+                        },
+                        {
+                            "text": "left upper quadrantopsia",
+                            "template": "left upper quadrantopsia"
+                        },
+                        {
+                            "text": "left lower quadrantopsia",
+                            "template": "left lower quadrantopsia"
+                        },
+                        {
+                            "text": "right hemianopsia",
+                            "template": "right hemianopsia"
+                        },
+                        {
+                            "text": "left hemianopsia",
+                            "template": "left hemianopsia"
+                        },
+                        {
+                            "text": "homonymous hemianopsia",
+                            "template": "homonymous hemianopsia"
+                        }
+                    ]
+                },
+                {
+                    "text": "Vision exam, BL",
+                    "template": "Vision exam, BL: {children}",
+                    "children": [
+                        {
+                            "text": "blind",
+                            "template": "blind"
+                        },
+                        {
+                            "text": "grossly intact",
+                            "template": "vision grossly intact"
+                        },
+                        {
+                            "text": "visual fields intact",
+                            "template": "visual fields intact"
+                        },
+                        {
+                            "text": "visual acuity impaired",
+                            "template": "visual acuity impaired"
+                        },
+                        {
+                            "text": "blurry vision",
+                            "template": "blurry vision",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "near sighted",
+                            "template": "near sighted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "far sighted",
+                            "template": "far sighted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "macular sparing",
+                            "template": "macular sparing"
+                        },
+                        {
+                            "text": "central vision loss",
+                            "template": "central vision loss"
+                        },
+                        {
+                            "text": "right upper quadrantopsia",
+                            "template": "right upper quadrantopsia"
+                        },
+                        {
+                            "text": "right lower quadrantopsia",
+                            "template": "right lower quadrantopsia"
+                        },
+                        {
+                            "text": "left upper quadrantopsia",
+                            "template": "left upper quadrantopsia"
+                        },
+                        {
+                            "text": "left lower quadrantopsia",
+                            "template": "left lower quadrantopsia"
+                        },
+                        {
+                            "text": "right hemianopsia",
+                            "template": "right hemianopsia"
+                        },
+                        {
+                            "text": "left hemianopsia",
+                            "template": "left hemianopsia"
+                        },
+                        {
+                            "text": "homonymous hemianopsia",
+                            "template": "homonymous hemianopsia"
+                        }
+                    ]
+                },
+                {
+                    "text": "Pupil exam, R",
+                    "template": "Pupil exam, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "anisocoria",
+                            "template": "anisocoria",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "miosis",
+                            "template": "miosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "eccentric",
+                            "template": "eccentric",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "irregularly shaped",
+                            "template": "irregularly shaped",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "midline",
+                            "template": "midline",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "reactive to light",
+                            "template": "reactive to light",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "accommodation intact",
+                            "template": "accommodation intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Pupil exam, L",
+                    "template": "Pupil exam, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "anisocoria",
+                            "template": "anisocoria",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "miosis",
+                            "template": "miosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "eccentric",
+                            "template": "eccentric",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "irregularly shaped",
+                            "template": "irregularly shaped",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "midline",
+                            "template": "midline",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "reactive to light",
+                            "template": "reactive to light",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "accommodation intact",
+                            "template": "accommodation intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Pupil exam, BL",
+                    "template": "Pupil exam, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "anisocoria",
+                            "template": "anisocoria",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "miosis",
+                            "template": "miosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "eccentric",
+                            "template": "eccentric",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "irregularly shaped",
+                            "template": "irregularly shaped",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "midline",
+                            "template": "midline",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "reactive to light",
+                            "template": "reactive to light",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "accommodation intact",
+                            "template": "accommodation intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Fundoscopy, R",
+                    "template": "Fundoscopic exam, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal",
+                            "template": "normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discs flat",
+                            "template": "discs flat",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discs sharp",
+                            "template": "discs sharp",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "AV nicking",
+                            "template": "AV nicking",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "exudates",
+                            "template": "exudates",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hemorrhages",
+                            "template": "hemorrhages",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Fundoscopy, L",
+                    "template": "Fundoscopic exam, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal",
+                            "template": "normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discs flat",
+                            "template": "discs flat",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discs sharp",
+                            "template": "discs sharp",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "AV nicking",
+                            "template": "AV nicking",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "exudates",
+                            "template": "exudates",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hemorrhages",
+                            "template": "hemorrhages",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Fundoscopy, BL",
+                    "template": "Fundoscopic exam, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal",
+                            "template": "normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discs flat",
+                            "template": "discs flat",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discs sharp",
+                            "template": "discs sharp",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "AV nicking",
+                            "template": "AV nicking",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "exudates",
+                            "template": "exudates",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hemorrhages",
+                            "template": "hemorrhages",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "HEENT: Ears",
+            "template": "HEENT: {children}",
+            "children": [
+                {
+                    "text": "hearing grossly intact",
+                    "template": "hearing grossly intact",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Hearing, R",
+                    "template": "Hearing exam, R: {children}",
+                    "children": [
+                        {
+                            "text": "grossly intact",
+                            "template": "grossly intact"
+                        },
+                        {
+                            "text": "intact to whispered voice",
+                            "template": "intact to whispered voice"
+                        },
+                        {
+                            "text": "intact to finger rub",
+                            "template": "intact to finger rub"
+                        },
+                        {
+                            "text": "Weber normal",
+                            "template": "Weber normal"
+                        },
+                        {
+                            "text": "Weber lateralizes to right",
+                            "template": "Weber lateralizes to right"
+                        },
+                        {
+                            "text": "Rinne positive",
+                            "template": "Rinne positive, with bone and air conduction both decreased on right"
+                        },
+                        {
+                            "text": "Rinne negative",
+                            "template": "Rinne negative, with bone conduction greater than air on right"
+                        }
+                    ]
+                },
+                {
+                    "text": "Hearing, L",
+                    "template": "Hearing exam, L: {children}",
+                    "children": [
+                        {
+                            "text": "grossly intact",
+                            "template": "grossly intact"
+                        },
+                        {
+                            "text": "intact to whispered voice",
+                            "template": "intact to whispered voice"
+                        },
+                        {
+                            "text": "intact to finger rub",
+                            "template": "intact to finger rub"
+                        },
+                        {
+                            "text": "Weber normal",
+                            "template": "Weber normal"
+                        },
+                        {
+                            "text": "Weber lateralizes to right",
+                            "template": "Weber lateralizes to right"
+                        },
+                        {
+                            "text": "Rinne positive",
+                            "template": "Rinne positive, with bone and air conduction both decreased on right"
+                        },
+                        {
+                            "text": "Rinne negative",
+                            "template": "Rinne negative, with bone conduction greater than air on right"
+                        }
+                    ]
+                },
+                {
+                    "text": "Hearing, BL",
+                    "template": "Hearing exam, BL: {children}",
+                    "children": [
+                        {
+                            "text": "grossly intact",
+                            "template": "grossly intact"
+                        },
+                        {
+                            "text": "intact to whispered voice",
+                            "template": "intact to whispered voice"
+                        },
+                        {
+                            "text": "intact to finger rub",
+                            "template": "intact to finger rub"
+                        },
+                        {
+                            "text": "Weber normal",
+                            "template": "Weber normal"
+                        },
+                        {
+                            "text": "Weber lateralizes to right",
+                            "template": "Weber lateralizes to right"
+                        },
+                        {
+                            "text": "Rinne positive",
+                            "template": "Rinne positive, with bone and air conduction both decreased on right"
+                        },
+                        {
+                            "text": "Rinne negative",
+                            "template": "Rinne negative, with bone conduction greater than air on right"
+                        }
+                    ]
+                },
+                {
+                    "text": "Tympanic membranes, R",
+                    "template": "Tympanic membrane exam, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal",
+                            "template": "normal"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "exudate",
+                            "template": "exudate",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "NL mobility on insufflation",
+                            "template": "normal mobility on insufflation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hypomobile on insufflation",
+                            "template": "hypomobile on insufflation"
+                        },
+                        {
+                            "text": "effusion present",
+                            "template": "effusion present"
+                        },
+                        {
+                            "text": "light reflex dull",
+                            "template": "light reflex dull",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "membrane rupture",
+                            "template": "membrane rupture",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "light reflex absent",
+                            "template": "light reflex absent",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discharge",
+                            "template": "discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "drainage",
+                            "template": "drainage",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pus",
+                            "template": "pus",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Tympanic membranes, L",
+                    "template": "Tympanic membrane exam, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal",
+                            "template": "normal"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "exudate",
+                            "template": "exudate",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "NL mobility on insufflation",
+                            "template": "normal mobility on insufflation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hypomobile on insufflation",
+                            "template": "hypomobile on insufflation"
+                        },
+                        {
+                            "text": "effusion present",
+                            "template": "effusion present"
+                        },
+                        {
+                            "text": "light reflex dull",
+                            "template": "light reflex dull",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "membrane rupture",
+                            "template": "membrane rupture",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "light reflex absent",
+                            "template": "light reflex absent",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discharge",
+                            "template": "discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "drainage",
+                            "template": "drainage",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pus",
+                            "template": "pus",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Tympanic membranes, BL",
+                    "template": "Tympanic membrane exam, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal",
+                            "template": "normal"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "exudate",
+                            "template": "exudate",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "NL mobility on insufflation",
+                            "template": "normal mobility on insufflation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hypomobile on insufflation",
+                            "template": "hypomobile on insufflation"
+                        },
+                        {
+                            "text": "effusion present",
+                            "template": "effusion present"
+                        },
+                        {
+                            "text": "light reflex dull",
+                            "template": "light reflex dull",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "membrane rupture",
+                            "template": "membrane rupture",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "light reflex absent",
+                            "template": "light reflex absent",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discharge",
+                            "template": "discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "drainage",
+                            "template": "drainage",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pus",
+                            "template": "pus",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "External ear canals, R",
+                    "template": "External ear canal exam, R: {children}",
+                    "children": [
+                        {
+                            "text": "cerumen present",
+                            "template": "cerumen present",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cerumen impaction",
+                            "template": "cerumen impaction",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cerumen obscuring TM",
+                            "template": "cerumen obscures visualization of tympanic membrane"
+                        },
+                        {
+                            "text": "erythema of external canal",
+                            "template": "erythema of external canal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "external canal red",
+                            "template": "external canal red",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "external canal swollen",
+                            "template": "external canal swollen",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "external canal, pain on otoscopy",
+                            "template": "external canal painful on otoscopy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "drainage",
+                            "template": "drainage",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pus",
+                            "template": "pus",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "External ear canals, L",
+                    "template": "External ear canal exam, L: {children}",
+                    "children": [
+                        {
+                            "text": "cerumen present",
+                            "template": "cerumen present",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cerumen impaction",
+                            "template": "cerumen impaction",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cerumen obscuring TM",
+                            "template": "cerumen obscures visualization of tympanic membrane"
+                        },
+                        {
+                            "text": "erythema of external canal",
+                            "template": "erythema of external canal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "external canal red",
+                            "template": "external canal red",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "external canal swollen",
+                            "template": "external canal swollen",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "external canal, pain on otoscopy",
+                            "template": "external canal painful on otoscopy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "drainage",
+                            "template": "drainage",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pus",
+                            "template": "pus",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "External ear canals, BL",
+                    "template": "External ear canal exam, BL: {children}",
+                    "children": [
+                        {
+                            "text": "cerumen present",
+                            "template": "cerumen present",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cerumen impaction",
+                            "template": "cerumen impaction",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cerumen obscuring TM",
+                            "template": "cerumen obscures visualization of tympanic membrane"
+                        },
+                        {
+                            "text": "erythema of external canal",
+                            "template": "erythema of external canal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "external canal red",
+                            "template": "external canal red",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "external canal swollen",
+                            "template": "external canal swollen",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "external canal, pain on otoscopy",
+                            "template": "external canal painful on otoscopy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "drainage",
+                            "template": "drainage",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pus",
+                            "template": "pus",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "External ear, R",
+                    "template": "External ear exam, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal appearance",
+                            "template": "normal appearance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lesion",
+                            "template": "lesion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scarring",
+                            "template": "scarring",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "actinic keratosis",
+                            "template": "actinic keratosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mass",
+                            "template": "mass",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "External ear, L",
+                    "template": "External ear exam, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal appearance",
+                            "template": "normal appearance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lesion",
+                            "template": "lesion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scarring",
+                            "template": "scarring",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "actinic keratosis",
+                            "template": "actinic keratosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mass",
+                            "template": "mass",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "External ear, BL",
+                    "template": "External ear exam, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal appearance",
+                            "template": "normal appearance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lesion",
+                            "template": "lesion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scarring",
+                            "template": "scarring",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "actinic keratosis",
+                            "template": "actinic keratosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mass",
+                            "template": "mass",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "HEENT: Nose\/Nares",
+            "template": "HEENT: {children}",
+            "children": [
+                {
+                    "text": "sensation of smell intact",
+                    "template": "sensation of smell intact"
+                },
+                {
+                    "text": "Nares, R",
+                    "template": "Nares, R: {children}",
+                    "children": [
+                        {
+                            "text": "NL nasal mucosa",
+                            "template": "NL nasal mucosa"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "NL nasal septa",
+                            "template": "NL nasal septa"
+                        },
+                        {
+                            "text": "septal perforation",
+                            "template": "septal perforation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "NL nasal turbinates",
+                            "template": "NL nasal turbinates"
+                        },
+                        {
+                            "text": "hypertrophy of nasal turbinates",
+                            "template": "hypertrophy of nasal turbinates",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clear drainage",
+                            "template": "clear drainage",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "purulent discharge",
+                            "template": "purulent discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "crusting",
+                            "template": "crusting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "epistaxis",
+                            "template": "epistaxis",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Nares, L",
+                    "template": "Nares, L: {children}",
+                    "children": [
+                        {
+                            "text": "NL nasal mucosa",
+                            "template": "NL nasal mucosa"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "NL nasal septa",
+                            "template": "NL nasal septa"
+                        },
+                        {
+                            "text": "septal perforation",
+                            "template": "septal perforation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "NL nasal turbinates",
+                            "template": "NL nasal turbinates"
+                        },
+                        {
+                            "text": "hypertrophy of nasal turbinates",
+                            "template": "hypertrophy of nasal turbinates",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clear drainage",
+                            "template": "clear drainage",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "purulent discharge",
+                            "template": "purulent discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "crusting",
+                            "template": "crusting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "epistaxis",
+                            "template": "epistaxis",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Nares, BL",
+                    "template": "Nares, BL: {children}",
+                    "children": [
+                        {
+                            "text": "NL nasal mucosa",
+                            "template": "NL nasal mucosa"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "NL nasal septa",
+                            "template": "NL nasal septa"
+                        },
+                        {
+                            "text": "septal perforation",
+                            "template": "septal perforation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "NL nasal turbinates",
+                            "template": "NL nasal turbinates"
+                        },
+                        {
+                            "text": "hypertrophy of nasal turbinates",
+                            "template": "hypertrophy of nasal turbinates",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clear drainage",
+                            "template": "clear drainage",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "purulent discharge",
+                            "template": "purulent discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "crusting",
+                            "template": "crusting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "epistaxis",
+                            "template": "epistaxis",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "HEENT: Mouth\/Throat",
+            "template": "HEENT: {children}",
+            "children": [
+                {
+                    "text": "mucous membranes moist",
+                    "template": "mucous membranes moist",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "voice NL",
+                    "template": "voice NL"
+                },
+                {
+                    "text": "Mouth\/Lips",
+                    "template": "Mouth\/Lips exam {children}",
+                    "children": [
+                        {
+                            "text": "aphthous ulcer",
+                            "template": "aphthous ulcer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mucous membranes moist",
+                            "template": "mucous membranes moist",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mucous membranes dry",
+                            "template": "mucous membranes dry",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "normal lips",
+                            "template": "normal lips",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lip ulcer",
+                            "template": "lip ulcer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lips dry",
+                            "template": "lips dry",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lips cracked",
+                            "template": "lips cracked",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "smile symmetric",
+                            "template": "smile symmetric"
+                        },
+                        {
+                            "text": "facial droop, right",
+                            "template": "right facial droop",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "facial droop, left",
+                            "template": "left facial droop",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Teeth\/Gums",
+                    "template": "Teeth\/Gum exam {children}",
+                    "children": [
+                        {
+                            "text": "normal dentition",
+                            "template": "normal dentition"
+                        },
+                        {
+                            "text": "edentulous",
+                            "template": "edentulous",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tooth loss noted",
+                            "template": "tooth loss noted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "dentures",
+                            "template": "dentures",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "gingival hypertrophy",
+                            "template": "gingival hypertrophy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "gingival erythema",
+                            "template": "gingival erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "gingival lesions",
+                            "template": "gingival lesions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bleeding",
+                            "template": "bleeding",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "dental caries noted",
+                            "template": "dental caries noted",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Tongue",
+                    "template": "Tongue exam {children}",
+                    "children": [
+                        {
+                            "text": "normal",
+                            "template": "normal"
+                        },
+                        {
+                            "text": "tongue midline",
+                            "template": "tongue midline"
+                        },
+                        {
+                            "text": "tongue deviation to right",
+                            "template": "tongue deviation to right"
+                        },
+                        {
+                            "text": "tongue deviation to left",
+                            "template": "tongue deviation to left"
+                        },
+                        {
+                            "text": "beefy",
+                            "template": "beefy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "red",
+                            "template": "red",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lesion present",
+                            "template": "lesion present"
+                        },
+                        {
+                            "text": "bleeding present",
+                            "template": "bleeding present",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "geographic tongue",
+                            "template": "geographic tongue"
+                        },
+                        {
+                            "text": "strawberry tongue",
+                            "template": "strawberry tongue",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Throat\/Oropharynx",
+                    "template": "Throat\/Oropharyngeal exam {children}",
+                    "children": [
+                        {
+                            "text": "pharyngeal exam NL",
+                            "template": "pharyngeal exam NL"
+                        },
+                        {
+                            "text": "mucous membranes moist",
+                            "template": "mucous membranes moist",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mucous membranes dry",
+                            "template": "mucous membranes dry",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "oropharyngeal erythema",
+                            "template": "oropharyngeal erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "exudates pharynx",
+                            "template": "pharyngeal exudates",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "R tonsillomegaly",
+                            "template": "right-sided tonsillomegaly",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "L tonsillomegaly",
+                            "template": "left-sided tonsillomegaly",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tightly adhering gray membrane",
+                            "template": "tightly adhering gray membrane"
+                        },
+                        {
+                            "text": "oropharyngeal ulcers present",
+                            "template": "oropharyngeal ulcers present"
+                        },
+                        {
+                            "text": "oropharyngeal lesions present",
+                            "template": "oropharyngeal lesions present"
+                        },
+                        {
+                            "text": "uvula midline",
+                            "template": "uvula midline"
+                        },
+                        {
+                            "text": "uvula deviated to the right",
+                            "template": "uvula deviated to the right"
+                        },
+                        {
+                            "text": "uvula deviated to the left",
+                            "template": "uvula deviated to the left"
+                        },
+                        {
+                            "text": "pharyngeal saliva pooling",
+                            "template": "pharyngeal saliva pooling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bleeding w\/dislodged membrane",
+                            "template": "bleeding w\/dislodged membrane",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Neck",
+            "template": "NECK: {children}",
+            "children": [
+                {
+                    "text": "soft, nontender",
+                    "template": "soft, nontender"
+                },
+                {
+                    "text": "full range of motion",
+                    "template": "full range of motion",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "trachea midline",
+                    "template": "trachea midline",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "trachea fixed",
+                    "template": "trachea fixed",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "trachea deviated to the right",
+                    "template": "trachea deviated to the right",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "trachea deviated to the left",
+                    "template": "trachea deviated to the left",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "inspiratory stridor",
+                    "template": "inspiratory stridor",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "expiratory stridor",
+                    "template": "expiratory stridor",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "no increased JVP visible",
+                    "template": "no increased JVP visible"
+                },
+                {
+                    "text": "increased JVP visible",
+                    "template": "increased JVP visible"
+                },
+                {
+                    "text": "JVP level (cm)",
+                    "template": "JVP elevated at {text}",
+                    "type": "number"
+                },
+                {
+                    "text": "JVP inspiratory rise (paradoxical)",
+                    "template": "JVP inspiratory rise (paradoxical)",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "hepatojugular reflex present",
+                    "template": "hepatojugular reflex present",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "right carotid bruit",
+                    "template": "right carotid bruit",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "left carotid bruit",
+                    "template": "left carotid bruit",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "thyromegaly",
+                    "template": "thyromegaly",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Tracheostomy",
+                    "template": "Tracheostomy:",
+                    "children": [
+                        {
+                            "text": "well healed scar",
+                            "template": "well healed scar"
+                        },
+                        {
+                            "text": "stoma without lesions",
+                            "template": "stoma without lesions"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discharge",
+                            "template": "discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bleeding",
+                            "template": "bleeding",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lymphatics",
+                    "template": "Lymphatics: {children}",
+                    "children": [
+                        {
+                            "text": "shotty cervical lymphadenopathy",
+                            "template": "shotty cervical lymphadenopathy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "submental lymphadenopathy",
+                            "template": "submental lymphadenopathy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "R submandibular lymphadenopathy",
+                            "template": "R submandibular lymphadenopathy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "L submandibular lymphadenopathy",
+                            "template": "L submandibular lymphadenopathy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "R ant. cervical lymphadenopathy",
+                            "template": "R ant. cervical lymphadenopathy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "L ant. cervical lymphadenopathy",
+                            "template": "L ant. cervical lymphadenopathy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "R preauricular lymphadenopathy",
+                            "template": "R preauricular lymphadenopathy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "L preauricular lymphadenopathy",
+                            "template": "L preauricular lymphadenopathy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "R post. auricular lymphadenopathy",
+                            "template": "R post. auricular lymphadenopathy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "L post. auricular lymphadenopathy",
+                            "template": "L post. auricular lymphadenopathy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "R supraclavicular lymphadenopathy",
+                            "template": "R supraclavicular lymphadenopathy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "L supraclavicular lymphadenopathy",
+                            "template": "L supraclavicular lymphadenopathy",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "obese neck",
+                    "template": "neck obesity",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Neck circumference",
+                    "template": "Neck circumference: {text}",
+                    "type": "alpha"
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Respiratory",
+            "template": "RESP: {children}",
+            "children": [
+                {
+                    "text": "no respiratory distress",
+                    "template": "no respiratory distress"
+                },
+                {
+                    "text": "auscultation clear BL",
+                    "template": "clear to auscultation bilaterally"
+                },
+                {
+                    "text": "no wheezes\/rales\/rhonchi",
+                    "template": "no wheezes\/rales\/rhonchi"
+                },
+                {
+                    "text": "percussion clear BL",
+                    "template": "clear to percussion bilaterally"
+                },
+                {
+                    "text": "chest wall symmetric",
+                    "template": "chest wall symmetric"
+                },
+                {
+                    "text": "Abnl lung sounds, R",
+                    "template": "Abnl lung sounds, R: {children}",
+                    "children": [
+                        {
+                            "text": "whoop",
+                            "template": "whoop",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "stridor",
+                            "template": "stridor",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pleural rub",
+                            "template": "pleural rub"
+                        },
+                        {
+                            "text": "basilar rales",
+                            "template": "basilar rales"
+                        },
+                        {
+                            "text": "rales scattered",
+                            "template": "scattered rales"
+                        },
+                        {
+                            "text": "rhonchi scattered",
+                            "template": "scattered rhonchi"
+                        },
+                        {
+                            "text": "diminished breath sounds throughout",
+                            "template": "diminished breath sounds throughout"
+                        },
+                        {
+                            "text": "diminished breath sounds at bases",
+                            "template": "diminished breath sounds at bases"
+                        },
+                        {
+                            "text": "wheezes, expiration",
+                            "template": "expiratory wheezes"
+                        }
+                    ]
+                },
+                {
+                    "text": "Abnl lung sounds, L",
+                    "template": "Abnl lung sounds, L: {children}",
+                    "children": [
+                        {
+                            "text": "whoop",
+                            "template": "whoop",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "stridor",
+                            "template": "stridor",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pleural rub",
+                            "template": "pleural rub"
+                        },
+                        {
+                            "text": "basilar rales",
+                            "template": "basilar rales"
+                        },
+                        {
+                            "text": "rales scattered",
+                            "template": "scattered rales"
+                        },
+                        {
+                            "text": "rhonchi scattered",
+                            "template": "scattered rhonchi"
+                        },
+                        {
+                            "text": "diminished breath sounds throughout",
+                            "template": "diminished breath sounds throughout"
+                        },
+                        {
+                            "text": "diminished breath sounds at bases",
+                            "template": "diminished breath sounds at bases"
+                        },
+                        {
+                            "text": "wheezes, expiration",
+                            "template": "expiratory wheezes"
+                        }
+                    ]
+                },
+                {
+                    "text": "Abnl lung sounds, BL",
+                    "template": "Abnl lung sounds, BL: {children}",
+                    "children": [
+                        {
+                            "text": "whoop",
+                            "template": "whoop",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "stridor",
+                            "template": "stridor",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pleural rub",
+                            "template": "pleural rub"
+                        },
+                        {
+                            "text": "basilar rales",
+                            "template": "basilar rales"
+                        },
+                        {
+                            "text": "rales scattered",
+                            "template": "scattered rales"
+                        },
+                        {
+                            "text": "rhonchi scattered",
+                            "template": "scattered rhonchi"
+                        },
+                        {
+                            "text": "diminished breath sounds throughout",
+                            "template": "diminished breath sounds throughout"
+                        },
+                        {
+                            "text": "diminished breath sounds at bases",
+                            "template": "diminished breath sounds at bases"
+                        },
+                        {
+                            "text": "wheezes, expiration",
+                            "template": "expiratory wheezes"
+                        }
+                    ]
+                },
+                {
+                    "text": "Percussion, R",
+                    "template": "Percussion, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal to percussion",
+                            "template": "normal to percussion"
+                        },
+                        {
+                            "text": "dullness to percussion at base",
+                            "template": "dullness to percussion at base"
+                        },
+                        {
+                            "text": "dull throughout",
+                            "template": "dull to percussion throughout"
+                        }
+                    ]
+                },
+                {
+                    "text": "Percussion, L",
+                    "template": "Percussion, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal to percussion",
+                            "template": "normal to percussion"
+                        },
+                        {
+                            "text": "dullness to percussion at base",
+                            "template": "dullness to percussion at base"
+                        },
+                        {
+                            "text": "dull throughout",
+                            "template": "dull to percussion throughout"
+                        }
+                    ]
+                },
+                {
+                    "text": "Percussion, BL",
+                    "template": "Percussion, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal to percussion",
+                            "template": "normal to percussion"
+                        },
+                        {
+                            "text": "dullness to percussion at base",
+                            "template": "dullness to percussion at base"
+                        },
+                        {
+                            "text": "dull throughout",
+                            "template": "dull to percussion throughout"
+                        }
+                    ]
+                },
+                {
+                    "text": "Breathing dynamics, R",
+                    "template": "Breathing dynamics, R: {children}",
+                    "children": [
+                        {
+                            "text": "labored breathing",
+                            "template": "labored breathing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "accessory muscle use",
+                            "template": "accessory muscle use",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "rib retractions",
+                            "template": "rib retractions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abnormal diaphragm movement",
+                            "template": "abnormal diaphragm movement",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Breathing dynamics, L",
+                    "template": "Breathing dynamics, L: {children}",
+                    "children": [
+                        {
+                            "text": "labored breathing",
+                            "template": "labored breathing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "accessory muscle use",
+                            "template": "accessory muscle use",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "rib retractions",
+                            "template": "rib retractions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abnormal diaphragm movement",
+                            "template": "abnormal diaphragm movement",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Breathing dynamics, BL",
+                    "template": "Breathing dynamics, BL: {children}",
+                    "children": [
+                        {
+                            "text": "labored breathing",
+                            "template": "labored breathing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "accessory muscle use",
+                            "template": "accessory muscle use",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "rib retractions",
+                            "template": "rib retractions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abnormal diaphragm movement",
+                            "template": "abnormal diaphragm movement",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Cardiovascular",
+            "template": "CV: {children}",
+            "children": [
+                {
+                    "text": "RRR, no murmur\/rub\/gallop",
+                    "template": "RRR, no murmur\/rub\/gallop"
+                },
+                {
+                    "text": "S1, S2 findings",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "NL S1",
+                            "template": "NL S1"
+                        },
+                        {
+                            "text": "NL S2",
+                            "template": "NL S2"
+                        },
+                        {
+                            "text": "split S2",
+                            "template": "split S2"
+                        },
+                        {
+                            "text": "split S1",
+                            "template": "split S1"
+                        },
+                        {
+                            "text": "persistently split S2",
+                            "template": "persistently split S2"
+                        },
+                        {
+                            "text": "physiologically split S2",
+                            "template": "physiologically split S2"
+                        },
+                        {
+                            "text": "paradoxically split S2",
+                            "template": "paradoxically split S2"
+                        },
+                        {
+                            "text": "widely split S2",
+                            "template": "widely split S2"
+                        }
+                    ]
+                },
+                {
+                    "text": "S3 gallop",
+                    "template": "S3 gallop",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "S4 gallop",
+                    "template": "S4 gallop",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "regular rate and rhythm",
+                    "template": "regular rate and rhythm"
+                },
+                {
+                    "text": "regular rate",
+                    "template": "regular rate"
+                },
+                {
+                    "text": "regular rhythm",
+                    "template": "regular rhythm"
+                },
+                {
+                    "text": "no murmurs",
+                    "template": "no murmurs"
+                },
+                {
+                    "text": "Murmur grade",
+                    "template": "Murmur grade: {text}\/6",
+                    "type": "number"
+                },
+                {
+                    "text": "Murmur timing\/location",
+                    "template": "murmur {children}",
+                    "children": [
+                        {
+                            "text": "systolic",
+                            "template": "is systolic"
+                        },
+                        {
+                            "text": "diastolic",
+                            "template": "is diastolic"
+                        },
+                        {
+                            "text": "holosystolic",
+                            "template": "is holosystolic"
+                        },
+                        {
+                            "text": "continuous",
+                            "template": "is continuous"
+                        },
+                        {
+                            "text": "best: L sternal border",
+                            "template": "best heard at L sternal border"
+                        },
+                        {
+                            "text": "best: 2nd R ICS",
+                            "template": "best heard near 2nd R ICS"
+                        },
+                        {
+                            "text": "best: xiphoid\/ sternal area",
+                            "template": "best heard at xiphoid\/sternal area"
+                        },
+                        {
+                            "text": "best: apex",
+                            "template": "best heard at apex"
+                        },
+                        {
+                            "text": "best: R sternal border",
+                            "template": "best heard at R sternal border"
+                        },
+                        {
+                            "text": "nonradiating",
+                            "template": "nonradiating"
+                        },
+                        {
+                            "text": "radiates to axilla",
+                            "template": "radiates to axilla"
+                        },
+                        {
+                            "text": "radiates to apex",
+                            "template": "radiates to apex"
+                        },
+                        {
+                            "text": "radiates to carotids",
+                            "template": "radiates to carotids"
+                        },
+                        {
+                            "text": "radiates to R side",
+                            "template": "radiates to R side"
+                        },
+                        {
+                            "text": "radiates to sternum",
+                            "template": "radiates to sternum"
+                        },
+                        {
+                            "text": "radiates to L clavicular area",
+                            "template": "radiates to L clavicular area"
+                        }
+                    ]
+                },
+                {
+                    "text": "no increased JVP visible",
+                    "template": "no increased JVP visible"
+                },
+                {
+                    "text": "JVP level (cm)",
+                    "template": "JVP {text} cm above the sternal angle",
+                    "type": "number"
+                },
+                {
+                    "text": "Heaves, Thrills, Lifts",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "heave",
+                            "template": "heave",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "parasternal lift",
+                            "template": "parasternal lift",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "thrill",
+                            "template": "thrill",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Extra heart sounds",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "extra heart sounds",
+                            "template": "extra heart sounds",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pulmonary ejection sound",
+                            "template": "pulmonary ejection sound",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "aortic ejection sound",
+                            "template": "aortic ejection sound",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "systolic click",
+                            "template": "systolic click",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "midsystolic click",
+                            "template": "midsystolic click",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mid-late systolic click",
+                            "template": "mid-to-late systolic click",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pericardial rub",
+                            "template": "pericardial rub",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "knock",
+                            "template": "knock",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "opening snap",
+                            "template": "opening snap",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "plop",
+                            "template": "plop",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "prosthetic sounds",
+                            "template": "prosthetic sounds",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pacemaker sounds",
+                            "template": "pacemaker sounds",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "PMI nondisplaced",
+                    "template": "PMI nondisplaced"
+                },
+                {
+                    "text": "PMI displaced",
+                    "template": "PMI displaced",
+                    "children": [
+                        {
+                            "text": "laterally",
+                            "template": "laterally"
+                        },
+                        {
+                            "text": "inferiorly",
+                            "template": "inferiorly"
+                        },
+                        {
+                            "text": "superiorly",
+                            "template": "superiorly"
+                        },
+                        {
+                            "text": "parasternally",
+                            "template": "parasternally"
+                        }
+                    ]
+                },
+                {
+                    "text": "Peripheral pulses, R",
+                    "template": "Peripheral pulses, R: {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity normal",
+                            "template": "upper extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lower extremity normal",
+                            "template": "lower extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished in upper extremities",
+                            "template": "diminished in upper extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished in lower extremities",
+                            "template": "diminished in lower extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pulsus paradoxicus",
+                            "template": "pulsus paradoxicus",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Peripheral pulses, L",
+                    "template": "Peripheral pulses, L: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact"
+                        },
+                        {
+                            "text": "upper extremity normal",
+                            "template": "upper extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lower extremity normal",
+                            "template": "lower extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished in upper extremities",
+                            "template": "diminished in upper extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished in lower extremities",
+                            "template": "diminished in lower extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pulsus paradoxicus",
+                            "template": "pulsus paradoxicus",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Peripheral pulses, BL",
+                    "template": "Peripheral pulses, BL: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact"
+                        },
+                        {
+                            "text": "upper extremity normal",
+                            "template": "upper extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lower extremity normal",
+                            "template": "lower extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished in upper extremities",
+                            "template": "diminished in upper extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished in lower extremities",
+                            "template": "diminished in lower extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pulsus paradoxicus",
+                            "template": "pulsus paradoxicus",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Xanthomas, R",
+                    "template": "Xanthomas, R: {children}",
+                    "children": [
+                        {
+                            "text": "eyelids",
+                            "template": "eyelids"
+                        },
+                        {
+                            "text": "periorbital",
+                            "template": "periorbital area"
+                        },
+                        {
+                            "text": "hands",
+                            "template": "hands"
+                        },
+                        {
+                            "text": "achilles tendons",
+                            "template": "achilles tendons"
+                        },
+                        {
+                            "text": "feet",
+                            "template": "feet"
+                        },
+                        {
+                            "text": "elbows",
+                            "template": "elbows"
+                        },
+                        {
+                            "text": "knees",
+                            "template": "knees"
+                        },
+                        {
+                            "text": "shoulders",
+                            "template": "shoulders"
+                        },
+                        {
+                            "text": "buttocks",
+                            "template": "buttocks"
+                        }
+                    ]
+                },
+                {
+                    "text": "Xanthomas, L",
+                    "template": "Xanthomas, L: {children}",
+                    "children": [
+                        {
+                            "text": "eyelids",
+                            "template": "eyelids"
+                        },
+                        {
+                            "text": "periorbital",
+                            "template": "periorbital area"
+                        },
+                        {
+                            "text": "hands",
+                            "template": "hands"
+                        },
+                        {
+                            "text": "achilles tendons",
+                            "template": "achilles tendons"
+                        },
+                        {
+                            "text": "feet",
+                            "template": "feet"
+                        },
+                        {
+                            "text": "elbows",
+                            "template": "elbows"
+                        },
+                        {
+                            "text": "knees",
+                            "template": "knees"
+                        },
+                        {
+                            "text": "shoulders",
+                            "template": "shoulders"
+                        },
+                        {
+                            "text": "buttocks",
+                            "template": "buttocks"
+                        }
+                    ]
+                },
+                {
+                    "text": "Xanthomas, BL",
+                    "template": "Xanthomas, BL: {children}",
+                    "children": [
+                        {
+                            "text": "eyelids",
+                            "template": "eyelids"
+                        },
+                        {
+                            "text": "periorbital",
+                            "template": "periorbital area"
+                        },
+                        {
+                            "text": "hands",
+                            "template": "hands"
+                        },
+                        {
+                            "text": "achilles tendons",
+                            "template": "achilles tendons"
+                        },
+                        {
+                            "text": "feet",
+                            "template": "feet"
+                        },
+                        {
+                            "text": "elbows",
+                            "template": "elbows"
+                        },
+                        {
+                            "text": "knees",
+                            "template": "knees"
+                        },
+                        {
+                            "text": "shoulders",
+                            "template": "shoulders"
+                        },
+                        {
+                            "text": "buttocks",
+                            "template": "buttocks"
+                        }
+                    ]
+                },
+                {
+                    "text": "LE venous stasis changes",
+                    "template": "LE venous stasis changes",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "varicose veins",
+                    "template": "varicose veins",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "LE varicose veins, R",
+                    "template": "LE varicose veins, R: {children}",
+                    "children": [
+                        {
+                            "text": "present",
+                            "template": "present",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "LE varicose veins, L",
+                    "template": "LE varicose veins, L: {children}",
+                    "children": [
+                        {
+                            "text": "present",
+                            "template": "present",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "LE varicose veins, BL",
+                    "template": "LE varicose veins, BL: {children}",
+                    "children": [
+                        {
+                            "text": "present",
+                            "template": "present",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "Other findings: {text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Cardiovascular, pulses",
+            "template": "CV: {children}",
+            "children": [
+                {
+                    "text": "pulse rate and rhythm regular",
+                    "template": "pulse rate and rhythm regular"
+                },
+                {
+                    "text": "pulse rate regular",
+                    "template": "pulse rate regular"
+                },
+                {
+                    "text": "pulse rhythm regular",
+                    "template": "pulse rhythm regular"
+                },
+                {
+                    "text": "Temporal artery, R",
+                    "template": "Temporal artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Temporal artery, L",
+                    "template": "Temporal artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Temporal arteries, BL",
+                    "template": "Temporal arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Carotid artery, R",
+                    "template": "Carotid artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "delayed upstroke",
+                            "template": "delayed upstroke"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Carotid artery, L",
+                    "template": "Carotid artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "delayed upstroke",
+                            "template": "delayed upstroke"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Carotid arteries, BL",
+                    "template": "Carotid arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "delayed upstroke",
+                            "template": "delayed upstroke"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Brachial artery, R",
+                    "template": "Brachial artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Brachial artery, L",
+                    "template": "Brachial artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Brachial arteries, BL",
+                    "template": "Brachial arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Radial artery, R",
+                    "template": "Radial artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "waterhammer",
+                            "template": "waterhammer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bisferiens",
+                            "template": "bisferiens",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Radial artery, L",
+                    "template": "Radial artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "waterhammer",
+                            "template": "waterhammer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bisferiens",
+                            "template": "bisferiens",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Radial arteries, BL",
+                    "template": "Radial arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "waterhammer",
+                            "template": "waterhammer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bisferiens",
+                            "template": "bisferiens",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Femoral artery, R",
+                    "template": "Femoral artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Femoral artery, L",
+                    "template": "Femoral artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Femoral arteries, BL",
+                    "template": "Femoral arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Popliteal artery, R",
+                    "template": "Popliteal artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Popliteal artery, L",
+                    "template": "Popliteal artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Popliteal arteries, BL",
+                    "template": "Popliteal arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Dorsalis pedis artery, R",
+                    "template": "Dorsalis pedis artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Dorsalis pedis artery, L",
+                    "template": "Dorsalis pedis artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Dorsalis pedis arteries, BL",
+                    "template": "Dorsalis pedis arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Posterior tibial, R",
+                    "template": "Posterior tibial, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Posterior tibial, L",
+                    "template": "Posterior tibial, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Posterior tibial arteries, BL",
+                    "template": "Posterior tibial arteries, BL {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Renal artery, R",
+                    "template": "Renal artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "bruit present",
+                            "template": "bruit present"
+                        },
+                        {
+                            "text": "palpable pulse",
+                            "template": "palpable pulse",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Renal artery, L",
+                    "template": "Renal artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "bruit present",
+                            "template": "bruit present"
+                        },
+                        {
+                            "text": "palpable pulse",
+                            "template": "palpable pulse",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Renal arteries, BL",
+                    "template": "Renal arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "bruit present",
+                            "template": "bruit present"
+                        },
+                        {
+                            "text": "palpable pulse",
+                            "template": "palpable pulse",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Aorta",
+                    "template": "Aorta: {children}",
+                    "children": [
+                        {
+                            "text": "enlargement",
+                            "template": "enlargement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Gastrointestinal",
+            "template": "GI: {children}",
+            "children": [
+                {
+                    "text": "bowel sounds intact throughout",
+                    "template": "bowel sounds intact throughout"
+                },
+                {
+                    "text": "borborygmi",
+                    "template": "borborygmi",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "soft, nontender to palpation",
+                    "template": "soft, nontender to palpation"
+                },
+                {
+                    "text": "no rebound\/guarding\/rigidity",
+                    "template": "no rebound\/guarding\/rigidity"
+                },
+                {
+                    "text": "rebound",
+                    "template": "rebound",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "voluntary guarding",
+                    "template": "voluntary guarding",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "involuntary guarding",
+                    "template": "involuntary guarding",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "rigidity",
+                    "template": "rigidity",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "hepatomegaly",
+                    "template": "hepatomegaly",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "splenomegaly",
+                    "template": "splenomegaly",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "masses",
+                    "template": "masses",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "hepatojugular reflex",
+                    "template": "hepatojugular reflex",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Liver",
+                    "template": "Liver: {children}",
+                    "children": [
+                        {
+                            "text": "normal",
+                            "template": "normal"
+                        },
+                        {
+                            "text": "caput medusae",
+                            "template": "caput medusae",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spider angiomata",
+                            "template": "spider angiomata",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "palpable",
+                            "template": "palpable",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "edge palpable below costal margin",
+                            "template": "edge palpable below costal margin",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hepatomegaly",
+                            "template": "hepatomegaly",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bulging flanks",
+                            "template": "bulging flanks",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flank dullness",
+                            "template": "flank dullness",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "shifting dullness",
+                            "template": "shifting dullness",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fluid wave",
+                            "template": "fluid wave",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ascites",
+                            "template": "ascites",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Spleen",
+                    "template": "Spleen: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "palpable",
+                            "template": "palpable",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "splenomegaly",
+                            "template": "splenomegaly",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Abdominal exam: inspection",
+                    "template": "Abdominal exam inspection: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities on inspection",
+                            "template": "no abnormalities on inspection"
+                        },
+                        {
+                            "text": "distended",
+                            "template": "distended",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flat",
+                            "template": "flat",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "obese",
+                            "template": "obese",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scaphoid",
+                            "template": "scaphoid",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scarring",
+                            "template": "scarring",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "rash",
+                            "template": "rash",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "umbilical hernia",
+                            "template": "umbilical hernia",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ventral hernia",
+                            "template": "ventral hernia",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spider angiomata",
+                            "template": "spider angiomata",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "caput medusae",
+                            "template": "caput medusae",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Abdominal exam: bowel sounds",
+                    "template": "Bowel sounds: {children}",
+                    "children": [
+                        {
+                            "text": "present on auscultation",
+                            "template": "present on auscultation"
+                        },
+                        {
+                            "text": "normoactive",
+                            "template": "normoactive"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "absent",
+                            "template": "absent",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "high pitched",
+                            "template": "high pitched",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Abdominal exam: tenderness",
+                    "template": "Abdominal pain: {children}",
+                    "children": [
+                        {
+                            "text": "no tenderness noted on exam",
+                            "template": "no tenderness noted on exam"
+                        },
+                        {
+                            "text": "tenderness at rest",
+                            "template": "tenderness present at rest",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tenderness with palpation",
+                            "template": "tenderness present with palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tenderness with movement",
+                            "template": "tenderness present with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mild",
+                            "template": "mild pain present"
+                        },
+                        {
+                            "text": "moderate",
+                            "template": "moderate pain present"
+                        },
+                        {
+                            "text": "severe",
+                            "template": "severe pain present"
+                        },
+                        {
+                            "text": "present throughout",
+                            "template": "pain present throughout"
+                        },
+                        {
+                            "text": "right sided tenderness",
+                            "template": "right sided tenderness present"
+                        },
+                        {
+                            "text": "left sided tenderness",
+                            "template": "left sided tenderness present"
+                        },
+                        {
+                            "text": "midepigastric tenderness",
+                            "template": "midepigastric tenderness present"
+                        },
+                        {
+                            "text": "RUQ tenderness",
+                            "template": "RUQ tenderness present"
+                        },
+                        {
+                            "text": "LUQ tenderness",
+                            "template": "LUQ tenderness present"
+                        },
+                        {
+                            "text": "hypogastric tenderness",
+                            "template": "hypogastric tenderness present"
+                        },
+                        {
+                            "text": "RLQ tenderness",
+                            "template": "RLQ tenderness present"
+                        },
+                        {
+                            "text": "LLQ tenderness",
+                            "template": "LLQ tenderness present"
+                        },
+                        {
+                            "text": "periumbilical tenderness",
+                            "template": "periumbilical tenderness present"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "GU\/Rectal",
+            "template": "GU\/RECTAL: {children}",
+            "children": [
+                {
+                    "text": "rectal exam normal",
+                    "template": "rectal exam normal"
+                },
+                {
+                    "text": "normal rectal tone",
+                    "template": "normal rectal tone"
+                },
+                {
+                    "text": "hemoccult negative",
+                    "template": "hemoccult negative"
+                },
+                {
+                    "text": "hemoccult positive",
+                    "template": "hemoccult positive"
+                },
+                {
+                    "text": "rectal exam deferred",
+                    "template": "rectal exam deferred"
+                },
+                {
+                    "text": "rectal exam refused by patient",
+                    "template": "rectal exam refused by patient"
+                },
+                {
+                    "text": "rectal exam contraindicated",
+                    "template": "rectal exam contraindicated"
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Dermatologic\/Lymphatic",
+            "template": "DERM: {children}",
+            "children": [
+                {
+                    "text": "diaphoresis",
+                    "template": "diaphoresis",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "periorbital xanthelasma",
+                    "template": "periorbital xanthelasma",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "xanthomas",
+                    "template": "xanthomas",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "cyanosis",
+                    "template": "cyanosis",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Cyanosis location",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "perioral cyanosis",
+                            "template": "perioral cyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acral cyanosis",
+                            "template": "acral cyanosis",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "decreased hair LE",
+                    "template": "decreased hair LE",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "stasis dermatitis R LE",
+                    "template": "stasis dermatitis R LE",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "stasis dermatitis L LE",
+                    "template": "stasis dermatitis L LE",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "dry skin",
+                    "template": "dry skin",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "clubbing",
+                    "template": "clubbing",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "petechiae",
+                    "template": "petechiae",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "lymphadenopathy",
+                    "template": "lymphadenopathy",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Extremities",
+            "template": "EXT: {children}",
+            "children": [
+                {
+                    "text": "no C\/C\/E",
+                    "template": "no C\/C\/E"
+                },
+                {
+                    "text": "cyanosis",
+                    "template": "cyanosis",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "clubbing",
+                    "template": "clubbing",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "edema",
+                    "template": "edema",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "anasarca",
+                    "template": "anasarca",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Upper extremity C\/C\/E, R",
+                    "template": "Upper extremity C\/C\/E, R: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity C\/C\/E, L",
+                    "template": "Upper extremity C\/C\/E, L: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremities C\/C\/E, BL",
+                    "template": "Upper extremities C\/C\/E, BL: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity C\/C\/E, R",
+                    "template": "Lower extremity C\/C\/E, R: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity C\/C\/E, L",
+                    "template": "Lower extremity C\/C\/E, L: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremities C\/C\/E, BL",
+                    "template": "Lower extremities C\/C\/E, BL: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "full range of motion throughout",
+                    "template": "full range of motion throughout"
+                },
+                {
+                    "text": "upper ext strength intact BL",
+                    "template": "upper extremity strength intact BL",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Upper extremity, ROM, R",
+                    "template": "Upper extremity, range of motion, R: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity, ROM, L",
+                    "template": "Upper extremity, range of motion, L: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremities, ROM, BL",
+                    "template": "Upper extremities, range of motion, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "lower ext strength intact BL",
+                    "template": "lower extremity strength intact BL",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Lower extremity, ROM, R",
+                    "template": "Lower extremity, range of motion, R: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity, ROM, L",
+                    "template": "Lower extremity, range of motion, L: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity, ROM, BL",
+                    "template": "Lower extremity, range of motion, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "upper extremity strength intact BL",
+                    "template": "Upper extremity strength intact BL",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Upper extremity strength, R",
+                    "template": "Upper extremity strength, R: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity strength, L",
+                    "template": "Upper extremity strength, L: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity strength, BL",
+                    "template": "Upper extremity strength, BL: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "lower extremity strength intact BL",
+                    "template": "Lower extremity strength intact BL",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Lower extremity strength, R",
+                    "template": "Lower extremity strength, R: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity strength, L",
+                    "template": "Lower extremity strength, L: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity strength, BL",
+                    "template": "Lower extremity strength, BL: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Musculoskeletal",
+            "template": "MUSC\/SKEL: {children}",
+            "children": [
+                {
+                    "text": "muscle strength NL throughout",
+                    "template": "muscle strength NL throughout"
+                },
+                {
+                    "text": "NL upper extremity exam BL",
+                    "template": "NL upper extremity exam BL",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "NL lower extremity exam BL",
+                    "template": "NL lower extremity exam BL",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Upper extremity, R",
+                    "template": "Upper extremity exam, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "normal strength and tone"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity, L",
+                    "template": "Upper extremity exam, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "normal strength and tone"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity, BL",
+                    "template": "Upper extremity exam, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "normal strength and tone"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity, R",
+                    "template": "Lower extremity exam, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "normal strength and tone"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity, L",
+                    "template": "Lower extremity exam, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "normal strength and tone"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity, BL",
+                    "template": "Lower extremity exam, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "normal strength and tone"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Back\/spine",
+            "template": "MUSC\/SKEL: {children}",
+            "children": [
+                {
+                    "text": "Back, R",
+                    "template": "Back exam, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sacral edema",
+                            "template": "sacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "presacral edema",
+                            "template": "presacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "costovertebral angle tenderness",
+                            "template": "costovertebral angle tenderness",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Back, L",
+                    "template": "Back exam, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sacral edema",
+                            "template": "sacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "presacral edema",
+                            "template": "presacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "costovertebral angle tenderness",
+                            "template": "costovertebral angle tenderness",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Back, BL",
+                    "template": "Back exam, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sacral edema",
+                            "template": "sacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "presacral edema",
+                            "template": "presacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "costovertebral angle tenderness",
+                            "template": "costovertebral angle tenderness",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Cervical spine\/musculature, R",
+                    "template": "Cervical spine\/musculature, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Cervical spine\/musculature, L",
+                    "template": "Cervical spine\/musculature, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Cervical spine\/musculature, BL",
+                    "template": "Cervical spine\/musculature, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Thoracic spine\/musculature, R",
+                    "template": "Thoracic spine\/musculature, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Thoracic spine\/musculature, L",
+                    "template": "Thoracic spine\/musculature, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Thoracic spine\/musculature, BL",
+                    "template": "Thoracic spine\/musculature, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lumbar spine\/musculature, R",
+                    "template": "Lumbar spine\/musculature, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "CVA tenderness",
+                            "template": "CVA tenderness",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "straight leg raise normal",
+                            "template": "straight leg raise normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "femoral nerve stretch test",
+                            "template": "femoral nerve stretch test",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "FABER test",
+                            "template": "FABER test",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lumbar spine\/musculature, L",
+                    "template": "Lumbar spine\/musculature, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "CVA tenderness",
+                            "template": "CVA tenderness",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "straight leg raise normal",
+                            "template": "straight leg raise normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "femoral nerve stretch test",
+                            "template": "femoral nerve stretch test",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "FABER test",
+                            "template": "FABER test",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lumbar spine\/musculature, BL",
+                    "template": "Lumbar spine\/musculature, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "CVA tenderness",
+                            "template": "CVA tenderness",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "straight leg raise normal",
+                            "template": "straight leg raise normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "femoral nerve stretch test",
+                            "template": "femoral nerve stretch test",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "FABER test",
+                            "template": "FABER test",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Sacral spine\/musculature, R",
+                    "template": "Sacral spine\/musculature, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "CVA tenderness",
+                            "template": "CVA tenderness",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "straight leg raise normal",
+                            "template": "straight leg raise normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "femoral nerve stretch test",
+                            "template": "femoral nerve stretch test",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "FABER test",
+                            "template": "FABER test",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Sacral spine\/musculature, L",
+                    "template": "Sacral spine\/musculature, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "CVA tenderness",
+                            "template": "CVA tenderness",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "straight leg raise normal",
+                            "template": "straight leg raise normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "femoral nerve stretch test",
+                            "template": "femoral nerve stretch test",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "FABER test",
+                            "template": "FABER test",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Sacral spine\/musculature, BL",
+                    "template": "Sacral spine\/musculature, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "CVA tenderness",
+                            "template": "CVA tenderness",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "straight leg raise normal",
+                            "template": "straight leg raise normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "femoral nerve stretch test",
+                            "template": "femoral nerve stretch test",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "FABER test",
+                            "template": "FABER test",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Neuro: Cranial nerves",
+            "template": "NEURO: {children}",
+            "children": [
+                {
+                    "text": "CN II-XII intact and nonfocal",
+                    "template": "CN II-XII intact and nonfocal"
+                },
+                {
+                    "text": "CN I: sense of smell",
+                    "template": "sense of smell (CN I) {children}",
+                    "children": [
+                        {
+                            "text": "not assessed",
+                            "template": "not assessed"
+                        },
+                        {
+                            "text": "intact and nonfocal",
+                            "template": "intact and nonfocal"
+                        },
+                        {
+                            "text": "decreased sense of smell",
+                            "template": "decreased sense of smell"
+                        },
+                        {
+                            "text": "anosmia",
+                            "template": "anosmia",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN II, R eye visual acuity\/fields",
+                    "template": "R eye visual acuity\/fields (CN II) {children}",
+                    "children": [
+                        {
+                            "text": "visual acuity intact BL",
+                            "template": "visual acuity intact BL"
+                        },
+                        {
+                            "text": "decreased visual acuity BL",
+                            "template": "decreased visual acuity BL"
+                        },
+                        {
+                            "text": "monocular blindness noted",
+                            "template": "monocular blindness noted"
+                        },
+                        {
+                            "text": "R hemianopsia noted",
+                            "template": "R hemianopsia noted"
+                        },
+                        {
+                            "text": "L hemianopsia noted",
+                            "template": "L hemianopsia noted"
+                        },
+                        {
+                            "text": "R upper quadrantanopsia noted",
+                            "template": "R upper quadrantanopsia noted"
+                        },
+                        {
+                            "text": "L upper quadrantanopsia noted",
+                            "template": "L upper quadrantanopsia noted"
+                        },
+                        {
+                            "text": "R lower quadrantanopsia noted",
+                            "template": "R lower quadrantanopsia noted"
+                        },
+                        {
+                            "text": "L upper quadrantanopsia noted",
+                            "template": "L upper quadrantanopsia noted"
+                        },
+                        {
+                            "text": "L lower quadrantanopsia noted",
+                            "template": "L lower quadrantanopsia noted"
+                        },
+                        {
+                            "text": "macular sparing noted",
+                            "template": "macular sparing noted"
+                        },
+                        {
+                            "text": "central vision loss noted",
+                            "template": "central vision loss noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN II, L eye visual acuity\/fields",
+                    "template": "L eye visual acuity\/fields (CN II) {children}",
+                    "children": [
+                        {
+                            "text": "visual acuity intact BL",
+                            "template": "visual acuity intact BL"
+                        },
+                        {
+                            "text": "decreased visual acuity BL",
+                            "template": "decreased visual acuity BL"
+                        },
+                        {
+                            "text": "monocular blindness noted",
+                            "template": "monocular blindness noted"
+                        },
+                        {
+                            "text": "R hemianopsia noted",
+                            "template": "R hemianopsia noted"
+                        },
+                        {
+                            "text": "L hemianopsia noted",
+                            "template": "L hemianopsia noted"
+                        },
+                        {
+                            "text": "R upper quadrantanopsia noted",
+                            "template": "R upper quadrantanopsia noted"
+                        },
+                        {
+                            "text": "L upper quadrantanopsia noted",
+                            "template": "L upper quadrantanopsia noted"
+                        },
+                        {
+                            "text": "R lower quadrantanopsia noted",
+                            "template": "R lower quadrantanopsia noted"
+                        },
+                        {
+                            "text": "L upper quadrantanopsia noted",
+                            "template": "L upper quadrantanopsia noted"
+                        },
+                        {
+                            "text": "L lower quadrantanopsia noted",
+                            "template": "L lower quadrantanopsia noted"
+                        },
+                        {
+                            "text": "macular sparing noted",
+                            "template": "macular sparing noted"
+                        },
+                        {
+                            "text": "central vision loss noted",
+                            "template": "central vision loss noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN II, BL visual acuity\/fields",
+                    "template": "BL visual acuity\/fields (CN II) {children}",
+                    "children": [
+                        {
+                            "text": "visual acuity intact BL",
+                            "template": "visual acuity intact BL"
+                        },
+                        {
+                            "text": "decreased visual acuity BL",
+                            "template": "decreased visual acuity BL"
+                        },
+                        {
+                            "text": "monocular blindness noted",
+                            "template": "monocular blindness noted"
+                        },
+                        {
+                            "text": "R hemianopsia noted",
+                            "template": "R hemianopsia noted"
+                        },
+                        {
+                            "text": "L hemianopsia noted",
+                            "template": "L hemianopsia noted"
+                        },
+                        {
+                            "text": "R upper quadrantanopsia noted",
+                            "template": "R upper quadrantanopsia noted"
+                        },
+                        {
+                            "text": "L upper quadrantanopsia noted",
+                            "template": "L upper quadrantanopsia noted"
+                        },
+                        {
+                            "text": "R lower quadrantanopsia noted",
+                            "template": "R lower quadrantanopsia noted"
+                        },
+                        {
+                            "text": "L upper quadrantanopsia noted",
+                            "template": "L upper quadrantanopsia noted"
+                        },
+                        {
+                            "text": "L lower quadrantanopsia noted",
+                            "template": "L lower quadrantanopsia noted"
+                        },
+                        {
+                            "text": "macular sparing noted",
+                            "template": "macular sparing noted"
+                        },
+                        {
+                            "text": "central vision loss noted",
+                            "template": "central vision loss noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN II: R pupil",
+                    "template": "R pupil (CN II) {children}",
+                    "children": [
+                        {
+                            "text": "normal size",
+                            "template": "normal in size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged"
+                        },
+                        {
+                            "text": "miosis noted",
+                            "template": "miosis noted"
+                        },
+                        {
+                            "text": "eccentric",
+                            "template": "eccentric"
+                        },
+                        {
+                            "text": "irregularly shaped",
+                            "template": "irregularly shaped"
+                        },
+                        {
+                            "text": "midline",
+                            "template": "midline"
+                        },
+                        {
+                            "text": "reactive to light",
+                            "template": "reactive to light"
+                        },
+                        {
+                            "text": "accommodation intact",
+                            "template": "accommodation intact"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN II: L pupil",
+                    "template": "L pupil (CN II) {children}",
+                    "children": [
+                        {
+                            "text": "normal size",
+                            "template": "normal in size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged"
+                        },
+                        {
+                            "text": "miosis noted",
+                            "template": "miosis noted"
+                        },
+                        {
+                            "text": "eccentric",
+                            "template": "eccentric"
+                        },
+                        {
+                            "text": "irregularly shaped",
+                            "template": "irregularly shaped"
+                        },
+                        {
+                            "text": "midline",
+                            "template": "midline"
+                        },
+                        {
+                            "text": "reactive to light",
+                            "template": "reactive to light"
+                        },
+                        {
+                            "text": "accommodation intact",
+                            "template": "accommodation intact"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN II: BL pupils",
+                    "template": "BL pupils (CN II) {children}",
+                    "children": [
+                        {
+                            "text": "normal size",
+                            "template": "normal in size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged"
+                        },
+                        {
+                            "text": "miosis noted",
+                            "template": "miosis noted"
+                        },
+                        {
+                            "text": "eccentric",
+                            "template": "eccentric"
+                        },
+                        {
+                            "text": "irregularly shaped",
+                            "template": "irregularly shaped"
+                        },
+                        {
+                            "text": "midline",
+                            "template": "midline"
+                        },
+                        {
+                            "text": "reactive to light",
+                            "template": "reactive to light"
+                        },
+                        {
+                            "text": "accommodation intact",
+                            "template": "accommodation intact"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN III\/IV\/VI: R eye",
+                    "template": "R eye (CN III\/IV\/VI) {children}",
+                    "children": [
+                        {
+                            "text": "extraocular mvmts intact, nonfocal",
+                            "template": "extraocular movements intact and nonfocal"
+                        },
+                        {
+                            "text": "upward gaze intact",
+                            "template": "upward gaze intact"
+                        },
+                        {
+                            "text": "upward gaze impaired",
+                            "template": "upward gaze impaired"
+                        },
+                        {
+                            "text": "downward gaze intact",
+                            "template": "downward gaze intact"
+                        },
+                        {
+                            "text": "downward gaze impaired",
+                            "template": "downward gaze impaired"
+                        },
+                        {
+                            "text": "inward gaze intact",
+                            "template": "inward gaze intact"
+                        },
+                        {
+                            "text": "inward gaze impaired",
+                            "template": "inward gaze impaired"
+                        },
+                        {
+                            "text": "outward gaze intact",
+                            "template": "outward gaze intact"
+                        },
+                        {
+                            "text": "outward gaze impaired",
+                            "template": "outward gaze impaired"
+                        },
+                        {
+                            "text": "dysconjugate gaze noted",
+                            "template": "dysconjugate gaze noted"
+                        },
+                        {
+                            "text": "no horizontal nystagmus",
+                            "template": "no horizontal nystagmus"
+                        },
+                        {
+                            "text": "horizontal nystagmus present at rest",
+                            "template": "horizontal nystagmus present at rest"
+                        },
+                        {
+                            "text": "horizontal nystagmus elicited",
+                            "template": "horizontal nystagmus elicited"
+                        },
+                        {
+                            "text": "no vertical nystagmus",
+                            "template": "no vertical nystagmus"
+                        },
+                        {
+                            "text": "vertical nystagmus present at rest",
+                            "template": "vertical nystagmus present at rest"
+                        },
+                        {
+                            "text": "vertical nystagmus elicited",
+                            "template": "vertical nystagmus elicited"
+                        },
+                        {
+                            "text": "miosis noted",
+                            "template": "miosis noted"
+                        },
+                        {
+                            "text": "lid lag not present",
+                            "template": "lid lag not present"
+                        },
+                        {
+                            "text": "ptosis noted",
+                            "template": "ptosis noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN III\/IV\/VI: L eye",
+                    "template": "L eye (CN III\/IV\/VI) {children}",
+                    "children": [
+                        {
+                            "text": "extraocular mvmts intact, nonfocal",
+                            "template": "extraocular movements intact and nonfocal"
+                        },
+                        {
+                            "text": "upward gaze intact",
+                            "template": "upward gaze intact"
+                        },
+                        {
+                            "text": "upward gaze impaired",
+                            "template": "upward gaze impaired"
+                        },
+                        {
+                            "text": "downward gaze intact",
+                            "template": "downward gaze intact"
+                        },
+                        {
+                            "text": "downward gaze impaired",
+                            "template": "downward gaze impaired"
+                        },
+                        {
+                            "text": "inward gaze intact",
+                            "template": "inward gaze intact"
+                        },
+                        {
+                            "text": "inward gaze impaired",
+                            "template": "inward gaze impaired"
+                        },
+                        {
+                            "text": "outward gaze intact",
+                            "template": "outward gaze intact"
+                        },
+                        {
+                            "text": "outward gaze impaired",
+                            "template": "outward gaze impaired"
+                        },
+                        {
+                            "text": "dysconjugate gaze noted",
+                            "template": "dysconjugate gaze noted"
+                        },
+                        {
+                            "text": "no horizontal nystagmus",
+                            "template": "no horizontal nystagmus"
+                        },
+                        {
+                            "text": "horizontal nystagmus present at rest",
+                            "template": "horizontal nystagmus present at rest"
+                        },
+                        {
+                            "text": "horizontal nystagmus elicited",
+                            "template": "horizontal nystagmus elicited"
+                        },
+                        {
+                            "text": "no vertical nystagmus",
+                            "template": "no vertical nystagmus"
+                        },
+                        {
+                            "text": "vertical nystagmus present at rest",
+                            "template": "vertical nystagmus present at rest"
+                        },
+                        {
+                            "text": "vertical nystagmus elicited",
+                            "template": "vertical nystagmus elicited"
+                        },
+                        {
+                            "text": "miosis noted",
+                            "template": "miosis noted"
+                        },
+                        {
+                            "text": "lid lag not present",
+                            "template": "lid lag not present"
+                        },
+                        {
+                            "text": "ptosis noted",
+                            "template": "ptosis noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN III\/IV\/VI: BL eyes",
+                    "template": "BL (CN III\/IV\/VI) {children}",
+                    "children": [
+                        {
+                            "text": "extraocular mvmts intact, nonfocal",
+                            "template": "extraocular movements intact and nonfocal"
+                        },
+                        {
+                            "text": "upward gaze intact",
+                            "template": "upward gaze intact"
+                        },
+                        {
+                            "text": "upward gaze impaired",
+                            "template": "upward gaze impaired"
+                        },
+                        {
+                            "text": "downward gaze intact",
+                            "template": "downward gaze intact"
+                        },
+                        {
+                            "text": "downward gaze impaired",
+                            "template": "downward gaze impaired"
+                        },
+                        {
+                            "text": "inward gaze intact",
+                            "template": "inward gaze intact"
+                        },
+                        {
+                            "text": "inward gaze impaired",
+                            "template": "inward gaze impaired"
+                        },
+                        {
+                            "text": "outward gaze intact",
+                            "template": "outward gaze intact"
+                        },
+                        {
+                            "text": "outward gaze impaired",
+                            "template": "outward gaze impaired"
+                        },
+                        {
+                            "text": "dysconjugate gaze noted",
+                            "template": "dysconjugate gaze noted"
+                        },
+                        {
+                            "text": "no horizontal nystagmus",
+                            "template": "no horizontal nystagmus"
+                        },
+                        {
+                            "text": "horizontal nystagmus present at rest",
+                            "template": "horizontal nystagmus present at rest"
+                        },
+                        {
+                            "text": "horizontal nystagmus elicited",
+                            "template": "horizontal nystagmus elicited"
+                        },
+                        {
+                            "text": "no vertical nystagmus",
+                            "template": "no vertical nystagmus"
+                        },
+                        {
+                            "text": "vertical nystagmus present at rest",
+                            "template": "vertical nystagmus present at rest"
+                        },
+                        {
+                            "text": "vertical nystagmus elicited",
+                            "template": "vertical nystagmus elicited"
+                        },
+                        {
+                            "text": "miosis noted",
+                            "template": "miosis noted"
+                        },
+                        {
+                            "text": "lid lag not present",
+                            "template": "lid lag not present"
+                        },
+                        {
+                            "text": "ptosis noted",
+                            "template": "ptosis noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN V: R",
+                    "template": "R (CN V) {children}",
+                    "children": [
+                        {
+                            "text": "corneal reflex intact",
+                            "template": "corneal reflex intact"
+                        },
+                        {
+                            "text": "absent corneal reflex",
+                            "template": "absent corneal reflex"
+                        },
+                        {
+                            "text": "temporal muscle strength intact",
+                            "template": "temporal muscle strength intact"
+                        },
+                        {
+                            "text": "decreased temporal muscle strength",
+                            "template": "decreased temporal muscle strength"
+                        },
+                        {
+                            "text": "masseter muscle strength intact",
+                            "template": "masseter muscle strength intact"
+                        },
+                        {
+                            "text": "decreased masseter muscle strength",
+                            "template": "decreased masseter muscle strength"
+                        },
+                        {
+                            "text": "forehead sensation intact",
+                            "template": "forehead sensation intact"
+                        },
+                        {
+                            "text": "decreased forehead sensation",
+                            "template": "decreased forehead sensation"
+                        },
+                        {
+                            "text": "cheek sensation intact",
+                            "template": "cheek sensation intact"
+                        },
+                        {
+                            "text": "decreased cheek sensation",
+                            "template": "decreased cheek sensation"
+                        },
+                        {
+                            "text": "jaw strength intact",
+                            "template": "jaw strength intact"
+                        },
+                        {
+                            "text": "decreased jaw strength",
+                            "template": "decreased jaw strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN V: L",
+                    "template": "L (CN V) {children}",
+                    "children": [
+                        {
+                            "text": "corneal reflex intact",
+                            "template": "corneal reflex intact"
+                        },
+                        {
+                            "text": "absent corneal reflex",
+                            "template": "absent corneal reflex"
+                        },
+                        {
+                            "text": "temporal muscle strength intact",
+                            "template": "temporal muscle strength intact"
+                        },
+                        {
+                            "text": "decreased temporal muscle strength",
+                            "template": "decreased temporal muscle strength"
+                        },
+                        {
+                            "text": "masseter muscle strength intact",
+                            "template": "masseter muscle strength intact"
+                        },
+                        {
+                            "text": "decreased masseter muscle strength",
+                            "template": "decreased masseter muscle strength"
+                        },
+                        {
+                            "text": "forehead sensation intact",
+                            "template": "forehead sensation intact"
+                        },
+                        {
+                            "text": "decreased forehead sensation",
+                            "template": "decreased forehead sensation"
+                        },
+                        {
+                            "text": "cheek sensation intact",
+                            "template": "cheek sensation intact"
+                        },
+                        {
+                            "text": "decreased cheek sensation",
+                            "template": "decreased cheek sensation"
+                        },
+                        {
+                            "text": "jaw strength intact",
+                            "template": "jaw strength intact"
+                        },
+                        {
+                            "text": "decreased jaw strength",
+                            "template": "decreased jaw strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN V: BL",
+                    "template": "BL (CN V) {children}",
+                    "children": [
+                        {
+                            "text": "corneal reflex intact",
+                            "template": "corneal reflex intact"
+                        },
+                        {
+                            "text": "absent corneal reflex",
+                            "template": "absent corneal reflex"
+                        },
+                        {
+                            "text": "temporal muscle strength intact",
+                            "template": "temporal muscle strength intact"
+                        },
+                        {
+                            "text": "decreased temporal muscle strength",
+                            "template": "decreased temporal muscle strength"
+                        },
+                        {
+                            "text": "masseter muscle strength intact",
+                            "template": "masseter muscle strength intact"
+                        },
+                        {
+                            "text": "decreased masseter muscle strength",
+                            "template": "decreased masseter muscle strength"
+                        },
+                        {
+                            "text": "forehead sensation intact",
+                            "template": "forehead sensation intact"
+                        },
+                        {
+                            "text": "decreased forehead sensation",
+                            "template": "decreased forehead sensation"
+                        },
+                        {
+                            "text": "cheek sensation intact",
+                            "template": "cheek sensation intact"
+                        },
+                        {
+                            "text": "decreased cheek sensation",
+                            "template": "decreased cheek sensation"
+                        },
+                        {
+                            "text": "jaw strength intact",
+                            "template": "jaw strength intact"
+                        },
+                        {
+                            "text": "decreased jaw strength",
+                            "template": "decreased jaw strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN VII: R",
+                    "template": "R (CN VII) {children}",
+                    "children": [
+                        {
+                            "text": "facial symmetry intact",
+                            "template": "facial symmetry intact"
+                        },
+                        {
+                            "text": "facial asymmetry present",
+                            "template": "facial asymmetry present"
+                        },
+                        {
+                            "text": "facial droop present",
+                            "template": "facial droop present"
+                        },
+                        {
+                            "text": "eyebrow raise intact",
+                            "template": "eyebrow raise intact"
+                        },
+                        {
+                            "text": "eyebrow raise decreased",
+                            "template": "eyebrow raise decreased"
+                        },
+                        {
+                            "text": "eye close against resistance intact",
+                            "template": "eye close against resistance intact"
+                        },
+                        {
+                            "text": "eye close against resistance decreased",
+                            "template": "eye close against resistance decreased"
+                        },
+                        {
+                            "text": "cheek puff intact",
+                            "template": "cheek puff intact"
+                        },
+                        {
+                            "text": "cheek puff decreased",
+                            "template": "cheek puff decreased"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN VII: L",
+                    "template": "L (CN VII) {children}",
+                    "children": [
+                        {
+                            "text": "facial symmetry intact",
+                            "template": "facial symmetry intact"
+                        },
+                        {
+                            "text": "facial asymmetry present",
+                            "template": "facial asymmetry present"
+                        },
+                        {
+                            "text": "facial droop present",
+                            "template": "facial droop present"
+                        },
+                        {
+                            "text": "eyebrow raise intact",
+                            "template": "eyebrow raise intact"
+                        },
+                        {
+                            "text": "eyebrow raise decreased",
+                            "template": "eyebrow raise decreased"
+                        },
+                        {
+                            "text": "eye close against resistance intact",
+                            "template": "eye close against resistance intact"
+                        },
+                        {
+                            "text": "eye close against resistance decreased",
+                            "template": "eye close against resistance decreased"
+                        },
+                        {
+                            "text": "cheek puff intact",
+                            "template": "cheek puff intact"
+                        },
+                        {
+                            "text": "cheek puff decreased",
+                            "template": "cheek puff decreased"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN VII: BL",
+                    "template": "BL (CN VII) {children}",
+                    "children": [
+                        {
+                            "text": "facial symmetry intact",
+                            "template": "facial symmetry intact"
+                        },
+                        {
+                            "text": "facial asymmetry present",
+                            "template": "facial asymmetry present"
+                        },
+                        {
+                            "text": "facial droop present",
+                            "template": "facial droop present"
+                        },
+                        {
+                            "text": "eyebrow raise intact",
+                            "template": "eyebrow raise intact"
+                        },
+                        {
+                            "text": "eyebrow raise decreased",
+                            "template": "eyebrow raise decreased"
+                        },
+                        {
+                            "text": "eye close against resistance intact",
+                            "template": "eye close against resistance intact"
+                        },
+                        {
+                            "text": "eye close against resistance decreased",
+                            "template": "eye close against resistance decreased"
+                        },
+                        {
+                            "text": "cheek puff intact",
+                            "template": "cheek puff intact"
+                        },
+                        {
+                            "text": "cheek puff decreased",
+                            "template": "cheek puff decreased"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN VIII: R",
+                    "template": "R side (CN VIII) {children}",
+                    "children": [
+                        {
+                            "text": "hearing intact",
+                            "template": "hearing intact"
+                        },
+                        {
+                            "text": "hearing decreased",
+                            "template": "hearing decreased"
+                        },
+                        {
+                            "text": "deafness",
+                            "template": "deafness"
+                        },
+                        {
+                            "text": "Weber normal",
+                            "template": "Weber normal"
+                        },
+                        {
+                            "text": "Weber with right lateralization",
+                            "template": "Weber with right lateralization"
+                        },
+                        {
+                            "text": "Weber with left lateralization",
+                            "template": "Weber with left lateralization"
+                        },
+                        {
+                            "text": "Rinne normal",
+                            "template": "Rinne normal (air conduction greater than bone bilaterally)"
+                        },
+                        {
+                            "text": "Rinne positive, right",
+                            "template": "Rinne positive (air conduction worse than bone on right)"
+                        },
+                        {
+                            "text": "Rinne positive, left",
+                            "template": "Rinne positive (air conduction worse than bone on left)"
+                        },
+                        {
+                            "text": "Rinne negative, right",
+                            "template": "Rinne negative (air conduction better than bone on right)"
+                        },
+                        {
+                            "text": "Rinne negative, left",
+                            "template": "Rinne negative (air conduction better than bone on left)"
+                        },
+                        {
+                            "text": "caloric reflex test intact",
+                            "template": "caloric reflex test intact"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN VIII: L",
+                    "template": "L side (CN VIII) {children}",
+                    "children": [
+                        {
+                            "text": "hearing intact",
+                            "template": "hearing intact"
+                        },
+                        {
+                            "text": "hearing decreased",
+                            "template": "hearing decreased"
+                        },
+                        {
+                            "text": "deafness",
+                            "template": "deafness"
+                        },
+                        {
+                            "text": "Weber normal",
+                            "template": "Weber normal"
+                        },
+                        {
+                            "text": "Weber with right lateralization",
+                            "template": "Weber with right lateralization"
+                        },
+                        {
+                            "text": "Weber with left lateralization",
+                            "template": "Weber with left lateralization"
+                        },
+                        {
+                            "text": "Rinne normal",
+                            "template": "Rinne normal (air conduction greater than bone bilaterally)"
+                        },
+                        {
+                            "text": "Rinne positive, right",
+                            "template": "Rinne positive (air conduction worse than bone on right)"
+                        },
+                        {
+                            "text": "Rinne positive, left",
+                            "template": "Rinne positive (air conduction worse than bone on left)"
+                        },
+                        {
+                            "text": "Rinne negative, right",
+                            "template": "Rinne negative (air conduction better than bone on right)"
+                        },
+                        {
+                            "text": "Rinne negative, left",
+                            "template": "Rinne negative (air conduction better than bone on left)"
+                        },
+                        {
+                            "text": "caloric reflex test intact",
+                            "template": "caloric reflex test intact"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN VIII: BL",
+                    "template": "BL (CN VIII) {children}",
+                    "children": [
+                        {
+                            "text": "hearing intact",
+                            "template": "hearing intact"
+                        },
+                        {
+                            "text": "hearing decreased",
+                            "template": "hearing decreased"
+                        },
+                        {
+                            "text": "deafness",
+                            "template": "deafness"
+                        },
+                        {
+                            "text": "Weber normal",
+                            "template": "Weber normal"
+                        },
+                        {
+                            "text": "Weber with right lateralization",
+                            "template": "Weber with right lateralization"
+                        },
+                        {
+                            "text": "Weber with left lateralization",
+                            "template": "Weber with left lateralization"
+                        },
+                        {
+                            "text": "Rinne normal",
+                            "template": "Rinne normal (air conduction greater than bone bilaterally)"
+                        },
+                        {
+                            "text": "Rinne positive, right",
+                            "template": "Rinne positive (air conduction worse than bone on right)"
+                        },
+                        {
+                            "text": "Rinne positive, left",
+                            "template": "Rinne positive (air conduction worse than bone on left)"
+                        },
+                        {
+                            "text": "Rinne negative, right",
+                            "template": "Rinne negative (air conduction better than bone on right)"
+                        },
+                        {
+                            "text": "Rinne negative, left",
+                            "template": "Rinne negative (air conduction better than bone on left)"
+                        },
+                        {
+                            "text": "caloric reflex test intact",
+                            "template": "caloric reflex test intact"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN IX\/X",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "swallowing intact",
+                            "template": "ability to swallow intact (CN IX\/X intact)"
+                        },
+                        {
+                            "text": "swallowing impaired",
+                            "template": "swallowing impaired (CN IX\/X diminished)"
+                        },
+                        {
+                            "text": "gag reflex intact",
+                            "template": "gag reflex intact (CN IX\/X intact)"
+                        },
+                        {
+                            "text": "gag reflex diminished",
+                            "template": "gag reflex diminished (CN IX\/X diminished)"
+                        },
+                        {
+                            "text": "uvula midline",
+                            "template": "uvula midline (CN IX\/X intact)"
+                        },
+                        {
+                            "text": "uvula deviated to right",
+                            "template": "uvula deviated to right (CN IX\/X diminished)"
+                        },
+                        {
+                            "text": "uvula deviatied to left",
+                            "template": "uvula deviatied to left (CN IX\/X diminished)"
+                        },
+                        {
+                            "text": "hoarse voice quality present",
+                            "template": "hoarse voice quality present (CN IX\/X diminished)"
+                        },
+                        {
+                            "text": "nasal voice quality present",
+                            "template": "nasal voice quality present (CN IX\/X diminished)"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN XI: R",
+                    "template": "R side (CN XI) {children}",
+                    "children": [
+                        {
+                            "text": "shoulder shrug intact",
+                            "template": "shoulder shrug intact"
+                        },
+                        {
+                            "text": "shoulder shrug decreased",
+                            "template": "shoulder shrug decreased"
+                        },
+                        {
+                            "text": "ability to turn head against resistance intact",
+                            "template": "ability to turn head against resistance intact"
+                        },
+                        {
+                            "text": "ability to turn head against resistance diminished",
+                            "template": "ability to turn head against resistance diminished"
+                        },
+                        {
+                            "text": "trapezius muscle tone intact",
+                            "template": "trapezius muscle tone intact"
+                        },
+                        {
+                            "text": "trapezius muscle atrophy noted",
+                            "template": "trapezius muscle atrophy noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN XI: L",
+                    "template": "L side (CN XI) {children}",
+                    "children": [
+                        {
+                            "text": "shoulder shrug intact",
+                            "template": "shoulder shrug intact"
+                        },
+                        {
+                            "text": "shoulder shrug decreased",
+                            "template": "shoulder shrug decreased"
+                        },
+                        {
+                            "text": "ability to turn head against resistance intact",
+                            "template": "ability to turn head against resistance intact"
+                        },
+                        {
+                            "text": "ability to turn head against resistance diminished",
+                            "template": "ability to turn head against resistance diminished"
+                        },
+                        {
+                            "text": "trapezius muscle tone intact",
+                            "template": "trapezius muscle tone intact"
+                        },
+                        {
+                            "text": "trapezius muscle atrophy noted",
+                            "template": "trapezius muscle atrophy noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN XI: BL",
+                    "template": "BL (CN XI) {children}",
+                    "children": [
+                        {
+                            "text": "shoulder shrug intact",
+                            "template": "shoulder shrug intact"
+                        },
+                        {
+                            "text": "shoulder shrug decreased",
+                            "template": "shoulder shrug decreased"
+                        },
+                        {
+                            "text": "ability to turn head against resistance intact",
+                            "template": "ability to turn head against resistance intact"
+                        },
+                        {
+                            "text": "ability to turn head against resistance diminished",
+                            "template": "ability to turn head against resistance diminished"
+                        },
+                        {
+                            "text": "trapezius muscle tone intact",
+                            "template": "trapezius muscle tone intact"
+                        },
+                        {
+                            "text": "trapezius muscle atrophy noted",
+                            "template": "trapezius muscle atrophy noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN XII",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "speech articulation intact",
+                            "template": "speech articulation intact (CN XII intact)"
+                        },
+                        {
+                            "text": "speech articulation impaired",
+                            "template": "speech articulation impaired (CN XII diminished)"
+                        },
+                        {
+                            "text": "tongue midline without deviation",
+                            "template": "tongue midline without deviation (CN XII intact)"
+                        },
+                        {
+                            "text": "tongue deviated to right",
+                            "template": "tongue deviated to right (CN XII diminished)"
+                        },
+                        {
+                            "text": "tongue deviated to left",
+                            "template": "tongue deviated to left (CN XII diminished)"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other detail",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Neuro: Deep tendon reflexes",
+            "template": "NEURO: {children}",
+            "children": [
+                {
+                    "text": "DTRs intact and equal BL throughout",
+                    "template": "DTRs intact and equal BL throughout"
+                },
+                {
+                    "text": "Brachioradialis reflex, R",
+                    "template": "R brachioradialis reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Brachioradialis reflex, L",
+                    "template": "L brachioradialis reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Brachioradialis reflex, BL",
+                    "template": "L brachioradialis reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Biceps reflex, R",
+                    "template": "R biceps reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Biceps reflex, L",
+                    "template": "L biceps reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Biceps reflex, BL",
+                    "template": "BL biceps reflexes {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Triceps reflex, R",
+                    "template": "R triceps reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Triceps reflex, L",
+                    "template": "L triceps reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Triceps reflex, BL",
+                    "template": "BL triceps reflexes {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Patellar reflex, R",
+                    "template": "R patellar reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Patellar reflex, L",
+                    "template": "L patellar reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Patellar reflex, BL",
+                    "template": "BL patellar reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Achilles reflex, R",
+                    "template": "R achilles reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Achilles reflex, L",
+                    "template": "L achilles reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Achilles reflex, BL",
+                    "template": "BL achilles reflexes {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Ankle reflex, R",
+                    "template": "R ankle reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Ankle reflex, L",
+                    "template": "L ankle reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Ankle reflex, BL",
+                    "template": "BL ankle reflexes {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other detail",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Neuro: Dermatomes",
+            "template": "NEURO: {children}",
+            "children": [
+                {
+                    "text": "Cervical dermatomes, R",
+                    "template": "R cervical dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "C1 sensation diminished",
+                            "template": "C1 sensation diminished"
+                        },
+                        {
+                            "text": "C2 sensation diminished",
+                            "template": "C2 sensation diminished"
+                        },
+                        {
+                            "text": "C3 sensation diminished",
+                            "template": "C3 sensation diminished"
+                        },
+                        {
+                            "text": "C4 sensation diminished",
+                            "template": "C4 sensation diminished"
+                        },
+                        {
+                            "text": "C5 sensation diminished",
+                            "template": "C5 sensation diminished"
+                        },
+                        {
+                            "text": "C6 sensation diminished",
+                            "template": "C6 sensation diminished"
+                        },
+                        {
+                            "text": "C7 sensation diminished",
+                            "template": "C7 sensation diminished"
+                        },
+                        {
+                            "text": "C8 sensation diminished",
+                            "template": "C8 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Cervical dermatomes, L",
+                    "template": "L cervical dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "C1 sensation diminished",
+                            "template": "C1 sensation diminished"
+                        },
+                        {
+                            "text": "C2 sensation diminished",
+                            "template": "C2 sensation diminished"
+                        },
+                        {
+                            "text": "C3 sensation diminished",
+                            "template": "C3 sensation diminished"
+                        },
+                        {
+                            "text": "C4 sensation diminished",
+                            "template": "C4 sensation diminished"
+                        },
+                        {
+                            "text": "C5 sensation diminished",
+                            "template": "C5 sensation diminished"
+                        },
+                        {
+                            "text": "C6 sensation diminished",
+                            "template": "C6 sensation diminished"
+                        },
+                        {
+                            "text": "C7 sensation diminished",
+                            "template": "C7 sensation diminished"
+                        },
+                        {
+                            "text": "C8 sensation diminished",
+                            "template": "C8 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Cervical dermatomes, BL",
+                    "template": "BL cervical dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "C1 sensation diminished",
+                            "template": "C1 sensation diminished"
+                        },
+                        {
+                            "text": "C2 sensation diminished",
+                            "template": "C2 sensation diminished"
+                        },
+                        {
+                            "text": "C3 sensation diminished",
+                            "template": "C3 sensation diminished"
+                        },
+                        {
+                            "text": "C4 sensation diminished",
+                            "template": "C4 sensation diminished"
+                        },
+                        {
+                            "text": "C5 sensation diminished",
+                            "template": "C5 sensation diminished"
+                        },
+                        {
+                            "text": "C6 sensation diminished",
+                            "template": "C6 sensation diminished"
+                        },
+                        {
+                            "text": "C7 sensation diminished",
+                            "template": "C7 sensation diminished"
+                        },
+                        {
+                            "text": "C8 sensation diminished",
+                            "template": "C8 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Thoracic dermatomes, R",
+                    "template": "R thoracic dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "T1 sensation diminished",
+                            "template": "T1 sensation diminished"
+                        },
+                        {
+                            "text": "T2 sensation diminished",
+                            "template": "T2 sensation diminished"
+                        },
+                        {
+                            "text": "T3 sensation diminished",
+                            "template": "T3 sensation diminished"
+                        },
+                        {
+                            "text": "T4 sensation diminished",
+                            "template": "T4 sensation diminished"
+                        },
+                        {
+                            "text": "T5 sensation diminished",
+                            "template": "T5 sensation diminished"
+                        },
+                        {
+                            "text": "T6 sensation diminished",
+                            "template": "T6 sensation diminished"
+                        },
+                        {
+                            "text": "T7 sensation diminished",
+                            "template": "T7 sensation diminished"
+                        },
+                        {
+                            "text": "T8 sensation diminished",
+                            "template": "T8 sensation diminished"
+                        },
+                        {
+                            "text": "T9 sensation diminished",
+                            "template": "T9 sensation diminished"
+                        },
+                        {
+                            "text": "T10 sensation diminished",
+                            "template": "T10 sensation diminished"
+                        },
+                        {
+                            "text": "T11 sensation diminished",
+                            "template": "T11 sensation diminished"
+                        },
+                        {
+                            "text": "T12 sensation diminished",
+                            "template": "T12 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Thoracic dermatomes, L",
+                    "template": "L thoracic dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "T1 sensation diminished",
+                            "template": "T1 sensation diminished"
+                        },
+                        {
+                            "text": "T2 sensation diminished",
+                            "template": "T2 sensation diminished"
+                        },
+                        {
+                            "text": "T3 sensation diminished",
+                            "template": "T3 sensation diminished"
+                        },
+                        {
+                            "text": "T4 sensation diminished",
+                            "template": "T4 sensation diminished"
+                        },
+                        {
+                            "text": "T5 sensation diminished",
+                            "template": "T5 sensation diminished"
+                        },
+                        {
+                            "text": "T6 sensation diminished",
+                            "template": "T6 sensation diminished"
+                        },
+                        {
+                            "text": "T7 sensation diminished",
+                            "template": "T7 sensation diminished"
+                        },
+                        {
+                            "text": "T8 sensation diminished",
+                            "template": "T8 sensation diminished"
+                        },
+                        {
+                            "text": "T9 sensation diminished",
+                            "template": "T9 sensation diminished"
+                        },
+                        {
+                            "text": "T10 sensation diminished",
+                            "template": "T10 sensation diminished"
+                        },
+                        {
+                            "text": "T11 sensation diminished",
+                            "template": "T11 sensation diminished"
+                        },
+                        {
+                            "text": "T12 sensation diminished",
+                            "template": "T12 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Thoracic dermatomes, BL",
+                    "template": "BL thoracic dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "T1 sensation diminished",
+                            "template": "T1 sensation diminished"
+                        },
+                        {
+                            "text": "T2 sensation diminished",
+                            "template": "T2 sensation diminished"
+                        },
+                        {
+                            "text": "T3 sensation diminished",
+                            "template": "T3 sensation diminished"
+                        },
+                        {
+                            "text": "T4 sensation diminished",
+                            "template": "T4 sensation diminished"
+                        },
+                        {
+                            "text": "T5 sensation diminished",
+                            "template": "T5 sensation diminished"
+                        },
+                        {
+                            "text": "T6 sensation diminished",
+                            "template": "T6 sensation diminished"
+                        },
+                        {
+                            "text": "T7 sensation diminished",
+                            "template": "T7 sensation diminished"
+                        },
+                        {
+                            "text": "T8 sensation diminished",
+                            "template": "T8 sensation diminished"
+                        },
+                        {
+                            "text": "T9 sensation diminished",
+                            "template": "T9 sensation diminished"
+                        },
+                        {
+                            "text": "T10 sensation diminished",
+                            "template": "T10 sensation diminished"
+                        },
+                        {
+                            "text": "T11 sensation diminished",
+                            "template": "T11 sensation diminished"
+                        },
+                        {
+                            "text": "T12 sensation diminished",
+                            "template": "T12 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lumbar dermatomes, R",
+                    "template": "R lumbar dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "L1 sensation diminished",
+                            "template": "L1 sensation diminished"
+                        },
+                        {
+                            "text": "L2 sensation diminished",
+                            "template": "L2 sensation diminished"
+                        },
+                        {
+                            "text": "L3 sensation diminished",
+                            "template": "L3 sensation diminished"
+                        },
+                        {
+                            "text": "L4 sensation diminished",
+                            "template": "L4 sensation diminished"
+                        },
+                        {
+                            "text": "L5 sensation diminished",
+                            "template": "L5 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lumbar dermatomes, L",
+                    "template": "L lumbar dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "L1 sensation diminished",
+                            "template": "L1 sensation diminished"
+                        },
+                        {
+                            "text": "L2 sensation diminished",
+                            "template": "L2 sensation diminished"
+                        },
+                        {
+                            "text": "L3 sensation diminished",
+                            "template": "L3 sensation diminished"
+                        },
+                        {
+                            "text": "L4 sensation diminished",
+                            "template": "L4 sensation diminished"
+                        },
+                        {
+                            "text": "L5 sensation diminished",
+                            "template": "L5 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lumbar dermatomes, BL",
+                    "template": "BL lumbar dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "L1 sensation diminished",
+                            "template": "L1 sensation diminished"
+                        },
+                        {
+                            "text": "L2 sensation diminished",
+                            "template": "L2 sensation diminished"
+                        },
+                        {
+                            "text": "L3 sensation diminished",
+                            "template": "L3 sensation diminished"
+                        },
+                        {
+                            "text": "L4 sensation diminished",
+                            "template": "L4 sensation diminished"
+                        },
+                        {
+                            "text": "L5 sensation diminished",
+                            "template": "L5 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Sacral dermatomes, R",
+                    "template": "R sacral dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "S1 sensation diminished",
+                            "template": "S1 sensation diminished"
+                        },
+                        {
+                            "text": "S2 sensation diminished",
+                            "template": "S2 sensation diminished"
+                        },
+                        {
+                            "text": "S3 sensation diminished",
+                            "template": "S3 sensation diminished"
+                        },
+                        {
+                            "text": "S4 sensation diminished",
+                            "template": "S4 sensation diminished"
+                        },
+                        {
+                            "text": "S5 sensation diminished",
+                            "template": "S5 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Sacral dermatomes, L",
+                    "template": "L sacral dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "S1 sensation diminished",
+                            "template": "S1 sensation diminished"
+                        },
+                        {
+                            "text": "S2 sensation diminished",
+                            "template": "S2 sensation diminished"
+                        },
+                        {
+                            "text": "S3 sensation diminished",
+                            "template": "S3 sensation diminished"
+                        },
+                        {
+                            "text": "S4 sensation diminished",
+                            "template": "S4 sensation diminished"
+                        },
+                        {
+                            "text": "S5 sensation diminished",
+                            "template": "S5 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Sacral dermatomes, BL",
+                    "template": "BL sacral dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "S1 sensation diminished",
+                            "template": "S1 sensation diminished"
+                        },
+                        {
+                            "text": "S2 sensation diminished",
+                            "template": "S2 sensation diminished"
+                        },
+                        {
+                            "text": "S3 sensation diminished",
+                            "template": "S3 sensation diminished"
+                        },
+                        {
+                            "text": "S4 sensation diminished",
+                            "template": "S4 sensation diminished"
+                        },
+                        {
+                            "text": "S5 sensation diminished",
+                            "template": "S5 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other detail",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Neuro: Gait, Station",
+            "template": "NEURO: {children}",
+            "children": [
+                {
+                    "text": "normal gait and station",
+                    "template": "normal gait and station"
+                },
+                {
+                    "text": "normal gait",
+                    "template": "normal gait"
+                },
+                {
+                    "text": "normal station",
+                    "template": "normal station"
+                },
+                {
+                    "text": "Romberg test positive",
+                    "template": "Romberg test positive"
+                },
+                {
+                    "text": "Romberg test negative",
+                    "template": "Romberg test negative"
+                },
+                {
+                    "text": "Gait",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "broad based gait",
+                            "template": "broad based gait"
+                        },
+                        {
+                            "text": "shuffling gait",
+                            "template": "shuffling gait"
+                        },
+                        {
+                            "text": "shortened step length",
+                            "template": "shortened step length"
+                        },
+                        {
+                            "text": "limp, right",
+                            "template": "limp present (affecting right side)"
+                        },
+                        {
+                            "text": "limp, left",
+                            "template": "limp present (affecting left side)"
+                        },
+                        {
+                            "text": "wide based gait",
+                            "template": "wide based gait"
+                        },
+                        {
+                            "text": "gait accuracy intact",
+                            "template": "gait accuracy intact"
+                        },
+                        {
+                            "text": "staggering gait noted",
+                            "template": "staggering gait noted"
+                        },
+                        {
+                            "text": "tandem walking intact",
+                            "template": "tandem walking intact"
+                        },
+                        {
+                            "text": "tandem walking impaired",
+                            "template": "tandem walking impaired"
+                        },
+                        {
+                            "text": "toe walking noted",
+                            "template": "toe walking noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "Station",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "positive Romberg (eyes open)",
+                            "template": "positive Romberg (eyes open)"
+                        },
+                        {
+                            "text": "negative Romberg (eyes open)",
+                            "template": "negative Romberg (eyes open)"
+                        },
+                        {
+                            "text": "positive Romberg (eyes closed)",
+                            "template": "positive Romberg (eyes closed)"
+                        },
+                        {
+                            "text": "pronator drift, eyes open, right",
+                            "template": "pronator drift noted with eyes open (affecting right upper extremity)"
+                        },
+                        {
+                            "text": "pronator drift, eyes open, left",
+                            "template": "pronator drift noted with eyes open (affecting left upper extremity)"
+                        },
+                        {
+                            "text": "pronator drift, eyes closed, right",
+                            "template": "pronator drift noted with eyes closed (affecting right upper extremity)"
+                        },
+                        {
+                            "text": "pronator drift, eyes closed, left",
+                            "template": "pronator drift noted with eyes closed (affecting left upper extremity)"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other detail",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Neuro: Pathological reflexes",
+            "template": "NEURO: {children}",
+            "children": [
+                {
+                    "text": "no pathological reflexes elicited",
+                    "template": "no pathological reflexes elicited"
+                },
+                {
+                    "text": "Babinski reflex",
+                    "template": "Babinski reflex {children}",
+                    "children": [
+                        {
+                            "text": "elicted on the right",
+                            "template": "elicted on the right"
+                        },
+                        {
+                            "text": "not elicited on the right",
+                            "template": "not elicited on the right"
+                        },
+                        {
+                            "text": "elicited on the left",
+                            "template": "elicited on the left"
+                        },
+                        {
+                            "text": "not elicited on the left",
+                            "template": "not elicited on the left"
+                        },
+                        {
+                            "text": "elicited bilaterally",
+                            "template": "elicited bilaterally"
+                        },
+                        {
+                            "text": "absent bilaterally",
+                            "template": "absent bilaterally"
+                        }
+                    ]
+                },
+                {
+                    "text": "Glabellar reflex",
+                    "template": "glabellar reflex {children}",
+                    "children": [
+                        {
+                            "text": "elicted on the right",
+                            "template": "elicted on the right"
+                        },
+                        {
+                            "text": "not elicited on the right",
+                            "template": "not elicited on the right"
+                        },
+                        {
+                            "text": "elicited on the left",
+                            "template": "elicited on the left"
+                        },
+                        {
+                            "text": "not elicited on the left",
+                            "template": "not elicited on the left"
+                        },
+                        {
+                            "text": "elicited bilaterally",
+                            "template": "elicited bilaterally"
+                        },
+                        {
+                            "text": "absent bilaterally",
+                            "template": "absent bilaterally"
+                        }
+                    ]
+                },
+                {
+                    "text": "Palmomental reflex",
+                    "template": "palmomental reflex {children}",
+                    "children": [
+                        {
+                            "text": "elicted on the right",
+                            "template": "elicted on the right"
+                        },
+                        {
+                            "text": "not elicited on the right",
+                            "template": "not elicited on the right"
+                        },
+                        {
+                            "text": "elicited on the left",
+                            "template": "elicited on the left"
+                        },
+                        {
+                            "text": "not elicited on the left",
+                            "template": "not elicited on the left"
+                        },
+                        {
+                            "text": "elicited bilaterally",
+                            "template": "elicited bilaterally"
+                        },
+                        {
+                            "text": "absent bilaterally",
+                            "template": "absent bilaterally"
+                        }
+                    ]
+                },
+                {
+                    "text": "Snout reflex",
+                    "template": "snout reflex {children}",
+                    "children": [
+                        {
+                            "text": "elicted on the right",
+                            "template": "elicted on the right"
+                        },
+                        {
+                            "text": "not elicited on the right",
+                            "template": "not elicited on the right"
+                        },
+                        {
+                            "text": "elicited on the left",
+                            "template": "elicited on the left"
+                        },
+                        {
+                            "text": "not elicited on the left",
+                            "template": "not elicited on the left"
+                        },
+                        {
+                            "text": "elicited bilaterally",
+                            "template": "elicited bilaterally"
+                        },
+                        {
+                            "text": "absent bilaterally",
+                            "template": "absent bilaterally"
+                        }
+                    ]
+                },
+                {
+                    "text": "Root reflex",
+                    "template": "root reflex {children}",
+                    "children": [
+                        {
+                            "text": "elicted on the right",
+                            "template": "elicted on the right"
+                        },
+                        {
+                            "text": "not elicited on the right",
+                            "template": "not elicited on the right"
+                        },
+                        {
+                            "text": "elicited on the left",
+                            "template": "elicited on the left"
+                        },
+                        {
+                            "text": "not elicited on the left",
+                            "template": "not elicited on the left"
+                        },
+                        {
+                            "text": "elicited bilaterally",
+                            "template": "elicited bilaterally"
+                        },
+                        {
+                            "text": "absent bilaterally",
+                            "template": "absent bilaterally"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other detail",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Neuro: Sensory",
+            "template": "NEURO: {children}",
+            "children": [
+                {
+                    "text": "sensation grossly intact throughout",
+                    "template": "sensation grossly intact throughout"
+                },
+                {
+                    "text": "Sensation to light touch",
+                    "template": "sensation to light touch {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity, right intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, intact BL",
+                            "template": "intact in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "upper extremity, right diminished",
+                            "template": "diminished in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left diminished",
+                            "template": "diminished in left upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, diminished BL",
+                            "template": "diminished in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "lower extremity, right intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, intact BL",
+                            "template": "intact in the bilateral lower extremities"
+                        },
+                        {
+                            "text": "lower extremity, right diminished",
+                            "template": "diminished in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left diminished",
+                            "template": "diminished in left lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, diminished BL",
+                            "template": "diminished in the bilateral lower extremities"
+                        }
+                    ]
+                },
+                {
+                    "text": "Sensation to dull touch",
+                    "template": "sensation to dull touch {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity, right intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, intact BL",
+                            "template": "intact in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "upper extremity, right diminished",
+                            "template": "diminished in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left diminished",
+                            "template": "diminished in left upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, diminished BL",
+                            "template": "diminished in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "lower extremity, right intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, intact BL",
+                            "template": "intact in the bilateral lower extremities"
+                        },
+                        {
+                            "text": "lower extremity, right diminished",
+                            "template": "diminished in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left diminished",
+                            "template": "diminished in left lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, diminished BL",
+                            "template": "diminished in the bilateral lower extremities"
+                        }
+                    ]
+                },
+                {
+                    "text": "Sensation to cold temperature",
+                    "template": "sensation to cold temperature {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity, right intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, intact BL",
+                            "template": "intact in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "upper extremity, right diminished",
+                            "template": "diminished in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left diminished",
+                            "template": "diminished in left upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, diminished BL",
+                            "template": "diminished in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "lower extremity, right intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, intact BL",
+                            "template": "intact in the bilateral lower extremities"
+                        },
+                        {
+                            "text": "lower extremity, right diminished",
+                            "template": "diminished in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left diminished",
+                            "template": "diminished in left lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, diminished BL",
+                            "template": "diminished in the bilateral lower extremities"
+                        }
+                    ]
+                },
+                {
+                    "text": "Sensation to warm temperature",
+                    "template": "sensation to warm temperature {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity, right intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, intact BL",
+                            "template": "intact in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "upper extremity, right diminished",
+                            "template": "diminished in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left diminished",
+                            "template": "diminished in left upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, diminished BL",
+                            "template": "diminished in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "lower extremity, right intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, intact BL",
+                            "template": "intact in the bilateral lower extremities"
+                        },
+                        {
+                            "text": "lower extremity, right diminished",
+                            "template": "diminished in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left diminished",
+                            "template": "diminished in left lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, diminished BL",
+                            "template": "diminished in the bilateral lower extremities"
+                        }
+                    ]
+                },
+                {
+                    "text": "Vibratory sensation",
+                    "template": "vibratory sensation {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity, right intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, intact BL",
+                            "template": "intact in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "upper extremity, right diminished",
+                            "template": "diminished in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left diminished",
+                            "template": "diminished in left upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, diminished BL",
+                            "template": "diminished in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "lower extremity, right intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, intact BL",
+                            "template": "intact in the bilateral lower extremities"
+                        },
+                        {
+                            "text": "lower extremity, right diminished",
+                            "template": "diminished in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left diminished",
+                            "template": "diminished in left lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, diminished BL",
+                            "template": "diminished in the bilateral lower extremities"
+                        }
+                    ]
+                },
+                {
+                    "text": "Stereognosis",
+                    "template": "stereognosis {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity, right intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, intact BL",
+                            "template": "intact in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "upper extremity, right diminished",
+                            "template": "diminished in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left diminished",
+                            "template": "diminished in left upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, diminished BL",
+                            "template": "diminished in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "lower extremity, right intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, intact BL",
+                            "template": "intact in the bilateral lower extremities"
+                        },
+                        {
+                            "text": "lower extremity, right diminished",
+                            "template": "diminished in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left diminished",
+                            "template": "diminished in left lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, diminished BL",
+                            "template": "diminished in the bilateral lower extremities"
+                        }
+                    ]
+                },
+                {
+                    "text": "Paresthesias",
+                    "template": "parethesias present {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity, right",
+                            "template": "in the R upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left",
+                            "template": "in the L upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, bilateral",
+                            "template": "bilaterally in the upper extremities"
+                        },
+                        {
+                            "text": "lower extremity, right",
+                            "template": "in the R lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left",
+                            "template": "in the L lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, bilateral",
+                            "template": "bilaterally in the lower extremities"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other detail",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Psychiatric",
+            "template": "PSYCH: {children}",
+            "children": [
+                {
+                    "text": "AO x 3",
+                    "template": "alert and oriented to time, place, and person"
+                },
+                {
+                    "text": "normal mood",
+                    "template": "normal mood"
+                },
+                {
+                    "text": "normal affect",
+                    "template": "normal affect"
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        }
+    ]
+}

+ 10916 - 0
storage/templates/exam-default/exam-neuro-detail/neuro-exam.json

@@ -0,0 +1,10916 @@
+{
+    "section": "exam-neuro-detail",
+    "templateSet": "NEURO Exam",
+    "templates": [
+        {
+            "text": "1-Click normal exams",
+            "template": "{children}",
+            "children": [
+                {
+                    "text": "GEN: NAD",
+                    "template": "GEN: NAD"
+                },
+                {
+                    "text": "HEENT: EOMI, PERRLA",
+                    "template": "HEENT: EOMI, PERRLA"
+                },
+                {
+                    "text": "CAROTIDS: NL amp, no bruits",
+                    "template": "NECK: NL carotid amplitude, no bruits"
+                },
+                {
+                    "text": "CV: RRR, no m\/r\/g",
+                    "template": "CV: RRR, no m\/r\/g"
+                },
+                {
+                    "text": "EXT: no peripheral edema, no varicosities",
+                    "template": "EXT: no peripheral edema, no varicosities"
+                },
+                {
+                    "text": "MUSC\/SKEL: NL strength and tone",
+                    "template": "MUSC\/SKEL: NL strength and tone"
+                },
+                {
+                    "text": "NEURO: AO x 3",
+                    "template": "NEURO: AO x 3"
+                },
+                {
+                    "text": "MEMORY: recent, remote intact",
+                    "template": "NEURO: recent and remote memory intact"
+                },
+                {
+                    "text": "NEURO: CN II-XII intact",
+                    "template": "NEURO: CN II-XII intact"
+                },
+                {
+                    "text": "NEURO: NL gait and station",
+                    "template": "NEURO: NL gait and station"
+                },
+                {
+                    "text": "NEURO: sensation NL throughout",
+                    "template": "NEURO: sensation NL throughout"
+                },
+                {
+                    "text": "NEURO: DTRs intact, no pathological reflexes",
+                    "template": "NEURO: DTRs intact, no pathological reflexes elicited"
+                }
+            ]
+        },
+        {
+            "text": "General",
+            "template": "GEN: {children}",
+            "children": [
+                {
+                    "text": "NAD",
+                    "template": "NAD",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "cooperative with exam",
+                    "template": "cooperative with exam",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "well groomed",
+                    "template": "well groomed",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "well developed",
+                    "template": "well developed",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "well nourished",
+                    "template": "well nourished",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "overweight",
+                    "template": "overweight",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "obese",
+                    "template": "obese",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "morbidly obese",
+                    "template": "morbidly obese",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "emaciated",
+                    "template": "emaciated",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "appears to be stated age",
+                    "template": "appears to be stated age",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "appears older than stated age",
+                    "template": "appears older than stated age",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "appears younger than stated age",
+                    "template": "appears younger than stated age",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "HEENT: Head",
+            "template": "HEENT: {children}",
+            "children": [
+                {
+                    "text": "head normocephalic, atraumatic",
+                    "template": "head normocephalic, atraumatic"
+                },
+                {
+                    "text": "head normocephalic",
+                    "template": "head normocephalic",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "head atraumatic",
+                    "template": "head atraumatic",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "bruising",
+                    "template": "bruising",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "scarring",
+                    "template": "scarring",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "face symmetric",
+                    "template": "face symmetric",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "facial droop, R",
+                    "template": "facial droop, R",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "facial droop, L",
+                    "template": "facial droop, L",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Jaw",
+                    "template": "Jaw exam {children}",
+                    "children": [
+                        {
+                            "text": "right",
+                            "template": "(right)"
+                        },
+                        {
+                            "text": "left",
+                            "template": "(left)"
+                        },
+                        {
+                            "text": "bilateral",
+                            "template": "(bilateral)"
+                        },
+                        {
+                            "text": "TMJ clicking noted",
+                            "template": "TMJ clicking noted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "deviation noted",
+                            "template": "deviation noted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tenderness to palpation",
+                            "template": "tenderness to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "claudication",
+                            "template": "claudication",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "HEENT: Eyes",
+            "template": "HEENT: {children}",
+            "children": [
+                {
+                    "text": "EOMI",
+                    "template": "EOMI"
+                },
+                {
+                    "text": "PERRLA",
+                    "template": "PERRLA"
+                },
+                {
+                    "text": "periorbital xanthelasma",
+                    "template": "periorbital xanthelasma",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "vision grossly intact",
+                    "template": "vision grossly intact",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Eye exam, inspection",
+                    "template": "Inspection findings {children}",
+                    "children": [
+                        {
+                            "text": "EOMI",
+                            "template": "extraocular movements intact"
+                        },
+                        {
+                            "text": "sclerae anicteric",
+                            "template": "sclerae anicteric",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "conjunctival injection",
+                            "template": "conjunctival injection",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "conjunctival pallor",
+                            "template": "conjunctival pallor",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "purulent discharge",
+                            "template": "purulent discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "drainage present",
+                            "template": "drainage present",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bleeding present",
+                            "template": "bleeding present",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tearing present",
+                            "template": "tearing present",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cataract",
+                            "template": "cataract",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cataracts",
+                            "template": "cataracts",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Vision exam, R",
+                    "template": "Vision exam, R: {children}",
+                    "children": [
+                        {
+                            "text": "blind",
+                            "template": "blind"
+                        },
+                        {
+                            "text": "grossly intact",
+                            "template": "vision grossly intact"
+                        },
+                        {
+                            "text": "visual fields intact",
+                            "template": "visual fields intact"
+                        },
+                        {
+                            "text": "visual acuity impaired",
+                            "template": "visual acuity impaired"
+                        },
+                        {
+                            "text": "blurry vision",
+                            "template": "blurry vision",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "near sighted",
+                            "template": "near sighted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "far sighted",
+                            "template": "far sighted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "macular sparing",
+                            "template": "macular sparing"
+                        },
+                        {
+                            "text": "central vision loss",
+                            "template": "central vision loss"
+                        },
+                        {
+                            "text": "right upper quadrantanopsia",
+                            "template": "right upper quadrantanopsia"
+                        },
+                        {
+                            "text": "right lower quadrantanopsia",
+                            "template": "right lower quadrantanopsia"
+                        },
+                        {
+                            "text": "left upper quadrantanopsia",
+                            "template": "left upper quadrantanopsia"
+                        },
+                        {
+                            "text": "left lower quadrantanopsia",
+                            "template": "left lower quadrantanopsia"
+                        },
+                        {
+                            "text": "right hemianopsia",
+                            "template": "right hemianopsia"
+                        },
+                        {
+                            "text": "left hemianopsia",
+                            "template": "left hemianopsia"
+                        },
+                        {
+                            "text": "homonymous hemianopsia",
+                            "template": "homonymous hemianopsia"
+                        }
+                    ]
+                },
+                {
+                    "text": "Vision exam, L",
+                    "template": "Vision exam, L: {children}",
+                    "children": [
+                        {
+                            "text": "blind",
+                            "template": "blind"
+                        },
+                        {
+                            "text": "grossly intact",
+                            "template": "vision grossly intact"
+                        },
+                        {
+                            "text": "visual fields intact",
+                            "template": "visual fields intact"
+                        },
+                        {
+                            "text": "visual acuity impaired",
+                            "template": "visual acuity impaired"
+                        },
+                        {
+                            "text": "blurry vision",
+                            "template": "blurry vision",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "near sighted",
+                            "template": "near sighted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "far sighted",
+                            "template": "far sighted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "macular sparing",
+                            "template": "macular sparing"
+                        },
+                        {
+                            "text": "central vision loss",
+                            "template": "central vision loss"
+                        },
+                        {
+                            "text": "right upper quadrantanopsia",
+                            "template": "right upper quadrantanopsia"
+                        },
+                        {
+                            "text": "right lower quadrantanopsia",
+                            "template": "right lower quadrantanopsia"
+                        },
+                        {
+                            "text": "left upper quadrantanopsia",
+                            "template": "left upper quadrantanopsia"
+                        },
+                        {
+                            "text": "left lower quadrantanopsia",
+                            "template": "left lower quadrantanopsia"
+                        },
+                        {
+                            "text": "right hemianopsia",
+                            "template": "right hemianopsia"
+                        },
+                        {
+                            "text": "left hemianopsia",
+                            "template": "left hemianopsia"
+                        },
+                        {
+                            "text": "homonymous hemianopsia",
+                            "template": "homonymous hemianopsia"
+                        }
+                    ]
+                },
+                {
+                    "text": "Vision exam, BL",
+                    "template": "Vision exam, BL: {children}",
+                    "children": [
+                        {
+                            "text": "blind",
+                            "template": "blind"
+                        },
+                        {
+                            "text": "grossly intact",
+                            "template": "vision grossly intact"
+                        },
+                        {
+                            "text": "visual fields intact",
+                            "template": "visual fields intact"
+                        },
+                        {
+                            "text": "visual acuity impaired",
+                            "template": "visual acuity impaired"
+                        },
+                        {
+                            "text": "blurry vision",
+                            "template": "blurry vision",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "near sighted",
+                            "template": "near sighted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "far sighted",
+                            "template": "far sighted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "macular sparing",
+                            "template": "macular sparing"
+                        },
+                        {
+                            "text": "central vision loss",
+                            "template": "central vision loss"
+                        },
+                        {
+                            "text": "right upper quadrantopsia",
+                            "template": "right upper quadrantopsia"
+                        },
+                        {
+                            "text": "right lower quadrantopsia",
+                            "template": "right lower quadrantopsia"
+                        },
+                        {
+                            "text": "left upper quadrantopsia",
+                            "template": "left upper quadrantopsia"
+                        },
+                        {
+                            "text": "left lower quadrantopsia",
+                            "template": "left lower quadrantopsia"
+                        },
+                        {
+                            "text": "right hemianopsia",
+                            "template": "right hemianopsia"
+                        },
+                        {
+                            "text": "left hemianopsia",
+                            "template": "left hemianopsia"
+                        },
+                        {
+                            "text": "homonymous hemianopsia",
+                            "template": "homonymous hemianopsia"
+                        }
+                    ]
+                },
+                {
+                    "text": "Pupil exam, R",
+                    "template": "Pupil exam, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "anisocoria",
+                            "template": "anisocoria",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "miosis",
+                            "template": "miosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "eccentric",
+                            "template": "eccentric",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "irregularly shaped",
+                            "template": "irregularly shaped",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "midline",
+                            "template": "midline",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "reactive to light",
+                            "template": "reactive to light",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "accommodation intact",
+                            "template": "accommodation intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Pupil exam, L",
+                    "template": "Pupil exam, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "anisocoria",
+                            "template": "anisocoria",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "miosis",
+                            "template": "miosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "eccentric",
+                            "template": "eccentric",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "irregularly shaped",
+                            "template": "irregularly shaped",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "midline",
+                            "template": "midline",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "reactive to light",
+                            "template": "reactive to light",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "accommodation intact",
+                            "template": "accommodation intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Pupil exam, BL",
+                    "template": "Pupil exam, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal size",
+                            "template": "normal size"
+                        },
+                        {
+                            "text": "anisocoria",
+                            "template": "anisocoria",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "miosis",
+                            "template": "miosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "eccentric",
+                            "template": "eccentric",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "irregularly shaped",
+                            "template": "irregularly shaped",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "midline",
+                            "template": "midline",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "reactive to light",
+                            "template": "reactive to light",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "accommodation intact",
+                            "template": "accommodation intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Fundoscopy, R",
+                    "template": "Fundoscopic exam, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal",
+                            "template": "normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discs flat",
+                            "template": "discs flat",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discs sharp",
+                            "template": "discs sharp",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "AV nicking",
+                            "template": "AV nicking",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "exudates",
+                            "template": "exudates",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hemorrhages",
+                            "template": "hemorrhages",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Fundoscopy, L",
+                    "template": "Fundoscopic exam, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal",
+                            "template": "normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discs flat",
+                            "template": "discs flat",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discs sharp",
+                            "template": "discs sharp",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "AV nicking",
+                            "template": "AV nicking",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "exudates",
+                            "template": "exudates",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hemorrhages",
+                            "template": "hemorrhages",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Fundoscopy, BL",
+                    "template": "Fundoscopic exam, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal",
+                            "template": "normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discs flat",
+                            "template": "discs flat",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discs sharp",
+                            "template": "discs sharp",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "AV nicking",
+                            "template": "AV nicking",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "exudates",
+                            "template": "exudates",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hemorrhages",
+                            "template": "hemorrhages",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "HEENT: Ears",
+            "template": "HEENT: {children}",
+            "children": [
+                {
+                    "text": "hearing grossly intact",
+                    "template": "hearing grossly intact",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Hearing, R",
+                    "template": "Hearing exam, R: {children}",
+                    "children": [
+                        {
+                            "text": "grossly intact",
+                            "template": "grossly intact"
+                        },
+                        {
+                            "text": "intact to whispered voice",
+                            "template": "intact to whispered voice"
+                        },
+                        {
+                            "text": "intact to finger rub",
+                            "template": "intact to finger rub"
+                        },
+                        {
+                            "text": "Weber normal",
+                            "template": "Weber normal"
+                        },
+                        {
+                            "text": "Weber lateralizes to right",
+                            "template": "Weber lateralizes to right"
+                        },
+                        {
+                            "text": "Rinne positive",
+                            "template": "Rinne positive, with bone and air conduction both decreased on right"
+                        },
+                        {
+                            "text": "Rinne negative",
+                            "template": "Rinne negative, with bone conduction greater than air on right"
+                        }
+                    ]
+                },
+                {
+                    "text": "Hearing, L",
+                    "template": "Hearing exam, L: {children}",
+                    "children": [
+                        {
+                            "text": "grossly intact",
+                            "template": "grossly intact"
+                        },
+                        {
+                            "text": "intact to whispered voice",
+                            "template": "intact to whispered voice"
+                        },
+                        {
+                            "text": "intact to finger rub",
+                            "template": "intact to finger rub"
+                        },
+                        {
+                            "text": "Weber normal",
+                            "template": "Weber normal"
+                        },
+                        {
+                            "text": "Weber lateralizes to right",
+                            "template": "Weber lateralizes to right"
+                        },
+                        {
+                            "text": "Rinne positive",
+                            "template": "Rinne positive, with bone and air conduction both decreased on right"
+                        },
+                        {
+                            "text": "Rinne negative",
+                            "template": "Rinne negative, with bone conduction greater than air on right"
+                        }
+                    ]
+                },
+                {
+                    "text": "Hearing, BL",
+                    "template": "Hearing exam, BL: {children}",
+                    "children": [
+                        {
+                            "text": "grossly intact",
+                            "template": "grossly intact"
+                        },
+                        {
+                            "text": "intact to whispered voice",
+                            "template": "intact to whispered voice"
+                        },
+                        {
+                            "text": "intact to finger rub",
+                            "template": "intact to finger rub"
+                        },
+                        {
+                            "text": "Weber normal",
+                            "template": "Weber normal"
+                        },
+                        {
+                            "text": "Weber lateralizes to right",
+                            "template": "Weber lateralizes to right"
+                        },
+                        {
+                            "text": "Rinne positive",
+                            "template": "Rinne positive, with bone and air conduction both decreased on right"
+                        },
+                        {
+                            "text": "Rinne negative",
+                            "template": "Rinne negative, with bone conduction greater than air on right"
+                        }
+                    ]
+                },
+                {
+                    "text": "Tympanic membranes, R",
+                    "template": "Tympanic membrane exam, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal",
+                            "template": "normal"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "exudate",
+                            "template": "exudate",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "NL mobility on insufflation",
+                            "template": "normal mobility on insufflation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hypomobile on insufflation",
+                            "template": "hypomobile on insufflation"
+                        },
+                        {
+                            "text": "effusion present",
+                            "template": "effusion present"
+                        },
+                        {
+                            "text": "light reflex dull",
+                            "template": "light reflex dull",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "membrane rupture",
+                            "template": "membrane rupture",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "light reflex absent",
+                            "template": "light reflex absent",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discharge",
+                            "template": "discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "drainage",
+                            "template": "drainage",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pus",
+                            "template": "pus",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Tympanic membranes, L",
+                    "template": "Tympanic membrane exam, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal",
+                            "template": "normal"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "exudate",
+                            "template": "exudate",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "NL mobility on insufflation",
+                            "template": "normal mobility on insufflation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hypomobile on insufflation",
+                            "template": "hypomobile on insufflation"
+                        },
+                        {
+                            "text": "effusion present",
+                            "template": "effusion present"
+                        },
+                        {
+                            "text": "light reflex dull",
+                            "template": "light reflex dull",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "membrane rupture",
+                            "template": "membrane rupture",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "light reflex absent",
+                            "template": "light reflex absent",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discharge",
+                            "template": "discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "drainage",
+                            "template": "drainage",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pus",
+                            "template": "pus",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Tympanic membranes, BL",
+                    "template": "Tympanic membrane exam, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal",
+                            "template": "normal"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "exudate",
+                            "template": "exudate",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "NL mobility on insufflation",
+                            "template": "normal mobility on insufflation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hypomobile on insufflation",
+                            "template": "hypomobile on insufflation"
+                        },
+                        {
+                            "text": "effusion present",
+                            "template": "effusion present"
+                        },
+                        {
+                            "text": "light reflex dull",
+                            "template": "light reflex dull",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "membrane rupture",
+                            "template": "membrane rupture",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "light reflex absent",
+                            "template": "light reflex absent",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discharge",
+                            "template": "discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "drainage",
+                            "template": "drainage",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pus",
+                            "template": "pus",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "External ear canals, R",
+                    "template": "External ear canal exam, R: {children}",
+                    "children": [
+                        {
+                            "text": "cerumen present",
+                            "template": "cerumen present",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cerumen impaction",
+                            "template": "cerumen impaction",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cerumen obscuring TM",
+                            "template": "cerumen obscures visualization of tympanic membrane"
+                        },
+                        {
+                            "text": "erythema of external canal",
+                            "template": "erythema of external canal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "external canal red",
+                            "template": "external canal red",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "external canal swollen",
+                            "template": "external canal swollen",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "external canal, pain on otoscopy",
+                            "template": "external canal painful on otoscopy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "drainage",
+                            "template": "drainage",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pus",
+                            "template": "pus",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "External ear canals, L",
+                    "template": "External ear canal exam, L: {children}",
+                    "children": [
+                        {
+                            "text": "cerumen present",
+                            "template": "cerumen present",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cerumen impaction",
+                            "template": "cerumen impaction",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cerumen obscuring TM",
+                            "template": "cerumen obscures visualization of tympanic membrane"
+                        },
+                        {
+                            "text": "erythema of external canal",
+                            "template": "erythema of external canal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "external canal red",
+                            "template": "external canal red",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "external canal swollen",
+                            "template": "external canal swollen",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "external canal, pain on otoscopy",
+                            "template": "external canal painful on otoscopy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "drainage",
+                            "template": "drainage",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pus",
+                            "template": "pus",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "External ear canals, BL",
+                    "template": "External ear canal exam, BL: {children}",
+                    "children": [
+                        {
+                            "text": "cerumen present",
+                            "template": "cerumen present",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cerumen impaction",
+                            "template": "cerumen impaction",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cerumen obscuring TM",
+                            "template": "cerumen obscures visualization of tympanic membrane"
+                        },
+                        {
+                            "text": "erythema of external canal",
+                            "template": "erythema of external canal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "external canal red",
+                            "template": "external canal red",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "external canal swollen",
+                            "template": "external canal swollen",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "external canal, pain on otoscopy",
+                            "template": "external canal painful on otoscopy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "drainage",
+                            "template": "drainage",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pus",
+                            "template": "pus",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "External ear, R",
+                    "template": "External ear exam, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal appearance",
+                            "template": "normal appearance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lesion",
+                            "template": "lesion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scarring",
+                            "template": "scarring",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "actinic keratosis",
+                            "template": "actinic keratosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mass",
+                            "template": "mass",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "External ear, L",
+                    "template": "External ear exam, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal appearance",
+                            "template": "normal appearance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lesion",
+                            "template": "lesion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scarring",
+                            "template": "scarring",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "actinic keratosis",
+                            "template": "actinic keratosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mass",
+                            "template": "mass",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "External ear, BL",
+                    "template": "External ear exam, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal appearance",
+                            "template": "normal appearance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lesion",
+                            "template": "lesion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scarring",
+                            "template": "scarring",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "actinic keratosis",
+                            "template": "actinic keratosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mass",
+                            "template": "mass",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "HEENT: Nose\/Nares",
+            "template": "HEENT: {children}",
+            "children": [
+                {
+                    "text": "sensation of smell intact",
+                    "template": "sensation of smell intact"
+                },
+                {
+                    "text": "Nares, R",
+                    "template": "Nares, R: {children}",
+                    "children": [
+                        {
+                            "text": "NL nasal mucosa",
+                            "template": "NL nasal mucosa"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "NL nasal septa",
+                            "template": "NL nasal septa"
+                        },
+                        {
+                            "text": "septal perforation",
+                            "template": "septal perforation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "NL nasal turbinates",
+                            "template": "NL nasal turbinates"
+                        },
+                        {
+                            "text": "hypertrophy of nasal turbinates",
+                            "template": "hypertrophy of nasal turbinates",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clear drainage",
+                            "template": "clear drainage",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "purulent discharge",
+                            "template": "purulent discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "crusting",
+                            "template": "crusting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "epistaxis",
+                            "template": "epistaxis",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Nares, L",
+                    "template": "Nares, L: {children}",
+                    "children": [
+                        {
+                            "text": "NL nasal mucosa",
+                            "template": "NL nasal mucosa"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "NL nasal septa",
+                            "template": "NL nasal septa"
+                        },
+                        {
+                            "text": "septal perforation",
+                            "template": "septal perforation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "NL nasal turbinates",
+                            "template": "NL nasal turbinates"
+                        },
+                        {
+                            "text": "hypertrophy of nasal turbinates",
+                            "template": "hypertrophy of nasal turbinates",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clear drainage",
+                            "template": "clear drainage",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "purulent discharge",
+                            "template": "purulent discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "crusting",
+                            "template": "crusting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "epistaxis",
+                            "template": "epistaxis",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Nares, BL",
+                    "template": "Nares, BL: {children}",
+                    "children": [
+                        {
+                            "text": "NL nasal mucosa",
+                            "template": "NL nasal mucosa"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "NL nasal septa",
+                            "template": "NL nasal septa"
+                        },
+                        {
+                            "text": "septal perforation",
+                            "template": "septal perforation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "NL nasal turbinates",
+                            "template": "NL nasal turbinates"
+                        },
+                        {
+                            "text": "hypertrophy of nasal turbinates",
+                            "template": "hypertrophy of nasal turbinates",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clear drainage",
+                            "template": "clear drainage",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "purulent discharge",
+                            "template": "purulent discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "crusting",
+                            "template": "crusting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "epistaxis",
+                            "template": "epistaxis",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "HEENT: Mouth\/Throat",
+            "template": "HEENT: {children}",
+            "children": [
+                {
+                    "text": "mucous membranes moist",
+                    "template": "mucous membranes moist",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "voice NL",
+                    "template": "voice NL"
+                },
+                {
+                    "text": "Mouth\/Lips",
+                    "template": "Mouth\/Lips exam {children}",
+                    "children": [
+                        {
+                            "text": "aphthous ulcer",
+                            "template": "aphthous ulcer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mucous membranes moist",
+                            "template": "mucous membranes moist",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mucous membranes dry",
+                            "template": "mucous membranes dry",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "normal lips",
+                            "template": "normal lips",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lip ulcer",
+                            "template": "lip ulcer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lips dry",
+                            "template": "lips dry",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lips cracked",
+                            "template": "lips cracked",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "smile symmetric",
+                            "template": "smile symmetric"
+                        },
+                        {
+                            "text": "facial droop, right",
+                            "template": "right facial droop",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "facial droop, left",
+                            "template": "left facial droop",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Teeth\/Gums",
+                    "template": "Teeth\/Gum exam {children}",
+                    "children": [
+                        {
+                            "text": "normal dentition",
+                            "template": "normal dentition"
+                        },
+                        {
+                            "text": "edentulous",
+                            "template": "edentulous",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tooth loss noted",
+                            "template": "tooth loss noted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "dentures",
+                            "template": "dentures",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "gingival hypertrophy",
+                            "template": "gingival hypertrophy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "gingival erythema",
+                            "template": "gingival erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "gingival lesions",
+                            "template": "gingival lesions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bleeding",
+                            "template": "bleeding",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "dental caries noted",
+                            "template": "dental caries noted",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Tongue",
+                    "template": "Tongue exam {children}",
+                    "children": [
+                        {
+                            "text": "normal",
+                            "template": "normal"
+                        },
+                        {
+                            "text": "tongue midline",
+                            "template": "tongue midline"
+                        },
+                        {
+                            "text": "tongue deviation to right",
+                            "template": "tongue deviation to right"
+                        },
+                        {
+                            "text": "tongue deviation to left",
+                            "template": "tongue deviation to left"
+                        },
+                        {
+                            "text": "beefy",
+                            "template": "beefy",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "red",
+                            "template": "red",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lesion present",
+                            "template": "lesion present"
+                        },
+                        {
+                            "text": "bleeding present",
+                            "template": "bleeding present",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "geographic tongue",
+                            "template": "geographic tongue"
+                        },
+                        {
+                            "text": "strawberry tongue",
+                            "template": "strawberry tongue",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Throat\/Oropharynx",
+                    "template": "Throat\/Oropharyngeal exam {children}",
+                    "children": [
+                        {
+                            "text": "pharyngeal exam NL",
+                            "template": "pharyngeal exam NL"
+                        },
+                        {
+                            "text": "mucous membranes moist",
+                            "template": "mucous membranes moist",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mucous membranes dry",
+                            "template": "mucous membranes dry",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "oropharyngeal erythema",
+                            "template": "oropharyngeal erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "exudates pharynx",
+                            "template": "pharyngeal exudates",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "R tonsillomegaly",
+                            "template": "right-sided tonsillomegaly",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "L tonsillomegaly",
+                            "template": "left-sided tonsillomegaly",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tightly adhering gray membrane",
+                            "template": "tightly adhering gray membrane"
+                        },
+                        {
+                            "text": "oropharyngeal ulcers present",
+                            "template": "oropharyngeal ulcers present"
+                        },
+                        {
+                            "text": "oropharyngeal lesions present",
+                            "template": "oropharyngeal lesions present"
+                        },
+                        {
+                            "text": "uvula midline",
+                            "template": "uvula midline"
+                        },
+                        {
+                            "text": "uvula deviated to the right",
+                            "template": "uvula deviated to the right"
+                        },
+                        {
+                            "text": "uvula deviated to the left",
+                            "template": "uvula deviated to the left"
+                        },
+                        {
+                            "text": "pharyngeal saliva pooling",
+                            "template": "pharyngeal saliva pooling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bleeding w\/dislodged membrane",
+                            "template": "bleeding w\/dislodged membrane",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Neck",
+            "template": "NECK: {children}",
+            "children": [
+                {
+                    "text": "soft, nontender",
+                    "template": "soft, nontender"
+                },
+                {
+                    "text": "no increased JVP visible",
+                    "template": "no increased JVP visible"
+                },
+                {
+                    "text": "no cervical LN",
+                    "template": "no significant cervical lymphadenopathy"
+                },
+                {
+                    "text": "Lymphadenopathy",
+                    "template": "{children} lymphadenopathy",
+                    "children": [
+                        {
+                            "text": "shotty cervical",
+                            "template": "shotty cervical"
+                        },
+                        {
+                            "text": "submental",
+                            "template": "submental"
+                        },
+                        {
+                            "text": "R submandibular",
+                            "template": "R submandibular"
+                        },
+                        {
+                            "text": "L submandibular",
+                            "template": "L submandibular"
+                        },
+                        {
+                            "text": "R ant. cervical",
+                            "template": "R anterior cervical"
+                        },
+                        {
+                            "text": "L ant. cervical",
+                            "template": "L anterior cervical"
+                        },
+                        {
+                            "text": "R preauricular",
+                            "template": "R preauricular"
+                        },
+                        {
+                            "text": "L preauricular",
+                            "template": "L preauricular"
+                        },
+                        {
+                            "text": "R post. auricular",
+                            "template": "R posterior auricular"
+                        },
+                        {
+                            "text": "L post. auricular",
+                            "template": "L posterior auricular"
+                        },
+                        {
+                            "text": "R supraclavicular",
+                            "template": "R supraclavicular"
+                        },
+                        {
+                            "text": "L supraclavicular",
+                            "template": "L supraclavicular"
+                        }
+                    ]
+                },
+                {
+                    "text": "obese neck",
+                    "template": "neck obesity",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "thyromegaly",
+                    "template": "thyromegaly",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "JVP abnormality",
+                    "template": "JVP: {children}",
+                    "children": [
+                        {
+                            "text": "JVD",
+                            "template": "jugular venous distension",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "H-J reflux",
+                            "template": "hepatojugular reflux",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "inspiratory rise (Kussmaul)",
+                            "template": "inspiratory rise (Kussmaul)",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "JVP level (cm)",
+                    "template": "JVP {text} cm above the sternal angle",
+                    "type": "number"
+                },
+                {
+                    "text": "Neck circumference",
+                    "template": "Neck circumference: {text}",
+                    "type": "alpha"
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Respiratory",
+            "template": "RESP: {children}",
+            "children": [
+                {
+                    "text": "no respiratory distress",
+                    "template": "no respiratory distress"
+                },
+                {
+                    "text": "auscultation clear BL",
+                    "template": "clear to auscultation bilaterally"
+                },
+                {
+                    "text": "no wheezes\/rales\/rhonchi",
+                    "template": "no wheezes\/rales\/rhonchi"
+                },
+                {
+                    "text": "percussion clear BL",
+                    "template": "clear to percussion bilaterally"
+                },
+                {
+                    "text": "chest wall symmetric",
+                    "template": "chest wall symmetric"
+                },
+                {
+                    "text": "Abnl lung sounds, R",
+                    "template": "Abnl lung sounds, R: {children}",
+                    "children": [
+                        {
+                            "text": "whoop",
+                            "template": "whoop",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "stridor",
+                            "template": "stridor",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pleural rub",
+                            "template": "pleural rub"
+                        },
+                        {
+                            "text": "basilar rales",
+                            "template": "basilar rales"
+                        },
+                        {
+                            "text": "rales scattered",
+                            "template": "scattered rales"
+                        },
+                        {
+                            "text": "rhonchi scattered",
+                            "template": "scattered rhonchi"
+                        },
+                        {
+                            "text": "diminished breath sounds throughout",
+                            "template": "diminished breath sounds throughout"
+                        },
+                        {
+                            "text": "diminished breath sounds at bases",
+                            "template": "diminished breath sounds at bases"
+                        },
+                        {
+                            "text": "wheezes, expiration",
+                            "template": "expiratory wheezes"
+                        }
+                    ]
+                },
+                {
+                    "text": "Abnl lung sounds, L",
+                    "template": "Abnl lung sounds, L: {children}",
+                    "children": [
+                        {
+                            "text": "whoop",
+                            "template": "whoop",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "stridor",
+                            "template": "stridor",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pleural rub",
+                            "template": "pleural rub"
+                        },
+                        {
+                            "text": "basilar rales",
+                            "template": "basilar rales"
+                        },
+                        {
+                            "text": "rales scattered",
+                            "template": "scattered rales"
+                        },
+                        {
+                            "text": "rhonchi scattered",
+                            "template": "scattered rhonchi"
+                        },
+                        {
+                            "text": "diminished breath sounds throughout",
+                            "template": "diminished breath sounds throughout"
+                        },
+                        {
+                            "text": "diminished breath sounds at bases",
+                            "template": "diminished breath sounds at bases"
+                        },
+                        {
+                            "text": "wheezes, expiration",
+                            "template": "expiratory wheezes"
+                        }
+                    ]
+                },
+                {
+                    "text": "Abnl lung sounds, BL",
+                    "template": "Abnl lung sounds, BL: {children}",
+                    "children": [
+                        {
+                            "text": "whoop",
+                            "template": "whoop",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "stridor",
+                            "template": "stridor",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pleural rub",
+                            "template": "pleural rub"
+                        },
+                        {
+                            "text": "basilar rales",
+                            "template": "basilar rales"
+                        },
+                        {
+                            "text": "rales scattered",
+                            "template": "scattered rales"
+                        },
+                        {
+                            "text": "rhonchi scattered",
+                            "template": "scattered rhonchi"
+                        },
+                        {
+                            "text": "diminished breath sounds throughout",
+                            "template": "diminished breath sounds throughout"
+                        },
+                        {
+                            "text": "diminished breath sounds at bases",
+                            "template": "diminished breath sounds at bases"
+                        },
+                        {
+                            "text": "wheezes, expiration",
+                            "template": "expiratory wheezes"
+                        }
+                    ]
+                },
+                {
+                    "text": "Percussion, R",
+                    "template": "Percussion, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal to percussion",
+                            "template": "normal to percussion"
+                        },
+                        {
+                            "text": "dullness to percussion at base",
+                            "template": "dullness to percussion at base"
+                        },
+                        {
+                            "text": "dull throughout",
+                            "template": "dull to percussion throughout"
+                        }
+                    ]
+                },
+                {
+                    "text": "Percussion, L",
+                    "template": "Percussion, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal to percussion",
+                            "template": "normal to percussion"
+                        },
+                        {
+                            "text": "dullness to percussion at base",
+                            "template": "dullness to percussion at base"
+                        },
+                        {
+                            "text": "dull throughout",
+                            "template": "dull to percussion throughout"
+                        }
+                    ]
+                },
+                {
+                    "text": "Percussion, BL",
+                    "template": "Percussion, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal to percussion",
+                            "template": "normal to percussion"
+                        },
+                        {
+                            "text": "dullness to percussion at base",
+                            "template": "dullness to percussion at base"
+                        },
+                        {
+                            "text": "dull throughout",
+                            "template": "dull to percussion throughout"
+                        }
+                    ]
+                },
+                {
+                    "text": "Breathing dynamics, R",
+                    "template": "Breathing dynamics, R: {children}",
+                    "children": [
+                        {
+                            "text": "labored breathing",
+                            "template": "labored breathing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "accessory muscle use",
+                            "template": "accessory muscle use",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "rib retractions",
+                            "template": "rib retractions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abnormal diaphragm movement",
+                            "template": "abnormal diaphragm movement",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Breathing dynamics, L",
+                    "template": "Breathing dynamics, L: {children}",
+                    "children": [
+                        {
+                            "text": "labored breathing",
+                            "template": "labored breathing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "accessory muscle use",
+                            "template": "accessory muscle use",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "rib retractions",
+                            "template": "rib retractions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abnormal diaphragm movement",
+                            "template": "abnormal diaphragm movement",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Breathing dynamics, BL",
+                    "template": "Breathing dynamics, BL: {children}",
+                    "children": [
+                        {
+                            "text": "labored breathing",
+                            "template": "labored breathing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "accessory muscle use",
+                            "template": "accessory muscle use",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "rib retractions",
+                            "template": "rib retractions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abnormal diaphragm movement",
+                            "template": "abnormal diaphragm movement",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Cardiovascular",
+            "template": "CV: {children}",
+            "children": [
+                {
+                    "text": "RRR, no murmur\/rub\/gallop",
+                    "template": "RRR, no murmur\/rub\/gallop"
+                },
+                {
+                    "text": "S1, S2 findings",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "NL S1",
+                            "template": "NL S1"
+                        },
+                        {
+                            "text": "NL S2",
+                            "template": "NL S2"
+                        },
+                        {
+                            "text": "split S2",
+                            "template": "split S2"
+                        },
+                        {
+                            "text": "split S1",
+                            "template": "split S1"
+                        },
+                        {
+                            "text": "persistently split S2",
+                            "template": "persistently split S2"
+                        },
+                        {
+                            "text": "physiologically split S2",
+                            "template": "physiologically split S2"
+                        },
+                        {
+                            "text": "paradoxically split S2",
+                            "template": "paradoxically split S2"
+                        },
+                        {
+                            "text": "widely split S2",
+                            "template": "widely split S2"
+                        }
+                    ]
+                },
+                {
+                    "text": "S3 gallop",
+                    "template": "S3 gallop",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "S4 gallop",
+                    "template": "S4 gallop",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "regular rate and rhythm",
+                    "template": "regular rate and rhythm"
+                },
+                {
+                    "text": "regular rate",
+                    "template": "regular rate"
+                },
+                {
+                    "text": "regular rhythm",
+                    "template": "regular rhythm"
+                },
+                {
+                    "text": "no murmurs",
+                    "template": "no murmurs"
+                },
+                {
+                    "text": "Murmur grade",
+                    "template": "Murmur grade: {text}\/6",
+                    "type": "number"
+                },
+                {
+                    "text": "Murmur timing\/location",
+                    "template": "murmur {children}",
+                    "children": [
+                        {
+                            "text": "systolic",
+                            "template": "is systolic"
+                        },
+                        {
+                            "text": "diastolic",
+                            "template": "is diastolic"
+                        },
+                        {
+                            "text": "holosystolic",
+                            "template": "is holosystolic"
+                        },
+                        {
+                            "text": "continuous",
+                            "template": "is continuous"
+                        },
+                        {
+                            "text": "best: L sternal border",
+                            "template": "best heard at L sternal border"
+                        },
+                        {
+                            "text": "best: 2nd R ICS",
+                            "template": "best heard near 2nd R ICS"
+                        },
+                        {
+                            "text": "best: xiphoid\/ sternal area",
+                            "template": "best heard at xiphoid\/sternal area"
+                        },
+                        {
+                            "text": "best: apex",
+                            "template": "best heard at apex"
+                        },
+                        {
+                            "text": "best: R sternal border",
+                            "template": "best heard at R sternal border"
+                        },
+                        {
+                            "text": "nonradiating",
+                            "template": "nonradiating"
+                        },
+                        {
+                            "text": "radiates to axilla",
+                            "template": "radiates to axilla"
+                        },
+                        {
+                            "text": "radiates to apex",
+                            "template": "radiates to apex"
+                        },
+                        {
+                            "text": "radiates to carotids",
+                            "template": "radiates to carotids"
+                        },
+                        {
+                            "text": "radiates to R side",
+                            "template": "radiates to R side"
+                        },
+                        {
+                            "text": "radiates to sternum",
+                            "template": "radiates to sternum"
+                        },
+                        {
+                            "text": "radiates to L clavicular area",
+                            "template": "radiates to L clavicular area"
+                        }
+                    ]
+                },
+                {
+                    "text": "no increased JVP visible",
+                    "template": "no increased JVP visible"
+                },
+                {
+                    "text": "JVP level (cm)",
+                    "template": "JVP {text} cm above the sternal angle",
+                    "type": "number"
+                },
+                {
+                    "text": "Heaves, Thrills, Lifts",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "heave",
+                            "template": "heave",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "parasternal lift",
+                            "template": "parasternal lift",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "thrill",
+                            "template": "thrill",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Extra heart sounds",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "extra heart sounds",
+                            "template": "extra heart sounds",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pulmonary ejection sound",
+                            "template": "pulmonary ejection sound",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "aortic ejection sound",
+                            "template": "aortic ejection sound",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "systolic click",
+                            "template": "systolic click",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "midsystolic click",
+                            "template": "midsystolic click",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mid-late systolic click",
+                            "template": "mid-to-late systolic click",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pericardial rub",
+                            "template": "pericardial rub",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "knock",
+                            "template": "knock",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "opening snap",
+                            "template": "opening snap",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "plop",
+                            "template": "plop",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "prosthetic sounds",
+                            "template": "prosthetic sounds",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pacemaker sounds",
+                            "template": "pacemaker sounds",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "PMI nondisplaced",
+                    "template": "PMI nondisplaced"
+                },
+                {
+                    "text": "PMI displaced",
+                    "template": "PMI displaced",
+                    "children": [
+                        {
+                            "text": "laterally",
+                            "template": "laterally"
+                        },
+                        {
+                            "text": "inferiorly",
+                            "template": "inferiorly"
+                        },
+                        {
+                            "text": "superiorly",
+                            "template": "superiorly"
+                        },
+                        {
+                            "text": "parasternally",
+                            "template": "parasternally"
+                        }
+                    ]
+                },
+                {
+                    "text": "Peripheral pulses, R",
+                    "template": "Peripheral pulses, R: {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity normal",
+                            "template": "upper extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lower extremity normal",
+                            "template": "lower extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished in upper extremities",
+                            "template": "diminished in upper extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished in lower extremities",
+                            "template": "diminished in lower extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pulsus paradoxicus",
+                            "template": "pulsus paradoxicus",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Peripheral pulses, L",
+                    "template": "Peripheral pulses, L: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact"
+                        },
+                        {
+                            "text": "upper extremity normal",
+                            "template": "upper extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lower extremity normal",
+                            "template": "lower extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished in upper extremities",
+                            "template": "diminished in upper extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished in lower extremities",
+                            "template": "diminished in lower extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pulsus paradoxicus",
+                            "template": "pulsus paradoxicus",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Peripheral pulses, BL",
+                    "template": "Peripheral pulses, BL: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact"
+                        },
+                        {
+                            "text": "upper extremity normal",
+                            "template": "upper extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lower extremity normal",
+                            "template": "lower extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished in upper extremities",
+                            "template": "diminished in upper extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished in lower extremities",
+                            "template": "diminished in lower extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pulsus paradoxicus",
+                            "template": "pulsus paradoxicus",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Xanthomas, R",
+                    "template": "Xanthomas, R: {children}",
+                    "children": [
+                        {
+                            "text": "eyelids",
+                            "template": "eyelids"
+                        },
+                        {
+                            "text": "periorbital",
+                            "template": "periorbital area"
+                        },
+                        {
+                            "text": "hands",
+                            "template": "hands"
+                        },
+                        {
+                            "text": "achilles tendons",
+                            "template": "achilles tendons"
+                        },
+                        {
+                            "text": "feet",
+                            "template": "feet"
+                        },
+                        {
+                            "text": "elbows",
+                            "template": "elbows"
+                        },
+                        {
+                            "text": "knees",
+                            "template": "knees"
+                        },
+                        {
+                            "text": "shoulders",
+                            "template": "shoulders"
+                        },
+                        {
+                            "text": "buttocks",
+                            "template": "buttocks"
+                        }
+                    ]
+                },
+                {
+                    "text": "Xanthomas, L",
+                    "template": "Xanthomas, L: {children}",
+                    "children": [
+                        {
+                            "text": "eyelids",
+                            "template": "eyelids"
+                        },
+                        {
+                            "text": "periorbital",
+                            "template": "periorbital area"
+                        },
+                        {
+                            "text": "hands",
+                            "template": "hands"
+                        },
+                        {
+                            "text": "achilles tendons",
+                            "template": "achilles tendons"
+                        },
+                        {
+                            "text": "feet",
+                            "template": "feet"
+                        },
+                        {
+                            "text": "elbows",
+                            "template": "elbows"
+                        },
+                        {
+                            "text": "knees",
+                            "template": "knees"
+                        },
+                        {
+                            "text": "shoulders",
+                            "template": "shoulders"
+                        },
+                        {
+                            "text": "buttocks",
+                            "template": "buttocks"
+                        }
+                    ]
+                },
+                {
+                    "text": "Xanthomas, BL",
+                    "template": "Xanthomas, BL: {children}",
+                    "children": [
+                        {
+                            "text": "eyelids",
+                            "template": "eyelids"
+                        },
+                        {
+                            "text": "periorbital",
+                            "template": "periorbital area"
+                        },
+                        {
+                            "text": "hands",
+                            "template": "hands"
+                        },
+                        {
+                            "text": "achilles tendons",
+                            "template": "achilles tendons"
+                        },
+                        {
+                            "text": "feet",
+                            "template": "feet"
+                        },
+                        {
+                            "text": "elbows",
+                            "template": "elbows"
+                        },
+                        {
+                            "text": "knees",
+                            "template": "knees"
+                        },
+                        {
+                            "text": "shoulders",
+                            "template": "shoulders"
+                        },
+                        {
+                            "text": "buttocks",
+                            "template": "buttocks"
+                        }
+                    ]
+                },
+                {
+                    "text": "LE venous stasis changes",
+                    "template": "LE venous stasis changes",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "varicose veins",
+                    "template": "varicose veins",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "LE varicose veins, R",
+                    "template": "LE varicose veins, R: {children}",
+                    "children": [
+                        {
+                            "text": "present",
+                            "template": "present",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "LE varicose veins, L",
+                    "template": "LE varicose veins, L: {children}",
+                    "children": [
+                        {
+                            "text": "present",
+                            "template": "present",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "LE varicose veins, BL",
+                    "template": "LE varicose veins, BL: {children}",
+                    "children": [
+                        {
+                            "text": "present",
+                            "template": "present",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "Other detail: {text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Cardiovascular, pulses",
+            "template": "CV: {children}",
+            "children": [
+                {
+                    "text": "pulse rate and rhythm regular",
+                    "template": "pulse rate and rhythm regular"
+                },
+                {
+                    "text": "pulse rate regular",
+                    "template": "pulse rate regular"
+                },
+                {
+                    "text": "pulse rhythm regular",
+                    "template": "pulse rhythm regular"
+                },
+                {
+                    "text": "Temporal artery, R",
+                    "template": "Temporal artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Temporal artery, L",
+                    "template": "Temporal artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Temporal arteries, BL",
+                    "template": "Temporal arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Carotid artery, R",
+                    "template": "Carotid artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "delayed upstroke",
+                            "template": "delayed upstroke"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Carotid artery, L",
+                    "template": "Carotid artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "delayed upstroke",
+                            "template": "delayed upstroke"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Carotid arteries, BL",
+                    "template": "Carotid arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "delayed upstroke",
+                            "template": "delayed upstroke"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Brachial artery, R",
+                    "template": "Brachial artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Brachial artery, L",
+                    "template": "Brachial artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Brachial arteries, BL",
+                    "template": "Brachial arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Radial artery, R",
+                    "template": "Radial artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "waterhammer",
+                            "template": "waterhammer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bisferiens",
+                            "template": "bisferiens",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Radial artery, L",
+                    "template": "Radial artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "waterhammer",
+                            "template": "waterhammer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bisferiens",
+                            "template": "bisferiens",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Radial arteries, BL",
+                    "template": "Radial arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "waterhammer",
+                            "template": "waterhammer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bisferiens",
+                            "template": "bisferiens",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Femoral artery, R",
+                    "template": "Femoral artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Femoral artery, L",
+                    "template": "Femoral artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Femoral arteries, BL",
+                    "template": "Femoral arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Popliteal artery, R",
+                    "template": "Popliteal artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Popliteal artery, L",
+                    "template": "Popliteal artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Popliteal arteries, BL",
+                    "template": "Popliteal arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Dorsalis pedis artery, R",
+                    "template": "Dorsalis pedis artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Dorsalis pedis artery, L",
+                    "template": "Dorsalis pedis artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Dorsalis pedis arteries, BL",
+                    "template": "Dorsalis pedis arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Posterior tibial, R",
+                    "template": "Posterior tibial, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Posterior tibial, L",
+                    "template": "Posterior tibial, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Posterior tibial arteries, BL",
+                    "template": "Posterior tibial arteries, BL {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Renal artery, R",
+                    "template": "Renal artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "bruit present",
+                            "template": "bruit present"
+                        },
+                        {
+                            "text": "palpable pulse",
+                            "template": "palpable pulse",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Renal artery, L",
+                    "template": "Renal artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "bruit present",
+                            "template": "bruit present"
+                        },
+                        {
+                            "text": "palpable pulse",
+                            "template": "palpable pulse",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Renal arteries, BL",
+                    "template": "Renal arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "bruit present",
+                            "template": "bruit present"
+                        },
+                        {
+                            "text": "palpable pulse",
+                            "template": "palpable pulse",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Aorta",
+                    "template": "Aorta: {children}",
+                    "children": [
+                        {
+                            "text": "enlargement",
+                            "template": "enlargement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Gastrointestinal",
+            "template": "GI: {children}",
+            "children": [
+                {
+                    "text": "bowel sounds intact throughout",
+                    "template": "bowel sounds intact throughout"
+                },
+                {
+                    "text": "borborygmi",
+                    "template": "borborygmi",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "soft, nontender to palpation",
+                    "template": "soft, nontender to palpation"
+                },
+                {
+                    "text": "no rebound\/guarding\/rigidity",
+                    "template": "no rebound\/guarding\/rigidity"
+                },
+                {
+                    "text": "rebound",
+                    "template": "rebound",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "voluntary guarding",
+                    "template": "voluntary guarding",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "involuntary guarding",
+                    "template": "involuntary guarding",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "rigidity",
+                    "template": "rigidity",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "hepatomegaly",
+                    "template": "hepatomegaly",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "splenomegaly",
+                    "template": "splenomegaly",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "masses",
+                    "template": "masses",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "hepatojugular reflex",
+                    "template": "hepatojugular reflex",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Liver",
+                    "template": "Liver: {children}",
+                    "children": [
+                        {
+                            "text": "normal",
+                            "template": "normal"
+                        },
+                        {
+                            "text": "caput medusae",
+                            "template": "caput medusae",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spider angiomata",
+                            "template": "spider angiomata",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "palpable",
+                            "template": "palpable",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "edge palpable below costal margin",
+                            "template": "edge palpable below costal margin",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hepatomegaly",
+                            "template": "hepatomegaly",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bulging flanks",
+                            "template": "bulging flanks",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flank dullness",
+                            "template": "flank dullness",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "shifting dullness",
+                            "template": "shifting dullness",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fluid wave",
+                            "template": "fluid wave",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ascites",
+                            "template": "ascites",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Spleen",
+                    "template": "Spleen: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "palpable",
+                            "template": "palpable",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "splenomegaly",
+                            "template": "splenomegaly",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Abdominal exam: inspection",
+                    "template": "Abdominal exam inspection: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities on inspection",
+                            "template": "no abnormalities on inspection"
+                        },
+                        {
+                            "text": "distended",
+                            "template": "distended",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flat",
+                            "template": "flat",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "obese",
+                            "template": "obese",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scaphoid",
+                            "template": "scaphoid",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scarring",
+                            "template": "scarring",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "rash",
+                            "template": "rash",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "umbilical hernia",
+                            "template": "umbilical hernia",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ventral hernia",
+                            "template": "ventral hernia",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spider angiomata",
+                            "template": "spider angiomata",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "caput medusae",
+                            "template": "caput medusae",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Abdominal exam: bowel sounds",
+                    "template": "Bowel sounds: {children}",
+                    "children": [
+                        {
+                            "text": "present on auscultation",
+                            "template": "present on auscultation"
+                        },
+                        {
+                            "text": "normoactive",
+                            "template": "normoactive"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "absent",
+                            "template": "absent",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "high pitched",
+                            "template": "high pitched",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Abdominal exam: tenderness",
+                    "template": "Abdominal pain: {children}",
+                    "children": [
+                        {
+                            "text": "no tenderness noted on exam",
+                            "template": "no tenderness noted on exam"
+                        },
+                        {
+                            "text": "tenderness at rest",
+                            "template": "tenderness present at rest",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tenderness with palpation",
+                            "template": "tenderness present with palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tenderness with movement",
+                            "template": "tenderness present with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mild",
+                            "template": "mild pain present"
+                        },
+                        {
+                            "text": "moderate",
+                            "template": "moderate pain present"
+                        },
+                        {
+                            "text": "severe",
+                            "template": "severe pain present"
+                        },
+                        {
+                            "text": "present throughout",
+                            "template": "pain present throughout"
+                        },
+                        {
+                            "text": "right sided tenderness",
+                            "template": "right sided tenderness present"
+                        },
+                        {
+                            "text": "left sided tenderness",
+                            "template": "left sided tenderness present"
+                        },
+                        {
+                            "text": "midepigastric tenderness",
+                            "template": "midepigastric tenderness present"
+                        },
+                        {
+                            "text": "RUQ tenderness",
+                            "template": "RUQ tenderness present"
+                        },
+                        {
+                            "text": "LUQ tenderness",
+                            "template": "LUQ tenderness present"
+                        },
+                        {
+                            "text": "hypogastric tenderness",
+                            "template": "hypogastric tenderness present"
+                        },
+                        {
+                            "text": "RLQ tenderness",
+                            "template": "RLQ tenderness present"
+                        },
+                        {
+                            "text": "LLQ tenderness",
+                            "template": "LLQ tenderness present"
+                        },
+                        {
+                            "text": "periumbilical tenderness",
+                            "template": "periumbilical tenderness present"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "GU\/Rectal",
+            "template": "GU\/RECTAL: {children}",
+            "children": [
+                {
+                    "text": "rectal exam normal",
+                    "template": "rectal exam normal"
+                },
+                {
+                    "text": "normal rectal tone",
+                    "template": "normal rectal tone"
+                },
+                {
+                    "text": "hemoccult negative",
+                    "template": "hemoccult negative"
+                },
+                {
+                    "text": "hemoccult positive",
+                    "template": "hemoccult positive"
+                },
+                {
+                    "text": "rectal exam deferred",
+                    "template": "rectal exam deferred"
+                },
+                {
+                    "text": "rectal exam refused by patient",
+                    "template": "rectal exam refused by patient"
+                },
+                {
+                    "text": "rectal exam contraindicated",
+                    "template": "rectal exam contraindicated"
+                },
+                {
+                    "text": "Other detail",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Dermatologic\/Lymphatic",
+            "template": "DERM: {children}",
+            "children": [
+                {
+                    "text": "diaphoresis",
+                    "template": "diaphoresis",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "periorbital xanthelasma",
+                    "template": "periorbital xanthelasma",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "xanthomas",
+                    "template": "xanthomas",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "cyanosis",
+                    "template": "cyanosis",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Cyanosis location",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "perioral cyanosis",
+                            "template": "perioral cyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acral cyanosis",
+                            "template": "acral cyanosis",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "decreased hair LE",
+                    "template": "decreased hair LE",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "stasis dermatitis R LE",
+                    "template": "stasis dermatitis R LE",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "stasis dermatitis L LE",
+                    "template": "stasis dermatitis L LE",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "dry skin",
+                    "template": "dry skin",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "clubbing",
+                    "template": "clubbing",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "petechiae",
+                    "template": "petechiae",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "lymphadenopathy",
+                    "template": "lymphadenopathy",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Other detail",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Extremities",
+            "template": "EXT: {children}",
+            "children": [
+                {
+                    "text": "no C\/C\/E",
+                    "template": "no C\/C\/E"
+                },
+                {
+                    "text": "cyanosis",
+                    "template": "cyanosis",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "clubbing",
+                    "template": "clubbing",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "edema",
+                    "template": "edema",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "anasarca",
+                    "template": "anasarca",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Upper extremity C\/C\/E, R",
+                    "template": "Upper extremity C\/C\/E, R: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity C\/C\/E, L",
+                    "template": "Upper extremity C\/C\/E, L: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremities C\/C\/E, BL",
+                    "template": "Upper extremities C\/C\/E, BL: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity C\/C\/E, R",
+                    "template": "Lower extremity C\/C\/E, R: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity C\/C\/E, L",
+                    "template": "Lower extremity C\/C\/E, L: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremities C\/C\/E, BL",
+                    "template": "Lower extremities C\/C\/E, BL: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "full range of motion throughout",
+                    "template": "full range of motion throughout"
+                },
+                {
+                    "text": "upper ext strength intact BL",
+                    "template": "upper extremity strength intact BL",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Upper extremity, ROM, R",
+                    "template": "Upper extremity, range of motion, R: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity, ROM, L",
+                    "template": "Upper extremity, range of motion, L: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremities, ROM, BL",
+                    "template": "Upper extremities, range of motion, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "lower ext strength intact BL",
+                    "template": "lower extremity strength intact BL",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Lower extremity, ROM, R",
+                    "template": "Lower extremity, range of motion, R: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity, ROM, L",
+                    "template": "Lower extremity, range of motion, L: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity, ROM, BL",
+                    "template": "Lower extremity, range of motion, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity strength intact BL",
+                    "template": "Upper extremity strength intact BL",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Upper extremity strength, R",
+                    "template": "Upper extremity strength, R: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity strength, L",
+                    "template": "Upper extremity strength, L: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity strength, BL",
+                    "template": "Upper extremity strength, BL: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity strength intact BL",
+                    "template": "Lower extremity strength intact BL",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Lower extremity strength, R",
+                    "template": "Lower extremity strength, R: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity strength, L",
+                    "template": "Lower extremity strength, L: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity strength, BL",
+                    "template": "Lower extremity strength, BL: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other detail",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Musculoskeletal",
+            "template": "MUSC\/SKEL: {children}",
+            "children": [
+                {
+                    "text": "muscle strength NL throughout",
+                    "template": "muscle strength NL throughout"
+                },
+                {
+                    "text": "NL upper extremity exam BL",
+                    "template": "NL upper extremity exam BL",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "NL lower extremity exam BL",
+                    "template": "NL lower extremity exam BL",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Upper extremity, R",
+                    "template": "Upper extremity exam, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "normal strength and tone"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity, L",
+                    "template": "Upper extremity exam, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "normal strength and tone"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity, BL",
+                    "template": "Upper extremity exam, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "normal strength and tone"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity, R",
+                    "template": "Lower extremity exam, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "normal strength and tone"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity, L",
+                    "template": "Lower extremity exam, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "normal strength and tone"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity, BL",
+                    "template": "Lower extremity exam, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "normal strength and tone"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other detail",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Back\/spine",
+            "template": "MUSC\/SKEL: {children}",
+            "children": [
+                {
+                    "text": "Back, R",
+                    "template": "Back exam, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sacral edema",
+                            "template": "sacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "presacral edema",
+                            "template": "presacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "costovertebral angle tenderness",
+                            "template": "costovertebral angle tenderness",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Back, L",
+                    "template": "Back exam, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sacral edema",
+                            "template": "sacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "presacral edema",
+                            "template": "presacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "costovertebral angle tenderness",
+                            "template": "costovertebral angle tenderness",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Back, BL",
+                    "template": "Back exam, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sacral edema",
+                            "template": "sacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "presacral edema",
+                            "template": "presacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "costovertebral angle tenderness",
+                            "template": "costovertebral angle tenderness",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Cervical spine\/musculature, R",
+                    "template": "Cervical spine\/musculature, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Cervical spine\/musculature, L",
+                    "template": "Cervical spine\/musculature, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Cervical spine\/musculature, BL",
+                    "template": "Cervical spine\/musculature, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Thoracic spine\/musculature, R",
+                    "template": "Thoracic spine\/musculature, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Thoracic spine\/musculature, L",
+                    "template": "Thoracic spine\/musculature, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Thoracic spine\/musculature, BL",
+                    "template": "Thoracic spine\/musculature, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lumbar spine\/musculature, R",
+                    "template": "Lumbar spine\/musculature, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "CVA tenderness",
+                            "template": "CVA tenderness",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "straight leg raise normal",
+                            "template": "straight leg raise normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "femoral nerve stretch test",
+                            "template": "femoral nerve stretch test",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "FABER test",
+                            "template": "FABER test",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lumbar spine\/musculature, L",
+                    "template": "Lumbar spine\/musculature, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "CVA tenderness",
+                            "template": "CVA tenderness",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "straight leg raise normal",
+                            "template": "straight leg raise normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "femoral nerve stretch test",
+                            "template": "femoral nerve stretch test",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "FABER test",
+                            "template": "FABER test",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lumbar spine\/musculature, BL",
+                    "template": "Lumbar spine\/musculature, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "CVA tenderness",
+                            "template": "CVA tenderness",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "straight leg raise normal",
+                            "template": "straight leg raise normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "femoral nerve stretch test",
+                            "template": "femoral nerve stretch test",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "FABER test",
+                            "template": "FABER test",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Sacral spine\/musculature, R",
+                    "template": "Sacral spine\/musculature, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "CVA tenderness",
+                            "template": "CVA tenderness",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "straight leg raise normal",
+                            "template": "straight leg raise normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "femoral nerve stretch test",
+                            "template": "femoral nerve stretch test",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "FABER test",
+                            "template": "FABER test",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Sacral spine\/musculature, L",
+                    "template": "Sacral spine\/musculature, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "CVA tenderness",
+                            "template": "CVA tenderness",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "straight leg raise normal",
+                            "template": "straight leg raise normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "femoral nerve stretch test",
+                            "template": "femoral nerve stretch test",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "FABER test",
+                            "template": "FABER test",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Sacral spine\/musculature, BL",
+                    "template": "Sacral spine\/musculature, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "CVA tenderness",
+                            "template": "CVA tenderness",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "straight leg raise normal",
+                            "template": "straight leg raise normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "femoral nerve stretch test",
+                            "template": "femoral nerve stretch test",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "FABER test",
+                            "template": "FABER test",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other detail",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Neuro: Cranial nerves",
+            "template": "NEURO: {children}",
+            "children": [
+                {
+                    "text": "CN II-XII intact and nonfocal",
+                    "template": "CN II-XII intact and nonfocal"
+                },
+                {
+                    "text": "CN I: sense of smell",
+                    "template": "sense of smell (CN I) {children}",
+                    "children": [
+                        {
+                            "text": "not assessed",
+                            "template": "not assessed"
+                        },
+                        {
+                            "text": "intact and nonfocal",
+                            "template": "intact and nonfocal"
+                        },
+                        {
+                            "text": "decreased sense of smell",
+                            "template": "decreased sense of smell"
+                        },
+                        {
+                            "text": "anosmia",
+                            "template": "anosmia",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN II, R eye visual acuity\/fields",
+                    "template": "R eye visual acuity\/fields (CN II) {children}",
+                    "children": [
+                        {
+                            "text": "visual acuity intact BL",
+                            "template": "visual acuity intact BL"
+                        },
+                        {
+                            "text": "decreased visual acuity BL",
+                            "template": "decreased visual acuity BL"
+                        },
+                        {
+                            "text": "monocular blindness noted",
+                            "template": "monocular blindness noted"
+                        },
+                        {
+                            "text": "R hemianopsia noted",
+                            "template": "R hemianopsia noted"
+                        },
+                        {
+                            "text": "L hemianopsia noted",
+                            "template": "L hemianopsia noted"
+                        },
+                        {
+                            "text": "R upper quadrantanopsia noted",
+                            "template": "R upper quadrantanopsia noted"
+                        },
+                        {
+                            "text": "L upper quadrantanopsia noted",
+                            "template": "L upper quadrantanopsia noted"
+                        },
+                        {
+                            "text": "R lower quadrantanopsia noted",
+                            "template": "R lower quadrantanopsia noted"
+                        },
+                        {
+                            "text": "L upper quadrantanopsia noted",
+                            "template": "L upper quadrantanopsia noted"
+                        },
+                        {
+                            "text": "L lower quadrantanopsia noted",
+                            "template": "L lower quadrantanopsia noted"
+                        },
+                        {
+                            "text": "macular sparing noted",
+                            "template": "macular sparing noted"
+                        },
+                        {
+                            "text": "central vision loss noted",
+                            "template": "central vision loss noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN II, L eye visual acuity\/fields",
+                    "template": "L eye visual acuity\/fields (CN II) {children}",
+                    "children": [
+                        {
+                            "text": "visual acuity intact BL",
+                            "template": "visual acuity intact BL"
+                        },
+                        {
+                            "text": "decreased visual acuity BL",
+                            "template": "decreased visual acuity BL"
+                        },
+                        {
+                            "text": "monocular blindness noted",
+                            "template": "monocular blindness noted"
+                        },
+                        {
+                            "text": "R hemianopsia noted",
+                            "template": "R hemianopsia noted"
+                        },
+                        {
+                            "text": "L hemianopsia noted",
+                            "template": "L hemianopsia noted"
+                        },
+                        {
+                            "text": "R upper quadrantanopsia noted",
+                            "template": "R upper quadrantanopsia noted"
+                        },
+                        {
+                            "text": "L upper quadrantanopsia noted",
+                            "template": "L upper quadrantanopsia noted"
+                        },
+                        {
+                            "text": "R lower quadrantanopsia noted",
+                            "template": "R lower quadrantanopsia noted"
+                        },
+                        {
+                            "text": "L upper quadrantanopsia noted",
+                            "template": "L upper quadrantanopsia noted"
+                        },
+                        {
+                            "text": "L lower quadrantanopsia noted",
+                            "template": "L lower quadrantanopsia noted"
+                        },
+                        {
+                            "text": "macular sparing noted",
+                            "template": "macular sparing noted"
+                        },
+                        {
+                            "text": "central vision loss noted",
+                            "template": "central vision loss noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN II, BL visual acuity\/fields",
+                    "template": "BL visual acuity\/fields (CN II) {children}",
+                    "children": [
+                        {
+                            "text": "visual acuity intact BL",
+                            "template": "visual acuity intact BL"
+                        },
+                        {
+                            "text": "decreased visual acuity BL",
+                            "template": "decreased visual acuity BL"
+                        },
+                        {
+                            "text": "monocular blindness noted",
+                            "template": "monocular blindness noted"
+                        },
+                        {
+                            "text": "R hemianopsia noted",
+                            "template": "R hemianopsia noted"
+                        },
+                        {
+                            "text": "L hemianopsia noted",
+                            "template": "L hemianopsia noted"
+                        },
+                        {
+                            "text": "R upper quadrantanopsia noted",
+                            "template": "R upper quadrantanopsia noted"
+                        },
+                        {
+                            "text": "L upper quadrantanopsia noted",
+                            "template": "L upper quadrantanopsia noted"
+                        },
+                        {
+                            "text": "R lower quadrantanopsia noted",
+                            "template": "R lower quadrantanopsia noted"
+                        },
+                        {
+                            "text": "L upper quadrantanopsia noted",
+                            "template": "L upper quadrantanopsia noted"
+                        },
+                        {
+                            "text": "L lower quadrantanopsia noted",
+                            "template": "L lower quadrantanopsia noted"
+                        },
+                        {
+                            "text": "macular sparing noted",
+                            "template": "macular sparing noted"
+                        },
+                        {
+                            "text": "central vision loss noted",
+                            "template": "central vision loss noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN II: R pupil",
+                    "template": "R pupil (CN II) {children}",
+                    "children": [
+                        {
+                            "text": "normal size",
+                            "template": "normal in size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged"
+                        },
+                        {
+                            "text": "miosis noted",
+                            "template": "miosis noted"
+                        },
+                        {
+                            "text": "eccentric",
+                            "template": "eccentric"
+                        },
+                        {
+                            "text": "irregularly shaped",
+                            "template": "irregularly shaped"
+                        },
+                        {
+                            "text": "midline",
+                            "template": "midline"
+                        },
+                        {
+                            "text": "reactive to light",
+                            "template": "reactive to light"
+                        },
+                        {
+                            "text": "accommodation intact",
+                            "template": "accommodation intact"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN II: L pupil",
+                    "template": "L pupil (CN II) {children}",
+                    "children": [
+                        {
+                            "text": "normal size",
+                            "template": "normal in size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged"
+                        },
+                        {
+                            "text": "miosis noted",
+                            "template": "miosis noted"
+                        },
+                        {
+                            "text": "eccentric",
+                            "template": "eccentric"
+                        },
+                        {
+                            "text": "irregularly shaped",
+                            "template": "irregularly shaped"
+                        },
+                        {
+                            "text": "midline",
+                            "template": "midline"
+                        },
+                        {
+                            "text": "reactive to light",
+                            "template": "reactive to light"
+                        },
+                        {
+                            "text": "accommodation intact",
+                            "template": "accommodation intact"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN II: BL pupils",
+                    "template": "BL pupils (CN II) {children}",
+                    "children": [
+                        {
+                            "text": "normal size",
+                            "template": "normal in size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged"
+                        },
+                        {
+                            "text": "miosis noted",
+                            "template": "miosis noted"
+                        },
+                        {
+                            "text": "eccentric",
+                            "template": "eccentric"
+                        },
+                        {
+                            "text": "irregularly shaped",
+                            "template": "irregularly shaped"
+                        },
+                        {
+                            "text": "midline",
+                            "template": "midline"
+                        },
+                        {
+                            "text": "reactive to light",
+                            "template": "reactive to light"
+                        },
+                        {
+                            "text": "accommodation intact",
+                            "template": "accommodation intact"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN III\/IV\/VI: R eye",
+                    "template": "R eye (CN III\/IV\/VI) {children}",
+                    "children": [
+                        {
+                            "text": "extraocular mvmts intact, nonfocal",
+                            "template": "extraocular movements intact and nonfocal"
+                        },
+                        {
+                            "text": "upward gaze intact",
+                            "template": "upward gaze intact"
+                        },
+                        {
+                            "text": "upward gaze impaired",
+                            "template": "upward gaze impaired"
+                        },
+                        {
+                            "text": "downward gaze intact",
+                            "template": "downward gaze intact"
+                        },
+                        {
+                            "text": "downward gaze impaired",
+                            "template": "downward gaze impaired"
+                        },
+                        {
+                            "text": "inward gaze intact",
+                            "template": "inward gaze intact"
+                        },
+                        {
+                            "text": "inward gaze impaired",
+                            "template": "inward gaze impaired"
+                        },
+                        {
+                            "text": "outward gaze intact",
+                            "template": "outward gaze intact"
+                        },
+                        {
+                            "text": "outward gaze impaired",
+                            "template": "outward gaze impaired"
+                        },
+                        {
+                            "text": "dysconjugate gaze noted",
+                            "template": "dysconjugate gaze noted"
+                        },
+                        {
+                            "text": "no horizontal nystagmus",
+                            "template": "no horizontal nystagmus"
+                        },
+                        {
+                            "text": "horizontal nystagmus present at rest",
+                            "template": "horizontal nystagmus present at rest"
+                        },
+                        {
+                            "text": "horizontal nystagmus elicited",
+                            "template": "horizontal nystagmus elicited"
+                        },
+                        {
+                            "text": "no vertical nystagmus",
+                            "template": "no vertical nystagmus"
+                        },
+                        {
+                            "text": "vertical nystagmus present at rest",
+                            "template": "vertical nystagmus present at rest"
+                        },
+                        {
+                            "text": "vertical nystagmus elicited",
+                            "template": "vertical nystagmus elicited"
+                        },
+                        {
+                            "text": "miosis noted",
+                            "template": "miosis noted"
+                        },
+                        {
+                            "text": "lid lag not present",
+                            "template": "lid lag not present"
+                        },
+                        {
+                            "text": "ptosis noted",
+                            "template": "ptosis noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN III\/IV\/VI: L eye",
+                    "template": "L eye (CN III\/IV\/VI) {children}",
+                    "children": [
+                        {
+                            "text": "extraocular mvmts intact, nonfocal",
+                            "template": "extraocular movements intact and nonfocal"
+                        },
+                        {
+                            "text": "upward gaze intact",
+                            "template": "upward gaze intact"
+                        },
+                        {
+                            "text": "upward gaze impaired",
+                            "template": "upward gaze impaired"
+                        },
+                        {
+                            "text": "downward gaze intact",
+                            "template": "downward gaze intact"
+                        },
+                        {
+                            "text": "downward gaze impaired",
+                            "template": "downward gaze impaired"
+                        },
+                        {
+                            "text": "inward gaze intact",
+                            "template": "inward gaze intact"
+                        },
+                        {
+                            "text": "inward gaze impaired",
+                            "template": "inward gaze impaired"
+                        },
+                        {
+                            "text": "outward gaze intact",
+                            "template": "outward gaze intact"
+                        },
+                        {
+                            "text": "outward gaze impaired",
+                            "template": "outward gaze impaired"
+                        },
+                        {
+                            "text": "dysconjugate gaze noted",
+                            "template": "dysconjugate gaze noted"
+                        },
+                        {
+                            "text": "no horizontal nystagmus",
+                            "template": "no horizontal nystagmus"
+                        },
+                        {
+                            "text": "horizontal nystagmus present at rest",
+                            "template": "horizontal nystagmus present at rest"
+                        },
+                        {
+                            "text": "horizontal nystagmus elicited",
+                            "template": "horizontal nystagmus elicited"
+                        },
+                        {
+                            "text": "no vertical nystagmus",
+                            "template": "no vertical nystagmus"
+                        },
+                        {
+                            "text": "vertical nystagmus present at rest",
+                            "template": "vertical nystagmus present at rest"
+                        },
+                        {
+                            "text": "vertical nystagmus elicited",
+                            "template": "vertical nystagmus elicited"
+                        },
+                        {
+                            "text": "miosis noted",
+                            "template": "miosis noted"
+                        },
+                        {
+                            "text": "lid lag not present",
+                            "template": "lid lag not present"
+                        },
+                        {
+                            "text": "ptosis noted",
+                            "template": "ptosis noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN III\/IV\/VI: BL eyes",
+                    "template": "BL (CN III\/IV\/VI) {children}",
+                    "children": [
+                        {
+                            "text": "extraocular mvmts intact, nonfocal",
+                            "template": "extraocular movements intact and nonfocal"
+                        },
+                        {
+                            "text": "upward gaze intact",
+                            "template": "upward gaze intact"
+                        },
+                        {
+                            "text": "upward gaze impaired",
+                            "template": "upward gaze impaired"
+                        },
+                        {
+                            "text": "downward gaze intact",
+                            "template": "downward gaze intact"
+                        },
+                        {
+                            "text": "downward gaze impaired",
+                            "template": "downward gaze impaired"
+                        },
+                        {
+                            "text": "inward gaze intact",
+                            "template": "inward gaze intact"
+                        },
+                        {
+                            "text": "inward gaze impaired",
+                            "template": "inward gaze impaired"
+                        },
+                        {
+                            "text": "outward gaze intact",
+                            "template": "outward gaze intact"
+                        },
+                        {
+                            "text": "outward gaze impaired",
+                            "template": "outward gaze impaired"
+                        },
+                        {
+                            "text": "dysconjugate gaze noted",
+                            "template": "dysconjugate gaze noted"
+                        },
+                        {
+                            "text": "no horizontal nystagmus",
+                            "template": "no horizontal nystagmus"
+                        },
+                        {
+                            "text": "horizontal nystagmus present at rest",
+                            "template": "horizontal nystagmus present at rest"
+                        },
+                        {
+                            "text": "horizontal nystagmus elicited",
+                            "template": "horizontal nystagmus elicited"
+                        },
+                        {
+                            "text": "no vertical nystagmus",
+                            "template": "no vertical nystagmus"
+                        },
+                        {
+                            "text": "vertical nystagmus present at rest",
+                            "template": "vertical nystagmus present at rest"
+                        },
+                        {
+                            "text": "vertical nystagmus elicited",
+                            "template": "vertical nystagmus elicited"
+                        },
+                        {
+                            "text": "miosis noted",
+                            "template": "miosis noted"
+                        },
+                        {
+                            "text": "lid lag not present",
+                            "template": "lid lag not present"
+                        },
+                        {
+                            "text": "ptosis noted",
+                            "template": "ptosis noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN V: R",
+                    "template": "R (CN V) {children}",
+                    "children": [
+                        {
+                            "text": "corneal reflex intact",
+                            "template": "corneal reflex intact"
+                        },
+                        {
+                            "text": "absent corneal reflex",
+                            "template": "absent corneal reflex"
+                        },
+                        {
+                            "text": "temporal muscle strength intact",
+                            "template": "temporal muscle strength intact"
+                        },
+                        {
+                            "text": "decreased temporal muscle strength",
+                            "template": "decreased temporal muscle strength"
+                        },
+                        {
+                            "text": "masseter muscle strength intact",
+                            "template": "masseter muscle strength intact"
+                        },
+                        {
+                            "text": "decreased masseter muscle strength",
+                            "template": "decreased masseter muscle strength"
+                        },
+                        {
+                            "text": "forehead sensation intact",
+                            "template": "forehead sensation intact"
+                        },
+                        {
+                            "text": "decreased forehead sensation",
+                            "template": "decreased forehead sensation"
+                        },
+                        {
+                            "text": "cheek sensation intact",
+                            "template": "cheek sensation intact"
+                        },
+                        {
+                            "text": "decreased cheek sensation",
+                            "template": "decreased cheek sensation"
+                        },
+                        {
+                            "text": "jaw strength intact",
+                            "template": "jaw strength intact"
+                        },
+                        {
+                            "text": "decreased jaw strength",
+                            "template": "decreased jaw strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN V: L",
+                    "template": "L (CN V) {children}",
+                    "children": [
+                        {
+                            "text": "corneal reflex intact",
+                            "template": "corneal reflex intact"
+                        },
+                        {
+                            "text": "absent corneal reflex",
+                            "template": "absent corneal reflex"
+                        },
+                        {
+                            "text": "temporal muscle strength intact",
+                            "template": "temporal muscle strength intact"
+                        },
+                        {
+                            "text": "decreased temporal muscle strength",
+                            "template": "decreased temporal muscle strength"
+                        },
+                        {
+                            "text": "masseter muscle strength intact",
+                            "template": "masseter muscle strength intact"
+                        },
+                        {
+                            "text": "decreased masseter muscle strength",
+                            "template": "decreased masseter muscle strength"
+                        },
+                        {
+                            "text": "forehead sensation intact",
+                            "template": "forehead sensation intact"
+                        },
+                        {
+                            "text": "decreased forehead sensation",
+                            "template": "decreased forehead sensation"
+                        },
+                        {
+                            "text": "cheek sensation intact",
+                            "template": "cheek sensation intact"
+                        },
+                        {
+                            "text": "decreased cheek sensation",
+                            "template": "decreased cheek sensation"
+                        },
+                        {
+                            "text": "jaw strength intact",
+                            "template": "jaw strength intact"
+                        },
+                        {
+                            "text": "decreased jaw strength",
+                            "template": "decreased jaw strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN V: BL",
+                    "template": "BL (CN V) {children}",
+                    "children": [
+                        {
+                            "text": "corneal reflex intact",
+                            "template": "corneal reflex intact"
+                        },
+                        {
+                            "text": "absent corneal reflex",
+                            "template": "absent corneal reflex"
+                        },
+                        {
+                            "text": "temporal muscle strength intact",
+                            "template": "temporal muscle strength intact"
+                        },
+                        {
+                            "text": "decreased temporal muscle strength",
+                            "template": "decreased temporal muscle strength"
+                        },
+                        {
+                            "text": "masseter muscle strength intact",
+                            "template": "masseter muscle strength intact"
+                        },
+                        {
+                            "text": "decreased masseter muscle strength",
+                            "template": "decreased masseter muscle strength"
+                        },
+                        {
+                            "text": "forehead sensation intact",
+                            "template": "forehead sensation intact"
+                        },
+                        {
+                            "text": "decreased forehead sensation",
+                            "template": "decreased forehead sensation"
+                        },
+                        {
+                            "text": "cheek sensation intact",
+                            "template": "cheek sensation intact"
+                        },
+                        {
+                            "text": "decreased cheek sensation",
+                            "template": "decreased cheek sensation"
+                        },
+                        {
+                            "text": "jaw strength intact",
+                            "template": "jaw strength intact"
+                        },
+                        {
+                            "text": "decreased jaw strength",
+                            "template": "decreased jaw strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN VII: R",
+                    "template": "R (CN VII) {children}",
+                    "children": [
+                        {
+                            "text": "facial symmetry intact",
+                            "template": "facial symmetry intact"
+                        },
+                        {
+                            "text": "facial asymmetry present",
+                            "template": "facial asymmetry present"
+                        },
+                        {
+                            "text": "facial droop present",
+                            "template": "facial droop present"
+                        },
+                        {
+                            "text": "eyebrow raise intact",
+                            "template": "eyebrow raise intact"
+                        },
+                        {
+                            "text": "eyebrow raise decreased",
+                            "template": "eyebrow raise decreased"
+                        },
+                        {
+                            "text": "eye close against resistance intact",
+                            "template": "eye close against resistance intact"
+                        },
+                        {
+                            "text": "eye close against resistance decreased",
+                            "template": "eye close against resistance decreased"
+                        },
+                        {
+                            "text": "cheek puff intact",
+                            "template": "cheek puff intact"
+                        },
+                        {
+                            "text": "cheek puff decreased",
+                            "template": "cheek puff decreased"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN VII: L",
+                    "template": "L (CN VII) {children}",
+                    "children": [
+                        {
+                            "text": "facial symmetry intact",
+                            "template": "facial symmetry intact"
+                        },
+                        {
+                            "text": "facial asymmetry present",
+                            "template": "facial asymmetry present"
+                        },
+                        {
+                            "text": "facial droop present",
+                            "template": "facial droop present"
+                        },
+                        {
+                            "text": "eyebrow raise intact",
+                            "template": "eyebrow raise intact"
+                        },
+                        {
+                            "text": "eyebrow raise decreased",
+                            "template": "eyebrow raise decreased"
+                        },
+                        {
+                            "text": "eye close against resistance intact",
+                            "template": "eye close against resistance intact"
+                        },
+                        {
+                            "text": "eye close against resistance decreased",
+                            "template": "eye close against resistance decreased"
+                        },
+                        {
+                            "text": "cheek puff intact",
+                            "template": "cheek puff intact"
+                        },
+                        {
+                            "text": "cheek puff decreased",
+                            "template": "cheek puff decreased"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN VII: BL",
+                    "template": "BL (CN VII) {children}",
+                    "children": [
+                        {
+                            "text": "facial symmetry intact",
+                            "template": "facial symmetry intact"
+                        },
+                        {
+                            "text": "facial asymmetry present",
+                            "template": "facial asymmetry present"
+                        },
+                        {
+                            "text": "facial droop present",
+                            "template": "facial droop present"
+                        },
+                        {
+                            "text": "eyebrow raise intact",
+                            "template": "eyebrow raise intact"
+                        },
+                        {
+                            "text": "eyebrow raise decreased",
+                            "template": "eyebrow raise decreased"
+                        },
+                        {
+                            "text": "eye close against resistance intact",
+                            "template": "eye close against resistance intact"
+                        },
+                        {
+                            "text": "eye close against resistance decreased",
+                            "template": "eye close against resistance decreased"
+                        },
+                        {
+                            "text": "cheek puff intact",
+                            "template": "cheek puff intact"
+                        },
+                        {
+                            "text": "cheek puff decreased",
+                            "template": "cheek puff decreased"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN VIII: R",
+                    "template": "R side (CN VIII) {children}",
+                    "children": [
+                        {
+                            "text": "hearing intact",
+                            "template": "hearing intact"
+                        },
+                        {
+                            "text": "hearing decreased",
+                            "template": "hearing decreased"
+                        },
+                        {
+                            "text": "deafness",
+                            "template": "deafness"
+                        },
+                        {
+                            "text": "Weber normal",
+                            "template": "Weber normal"
+                        },
+                        {
+                            "text": "Weber with right lateralization",
+                            "template": "Weber with right lateralization"
+                        },
+                        {
+                            "text": "Weber with left lateralization",
+                            "template": "Weber with left lateralization"
+                        },
+                        {
+                            "text": "Rinne normal",
+                            "template": "Rinne normal (air conduction greater than bone bilaterally)"
+                        },
+                        {
+                            "text": "Rinne positive, right",
+                            "template": "Rinne positive (air conduction worse than bone on right)"
+                        },
+                        {
+                            "text": "Rinne positive, left",
+                            "template": "Rinne positive (air conduction worse than bone on left)"
+                        },
+                        {
+                            "text": "Rinne negative, right",
+                            "template": "Rinne negative (air conduction better than bone on right)"
+                        },
+                        {
+                            "text": "Rinne negative, left",
+                            "template": "Rinne negative (air conduction better than bone on left)"
+                        },
+                        {
+                            "text": "caloric reflex test intact",
+                            "template": "caloric reflex test intact"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN VIII: L",
+                    "template": "L side (CN VIII) {children}",
+                    "children": [
+                        {
+                            "text": "hearing intact",
+                            "template": "hearing intact"
+                        },
+                        {
+                            "text": "hearing decreased",
+                            "template": "hearing decreased"
+                        },
+                        {
+                            "text": "deafness",
+                            "template": "deafness"
+                        },
+                        {
+                            "text": "Weber normal",
+                            "template": "Weber normal"
+                        },
+                        {
+                            "text": "Weber with right lateralization",
+                            "template": "Weber with right lateralization"
+                        },
+                        {
+                            "text": "Weber with left lateralization",
+                            "template": "Weber with left lateralization"
+                        },
+                        {
+                            "text": "Rinne normal",
+                            "template": "Rinne normal (air conduction greater than bone bilaterally)"
+                        },
+                        {
+                            "text": "Rinne positive, right",
+                            "template": "Rinne positive (air conduction worse than bone on right)"
+                        },
+                        {
+                            "text": "Rinne positive, left",
+                            "template": "Rinne positive (air conduction worse than bone on left)"
+                        },
+                        {
+                            "text": "Rinne negative, right",
+                            "template": "Rinne negative (air conduction better than bone on right)"
+                        },
+                        {
+                            "text": "Rinne negative, left",
+                            "template": "Rinne negative (air conduction better than bone on left)"
+                        },
+                        {
+                            "text": "caloric reflex test intact",
+                            "template": "caloric reflex test intact"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN VIII: BL",
+                    "template": "BL (CN VIII) {children}",
+                    "children": [
+                        {
+                            "text": "hearing intact",
+                            "template": "hearing intact"
+                        },
+                        {
+                            "text": "hearing decreased",
+                            "template": "hearing decreased"
+                        },
+                        {
+                            "text": "deafness",
+                            "template": "deafness"
+                        },
+                        {
+                            "text": "Weber normal",
+                            "template": "Weber normal"
+                        },
+                        {
+                            "text": "Weber with right lateralization",
+                            "template": "Weber with right lateralization"
+                        },
+                        {
+                            "text": "Weber with left lateralization",
+                            "template": "Weber with left lateralization"
+                        },
+                        {
+                            "text": "Rinne normal",
+                            "template": "Rinne normal (air conduction greater than bone bilaterally)"
+                        },
+                        {
+                            "text": "Rinne positive, right",
+                            "template": "Rinne positive (air conduction worse than bone on right)"
+                        },
+                        {
+                            "text": "Rinne positive, left",
+                            "template": "Rinne positive (air conduction worse than bone on left)"
+                        },
+                        {
+                            "text": "Rinne negative, right",
+                            "template": "Rinne negative (air conduction better than bone on right)"
+                        },
+                        {
+                            "text": "Rinne negative, left",
+                            "template": "Rinne negative (air conduction better than bone on left)"
+                        },
+                        {
+                            "text": "caloric reflex test intact",
+                            "template": "caloric reflex test intact"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN IX\/X",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "swallowing intact",
+                            "template": "ability to swallow intact (CN IX\/X intact)"
+                        },
+                        {
+                            "text": "swallowing impaired",
+                            "template": "swallowing impaired (CN IX\/X diminished)"
+                        },
+                        {
+                            "text": "gag reflex intact",
+                            "template": "gag reflex intact (CN IX\/X intact)"
+                        },
+                        {
+                            "text": "gag reflex diminished",
+                            "template": "gag reflex diminished (CN IX\/X diminished)"
+                        },
+                        {
+                            "text": "uvula midline",
+                            "template": "uvula midline (CN IX\/X intact)"
+                        },
+                        {
+                            "text": "uvula deviated to right",
+                            "template": "uvula deviated to right (CN IX\/X diminished)"
+                        },
+                        {
+                            "text": "uvula deviatied to left",
+                            "template": "uvula deviatied to left (CN IX\/X diminished)"
+                        },
+                        {
+                            "text": "hoarse voice quality present",
+                            "template": "hoarse voice quality present (CN IX\/X diminished)"
+                        },
+                        {
+                            "text": "nasal voice quality present",
+                            "template": "nasal voice quality present (CN IX\/X diminished)"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN XI: R",
+                    "template": "R side (CN XI) {children}",
+                    "children": [
+                        {
+                            "text": "shoulder shrug intact",
+                            "template": "shoulder shrug intact"
+                        },
+                        {
+                            "text": "shoulder shrug decreased",
+                            "template": "shoulder shrug decreased"
+                        },
+                        {
+                            "text": "ability to turn head against resistance intact",
+                            "template": "ability to turn head against resistance intact"
+                        },
+                        {
+                            "text": "ability to turn head against resistance diminished",
+                            "template": "ability to turn head against resistance diminished"
+                        },
+                        {
+                            "text": "trapezius muscle tone intact",
+                            "template": "trapezius muscle tone intact"
+                        },
+                        {
+                            "text": "trapezius muscle atrophy noted",
+                            "template": "trapezius muscle atrophy noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN XI: L",
+                    "template": "L side (CN XI) {children}",
+                    "children": [
+                        {
+                            "text": "shoulder shrug intact",
+                            "template": "shoulder shrug intact"
+                        },
+                        {
+                            "text": "shoulder shrug decreased",
+                            "template": "shoulder shrug decreased"
+                        },
+                        {
+                            "text": "ability to turn head against resistance intact",
+                            "template": "ability to turn head against resistance intact"
+                        },
+                        {
+                            "text": "ability to turn head against resistance diminished",
+                            "template": "ability to turn head against resistance diminished"
+                        },
+                        {
+                            "text": "trapezius muscle tone intact",
+                            "template": "trapezius muscle tone intact"
+                        },
+                        {
+                            "text": "trapezius muscle atrophy noted",
+                            "template": "trapezius muscle atrophy noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN XI: BL",
+                    "template": "BL (CN XI) {children}",
+                    "children": [
+                        {
+                            "text": "shoulder shrug intact",
+                            "template": "shoulder shrug intact"
+                        },
+                        {
+                            "text": "shoulder shrug decreased",
+                            "template": "shoulder shrug decreased"
+                        },
+                        {
+                            "text": "ability to turn head against resistance intact",
+                            "template": "ability to turn head against resistance intact"
+                        },
+                        {
+                            "text": "ability to turn head against resistance diminished",
+                            "template": "ability to turn head against resistance diminished"
+                        },
+                        {
+                            "text": "trapezius muscle tone intact",
+                            "template": "trapezius muscle tone intact"
+                        },
+                        {
+                            "text": "trapezius muscle atrophy noted",
+                            "template": "trapezius muscle atrophy noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN XII",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "speech articulation intact",
+                            "template": "speech articulation intact (CN XII intact)"
+                        },
+                        {
+                            "text": "speech articulation impaired",
+                            "template": "speech articulation impaired (CN XII diminished)"
+                        },
+                        {
+                            "text": "tongue midline without deviation",
+                            "template": "tongue midline without deviation (CN XII intact)"
+                        },
+                        {
+                            "text": "tongue deviated to right",
+                            "template": "tongue deviated to right (CN XII diminished)"
+                        },
+                        {
+                            "text": "tongue deviated to left",
+                            "template": "tongue deviated to left (CN XII diminished)"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other detail",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Neuro: Deep tendon reflexes",
+            "template": "NEURO: {children}",
+            "children": [
+                {
+                    "text": "DTRs intact and equal BL throughout",
+                    "template": "DTRs intact and equal BL throughout"
+                },
+                {
+                    "text": "Brachioradialis reflex, R",
+                    "template": "R brachioradialis reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Brachioradialis reflex, L",
+                    "template": "L brachioradialis reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Brachioradialis reflex, BL",
+                    "template": "L brachioradialis reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Biceps reflex, R",
+                    "template": "R biceps reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Biceps reflex, L",
+                    "template": "L biceps reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Biceps reflex, BL",
+                    "template": "BL biceps reflexes {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Triceps reflex, R",
+                    "template": "R triceps reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Triceps reflex, L",
+                    "template": "L triceps reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Triceps reflex, BL",
+                    "template": "BL triceps reflexes {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Patellar reflex, R",
+                    "template": "R patellar reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Patellar reflex, L",
+                    "template": "L patellar reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Patellar reflex, BL",
+                    "template": "BL patellar reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Achilles reflex, R",
+                    "template": "R achilles reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Achilles reflex, L",
+                    "template": "L achilles reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Achilles reflex, BL",
+                    "template": "BL achilles reflexes {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Ankle reflex, R",
+                    "template": "R ankle reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Ankle reflex, L",
+                    "template": "L ankle reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Ankle reflex, BL",
+                    "template": "BL ankle reflexes {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other detail",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Neuro: Dermatomes",
+            "template": "NEURO: {children}",
+            "children": [
+                {
+                    "text": "Cervical dermatomes, R",
+                    "template": "R cervical dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "C1 sensation diminished",
+                            "template": "C1 sensation diminished"
+                        },
+                        {
+                            "text": "C2 sensation diminished",
+                            "template": "C2 sensation diminished"
+                        },
+                        {
+                            "text": "C3 sensation diminished",
+                            "template": "C3 sensation diminished"
+                        },
+                        {
+                            "text": "C4 sensation diminished",
+                            "template": "C4 sensation diminished"
+                        },
+                        {
+                            "text": "C5 sensation diminished",
+                            "template": "C5 sensation diminished"
+                        },
+                        {
+                            "text": "C6 sensation diminished",
+                            "template": "C6 sensation diminished"
+                        },
+                        {
+                            "text": "C7 sensation diminished",
+                            "template": "C7 sensation diminished"
+                        },
+                        {
+                            "text": "C8 sensation diminished",
+                            "template": "C8 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Cervical dermatomes, L",
+                    "template": "L cervical dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "C1 sensation diminished",
+                            "template": "C1 sensation diminished"
+                        },
+                        {
+                            "text": "C2 sensation diminished",
+                            "template": "C2 sensation diminished"
+                        },
+                        {
+                            "text": "C3 sensation diminished",
+                            "template": "C3 sensation diminished"
+                        },
+                        {
+                            "text": "C4 sensation diminished",
+                            "template": "C4 sensation diminished"
+                        },
+                        {
+                            "text": "C5 sensation diminished",
+                            "template": "C5 sensation diminished"
+                        },
+                        {
+                            "text": "C6 sensation diminished",
+                            "template": "C6 sensation diminished"
+                        },
+                        {
+                            "text": "C7 sensation diminished",
+                            "template": "C7 sensation diminished"
+                        },
+                        {
+                            "text": "C8 sensation diminished",
+                            "template": "C8 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Cervical dermatomes, BL",
+                    "template": "BL cervical dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "C1 sensation diminished",
+                            "template": "C1 sensation diminished"
+                        },
+                        {
+                            "text": "C2 sensation diminished",
+                            "template": "C2 sensation diminished"
+                        },
+                        {
+                            "text": "C3 sensation diminished",
+                            "template": "C3 sensation diminished"
+                        },
+                        {
+                            "text": "C4 sensation diminished",
+                            "template": "C4 sensation diminished"
+                        },
+                        {
+                            "text": "C5 sensation diminished",
+                            "template": "C5 sensation diminished"
+                        },
+                        {
+                            "text": "C6 sensation diminished",
+                            "template": "C6 sensation diminished"
+                        },
+                        {
+                            "text": "C7 sensation diminished",
+                            "template": "C7 sensation diminished"
+                        },
+                        {
+                            "text": "C8 sensation diminished",
+                            "template": "C8 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Thoracic dermatomes, R",
+                    "template": "R thoracic dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "T1 sensation diminished",
+                            "template": "T1 sensation diminished"
+                        },
+                        {
+                            "text": "T2 sensation diminished",
+                            "template": "T2 sensation diminished"
+                        },
+                        {
+                            "text": "T3 sensation diminished",
+                            "template": "T3 sensation diminished"
+                        },
+                        {
+                            "text": "T4 sensation diminished",
+                            "template": "T4 sensation diminished"
+                        },
+                        {
+                            "text": "T5 sensation diminished",
+                            "template": "T5 sensation diminished"
+                        },
+                        {
+                            "text": "T6 sensation diminished",
+                            "template": "T6 sensation diminished"
+                        },
+                        {
+                            "text": "T7 sensation diminished",
+                            "template": "T7 sensation diminished"
+                        },
+                        {
+                            "text": "T8 sensation diminished",
+                            "template": "T8 sensation diminished"
+                        },
+                        {
+                            "text": "T9 sensation diminished",
+                            "template": "T9 sensation diminished"
+                        },
+                        {
+                            "text": "T10 sensation diminished",
+                            "template": "T10 sensation diminished"
+                        },
+                        {
+                            "text": "T11 sensation diminished",
+                            "template": "T11 sensation diminished"
+                        },
+                        {
+                            "text": "T12 sensation diminished",
+                            "template": "T12 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Thoracic dermatomes, L",
+                    "template": "L thoracic dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "T1 sensation diminished",
+                            "template": "T1 sensation diminished"
+                        },
+                        {
+                            "text": "T2 sensation diminished",
+                            "template": "T2 sensation diminished"
+                        },
+                        {
+                            "text": "T3 sensation diminished",
+                            "template": "T3 sensation diminished"
+                        },
+                        {
+                            "text": "T4 sensation diminished",
+                            "template": "T4 sensation diminished"
+                        },
+                        {
+                            "text": "T5 sensation diminished",
+                            "template": "T5 sensation diminished"
+                        },
+                        {
+                            "text": "T6 sensation diminished",
+                            "template": "T6 sensation diminished"
+                        },
+                        {
+                            "text": "T7 sensation diminished",
+                            "template": "T7 sensation diminished"
+                        },
+                        {
+                            "text": "T8 sensation diminished",
+                            "template": "T8 sensation diminished"
+                        },
+                        {
+                            "text": "T9 sensation diminished",
+                            "template": "T9 sensation diminished"
+                        },
+                        {
+                            "text": "T10 sensation diminished",
+                            "template": "T10 sensation diminished"
+                        },
+                        {
+                            "text": "T11 sensation diminished",
+                            "template": "T11 sensation diminished"
+                        },
+                        {
+                            "text": "T12 sensation diminished",
+                            "template": "T12 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Thoracic dermatomes, BL",
+                    "template": "BL thoracic dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "T1 sensation diminished",
+                            "template": "T1 sensation diminished"
+                        },
+                        {
+                            "text": "T2 sensation diminished",
+                            "template": "T2 sensation diminished"
+                        },
+                        {
+                            "text": "T3 sensation diminished",
+                            "template": "T3 sensation diminished"
+                        },
+                        {
+                            "text": "T4 sensation diminished",
+                            "template": "T4 sensation diminished"
+                        },
+                        {
+                            "text": "T5 sensation diminished",
+                            "template": "T5 sensation diminished"
+                        },
+                        {
+                            "text": "T6 sensation diminished",
+                            "template": "T6 sensation diminished"
+                        },
+                        {
+                            "text": "T7 sensation diminished",
+                            "template": "T7 sensation diminished"
+                        },
+                        {
+                            "text": "T8 sensation diminished",
+                            "template": "T8 sensation diminished"
+                        },
+                        {
+                            "text": "T9 sensation diminished",
+                            "template": "T9 sensation diminished"
+                        },
+                        {
+                            "text": "T10 sensation diminished",
+                            "template": "T10 sensation diminished"
+                        },
+                        {
+                            "text": "T11 sensation diminished",
+                            "template": "T11 sensation diminished"
+                        },
+                        {
+                            "text": "T12 sensation diminished",
+                            "template": "T12 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lumbar dermatomes, R",
+                    "template": "R lumbar dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "L1 sensation diminished",
+                            "template": "L1 sensation diminished"
+                        },
+                        {
+                            "text": "L2 sensation diminished",
+                            "template": "L2 sensation diminished"
+                        },
+                        {
+                            "text": "L3 sensation diminished",
+                            "template": "L3 sensation diminished"
+                        },
+                        {
+                            "text": "L4 sensation diminished",
+                            "template": "L4 sensation diminished"
+                        },
+                        {
+                            "text": "L5 sensation diminished",
+                            "template": "L5 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lumbar dermatomes, L",
+                    "template": "L lumbar dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "L1 sensation diminished",
+                            "template": "L1 sensation diminished"
+                        },
+                        {
+                            "text": "L2 sensation diminished",
+                            "template": "L2 sensation diminished"
+                        },
+                        {
+                            "text": "L3 sensation diminished",
+                            "template": "L3 sensation diminished"
+                        },
+                        {
+                            "text": "L4 sensation diminished",
+                            "template": "L4 sensation diminished"
+                        },
+                        {
+                            "text": "L5 sensation diminished",
+                            "template": "L5 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lumbar dermatomes, BL",
+                    "template": "BL lumbar dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "L1 sensation diminished",
+                            "template": "L1 sensation diminished"
+                        },
+                        {
+                            "text": "L2 sensation diminished",
+                            "template": "L2 sensation diminished"
+                        },
+                        {
+                            "text": "L3 sensation diminished",
+                            "template": "L3 sensation diminished"
+                        },
+                        {
+                            "text": "L4 sensation diminished",
+                            "template": "L4 sensation diminished"
+                        },
+                        {
+                            "text": "L5 sensation diminished",
+                            "template": "L5 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Sacral dermatomes, R",
+                    "template": "R sacral dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "S1 sensation diminished",
+                            "template": "S1 sensation diminished"
+                        },
+                        {
+                            "text": "S2 sensation diminished",
+                            "template": "S2 sensation diminished"
+                        },
+                        {
+                            "text": "S3 sensation diminished",
+                            "template": "S3 sensation diminished"
+                        },
+                        {
+                            "text": "S4 sensation diminished",
+                            "template": "S4 sensation diminished"
+                        },
+                        {
+                            "text": "S5 sensation diminished",
+                            "template": "S5 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Sacral dermatomes, L",
+                    "template": "L sacral dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "S1 sensation diminished",
+                            "template": "S1 sensation diminished"
+                        },
+                        {
+                            "text": "S2 sensation diminished",
+                            "template": "S2 sensation diminished"
+                        },
+                        {
+                            "text": "S3 sensation diminished",
+                            "template": "S3 sensation diminished"
+                        },
+                        {
+                            "text": "S4 sensation diminished",
+                            "template": "S4 sensation diminished"
+                        },
+                        {
+                            "text": "S5 sensation diminished",
+                            "template": "S5 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Sacral dermatomes, BL",
+                    "template": "BL sacral dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "S1 sensation diminished",
+                            "template": "S1 sensation diminished"
+                        },
+                        {
+                            "text": "S2 sensation diminished",
+                            "template": "S2 sensation diminished"
+                        },
+                        {
+                            "text": "S3 sensation diminished",
+                            "template": "S3 sensation diminished"
+                        },
+                        {
+                            "text": "S4 sensation diminished",
+                            "template": "S4 sensation diminished"
+                        },
+                        {
+                            "text": "S5 sensation diminished",
+                            "template": "S5 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other detail",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Neuro: Gait, Station",
+            "template": "NEURO: {children}",
+            "children": [
+                {
+                    "text": "normal gait and station",
+                    "template": "normal gait and station"
+                },
+                {
+                    "text": "normal gait",
+                    "template": "normal gait"
+                },
+                {
+                    "text": "normal station",
+                    "template": "normal station"
+                },
+                {
+                    "text": "Romberg test positive",
+                    "template": "Romberg test positive"
+                },
+                {
+                    "text": "Romberg test negative",
+                    "template": "Romberg test negative"
+                },
+                {
+                    "text": "Gait",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "broad based gait",
+                            "template": "broad based gait"
+                        },
+                        {
+                            "text": "shuffling gait",
+                            "template": "shuffling gait"
+                        },
+                        {
+                            "text": "shortened step length",
+                            "template": "shortened step length"
+                        },
+                        {
+                            "text": "limp, right",
+                            "template": "limp present (affecting right side)"
+                        },
+                        {
+                            "text": "limp, left",
+                            "template": "limp present (affecting left side)"
+                        },
+                        {
+                            "text": "wide based gait",
+                            "template": "wide based gait"
+                        },
+                        {
+                            "text": "gait accuracy intact",
+                            "template": "gait accuracy intact"
+                        },
+                        {
+                            "text": "staggering gait noted",
+                            "template": "staggering gait noted"
+                        },
+                        {
+                            "text": "tandem walking intact",
+                            "template": "tandem walking intact"
+                        },
+                        {
+                            "text": "tandem walking impaired",
+                            "template": "tandem walking impaired"
+                        },
+                        {
+                            "text": "toe walking noted",
+                            "template": "toe walking noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "Station",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "positive Romberg (eyes open)",
+                            "template": "positive Romberg (eyes open)"
+                        },
+                        {
+                            "text": "negative Romberg (eyes open)",
+                            "template": "negative Romberg (eyes open)"
+                        },
+                        {
+                            "text": "positive Romberg (eyes closed)",
+                            "template": "positive Romberg (eyes closed)"
+                        },
+                        {
+                            "text": "pronator drift, eyes open, right",
+                            "template": "pronator drift noted with eyes open (affecting right upper extremity)"
+                        },
+                        {
+                            "text": "pronator drift, eyes open, left",
+                            "template": "pronator drift noted with eyes open (affecting left upper extremity)"
+                        },
+                        {
+                            "text": "pronator drift, eyes closed, right",
+                            "template": "pronator drift noted with eyes closed (affecting right upper extremity)"
+                        },
+                        {
+                            "text": "pronator drift, eyes closed, left",
+                            "template": "pronator drift noted with eyes closed (affecting left upper extremity)"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other detail",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Neuro: Pathological reflexes",
+            "template": "NEURO: {children}",
+            "children": [
+                {
+                    "text": "no pathological reflexes elicited",
+                    "template": "no pathological reflexes elicited"
+                },
+                {
+                    "text": "Babinski reflex",
+                    "template": "Babinski reflex {children}",
+                    "children": [
+                        {
+                            "text": "elicted on the right",
+                            "template": "elicted on the right"
+                        },
+                        {
+                            "text": "not elicited on the right",
+                            "template": "not elicited on the right"
+                        },
+                        {
+                            "text": "elicited on the left",
+                            "template": "elicited on the left"
+                        },
+                        {
+                            "text": "not elicited on the left",
+                            "template": "not elicited on the left"
+                        },
+                        {
+                            "text": "elicited bilaterally",
+                            "template": "elicited bilaterally"
+                        },
+                        {
+                            "text": "absent bilaterally",
+                            "template": "absent bilaterally"
+                        }
+                    ]
+                },
+                {
+                    "text": "Glabellar reflex",
+                    "template": "glabellar reflex {children}",
+                    "children": [
+                        {
+                            "text": "elicted on the right",
+                            "template": "elicted on the right"
+                        },
+                        {
+                            "text": "not elicited on the right",
+                            "template": "not elicited on the right"
+                        },
+                        {
+                            "text": "elicited on the left",
+                            "template": "elicited on the left"
+                        },
+                        {
+                            "text": "not elicited on the left",
+                            "template": "not elicited on the left"
+                        },
+                        {
+                            "text": "elicited bilaterally",
+                            "template": "elicited bilaterally"
+                        },
+                        {
+                            "text": "absent bilaterally",
+                            "template": "absent bilaterally"
+                        }
+                    ]
+                },
+                {
+                    "text": "Palmomental reflex",
+                    "template": "palmomental reflex {children}",
+                    "children": [
+                        {
+                            "text": "elicted on the right",
+                            "template": "elicted on the right"
+                        },
+                        {
+                            "text": "not elicited on the right",
+                            "template": "not elicited on the right"
+                        },
+                        {
+                            "text": "elicited on the left",
+                            "template": "elicited on the left"
+                        },
+                        {
+                            "text": "not elicited on the left",
+                            "template": "not elicited on the left"
+                        },
+                        {
+                            "text": "elicited bilaterally",
+                            "template": "elicited bilaterally"
+                        },
+                        {
+                            "text": "absent bilaterally",
+                            "template": "absent bilaterally"
+                        }
+                    ]
+                },
+                {
+                    "text": "Snout reflex",
+                    "template": "snout reflex {children}",
+                    "children": [
+                        {
+                            "text": "elicted on the right",
+                            "template": "elicted on the right"
+                        },
+                        {
+                            "text": "not elicited on the right",
+                            "template": "not elicited on the right"
+                        },
+                        {
+                            "text": "elicited on the left",
+                            "template": "elicited on the left"
+                        },
+                        {
+                            "text": "not elicited on the left",
+                            "template": "not elicited on the left"
+                        },
+                        {
+                            "text": "elicited bilaterally",
+                            "template": "elicited bilaterally"
+                        },
+                        {
+                            "text": "absent bilaterally",
+                            "template": "absent bilaterally"
+                        }
+                    ]
+                },
+                {
+                    "text": "Root reflex",
+                    "template": "root reflex {children}",
+                    "children": [
+                        {
+                            "text": "elicted on the right",
+                            "template": "elicted on the right"
+                        },
+                        {
+                            "text": "not elicited on the right",
+                            "template": "not elicited on the right"
+                        },
+                        {
+                            "text": "elicited on the left",
+                            "template": "elicited on the left"
+                        },
+                        {
+                            "text": "not elicited on the left",
+                            "template": "not elicited on the left"
+                        },
+                        {
+                            "text": "elicited bilaterally",
+                            "template": "elicited bilaterally"
+                        },
+                        {
+                            "text": "absent bilaterally",
+                            "template": "absent bilaterally"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other detail",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Neuro: Sensory",
+            "template": "NEURO: {children}",
+            "children": [
+                {
+                    "text": "sensation grossly intact throughout",
+                    "template": "sensation grossly intact throughout"
+                },
+                {
+                    "text": "Sensation to light touch",
+                    "template": "sensation to light touch {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity, right intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, intact BL",
+                            "template": "intact in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "upper extremity, right diminished",
+                            "template": "diminished in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left diminished",
+                            "template": "diminished in left upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, diminished BL",
+                            "template": "diminished in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "lower extremity, right intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, intact BL",
+                            "template": "intact in the bilateral lower extremities"
+                        },
+                        {
+                            "text": "lower extremity, right diminished",
+                            "template": "diminished in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left diminished",
+                            "template": "diminished in left lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, diminished BL",
+                            "template": "diminished in the bilateral lower extremities"
+                        }
+                    ]
+                },
+                {
+                    "text": "Sensation to dull touch",
+                    "template": "sensation to dull touch {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity, right intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, intact BL",
+                            "template": "intact in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "upper extremity, right diminished",
+                            "template": "diminished in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left diminished",
+                            "template": "diminished in left upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, diminished BL",
+                            "template": "diminished in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "lower extremity, right intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, intact BL",
+                            "template": "intact in the bilateral lower extremities"
+                        },
+                        {
+                            "text": "lower extremity, right diminished",
+                            "template": "diminished in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left diminished",
+                            "template": "diminished in left lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, diminished BL",
+                            "template": "diminished in the bilateral lower extremities"
+                        }
+                    ]
+                },
+                {
+                    "text": "Sensation to cold temperature",
+                    "template": "sensation to cold temperature {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity, right intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, intact BL",
+                            "template": "intact in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "upper extremity, right diminished",
+                            "template": "diminished in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left diminished",
+                            "template": "diminished in left upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, diminished BL",
+                            "template": "diminished in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "lower extremity, right intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, intact BL",
+                            "template": "intact in the bilateral lower extremities"
+                        },
+                        {
+                            "text": "lower extremity, right diminished",
+                            "template": "diminished in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left diminished",
+                            "template": "diminished in left lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, diminished BL",
+                            "template": "diminished in the bilateral lower extremities"
+                        }
+                    ]
+                },
+                {
+                    "text": "Sensation to warm temperature",
+                    "template": "sensation to warm temperature {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity, right intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, intact BL",
+                            "template": "intact in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "upper extremity, right diminished",
+                            "template": "diminished in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left diminished",
+                            "template": "diminished in left upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, diminished BL",
+                            "template": "diminished in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "lower extremity, right intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, intact BL",
+                            "template": "intact in the bilateral lower extremities"
+                        },
+                        {
+                            "text": "lower extremity, right diminished",
+                            "template": "diminished in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left diminished",
+                            "template": "diminished in left lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, diminished BL",
+                            "template": "diminished in the bilateral lower extremities"
+                        }
+                    ]
+                },
+                {
+                    "text": "Vibratory sensation",
+                    "template": "vibratory sensation {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity, right intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, intact BL",
+                            "template": "intact in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "upper extremity, right diminished",
+                            "template": "diminished in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left diminished",
+                            "template": "diminished in left upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, diminished BL",
+                            "template": "diminished in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "lower extremity, right intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, intact BL",
+                            "template": "intact in the bilateral lower extremities"
+                        },
+                        {
+                            "text": "lower extremity, right diminished",
+                            "template": "diminished in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left diminished",
+                            "template": "diminished in left lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, diminished BL",
+                            "template": "diminished in the bilateral lower extremities"
+                        }
+                    ]
+                },
+                {
+                    "text": "Stereognosis",
+                    "template": "stereognosis {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity, right intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, intact BL",
+                            "template": "intact in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "upper extremity, right diminished",
+                            "template": "diminished in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left diminished",
+                            "template": "diminished in left upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, diminished BL",
+                            "template": "diminished in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "lower extremity, right intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, intact BL",
+                            "template": "intact in the bilateral lower extremities"
+                        },
+                        {
+                            "text": "lower extremity, right diminished",
+                            "template": "diminished in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left diminished",
+                            "template": "diminished in left lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, diminished BL",
+                            "template": "diminished in the bilateral lower extremities"
+                        }
+                    ]
+                },
+                {
+                    "text": "Paresthesias",
+                    "template": "parethesias present {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity, right",
+                            "template": "in the R upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left",
+                            "template": "in the L upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, bilateral",
+                            "template": "bilaterally in the upper extremities"
+                        },
+                        {
+                            "text": "lower extremity, right",
+                            "template": "in the R lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left",
+                            "template": "in the L lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, bilateral",
+                            "template": "bilaterally in the lower extremities"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other detail",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Psychiatric",
+            "template": "PSYCH: {children}",
+            "children": [
+                {
+                    "text": "AO x 3",
+                    "template": "alert and oriented to time, place, and person"
+                },
+                {
+                    "text": "insight intact",
+                    "template": "insight intact"
+                },
+                {
+                    "text": "judgment intact",
+                    "template": "judgment intact"
+                },
+                {
+                    "text": "Language",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "normal and intact",
+                            "template": "language is normal and intact"
+                        },
+                        {
+                            "text": "verbal language intact",
+                            "template": "verbal language intact"
+                        },
+                        {
+                            "text": "verbal language impaired",
+                            "template": "verbal language impaired"
+                        },
+                        {
+                            "text": "written language intact",
+                            "template": "written language intact"
+                        },
+                        {
+                            "text": "written language impaired",
+                            "template": "written language impaired"
+                        },
+                        {
+                            "text": "agraphia noted",
+                            "template": "agraphia noted"
+                        },
+                        {
+                            "text": "receptive language intact",
+                            "template": "receptive language intact"
+                        },
+                        {
+                            "text": "receptive language impaired",
+                            "template": "receptive language impaired"
+                        },
+                        {
+                            "text": "expressive language intact",
+                            "template": "expressive language intact"
+                        },
+                        {
+                            "text": "expressive language impaired",
+                            "template": "expressive language impaired"
+                        },
+                        {
+                            "text": "naming ability intact",
+                            "template": "naming ability intact"
+                        },
+                        {
+                            "text": "anomia noted",
+                            "template": "anomia noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "Mental status\/Concentration",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "responds appropriately",
+                            "template": "responds appropriately"
+                        },
+                        {
+                            "text": "responds inappropriately",
+                            "template": "responds inappropriately"
+                        },
+                        {
+                            "text": "short term memory intact",
+                            "template": "short term memory intact"
+                        },
+                        {
+                            "text": "short term memory impaired",
+                            "template": "short term memory impaired"
+                        },
+                        {
+                            "text": "long term memory intact",
+                            "template": "long term memory intact"
+                        },
+                        {
+                            "text": "long term memory impaired",
+                            "template": "long term memory impaired"
+                        },
+                        {
+                            "text": "memory grossly intact",
+                            "template": "memory grossly intact"
+                        },
+                        {
+                            "text": "memory deficits noted",
+                            "template": "memory deficits noted"
+                        },
+                        {
+                            "text": "thought content normal",
+                            "template": "thought content normal"
+                        },
+                        {
+                            "text": "abnormal thought content",
+                            "template": "abnormal thought content"
+                        },
+                        {
+                            "text": "appears coherent",
+                            "template": "appears coherent"
+                        },
+                        {
+                            "text": "appears incoherent",
+                            "template": "appears incoherent"
+                        },
+                        {
+                            "text": "abstraction ability intact",
+                            "template": "abstraction ability intact"
+                        },
+                        {
+                            "text": "abstraction ability impaired",
+                            "template": "abstraction ability impaired"
+                        },
+                        {
+                            "text": "unable to assess mental status",
+                            "template": "unable to assess mental status"
+                        },
+                        {
+                            "text": "unresponsive to questions",
+                            "template": "unresponsive to questions"
+                        },
+                        {
+                            "text": "able to concentrate",
+                            "template": "able to concentrate",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Alertness",
+                    "template": "patient appears {children}",
+                    "children": [
+                        {
+                            "text": "alert",
+                            "template": "alert"
+                        },
+                        {
+                            "text": "drowsy but arousable",
+                            "template": "drowsy but arousable"
+                        },
+                        {
+                            "text": "drowsy and non-arousable",
+                            "template": "drowsy and non-arousable"
+                        },
+                        {
+                            "text": "lethargic",
+                            "template": "lethargic"
+                        }
+                    ]
+                },
+                {
+                    "text": "Orientation",
+                    "template": "patient is {children}",
+                    "children": [
+                        {
+                            "text": "oriented to time",
+                            "template": "oriented to time",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "oriented to place",
+                            "template": "oriented to place",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "oriented to self",
+                            "template": "oriented to self",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "oriented to examiner",
+                            "template": "oriented to examiner",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "oriented to situation",
+                            "template": "oriented to situation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "knows current President",
+                            "template": "knows current President",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Mood",
+                    "template": "Mood {children}",
+                    "children": [
+                        {
+                            "text": "normal mood",
+                            "template": "normal mood"
+                        },
+                        {
+                            "text": "anxious",
+                            "template": "anxious",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "depressed",
+                            "template": "depressed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "Irritable",
+                            "template": "Irritable",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "apathetic mood",
+                            "template": "apathetic mood",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "euphoric",
+                            "template": "euphoric",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "elevated",
+                            "template": "elevated",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "expansive",
+                            "template": "expansive",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Affect",
+                    "template": "Affect: {children}",
+                    "children": [
+                        {
+                            "text": "normal affect",
+                            "template": "normal affect"
+                        },
+                        {
+                            "text": "appropriate to thought content",
+                            "template": "appropriate to thought content",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "inappropriate to thought content",
+                            "template": "inappropriate to thought content",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "broad",
+                            "template": "broad",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "expansive",
+                            "template": "expansive",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "reserved",
+                            "template": "reserved",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "constricted",
+                            "template": "constricted"
+                        },
+                        {
+                            "text": "intense",
+                            "template": "intense",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sad",
+                            "template": "sad"
+                        },
+                        {
+                            "text": "depressed",
+                            "template": "depressed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "blunted",
+                            "template": "blunted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "worried",
+                            "template": "worried",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "guarded",
+                            "template": "guarded",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "apathetic",
+                            "template": "apathetic",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "anxious",
+                            "template": "anxious",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "defensive",
+                            "template": "defensive",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flat",
+                            "template": "flat",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hostile",
+                            "template": "hostile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "labile",
+                            "template": "labile",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Speech",
+                    "template": "speech is {children}",
+                    "children": [
+                        {
+                            "text": "speech rate\/rhythm\/volume normal",
+                            "template": "speech rate\/rhythm\/volume normal"
+                        },
+                        {
+                            "text": "rate, normal",
+                            "template": "normal rate"
+                        },
+                        {
+                            "text": "rhythm, normal",
+                            "template": "normal rhythm"
+                        },
+                        {
+                            "text": "volume, normal",
+                            "template": "normal volume"
+                        },
+                        {
+                            "text": "tone, normal",
+                            "template": "normal tone"
+                        },
+                        {
+                            "text": "spontaneous",
+                            "template": "spontaneous",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "slowed",
+                            "template": "slowed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "prolonged latency",
+                            "template": "prolonged latency",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pressured",
+                            "template": "pressured",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "loud",
+                            "template": "loud",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "slurred",
+                            "template": "slurred",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "dysarthric",
+                            "template": "dysarthric",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Thought process",
+                    "template": "though process is {children}",
+                    "children": [
+                        {
+                            "text": "normal",
+                            "template": "normal"
+                        },
+                        {
+                            "text": "logical",
+                            "template": "logical",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lucid",
+                            "template": "lucid",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "goal directed",
+                            "template": "goal directed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "circumstantial",
+                            "template": "circumstantial",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ruminations",
+                            "template": "ruminations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "coherent",
+                            "template": "coherent",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tangential",
+                            "template": "tangential",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "perseveration",
+                            "template": "perseveration",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "loosening of associations",
+                            "template": "loosening of associations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flight of ideas is noted",
+                            "template": "flight of ideas is noted"
+                        },
+                        {
+                            "text": "no flight of ideas",
+                            "template": "no flight of ideas"
+                        },
+                        {
+                            "text": "ideas of influence present",
+                            "template": "ideas of influence present"
+                        },
+                        {
+                            "text": "no ideas of influence",
+                            "template": "no ideas of influence"
+                        },
+                        {
+                            "text": "ideas of reference present",
+                            "template": "ideas of reference present"
+                        },
+                        {
+                            "text": "no ideas of reference",
+                            "template": "no ideas of reference"
+                        }
+                    ]
+                },
+                {
+                    "text": "Thought content",
+                    "template": "thought content is {children}",
+                    "children": [
+                        {
+                            "text": "loosening of associations",
+                            "template": "loosening of associations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "phobias",
+                            "template": "phobias",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ideas of reference",
+                            "template": "ideas of reference",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "thought broadcasting",
+                            "template": "thought broadcasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "obsessions",
+                            "template": "obsessions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "depersonalization",
+                            "template": "depersonalization",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "derealization",
+                            "template": "derealization",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "confabulation",
+                            "template": "confabulation",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Fund of knowledge",
+                    "template": "Fund of knowledge: {children}",
+                    "children": [
+                        {
+                            "text": "normal intellectual ability",
+                            "template": "normal intellectual ability"
+                        },
+                        {
+                            "text": "below average intelligence",
+                            "template": "below average intelligence"
+                        },
+                        {
+                            "text": "above average intelligence",
+                            "template": "above average intelligence"
+                        }
+                    ]
+                },
+                {
+                    "text": "Delusions, Hallucinations",
+                    "template": "Delusions and Hallucinations: {children}",
+                    "children": [
+                        {
+                            "text": "no delusions noted",
+                            "template": "no delusions noted"
+                        },
+                        {
+                            "text": "mood congruent delusions present",
+                            "template": "mood congruent delusions present"
+                        },
+                        {
+                            "text": "mood incongruent delusions present",
+                            "template": "mood incongruent delusions present"
+                        },
+                        {
+                            "text": "paranoid delusions present",
+                            "template": "paranoid delusions present"
+                        },
+                        {
+                            "text": "delusions of grandeur present",
+                            "template": "delusions of grandeur present"
+                        },
+                        {
+                            "text": "religious delusions present",
+                            "template": "religious delusions present"
+                        },
+                        {
+                            "text": "no hallucinations noted",
+                            "template": "no hallucinations noted"
+                        },
+                        {
+                            "text": "auditory hallucinations present",
+                            "template": "auditory hallucinations present"
+                        },
+                        {
+                            "text": "visual hallucinations present",
+                            "template": "visual hallucinations present"
+                        },
+                        {
+                            "text": "gustatory hallucinations present",
+                            "template": "gustatory hallucinations present"
+                        }
+                    ]
+                },
+                {
+                    "text": "Homicidality, Suicidality",
+                    "template": "Homicidality and Suicidality: {children}",
+                    "children": [
+                        {
+                            "text": "suicidal ideation present",
+                            "template": "suicidal ideation present"
+                        },
+                        {
+                            "text": "no suicidal ideation present",
+                            "template": "no suicidal ideation present"
+                        },
+                        {
+                            "text": "intent to act on suicidal ideas",
+                            "template": "intent to act on suicidal ideas",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "non-lethal plan for suicide",
+                            "template": "non-lethal plan for suicide"
+                        },
+                        {
+                            "text": "lethal plan for suicide",
+                            "template": "lethal plan for suicide"
+                        },
+                        {
+                            "text": "homicidal ideation present",
+                            "template": "homicidal ideation present"
+                        },
+                        {
+                            "text": "no homicidal ideation",
+                            "template": "no homicidal ideation"
+                        },
+                        {
+                            "text": "intent to act on homicidal ideas",
+                            "template": "intent to act on homicidal ideas"
+                        },
+                        {
+                            "text": "no intent to act on homicidal ideas",
+                            "template": "no intent to act on homicidal ideas"
+                        },
+                        {
+                            "text": "non-lethal plan for homicide",
+                            "template": "non-lethal plan for homicide"
+                        },
+                        {
+                            "text": "lethal plan for homicide",
+                            "template": "lethal plan for homicide"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other detail",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        }
+    ]
+}

+ 8370 - 0
storage/templates/exam-default/exam-psych-detail/psych-exam.json

@@ -0,0 +1,8370 @@
+{
+    "section": "exam-psych-detail",
+    "templateSet": "PSYCH Exam",
+    "templates": [
+        {
+            "text": "1-Click normal exams",
+            "template": "{children}",
+            "children": [
+                {
+                    "text": "GEN: NAD",
+                    "template": "GEN: NAD"
+                },
+                {
+                    "text": "NEURO: AO x 3",
+                    "template": "NEURO: AO x 3"
+                },
+                {
+                    "text": "MEMORY: recent, remote intact",
+                    "template": "NEURO: recent and remote memory intact"
+                },
+                {
+                    "text": "NEURO: NL musc strength, tone",
+                    "template": "NEURO: NL muscle strength and tone"
+                },
+                {
+                    "text": "NEURO: NL gait and station",
+                    "template": "NEURO: NL gait and station"
+                },
+                {
+                    "text": "PSYCH: NL speech articul\/vol\/rate",
+                    "template": "PSYCH: NL speech articulation, volume, and rate"
+                },
+                {
+                    "text": "PSYCH: NL thought rate",
+                    "template": "PSYCH: NL thought rate"
+                },
+                {
+                    "text": "PSYCH: NL reasoning ability",
+                    "template": "PSYCH: NL reasoning ability"
+                },
+                {
+                    "text": "PSYCH: no delusions\/hallucs",
+                    "template": "PSYCH: no delusions or hallucinations"
+                },
+                {
+                    "text": "PSYCH: judgment, insight intact",
+                    "template": "PSYCH: judgment and insight intact"
+                },
+                {
+                    "text": "PSYCH: NL conc and attention",
+                    "template": "PSYCH: NL concentration and attention span"
+                },
+                {
+                    "text": "PSYCH: NL mood and affect",
+                    "template": "PSYCH: NL mood and affect"
+                }
+            ]
+        },
+        {
+            "text": "General",
+            "template": "GEN: {children}",
+            "children": [
+                {
+                    "text": "NAD",
+                    "template": "NAD",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "cooperative with exam",
+                    "template": "cooperative with exam",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "well groomed",
+                    "template": "well groomed",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "well developed",
+                    "template": "well developed",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "well nourished",
+                    "template": "well nourished",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "overweight",
+                    "template": "overweight",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "obese",
+                    "template": "obese",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "morbidly obese",
+                    "template": "morbidly obese",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "emaciated",
+                    "template": "emaciated",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "appears to be stated age",
+                    "template": "appears to be stated age",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "appears older than stated age",
+                    "template": "appears older than stated age",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "appears younger than stated age",
+                    "template": "appears younger than stated age",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "HEENT",
+            "template": "HEENT: {children}",
+            "children": [
+                {
+                    "text": "head normocephalic, atraumatic",
+                    "template": "head normocephalic, atraumatic"
+                },
+                {
+                    "text": "head normocephalic",
+                    "template": "head normocephalic",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "head atraumatic",
+                    "template": "head atraumatic",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "EOMI",
+                    "template": "EOMI"
+                },
+                {
+                    "text": "PERRLA",
+                    "template": "PERRLA"
+                },
+                {
+                    "text": "scleral icterus",
+                    "template": "scleral icterus",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "pale conjunctivae",
+                    "template": "pale conjunctivae",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "periorbital xanthelasma",
+                    "template": "periorbital xanthelasma",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "periorbital edema",
+                    "template": "periorbital edema",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "hearing grossly intact",
+                    "template": "hearing grossly intact",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "normal dentition",
+                    "template": "normal dentition"
+                },
+                {
+                    "text": "normal gums",
+                    "template": "normal gums"
+                },
+                {
+                    "text": "gingival hypertrophy",
+                    "template": "gingival hypertrophy",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "pharynx unremarkable",
+                    "template": "pharynx unremarkable"
+                },
+                {
+                    "text": "mucous membranes moist",
+                    "template": "mucous membranes moist",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "mucous membranes dry",
+                    "template": "mucous membranes dry",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "voice NL",
+                    "template": "voice NL"
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Neck",
+            "template": "NECK: {children}",
+            "children": [
+                {
+                    "text": "soft, nontender",
+                    "template": "soft, nontender"
+                },
+                {
+                    "text": "no increased JVP visible",
+                    "template": "no increased JVP visible"
+                },
+                {
+                    "text": "no cervical LN",
+                    "template": "no significant cervical lymphadenopathy"
+                },
+                {
+                    "text": "Lymphadenopathy",
+                    "template": "{children} lymphadenopathy",
+                    "children": [
+                        {
+                            "text": "shotty cervical",
+                            "template": "shotty cervical"
+                        },
+                        {
+                            "text": "submental",
+                            "template": "submental"
+                        },
+                        {
+                            "text": "R submandibular",
+                            "template": "R submandibular"
+                        },
+                        {
+                            "text": "L submandibular",
+                            "template": "L submandibular"
+                        },
+                        {
+                            "text": "R ant. cervical",
+                            "template": "R anterior cervical"
+                        },
+                        {
+                            "text": "L ant. cervical",
+                            "template": "L anterior cervical"
+                        },
+                        {
+                            "text": "R preauricular",
+                            "template": "R preauricular"
+                        },
+                        {
+                            "text": "L preauricular",
+                            "template": "L preauricular"
+                        },
+                        {
+                            "text": "R post. auricular",
+                            "template": "R posterior auricular"
+                        },
+                        {
+                            "text": "L post. auricular",
+                            "template": "L posterior auricular"
+                        },
+                        {
+                            "text": "R supraclavicular",
+                            "template": "R supraclavicular"
+                        },
+                        {
+                            "text": "L supraclavicular",
+                            "template": "L supraclavicular"
+                        }
+                    ]
+                },
+                {
+                    "text": "obese neck",
+                    "template": "neck obesity",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "thyromegaly",
+                    "template": "thyromegaly",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "JVP abnormality",
+                    "template": "JVP: {children}",
+                    "children": [
+                        {
+                            "text": "JVD",
+                            "template": "jugular venous distension",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "H-J reflux",
+                            "template": "hepatojugular reflux",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "inspiratory rise (Kussmaul)",
+                            "template": "inspiratory rise (Kussmaul)",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "JVP level (cm)",
+                    "template": "JVP {text} cm above the sternal angle",
+                    "type": "number"
+                },
+                {
+                    "text": "Neck circumference",
+                    "template": "Neck circumference: {text}",
+                    "type": "alpha"
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Respiratory",
+            "template": "RESP: {children}",
+            "children": [
+                {
+                    "text": "no respiratory distress",
+                    "template": "no respiratory distress"
+                },
+                {
+                    "text": "auscultation clear BL",
+                    "template": "clear to auscultation bilaterally"
+                },
+                {
+                    "text": "no wheezes\/rales\/rhonchi",
+                    "template": "no wheezes\/rales\/rhonchi"
+                },
+                {
+                    "text": "percussion clear BL",
+                    "template": "clear to percussion bilaterally"
+                },
+                {
+                    "text": "chest wall symmetric",
+                    "template": "chest wall symmetric"
+                },
+                {
+                    "text": "Abnl lung sounds, R",
+                    "template": "Abnl lung sounds, R: {children}",
+                    "children": [
+                        {
+                            "text": "whoop",
+                            "template": "whoop",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "stridor",
+                            "template": "stridor",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pleural rub",
+                            "template": "pleural rub"
+                        },
+                        {
+                            "text": "basilar rales",
+                            "template": "basilar rales"
+                        },
+                        {
+                            "text": "rales scattered",
+                            "template": "scattered rales"
+                        },
+                        {
+                            "text": "rhonchi scattered",
+                            "template": "scattered rhonchi"
+                        },
+                        {
+                            "text": "diminished breath sounds throughout",
+                            "template": "diminished breath sounds throughout"
+                        },
+                        {
+                            "text": "diminished breath sounds at bases",
+                            "template": "diminished breath sounds at bases"
+                        },
+                        {
+                            "text": "wheezes, expiration",
+                            "template": "expiratory wheezes"
+                        }
+                    ]
+                },
+                {
+                    "text": "Abnl lung sounds, L",
+                    "template": "Abnl lung sounds, L: {children}",
+                    "children": [
+                        {
+                            "text": "whoop",
+                            "template": "whoop",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "stridor",
+                            "template": "stridor",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pleural rub",
+                            "template": "pleural rub"
+                        },
+                        {
+                            "text": "basilar rales",
+                            "template": "basilar rales"
+                        },
+                        {
+                            "text": "rales scattered",
+                            "template": "scattered rales"
+                        },
+                        {
+                            "text": "rhonchi scattered",
+                            "template": "scattered rhonchi"
+                        },
+                        {
+                            "text": "diminished breath sounds throughout",
+                            "template": "diminished breath sounds throughout"
+                        },
+                        {
+                            "text": "diminished breath sounds at bases",
+                            "template": "diminished breath sounds at bases"
+                        },
+                        {
+                            "text": "wheezes, expiration",
+                            "template": "expiratory wheezes"
+                        }
+                    ]
+                },
+                {
+                    "text": "Abnl lung sounds, BL",
+                    "template": "Abnl lung sounds, BL: {children}",
+                    "children": [
+                        {
+                            "text": "whoop",
+                            "template": "whoop",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "stridor",
+                            "template": "stridor",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pleural rub",
+                            "template": "pleural rub"
+                        },
+                        {
+                            "text": "basilar rales",
+                            "template": "basilar rales"
+                        },
+                        {
+                            "text": "rales scattered",
+                            "template": "scattered rales"
+                        },
+                        {
+                            "text": "rhonchi scattered",
+                            "template": "scattered rhonchi"
+                        },
+                        {
+                            "text": "diminished breath sounds throughout",
+                            "template": "diminished breath sounds throughout"
+                        },
+                        {
+                            "text": "diminished breath sounds at bases",
+                            "template": "diminished breath sounds at bases"
+                        },
+                        {
+                            "text": "wheezes, expiration",
+                            "template": "expiratory wheezes"
+                        }
+                    ]
+                },
+                {
+                    "text": "Percussion, R",
+                    "template": "Percussion, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal to percussion",
+                            "template": "normal to percussion"
+                        },
+                        {
+                            "text": "dullness to percussion at base",
+                            "template": "dullness to percussion at base"
+                        },
+                        {
+                            "text": "dull throughout",
+                            "template": "dull to percussion throughout"
+                        }
+                    ]
+                },
+                {
+                    "text": "Percussion, L",
+                    "template": "Percussion, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal to percussion",
+                            "template": "normal to percussion"
+                        },
+                        {
+                            "text": "dullness to percussion at base",
+                            "template": "dullness to percussion at base"
+                        },
+                        {
+                            "text": "dull throughout",
+                            "template": "dull to percussion throughout"
+                        }
+                    ]
+                },
+                {
+                    "text": "Percussion, BL",
+                    "template": "Percussion, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal to percussion",
+                            "template": "normal to percussion"
+                        },
+                        {
+                            "text": "dullness to percussion at base",
+                            "template": "dullness to percussion at base"
+                        },
+                        {
+                            "text": "dull throughout",
+                            "template": "dull to percussion throughout"
+                        }
+                    ]
+                },
+                {
+                    "text": "Breathing dynamics, R",
+                    "template": "Breathing dynamics, R: {children}",
+                    "children": [
+                        {
+                            "text": "labored breathing",
+                            "template": "labored breathing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "accessory muscle use",
+                            "template": "accessory muscle use",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "rib retractions",
+                            "template": "rib retractions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abnormal diaphragm movement",
+                            "template": "abnormal diaphragm movement",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Breathing dynamics, L",
+                    "template": "Breathing dynamics, L: {children}",
+                    "children": [
+                        {
+                            "text": "labored breathing",
+                            "template": "labored breathing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "accessory muscle use",
+                            "template": "accessory muscle use",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "rib retractions",
+                            "template": "rib retractions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abnormal diaphragm movement",
+                            "template": "abnormal diaphragm movement",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Breathing dynamics, BL",
+                    "template": "Breathing dynamics, BL: {children}",
+                    "children": [
+                        {
+                            "text": "labored breathing",
+                            "template": "labored breathing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "accessory muscle use",
+                            "template": "accessory muscle use",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "rib retractions",
+                            "template": "rib retractions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abnormal diaphragm movement",
+                            "template": "abnormal diaphragm movement",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Cardiovascular",
+            "template": "CV: {children}",
+            "children": [
+                {
+                    "text": "RRR, no murmur\/rub\/gallop",
+                    "template": "RRR, no murmur\/rub\/gallop"
+                },
+                {
+                    "text": "S1, S2 findings",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "NL S1",
+                            "template": "NL S1"
+                        },
+                        {
+                            "text": "NL S2",
+                            "template": "NL S2"
+                        },
+                        {
+                            "text": "split S2",
+                            "template": "split S2"
+                        },
+                        {
+                            "text": "split S1",
+                            "template": "split S1"
+                        },
+                        {
+                            "text": "persistently split S2",
+                            "template": "persistently split S2"
+                        },
+                        {
+                            "text": "physiologically split S2",
+                            "template": "physiologically split S2"
+                        },
+                        {
+                            "text": "paradoxically split S2",
+                            "template": "paradoxically split S2"
+                        },
+                        {
+                            "text": "widely split S2",
+                            "template": "widely split S2"
+                        }
+                    ]
+                },
+                {
+                    "text": "S3 gallop",
+                    "template": "S3 gallop",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "S4 gallop",
+                    "template": "S4 gallop",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "regular rate and rhythm",
+                    "template": "regular rate and rhythm"
+                },
+                {
+                    "text": "regular rate",
+                    "template": "regular rate"
+                },
+                {
+                    "text": "regular rhythm",
+                    "template": "regular rhythm"
+                },
+                {
+                    "text": "no murmurs",
+                    "template": "no murmurs"
+                },
+                {
+                    "text": "Murmur grade",
+                    "template": "Murmur grade: {text}\/6",
+                    "type": "number"
+                },
+                {
+                    "text": "Murmur timing\/location",
+                    "template": "murmur {children}",
+                    "children": [
+                        {
+                            "text": "systolic",
+                            "template": "is systolic"
+                        },
+                        {
+                            "text": "diastolic",
+                            "template": "is diastolic"
+                        },
+                        {
+                            "text": "holosystolic",
+                            "template": "is holosystolic"
+                        },
+                        {
+                            "text": "continuous",
+                            "template": "is continuous"
+                        },
+                        {
+                            "text": "best: L sternal border",
+                            "template": "best heard at L sternal border"
+                        },
+                        {
+                            "text": "best: 2nd R ICS",
+                            "template": "best heard near 2nd R ICS"
+                        },
+                        {
+                            "text": "best: xiphoid\/ sternal area",
+                            "template": "best heard at xiphoid\/sternal area"
+                        },
+                        {
+                            "text": "best: apex",
+                            "template": "best heard at apex"
+                        },
+                        {
+                            "text": "best: R sternal border",
+                            "template": "best heard at R sternal border"
+                        },
+                        {
+                            "text": "nonradiating",
+                            "template": "nonradiating"
+                        },
+                        {
+                            "text": "radiates to axilla",
+                            "template": "radiates to axilla"
+                        },
+                        {
+                            "text": "radiates to apex",
+                            "template": "radiates to apex"
+                        },
+                        {
+                            "text": "radiates to carotids",
+                            "template": "radiates to carotids"
+                        },
+                        {
+                            "text": "radiates to R side",
+                            "template": "radiates to R side"
+                        },
+                        {
+                            "text": "radiates to sternum",
+                            "template": "radiates to sternum"
+                        },
+                        {
+                            "text": "radiates to L clavicular area",
+                            "template": "radiates to L clavicular area"
+                        }
+                    ]
+                },
+                {
+                    "text": "no increased JVP visible",
+                    "template": "no increased JVP visible"
+                },
+                {
+                    "text": "JVP level (cm)",
+                    "template": "JVP {text} cm above the sternal angle",
+                    "type": "number"
+                },
+                {
+                    "text": "Heaves, Thrills, Lifts",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "heave",
+                            "template": "heave",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "parasternal lift",
+                            "template": "parasternal lift",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "thrill",
+                            "template": "thrill",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Extra heart sounds",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "extra heart sounds",
+                            "template": "extra heart sounds",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pulmonary ejection sound",
+                            "template": "pulmonary ejection sound",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "aortic ejection sound",
+                            "template": "aortic ejection sound",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "systolic click",
+                            "template": "systolic click",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "midsystolic click",
+                            "template": "midsystolic click",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mid-late systolic click",
+                            "template": "mid-to-late systolic click",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pericardial rub",
+                            "template": "pericardial rub",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "knock",
+                            "template": "knock",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "opening snap",
+                            "template": "opening snap",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "plop",
+                            "template": "plop",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "prosthetic sounds",
+                            "template": "prosthetic sounds",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pacemaker sounds",
+                            "template": "pacemaker sounds",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "PMI nondisplaced",
+                    "template": "PMI nondisplaced"
+                },
+                {
+                    "text": "PMI displaced",
+                    "template": "PMI displaced",
+                    "children": [
+                        {
+                            "text": "laterally",
+                            "template": "laterally"
+                        },
+                        {
+                            "text": "inferiorly",
+                            "template": "inferiorly"
+                        },
+                        {
+                            "text": "superiorly",
+                            "template": "superiorly"
+                        },
+                        {
+                            "text": "parasternally",
+                            "template": "parasternally"
+                        }
+                    ]
+                },
+                {
+                    "text": "Peripheral pulses, R",
+                    "template": "Peripheral pulses, R: {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity normal",
+                            "template": "upper extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lower extremity normal",
+                            "template": "lower extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished in upper extremities",
+                            "template": "diminished in upper extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished in lower extremities",
+                            "template": "diminished in lower extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pulsus paradoxicus",
+                            "template": "pulsus paradoxicus",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Peripheral pulses, L",
+                    "template": "Peripheral pulses, L: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact"
+                        },
+                        {
+                            "text": "upper extremity normal",
+                            "template": "upper extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lower extremity normal",
+                            "template": "lower extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished in upper extremities",
+                            "template": "diminished in upper extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished in lower extremities",
+                            "template": "diminished in lower extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pulsus paradoxicus",
+                            "template": "pulsus paradoxicus",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Peripheral pulses, BL",
+                    "template": "Peripheral pulses, BL: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact"
+                        },
+                        {
+                            "text": "upper extremity normal",
+                            "template": "upper extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lower extremity normal",
+                            "template": "lower extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished in upper extremities",
+                            "template": "diminished in upper extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished in lower extremities",
+                            "template": "diminished in lower extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pulsus paradoxicus",
+                            "template": "pulsus paradoxicus",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Xanthomas, R",
+                    "template": "Xanthomas, R: {children}",
+                    "children": [
+                        {
+                            "text": "eyelids",
+                            "template": "eyelids"
+                        },
+                        {
+                            "text": "periorbital",
+                            "template": "periorbital area"
+                        },
+                        {
+                            "text": "hands",
+                            "template": "hands"
+                        },
+                        {
+                            "text": "Achilles tendons",
+                            "template": "Achilles tendons"
+                        },
+                        {
+                            "text": "feet",
+                            "template": "feet"
+                        },
+                        {
+                            "text": "elbows",
+                            "template": "elbows"
+                        },
+                        {
+                            "text": "knees",
+                            "template": "knees"
+                        },
+                        {
+                            "text": "shoulders",
+                            "template": "shoulders"
+                        },
+                        {
+                            "text": "buttocks",
+                            "template": "buttocks"
+                        }
+                    ]
+                },
+                {
+                    "text": "Xanthomas, L",
+                    "template": "Xanthomas, L: {children}",
+                    "children": [
+                        {
+                            "text": "eyelids",
+                            "template": "eyelids"
+                        },
+                        {
+                            "text": "periorbital",
+                            "template": "periorbital area"
+                        },
+                        {
+                            "text": "hands",
+                            "template": "hands"
+                        },
+                        {
+                            "text": "Achilles tendons",
+                            "template": "Achilles tendons"
+                        },
+                        {
+                            "text": "feet",
+                            "template": "feet"
+                        },
+                        {
+                            "text": "elbows",
+                            "template": "elbows"
+                        },
+                        {
+                            "text": "knees",
+                            "template": "knees"
+                        },
+                        {
+                            "text": "shoulders",
+                            "template": "shoulders"
+                        },
+                        {
+                            "text": "buttocks",
+                            "template": "buttocks"
+                        }
+                    ]
+                },
+                {
+                    "text": "Xanthomas, BL",
+                    "template": "Xanthomas, BL: {children}",
+                    "children": [
+                        {
+                            "text": "eyelids",
+                            "template": "eyelids"
+                        },
+                        {
+                            "text": "periorbital",
+                            "template": "periorbital area"
+                        },
+                        {
+                            "text": "hands",
+                            "template": "hands"
+                        },
+                        {
+                            "text": "Achilles tendons",
+                            "template": "Achilles tendons"
+                        },
+                        {
+                            "text": "feet",
+                            "template": "feet"
+                        },
+                        {
+                            "text": "elbows",
+                            "template": "elbows"
+                        },
+                        {
+                            "text": "knees",
+                            "template": "knees"
+                        },
+                        {
+                            "text": "shoulders",
+                            "template": "shoulders"
+                        },
+                        {
+                            "text": "buttocks",
+                            "template": "buttocks"
+                        }
+                    ]
+                },
+                {
+                    "text": "LE venous stasis changes",
+                    "template": "LE venous stasis changes",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "varicose veins",
+                    "template": "varicose veins",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "LE varicose veins, R",
+                    "template": "LE varicose veins, R: {children}",
+                    "children": [
+                        {
+                            "text": "present",
+                            "template": "present",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "LE varicose veins, L",
+                    "template": "LE varicose veins, L: {children}",
+                    "children": [
+                        {
+                            "text": "present",
+                            "template": "present",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "LE varicose veins, BL",
+                    "template": "LE varicose veins, BL: {children}",
+                    "children": [
+                        {
+                            "text": "present",
+                            "template": "present",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "Other detail: {text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Cardiovascular, pulses",
+            "template": "CV: {children}",
+            "children": [
+                {
+                    "text": "pulse rate and rhythm regular",
+                    "template": "pulse rate and rhythm regular"
+                },
+                {
+                    "text": "pulse rate regular",
+                    "template": "pulse rate regular"
+                },
+                {
+                    "text": "pulse rhythm regular",
+                    "template": "pulse rhythm regular"
+                },
+                {
+                    "text": "Temporal artery, R",
+                    "template": "Temporal artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Temporal artery, L",
+                    "template": "Temporal artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Temporal arteries, BL",
+                    "template": "Temporal arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Carotid artery, R",
+                    "template": "Carotid artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "delayed upstroke",
+                            "template": "delayed upstroke"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Carotid artery, L",
+                    "template": "Carotid artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "delayed upstroke",
+                            "template": "delayed upstroke"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Carotid arteries, BL",
+                    "template": "Carotid arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "delayed upstroke",
+                            "template": "delayed upstroke"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Brachial artery, R",
+                    "template": "Brachial artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Brachial artery, L",
+                    "template": "Brachial artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Brachial arteries, BL",
+                    "template": "Brachial arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Radial artery, R",
+                    "template": "Radial artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "waterhammer",
+                            "template": "waterhammer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bisferiens",
+                            "template": "bisferiens",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Radial artery, L",
+                    "template": "Radial artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "waterhammer",
+                            "template": "waterhammer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bisferiens",
+                            "template": "bisferiens",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Radial arteries, BL",
+                    "template": "Radial arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "waterhammer",
+                            "template": "waterhammer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bisferiens",
+                            "template": "bisferiens",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Femoral artery, R",
+                    "template": "Femoral artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Femoral artery, L",
+                    "template": "Femoral artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Femoral arteries, BL",
+                    "template": "Femoral arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Popliteal artery, R",
+                    "template": "Popliteal artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Popliteal artery, L",
+                    "template": "Popliteal artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Popliteal arteries, BL",
+                    "template": "Popliteal arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Dorsalis pedis artery, R",
+                    "template": "Dorsalis pedis artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Dorsalis pedis artery, L",
+                    "template": "Dorsalis pedis artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Dorsalis pedis arteries, BL",
+                    "template": "Dorsalis pedis arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Posterior tibial, R",
+                    "template": "Posterior tibial, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Posterior tibial, L",
+                    "template": "Posterior tibial, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Posterior tibial arteries, BL",
+                    "template": "Posterior tibial arteries, BL {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Renal artery, R",
+                    "template": "Renal artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "bruit present",
+                            "template": "bruit present"
+                        },
+                        {
+                            "text": "palpable pulse",
+                            "template": "palpable pulse",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Renal artery, L",
+                    "template": "Renal artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "bruit present",
+                            "template": "bruit present"
+                        },
+                        {
+                            "text": "palpable pulse",
+                            "template": "palpable pulse",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Renal arteries, BL",
+                    "template": "Renal arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "bruit present",
+                            "template": "bruit present"
+                        },
+                        {
+                            "text": "palpable pulse",
+                            "template": "palpable pulse",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Aorta",
+                    "template": "Aorta: {children}",
+                    "children": [
+                        {
+                            "text": "enlargement",
+                            "template": "enlargement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Gastrointestinal",
+            "template": "GI: {children}",
+            "children": [
+                {
+                    "text": "bowel sounds intact throughout",
+                    "template": "bowel sounds intact throughout"
+                },
+                {
+                    "text": "borborygmi",
+                    "template": "borborygmi",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "soft, nontender to palpation",
+                    "template": "soft, nontender to palpation"
+                },
+                {
+                    "text": "no rebound\/guarding\/rigidity",
+                    "template": "no rebound\/guarding\/rigidity"
+                },
+                {
+                    "text": "rebound",
+                    "template": "rebound",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "voluntary guarding",
+                    "template": "voluntary guarding",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "involuntary guarding",
+                    "template": "involuntary guarding",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "rigidity",
+                    "template": "rigidity",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "hepatomegaly",
+                    "template": "hepatomegaly",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "splenomegaly",
+                    "template": "splenomegaly",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "masses",
+                    "template": "masses",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "hepatojugular reflex",
+                    "template": "hepatojugular reflex",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Liver",
+                    "template": "Liver: {children}",
+                    "children": [
+                        {
+                            "text": "normal",
+                            "template": "normal"
+                        },
+                        {
+                            "text": "caput medusae",
+                            "template": "caput medusae",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spider angiomata",
+                            "template": "spider angiomata",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "palpable",
+                            "template": "palpable",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "edge palpable below costal margin",
+                            "template": "edge palpable below costal margin",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hepatomegaly",
+                            "template": "hepatomegaly",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bulging flanks",
+                            "template": "bulging flanks",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flank dullness",
+                            "template": "flank dullness",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "shifting dullness",
+                            "template": "shifting dullness",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fluid wave",
+                            "template": "fluid wave",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ascites",
+                            "template": "ascites",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Spleen",
+                    "template": "Spleen: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities",
+                            "template": "no abnormalities"
+                        },
+                        {
+                            "text": "palpable",
+                            "template": "palpable",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "splenomegaly",
+                            "template": "splenomegaly",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Abdominal exam: inspection",
+                    "template": "Abdominal exam inspection: {children}",
+                    "children": [
+                        {
+                            "text": "no abnormalities on inspection",
+                            "template": "no abnormalities on inspection"
+                        },
+                        {
+                            "text": "distended",
+                            "template": "distended",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flat",
+                            "template": "flat",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "obese",
+                            "template": "obese",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scaphoid",
+                            "template": "scaphoid",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scarring",
+                            "template": "scarring",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "rash",
+                            "template": "rash",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "umbilical hernia",
+                            "template": "umbilical hernia",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ventral hernia",
+                            "template": "ventral hernia",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spider angiomata",
+                            "template": "spider angiomata",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "caput medusae",
+                            "template": "caput medusae",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Abdominal exam: bowel sounds",
+                    "template": "Bowel sounds: {children}",
+                    "children": [
+                        {
+                            "text": "present on auscultation",
+                            "template": "present on auscultation"
+                        },
+                        {
+                            "text": "normoactive",
+                            "template": "normoactive"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "absent",
+                            "template": "absent",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "high pitched",
+                            "template": "high pitched",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Abdominal exam: tenderness",
+                    "template": "Abdominal pain: {children}",
+                    "children": [
+                        {
+                            "text": "no tenderness noted on exam",
+                            "template": "no tenderness noted on exam"
+                        },
+                        {
+                            "text": "tenderness at rest",
+                            "template": "tenderness present at rest",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tenderness with palpation",
+                            "template": "tenderness present with palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tenderness with movement",
+                            "template": "tenderness present with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mild",
+                            "template": "mild pain present"
+                        },
+                        {
+                            "text": "moderate",
+                            "template": "moderate pain present"
+                        },
+                        {
+                            "text": "severe",
+                            "template": "severe pain present"
+                        },
+                        {
+                            "text": "present throughout",
+                            "template": "pain present throughout"
+                        },
+                        {
+                            "text": "right sided tenderness",
+                            "template": "right sided tenderness present"
+                        },
+                        {
+                            "text": "left sided tenderness",
+                            "template": "left sided tenderness present"
+                        },
+                        {
+                            "text": "midepigastric tenderness",
+                            "template": "midepigastric tenderness present"
+                        },
+                        {
+                            "text": "RUQ tenderness",
+                            "template": "RUQ tenderness present"
+                        },
+                        {
+                            "text": "LUQ tenderness",
+                            "template": "LUQ tenderness present"
+                        },
+                        {
+                            "text": "hypogastric tenderness",
+                            "template": "hypogastric tenderness present"
+                        },
+                        {
+                            "text": "RLQ tenderness",
+                            "template": "RLQ tenderness present"
+                        },
+                        {
+                            "text": "LLQ tenderness",
+                            "template": "LLQ tenderness present"
+                        },
+                        {
+                            "text": "periumbilical tenderness",
+                            "template": "periumbilical tenderness present"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Dermatologic\/Lymphatic",
+            "template": "DERM: {children}",
+            "children": [
+                {
+                    "text": "diaphoresis",
+                    "template": "diaphoresis",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "periorbital xanthelasma",
+                    "template": "periorbital xanthelasma",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "xanthomas",
+                    "template": "xanthomas",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "cyanosis",
+                    "template": "cyanosis",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Cyanosis location",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "perioral cyanosis",
+                            "template": "perioral cyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acral cyanosis",
+                            "template": "acral cyanosis",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "decreased hair LE",
+                    "template": "decreased hair LE",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "stasis dermatitis R LE",
+                    "template": "stasis dermatitis R LE",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "stasis dermatitis L LE",
+                    "template": "stasis dermatitis L LE",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "dry skin",
+                    "template": "dry skin",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "clubbing",
+                    "template": "clubbing",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "petechiae",
+                    "template": "petechiae",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "lymphadenopathy",
+                    "template": "lymphadenopathy",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Extremities",
+            "template": "EXT: {children}",
+            "children": [
+                {
+                    "text": "no C\/C\/E",
+                    "template": "no C\/C\/E"
+                },
+                {
+                    "text": "cyanosis",
+                    "template": "cyanosis",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "clubbing",
+                    "template": "clubbing",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "edema",
+                    "template": "edema",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "anasarca",
+                    "template": "anasarca",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Upper extremity C\/C\/E, R",
+                    "template": "Upper extremity C\/C\/E, R: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity C\/C\/E, L",
+                    "template": "Upper extremity C\/C\/E, L: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremities C\/C\/E, BL",
+                    "template": "Upper extremities C\/C\/E, BL: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity C\/C\/E, R",
+                    "template": "Lower extremity C\/C\/E, R: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity C\/C\/E, L",
+                    "template": "Lower extremity C\/C\/E, L: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremities C\/C\/E, BL",
+                    "template": "Lower extremities C\/C\/E, BL: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "full range of motion throughout",
+                    "template": "full range of motion throughout"
+                },
+                {
+                    "text": "upper ext strength intact BL",
+                    "template": "upper extremity strength intact BL",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Upper extremity, ROM, R",
+                    "template": "Upper extremity, range of motion, R: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity, ROM, L",
+                    "template": "Upper extremity, range of motion, L: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremities, ROM, BL",
+                    "template": "Upper extremities, range of motion, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "lower ext strength intact BL",
+                    "template": "lower extremity strength intact BL",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Lower extremity, ROM, R",
+                    "template": "Lower extremity, range of motion, R: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity, ROM, L",
+                    "template": "Lower extremity, range of motion, L: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity, ROM, BL",
+                    "template": "Lower extremity, range of motion, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "upper extremity strength intact BL",
+                    "template": "Upper extremity strength intact BL",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Upper extremity strength, R",
+                    "template": "Upper extremity strength, R: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity strength, L",
+                    "template": "Upper extremity strength, L: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity strength, BL",
+                    "template": "Upper extremity strength, BL: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "lower extremity strength intact BL",
+                    "template": "Lower extremity strength intact BL",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Lower extremity strength, R",
+                    "template": "Lower extremity strength, R: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity strength, L",
+                    "template": "Lower extremity strength, L: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity strength, BL",
+                    "template": "Lower extremity strength, BL: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Musculoskeletal",
+            "template": "MUSC\/SKEL: {children}",
+            "children": [
+                {
+                    "text": "muscle strength NL throughout",
+                    "template": "muscle strength NL throughout"
+                },
+                {
+                    "text": "NL upper extremity exam BL",
+                    "template": "NL upper extremity exam BL",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "NL lower extremity exam BL",
+                    "template": "NL lower extremity exam BL",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Upper extremity, R",
+                    "template": "Upper extremity exam, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "normal strength and tone"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity, L",
+                    "template": "Upper extremity exam, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "normal strength and tone"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity, BL",
+                    "template": "Upper extremity exam, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "normal strength and tone"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity, R",
+                    "template": "Lower extremity exam, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "normal strength and tone"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity, L",
+                    "template": "Lower extremity exam, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "normal strength and tone"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity, BL",
+                    "template": "Lower extremity exam, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "normal strength and tone"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Back, R",
+                    "template": "Back exam, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sacral edema",
+                            "template": "sacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "presacral edema",
+                            "template": "presacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "costovertebral angle tenderness",
+                            "template": "costovertebral angle tenderness",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Back, L",
+                    "template": "Back exam, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sacral edema",
+                            "template": "sacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "presacral edema",
+                            "template": "presacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "costovertebral angle tenderness",
+                            "template": "costovertebral angle tenderness",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Back, BL",
+                    "template": "Back exam, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sacral edema",
+                            "template": "sacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "presacral edema",
+                            "template": "presacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "costovertebral angle tenderness",
+                            "template": "costovertebral angle tenderness",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Neuro: Cranial nerves",
+            "template": "NEURO: {children}",
+            "children": [
+                {
+                    "text": "CN II-XII intact and nonfocal",
+                    "template": "CN II-XII intact and nonfocal"
+                },
+                {
+                    "text": "CN I: sense of smell",
+                    "template": "sense of smell (CN I) {children}",
+                    "children": [
+                        {
+                            "text": "not assessed",
+                            "template": "not assessed"
+                        },
+                        {
+                            "text": "intact and nonfocal",
+                            "template": "intact and nonfocal"
+                        },
+                        {
+                            "text": "decreased sense of smell",
+                            "template": "decreased sense of smell"
+                        },
+                        {
+                            "text": "anosmia",
+                            "template": "anosmia",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN II, R eye visual acuity\/fields",
+                    "template": "R eye visual acuity\/fields (CN II) {children}",
+                    "children": [
+                        {
+                            "text": "visual acuity intact BL",
+                            "template": "visual acuity intact BL"
+                        },
+                        {
+                            "text": "decreased visual acuity BL",
+                            "template": "decreased visual acuity BL"
+                        },
+                        {
+                            "text": "monocular blindness noted",
+                            "template": "monocular blindness noted"
+                        },
+                        {
+                            "text": "R hemianopsia noted",
+                            "template": "R hemianopsia noted"
+                        },
+                        {
+                            "text": "L hemianopsia noted",
+                            "template": "L hemianopsia noted"
+                        },
+                        {
+                            "text": "R upper quadrantanopsia noted",
+                            "template": "R upper quadrantanopsia noted"
+                        },
+                        {
+                            "text": "L upper quadrantanopsia noted",
+                            "template": "L upper quadrantanopsia noted"
+                        },
+                        {
+                            "text": "R lower quadrantanopsia noted",
+                            "template": "R lower quadrantanopsia noted"
+                        },
+                        {
+                            "text": "L upper quadrantanopsia noted",
+                            "template": "L upper quadrantanopsia noted"
+                        },
+                        {
+                            "text": "L lower quadrantanopsia noted",
+                            "template": "L lower quadrantanopsia noted"
+                        },
+                        {
+                            "text": "macular sparing noted",
+                            "template": "macular sparing noted"
+                        },
+                        {
+                            "text": "central vision loss noted",
+                            "template": "central vision loss noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN II, L eye visual acuity\/fields",
+                    "template": "L eye visual acuity\/fields (CN II) {children}",
+                    "children": [
+                        {
+                            "text": "visual acuity intact BL",
+                            "template": "visual acuity intact BL"
+                        },
+                        {
+                            "text": "decreased visual acuity BL",
+                            "template": "decreased visual acuity BL"
+                        },
+                        {
+                            "text": "monocular blindness noted",
+                            "template": "monocular blindness noted"
+                        },
+                        {
+                            "text": "R hemianopsia noted",
+                            "template": "R hemianopsia noted"
+                        },
+                        {
+                            "text": "L hemianopsia noted",
+                            "template": "L hemianopsia noted"
+                        },
+                        {
+                            "text": "R upper quadrantanopsia noted",
+                            "template": "R upper quadrantanopsia noted"
+                        },
+                        {
+                            "text": "L upper quadrantanopsia noted",
+                            "template": "L upper quadrantanopsia noted"
+                        },
+                        {
+                            "text": "R lower quadrantanopsia noted",
+                            "template": "R lower quadrantanopsia noted"
+                        },
+                        {
+                            "text": "L upper quadrantanopsia noted",
+                            "template": "L upper quadrantanopsia noted"
+                        },
+                        {
+                            "text": "L lower quadrantanopsia noted",
+                            "template": "L lower quadrantanopsia noted"
+                        },
+                        {
+                            "text": "macular sparing noted",
+                            "template": "macular sparing noted"
+                        },
+                        {
+                            "text": "central vision loss noted",
+                            "template": "central vision loss noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN II, BL visual acuity\/fields",
+                    "template": "BL visual acuity\/fields (CN II) {children}",
+                    "children": [
+                        {
+                            "text": "visual acuity intact BL",
+                            "template": "visual acuity intact BL"
+                        },
+                        {
+                            "text": "decreased visual acuity BL",
+                            "template": "decreased visual acuity BL"
+                        },
+                        {
+                            "text": "monocular blindness noted",
+                            "template": "monocular blindness noted"
+                        },
+                        {
+                            "text": "R hemianopsia noted",
+                            "template": "R hemianopsia noted"
+                        },
+                        {
+                            "text": "L hemianopsia noted",
+                            "template": "L hemianopsia noted"
+                        },
+                        {
+                            "text": "R upper quadrantanopsia noted",
+                            "template": "R upper quadrantanopsia noted"
+                        },
+                        {
+                            "text": "L upper quadrantanopsia noted",
+                            "template": "L upper quadrantanopsia noted"
+                        },
+                        {
+                            "text": "R lower quadrantanopsia noted",
+                            "template": "R lower quadrantanopsia noted"
+                        },
+                        {
+                            "text": "L upper quadrantanopsia noted",
+                            "template": "L upper quadrantanopsia noted"
+                        },
+                        {
+                            "text": "L lower quadrantanopsia noted",
+                            "template": "L lower quadrantanopsia noted"
+                        },
+                        {
+                            "text": "macular sparing noted",
+                            "template": "macular sparing noted"
+                        },
+                        {
+                            "text": "central vision loss noted",
+                            "template": "central vision loss noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN II: R pupil",
+                    "template": "R pupil (CN II) {children}",
+                    "children": [
+                        {
+                            "text": "normal size",
+                            "template": "normal in size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged"
+                        },
+                        {
+                            "text": "miosis noted",
+                            "template": "miosis noted"
+                        },
+                        {
+                            "text": "eccentric",
+                            "template": "eccentric"
+                        },
+                        {
+                            "text": "irregularly shaped",
+                            "template": "irregularly shaped"
+                        },
+                        {
+                            "text": "midline",
+                            "template": "midline"
+                        },
+                        {
+                            "text": "reactive to light",
+                            "template": "reactive to light"
+                        },
+                        {
+                            "text": "accommodation intact",
+                            "template": "accommodation intact"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN II: L pupil",
+                    "template": "L pupil (CN II) {children}",
+                    "children": [
+                        {
+                            "text": "normal size",
+                            "template": "normal in size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged"
+                        },
+                        {
+                            "text": "miosis noted",
+                            "template": "miosis noted"
+                        },
+                        {
+                            "text": "eccentric",
+                            "template": "eccentric"
+                        },
+                        {
+                            "text": "irregularly shaped",
+                            "template": "irregularly shaped"
+                        },
+                        {
+                            "text": "midline",
+                            "template": "midline"
+                        },
+                        {
+                            "text": "reactive to light",
+                            "template": "reactive to light"
+                        },
+                        {
+                            "text": "accommodation intact",
+                            "template": "accommodation intact"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN II: BL pupils",
+                    "template": "BL pupils (CN II) {children}",
+                    "children": [
+                        {
+                            "text": "normal size",
+                            "template": "normal in size"
+                        },
+                        {
+                            "text": "enlarged",
+                            "template": "enlarged"
+                        },
+                        {
+                            "text": "miosis noted",
+                            "template": "miosis noted"
+                        },
+                        {
+                            "text": "eccentric",
+                            "template": "eccentric"
+                        },
+                        {
+                            "text": "irregularly shaped",
+                            "template": "irregularly shaped"
+                        },
+                        {
+                            "text": "midline",
+                            "template": "midline"
+                        },
+                        {
+                            "text": "reactive to light",
+                            "template": "reactive to light"
+                        },
+                        {
+                            "text": "accommodation intact",
+                            "template": "accommodation intact"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN III\/IV\/VI: R eye",
+                    "template": "R eye (CN III\/IV\/VI) {children}",
+                    "children": [
+                        {
+                            "text": "extraocular mvmts intact, nonfocal",
+                            "template": "extraocular movements intact and nonfocal"
+                        },
+                        {
+                            "text": "upward gaze intact",
+                            "template": "upward gaze intact"
+                        },
+                        {
+                            "text": "upward gaze impaired",
+                            "template": "upward gaze impaired"
+                        },
+                        {
+                            "text": "downward gaze intact",
+                            "template": "downward gaze intact"
+                        },
+                        {
+                            "text": "downward gaze impaired",
+                            "template": "downward gaze impaired"
+                        },
+                        {
+                            "text": "inward gaze intact",
+                            "template": "inward gaze intact"
+                        },
+                        {
+                            "text": "inward gaze impaired",
+                            "template": "inward gaze impaired"
+                        },
+                        {
+                            "text": "outward gaze intact",
+                            "template": "outward gaze intact"
+                        },
+                        {
+                            "text": "outward gaze impaired",
+                            "template": "outward gaze impaired"
+                        },
+                        {
+                            "text": "dysconjugate gaze noted",
+                            "template": "dysconjugate gaze noted"
+                        },
+                        {
+                            "text": "no horizontal nystagmus",
+                            "template": "no horizontal nystagmus"
+                        },
+                        {
+                            "text": "horizontal nystagmus present at rest",
+                            "template": "horizontal nystagmus present at rest"
+                        },
+                        {
+                            "text": "horizontal nystagmus elicited",
+                            "template": "horizontal nystagmus elicited"
+                        },
+                        {
+                            "text": "no vertical nystagmus",
+                            "template": "no vertical nystagmus"
+                        },
+                        {
+                            "text": "vertical nystagmus present at rest",
+                            "template": "vertical nystagmus present at rest"
+                        },
+                        {
+                            "text": "vertical nystagmus elicited",
+                            "template": "vertical nystagmus elicited"
+                        },
+                        {
+                            "text": "miosis noted",
+                            "template": "miosis noted"
+                        },
+                        {
+                            "text": "lid lag not present",
+                            "template": "lid lag not present"
+                        },
+                        {
+                            "text": "ptosis noted",
+                            "template": "ptosis noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN III\/IV\/VI: L eye",
+                    "template": "L eye (CN III\/IV\/VI) {children}",
+                    "children": [
+                        {
+                            "text": "extraocular mvmts intact, nonfocal",
+                            "template": "extraocular movements intact and nonfocal"
+                        },
+                        {
+                            "text": "upward gaze intact",
+                            "template": "upward gaze intact"
+                        },
+                        {
+                            "text": "upward gaze impaired",
+                            "template": "upward gaze impaired"
+                        },
+                        {
+                            "text": "downward gaze intact",
+                            "template": "downward gaze intact"
+                        },
+                        {
+                            "text": "downward gaze impaired",
+                            "template": "downward gaze impaired"
+                        },
+                        {
+                            "text": "inward gaze intact",
+                            "template": "inward gaze intact"
+                        },
+                        {
+                            "text": "inward gaze impaired",
+                            "template": "inward gaze impaired"
+                        },
+                        {
+                            "text": "outward gaze intact",
+                            "template": "outward gaze intact"
+                        },
+                        {
+                            "text": "outward gaze impaired",
+                            "template": "outward gaze impaired"
+                        },
+                        {
+                            "text": "dysconjugate gaze noted",
+                            "template": "dysconjugate gaze noted"
+                        },
+                        {
+                            "text": "no horizontal nystagmus",
+                            "template": "no horizontal nystagmus"
+                        },
+                        {
+                            "text": "horizontal nystagmus present at rest",
+                            "template": "horizontal nystagmus present at rest"
+                        },
+                        {
+                            "text": "horizontal nystagmus elicited",
+                            "template": "horizontal nystagmus elicited"
+                        },
+                        {
+                            "text": "no vertical nystagmus",
+                            "template": "no vertical nystagmus"
+                        },
+                        {
+                            "text": "vertical nystagmus present at rest",
+                            "template": "vertical nystagmus present at rest"
+                        },
+                        {
+                            "text": "vertical nystagmus elicited",
+                            "template": "vertical nystagmus elicited"
+                        },
+                        {
+                            "text": "miosis noted",
+                            "template": "miosis noted"
+                        },
+                        {
+                            "text": "lid lag not present",
+                            "template": "lid lag not present"
+                        },
+                        {
+                            "text": "ptosis noted",
+                            "template": "ptosis noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN III\/IV\/VI: BL eyes",
+                    "template": "BL (CN III\/IV\/VI) {children}",
+                    "children": [
+                        {
+                            "text": "extraocular mvmts intact, nonfocal",
+                            "template": "extraocular movements intact and nonfocal"
+                        },
+                        {
+                            "text": "upward gaze intact",
+                            "template": "upward gaze intact"
+                        },
+                        {
+                            "text": "upward gaze impaired",
+                            "template": "upward gaze impaired"
+                        },
+                        {
+                            "text": "downward gaze intact",
+                            "template": "downward gaze intact"
+                        },
+                        {
+                            "text": "downward gaze impaired",
+                            "template": "downward gaze impaired"
+                        },
+                        {
+                            "text": "inward gaze intact",
+                            "template": "inward gaze intact"
+                        },
+                        {
+                            "text": "inward gaze impaired",
+                            "template": "inward gaze impaired"
+                        },
+                        {
+                            "text": "outward gaze intact",
+                            "template": "outward gaze intact"
+                        },
+                        {
+                            "text": "outward gaze impaired",
+                            "template": "outward gaze impaired"
+                        },
+                        {
+                            "text": "dysconjugate gaze noted",
+                            "template": "dysconjugate gaze noted"
+                        },
+                        {
+                            "text": "no horizontal nystagmus",
+                            "template": "no horizontal nystagmus"
+                        },
+                        {
+                            "text": "horizontal nystagmus present at rest",
+                            "template": "horizontal nystagmus present at rest"
+                        },
+                        {
+                            "text": "horizontal nystagmus elicited",
+                            "template": "horizontal nystagmus elicited"
+                        },
+                        {
+                            "text": "no vertical nystagmus",
+                            "template": "no vertical nystagmus"
+                        },
+                        {
+                            "text": "vertical nystagmus present at rest",
+                            "template": "vertical nystagmus present at rest"
+                        },
+                        {
+                            "text": "vertical nystagmus elicited",
+                            "template": "vertical nystagmus elicited"
+                        },
+                        {
+                            "text": "miosis noted",
+                            "template": "miosis noted"
+                        },
+                        {
+                            "text": "lid lag not present",
+                            "template": "lid lag not present"
+                        },
+                        {
+                            "text": "ptosis noted",
+                            "template": "ptosis noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN V: R",
+                    "template": "R (CN V) {children}",
+                    "children": [
+                        {
+                            "text": "corneal reflex intact",
+                            "template": "corneal reflex intact"
+                        },
+                        {
+                            "text": "absent corneal reflex",
+                            "template": "absent corneal reflex"
+                        },
+                        {
+                            "text": "temporal muscle strength intact",
+                            "template": "temporal muscle strength intact"
+                        },
+                        {
+                            "text": "decreased temporal muscle strength",
+                            "template": "decreased temporal muscle strength"
+                        },
+                        {
+                            "text": "masseter muscle strength intact",
+                            "template": "masseter muscle strength intact"
+                        },
+                        {
+                            "text": "decreased masseter muscle strength",
+                            "template": "decreased masseter muscle strength"
+                        },
+                        {
+                            "text": "forehead sensation intact",
+                            "template": "forehead sensation intact"
+                        },
+                        {
+                            "text": "decreased forehead sensation",
+                            "template": "decreased forehead sensation"
+                        },
+                        {
+                            "text": "cheek sensation intact",
+                            "template": "cheek sensation intact"
+                        },
+                        {
+                            "text": "decreased cheek sensation",
+                            "template": "decreased cheek sensation"
+                        },
+                        {
+                            "text": "jaw strength intact",
+                            "template": "jaw strength intact"
+                        },
+                        {
+                            "text": "decreased jaw strength",
+                            "template": "decreased jaw strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN V: L",
+                    "template": "L (CN V) {children}",
+                    "children": [
+                        {
+                            "text": "corneal reflex intact",
+                            "template": "corneal reflex intact"
+                        },
+                        {
+                            "text": "absent corneal reflex",
+                            "template": "absent corneal reflex"
+                        },
+                        {
+                            "text": "temporal muscle strength intact",
+                            "template": "temporal muscle strength intact"
+                        },
+                        {
+                            "text": "decreased temporal muscle strength",
+                            "template": "decreased temporal muscle strength"
+                        },
+                        {
+                            "text": "masseter muscle strength intact",
+                            "template": "masseter muscle strength intact"
+                        },
+                        {
+                            "text": "decreased masseter muscle strength",
+                            "template": "decreased masseter muscle strength"
+                        },
+                        {
+                            "text": "forehead sensation intact",
+                            "template": "forehead sensation intact"
+                        },
+                        {
+                            "text": "decreased forehead sensation",
+                            "template": "decreased forehead sensation"
+                        },
+                        {
+                            "text": "cheek sensation intact",
+                            "template": "cheek sensation intact"
+                        },
+                        {
+                            "text": "decreased cheek sensation",
+                            "template": "decreased cheek sensation"
+                        },
+                        {
+                            "text": "jaw strength intact",
+                            "template": "jaw strength intact"
+                        },
+                        {
+                            "text": "decreased jaw strength",
+                            "template": "decreased jaw strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN V: BL",
+                    "template": "BL (CN V) {children}",
+                    "children": [
+                        {
+                            "text": "corneal reflex intact",
+                            "template": "corneal reflex intact"
+                        },
+                        {
+                            "text": "absent corneal reflex",
+                            "template": "absent corneal reflex"
+                        },
+                        {
+                            "text": "temporal muscle strength intact",
+                            "template": "temporal muscle strength intact"
+                        },
+                        {
+                            "text": "decreased temporal muscle strength",
+                            "template": "decreased temporal muscle strength"
+                        },
+                        {
+                            "text": "masseter muscle strength intact",
+                            "template": "masseter muscle strength intact"
+                        },
+                        {
+                            "text": "decreased masseter muscle strength",
+                            "template": "decreased masseter muscle strength"
+                        },
+                        {
+                            "text": "forehead sensation intact",
+                            "template": "forehead sensation intact"
+                        },
+                        {
+                            "text": "decreased forehead sensation",
+                            "template": "decreased forehead sensation"
+                        },
+                        {
+                            "text": "cheek sensation intact",
+                            "template": "cheek sensation intact"
+                        },
+                        {
+                            "text": "decreased cheek sensation",
+                            "template": "decreased cheek sensation"
+                        },
+                        {
+                            "text": "jaw strength intact",
+                            "template": "jaw strength intact"
+                        },
+                        {
+                            "text": "decreased jaw strength",
+                            "template": "decreased jaw strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN VII: R",
+                    "template": "R (CN VII) {children}",
+                    "children": [
+                        {
+                            "text": "facial symmetry intact",
+                            "template": "facial symmetry intact"
+                        },
+                        {
+                            "text": "facial asymmetry present",
+                            "template": "facial asymmetry present"
+                        },
+                        {
+                            "text": "facial droop present",
+                            "template": "facial droop present"
+                        },
+                        {
+                            "text": "eyebrow raise intact",
+                            "template": "eyebrow raise intact"
+                        },
+                        {
+                            "text": "eyebrow raise decreased",
+                            "template": "eyebrow raise decreased"
+                        },
+                        {
+                            "text": "eye close against resistance intact",
+                            "template": "eye close against resistance intact"
+                        },
+                        {
+                            "text": "eye close against resistance decreased",
+                            "template": "eye close against resistance decreased"
+                        },
+                        {
+                            "text": "cheek puff intact",
+                            "template": "cheek puff intact"
+                        },
+                        {
+                            "text": "cheek puff decreased",
+                            "template": "cheek puff decreased"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN VII: L",
+                    "template": "L (CN VII) {children}",
+                    "children": [
+                        {
+                            "text": "facial symmetry intact",
+                            "template": "facial symmetry intact"
+                        },
+                        {
+                            "text": "facial asymmetry present",
+                            "template": "facial asymmetry present"
+                        },
+                        {
+                            "text": "facial droop present",
+                            "template": "facial droop present"
+                        },
+                        {
+                            "text": "eyebrow raise intact",
+                            "template": "eyebrow raise intact"
+                        },
+                        {
+                            "text": "eyebrow raise decreased",
+                            "template": "eyebrow raise decreased"
+                        },
+                        {
+                            "text": "eye close against resistance intact",
+                            "template": "eye close against resistance intact"
+                        },
+                        {
+                            "text": "eye close against resistance decreased",
+                            "template": "eye close against resistance decreased"
+                        },
+                        {
+                            "text": "cheek puff intact",
+                            "template": "cheek puff intact"
+                        },
+                        {
+                            "text": "cheek puff decreased",
+                            "template": "cheek puff decreased"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN VII: BL",
+                    "template": "BL (CN VII) {children}",
+                    "children": [
+                        {
+                            "text": "facial symmetry intact",
+                            "template": "facial symmetry intact"
+                        },
+                        {
+                            "text": "facial asymmetry present",
+                            "template": "facial asymmetry present"
+                        },
+                        {
+                            "text": "facial droop present",
+                            "template": "facial droop present"
+                        },
+                        {
+                            "text": "eyebrow raise intact",
+                            "template": "eyebrow raise intact"
+                        },
+                        {
+                            "text": "eyebrow raise decreased",
+                            "template": "eyebrow raise decreased"
+                        },
+                        {
+                            "text": "eye close against resistance intact",
+                            "template": "eye close against resistance intact"
+                        },
+                        {
+                            "text": "eye close against resistance decreased",
+                            "template": "eye close against resistance decreased"
+                        },
+                        {
+                            "text": "cheek puff intact",
+                            "template": "cheek puff intact"
+                        },
+                        {
+                            "text": "cheek puff decreased",
+                            "template": "cheek puff decreased"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN VIII: R",
+                    "template": "R side (CN VIII) {children}",
+                    "children": [
+                        {
+                            "text": "hearing intact",
+                            "template": "hearing intact"
+                        },
+                        {
+                            "text": "hearing decreased",
+                            "template": "hearing decreased"
+                        },
+                        {
+                            "text": "deafness",
+                            "template": "deafness"
+                        },
+                        {
+                            "text": "Weber normal",
+                            "template": "Weber normal"
+                        },
+                        {
+                            "text": "Weber with right lateralization",
+                            "template": "Weber with right lateralization"
+                        },
+                        {
+                            "text": "Weber with left lateralization",
+                            "template": "Weber with left lateralization"
+                        },
+                        {
+                            "text": "Rinne normal",
+                            "template": "Rinne normal (air conduction greater than bone bilaterally)"
+                        },
+                        {
+                            "text": "Rinne positive, right",
+                            "template": "Rinne positive (air conduction worse than bone on right)"
+                        },
+                        {
+                            "text": "Rinne positive, left",
+                            "template": "Rinne positive (air conduction worse than bone on left)"
+                        },
+                        {
+                            "text": "Rinne negative, right",
+                            "template": "Rinne negative (air conduction better than bone on right)"
+                        },
+                        {
+                            "text": "Rinne negative, left",
+                            "template": "Rinne negative (air conduction better than bone on left)"
+                        },
+                        {
+                            "text": "caloric reflex test intact",
+                            "template": "caloric reflex test intact"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN VIII: L",
+                    "template": "L side (CN VIII) {children}",
+                    "children": [
+                        {
+                            "text": "hearing intact",
+                            "template": "hearing intact"
+                        },
+                        {
+                            "text": "hearing decreased",
+                            "template": "hearing decreased"
+                        },
+                        {
+                            "text": "deafness",
+                            "template": "deafness"
+                        },
+                        {
+                            "text": "Weber normal",
+                            "template": "Weber normal"
+                        },
+                        {
+                            "text": "Weber with right lateralization",
+                            "template": "Weber with right lateralization"
+                        },
+                        {
+                            "text": "Weber with left lateralization",
+                            "template": "Weber with left lateralization"
+                        },
+                        {
+                            "text": "Rinne normal",
+                            "template": "Rinne normal (air conduction greater than bone bilaterally)"
+                        },
+                        {
+                            "text": "Rinne positive, right",
+                            "template": "Rinne positive (air conduction worse than bone on right)"
+                        },
+                        {
+                            "text": "Rinne positive, left",
+                            "template": "Rinne positive (air conduction worse than bone on left)"
+                        },
+                        {
+                            "text": "Rinne negative, right",
+                            "template": "Rinne negative (air conduction better than bone on right)"
+                        },
+                        {
+                            "text": "Rinne negative, left",
+                            "template": "Rinne negative (air conduction better than bone on left)"
+                        },
+                        {
+                            "text": "caloric reflex test intact",
+                            "template": "caloric reflex test intact"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN VIII: BL",
+                    "template": "BL (CN VIII) {children}",
+                    "children": [
+                        {
+                            "text": "hearing intact",
+                            "template": "hearing intact"
+                        },
+                        {
+                            "text": "hearing decreased",
+                            "template": "hearing decreased"
+                        },
+                        {
+                            "text": "deafness",
+                            "template": "deafness"
+                        },
+                        {
+                            "text": "Weber normal",
+                            "template": "Weber normal"
+                        },
+                        {
+                            "text": "Weber with right lateralization",
+                            "template": "Weber with right lateralization"
+                        },
+                        {
+                            "text": "Weber with left lateralization",
+                            "template": "Weber with left lateralization"
+                        },
+                        {
+                            "text": "Rinne normal",
+                            "template": "Rinne normal (air conduction greater than bone bilaterally)"
+                        },
+                        {
+                            "text": "Rinne positive, right",
+                            "template": "Rinne positive (air conduction worse than bone on right)"
+                        },
+                        {
+                            "text": "Rinne positive, left",
+                            "template": "Rinne positive (air conduction worse than bone on left)"
+                        },
+                        {
+                            "text": "Rinne negative, right",
+                            "template": "Rinne negative (air conduction better than bone on right)"
+                        },
+                        {
+                            "text": "Rinne negative, left",
+                            "template": "Rinne negative (air conduction better than bone on left)"
+                        },
+                        {
+                            "text": "caloric reflex test intact",
+                            "template": "caloric reflex test intact"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN IX\/X",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "swallowing intact",
+                            "template": "ability to swallow intact (CN IX\/X intact)"
+                        },
+                        {
+                            "text": "swallowing impaired",
+                            "template": "swallowing impaired (CN IX\/X diminished)"
+                        },
+                        {
+                            "text": "gag reflex intact",
+                            "template": "gag reflex intact (CN IX\/X intact)"
+                        },
+                        {
+                            "text": "gag reflex diminished",
+                            "template": "gag reflex diminished (CN IX\/X diminished)"
+                        },
+                        {
+                            "text": "uvula midline",
+                            "template": "uvula midline (CN IX\/X intact)"
+                        },
+                        {
+                            "text": "uvula deviated to right",
+                            "template": "uvula deviated to right (CN IX\/X diminished)"
+                        },
+                        {
+                            "text": "uvula deviatied to left",
+                            "template": "uvula deviatied to left (CN IX\/X diminished)"
+                        },
+                        {
+                            "text": "hoarse voice quality present",
+                            "template": "hoarse voice quality present (CN IX\/X diminished)"
+                        },
+                        {
+                            "text": "nasal voice quality present",
+                            "template": "nasal voice quality present (CN IX\/X diminished)"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN XI: R",
+                    "template": "R side (CN XI) {children}",
+                    "children": [
+                        {
+                            "text": "shoulder shrug intact",
+                            "template": "shoulder shrug intact"
+                        },
+                        {
+                            "text": "shoulder shrug decreased",
+                            "template": "shoulder shrug decreased"
+                        },
+                        {
+                            "text": "ability to turn head against resistance intact",
+                            "template": "ability to turn head against resistance intact"
+                        },
+                        {
+                            "text": "ability to turn head against resistance diminished",
+                            "template": "ability to turn head against resistance diminished"
+                        },
+                        {
+                            "text": "trapezius muscle tone intact",
+                            "template": "trapezius muscle tone intact"
+                        },
+                        {
+                            "text": "trapezius muscle atrophy noted",
+                            "template": "trapezius muscle atrophy noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN XI: L",
+                    "template": "L side (CN XI) {children}",
+                    "children": [
+                        {
+                            "text": "shoulder shrug intact",
+                            "template": "shoulder shrug intact"
+                        },
+                        {
+                            "text": "shoulder shrug decreased",
+                            "template": "shoulder shrug decreased"
+                        },
+                        {
+                            "text": "ability to turn head against resistance intact",
+                            "template": "ability to turn head against resistance intact"
+                        },
+                        {
+                            "text": "ability to turn head against resistance diminished",
+                            "template": "ability to turn head against resistance diminished"
+                        },
+                        {
+                            "text": "trapezius muscle tone intact",
+                            "template": "trapezius muscle tone intact"
+                        },
+                        {
+                            "text": "trapezius muscle atrophy noted",
+                            "template": "trapezius muscle atrophy noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN XI: BL",
+                    "template": "BL (CN XI) {children}",
+                    "children": [
+                        {
+                            "text": "shoulder shrug intact",
+                            "template": "shoulder shrug intact"
+                        },
+                        {
+                            "text": "shoulder shrug decreased",
+                            "template": "shoulder shrug decreased"
+                        },
+                        {
+                            "text": "ability to turn head against resistance intact",
+                            "template": "ability to turn head against resistance intact"
+                        },
+                        {
+                            "text": "ability to turn head against resistance diminished",
+                            "template": "ability to turn head against resistance diminished"
+                        },
+                        {
+                            "text": "trapezius muscle tone intact",
+                            "template": "trapezius muscle tone intact"
+                        },
+                        {
+                            "text": "trapezius muscle atrophy noted",
+                            "template": "trapezius muscle atrophy noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "CN XII",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "speech articulation intact",
+                            "template": "speech articulation intact (CN XII intact)"
+                        },
+                        {
+                            "text": "speech articulation impaired",
+                            "template": "speech articulation impaired (CN XII diminished)"
+                        },
+                        {
+                            "text": "tongue midline without deviation",
+                            "template": "tongue midline without deviation (CN XII intact)"
+                        },
+                        {
+                            "text": "tongue deviated to right",
+                            "template": "tongue deviated to right (CN XII diminished)"
+                        },
+                        {
+                            "text": "tongue deviated to left",
+                            "template": "tongue deviated to left (CN XII diminished)"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other detail",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Neuro: Deep tendon reflexes",
+            "template": "NEURO: {children}",
+            "children": [
+                {
+                    "text": "DTRs intact and equal BL throughout",
+                    "template": "DTRs intact and equal BL throughout"
+                },
+                {
+                    "text": "Brachioradialis reflex, R",
+                    "template": "R brachioradialis reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Brachioradialis reflex, L",
+                    "template": "L brachioradialis reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Brachioradialis reflex, BL",
+                    "template": "L brachioradialis reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Biceps reflex, R",
+                    "template": "R biceps reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Biceps reflex, L",
+                    "template": "L biceps reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Biceps reflex, BL",
+                    "template": "BL biceps reflexes {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Triceps reflex, R",
+                    "template": "R triceps reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Triceps reflex, L",
+                    "template": "L triceps reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Triceps reflex, BL",
+                    "template": "BL triceps reflexes {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Patellar reflex, R",
+                    "template": "R patellar reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Patellar reflex, L",
+                    "template": "L patellar reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Patellar reflex, BL",
+                    "template": "BL patellar reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Achilles reflex, R",
+                    "template": "R achilles reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Achilles reflex, L",
+                    "template": "L achilles reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Achilles reflex, BL",
+                    "template": "BL achilles reflexes {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Ankle reflex, R",
+                    "template": "R ankle reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Ankle reflex, L",
+                    "template": "L ankle reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Ankle reflex, BL",
+                    "template": "BL ankle reflexes {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other detail",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Neuro: Dermatomes",
+            "template": "NEURO: {children}",
+            "children": [
+                {
+                    "text": "Cervical dermatomes, R",
+                    "template": "R cervical dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "C1 sensation diminished",
+                            "template": "C1 sensation diminished"
+                        },
+                        {
+                            "text": "C2 sensation diminished",
+                            "template": "C2 sensation diminished"
+                        },
+                        {
+                            "text": "C3 sensation diminished",
+                            "template": "C3 sensation diminished"
+                        },
+                        {
+                            "text": "C4 sensation diminished",
+                            "template": "C4 sensation diminished"
+                        },
+                        {
+                            "text": "C5 sensation diminished",
+                            "template": "C5 sensation diminished"
+                        },
+                        {
+                            "text": "C6 sensation diminished",
+                            "template": "C6 sensation diminished"
+                        },
+                        {
+                            "text": "C7 sensation diminished",
+                            "template": "C7 sensation diminished"
+                        },
+                        {
+                            "text": "C8 sensation diminished",
+                            "template": "C8 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Cervical dermatomes, L",
+                    "template": "L cervical dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "C1 sensation diminished",
+                            "template": "C1 sensation diminished"
+                        },
+                        {
+                            "text": "C2 sensation diminished",
+                            "template": "C2 sensation diminished"
+                        },
+                        {
+                            "text": "C3 sensation diminished",
+                            "template": "C3 sensation diminished"
+                        },
+                        {
+                            "text": "C4 sensation diminished",
+                            "template": "C4 sensation diminished"
+                        },
+                        {
+                            "text": "C5 sensation diminished",
+                            "template": "C5 sensation diminished"
+                        },
+                        {
+                            "text": "C6 sensation diminished",
+                            "template": "C6 sensation diminished"
+                        },
+                        {
+                            "text": "C7 sensation diminished",
+                            "template": "C7 sensation diminished"
+                        },
+                        {
+                            "text": "C8 sensation diminished",
+                            "template": "C8 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Cervical dermatomes, BL",
+                    "template": "BL cervical dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "C1 sensation diminished",
+                            "template": "C1 sensation diminished"
+                        },
+                        {
+                            "text": "C2 sensation diminished",
+                            "template": "C2 sensation diminished"
+                        },
+                        {
+                            "text": "C3 sensation diminished",
+                            "template": "C3 sensation diminished"
+                        },
+                        {
+                            "text": "C4 sensation diminished",
+                            "template": "C4 sensation diminished"
+                        },
+                        {
+                            "text": "C5 sensation diminished",
+                            "template": "C5 sensation diminished"
+                        },
+                        {
+                            "text": "C6 sensation diminished",
+                            "template": "C6 sensation diminished"
+                        },
+                        {
+                            "text": "C7 sensation diminished",
+                            "template": "C7 sensation diminished"
+                        },
+                        {
+                            "text": "C8 sensation diminished",
+                            "template": "C8 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Thoracic dermatomes, R",
+                    "template": "R thoracic dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "T1 sensation diminished",
+                            "template": "T1 sensation diminished"
+                        },
+                        {
+                            "text": "T2 sensation diminished",
+                            "template": "T2 sensation diminished"
+                        },
+                        {
+                            "text": "T3 sensation diminished",
+                            "template": "T3 sensation diminished"
+                        },
+                        {
+                            "text": "T4 sensation diminished",
+                            "template": "T4 sensation diminished"
+                        },
+                        {
+                            "text": "T5 sensation diminished",
+                            "template": "T5 sensation diminished"
+                        },
+                        {
+                            "text": "T6 sensation diminished",
+                            "template": "T6 sensation diminished"
+                        },
+                        {
+                            "text": "T7 sensation diminished",
+                            "template": "T7 sensation diminished"
+                        },
+                        {
+                            "text": "T8 sensation diminished",
+                            "template": "T8 sensation diminished"
+                        },
+                        {
+                            "text": "T9 sensation diminished",
+                            "template": "T9 sensation diminished"
+                        },
+                        {
+                            "text": "T10 sensation diminished",
+                            "template": "T10 sensation diminished"
+                        },
+                        {
+                            "text": "T11 sensation diminished",
+                            "template": "T11 sensation diminished"
+                        },
+                        {
+                            "text": "T12 sensation diminished",
+                            "template": "T12 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Thoracic dermatomes, L",
+                    "template": "L thoracic dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "T1 sensation diminished",
+                            "template": "T1 sensation diminished"
+                        },
+                        {
+                            "text": "T2 sensation diminished",
+                            "template": "T2 sensation diminished"
+                        },
+                        {
+                            "text": "T3 sensation diminished",
+                            "template": "T3 sensation diminished"
+                        },
+                        {
+                            "text": "T4 sensation diminished",
+                            "template": "T4 sensation diminished"
+                        },
+                        {
+                            "text": "T5 sensation diminished",
+                            "template": "T5 sensation diminished"
+                        },
+                        {
+                            "text": "T6 sensation diminished",
+                            "template": "T6 sensation diminished"
+                        },
+                        {
+                            "text": "T7 sensation diminished",
+                            "template": "T7 sensation diminished"
+                        },
+                        {
+                            "text": "T8 sensation diminished",
+                            "template": "T8 sensation diminished"
+                        },
+                        {
+                            "text": "T9 sensation diminished",
+                            "template": "T9 sensation diminished"
+                        },
+                        {
+                            "text": "T10 sensation diminished",
+                            "template": "T10 sensation diminished"
+                        },
+                        {
+                            "text": "T11 sensation diminished",
+                            "template": "T11 sensation diminished"
+                        },
+                        {
+                            "text": "T12 sensation diminished",
+                            "template": "T12 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Thoracic dermatomes, BL",
+                    "template": "BL thoracic dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "T1 sensation diminished",
+                            "template": "T1 sensation diminished"
+                        },
+                        {
+                            "text": "T2 sensation diminished",
+                            "template": "T2 sensation diminished"
+                        },
+                        {
+                            "text": "T3 sensation diminished",
+                            "template": "T3 sensation diminished"
+                        },
+                        {
+                            "text": "T4 sensation diminished",
+                            "template": "T4 sensation diminished"
+                        },
+                        {
+                            "text": "T5 sensation diminished",
+                            "template": "T5 sensation diminished"
+                        },
+                        {
+                            "text": "T6 sensation diminished",
+                            "template": "T6 sensation diminished"
+                        },
+                        {
+                            "text": "T7 sensation diminished",
+                            "template": "T7 sensation diminished"
+                        },
+                        {
+                            "text": "T8 sensation diminished",
+                            "template": "T8 sensation diminished"
+                        },
+                        {
+                            "text": "T9 sensation diminished",
+                            "template": "T9 sensation diminished"
+                        },
+                        {
+                            "text": "T10 sensation diminished",
+                            "template": "T10 sensation diminished"
+                        },
+                        {
+                            "text": "T11 sensation diminished",
+                            "template": "T11 sensation diminished"
+                        },
+                        {
+                            "text": "T12 sensation diminished",
+                            "template": "T12 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lumbar dermatomes, R",
+                    "template": "R lumbar dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "L1 sensation diminished",
+                            "template": "L1 sensation diminished"
+                        },
+                        {
+                            "text": "L2 sensation diminished",
+                            "template": "L2 sensation diminished"
+                        },
+                        {
+                            "text": "L3 sensation diminished",
+                            "template": "L3 sensation diminished"
+                        },
+                        {
+                            "text": "L4 sensation diminished",
+                            "template": "L4 sensation diminished"
+                        },
+                        {
+                            "text": "L5 sensation diminished",
+                            "template": "L5 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lumbar dermatomes, L",
+                    "template": "L lumbar dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "L1 sensation diminished",
+                            "template": "L1 sensation diminished"
+                        },
+                        {
+                            "text": "L2 sensation diminished",
+                            "template": "L2 sensation diminished"
+                        },
+                        {
+                            "text": "L3 sensation diminished",
+                            "template": "L3 sensation diminished"
+                        },
+                        {
+                            "text": "L4 sensation diminished",
+                            "template": "L4 sensation diminished"
+                        },
+                        {
+                            "text": "L5 sensation diminished",
+                            "template": "L5 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lumbar dermatomes, BL",
+                    "template": "BL lumbar dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "L1 sensation diminished",
+                            "template": "L1 sensation diminished"
+                        },
+                        {
+                            "text": "L2 sensation diminished",
+                            "template": "L2 sensation diminished"
+                        },
+                        {
+                            "text": "L3 sensation diminished",
+                            "template": "L3 sensation diminished"
+                        },
+                        {
+                            "text": "L4 sensation diminished",
+                            "template": "L4 sensation diminished"
+                        },
+                        {
+                            "text": "L5 sensation diminished",
+                            "template": "L5 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Sacral dermatomes, R",
+                    "template": "R sacral dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "S1 sensation diminished",
+                            "template": "S1 sensation diminished"
+                        },
+                        {
+                            "text": "S2 sensation diminished",
+                            "template": "S2 sensation diminished"
+                        },
+                        {
+                            "text": "S3 sensation diminished",
+                            "template": "S3 sensation diminished"
+                        },
+                        {
+                            "text": "S4 sensation diminished",
+                            "template": "S4 sensation diminished"
+                        },
+                        {
+                            "text": "S5 sensation diminished",
+                            "template": "S5 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Sacral dermatomes, L",
+                    "template": "L sacral dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "S1 sensation diminished",
+                            "template": "S1 sensation diminished"
+                        },
+                        {
+                            "text": "S2 sensation diminished",
+                            "template": "S2 sensation diminished"
+                        },
+                        {
+                            "text": "S3 sensation diminished",
+                            "template": "S3 sensation diminished"
+                        },
+                        {
+                            "text": "S4 sensation diminished",
+                            "template": "S4 sensation diminished"
+                        },
+                        {
+                            "text": "S5 sensation diminished",
+                            "template": "S5 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Sacral dermatomes, BL",
+                    "template": "BL sacral dermatomal {children}",
+                    "children": [
+                        {
+                            "text": "light touch sensation intact",
+                            "template": "light touch sensation intact"
+                        },
+                        {
+                            "text": "light touch sensation decreased",
+                            "template": "light touch sensation decreased"
+                        },
+                        {
+                            "text": "sharp touch sensation intact",
+                            "template": "sharp touch sensation intact"
+                        },
+                        {
+                            "text": "sharp touch sensation decreased",
+                            "template": "sharp touch sensation decreased"
+                        },
+                        {
+                            "text": "temperature sensation intact",
+                            "template": "temperature sensation intact"
+                        },
+                        {
+                            "text": "temperature sensation decreased",
+                            "template": "temperature sensation decreased"
+                        },
+                        {
+                            "text": "2 point discrimination intact",
+                            "template": "2 point discrimination intact"
+                        },
+                        {
+                            "text": "2 point discrimination decreased",
+                            "template": "2 point discrimination decreased"
+                        },
+                        {
+                            "text": "lesions noted",
+                            "template": "lesions noted"
+                        },
+                        {
+                            "text": "rash noted",
+                            "template": "rash noted"
+                        },
+                        {
+                            "text": "S1 sensation diminished",
+                            "template": "S1 sensation diminished"
+                        },
+                        {
+                            "text": "S2 sensation diminished",
+                            "template": "S2 sensation diminished"
+                        },
+                        {
+                            "text": "S3 sensation diminished",
+                            "template": "S3 sensation diminished"
+                        },
+                        {
+                            "text": "S4 sensation diminished",
+                            "template": "S4 sensation diminished"
+                        },
+                        {
+                            "text": "S5 sensation diminished",
+                            "template": "S5 sensation diminished"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other detail",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Neuro: Gait, Station",
+            "template": "NEURO: {children}",
+            "children": [
+                {
+                    "text": "normal gait and station",
+                    "template": "normal gait and station"
+                },
+                {
+                    "text": "normal gait",
+                    "template": "normal gait"
+                },
+                {
+                    "text": "normal station",
+                    "template": "normal station"
+                },
+                {
+                    "text": "Romberg test positive",
+                    "template": "Romberg test positive"
+                },
+                {
+                    "text": "Romberg test negative",
+                    "template": "Romberg test negative"
+                },
+                {
+                    "text": "Gait",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "broad based gait",
+                            "template": "broad based gait"
+                        },
+                        {
+                            "text": "shuffling gait",
+                            "template": "shuffling gait"
+                        },
+                        {
+                            "text": "shortened step length",
+                            "template": "shortened step length"
+                        },
+                        {
+                            "text": "limp, right",
+                            "template": "limp present (affecting right side)"
+                        },
+                        {
+                            "text": "limp, left",
+                            "template": "limp present (affecting left side)"
+                        },
+                        {
+                            "text": "wide based gait",
+                            "template": "wide based gait"
+                        },
+                        {
+                            "text": "gait accuracy intact",
+                            "template": "gait accuracy intact"
+                        },
+                        {
+                            "text": "staggering gait noted",
+                            "template": "staggering gait noted"
+                        },
+                        {
+                            "text": "tandem walking intact",
+                            "template": "tandem walking intact"
+                        },
+                        {
+                            "text": "tandem walking impaired",
+                            "template": "tandem walking impaired"
+                        },
+                        {
+                            "text": "toe walking noted",
+                            "template": "toe walking noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "Station",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "positive Romberg (eyes open)",
+                            "template": "positive Romberg (eyes open)"
+                        },
+                        {
+                            "text": "negative Romberg (eyes open)",
+                            "template": "negative Romberg (eyes open)"
+                        },
+                        {
+                            "text": "positive Romberg (eyes closed)",
+                            "template": "positive Romberg (eyes closed)"
+                        },
+                        {
+                            "text": "pronator drift, eyes open, right",
+                            "template": "pronator drift noted with eyes open (affecting right upper extremity)"
+                        },
+                        {
+                            "text": "pronator drift, eyes open, left",
+                            "template": "pronator drift noted with eyes open (affecting left upper extremity)"
+                        },
+                        {
+                            "text": "pronator drift, eyes closed, right",
+                            "template": "pronator drift noted with eyes closed (affecting right upper extremity)"
+                        },
+                        {
+                            "text": "pronator drift, eyes closed, left",
+                            "template": "pronator drift noted with eyes closed (affecting left upper extremity)"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other detail",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Neuro: Pathological reflexes",
+            "template": "NEURO: {children}",
+            "children": [
+                {
+                    "text": "no pathological reflexes elicited",
+                    "template": "no pathological reflexes elicited"
+                },
+                {
+                    "text": "Babinski reflex",
+                    "template": "Babinski reflex {children}",
+                    "children": [
+                        {
+                            "text": "elicted on the right",
+                            "template": "elicted on the right"
+                        },
+                        {
+                            "text": "not elicited on the right",
+                            "template": "not elicited on the right"
+                        },
+                        {
+                            "text": "elicited on the left",
+                            "template": "elicited on the left"
+                        },
+                        {
+                            "text": "not elicited on the left",
+                            "template": "not elicited on the left"
+                        },
+                        {
+                            "text": "elicited bilaterally",
+                            "template": "elicited bilaterally"
+                        },
+                        {
+                            "text": "absent bilaterally",
+                            "template": "absent bilaterally"
+                        }
+                    ]
+                },
+                {
+                    "text": "Glabellar reflex",
+                    "template": "glabellar reflex {children}",
+                    "children": [
+                        {
+                            "text": "elicted on the right",
+                            "template": "elicted on the right"
+                        },
+                        {
+                            "text": "not elicited on the right",
+                            "template": "not elicited on the right"
+                        },
+                        {
+                            "text": "elicited on the left",
+                            "template": "elicited on the left"
+                        },
+                        {
+                            "text": "not elicited on the left",
+                            "template": "not elicited on the left"
+                        },
+                        {
+                            "text": "elicited bilaterally",
+                            "template": "elicited bilaterally"
+                        },
+                        {
+                            "text": "absent bilaterally",
+                            "template": "absent bilaterally"
+                        }
+                    ]
+                },
+                {
+                    "text": "Palmomental reflex",
+                    "template": "palmomental reflex {children}",
+                    "children": [
+                        {
+                            "text": "elicted on the right",
+                            "template": "elicted on the right"
+                        },
+                        {
+                            "text": "not elicited on the right",
+                            "template": "not elicited on the right"
+                        },
+                        {
+                            "text": "elicited on the left",
+                            "template": "elicited on the left"
+                        },
+                        {
+                            "text": "not elicited on the left",
+                            "template": "not elicited on the left"
+                        },
+                        {
+                            "text": "elicited bilaterally",
+                            "template": "elicited bilaterally"
+                        },
+                        {
+                            "text": "absent bilaterally",
+                            "template": "absent bilaterally"
+                        }
+                    ]
+                },
+                {
+                    "text": "Snout reflex",
+                    "template": "snout reflex {children}",
+                    "children": [
+                        {
+                            "text": "elicted on the right",
+                            "template": "elicted on the right"
+                        },
+                        {
+                            "text": "not elicited on the right",
+                            "template": "not elicited on the right"
+                        },
+                        {
+                            "text": "elicited on the left",
+                            "template": "elicited on the left"
+                        },
+                        {
+                            "text": "not elicited on the left",
+                            "template": "not elicited on the left"
+                        },
+                        {
+                            "text": "elicited bilaterally",
+                            "template": "elicited bilaterally"
+                        },
+                        {
+                            "text": "absent bilaterally",
+                            "template": "absent bilaterally"
+                        }
+                    ]
+                },
+                {
+                    "text": "Root reflex",
+                    "template": "root reflex {children}",
+                    "children": [
+                        {
+                            "text": "elicted on the right",
+                            "template": "elicted on the right"
+                        },
+                        {
+                            "text": "not elicited on the right",
+                            "template": "not elicited on the right"
+                        },
+                        {
+                            "text": "elicited on the left",
+                            "template": "elicited on the left"
+                        },
+                        {
+                            "text": "not elicited on the left",
+                            "template": "not elicited on the left"
+                        },
+                        {
+                            "text": "elicited bilaterally",
+                            "template": "elicited bilaterally"
+                        },
+                        {
+                            "text": "absent bilaterally",
+                            "template": "absent bilaterally"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other detail",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Neuro: Sensory",
+            "template": "NEURO: {children}",
+            "children": [
+                {
+                    "text": "sensation grossly intact throughout",
+                    "template": "sensation grossly intact throughout"
+                },
+                {
+                    "text": "Sensation to light touch",
+                    "template": "sensation to light touch {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity, right intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, intact BL",
+                            "template": "intact in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "upper extremity, right diminished",
+                            "template": "diminished in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left diminished",
+                            "template": "diminished in left upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, diminished BL",
+                            "template": "diminished in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "lower extremity, right intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, intact BL",
+                            "template": "intact in the bilateral lower extremities"
+                        },
+                        {
+                            "text": "lower extremity, right diminished",
+                            "template": "diminished in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left diminished",
+                            "template": "diminished in left lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, diminished BL",
+                            "template": "diminished in the bilateral lower extremities"
+                        }
+                    ]
+                },
+                {
+                    "text": "Sensation to dull touch",
+                    "template": "sensation to dull touch {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity, right intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, intact BL",
+                            "template": "intact in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "upper extremity, right diminished",
+                            "template": "diminished in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left diminished",
+                            "template": "diminished in left upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, diminished BL",
+                            "template": "diminished in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "lower extremity, right intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, intact BL",
+                            "template": "intact in the bilateral lower extremities"
+                        },
+                        {
+                            "text": "lower extremity, right diminished",
+                            "template": "diminished in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left diminished",
+                            "template": "diminished in left lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, diminished BL",
+                            "template": "diminished in the bilateral lower extremities"
+                        }
+                    ]
+                },
+                {
+                    "text": "Sensation to cold temperature",
+                    "template": "sensation to cold temperature {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity, right intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, intact BL",
+                            "template": "intact in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "upper extremity, right diminished",
+                            "template": "diminished in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left diminished",
+                            "template": "diminished in left upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, diminished BL",
+                            "template": "diminished in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "lower extremity, right intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, intact BL",
+                            "template": "intact in the bilateral lower extremities"
+                        },
+                        {
+                            "text": "lower extremity, right diminished",
+                            "template": "diminished in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left diminished",
+                            "template": "diminished in left lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, diminished BL",
+                            "template": "diminished in the bilateral lower extremities"
+                        }
+                    ]
+                },
+                {
+                    "text": "Sensation to warm temperature",
+                    "template": "sensation to warm temperature {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity, right intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, intact BL",
+                            "template": "intact in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "upper extremity, right diminished",
+                            "template": "diminished in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left diminished",
+                            "template": "diminished in left upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, diminished BL",
+                            "template": "diminished in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "lower extremity, right intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, intact BL",
+                            "template": "intact in the bilateral lower extremities"
+                        },
+                        {
+                            "text": "lower extremity, right diminished",
+                            "template": "diminished in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left diminished",
+                            "template": "diminished in left lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, diminished BL",
+                            "template": "diminished in the bilateral lower extremities"
+                        }
+                    ]
+                },
+                {
+                    "text": "Vibratory sensation",
+                    "template": "vibratory sensation {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity, right intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, intact BL",
+                            "template": "intact in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "upper extremity, right diminished",
+                            "template": "diminished in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left diminished",
+                            "template": "diminished in left upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, diminished BL",
+                            "template": "diminished in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "lower extremity, right intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, intact BL",
+                            "template": "intact in the bilateral lower extremities"
+                        },
+                        {
+                            "text": "lower extremity, right diminished",
+                            "template": "diminished in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left diminished",
+                            "template": "diminished in left lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, diminished BL",
+                            "template": "diminished in the bilateral lower extremities"
+                        }
+                    ]
+                },
+                {
+                    "text": "Stereognosis",
+                    "template": "stereognosis {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity, right intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, intact BL",
+                            "template": "intact in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "upper extremity, right diminished",
+                            "template": "diminished in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left diminished",
+                            "template": "diminished in left upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, diminished BL",
+                            "template": "diminished in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "lower extremity, right intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, intact BL",
+                            "template": "intact in the bilateral lower extremities"
+                        },
+                        {
+                            "text": "lower extremity, right diminished",
+                            "template": "diminished in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left diminished",
+                            "template": "diminished in left lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, diminished BL",
+                            "template": "diminished in the bilateral lower extremities"
+                        }
+                    ]
+                },
+                {
+                    "text": "Paresthesias",
+                    "template": "parethesias present {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity, right",
+                            "template": "in the R upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left",
+                            "template": "in the L upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, bilateral",
+                            "template": "bilaterally in the upper extremities"
+                        },
+                        {
+                            "text": "lower extremity, right",
+                            "template": "in the R lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left",
+                            "template": "in the L lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, bilateral",
+                            "template": "bilaterally in the lower extremities"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other detail",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Psychiatric",
+            "template": "PSYCH: {children}",
+            "children": [
+                {
+                    "text": "AO x 3",
+                    "template": "alert and oriented to time, place, and person"
+                },
+                {
+                    "text": "insight intact",
+                    "template": "insight intact"
+                },
+                {
+                    "text": "judgment intact",
+                    "template": "judgment intact"
+                },
+                {
+                    "text": "Language",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "normal and intact",
+                            "template": "language is normal and intact"
+                        },
+                        {
+                            "text": "verbal language intact",
+                            "template": "verbal language intact"
+                        },
+                        {
+                            "text": "verbal language impaired",
+                            "template": "verbal language impaired"
+                        },
+                        {
+                            "text": "written language intact",
+                            "template": "written language intact"
+                        },
+                        {
+                            "text": "written language impaired",
+                            "template": "written language impaired"
+                        },
+                        {
+                            "text": "agraphia noted",
+                            "template": "agraphia noted"
+                        },
+                        {
+                            "text": "receptive language intact",
+                            "template": "receptive language intact"
+                        },
+                        {
+                            "text": "receptive language impaired",
+                            "template": "receptive language impaired"
+                        },
+                        {
+                            "text": "expressive language intact",
+                            "template": "expressive language intact"
+                        },
+                        {
+                            "text": "expressive language impaired",
+                            "template": "expressive language impaired"
+                        },
+                        {
+                            "text": "naming ability intact",
+                            "template": "naming ability intact"
+                        },
+                        {
+                            "text": "anomia noted",
+                            "template": "anomia noted"
+                        }
+                    ]
+                },
+                {
+                    "text": "Mental status\/Concentration",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "responds appropriately",
+                            "template": "responds appropriately"
+                        },
+                        {
+                            "text": "responds inappropriately",
+                            "template": "responds inappropriately"
+                        },
+                        {
+                            "text": "short term memory intact",
+                            "template": "short term memory intact"
+                        },
+                        {
+                            "text": "short term memory impaired",
+                            "template": "short term memory impaired"
+                        },
+                        {
+                            "text": "long term memory intact",
+                            "template": "long term memory intact"
+                        },
+                        {
+                            "text": "long term memory impaired",
+                            "template": "long term memory impaired"
+                        },
+                        {
+                            "text": "memory grossly intact",
+                            "template": "memory grossly intact"
+                        },
+                        {
+                            "text": "memory deficits noted",
+                            "template": "memory deficits noted"
+                        },
+                        {
+                            "text": "thought content normal",
+                            "template": "thought content normal"
+                        },
+                        {
+                            "text": "abnormal thought content",
+                            "template": "abnormal thought content"
+                        },
+                        {
+                            "text": "appears coherent",
+                            "template": "appears coherent"
+                        },
+                        {
+                            "text": "appears incoherent",
+                            "template": "appears incoherent"
+                        },
+                        {
+                            "text": "abstraction ability intact",
+                            "template": "abstraction ability intact"
+                        },
+                        {
+                            "text": "abstraction ability impaired",
+                            "template": "abstraction ability impaired"
+                        },
+                        {
+                            "text": "unable to assess mental status",
+                            "template": "unable to assess mental status"
+                        },
+                        {
+                            "text": "unresponsive to questions",
+                            "template": "unresponsive to questions"
+                        },
+                        {
+                            "text": "able to concentrate",
+                            "template": "able to concentrate",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Alertness",
+                    "template": "patient appears {children}",
+                    "children": [
+                        {
+                            "text": "alert",
+                            "template": "alert"
+                        },
+                        {
+                            "text": "drowsy but arousable",
+                            "template": "drowsy but arousable"
+                        },
+                        {
+                            "text": "drowsy and non-arousable",
+                            "template": "drowsy and non-arousable"
+                        },
+                        {
+                            "text": "lethargic",
+                            "template": "lethargic"
+                        }
+                    ]
+                },
+                {
+                    "text": "Orientation",
+                    "template": "patient is {children}",
+                    "children": [
+                        {
+                            "text": "oriented to time",
+                            "template": "oriented to time",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "oriented to place",
+                            "template": "oriented to place",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "oriented to self",
+                            "template": "oriented to self",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "oriented to examiner",
+                            "template": "oriented to examiner",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "oriented to situation",
+                            "template": "oriented to situation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "knows current President",
+                            "template": "knows current President",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Mood",
+                    "template": "Mood {children}",
+                    "children": [
+                        {
+                            "text": "normal mood",
+                            "template": "normal mood"
+                        },
+                        {
+                            "text": "anxious",
+                            "template": "anxious",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "depressed",
+                            "template": "depressed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "Irritable",
+                            "template": "Irritable",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "apathetic mood",
+                            "template": "apathetic mood",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "euphoric",
+                            "template": "euphoric",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "elevated",
+                            "template": "elevated",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "expansive",
+                            "template": "expansive",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Affect",
+                    "template": "Affect: {children}",
+                    "children": [
+                        {
+                            "text": "normal affect",
+                            "template": "normal affect"
+                        },
+                        {
+                            "text": "appropriate to thought content",
+                            "template": "appropriate to thought content",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "inappropriate to thought content",
+                            "template": "inappropriate to thought content",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "broad",
+                            "template": "broad",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "expansive",
+                            "template": "expansive",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "reserved",
+                            "template": "reserved",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "constricted",
+                            "template": "constricted"
+                        },
+                        {
+                            "text": "intense",
+                            "template": "intense",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sad",
+                            "template": "sad"
+                        },
+                        {
+                            "text": "depressed",
+                            "template": "depressed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "blunted",
+                            "template": "blunted",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "worried",
+                            "template": "worried",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "guarded",
+                            "template": "guarded",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "apathetic",
+                            "template": "apathetic",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "anxious",
+                            "template": "anxious",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "defensive",
+                            "template": "defensive",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flat",
+                            "template": "flat",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "hostile",
+                            "template": "hostile",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "labile",
+                            "template": "labile",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Speech",
+                    "template": "speech is {children}",
+                    "children": [
+                        {
+                            "text": "speech rate\/rhythm\/volume normal",
+                            "template": "speech rate\/rhythm\/volume normal"
+                        },
+                        {
+                            "text": "rate, normal",
+                            "template": "normal rate"
+                        },
+                        {
+                            "text": "rhythm, normal",
+                            "template": "normal rhythm"
+                        },
+                        {
+                            "text": "volume, normal",
+                            "template": "normal volume"
+                        },
+                        {
+                            "text": "tone, normal",
+                            "template": "normal tone"
+                        },
+                        {
+                            "text": "spontaneous",
+                            "template": "spontaneous",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "slowed",
+                            "template": "slowed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "prolonged latency",
+                            "template": "prolonged latency",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pressured",
+                            "template": "pressured",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "soft",
+                            "template": "soft",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "loud",
+                            "template": "loud",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "slurred",
+                            "template": "slurred",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "dysarthric",
+                            "template": "dysarthric",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Thought process",
+                    "template": "though process is {children}",
+                    "children": [
+                        {
+                            "text": "normal",
+                            "template": "normal"
+                        },
+                        {
+                            "text": "logical",
+                            "template": "logical",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lucid",
+                            "template": "lucid",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "goal directed",
+                            "template": "goal directed",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "circumstantial",
+                            "template": "circumstantial",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ruminations",
+                            "template": "ruminations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "coherent",
+                            "template": "coherent",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tangential",
+                            "template": "tangential",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "perseveration",
+                            "template": "perseveration",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "loosening of associations",
+                            "template": "loosening of associations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flight of ideas is noted",
+                            "template": "flight of ideas is noted"
+                        },
+                        {
+                            "text": "no flight of ideas",
+                            "template": "no flight of ideas"
+                        },
+                        {
+                            "text": "ideas of influence present",
+                            "template": "ideas of influence present"
+                        },
+                        {
+                            "text": "no ideas of influence",
+                            "template": "no ideas of influence"
+                        },
+                        {
+                            "text": "ideas of reference present",
+                            "template": "ideas of reference present"
+                        },
+                        {
+                            "text": "no ideas of reference",
+                            "template": "no ideas of reference"
+                        }
+                    ]
+                },
+                {
+                    "text": "Thought content",
+                    "template": "thought content is {children}",
+                    "children": [
+                        {
+                            "text": "loosening of associations",
+                            "template": "loosening of associations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "phobias",
+                            "template": "phobias",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "ideas of reference",
+                            "template": "ideas of reference",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "thought broadcasting",
+                            "template": "thought broadcasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "obsessions",
+                            "template": "obsessions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "depersonalization",
+                            "template": "depersonalization",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "derealization",
+                            "template": "derealization",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "confabulation",
+                            "template": "confabulation",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Fund of knowledge",
+                    "template": "Fund of knowledge: {children}",
+                    "children": [
+                        {
+                            "text": "normal intellectual ability",
+                            "template": "normal intellectual ability"
+                        },
+                        {
+                            "text": "below average intelligence",
+                            "template": "below average intelligence"
+                        },
+                        {
+                            "text": "above average intelligence",
+                            "template": "above average intelligence"
+                        }
+                    ]
+                },
+                {
+                    "text": "Delusions, Hallucinations",
+                    "template": "Delusions and Hallucinations: {children}",
+                    "children": [
+                        {
+                            "text": "no delusions noted",
+                            "template": "no delusions noted"
+                        },
+                        {
+                            "text": "mood congruent delusions present",
+                            "template": "mood congruent delusions present"
+                        },
+                        {
+                            "text": "mood incongruent delusions present",
+                            "template": "mood incongruent delusions present"
+                        },
+                        {
+                            "text": "paranoid delusions present",
+                            "template": "paranoid delusions present"
+                        },
+                        {
+                            "text": "delusions of grandeur present",
+                            "template": "delusions of grandeur present"
+                        },
+                        {
+                            "text": "religious delusions present",
+                            "template": "religious delusions present"
+                        },
+                        {
+                            "text": "no hallucinations noted",
+                            "template": "no hallucinations noted"
+                        },
+                        {
+                            "text": "auditory hallucinations present",
+                            "template": "auditory hallucinations present"
+                        },
+                        {
+                            "text": "visual hallucinations present",
+                            "template": "visual hallucinations present"
+                        },
+                        {
+                            "text": "gustatory hallucinations present",
+                            "template": "gustatory hallucinations present"
+                        }
+                    ]
+                },
+                {
+                    "text": "Homicidality, Suicidality",
+                    "template": "Homicidality and Suicidality: {children}",
+                    "children": [
+                        {
+                            "text": "suicidal ideation present",
+                            "template": "suicidal ideation present"
+                        },
+                        {
+                            "text": "no suicidal ideation present",
+                            "template": "no suicidal ideation present"
+                        },
+                        {
+                            "text": "intent to act on suicidal ideas",
+                            "template": "intent to act on suicidal ideas",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "non-lethal plan for suicide",
+                            "template": "non-lethal plan for suicide"
+                        },
+                        {
+                            "text": "lethal plan for suicide",
+                            "template": "lethal plan for suicide"
+                        },
+                        {
+                            "text": "homicidal ideation present",
+                            "template": "homicidal ideation present"
+                        },
+                        {
+                            "text": "no homicidal ideation",
+                            "template": "no homicidal ideation"
+                        },
+                        {
+                            "text": "intent to act on homicidal ideas",
+                            "template": "intent to act on homicidal ideas"
+                        },
+                        {
+                            "text": "no intent to act on homicidal ideas",
+                            "template": "no intent to act on homicidal ideas"
+                        },
+                        {
+                            "text": "non-lethal plan for homicide",
+                            "template": "non-lethal plan for homicide"
+                        },
+                        {
+                            "text": "lethal plan for homicide",
+                            "template": "lethal plan for homicide"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other detail",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        }
+    ]
+}

+ 5804 - 0
storage/templates/exam-default/exam-resp-detail/resp-exam.json

@@ -0,0 +1,5804 @@
+{
+    "section": "exam-resp-detail",
+    "templateSet": "RESP Exam",
+    "templates": [
+        {
+            "text": "1-Click normal exams",
+            "template": "{children}",
+            "children": [
+                {
+                    "text": "GEN: NAD",
+                    "template": "GEN: NAD"
+                },
+                {
+                    "text": "HEENT: oropharynx unremarkable",
+                    "template": "HEENT: oropharynx unremarkable"
+                },
+                {
+                    "text": "NECK: no incr JVP visible",
+                    "template": "NECK: no incr JVP visible"
+                },
+                {
+                    "text": "NECK: trachea midline ,NL neck size",
+                    "template": "NECK: trachea midline, NL neck size"
+                },
+                {
+                    "text": "NECK: no cervical LN",
+                    "template": "NECK: no cervical lymphadenopathy"
+                },
+                {
+                    "text": "RESP: CTA BL, no r\/w\/r",
+                    "template": "RESP: CTA BL, no rales\/wheezes\/rhonchi"
+                },
+                {
+                    "text": "RESP: thorax sym, no kyphosis",
+                    "template": "RESP: thorax symmetric, no kyphosis"
+                },
+                {
+                    "text": "RESP: no rib retractions, no acc mm use",
+                    "template": "RESP: no rib retractions, no use of accessory muscles of respiration"
+                },
+                {
+                    "text": "RESP: no dullness on percussion",
+                    "template": "RESP: no dullness on percussion"
+                },
+                {
+                    "text": "CV: RRR, no m\/r\/g",
+                    "template": "CV: RRR, no m\/r\/g"
+                },
+                {
+                    "text": "EXT: no C\/C\/E",
+                    "template": "EXT: no C\/C\/E"
+                },
+                {
+                    "text": "NEURO: AO x 3",
+                    "template": "NEURO: AO x 3"
+                }
+            ]
+        },
+        {
+            "text": "General",
+            "template": "GEN: {children}",
+            "children": [
+                {
+                    "text": "NAD",
+                    "template": "NAD",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "cooperative with exam",
+                    "template": "cooperative with exam",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "well groomed",
+                    "template": "well groomed",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "well developed",
+                    "template": "well developed",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "well nourished",
+                    "template": "well nourished",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "overweight",
+                    "template": "overweight",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "obese",
+                    "template": "obese",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "morbidly obese",
+                    "template": "morbidly obese",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "emaciated",
+                    "template": "emaciated",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "appears to be stated age",
+                    "template": "appears to be stated age",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "appears older than stated age",
+                    "template": "appears older than stated age",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "appears younger than stated age",
+                    "template": "appears younger than stated age",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "HEENT",
+            "template": "HEENT: {children}",
+            "children": [
+                {
+                    "text": "head normocephalic, atraumatic",
+                    "template": "head normocephalic, atraumatic"
+                },
+                {
+                    "text": "head normocephalic",
+                    "template": "head normocephalic",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "head atraumatic",
+                    "template": "head atraumatic",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "facial edema",
+                    "template": "facial edema",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "plethora",
+                    "template": "plethora",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "EOMI",
+                    "template": "EOMI"
+                },
+                {
+                    "text": "PERRLA",
+                    "template": "PERRLA"
+                },
+                {
+                    "text": "scleral icterus",
+                    "template": "scleral icterus",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "pale conjunctivae",
+                    "template": "pale conjunctivae",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "periorbital xanthelasma",
+                    "template": "periorbital xanthelasma",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "periorbital edema",
+                    "template": "periorbital edema",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "hearing grossly intact",
+                    "template": "hearing grossly intact",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Nares, R",
+                    "template": "Nares, R: {children}",
+                    "children": [
+                        {
+                            "text": "NL nasal mucosa",
+                            "template": "NL nasal mucosa"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "NL nasal septa",
+                            "template": "NL nasal septa"
+                        },
+                        {
+                            "text": "septal perforation",
+                            "template": "septal perforation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "NL nasal turbinates",
+                            "template": "NL nasal turbinates"
+                        },
+                        {
+                            "text": "hypertrophy of nasal turbinates",
+                            "template": "hypertrophy of nasal turbinates",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clear drainage",
+                            "template": "clear drainage",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "purulent discharge",
+                            "template": "purulent discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "crusting",
+                            "template": "crusting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "epistaxis",
+                            "template": "epistaxis",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Nares, L",
+                    "template": "Nares, L: {children}",
+                    "children": [
+                        {
+                            "text": "NL nasal mucosa",
+                            "template": "NL nasal mucosa"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "NL nasal septa",
+                            "template": "NL nasal septa"
+                        },
+                        {
+                            "text": "septal perforation",
+                            "template": "septal perforation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "NL nasal turbinates",
+                            "template": "NL nasal turbinates"
+                        },
+                        {
+                            "text": "hypertrophy of nasal turbinates",
+                            "template": "hypertrophy of nasal turbinates",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clear drainage",
+                            "template": "clear drainage",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "purulent discharge",
+                            "template": "purulent discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "crusting",
+                            "template": "crusting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "epistaxis",
+                            "template": "epistaxis",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Nares, BL",
+                    "template": "Nares, BL: {children}",
+                    "children": [
+                        {
+                            "text": "NL nasal mucosa",
+                            "template": "NL nasal mucosa"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "NL nasal septa",
+                            "template": "NL nasal septa"
+                        },
+                        {
+                            "text": "septal perforation",
+                            "template": "septal perforation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "NL nasal turbinates",
+                            "template": "NL nasal turbinates"
+                        },
+                        {
+                            "text": "hypertrophy of nasal turbinates",
+                            "template": "hypertrophy of nasal turbinates",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clear drainage",
+                            "template": "clear drainage",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "purulent discharge",
+                            "template": "purulent discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "crusting",
+                            "template": "crusting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "epistaxis",
+                            "template": "epistaxis",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Maxillary sinus, R",
+                    "template": "Maxillary sinus, R: {children}",
+                    "children": [
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "transillumination NL",
+                            "template": "transillumination NL"
+                        },
+                        {
+                            "text": "transillumination abnl",
+                            "template": "transillumination abnl"
+                        }
+                    ]
+                },
+                {
+                    "text": "Maxillary sinus, L",
+                    "template": "Maxillary sinus, L: {children}",
+                    "children": [
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "transillumination NL",
+                            "template": "transillumination NL"
+                        },
+                        {
+                            "text": "transillumination abnl",
+                            "template": "transillumination abnl"
+                        }
+                    ]
+                },
+                {
+                    "text": "Maxillary sinuses, BL",
+                    "template": "Maxillary sinus, BL: {children}",
+                    "children": [
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "transillumination NL",
+                            "template": "transillumination NL"
+                        },
+                        {
+                            "text": "transillumination abnl",
+                            "template": "transillumination abnl"
+                        }
+                    ]
+                },
+                {
+                    "text": "Frontal sinus, R",
+                    "template": "Frontal sinus, R: {children}",
+                    "children": [
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "transillumination NL",
+                            "template": "transillumination NL"
+                        },
+                        {
+                            "text": "transillumination abnl",
+                            "template": "transillumination abnl"
+                        }
+                    ]
+                },
+                {
+                    "text": "Frontal sinus, L",
+                    "template": "Frontal sinus, L: {children}",
+                    "children": [
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "transillumination NL",
+                            "template": "transillumination NL"
+                        },
+                        {
+                            "text": "transillumination abnl",
+                            "template": "transillumination abnl"
+                        }
+                    ]
+                },
+                {
+                    "text": "Frontal sinuses, BL",
+                    "template": "Frontal sinuses, BL: {children}",
+                    "children": [
+                        {
+                            "text": "tender to palpation",
+                            "template": "tender to palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "transillumination NL",
+                            "template": "transillumination NL"
+                        },
+                        {
+                            "text": "transillumination abnl",
+                            "template": "transillumination abnl"
+                        }
+                    ]
+                },
+                {
+                    "text": "mucous membranes moist",
+                    "template": "mucous membranes moist"
+                },
+                {
+                    "text": "normal lips",
+                    "template": "normal lips"
+                },
+                {
+                    "text": "normal dentition",
+                    "template": "normal dentition"
+                },
+                {
+                    "text": "normal gums",
+                    "template": "normal gums"
+                },
+                {
+                    "text": "pharynx unremarkable",
+                    "template": "pharynx unremarkable"
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Trachea\/ Voice",
+            "template": "NECK: {children}",
+            "children": [
+                {
+                    "text": "trachea midline",
+                    "template": "trachea midline"
+                },
+                {
+                    "text": "voice NL",
+                    "template": "voice NL"
+                },
+                {
+                    "text": "hoarseness",
+                    "template": "hoarseness",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "inspiratory stridor",
+                    "template": "inspiratory stridor",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "expiratory stridor",
+                    "template": "expiratory stridor",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Tracheal deviation\/ mobility",
+                    "template": "trachea {children}",
+                    "children": [
+                        {
+                            "text": "mobile",
+                            "template": "mobile"
+                        },
+                        {
+                            "text": "deviated to R",
+                            "template": "deviated to R"
+                        },
+                        {
+                            "text": "deviated to L",
+                            "template": "deviated to L"
+                        },
+                        {
+                            "text": "fixed",
+                            "template": "fixed"
+                        }
+                    ]
+                },
+                {
+                    "text": "Tracheostomy",
+                    "template": "Tracheostomy:",
+                    "children": [
+                        {
+                            "text": "well healed scar",
+                            "template": "well healed scar"
+                        },
+                        {
+                            "text": "stoma without lesions",
+                            "template": "stoma without lesions"
+                        },
+                        {
+                            "text": "erythema",
+                            "template": "erythema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "discharge",
+                            "template": "discharge",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bleeding",
+                            "template": "bleeding",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "swelling",
+                            "template": "swelling",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Neck",
+            "template": "NECK: {children}",
+            "children": [
+                {
+                    "text": "soft, nontender",
+                    "template": "soft, nontender"
+                },
+                {
+                    "text": "no increased JVP visible",
+                    "template": "no increased JVP visible"
+                },
+                {
+                    "text": "no cervical LN",
+                    "template": "no significant cervical lymphadenopathy"
+                },
+                {
+                    "text": "Lymphadenopathy",
+                    "template": "{children} lymphadenopathy",
+                    "children": [
+                        {
+                            "text": "shotty cervical",
+                            "template": "shotty cervical"
+                        },
+                        {
+                            "text": "submental",
+                            "template": "submental"
+                        },
+                        {
+                            "text": "R submandibular",
+                            "template": "R submandibular"
+                        },
+                        {
+                            "text": "L submandibular",
+                            "template": "L submandibular"
+                        },
+                        {
+                            "text": "R ant. cervical",
+                            "template": "R anterior cervical"
+                        },
+                        {
+                            "text": "L ant. cervical",
+                            "template": "L anterior cervical"
+                        },
+                        {
+                            "text": "R preauricular",
+                            "template": "R preauricular"
+                        },
+                        {
+                            "text": "L preauricular",
+                            "template": "L preauricular"
+                        },
+                        {
+                            "text": "R post. auricular",
+                            "template": "R posterior auricular"
+                        },
+                        {
+                            "text": "L post. auricular",
+                            "template": "L posterior auricular"
+                        },
+                        {
+                            "text": "R supraclavicular",
+                            "template": "R supraclavicular"
+                        },
+                        {
+                            "text": "L supraclavicular",
+                            "template": "L supraclavicular"
+                        }
+                    ]
+                },
+                {
+                    "text": "neck not enlarged",
+                    "template": "neck not enlarged"
+                },
+                {
+                    "text": "obese neck",
+                    "template": "neck obesity",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "thyromegaly",
+                    "template": "thyromegaly",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "micrognathia",
+                    "template": "micrognathia",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "JVP abnormality",
+                    "template": "JVP: {children}",
+                    "children": [
+                        {
+                            "text": "JVD",
+                            "template": "jugular venous distension",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "H-J reflux",
+                            "template": "hepato-jugular reflux",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "inspiratory rise (Kussmaul)",
+                            "template": "inspiratory rise (Kussmaul)",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "JVP level (cm)",
+                    "template": "JVP {text} cm above the sternal angle",
+                    "type": "number"
+                },
+                {
+                    "text": "Neck circumference",
+                    "template": "Neck circumference: {text}",
+                    "type": "alpha"
+                },
+                {
+                    "text": "Pemberton's sign",
+                    "template": "Pemberton's sign",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "hepatojugular reflex elicited",
+                    "template": "hepatojugular reflex elicited",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Respiratory, Chest wall",
+            "template": "RESP: {children}",
+            "children": [
+                {
+                    "text": "no respiratory distress",
+                    "template": "no respiratory distress"
+                },
+                {
+                    "text": "auscultation clear BL",
+                    "template": "clear to auscultation bilaterally"
+                },
+                {
+                    "text": "no wheezes\/rales\/rhonchi",
+                    "template": "no wheezes\/rales\/rhonchi"
+                },
+                {
+                    "text": "percussion clear BL",
+                    "template": "clear to percussion bilaterally"
+                },
+                {
+                    "text": "chest wall symmetric",
+                    "template": "chest wall symmetric"
+                },
+                {
+                    "text": "barrel chest",
+                    "template": "barrel chest",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "pectus excavatum",
+                    "template": "pectus excavatum",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "pectus carinatum",
+                    "template": "pectus carinatum",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "kyphosis",
+                    "template": "kyphosis",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "scoliosis",
+                    "template": "scoliosis",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "subcutaneous emphysema",
+                    "template": "subcutaneous emphysema",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Abnl lung sounds, R",
+                    "template": "Abnl lung sounds, R: {children}",
+                    "children": [
+                        {
+                            "text": "whoop",
+                            "template": "whoop",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "stridor",
+                            "template": "stridor",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pleural rub",
+                            "template": "pleural rub"
+                        },
+                        {
+                            "text": "basilar rales",
+                            "template": "basilar rales"
+                        },
+                        {
+                            "text": "rales scattered",
+                            "template": "scattered rales"
+                        },
+                        {
+                            "text": "rhonchi scattered",
+                            "template": "scattered rhonchi"
+                        },
+                        {
+                            "text": "diminished breath sounds throughout",
+                            "template": "diminished breath sounds throughout"
+                        },
+                        {
+                            "text": "diminished breath sounds at bases",
+                            "template": "diminished breath sounds at bases"
+                        },
+                        {
+                            "text": "wheezes, expiration",
+                            "template": "expiratory wheezes"
+                        }
+                    ]
+                },
+                {
+                    "text": "Abnl lung sounds, L",
+                    "template": "Abnl lung sounds, L: {children}",
+                    "children": [
+                        {
+                            "text": "whoop",
+                            "template": "whoop",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "stridor",
+                            "template": "stridor",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pleural rub",
+                            "template": "pleural rub"
+                        },
+                        {
+                            "text": "basilar rales",
+                            "template": "basilar rales"
+                        },
+                        {
+                            "text": "rales scattered",
+                            "template": "scattered rales"
+                        },
+                        {
+                            "text": "rhonchi scattered",
+                            "template": "scattered rhonchi"
+                        },
+                        {
+                            "text": "diminished breath sounds throughout",
+                            "template": "diminished breath sounds throughout"
+                        },
+                        {
+                            "text": "diminished breath sounds at bases",
+                            "template": "diminished breath sounds at bases"
+                        },
+                        {
+                            "text": "wheezes, expiration",
+                            "template": "expiratory wheezes"
+                        }
+                    ]
+                },
+                {
+                    "text": "Abnl lung sounds, BL",
+                    "template": "Abnl lung sounds, BL: {children}",
+                    "children": [
+                        {
+                            "text": "whoop",
+                            "template": "whoop",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "stridor",
+                            "template": "stridor",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pleural rub",
+                            "template": "pleural rub"
+                        },
+                        {
+                            "text": "basilar rales",
+                            "template": "basilar rales"
+                        },
+                        {
+                            "text": "rales scattered",
+                            "template": "scattered rales"
+                        },
+                        {
+                            "text": "rhonchi scattered",
+                            "template": "scattered rhonchi"
+                        },
+                        {
+                            "text": "diminished breath sounds throughout",
+                            "template": "diminished breath sounds throughout"
+                        },
+                        {
+                            "text": "diminished breath sounds at bases",
+                            "template": "diminished breath sounds at bases"
+                        },
+                        {
+                            "text": "wheezes, expiration",
+                            "template": "expiratory wheezes"
+                        }
+                    ]
+                },
+                {
+                    "text": "Percussion, R",
+                    "template": "Percussion, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal to percussion",
+                            "template": "normal to percussion"
+                        },
+                        {
+                            "text": "dullness to percussion at base",
+                            "template": "dullness to percussion at base"
+                        },
+                        {
+                            "text": "dullness throughout",
+                            "template": "dullness to percussion throughout"
+                        }
+                    ]
+                },
+                {
+                    "text": "Percussion, L",
+                    "template": "Percussion, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal to percussion",
+                            "template": "normal to percussion"
+                        },
+                        {
+                            "text": "dullness to percussion at base",
+                            "template": "dullness to percussion at base"
+                        },
+                        {
+                            "text": "dullness throughout",
+                            "template": "dullness to percussion throughout"
+                        }
+                    ]
+                },
+                {
+                    "text": "Percussion, BL",
+                    "template": "Percussion, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal to percussion",
+                            "template": "normal to percussion"
+                        },
+                        {
+                            "text": "dullness to percussion at base",
+                            "template": "dullness to percussion at base"
+                        },
+                        {
+                            "text": "dullness throughout",
+                            "template": "dullness to percussion throughout"
+                        }
+                    ]
+                },
+                {
+                    "text": "Breathing dynamics, R",
+                    "template": "Breathing dynamics, R: {children}",
+                    "children": [
+                        {
+                            "text": "labored breathing",
+                            "template": "labored breathing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "accessory muscle use",
+                            "template": "accessory muscle use",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "rib retractions",
+                            "template": "rib retractions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abnormal diaphragm mvt",
+                            "template": "abnormal diaphragm movement",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Breathing dynamics, L",
+                    "template": "Breathing dynamics, L: {children}",
+                    "children": [
+                        {
+                            "text": "labored breathing",
+                            "template": "labored breathing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "accessory muscle use",
+                            "template": "accessory muscle use",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "rib retractions",
+                            "template": "rib retractions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abnormal diaphragm mvt",
+                            "template": "abnormal diaphragm movement",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Breathing dynamics, BL",
+                    "template": "Breathing dynamics, BL: {children}",
+                    "children": [
+                        {
+                            "text": "labored breathing",
+                            "template": "labored breathing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "accessory muscle use",
+                            "template": "accessory muscle use",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "rib retractions",
+                            "template": "rib retractions",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "abnormal diaphragm mvt",
+                            "template": "abnormal diaphragm movement",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Chest wall tenderness, R",
+                    "template": "Chest wall tenderness, R: {children}",
+                    "children": [
+                        {
+                            "text": "anterior",
+                            "template": "anterior"
+                        },
+                        {
+                            "text": "posterior",
+                            "template": "posterior"
+                        },
+                        {
+                            "text": "lateral",
+                            "template": "lateral"
+                        },
+                        {
+                            "text": "costochondral junction",
+                            "template": "costochondral junction"
+                        }
+                    ]
+                },
+                {
+                    "text": "Chest wall tenderness, L",
+                    "template": "Chest wall tenderness, L: {children}",
+                    "children": [
+                        {
+                            "text": "anterior",
+                            "template": "anterior"
+                        },
+                        {
+                            "text": "posterior",
+                            "template": "posterior"
+                        },
+                        {
+                            "text": "lateral",
+                            "template": "lateral"
+                        },
+                        {
+                            "text": "costochondral junction",
+                            "template": "costochondral junction"
+                        }
+                    ]
+                },
+                {
+                    "text": "Chest wall tenderness, BL",
+                    "template": "Chest wall tenderness, BL: {children}",
+                    "children": [
+                        {
+                            "text": "anterior",
+                            "template": "anterior"
+                        },
+                        {
+                            "text": "posterior",
+                            "template": "posterior"
+                        },
+                        {
+                            "text": "lateral",
+                            "template": "lateral"
+                        },
+                        {
+                            "text": "costochondral junction",
+                            "template": "costochondral junction"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Cardiovascular",
+            "template": "CV: {children}",
+            "children": [
+                {
+                    "text": "RRR, no murmur\/rub\/gallop",
+                    "template": "RRR, no murmur\/rub\/gallop"
+                },
+                {
+                    "text": "S1, S2 findings",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "NL S1",
+                            "template": "NL S1"
+                        },
+                        {
+                            "text": "NL S2",
+                            "template": "NL S2"
+                        },
+                        {
+                            "text": "split S2",
+                            "template": "split S2"
+                        },
+                        {
+                            "text": "split S1",
+                            "template": "split S1"
+                        },
+                        {
+                            "text": "persistently split S2",
+                            "template": "persistently split S2"
+                        },
+                        {
+                            "text": "physiologically split S2",
+                            "template": "physiologically split S2"
+                        },
+                        {
+                            "text": "paradoxically split S2",
+                            "template": "paradoxically split S2"
+                        },
+                        {
+                            "text": "widely split S2",
+                            "template": "widely split S2"
+                        }
+                    ]
+                },
+                {
+                    "text": "S3 gallop",
+                    "template": "S3 gallop",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "S4 gallop",
+                    "template": "S4 gallop",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "regular rate and rhythm",
+                    "template": "regular rate and rhythm"
+                },
+                {
+                    "text": "regular rate",
+                    "template": "regular rate"
+                },
+                {
+                    "text": "regular rhythm",
+                    "template": "regular rhythm"
+                },
+                {
+                    "text": "no murmurs",
+                    "template": "no murmurs"
+                },
+                {
+                    "text": "Murmur grade",
+                    "template": "Murmur grade: {text}\/6",
+                    "type": "number"
+                },
+                {
+                    "text": "Murmur timing\/location",
+                    "template": "murmur {children}",
+                    "children": [
+                        {
+                            "text": "systolic",
+                            "template": "is systolic"
+                        },
+                        {
+                            "text": "diastolic",
+                            "template": "is diastolic"
+                        },
+                        {
+                            "text": "holosystolic",
+                            "template": "is holosystolic"
+                        },
+                        {
+                            "text": "continuous",
+                            "template": "is continuous"
+                        },
+                        {
+                            "text": "best: L sternal border",
+                            "template": "best heard at L sternal border"
+                        },
+                        {
+                            "text": "best: 2nd R ICS",
+                            "template": "best heard near 2nd R ICS"
+                        },
+                        {
+                            "text": "best: xiphoid\/ sternal area",
+                            "template": "best heard at xiphoid\/sternal area"
+                        },
+                        {
+                            "text": "best: apex",
+                            "template": "best heard at apex"
+                        },
+                        {
+                            "text": "best: R sternal border",
+                            "template": "best heard at R sternal border"
+                        },
+                        {
+                            "text": "nonradiating",
+                            "template": "nonradiating"
+                        },
+                        {
+                            "text": "radiates to axilla",
+                            "template": "radiates to axilla"
+                        },
+                        {
+                            "text": "radiates to apex",
+                            "template": "radiates to apex"
+                        },
+                        {
+                            "text": "radiates to carotids",
+                            "template": "radiates to carotids"
+                        },
+                        {
+                            "text": "radiates to R side",
+                            "template": "radiates to R side"
+                        },
+                        {
+                            "text": "radiates to sternum",
+                            "template": "radiates to sternum"
+                        },
+                        {
+                            "text": "radiates to L clavicular area",
+                            "template": "radiates to L clavicular area"
+                        }
+                    ]
+                },
+                {
+                    "text": "no increased JVP visible",
+                    "template": "no increased JVP visible"
+                },
+                {
+                    "text": "JVP level (cm)",
+                    "template": "JVP {text} cm above the sternal angle",
+                    "type": "number"
+                },
+                {
+                    "text": "Heaves, Thrills, Lifts",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "heave",
+                            "template": "heave",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "parasternal lift",
+                            "template": "parasternal lift",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "thrill",
+                            "template": "thrill",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Extra heart sounds",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "extra heart sounds",
+                            "template": "extra heart sounds",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pulmonary ejection sound",
+                            "template": "pulmonary ejection sound",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "aortic ejection sound",
+                            "template": "aortic ejection sound",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "systolic click",
+                            "template": "systolic click",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "midsystolic click",
+                            "template": "midsystolic click",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mid-late systolic click",
+                            "template": "mid-to-late systolic click",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pericardial rub",
+                            "template": "pericardial rub",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "knock",
+                            "template": "knock",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "opening snap",
+                            "template": "opening snap",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "plop",
+                            "template": "plop",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "prosthetic sounds",
+                            "template": "prosthetic sounds",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pacemaker sounds",
+                            "template": "pacemaker sounds",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "PMI nondisplaced",
+                    "template": "PMI nondisplaced"
+                },
+                {
+                    "text": "PMI displaced",
+                    "template": "PMI displaced",
+                    "children": [
+                        {
+                            "text": "laterally",
+                            "template": "laterally"
+                        },
+                        {
+                            "text": "inferiorly",
+                            "template": "inferiorly"
+                        },
+                        {
+                            "text": "superiorly",
+                            "template": "superiorly"
+                        },
+                        {
+                            "text": "parasternally",
+                            "template": "parasternally"
+                        }
+                    ]
+                },
+                {
+                    "text": "Peripheral pulses, R",
+                    "template": "Peripheral pulses, R: {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity normal",
+                            "template": "upper extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lower extremity normal",
+                            "template": "lower extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished upper ext.",
+                            "template": "diminished in upper extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished lower ext.",
+                            "template": "diminished in lower extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pulsus paradoxicus",
+                            "template": "pulsus paradoxicus",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Peripheral pulses, L",
+                    "template": "Peripheral pulses, L: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact"
+                        },
+                        {
+                            "text": "upper extremity normal",
+                            "template": "upper extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lower extremity normal",
+                            "template": "lower extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished upper ext.",
+                            "template": "diminished in upper extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished lower ext.",
+                            "template": "diminished in lower extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pulsus paradoxicus",
+                            "template": "pulsus paradoxicus",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Peripheral pulses, BL",
+                    "template": "Peripheral pulses, BL: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact"
+                        },
+                        {
+                            "text": "upper extremity normal",
+                            "template": "upper extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lower extremity normal",
+                            "template": "lower extremity normal",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished upper ext.",
+                            "template": "diminished in upper extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "diminished lower ext.",
+                            "template": "diminished in lower extremities",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pulsus paradoxicus",
+                            "template": "pulsus paradoxicus",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Xanthomas, R",
+                    "template": "Xanthomas, R: {children}",
+                    "children": [
+                        {
+                            "text": "eyelids",
+                            "template": "eyelids"
+                        },
+                        {
+                            "text": "periorbital",
+                            "template": "periorbital area"
+                        },
+                        {
+                            "text": "hands",
+                            "template": "hands"
+                        },
+                        {
+                            "text": "achilles tendons",
+                            "template": "achilles tendons"
+                        },
+                        {
+                            "text": "feet",
+                            "template": "feet"
+                        },
+                        {
+                            "text": "elbows",
+                            "template": "elbows"
+                        },
+                        {
+                            "text": "knees",
+                            "template": "knees"
+                        },
+                        {
+                            "text": "shoulders",
+                            "template": "shoulders"
+                        },
+                        {
+                            "text": "buttocks",
+                            "template": "buttocks"
+                        }
+                    ]
+                },
+                {
+                    "text": "Xanthomas, L",
+                    "template": "Xanthomas, L: {children}",
+                    "children": [
+                        {
+                            "text": "eyelids",
+                            "template": "eyelids"
+                        },
+                        {
+                            "text": "periorbital",
+                            "template": "periorbital area"
+                        },
+                        {
+                            "text": "hands",
+                            "template": "hands"
+                        },
+                        {
+                            "text": "achilles tendons",
+                            "template": "achilles tendons"
+                        },
+                        {
+                            "text": "feet",
+                            "template": "feet"
+                        },
+                        {
+                            "text": "elbows",
+                            "template": "elbows"
+                        },
+                        {
+                            "text": "knees",
+                            "template": "knees"
+                        },
+                        {
+                            "text": "shoulders",
+                            "template": "shoulders"
+                        },
+                        {
+                            "text": "buttocks",
+                            "template": "buttocks"
+                        }
+                    ]
+                },
+                {
+                    "text": "Xanthomas, BL",
+                    "template": "Xanthomas, BL: {children}",
+                    "children": [
+                        {
+                            "text": "eyelids",
+                            "template": "eyelids"
+                        },
+                        {
+                            "text": "periorbital",
+                            "template": "periorbital area"
+                        },
+                        {
+                            "text": "hands",
+                            "template": "hands"
+                        },
+                        {
+                            "text": "achilles tendons",
+                            "template": "achilles tendons"
+                        },
+                        {
+                            "text": "feet",
+                            "template": "feet"
+                        },
+                        {
+                            "text": "elbows",
+                            "template": "elbows"
+                        },
+                        {
+                            "text": "knees",
+                            "template": "knees"
+                        },
+                        {
+                            "text": "shoulders",
+                            "template": "shoulders"
+                        },
+                        {
+                            "text": "buttocks",
+                            "template": "buttocks"
+                        }
+                    ]
+                },
+                {
+                    "text": "LE venous stasis changes",
+                    "template": "LE venous stasis changes",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "varicose veins",
+                    "template": "varicose veins",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "LE varicose veins, R",
+                    "template": "LE varicose veins, R: {children}",
+                    "children": [
+                        {
+                            "text": "present",
+                            "template": "present",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "LE varicose veins, L",
+                    "template": "LE varicose veins, L: {children}",
+                    "children": [
+                        {
+                            "text": "present",
+                            "template": "present",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "LE varicose veins, BL",
+                    "template": "LE varicose veins, BL: {children}",
+                    "children": [
+                        {
+                            "text": "present",
+                            "template": "present",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "Other findings: {text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Cardiovascular, pulses",
+            "template": "CV: {children}",
+            "children": [
+                {
+                    "text": "pulse rate and rhythm regular",
+                    "template": "pulse rate and rhythm regular"
+                },
+                {
+                    "text": "pulse rate regular",
+                    "template": "pulse rate regular"
+                },
+                {
+                    "text": "pulse rhythm regular",
+                    "template": "pulse rhythm regular"
+                },
+                {
+                    "text": "Temporal artery, R",
+                    "template": "Temporal artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Temporal artery, L",
+                    "template": "Temporal artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Temporal arteries, BL",
+                    "template": "Temporal arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Carotid artery, R",
+                    "template": "Carotid artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "delayed upstroke",
+                            "template": "delayed upstroke"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Carotid artery, L",
+                    "template": "Carotid artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "delayed upstroke",
+                            "template": "delayed upstroke"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Carotid arteries, BL",
+                    "template": "Carotid arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "delayed upstroke",
+                            "template": "delayed upstroke"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Brachial artery, R",
+                    "template": "Brachial artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Brachial artery, L",
+                    "template": "Brachial artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Brachial arteries, BL",
+                    "template": "Brachial arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Radial artery, R",
+                    "template": "Radial artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "waterhammer",
+                            "template": "waterhammer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bisferiens",
+                            "template": "bisferiens",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Radial artery, L",
+                    "template": "Radial artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "waterhammer",
+                            "template": "waterhammer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bisferiens",
+                            "template": "bisferiens",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Radial arteries, BL",
+                    "template": "Radial arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "waterhammer",
+                            "template": "waterhammer",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bisferiens",
+                            "template": "bisferiens",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Femoral artery, R",
+                    "template": "Femoral artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Femoral artery, L",
+                    "template": "Femoral artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Femoral arteries, BL",
+                    "template": "Femoral arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Popliteal artery, R",
+                    "template": "Popliteal artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Popliteal artery, L",
+                    "template": "Popliteal artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Popliteal arteries, BL",
+                    "template": "Popliteal arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Dorsalis pedis artery, R",
+                    "template": "Dorsalis pedis artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Dorsalis pedis artery, L",
+                    "template": "Dorsalis pedis artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Dorsalis pedis arteries, BL",
+                    "template": "Dorsalis pedis arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Posterior tibial, R",
+                    "template": "Posterior tibial, R: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Posterior tibial, L",
+                    "template": "Posterior tibial, L: {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Posterior tibial arteries, BL",
+                    "template": "Posterior tibial arteries, BL {children}",
+                    "children": [
+                        {
+                            "text": "pulse intact",
+                            "template": "pulse intact"
+                        },
+                        {
+                            "text": "diminished pulse",
+                            "template": "diminished pulse"
+                        },
+                        {
+                            "text": "normal amplitude",
+                            "template": "normal amplitude"
+                        },
+                        {
+                            "text": "bounding",
+                            "template": "bounding"
+                        },
+                        {
+                            "text": "irregular rhythm",
+                            "template": "irregular rhythm"
+                        },
+                        {
+                            "text": "pulsus paradoxus",
+                            "template": "pulsus paradoxus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit"
+                        },
+                        {
+                            "text": "+1 pulse",
+                            "template": "+1 pulse"
+                        },
+                        {
+                            "text": "+2 pulse",
+                            "template": "+2 pulse"
+                        },
+                        {
+                            "text": "+3 pulse",
+                            "template": "+3 pulse"
+                        },
+                        {
+                            "text": "+4 pulse",
+                            "template": "+4 pulse"
+                        }
+                    ]
+                },
+                {
+                    "text": "Renal artery, R",
+                    "template": "Renal artery, R: {children}",
+                    "children": [
+                        {
+                            "text": "bruit present",
+                            "template": "bruit present"
+                        },
+                        {
+                            "text": "palpable pulse",
+                            "template": "palpable pulse",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Renal artery, L",
+                    "template": "Renal artery, L: {children}",
+                    "children": [
+                        {
+                            "text": "bruit present",
+                            "template": "bruit present"
+                        },
+                        {
+                            "text": "palpable pulse",
+                            "template": "palpable pulse",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Renal arteries, BL",
+                    "template": "Renal arteries, BL: {children}",
+                    "children": [
+                        {
+                            "text": "bruit present",
+                            "template": "bruit present"
+                        },
+                        {
+                            "text": "palpable pulse",
+                            "template": "palpable pulse",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Aorta",
+                    "template": "Aorta: {children}",
+                    "children": [
+                        {
+                            "text": "enlargement",
+                            "template": "enlargement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "bruit",
+                            "template": "bruit",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Gastrointestinal",
+            "template": "GI: {children}",
+            "children": [
+                {
+                    "text": "NL abdominal inspection",
+                    "template": "NL abdominal inspection"
+                },
+                {
+                    "text": "abdominal distension noted",
+                    "template": "abdominal distension noted"
+                },
+                {
+                    "text": "abdomen flat on inspection",
+                    "template": "abdomen flat on inspection"
+                },
+                {
+                    "text": "abdomen obese on inspection",
+                    "template": "abdomen obese on inspection"
+                },
+                {
+                    "text": "abdomen scaphoid on inspection",
+                    "template": "abdomen scaphoid on inspection"
+                },
+                {
+                    "text": "bowel sounds intact throughout",
+                    "template": "bowel sounds intact throughout"
+                },
+                {
+                    "text": "decreased bowel sounds",
+                    "template": "decreased bowel sounds",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "absent bowel sounds",
+                    "template": "absent bowel sounds",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "high pitched bowel sounds",
+                    "template": "high pitched bowel sounds",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "borborygmi",
+                    "template": "borborygmi",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "soft, nontender to palpation",
+                    "template": "soft, nontender to palpation"
+                },
+                {
+                    "text": "no rebound\/guarding\/rigidity",
+                    "template": "no rebound\/guarding\/rigidity"
+                },
+                {
+                    "text": "rebound",
+                    "template": "rebound",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "guarding",
+                    "template": "guarding",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "rigidity",
+                    "template": "rigidity",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "hepatomegaly",
+                    "template": "hepatomegaly",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "splenomegaly",
+                    "template": "splenomegaly",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "masses",
+                    "template": "masses",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Abdominal exam: tenderness",
+                    "template": "Abdominal pain: {children}",
+                    "children": [
+                        {
+                            "text": "no tenderness noted on exam",
+                            "template": "no tenderness noted on exam"
+                        },
+                        {
+                            "text": "tenderness at rest",
+                            "template": "tenderness present at rest",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tenderness with palpation",
+                            "template": "tenderness present with palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "tenderness with movement",
+                            "template": "tenderness present with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "mild",
+                            "template": "mild pain present"
+                        },
+                        {
+                            "text": "moderate",
+                            "template": "moderate pain present"
+                        },
+                        {
+                            "text": "severe",
+                            "template": "severe pain present"
+                        },
+                        {
+                            "text": "present throughout",
+                            "template": "pain present throughout"
+                        },
+                        {
+                            "text": "right sided tenderness",
+                            "template": "right sided tenderness present"
+                        },
+                        {
+                            "text": "left sided tenderness",
+                            "template": "left sided tenderness present"
+                        },
+                        {
+                            "text": "midepigastric tenderness",
+                            "template": "midepigastric tenderness present"
+                        },
+                        {
+                            "text": "RUQ tenderness",
+                            "template": "RUQ tenderness present"
+                        },
+                        {
+                            "text": "LUQ tenderness",
+                            "template": "LUQ tenderness present"
+                        },
+                        {
+                            "text": "hypogastric tenderness",
+                            "template": "hypogastric tenderness present"
+                        },
+                        {
+                            "text": "RLQ tenderness",
+                            "template": "RLQ tenderness present"
+                        },
+                        {
+                            "text": "LLQ tenderness",
+                            "template": "LLQ tenderness present"
+                        },
+                        {
+                            "text": "periumbilical tenderness",
+                            "template": "periumbilical tenderness present"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Dermatologic\/Lymphatic",
+            "template": "DERM: {children}",
+            "children": [
+                {
+                    "text": "diaphoresis",
+                    "template": "diaphoresis",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "periorbital xanthelasma",
+                    "template": "periorbital xanthelasma",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "xanthomas",
+                    "template": "xanthomas",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "cyanosis",
+                    "template": "cyanosis",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Cyanosis location",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "perioral cyanosis",
+                            "template": "perioral cyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "acral cyanosis",
+                            "template": "acral cyanosis",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "decreased hair LE",
+                    "template": "decreased hair LE",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "stasis dermatitis R LE",
+                    "template": "stasis dermatitis R LE",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "stasis dermatitis L LE",
+                    "template": "stasis dermatitis L LE",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "dry skin",
+                    "template": "dry skin",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "clubbing",
+                    "template": "clubbing",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "petechiae",
+                    "template": "petechiae",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "lymphadenopathy",
+                    "template": "lymphadenopathy",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Extremities",
+            "template": "EXT: {children}",
+            "children": [
+                {
+                    "text": "no C\/C\/E",
+                    "template": "no C\/C\/E"
+                },
+                {
+                    "text": "cyanosis",
+                    "template": "cyanosis",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "clubbing",
+                    "template": "clubbing",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "edema",
+                    "template": "edema",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "anasarca",
+                    "template": "anasarca",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Nailfold angle",
+                    "template": "nailfold angle {text} degrees",
+                    "type": "number"
+                },
+                {
+                    "text": "Ratio DIP: interphalangeal depth",
+                    "template": "DIP to interphalangeal depth ratio {text}:1",
+                    "type": "number"
+                },
+                {
+                    "text": "Upper extremity C\/C\/E, R",
+                    "template": "Upper extremity clubbing\/edema\/cyanosis, R: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity C\/C\/E, L",
+                    "template": "Upper extremity C\/C\/E, L: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremities C\/C\/E, BL",
+                    "template": "Upper extremities C\/C\/E, BL: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity C\/C\/E, R",
+                    "template": "Lower extremity C\/C\/E, R: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity C\/C\/E, L",
+                    "template": "Lower extremity C\/C\/E, L: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremities C\/C\/E, BL",
+                    "template": "Lower extremities C\/C\/E, BL: {children}",
+                    "children": [
+                        {
+                            "text": "acrocyanosis",
+                            "template": "acrocyanosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "clubbing",
+                            "template": "clubbing",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pitting edema",
+                            "template": "pitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "nonpitting edema",
+                            "template": "nonpitting edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "full range of motion throughout",
+                    "template": "full range of motion throughout"
+                },
+                {
+                    "text": "upper ext strength intact BL",
+                    "template": "upper extremity strength intact BL",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Upper extremity, ROM, R",
+                    "template": "Upper extremity, range of motion, R: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity, ROM, L",
+                    "template": "Upper extremity, range of motion, L: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremities, ROM, BL",
+                    "template": "Upper extremities, range of motion, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "lower ext strength intact BL",
+                    "template": "lower extremity strength intact BL",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Lower extremity, ROM, R",
+                    "template": "Lower extremity, range of motion, R: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity, ROM, L",
+                    "template": "Lower extremity, range of motion, L: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity, ROM, BL",
+                    "template": "Lower extremity, range of motion, BL: {children}",
+                    "children": [
+                        {
+                            "text": "no limitation",
+                            "template": "no limitation"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "upper extremity strength intact BL",
+                    "template": "Upper extremity strength intact BL",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Upper extremity strength, R",
+                    "template": "Upper extremity strength, R: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity strength, L",
+                    "template": "Upper extremity strength, L: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity strength, BL",
+                    "template": "Upper extremity strength, BL: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "lower extremity strength intact BL",
+                    "template": "Lower extremity strength intact BL",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Lower extremity strength, R",
+                    "template": "Lower extremity strength, R: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity strength, L",
+                    "template": "Lower extremity strength, L: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity strength, BL",
+                    "template": "Lower extremity strength, BL: {children}",
+                    "children": [
+                        {
+                            "text": "intact",
+                            "template": "intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "intact against resistance",
+                            "template": "intact against resistance",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "decreased",
+                            "template": "decreased",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5",
+                            "template": "+0\/5"
+                        },
+                        {
+                            "text": "+1\/5",
+                            "template": "+1\/5"
+                        },
+                        {
+                            "text": "+2\/5",
+                            "template": "+2\/5"
+                        },
+                        {
+                            "text": "+3\/5",
+                            "template": "+3\/5"
+                        },
+                        {
+                            "text": "+4\/5",
+                            "template": "+4\/5"
+                        },
+                        {
+                            "text": "+5\/5",
+                            "template": "+5\/5"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Musculoskeletal",
+            "template": "MUSC\/SKEL: {children}",
+            "children": [
+                {
+                    "text": "muscle strength NL throughout",
+                    "template": "muscle strength NL throughout"
+                },
+                {
+                    "text": "NL upper extremity exam",
+                    "template": "Upper extremity exam normal bilaterally",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "NL lower extremity exam",
+                    "template": "Lower extremity exam normal bilaterally",
+                    "type": "plus-minus"
+                },
+                {
+                    "text": "Upper extremity, R",
+                    "template": "Upper extremity exam, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "strength and tone normal"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity, L",
+                    "template": "Upper extremity exam, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "strength and tone normal"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Upper extremity, BL",
+                    "template": "Upper extremity exam, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "strength and tone normal"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity, R",
+                    "template": "Lower extremity exam, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "strength and tone normal"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity, L",
+                    "template": "Lower extremity exam, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "strength and tone normal"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Lower extremity, BL",
+                    "template": "Lower extremity exam, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength and tone",
+                            "template": "strength and tone normal"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "passive range of motion intact",
+                            "template": "passive range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "active range of motion intact",
+                            "template": "active range of motion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "wasting",
+                            "template": "wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "cogwheeling rigidity",
+                            "template": "cogwheeling rigidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "fasciculations",
+                            "template": "fasciculations",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "+0\/5 strength",
+                            "template": "+0\/5 strength"
+                        },
+                        {
+                            "text": "+1\/5 strength",
+                            "template": "+1\/5 strength"
+                        },
+                        {
+                            "text": "+2\/5 strength",
+                            "template": "+2\/5 strength"
+                        },
+                        {
+                            "text": "+3\/5 strength",
+                            "template": "+3\/5 strength"
+                        },
+                        {
+                            "text": "+4\/5 strength",
+                            "template": "+4\/5 strength"
+                        },
+                        {
+                            "text": "+5\/5 (normal) strength",
+                            "template": "+5\/5 (normal) strength"
+                        }
+                    ]
+                },
+                {
+                    "text": "Back, R",
+                    "template": "Back exam, R: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sacral edema",
+                            "template": "sacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "presacral edema",
+                            "template": "presacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "costovertebral angle tenderness",
+                            "template": "costovertebral angle tenderness",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Back, L",
+                    "template": "Back exam, L: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sacral edema",
+                            "template": "sacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "presacral edema",
+                            "template": "presacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "costovertebral angle tenderness",
+                            "template": "costovertebral angle tenderness",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Back, BL",
+                    "template": "Back exam, BL: {children}",
+                    "children": [
+                        {
+                            "text": "normal strength",
+                            "template": "normal strength"
+                        },
+                        {
+                            "text": "decreased strength",
+                            "template": "decreased strength",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "full range of motion",
+                            "template": "full range of motion"
+                        },
+                        {
+                            "text": "pain on palpation",
+                            "template": "pain on palpation",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "pain with movement",
+                            "template": "pain with movement",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flexion intact",
+                            "template": "flexion intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "extension intact",
+                            "template": "extension intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "lateral rotation intact",
+                            "template": "lateral rotation intact",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "muscle atrophy\/wasting",
+                            "template": "muscle atrophy\/wasting",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "flaccidity",
+                            "template": "flaccidity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "spasticity",
+                            "template": "spasticity",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "scoliosis",
+                            "template": "scoliosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "kyphosis",
+                            "template": "kyphosis",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "sacral edema",
+                            "template": "sacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "presacral edema",
+                            "template": "presacral edema",
+                            "type": "plus-minus"
+                        },
+                        {
+                            "text": "costovertebral angle tenderness",
+                            "template": "costovertebral angle tenderness",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other findings (describe)",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Neurologic: General",
+            "template": "NEURO: {children}",
+            "children": [
+                {
+                    "text": "CN II-XII intact and nonfocal",
+                    "template": "CN II-XII intact and nonfocal"
+                },
+                {
+                    "text": "Other detail",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Neuro: Deep tendon reflexes",
+            "template": "NEURO: {children}",
+            "children": [
+                {
+                    "text": "DTRs intact and equal BL throughout",
+                    "template": "DTRs intact and equal BL throughout"
+                },
+                {
+                    "text": "Brachioradialis reflex, R",
+                    "template": "R brachioradialis reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Brachioradialis reflex, L",
+                    "template": "L brachioradialis reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Brachioradialis reflex, BL",
+                    "template": "L brachioradialis reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Biceps reflex, R",
+                    "template": "R biceps reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Biceps reflex, L",
+                    "template": "L biceps reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Biceps reflex, BL",
+                    "template": "BL biceps reflexes {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Triceps reflex, R",
+                    "template": "R triceps reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Triceps reflex, L",
+                    "template": "L triceps reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Triceps reflex, BL",
+                    "template": "BL triceps reflexes {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Patellar reflex, R",
+                    "template": "R patellar reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Patellar reflex, L",
+                    "template": "L patellar reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Patellar reflex, BL",
+                    "template": "BL patellar reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Achilles reflex, R",
+                    "template": "R achilles reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Achilles reflex, L",
+                    "template": "L achilles reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Achilles reflex, BL",
+                    "template": "BL achilles reflexes {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Ankle reflex, R",
+                    "template": "R ankle reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Ankle reflex, L",
+                    "template": "L ankle reflex {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Ankle reflex, BL",
+                    "template": "BL ankle reflexes {children}",
+                    "children": [
+                        {
+                            "text": "0 (absent)",
+                            "template": "absent"
+                        },
+                        {
+                            "text": "+1",
+                            "template": "+1"
+                        },
+                        {
+                            "text": "+2",
+                            "template": "+2"
+                        },
+                        {
+                            "text": "+3",
+                            "template": "+3"
+                        },
+                        {
+                            "text": "+4",
+                            "template": "+4"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other detail",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Neuro: Sensory",
+            "template": "NEURO: {children}",
+            "children": [
+                {
+                    "text": "sensation grossly intact throughout",
+                    "template": "sensation grossly intact throughout"
+                },
+                {
+                    "text": "Sensation to light touch",
+                    "template": "sensation to light touch {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity, right intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, intact BL",
+                            "template": "intact in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "upper extremity, right diminished",
+                            "template": "diminished in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left diminished",
+                            "template": "diminished in left upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, diminished BL",
+                            "template": "diminished in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "lower extremity, right intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, intact BL",
+                            "template": "intact in the bilateral lower extremities"
+                        },
+                        {
+                            "text": "lower extremity, right diminished",
+                            "template": "diminished in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left diminished",
+                            "template": "diminished in left lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, diminished BL",
+                            "template": "diminished in the bilateral lower extremities"
+                        }
+                    ]
+                },
+                {
+                    "text": "Sensation to dull touch",
+                    "template": "sensation to dull touch {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity, right intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, intact BL",
+                            "template": "intact in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "upper extremity, right diminished",
+                            "template": "diminished in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left diminished",
+                            "template": "diminished in left upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, diminished BL",
+                            "template": "diminished in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "lower extremity, right intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, intact BL",
+                            "template": "intact in the bilateral lower extremities"
+                        },
+                        {
+                            "text": "lower extremity, right diminished",
+                            "template": "diminished in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left diminished",
+                            "template": "diminished in left lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, diminished BL",
+                            "template": "diminished in the bilateral lower extremities"
+                        }
+                    ]
+                },
+                {
+                    "text": "Sensation to cold temperature",
+                    "template": "sensation to cold temperature {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity, right intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, intact BL",
+                            "template": "intact in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "upper extremity, right diminished",
+                            "template": "diminished in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left diminished",
+                            "template": "diminished in left upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, diminished BL",
+                            "template": "diminished in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "lower extremity, right intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, intact BL",
+                            "template": "intact in the bilateral lower extremities"
+                        },
+                        {
+                            "text": "lower extremity, right diminished",
+                            "template": "diminished in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left diminished",
+                            "template": "diminished in left lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, diminished BL",
+                            "template": "diminished in the bilateral lower extremities"
+                        }
+                    ]
+                },
+                {
+                    "text": "Sensation to warm temperature",
+                    "template": "sensation to warm temperature {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity, right intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, intact BL",
+                            "template": "intact in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "upper extremity, right diminished",
+                            "template": "diminished in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left diminished",
+                            "template": "diminished in left upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, diminished BL",
+                            "template": "diminished in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "lower extremity, right intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, intact BL",
+                            "template": "intact in the bilateral lower extremities"
+                        },
+                        {
+                            "text": "lower extremity, right diminished",
+                            "template": "diminished in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left diminished",
+                            "template": "diminished in left lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, diminished BL",
+                            "template": "diminished in the bilateral lower extremities"
+                        }
+                    ]
+                },
+                {
+                    "text": "Vibratory sensation",
+                    "template": "vibratory sensation {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity, right intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, intact BL",
+                            "template": "intact in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "upper extremity, right diminished",
+                            "template": "diminished in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left diminished",
+                            "template": "diminished in left upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, diminished BL",
+                            "template": "diminished in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "lower extremity, right intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, intact BL",
+                            "template": "intact in the bilateral lower extremities"
+                        },
+                        {
+                            "text": "lower extremity, right diminished",
+                            "template": "diminished in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left diminished",
+                            "template": "diminished in left lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, diminished BL",
+                            "template": "diminished in the bilateral lower extremities"
+                        }
+                    ]
+                },
+                {
+                    "text": "Stereognosis",
+                    "template": "stereognosis {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity, right intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left intact",
+                            "template": "intact in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, intact BL",
+                            "template": "intact in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "upper extremity, right diminished",
+                            "template": "diminished in right upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left diminished",
+                            "template": "diminished in left upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, diminished BL",
+                            "template": "diminished in the bilateral upper extremities"
+                        },
+                        {
+                            "text": "lower extremity, right intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left intact",
+                            "template": "intact in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, intact BL",
+                            "template": "intact in the bilateral lower extremities"
+                        },
+                        {
+                            "text": "lower extremity, right diminished",
+                            "template": "diminished in right lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left diminished",
+                            "template": "diminished in left lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, diminished BL",
+                            "template": "diminished in the bilateral lower extremities"
+                        }
+                    ]
+                },
+                {
+                    "text": "Paresthesias",
+                    "template": "parethesias present {children}",
+                    "children": [
+                        {
+                            "text": "upper extremity, right",
+                            "template": "in the R upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, left",
+                            "template": "in the L upper extremity"
+                        },
+                        {
+                            "text": "upper extremity, bilateral",
+                            "template": "bilaterally in the upper extremities"
+                        },
+                        {
+                            "text": "lower extremity, right",
+                            "template": "in the R lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, left",
+                            "template": "in the L lower extremity"
+                        },
+                        {
+                            "text": "lower extremity, bilateral",
+                            "template": "bilaterally in the lower extremities"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other detail",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        },
+        {
+            "text": "Psychiatric",
+            "template": "PSYCH: {children}",
+            "children": [
+                {
+                    "text": "AO x 3",
+                    "template": "alert and oriented to time, place, and person"
+                },
+                {
+                    "text": "normal mood",
+                    "template": "normal mood"
+                },
+                {
+                    "text": "normal affect",
+                    "template": "normal affect"
+                },
+                {
+                    "text": "judgment intact",
+                    "template": "judgment intact"
+                },
+                {
+                    "text": "insight intact",
+                    "template": "insight intact"
+                },
+                {
+                    "text": "Mental status\/Concentration",
+                    "template": "{children}",
+                    "children": [
+                        {
+                            "text": "responds appropriately",
+                            "template": "responds appropriately"
+                        },
+                        {
+                            "text": "responds inappropriately",
+                            "template": "responds inappropriately"
+                        },
+                        {
+                            "text": "short term memory intact",
+                            "template": "short term memory intact"
+                        },
+                        {
+                            "text": "short term memory impaired",
+                            "template": "short term memory impaired"
+                        },
+                        {
+                            "text": "long term memory intact",
+                            "template": "long term memory intact"
+                        },
+                        {
+                            "text": "long term memory impaired",
+                            "template": "long term memory impaired"
+                        },
+                        {
+                            "text": "memory grossly intact",
+                            "template": "memory grossly intact"
+                        },
+                        {
+                            "text": "memory deficits noted",
+                            "template": "memory deficits noted"
+                        },
+                        {
+                            "text": "thought content normal",
+                            "template": "thought content normal"
+                        },
+                        {
+                            "text": "abnormal thought content",
+                            "template": "abnormal thought content"
+                        },
+                        {
+                            "text": "appears coherent",
+                            "template": "appears coherent"
+                        },
+                        {
+                            "text": "appears incoherent",
+                            "template": "appears incoherent"
+                        },
+                        {
+                            "text": "abstraction ability intact",
+                            "template": "abstraction ability intact"
+                        },
+                        {
+                            "text": "abstraction ability impaired",
+                            "template": "abstraction ability impaired"
+                        },
+                        {
+                            "text": "unable to assess mental status",
+                            "template": "unable to assess mental status"
+                        },
+                        {
+                            "text": "unresponsive to questions",
+                            "template": "unresponsive to questions"
+                        },
+                        {
+                            "text": "able to concentrate",
+                            "template": "able to concentrate",
+                            "type": "plus-minus"
+                        }
+                    ]
+                },
+                {
+                    "text": "Other detail",
+                    "template": "{text}",
+                    "type": "alpha"
+                }
+            ]
+        }
+    ]
+}