One last synchronization to DSTU2

This commit is contained in:
James Agnew 2015-04-02 11:37:40 -04:00
parent 065b87c31e
commit 1bdd2daa8e
31 changed files with 16379 additions and 16651 deletions

View File

@ -297,7 +297,7 @@ public Patient getResourceById(@IdParam IdDt theId) {
Patient retVal = new Patient();
// ...populate...
retVal.addIdentifier().setSystem("urn:mrns").setValue("12345").setLabel("MRN 12345");
retVal.addIdentifier().setSystem("urn:mrns").setValue("12345");
retVal.addName().addFamily("Smith").addGiven("Tester").addGiven("Q");
// ...etc...
@ -389,7 +389,7 @@ public List<Patient> searchByLastName(@RequiredParam(name=Patient.SP_FAMILY) Str
// ...populate...
Patient patient = new Patient();
patient.addIdentifier().setSystem("urn:mrns").setValue("12345").setLabel("MRN 12345");
patient.addIdentifier().setSystem("urn:mrns").setValue("12345");
patient.addName().addFamily("Smith").addGiven("Tester").addGiven("Q");
// ...etc...

View File

@ -1,6 +1,6 @@
package ca.uhn.fhir.jpa.provider;
import static org.junit.Assert.*;
import static org.junit.Assert.assertEquals;
import java.util.List;
@ -17,7 +17,7 @@ import ca.uhn.fhir.jpa.testutil.RandomServerPortProvider;
import ca.uhn.fhir.model.api.Bundle;
import ca.uhn.fhir.model.dstu.resource.Patient;
import ca.uhn.fhir.model.dstu.valueset.AdministrativeGenderCodesEnum;
import ca.uhn.fhir.model.dstu2.resource.SupportingDocumentation;
import ca.uhn.fhir.model.dstu2.resource.PaymentNotice;
import ca.uhn.fhir.model.dstu2.valueset.AdministrativeGenderEnum;
import ca.uhn.fhir.model.primitive.IdDt;
import ca.uhn.fhir.model.primitive.StringDt;
@ -105,12 +105,12 @@ public class ResourceProviderMultiVersionTest {
p.addIdentifier().setSystem("urn:MultiFhirVersionTest").setValue("testUnknownResourceType01");
IdDt id = ourClientDstu2.create().resource(p).execute().getId();
SupportingDocumentation s = new SupportingDocumentation();
PaymentNotice s = new PaymentNotice();
s.addIdentifier().setSystem("urn:MultiFhirVersionTest").setValue("testUnknownResourceType02");
id = ourClientDstu2.create().resource(s).execute().getId();
Bundle history = ourClientDstu2.history(null, id, null, null);
assertEquals(SupportingDocumentation.class, history.getEntries().get(0).getResource().getClass());
assertEquals(PaymentNotice.class, history.getEntries().get(0).getResource().getClass());
assertEquals(ca.uhn.fhir.model.dstu2.resource.Patient.class, history.getEntries().get(1).getResource().getClass());
history = ourClientDstu1.history(null, id, null, null);

View File

@ -227,7 +227,6 @@
<baseResourceName>Observation</baseResourceName>
<baseResourceName>AllergyIntolerance</baseResourceName>
<baseResourceName>ExplanationOfBenefit</baseResourceName>
<baseResourceName>SupportingDocumentation</baseResourceName>
<baseResourceName>RelatedPerson</baseResourceName>
<baseResourceName>AuditEvent</baseResourceName>
<baseResourceName>EligibilityResponse</baseResourceName>

View File

@ -7555,83 +7555,6 @@
<sch:assert test="not(exists(f:start)) or not(exists(f:end)) or (f:start/@value &lt;= f:end/@value)">per-1: If present, start SHALL have a lower value than end</sch:assert>
</sch:rule>
</sch:pattern>
<sch:pattern>
<sch:title>SupportingDocumentation</sch:title>
<sch:rule context="f:SupportingDocumentation/f:meta/f:security">
<sch:assert test="not (exists(f:valueSet) and exists(f:code)) or exists(f:system)">cod-1: If a valueSet is provided, a system URI Is required</sch:assert>
</sch:rule>
<sch:rule context="f:SupportingDocumentation/f:meta/f:tag">
<sch:assert test="not (exists(f:valueSet) and exists(f:code)) or exists(f:system)">cod-1: If a valueSet is provided, a system URI Is required</sch:assert>
</sch:rule>
<sch:rule context="f:SupportingDocumentation">
<sch:assert test="not(parent::f:contained and f:contained)">dom-2: If the resource is contained in another resource, it SHALL not contain nested Resources</sch:assert>
<sch:assert test="not(parent::f:contained and f:text)">dom-1: If the resource is contained in another resource, it SHALL not contain any narrative</sch:assert>
<sch:assert test="not(exists(f:contained/f:meta/f:versionId)) and not(exists(f:contained/f:meta/f:lastUpdated))">dom-4: If a resource is contained in another resource, it SHALL not have a meta.versionId or a meta.lastUpdated</sch:assert>
<sch:assert test="not(exists(for $id in f:contained/*/@id return $id[not(ancestor::f:contained/parent::*/descendant::f:reference/@value=concat('#', $id))]))">dom-3: If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource</sch:assert>
</sch:rule>
<sch:rule context="f:SupportingDocumentation/f:text/f:div">
<sch:assert test="not(descendant-or-self::*/@*[not(name(.)=('abbr', 'accesskey', 'align', 'alt', 'axis', 'bgcolor', 'border', 'cellhalign', 'cellpadding', 'cellspacing', 'cellvalign', 'char', 'charoff', 'charset', 'cite', 'class', 'colspan', 'compact', 'coords', 'dir', 'frame', 'headers', 'height', 'href', 'hreflang', 'hspace', 'id', 'lang', 'longdesc', 'name', 'nowrap', 'rel', 'rev', 'rowspan', 'rules', 'scope', 'shape', 'span', 'src', 'start', 'style', 'summary', 'tabindex', 'title', 'type', 'valign', 'value', 'vspace', 'width'))])">txt-3: The narrative SHALL contain only the basic html formatting attributes described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, &lt;a&gt; elements (either name or href), images and internally contained style attributes</sch:assert>
<sch:assert test="not(descendant-or-self::*[not(local-name(.)=('a', 'abbr', 'acronym', 'b', 'big', 'blockquote', 'br', 'caption', 'cite', 'code', 'colgroup', 'dd', 'dfn', 'div', 'dl', 'dt', 'em', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'hr', 'i', 'img', 'li', 'ol', 'p', 'pre', 'q', 'samp', 'small', 'span', 'strong', 'table', 'tbody', 'td', 'tfoot', 'th', 'thead', 'tr', 'tt', 'ul', 'var'))])">txt-1: The narrative SHALL contain only the basic html formatting elements described in chapters 7-11 (except section 4 of chapter 9) and 15 of the HTML 4.0 standard, &lt;a&gt; elements (either name or href), images and internally contained style attributes</sch:assert>
<sch:assert test="descendant::text()[normalize-space(.)!=''] or descendant::h:img[@src]">txt-2: The narrative SHALL have some non-whitespace content</sch:assert>
</sch:rule>
<sch:rule context="f:SupportingDocumentation/f:contained/f:meta/f:security">
<sch:assert test="not (exists(f:valueSet) and exists(f:code)) or exists(f:system)">cod-1: If a valueSet is provided, a system URI Is required</sch:assert>
</sch:rule>
<sch:rule context="f:SupportingDocumentation/f:contained/f:meta/f:tag">
<sch:assert test="not (exists(f:valueSet) and exists(f:code)) or exists(f:system)">cod-1: If a valueSet is provided, a system URI Is required</sch:assert>
</sch:rule>
<sch:rule context="f:SupportingDocumentation/f:contained/f:meta/f:security">
<sch:assert test="not (exists(f:valueSet) and exists(f:code)) or exists(f:system)">cod-1: If a valueSet is provided, a system URI Is required</sch:assert>
</sch:rule>
<sch:rule context="f:SupportingDocumentation/f:contained/f:meta/f:tag">
<sch:assert test="not (exists(f:valueSet) and exists(f:code)) or exists(f:system)">cod-1: If a valueSet is provided, a system URI Is required</sch:assert>
</sch:rule>
<sch:rule context="f:SupportingDocumentation/f:identifier/f:type">
<sch:assert test="count(f:coding[f:primary/@value='true'])&lt;=1">ccc-2: Only one coding in a set can be chosen directly by the user</sch:assert>
</sch:rule>
<sch:rule context="f:SupportingDocumentation/f:identifier/f:type/f:coding">
<sch:assert test="not (exists(f:valueSet) and exists(f:code)) or exists(f:system)">cod-1: If a valueSet is provided, a system URI Is required</sch:assert>
</sch:rule>
<sch:rule context="f:SupportingDocumentation/f:identifier/f:period">
<sch:assert test="not(exists(f:start)) or not(exists(f:end)) or (f:start/@value &lt;= f:end/@value)">per-1: If present, start SHALL have a lower value than end</sch:assert>
</sch:rule>
<sch:rule context="f:SupportingDocumentation/f:identifier/f:assigner">
<sch:assert test="not(starts-with(f:reference/@value, '#')) or exists(ancestor::f:entry/f:resource/f:*/f:contained/f:*[f:id/@value=substring-after(current()/f:reference/@value, '#')]|/*/f:contained/f:*[f:id/@value=substring-after(current()/f:reference/@value, '#')])">ref-1: SHALL have a local reference if the resource is provided inline</sch:assert>
</sch:rule>
<sch:rule context="f:SupportingDocumentation/f:ruleset">
<sch:assert test="not (exists(f:valueSet) and exists(f:code)) or exists(f:system)">cod-1: If a valueSet is provided, a system URI Is required</sch:assert>
</sch:rule>
<sch:rule context="f:SupportingDocumentation/f:originalRuleset">
<sch:assert test="not (exists(f:valueSet) and exists(f:code)) or exists(f:system)">cod-1: If a valueSet is provided, a system URI Is required</sch:assert>
</sch:rule>
<sch:rule context="f:SupportingDocumentation/f:target">
<sch:assert test="not(starts-with(f:reference/@value, '#')) or exists(ancestor::f:entry/f:resource/f:*/f:contained/f:*[f:id/@value=substring-after(current()/f:reference/@value, '#')]|/*/f:contained/f:*[f:id/@value=substring-after(current()/f:reference/@value, '#')])">ref-1: SHALL have a local reference if the resource is provided inline</sch:assert>
</sch:rule>
<sch:rule context="f:SupportingDocumentation/f:provider">
<sch:assert test="not(starts-with(f:reference/@value, '#')) or exists(ancestor::f:entry/f:resource/f:*/f:contained/f:*[f:id/@value=substring-after(current()/f:reference/@value, '#')]|/*/f:contained/f:*[f:id/@value=substring-after(current()/f:reference/@value, '#')])">ref-1: SHALL have a local reference if the resource is provided inline</sch:assert>
</sch:rule>
<sch:rule context="f:SupportingDocumentation/f:organization">
<sch:assert test="not(starts-with(f:reference/@value, '#')) or exists(ancestor::f:entry/f:resource/f:*/f:contained/f:*[f:id/@value=substring-after(current()/f:reference/@value, '#')]|/*/f:contained/f:*[f:id/@value=substring-after(current()/f:reference/@value, '#')])">ref-1: SHALL have a local reference if the resource is provided inline</sch:assert>
</sch:rule>
<sch:rule context="f:SupportingDocumentation/f:request">
<sch:assert test="not(starts-with(f:reference/@value, '#')) or exists(ancestor::f:entry/f:resource/f:*/f:contained/f:*[f:id/@value=substring-after(current()/f:reference/@value, '#')]|/*/f:contained/f:*[f:id/@value=substring-after(current()/f:reference/@value, '#')])">ref-1: SHALL have a local reference if the resource is provided inline</sch:assert>
</sch:rule>
<sch:rule context="f:SupportingDocumentation/f:response">
<sch:assert test="not(starts-with(f:reference/@value, '#')) or exists(ancestor::f:entry/f:resource/f:*/f:contained/f:*[f:id/@value=substring-after(current()/f:reference/@value, '#')]|/*/f:contained/f:*[f:id/@value=substring-after(current()/f:reference/@value, '#')])">ref-1: SHALL have a local reference if the resource is provided inline</sch:assert>
</sch:rule>
<sch:rule context="f:SupportingDocumentation/f:author">
<sch:assert test="not(starts-with(f:reference/@value, '#')) or exists(ancestor::f:entry/f:resource/f:*/f:contained/f:*[f:id/@value=substring-after(current()/f:reference/@value, '#')]|/*/f:contained/f:*[f:id/@value=substring-after(current()/f:reference/@value, '#')])">ref-1: SHALL have a local reference if the resource is provided inline</sch:assert>
</sch:rule>
<sch:rule context="f:SupportingDocumentation/f:subject">
<sch:assert test="not(starts-with(f:reference/@value, '#')) or exists(ancestor::f:entry/f:resource/f:*/f:contained/f:*[f:id/@value=substring-after(current()/f:reference/@value, '#')]|/*/f:contained/f:*[f:id/@value=substring-after(current()/f:reference/@value, '#')])">ref-1: SHALL have a local reference if the resource is provided inline</sch:assert>
</sch:rule>
<sch:rule context="f:SupportingDocumentation/f:detail/f:contentReference">
<sch:assert test="not(starts-with(f:reference/@value, '#')) or exists(ancestor::f:entry/f:resource/f:*/f:contained/f:*[f:id/@value=substring-after(current()/f:reference/@value, '#')]|/*/f:contained/f:*[f:id/@value=substring-after(current()/f:reference/@value, '#')])">ref-1: SHALL have a local reference if the resource is provided inline</sch:assert>
</sch:rule>
<sch:rule context="f:SupportingDocumentation/f:detail/f:contentAttachment">
<sch:assert test="not(exists(f:data)) or exists(f:contentType)">att-1: It the Attachment has data, it SHALL have a contentType</sch:assert>
</sch:rule>
</sch:pattern>
<sch:pattern>
<sch:title>ClinicalImpression</sch:title>
<sch:rule context="f:ClinicalImpression/f:meta/f:security">

View File

@ -27,9 +27,9 @@
POSSIBILITY OF SUCH DAMAGE.
Generated on Tue, Mar 31, 2015 09:45-0400 for FHIR v0.4.0
Generated on Thu, Apr 2, 2015 10:47-0400 for FHIR v0.5.0
-->
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="http://hl7.org/fhir" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xml="http://www.w3.org/XML/1998/namespace" targetNamespace="http://hl7.org/fhir" elementFormDefault="qualified" version="0.4.0">
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="http://hl7.org/fhir" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xml="http://www.w3.org/XML/1998/namespace" targetNamespace="http://hl7.org/fhir" elementFormDefault="qualified" version="0.5.0">
<!-- Note: When using this schema with some tools, it may also be necessary to declare xmlns:xml="http://www.w3.org/XML/1998/namespace", however this causes performance issues with other tools and thus is not in the base schemas. -->
<xs:import namespace="http://www.w3.org/XML/1998/namespace" schemaLocation="xml.xsd"/>
<xs:import namespace="http://www.w3.org/1999/xhtml" schemaLocation="fhir-xhtml.xsd"/>
@ -210,7 +210,6 @@
</xs:complexType>
<xs:simpleType name="unsignedInt-primitive">
<xs:restriction base="xs:nonNegativeInteger">
<!--<xs:minLength value="1"/>-->
</xs:restriction>
</xs:simpleType>
<xs:complexType name="unsignedInt">
@ -259,7 +258,6 @@
</xs:complexType>
<xs:simpleType name="positiveInt-primitive">
<xs:restriction base="xs:positiveInteger">
<!--<xs:minLength value="1"/>-->
</xs:restriction>
</xs:simpleType>
<xs:complexType name="positiveInt">
@ -377,7 +375,6 @@
<xs:element ref="Subscription"/>
<xs:element ref="Substance"/>
<xs:element ref="Supply"/>
<xs:element ref="SupportingDocumentation"/>
<xs:element ref="ValueSet"/>
<xs:element ref="VisionPrescription"/>
<xs:element ref="Parameters"/>
@ -1766,12 +1763,12 @@ P.O. Box number, delivery hints, and similar address information.</xs:documentat
</xs:element>
<xs:element name="comments" type="string" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Comments about the use of the element, including notes about how to use the data properly, exceptions to proper use, etc.</xs:documentation>
<xs:documentation>Explanatory notes and implementation guidance about the data element, including notes about how to use the data properly, exceptions to proper use, etc.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="requirements" type="string" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Explains why this element is needed and why it's been constrained as it has.</xs:documentation>
<xs:documentation>This element is for traceability of why the element was created and why the constraints exist as they do. This may be used to point to source materials or specifications that drove the structure of this element.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="alias" type="string" minOccurs="0" maxOccurs="unbounded">
@ -3664,7 +3661,7 @@ P.O. Box number, delivery hints, and similar address information.</xs:documentat
</xs:enumeration>
<xs:enumeration value="Procedure">
<xs:annotation>
<xs:documentation>An action that is performed on a patient. This can be a physical 'thing' like an operation, or less invasive like counseling or hypnotherapy.</xs:documentation>
<xs:documentation>An action that is or was performed on a patient. This can be a physical 'thing' like an operation, or less invasive like counseling or hypnotherapy.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="ProcedureRequest">
@ -3752,11 +3749,6 @@ P.O. Box number, delivery hints, and similar address information.</xs:documentat
<xs:documentation>A supply - a request for something, and provision of what is supplied.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="SupportingDocumentation">
<xs:annotation>
<xs:documentation>This resource provides the supporting information for a process, for example clinical or financial information related to a claim or pre-authorization.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="ValueSet">
<xs:annotation>
<xs:documentation>A value set specifies a set of codes drawn from one or more code systems.</xs:documentation>
@ -4324,7 +4316,7 @@ P.O. Box number, delivery hints, and similar address information.</xs:documentat
</xs:enumeration>
<xs:enumeration value="Procedure">
<xs:annotation>
<xs:documentation>An action that is performed on a patient. This can be a physical 'thing' like an operation, or less invasive like counseling or hypnotherapy.</xs:documentation>
<xs:documentation>An action that is or was performed on a patient. This can be a physical 'thing' like an operation, or less invasive like counseling or hypnotherapy.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="ProcedureRequest">
@ -4412,11 +4404,6 @@ P.O. Box number, delivery hints, and similar address information.</xs:documentat
<xs:documentation>A supply - a request for something, and provision of what is supplied.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="SupportingDocumentation">
<xs:annotation>
<xs:documentation>This resource provides the supporting information for a process, for example clinical or financial information related to a claim or pre-authorization.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="ValueSet">
<xs:annotation>
<xs:documentation>A value set specifies a set of codes drawn from one or more code systems.</xs:documentation>
@ -4540,7 +4527,7 @@ P.O. Box number, delivery hints, and similar address information.</xs:documentat
</xs:element>
<xs:element name="recorder" minOccurs="0" maxOccurs="1" type="Reference">
<xs:annotation>
<xs:documentation>Indicates who has responsibility for the record.</xs:documentation>
<xs:documentation>Individual who recorded the record and takes responsibility for its conten.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="patient" minOccurs="1" maxOccurs="1" type="Reference">
@ -18680,12 +18667,12 @@ other observer (for example a relative or EMT), or any observation made about th
</xs:complexType>
<xs:element name="Procedure" type="Procedure">
<xs:annotation>
<xs:documentation>An action that is performed on a patient. This can be a physical 'thing' like an operation, or less invasive like counseling or hypnotherapy.</xs:documentation>
<xs:documentation>An action that is or was performed on a patient. This can be a physical 'thing' like an operation, or less invasive like counseling or hypnotherapy.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:complexType name="Procedure">
<xs:annotation>
<xs:documentation>An action that is performed on a patient. This can be a physical 'thing' like an operation, or less invasive like counseling or hypnotherapy.</xs:documentation>
<xs:documentation>An action that is or was performed on a patient. This can be a physical 'thing' like an operation, or less invasive like counseling or hypnotherapy.</xs:documentation>
<xs:documentation>If the element is present, it must have either a @value, an @id, or extensions</xs:documentation>
</xs:annotation>
<xs:complexContent>
@ -18794,7 +18781,7 @@ other observer (for example a relative or EMT), or any observation made about th
</xs:complexType>
<xs:complexType name="Procedure.BodySite">
<xs:annotation>
<xs:documentation>An action that is performed on a patient. This can be a physical 'thing' like an operation, or less invasive like counseling or hypnotherapy.</xs:documentation>
<xs:documentation>An action that is or was performed on a patient. This can be a physical 'thing' like an operation, or less invasive like counseling or hypnotherapy.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="BackboneElement">
@ -18812,7 +18799,7 @@ other observer (for example a relative or EMT), or any observation made about th
</xs:complexType>
<xs:complexType name="Procedure.Performer">
<xs:annotation>
<xs:documentation>An action that is performed on a patient. This can be a physical 'thing' like an operation, or less invasive like counseling or hypnotherapy.</xs:documentation>
<xs:documentation>An action that is or was performed on a patient. This can be a physical 'thing' like an operation, or less invasive like counseling or hypnotherapy.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="BackboneElement">
@ -18833,7 +18820,7 @@ other observer (for example a relative or EMT), or any observation made about th
</xs:complexType>
<xs:complexType name="Procedure.RelatedItem">
<xs:annotation>
<xs:documentation>An action that is performed on a patient. This can be a physical 'thing' like an operation, or less invasive like counseling or hypnotherapy.</xs:documentation>
<xs:documentation>An action that is or was performed on a patient. This can be a physical 'thing' like an operation, or less invasive like counseling or hypnotherapy.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="BackboneElement">
@ -18854,7 +18841,7 @@ other observer (for example a relative or EMT), or any observation made about th
</xs:complexType>
<xs:complexType name="Procedure.Device">
<xs:annotation>
<xs:documentation>An action that is performed on a patient. This can be a physical 'thing' like an operation, or less invasive like counseling or hypnotherapy.</xs:documentation>
<xs:documentation>An action that is or was performed on a patient. This can be a physical 'thing' like an operation, or less invasive like counseling or hypnotherapy.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="BackboneElement">
@ -20807,7 +20794,7 @@ other observer (for example a relative or EMT), or any observation made about th
</xs:element>
<xs:element name="fhirVersion" minOccurs="0" maxOccurs="1" type="id">
<xs:annotation>
<xs:documentation>The version of the FHIR specification on which this StructureDefinition is based - this is the formal version of the specification, without the revision number, e.g. [publication].[major].[minor], which is 0.4.0 for this version.</xs:documentation>
<xs:documentation>The version of the FHIR specification on which this StructureDefinition is based - this is the formal version of the specification, without the revision number, e.g. [publication].[major].[minor], which is 0.5.0 for this version.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="mapping" type="StructureDefinition.Mapping" minOccurs="0" maxOccurs="unbounded">
@ -21433,111 +21420,6 @@ other observer (for example a relative or EMT), or any observation made about th
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:element name="SupportingDocumentation" type="SupportingDocumentation">
<xs:annotation>
<xs:documentation>This resource provides the supporting information for a process, for example clinical or financial information related to a claim or pre-authorization.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:complexType name="SupportingDocumentation">
<xs:annotation>
<xs:documentation>This resource provides the supporting information for a process, for example clinical or financial information related to a claim or pre-authorization.</xs:documentation>
<xs:documentation>If the element is present, it must have either a @value, an @id, or extensions</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="DomainResource">
<xs:sequence>
<xs:element name="identifier" minOccurs="1" maxOccurs="unbounded" type="Identifier">
<xs:annotation>
<xs:documentation>The Response Business Identifier.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ruleset" minOccurs="0" maxOccurs="1" type="Coding">
<xs:annotation>
<xs:documentation>The version of the style of resource contents. This should be mapped to the allowable profiles for this and supporting resources.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="originalRuleset" minOccurs="0" maxOccurs="1" type="Coding">
<xs:annotation>
<xs:documentation>The style (standard) and version of the original material which was converted into this resource.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="created" minOccurs="0" maxOccurs="1" type="dateTime">
<xs:annotation>
<xs:documentation>The date when this resource was created.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="target" minOccurs="0" maxOccurs="1" type="Reference">
<xs:annotation>
<xs:documentation>The Insurer, organization or Provider who is target of the submission.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="provider" minOccurs="0" maxOccurs="1" type="Reference">
<xs:annotation>
<xs:documentation>The practitioner who is responsible for the services rendered to the patient.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="organization" minOccurs="0" maxOccurs="1" type="Reference">
<xs:annotation>
<xs:documentation>The organization which is responsible for the services rendered to the patient.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="request" minOccurs="0" maxOccurs="1" type="Reference">
<xs:annotation>
<xs:documentation>Original request.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="response" minOccurs="0" maxOccurs="1" type="Reference">
<xs:annotation>
<xs:documentation>Original response.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="author" minOccurs="0" maxOccurs="1" type="Reference">
<xs:annotation>
<xs:documentation>Person who created the submission.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="subject" minOccurs="0" maxOccurs="1" type="Reference">
<xs:annotation>
<xs:documentation>The patient who is directly or indirectly the subject of the supporting information.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="detail" type="SupportingDocumentation.Detail" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Supporting Files.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="SupportingDocumentation.Detail">
<xs:annotation>
<xs:documentation>This resource provides the supporting information for a process, for example clinical or financial information related to a claim or pre-authorization.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="BackboneElement">
<xs:sequence>
<xs:element name="linkId" minOccurs="1" maxOccurs="1" type="integer">
<xs:annotation>
<xs:documentation>A link Id for the response to reference.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:choice minOccurs="1" maxOccurs="1" >
<xs:annotation>
<xs:documentation>The attached content.</xs:documentation>
</xs:annotation>
<xs:element name="contentReference" type="Reference"/>
<xs:element name="contentAttachment" type="Attachment"/>
</xs:choice>
<xs:element name="dateTime" minOccurs="0" maxOccurs="1" type="dateTime">
<xs:annotation>
<xs:documentation>The date and optionally time when the material was created.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:element name="ValueSet" type="ValueSet">
<xs:annotation>
<xs:documentation>A value set specifies a set of codes drawn from one or more code systems.</xs:documentation>

View File

@ -10,7 +10,7 @@
<LastAuthor>Grahame</LastAuthor>
<Created>2012-03-19T11:12:07Z</Created>
<LastSaved>2015-03-08T05:31:13Z</LastSaved>
<Version>14.00</Version>
<Version>12.00</Version>
</DocumentProperties>
<OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">
<AllowPNG/>
@ -20,7 +20,7 @@
<WindowWidth>10620</WindowWidth>
<WindowTopX>15240</WindowTopX>
<WindowTopY>150</WindowTopY>
<ActiveSheet>2</ActiveSheet>
<ActiveSheet>1</ActiveSheet>
<RefModeR1C1/>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
@ -1441,7 +1441,7 @@
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="75">
<Row ss:Height="90">
<Cell ss:StyleID="s86"><Data ss:Type="String">ElementDefinition.comments</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1459,7 +1459,7 @@
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">Comments about the use of this element</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">Comments about the use of the element, including notes about how to use the data properly, exceptions to proper use, etc.</Data><NamedCell
<Cell ss:StyleID="s88"><Data ss:Type="String">Explanatory notes and implementation guidance about the data element, including notes about how to use the data properly, exceptions to proper use, etc.</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">If it is possible to capture usage rules using invariants, that mechanism should be used in preference to this element</Data><NamedCell
@ -1497,7 +1497,7 @@
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">Why is this needed?</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">Explains why this element is needed and why it's been constrained as it has</Data><NamedCell
<Cell ss:StyleID="s88"><Data ss:Type="String">This element is for traceability of why the element was created and why the constraints exist as they do. This may be used to point to source materials or specifications that drove the structure of this element.</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">This element does not describe the usage of the element (that's done in comments), rather it's for traceability of *why* the element is either needed or why the constraints exist as they do. This may be used to point to source materials or specifications that drove the structure of this data element</Data><NamedCell
@ -4285,12 +4285,13 @@
<HorizontalResolution>600</HorizontalResolution>
<VerticalResolution>600</VerticalResolution>
</Print>
<Selected/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>40</TopRowBottomPane>
<TopRowBottomPane>14</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<LeftColumnRightPane>11</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
@ -4298,6 +4299,7 @@
</Pane>
<Pane>
<Number>1</Number>
<ActiveCol>1</ActiveCol>
</Pane>
<Pane>
<Number>2</Number>
@ -4305,8 +4307,7 @@
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>46</ActiveRow>
<ActiveCol>7</ActiveCol>
<ActiveCol>13</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
@ -5009,7 +5010,6 @@
<HorizontalResolution>600</HorizontalResolution>
<VerticalResolution>600</VerticalResolution>
</Print>
<Selected/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
@ -5029,8 +5029,8 @@
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>12</ActiveRow>
<ActiveCol>6</ActiveCol>
<ActiveRow>5</ActiveRow>
<ActiveCol>3</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>

View File

@ -10,7 +10,7 @@
<LastAuthor>Grahame</LastAuthor>
<Created>2012-03-19T11:12:07Z</Created>
<LastSaved>2015-03-21T19:33:55Z</LastSaved>
<Version>14.00</Version>
<Version>12.00</Version>
</DocumentProperties>
<OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">
<AllowPNG/>
@ -1058,7 +1058,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Row ss:Height="45">
<Cell ss:StyleID="s86"><Data ss:Type="String">AllergyIntolerance.recorder</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">Author</Data><NamedCell
@ -1080,7 +1080,7 @@
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">Who recorded the sensitivity</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><Data ss:Type="String">Indicates who has responsibility for the record</Data><NamedCell
<Cell ss:StyleID="s88"><Data ss:Type="String">Individual who recorded the record and takes responsibility for its conten</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -3756,7 +3756,7 @@
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>7</TopRowBottomPane>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
@ -3769,12 +3769,11 @@
</Pane>
<Pane>
<Number>2</Number>
<ActiveRow>1</ActiveRow>
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>9</ActiveRow>
<ActiveCol>13</ActiveCol>
<ActiveRow>6</ActiveRow>
<ActiveCol>14</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>

View File

@ -1440,7 +1440,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">right</Data><NamedCell
<Cell ss:StyleID="s91"><Data ss:Type="String">left</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1652,7 +1652,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">right</Data><NamedCell
<Cell ss:StyleID="s91"><Data ss:Type="String">left</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -3828,9 +3828,9 @@
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>15</TopRowBottomPane>
<TopRowBottomPane>10</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<LeftColumnRightPane>14</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
@ -3838,6 +3838,7 @@
</Pane>
<Pane>
<Number>1</Number>
<ActiveCol>1</ActiveCol>
</Pane>
<Pane>
<Number>2</Number>
@ -3845,8 +3846,8 @@
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>24</ActiveRow>
<ActiveCol>4</ActiveCol>
<ActiveRow>18</ActiveRow>
<ActiveCol>20</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>

View File

@ -20,7 +20,7 @@
<WindowWidth>23040</WindowWidth>
<WindowTopX>0</WindowTopX>
<WindowTopY>0</WindowTopY>
<ActiveSheet>6</ActiveSheet>
<ActiveSheet>1</ActiveSheet>
<RefModeR1C1/>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
@ -979,7 +979,7 @@
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s82"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s83"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s82"><Data ss:Type="String">220;0</Data><NamedCell
<Cell ss:StyleID="s82"><Data ss:Type="String">0,0</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s84"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><Data ss:Type="String">At present, this resource combines the concepts of CarePlan and CareTeam. Should they be split?</Data><NamedCell
@ -1320,7 +1320,7 @@
<Cell ss:StyleID="s90"><Data ss:Type="String">REL (REL.4 is always the Patient) ( or PRT?)</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">20;180</Data><NamedCell
<Cell ss:StyleID="s91"><Data ss:Type="String">0;260</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1422,8 +1422,7 @@
<Cell ss:StyleID="s90"><Data ss:Type="String">GOL.1</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">0;0</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><Data ss:Type="String">Should this be expanded into code + value + timeframe?</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
@ -1455,7 +1454,7 @@
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">440;0</Data><NamedCell
<Cell ss:StyleID="s91"><Data ss:Type="String">250;0</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1587,7 +1586,7 @@
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">700;0</Data><NamedCell
<Cell ss:StyleID="s91"><Data ss:Type="String">250;250</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -3756,12 +3755,13 @@
<HorizontalResolution>600</HorizontalResolution>
<VerticalResolution>600</VerticalResolution>
</Print>
<Selected/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>18</TopRowBottomPane>
<TopRowBottomPane>13</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<LeftColumnRightPane>14</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
@ -3769,6 +3769,7 @@
</Pane>
<Pane>
<Number>1</Number>
<ActiveCol>1</ActiveCol>
</Pane>
<Pane>
<Number>2</Number>
@ -3776,8 +3777,8 @@
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>19</ActiveRow>
<ActiveCol>3</ActiveCol>
<ActiveRow>20</ActiveRow>
<ActiveCol>20</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
@ -6259,7 +6260,6 @@
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Selected/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>

View File

@ -10,7 +10,7 @@
<LastAuthor>Paul</LastAuthor>
<Created>2012-03-19T11:12:07Z</Created>
<LastSaved>2015-03-11T20:10:06Z</LastSaved>
<Version>14.00</Version>
<Version>15.00</Version>
</DocumentProperties>
<OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">
<AllowPNG/>
@ -20,8 +20,8 @@
<Path>\Gforge\HL7\FHIR\trunk\build\source\composition\Invariants</Path>
<SheetName>Invariants</SheetName>
</SupBook>
<WindowHeight>10155</WindowHeight>
<WindowWidth>23100</WindowWidth>
<WindowHeight>14520</WindowHeight>
<WindowWidth>25920</WindowWidth>
<WindowTopX>0</WindowTopX>
<WindowTopY>0</WindowTopY>
<ActiveSheet>1</ActiveSheet>
@ -849,28 +849,29 @@
</Names>
<Table ss:ExpandedColumnCount="24" ss:ExpandedRowCount="110" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s68" ss:DefaultRowHeight="15">
<Column ss:StyleID="s69" ss:Width="227.25"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="77.25"/>
<Column ss:StyleID="s68" ss:Width="29.25"/>
<Column ss:StyleID="s68" ss:Width="34.5"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="119.25"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="28.5"/>
<Column ss:StyleID="s69" ss:Width="227.39999999999998"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="77.399999999999991"/>
<Column ss:StyleID="s68" ss:Width="29.4"/>
<Column ss:StyleID="s68" ss:Width="34.799999999999997"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="119.4"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="28.8"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="27"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="106.5"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="106.80000000000001"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="81"/>
<Column ss:StyleID="s68" ss:Width="51.75" ss:Span="1"/>
<Column ss:Index="12" ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="80.25"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="120.75"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="161.25"/>
<Column ss:StyleID="s68" ss:Width="51.6" ss:Span="1"/>
<Column ss:Index="12" ss:StyleID="s68" ss:AutoFitWidth="0"
ss:Width="80.400000000000006"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="120.60000000000001"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="161.4"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="114"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="135"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="120"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="135"/>
<Column ss:Index="20" ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="103.5"
<Column ss:Index="20" ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="103.8"
ss:Span="1"/>
<Column ss:Index="22" ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="50.25"/>
<Column ss:Index="22" ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="50.4"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="66"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="119.25"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="119.4"/>
<Row ss:AutoFitHeight="0" ss:Height="45" ss:StyleID="s70">
<Cell ss:StyleID="s71"><Data ss:Type="String">Element</Data><Comment
ss:Author=""><ss:Data xmlns="http://www.w3.org/TR/REC-html40"> <Font
@ -996,7 +997,8 @@
<Cell ss:StyleID="s82"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s83"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s83"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s82"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s82"><Data ss:Type="String">220;0</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s84"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
@ -1459,7 +1461,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">down</Data><NamedCell
<Cell ss:StyleID="s91"><Data ss:Type="String">250;370</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1610,7 +1612,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">right</Data><NamedCell
<Cell ss:StyleID="s91"><Data ss:Type="String">0;370</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1764,7 +1766,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">down</Data><NamedCell
<Cell ss:StyleID="s91"><Data ss:Type="String">250;450</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1828,7 +1830,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">right</Data><NamedCell
<Cell ss:StyleID="s91"><Data ss:Type="String">0;450</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1982,7 +1984,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">down</Data><NamedCell
<Cell ss:StyleID="s91"><Data ss:Type="String">250;560</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -2046,7 +2048,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">right</Data><NamedCell
<Cell ss:StyleID="s91"><Data ss:Type="String">0;560</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -2200,7 +2202,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">right</Data><NamedCell
<Cell ss:StyleID="s91"><Data ss:Type="String">500;120</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -2357,7 +2359,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">right</Data><NamedCell
<Cell ss:StyleID="s91"><Data ss:Type="String">500;0</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -2483,7 +2485,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">down</Data><NamedCell
<Cell ss:StyleID="s91"><Data ss:Type="String">500;260</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -2578,7 +2580,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">right</Data><NamedCell
<Cell ss:StyleID="s91"><Data ss:Type="String">500;370</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -2732,7 +2734,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">left</Data><NamedCell
<Cell ss:StyleID="s91"><Data ss:Type="String">0;0</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -3233,7 +3235,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">left</Data><NamedCell
<Cell ss:StyleID="s91"><Data ss:Type="String">20;110</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -3389,7 +3391,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">left</Data><NamedCell
<Cell ss:StyleID="s91"><Data ss:Type="String" x:Ticked="1">-20;200</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -4269,9 +4271,9 @@
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>79</TopRowBottomPane>
<TopRowBottomPane>39</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<LeftColumnRightPane>14</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
@ -4279,6 +4281,7 @@
</Pane>
<Pane>
<Number>1</Number>
<ActiveCol>1</ActiveCol>
</Pane>
<Pane>
<Number>2</Number>
@ -4286,8 +4289,8 @@
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>86</ActiveRow>
<ActiveCol>4</ActiveCol>
<ActiveRow>53</ActiveRow>
<ActiveCol>21</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
@ -4472,12 +4475,13 @@
</Names>
<Table ss:ExpandedColumnCount="7" ss:ExpandedRowCount="51" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s101" ss:DefaultRowHeight="15">
<Column ss:Index="2" ss:StyleID="s101" ss:AutoFitWidth="0" ss:Width="115.5"/>
<Column ss:StyleID="s101" ss:Width="55.5"/>
<Column ss:Index="2" ss:StyleID="s101" ss:AutoFitWidth="0"
ss:Width="115.80000000000001"/>
<Column ss:StyleID="s101" ss:Width="55.800000000000004"/>
<Column ss:StyleID="s101" ss:Width="165"/>
<Column ss:StyleID="s101" ss:AutoFitWidth="0" ss:Width="204.75"/>
<Column ss:StyleID="s101" ss:AutoFitWidth="0" ss:Width="198.75"/>
<Column ss:StyleID="s101" ss:AutoFitWidth="0" ss:Width="188.25"/>
<Column ss:StyleID="s101" ss:AutoFitWidth="0" ss:Width="204.60000000000002"/>
<Column ss:StyleID="s101" ss:AutoFitWidth="0" ss:Width="198.6"/>
<Column ss:StyleID="s101" ss:AutoFitWidth="0" ss:Width="188.4"/>
<Row ss:AutoFitHeight="0" ss:Height="15.75" ss:StyleID="s70">
<Cell ss:StyleID="s102"><Data ss:Type="String">Id</Data><Comment ss:Author=""><ss:Data
xmlns="http://www.w3.org/TR/REC-html40"> <Font html:Face="Tahoma"
@ -5038,11 +5042,11 @@
</Names>
<Table ss:ExpandedColumnCount="5" ss:ExpandedRowCount="31" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s112" ss:DefaultRowHeight="15">
<Column ss:StyleID="s112" ss:AutoFitWidth="0" ss:Width="70.5"/>
<Column ss:StyleID="s112" ss:AutoFitWidth="0" ss:Width="70.8"/>
<Column ss:StyleID="s112" ss:AutoFitWidth="0" ss:Width="57"/>
<Column ss:StyleID="s112" ss:AutoFitWidth="0" ss:Width="109.5"/>
<Column ss:StyleID="s112" ss:AutoFitWidth="0" ss:Width="109.8"/>
<Column ss:StyleID="s112" ss:AutoFitWidth="0" ss:Width="210"/>
<Column ss:StyleID="s112" ss:AutoFitWidth="0" ss:Width="382.5"/>
<Column ss:StyleID="s112" ss:AutoFitWidth="0" ss:Width="382.79999999999995"/>
<Row ss:AutoFitHeight="0" ss:Height="15.75" ss:StyleID="s113">
<Cell ss:StyleID="s102"><Data ss:Type="String">Name</Data><Comment ss:Author=""><ss:Data
xmlns="http://www.w3.org/TR/REC-html40">Unique name for search parameter - required, lower-case, dash-delimited string </ss:Data></Comment><NamedCell
@ -5373,13 +5377,16 @@
</Names>
<Table ss:ExpandedColumnCount="9" ss:ExpandedRowCount="51" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s112" ss:DefaultRowHeight="15">
<Column ss:StyleID="s112" ss:AutoFitWidth="0" ss:Width="130.5"/>
<Column ss:StyleID="s112" ss:AutoFitWidth="0" ss:Width="124.5"/>
<Column ss:StyleID="s112" ss:AutoFitWidth="0" ss:Width="130.80000000000001"/>
<Column ss:StyleID="s112" ss:AutoFitWidth="0" ss:Width="124.80000000000001"/>
<Column ss:StyleID="s112" ss:Width="24"/>
<Column ss:StyleID="s112" ss:Width="25.5"/>
<Column ss:StyleID="s112" ss:AutoFitWidth="0" ss:Width="106.5" ss:Span="1"/>
<Column ss:Index="7" ss:StyleID="s112" ss:AutoFitWidth="0" ss:Width="222.75"/>
<Column ss:StyleID="s112" ss:AutoFitWidth="0" ss:Width="253.5" ss:Span="1"/>
<Column ss:StyleID="s112" ss:Width="25.8"/>
<Column ss:StyleID="s112" ss:AutoFitWidth="0" ss:Width="106.80000000000001"
ss:Span="1"/>
<Column ss:Index="7" ss:StyleID="s112" ss:AutoFitWidth="0"
ss:Width="222.60000000000002"/>
<Column ss:StyleID="s112" ss:AutoFitWidth="0" ss:Width="253.79999999999998"
ss:Span="1"/>
<Row ss:AutoFitHeight="0" ss:Height="15.75">
<Cell ss:StyleID="s124"><Data ss:Type="String">Name</Data><Comment ss:Author=""><ss:Data
xmlns="http://www.w3.org/TR/REC-html40"> <Font html:Face="Tahoma"
@ -6102,14 +6109,14 @@
</Names>
<Table ss:ExpandedColumnCount="9" ss:ExpandedRowCount="21" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s112" ss:DefaultRowHeight="15">
<Column ss:StyleID="s112" ss:AutoFitWidth="0" ss:Width="82.5" ss:Span="1"/>
<Column ss:Index="3" ss:StyleID="s112" ss:AutoFitWidth="0" ss:Width="198.75"/>
<Column ss:StyleID="s112" ss:AutoFitWidth="0" ss:Width="157.5"/>
<Column ss:StyleID="s112" ss:Width="106.5"/>
<Column ss:StyleID="s112" ss:Width="113.25"/>
<Column ss:StyleID="s112" ss:AutoFitWidth="0" ss:Width="82.8" ss:Span="1"/>
<Column ss:Index="3" ss:StyleID="s112" ss:AutoFitWidth="0" ss:Width="198.6"/>
<Column ss:StyleID="s112" ss:AutoFitWidth="0" ss:Width="157.80000000000001"/>
<Column ss:StyleID="s112" ss:Width="106.80000000000001"/>
<Column ss:StyleID="s112" ss:Width="113.39999999999999"/>
<Column ss:StyleID="s112" ss:Width="120"/>
<Column ss:StyleID="s112" ss:Width="127.5"/>
<Column ss:StyleID="s112" ss:AutoFitWidth="0" ss:Width="74.25"/>
<Column ss:StyleID="s112" ss:Width="127.8"/>
<Column ss:StyleID="s112" ss:AutoFitWidth="0" ss:Width="74.400000000000006"/>
<Row ss:AutoFitHeight="0" ss:Height="15.75">
<Cell ss:StyleID="s102"><Data ss:Type="String">Event Code</Data><Comment
ss:Author=""><ss:Data xmlns="http://www.w3.org/TR/REC-html40"> <Font
@ -6434,7 +6441,7 @@
<Table ss:ExpandedColumnCount="4" ss:ExpandedRowCount="41" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s112" ss:DefaultRowHeight="15">
<Column ss:StyleID="s112" ss:AutoFitWidth="0" ss:Width="114"/>
<Column ss:StyleID="s112" ss:AutoFitWidth="0" ss:Width="281.25"/>
<Column ss:StyleID="s112" ss:AutoFitWidth="0" ss:Width="281.39999999999998"/>
<Column ss:StyleID="s112" ss:AutoFitWidth="0" ss:Width="252"/>
<Column ss:StyleID="s112" ss:Width="63"/>
<Row ss:AutoFitHeight="0" ss:Height="15.75">
@ -6766,14 +6773,14 @@
ss:Hidden="1"/>
</Names>
<Table ss:ExpandedColumnCount="7" ss:ExpandedRowCount="41" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s137" ss:DefaultColumnWidth="260.25"
x:FullRows="1" ss:StyleID="s137" ss:DefaultColumnWidth="260.39999999999998"
ss:DefaultRowHeight="15">
<Column ss:StyleID="s137" ss:Width="88.5"/>
<Column ss:StyleID="s137" ss:Width="27.75"/>
<Column ss:StyleID="s137" ss:Width="327.75"/>
<Column ss:StyleID="s137" ss:Width="88.800000000000011"/>
<Column ss:StyleID="s137" ss:Width="27.6"/>
<Column ss:StyleID="s137" ss:Width="327.59999999999997"/>
<Column ss:StyleID="s137" ss:Width="57"/>
<Column ss:StyleID="s137" ss:Width="205.5" ss:Span="1"/>
<Column ss:Index="7" ss:StyleID="s137" ss:Width="39.75"/>
<Column ss:StyleID="s137" ss:Width="205.8" ss:Span="1"/>
<Column ss:Index="7" ss:StyleID="s137" ss:Width="39.6"/>
<Row ss:AutoFitHeight="0" ss:Height="15.75">
<Cell ss:StyleID="s102"><Data ss:Type="String">Name</Data><Comment ss:Author=""><ss:Data
xmlns="http://www.w3.org/TR/REC-html40"> <Font html:Face="Tahoma"
@ -7253,8 +7260,8 @@
<Worksheet ss:Name="Removed Elements">
<Table ss:ExpandedColumnCount="20" ss:ExpandedRowCount="1" x:FullColumns="1"
x:FullRows="1" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="168.75"/>
<Column ss:Index="4" ss:AutoFitWidth="0" ss:Width="63.75"/>
<Column ss:AutoFitWidth="0" ss:Width="168.60000000000002"/>
<Column ss:Index="4" ss:AutoFitWidth="0" ss:Width="63.599999999999994"/>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s70"><Data ss:Type="String">Element</Data></Cell>
<Cell ss:StyleID="s70"><Data ss:Type="String">Card.</Data></Cell>
@ -7302,18 +7309,19 @@
</Names>
<Table ss:ExpandedColumnCount="13" ss:ExpandedRowCount="31" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s112" ss:DefaultRowHeight="15">
<Column ss:StyleID="s112" ss:Width="114.75"/>
<Column ss:StyleID="s112" ss:AutoFitWidth="0" ss:Width="274.5"/>
<Column ss:StyleID="s112" ss:Width="114.6"/>
<Column ss:StyleID="s112" ss:AutoFitWidth="0" ss:Width="274.8"/>
<Column ss:StyleID="s112" ss:Width="51"/>
<Column ss:StyleID="s112" ss:Width="45"/>
<Column ss:StyleID="s112" ss:Width="146.25"/>
<Column ss:StyleID="s112" ss:Width="172.5"/>
<Column ss:StyleID="s112" ss:AutoFitWidth="0" ss:Width="97.5"/>
<Column ss:StyleID="s112" ss:AutoFitWidth="0" ss:Width="88.5"/>
<Column ss:StyleID="s112" ss:Width="146.39999999999998"/>
<Column ss:StyleID="s112" ss:Width="172.79999999999998"/>
<Column ss:StyleID="s112" ss:AutoFitWidth="0" ss:Width="97.800000000000011"/>
<Column ss:StyleID="s112" ss:AutoFitWidth="0" ss:Width="88.800000000000011"/>
<Column ss:StyleID="s112" ss:AutoFitWidth="0" ss:Width="114"/>
<Column ss:StyleID="s112" ss:AutoFitWidth="0" ss:Width="172.5"/>
<Column ss:StyleID="s112" ss:AutoFitWidth="0" ss:Width="165.75" ss:Span="1"/>
<Column ss:Index="13" ss:StyleID="s112" ss:AutoFitWidth="0" ss:Width="106.5"/>
<Column ss:StyleID="s112" ss:AutoFitWidth="0" ss:Width="172.79999999999998"/>
<Column ss:StyleID="s112" ss:AutoFitWidth="0" ss:Width="165.6" ss:Span="1"/>
<Column ss:Index="13" ss:StyleID="s112" ss:AutoFitWidth="0"
ss:Width="106.80000000000001"/>
<Row ss:AutoFitHeight="0" ss:Height="15.75">
<Cell ss:StyleID="s102"><Data ss:Type="String">Binding Name</Data><Comment
ss:Author=""><ss:Data xmlns="http://www.w3.org/TR/REC-html40"> <Font
@ -7914,13 +7922,15 @@
</Names>
<Table ss:ExpandedColumnCount="9" ss:ExpandedRowCount="51" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s137" ss:DefaultRowHeight="15">
<Column ss:StyleID="s137" ss:Width="80.25"/>
<Column ss:StyleID="s137" ss:AutoFitWidth="0" ss:Width="34.5"/>
<Column ss:StyleID="s137" ss:AutoFitWidth="0" ss:Width="155.25"/>
<Column ss:StyleID="s137" ss:AutoFitWidth="0" ss:Width="80.25" ss:Span="1"/>
<Column ss:Index="6" ss:StyleID="s137" ss:AutoFitWidth="0" ss:Width="244.5"/>
<Column ss:StyleID="s137" ss:Width="80.400000000000006"/>
<Column ss:StyleID="s137" ss:AutoFitWidth="0" ss:Width="34.799999999999997"/>
<Column ss:StyleID="s137" ss:AutoFitWidth="0" ss:Width="155.39999999999998"/>
<Column ss:StyleID="s137" ss:AutoFitWidth="0" ss:Width="80.400000000000006"
ss:Span="1"/>
<Column ss:Index="6" ss:StyleID="s137" ss:AutoFitWidth="0"
ss:Width="244.79999999999998"/>
<Column ss:StyleID="s137" ss:AutoFitWidth="0" ss:Width="84" ss:Span="1"/>
<Column ss:Index="9" ss:StyleID="s137" ss:AutoFitWidth="0" ss:Width="242.25"/>
<Column ss:Index="9" ss:StyleID="s137" ss:AutoFitWidth="0" ss:Width="242.4"/>
<Row ss:AutoFitHeight="0" ss:Height="15.75">
<Cell ss:StyleID="s102"><Data ss:Type="String">Code</Data><Comment ss:Author=""><ss:Data
xmlns="http://www.w3.org/TR/REC-html40"> <Font html:Face="Tahoma"
@ -8584,13 +8594,15 @@
</Names>
<Table ss:ExpandedColumnCount="9" ss:ExpandedRowCount="51" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s137" ss:DefaultRowHeight="15">
<Column ss:StyleID="s137" ss:Width="80.25"/>
<Column ss:StyleID="s137" ss:AutoFitWidth="0" ss:Width="34.5"/>
<Column ss:StyleID="s137" ss:AutoFitWidth="0" ss:Width="155.25"/>
<Column ss:StyleID="s137" ss:AutoFitWidth="0" ss:Width="80.25" ss:Span="1"/>
<Column ss:Index="6" ss:StyleID="s137" ss:AutoFitWidth="0" ss:Width="244.5"/>
<Column ss:StyleID="s137" ss:Width="80.400000000000006"/>
<Column ss:StyleID="s137" ss:AutoFitWidth="0" ss:Width="34.799999999999997"/>
<Column ss:StyleID="s137" ss:AutoFitWidth="0" ss:Width="155.39999999999998"/>
<Column ss:StyleID="s137" ss:AutoFitWidth="0" ss:Width="80.400000000000006"
ss:Span="1"/>
<Column ss:Index="6" ss:StyleID="s137" ss:AutoFitWidth="0"
ss:Width="244.79999999999998"/>
<Column ss:StyleID="s137" ss:AutoFitWidth="0" ss:Width="84" ss:Span="1"/>
<Column ss:Index="9" ss:StyleID="s137" ss:AutoFitWidth="0" ss:Width="242.25"/>
<Column ss:Index="9" ss:StyleID="s137" ss:AutoFitWidth="0" ss:Width="242.4"/>
<Row ss:AutoFitHeight="0" ss:Height="15.75">
<Cell ss:StyleID="s102"><Data ss:Type="String">Code</Data><Comment ss:Author=""><ss:Data
xmlns="http://www.w3.org/TR/REC-html40"> <Font html:Face="Tahoma"
@ -9254,13 +9266,15 @@
</Names>
<Table ss:ExpandedColumnCount="9" ss:ExpandedRowCount="51" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s137" ss:DefaultRowHeight="15">
<Column ss:StyleID="s137" ss:Width="80.25"/>
<Column ss:StyleID="s137" ss:AutoFitWidth="0" ss:Width="34.5"/>
<Column ss:StyleID="s137" ss:AutoFitWidth="0" ss:Width="155.25"/>
<Column ss:StyleID="s137" ss:AutoFitWidth="0" ss:Width="80.25" ss:Span="1"/>
<Column ss:Index="6" ss:StyleID="s137" ss:AutoFitWidth="0" ss:Width="244.5"/>
<Column ss:StyleID="s137" ss:Width="80.400000000000006"/>
<Column ss:StyleID="s137" ss:AutoFitWidth="0" ss:Width="34.799999999999997"/>
<Column ss:StyleID="s137" ss:AutoFitWidth="0" ss:Width="155.39999999999998"/>
<Column ss:StyleID="s137" ss:AutoFitWidth="0" ss:Width="80.400000000000006"
ss:Span="1"/>
<Column ss:Index="6" ss:StyleID="s137" ss:AutoFitWidth="0"
ss:Width="244.79999999999998"/>
<Column ss:StyleID="s137" ss:AutoFitWidth="0" ss:Width="84" ss:Span="1"/>
<Column ss:Index="9" ss:StyleID="s137" ss:AutoFitWidth="0" ss:Width="242.25"/>
<Column ss:Index="9" ss:StyleID="s137" ss:AutoFitWidth="0" ss:Width="242.4"/>
<Row ss:AutoFitHeight="0" ss:Height="15.75">
<Cell ss:StyleID="s102"><Data ss:Type="String">Code</Data><Comment ss:Author=""><ss:Data
xmlns="http://www.w3.org/TR/REC-html40"> <Font html:Face="Tahoma"

View File

@ -10,7 +10,7 @@
<LastAuthor>Grahame</LastAuthor>
<Created>2012-03-19T11:12:07Z</Created>
<LastSaved>2014-12-05T02:47:57Z</LastSaved>
<Version>12.00</Version>
<Version>14.00</Version>
</DocumentProperties>
<OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">
<AllowPNG/>
@ -1309,9 +1309,9 @@
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s94"><Data ss:Type="String">right</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s94"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="105">
<Cell ss:StyleID="s95"><Data ss:Type="String">ClinicalImpression.investigations.code</Data><NamedCell
@ -1460,9 +1460,9 @@
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s94"><Data ss:Type="String">right</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s94"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="30">
<Cell ss:StyleID="s95"><Data ss:Type="String">ClinicalImpression.finding.item</Data><NamedCell
@ -1580,7 +1580,8 @@
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">right</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s94"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
@ -3942,9 +3943,9 @@
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<TopRowBottomPane>9</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<LeftColumnRightPane>14</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
@ -3952,14 +3953,16 @@
</Pane>
<Pane>
<Number>1</Number>
<ActiveCol>1</ActiveCol>
</Pane>
<Pane>
<Number>2</Number>
<ActiveRow>1</ActiveRow>
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>5</ActiveRow>
<ActiveCol>0</ActiveCol>
<ActiveRow>20</ActiveRow>
<ActiveCol>20</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
@ -3998,7 +4001,7 @@
<ErrorHide/>
</DataValidation>
<DataValidation xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R2C21:R112C21</Range>
<Range>R17C21:R112C21,R2C21:R10C21,R12C21:R15C21</Range>
<Type>List</Type>
<CellRangeList/>
<Value>&quot;left,right,up,down,[xpixels];[ypixels]&quot;</Value>
@ -4187,7 +4190,7 @@
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R24C2:R25C23,R11C4:R11C23,R11C2,R3C6:R5C12</Range>
<Range>R24C2:R25C23,R11C2,R3C6:R5C12,R11C4:R11C22</Range>
<Condition>
<Value1>LEFT(R[4]C1,1)=&quot;!&quot;</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:#A5A5A5'/>
@ -4251,7 +4254,7 @@
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R24C2:R25C23,R11C4:R11C23,R11C2,R3C6:R5C12</Range>
<Range>R24C2:R25C23,R11C2,R3C6:R5C12,R11C4:R11C22</Range>
<Condition>
<Value1>RC3=&quot;0..0&quot;</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:#F2F2F2'/>
@ -4407,7 +4410,7 @@
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R17C2:R17C4,R17C6:R17C7,R16C2:R16C23,R17C9:R17C23</Range>
<Range>R17C2:R17C4,R17C6:R17C7,R17C9:R17C23,R16C2:R16C22</Range>
<Condition>
<Value1>RC3=&quot;0..0&quot;</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:#F2F2F2'/>
@ -4485,7 +4488,7 @@
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R17C2:R17C4,R17C6:R17C7,R16C2:R16C23,R17C9:R17C23</Range>
<Range>R17C2:R17C4,R17C6:R17C7,R17C9:R17C23,R16C2:R16C22</Range>
<Condition>
<Value1>LEFT(R[10]C1,1)=&quot;!&quot;</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:#A5A5A5'/>
@ -4645,13 +4648,6 @@
<Format Style='border:.5pt solid #D8D8D8;background:red'/>
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R11C21</Range>
<Condition>
<Value1>AND(RC&lt;&gt;&quot;&quot;,LEFT(RC5,1)&lt;&gt;&quot;@&quot;,LEFT(R[13]C1,LEN(R[4]C1)+1)&lt;&gt;(R[4]C1&amp;&quot;.&quot;),LEFT(R[13]C1,LEN(R[4]C1)+2)&lt;&gt;(&quot;!&quot;&amp;R[4]C1&amp;&quot;.&quot;))</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:red'/>
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R26C1,R11C1,R7C1:R8C1</Range>
<Condition>
@ -4766,7 +4762,7 @@
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R16C21:R17C21</Range>
<Range>R17C21</Range>
<Condition>
<Value1>AND(RC&lt;&gt;&quot;&quot;,LEFT(RC5,1)&lt;&gt;&quot;@&quot;,LEFT(R[11]C1,LEN(R[10]C1)+1)&lt;&gt;(R[10]C1&amp;&quot;.&quot;),LEFT(R[11]C1,LEN(R[10]C1)+2)&lt;&gt;(&quot;!&quot;&amp;R[10]C1&amp;&quot;.&quot;))</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:red'/>

View File

@ -1239,7 +1239,8 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String" x:Ticked="1">-180;20</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
@ -1612,7 +1613,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">280;20</Data><NamedCell
<Cell ss:StyleID="s91"><Data ss:Type="String">300;20</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1707,7 +1708,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">200;150</Data><NamedCell
<Cell ss:StyleID="s91"><Data ss:Type="String">280;150</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1832,7 +1833,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">420;120</Data><NamedCell
<Cell ss:StyleID="s91"><Data ss:Type="String">450;120</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -3912,9 +3913,9 @@
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<TopRowBottomPane>19</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<LeftColumnRightPane>14</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
@ -3922,12 +3923,16 @@
</Pane>
<Pane>
<Number>1</Number>
<ActiveCol>1</ActiveCol>
</Pane>
<Pane>
<Number>2</Number>
<ActiveRow>1</ActiveRow>
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>23</ActiveRow>
<ActiveCol>21</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>

View File

@ -10,7 +10,7 @@
<LastAuthor>Eric Haas</LastAuthor>
<Created>2012-03-19T11:12:07Z</Created>
<LastSaved>2014-12-06T08:02:00Z</LastSaved>
<Version>12.00</Version>
<Version>14.00</Version>
</DocumentProperties>
<OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">
<AllowPNG/>
@ -1458,7 +1458,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">0;0</Data><NamedCell
<Cell ss:StyleID="s91"><Data ss:Type="String" x:Ticked="1">-20;0</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1561,7 +1561,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">0;150</Data><NamedCell
<Cell ss:StyleID="s91"><Data ss:Type="String" x:Ticked="1">-70;150</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1839,7 +1839,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">500;300</Data><NamedCell
<Cell ss:StyleID="s91"><Data ss:Type="String">200;290</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><Data ss:Type="String">[#3111]</Data><NamedCell
@ -3857,9 +3857,9 @@
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>13</TopRowBottomPane>
<TopRowBottomPane>16</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<LeftColumnRightPane>13</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
@ -3867,6 +3867,7 @@
</Pane>
<Pane>
<Number>1</Number>
<ActiveCol>1</ActiveCol>
</Pane>
<Pane>
<Number>2</Number>
@ -3874,8 +3875,8 @@
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>21</ActiveRow>
<ActiveCol>3</ActiveCol>
<ActiveRow>26</ActiveRow>
<ActiveCol>22</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>

View File

@ -1442,7 +1442,8 @@
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">right</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
@ -1590,7 +1591,8 @@
<Cell ss:StyleID="s90"><Data ss:Type="String">100;0</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">right</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
@ -3820,9 +3822,9 @@
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>2</TopRowBottomPane>
<TopRowBottomPane>13</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>4</LeftColumnRightPane>
<LeftColumnRightPane>15</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
@ -3838,8 +3840,8 @@
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>19</ActiveRow>
<ActiveCol>14</ActiveCol>
<ActiveRow>15</ActiveRow>
<ActiveCol>24</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>

View File

@ -24,7 +24,7 @@
<WindowWidth>20730</WindowWidth>
<WindowTopX>0</WindowTopX>
<WindowTopY>240</WindowTopY>
<ActiveSheet>8</ActiveSheet>
<ActiveSheet>1</ActiveSheet>
<FirstVisibleSheet>1</FirstVisibleSheet>
<RefModeR1C1/>
<ProtectStructure>False</ProtectStructure>
@ -1709,7 +1709,7 @@
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">400;240</Data><NamedCell
<Cell ss:StyleID="s91"><Data ss:Type="String">400;130</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1909,7 +1909,8 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">400;300</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
@ -3551,12 +3552,13 @@
<HorizontalResolution>600</HorizontalResolution>
<VerticalResolution>600</VerticalResolution>
</Print>
<Selected/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>10</TopRowBottomPane>
<TopRowBottomPane>22</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>8</LeftColumnRightPane>
<LeftColumnRightPane>14</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
@ -3572,8 +3574,8 @@
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>14</ActiveRow>
<ActiveCol>14</ActiveCol>
<ActiveRow>29</ActiveRow>
<ActiveCol>21</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
@ -7146,7 +7148,6 @@
<HorizontalResolution>600</HorizontalResolution>
<VerticalResolution>600</VerticalResolution>
</Print>
<Selected/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>

View File

@ -10,7 +10,7 @@
<LastAuthor>Brian Postlethwaite</LastAuthor>
<Created>2012-03-19T11:12:07Z</Created>
<LastSaved>2014-12-06T10:17:09Z</LastSaved>
<Version>15.00</Version>
<Version>14.00</Version>
</DocumentProperties>
<OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">
<AllowPNG/>
@ -20,7 +20,7 @@
<Path>Macintosh HD:Users:cnanjo:repository:fhir:trunk:build:source:encounter:Invariants</Path>
<SheetName>Invariants</SheetName>
</SupBook>
<WindowHeight>8832</WindowHeight>
<WindowHeight>8835</WindowHeight>
<WindowWidth>23040</WindowWidth>
<WindowTopX>0</WindowTopX>
<WindowTopY>0</WindowTopY>
@ -805,8 +805,7 @@
</Names>
<Worksheet ss:Name="Instructions">
<Table ss:ExpandedColumnCount="1" ss:ExpandedRowCount="3" x:FullColumns="1"
x:FullRows="1" ss:DefaultColumnWidth="65.400000000000006"
ss:DefaultRowHeight="15">
x:FullRows="1" ss:DefaultColumnWidth="65.25" ss:DefaultRowHeight="15">
<Column ss:AutoFitWidth="0" ss:Width="411"/>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s64"><Data ss:Type="String">FHIR Resource-authoring Spreadsheet</Data></Cell>
@ -843,31 +842,29 @@
ss:RefersTo="='Data Elements'!R1C1:R107C24" ss:Hidden="1"/>
</Names>
<Table ss:ExpandedColumnCount="24" ss:ExpandedRowCount="107" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s68" ss:DefaultColumnWidth="65.400000000000006"
x:FullRows="1" ss:StyleID="s68" ss:DefaultColumnWidth="65.25"
ss:DefaultRowHeight="15">
<Column ss:StyleID="s69" ss:Width="227.39999999999998"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="77.399999999999991"/>
<Column ss:StyleID="s68" ss:Width="29.4"/>
<Column ss:StyleID="s68" ss:Width="35.4"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="119.4"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="29.4"/>
<Column ss:StyleID="s69" ss:Width="227.25"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="77.25"/>
<Column ss:StyleID="s68" ss:Width="29.25"/>
<Column ss:StyleID="s68" ss:Width="35.25"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="119.25"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="29.25"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="27"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="107.4" ss:Span="1"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="107.25" ss:Span="1"/>
<Column ss:Index="10" ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="81"/>
<Column ss:StyleID="s68" ss:Width="51.6" ss:Span="1"/>
<Column ss:Index="13" ss:StyleID="s68" ss:AutoFitWidth="0"
ss:Width="80.400000000000006"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="120.60000000000001"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="161.4"/>
<Column ss:StyleID="s68" ss:Width="51.75" ss:Span="1"/>
<Column ss:Index="13" ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="80.25"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="120.75"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="161.25"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="114"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="135"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="120"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="135"/>
<Column ss:Index="21" ss:StyleID="s68" ss:AutoFitWidth="0"
ss:Width="104.39999999999999"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="50.4"/>
<Column ss:Index="21" ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="104.25"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="50.25"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="66"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="119.4"/>
<Column ss:StyleID="s68" ss:AutoFitWidth="0" ss:Width="119.25"/>
<Row ss:AutoFitHeight="0" ss:Height="45" ss:StyleID="s70">
<Cell ss:StyleID="s71"><Data ss:Type="String">Element</Data><Comment
ss:Author=""><ss:Data xmlns="http://www.w3.org/TR/REC-html40"> <Font
@ -993,7 +990,8 @@
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s82"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s83"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s82"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s82"><Data ss:Type="String">200;0</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s84"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s85"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
@ -1063,7 +1061,7 @@
<Cell ss:StyleID="s90"><Data ss:Type="String">No clear equivalent in V2.x; active/finished could be inferred from PV1-44, PV1-45, PV2-24; inactive could be inferred from PV2-16</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">right</Data><NamedCell
<Cell ss:StyleID="s91"><Data ss:Type="String" x:Ticked="1">0;0</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1362,7 +1360,7 @@
<Cell ss:StyleID="s90"><Data ss:Type="String">ROL</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">right</Data><NamedCell
<Cell ss:StyleID="s91"><Data ss:Type="String">500;0</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1570,7 +1568,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
<Row ss:AutoFitHeight="0" ss:Height="409.05">
<Row ss:AutoFitHeight="0" ss:Height="408.9375">
<Cell ss:StyleID="s86"><Data ss:Type="String">Encounter.reason</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s87"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1702,7 +1700,7 @@
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">down</Data><NamedCell
<Cell ss:StyleID="s91"><Data ss:Type="String">500;100</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -1896,7 +1894,7 @@
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">right</Data><NamedCell
<Cell ss:StyleID="s91"><Data ss:Type="String">down</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -2221,7 +2219,7 @@
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">left</Data><NamedCell
<Cell ss:StyleID="s91"><Data ss:Type="String" x:Ticked="1">0;150</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -4043,9 +4041,9 @@
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>28</TopRowBottomPane>
<TopRowBottomPane>34</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>9</LeftColumnRightPane>
<LeftColumnRightPane>14</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
@ -4061,8 +4059,8 @@
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>31</ActiveRow>
<ActiveCol>15</ActiveCol>
<ActiveRow>39</ActiveRow>
<ActiveCol>21</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
@ -4138,14 +4136,14 @@
ss:Hidden="1"/>
</Names>
<Table ss:ExpandedColumnCount="7" ss:ExpandedRowCount="51" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s100" ss:DefaultColumnWidth="65.400000000000006"
x:FullRows="1" ss:StyleID="s100" ss:DefaultColumnWidth="65.25"
ss:DefaultRowHeight="15">
<Column ss:Index="2" ss:StyleID="s100" ss:AutoFitWidth="0" ss:Width="116.4"/>
<Column ss:StyleID="s100" ss:Width="56.4"/>
<Column ss:Index="2" ss:StyleID="s100" ss:AutoFitWidth="0" ss:Width="116.25"/>
<Column ss:StyleID="s100" ss:Width="56.25"/>
<Column ss:StyleID="s100" ss:Width="165"/>
<Column ss:StyleID="s100" ss:AutoFitWidth="0" ss:Width="204.60000000000002"/>
<Column ss:StyleID="s100" ss:AutoFitWidth="0" ss:Width="198.6"/>
<Column ss:StyleID="s100" ss:AutoFitWidth="0" ss:Width="188.4"/>
<Column ss:StyleID="s100" ss:AutoFitWidth="0" ss:Width="204.75"/>
<Column ss:StyleID="s100" ss:AutoFitWidth="0" ss:Width="198.75"/>
<Column ss:StyleID="s100" ss:AutoFitWidth="0" ss:Width="188.25"/>
<Row ss:AutoFitHeight="0" ss:StyleID="s70">
<Cell ss:StyleID="s101"><Data ss:Type="String">Id</Data><Comment ss:Author=""><ss:Data
xmlns="http://www.w3.org/TR/REC-html40"> <Font html:Face="Tahoma"
@ -4706,13 +4704,13 @@
ss:Hidden="1"/>
</Names>
<Table ss:ExpandedColumnCount="5" ss:ExpandedRowCount="33" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s111" ss:DefaultColumnWidth="65.400000000000006"
x:FullRows="1" ss:StyleID="s111" ss:DefaultColumnWidth="65.25"
ss:DefaultRowHeight="15">
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="71.400000000000006"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="71.25"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="57"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="110.4"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="110.25"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="210"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="383.40000000000003"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="383.25"/>
<Row ss:AutoFitHeight="0" ss:StyleID="s112">
<Cell ss:StyleID="s101"><Data ss:Type="String">Name</Data><Comment ss:Author=""><ss:Data
xmlns="http://www.w3.org/TR/REC-html40">Unique name for search parameter - required, lower-case, dash-delimited string </ss:Data></Comment><NamedCell
@ -5189,17 +5187,15 @@
ss:Hidden="1"/>
</Names>
<Table ss:ExpandedColumnCount="9" ss:ExpandedRowCount="49" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s111" ss:DefaultColumnWidth="65.400000000000006"
x:FullRows="1" ss:StyleID="s111" ss:DefaultColumnWidth="65.25"
ss:DefaultRowHeight="15">
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="131.4"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="125.4"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="131.25"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="125.25"/>
<Column ss:StyleID="s111" ss:Width="24"/>
<Column ss:StyleID="s111" ss:Width="26.4"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="107.4" ss:Span="1"/>
<Column ss:Index="7" ss:StyleID="s111" ss:AutoFitWidth="0"
ss:Width="222.60000000000002"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="254.39999999999998"
ss:Span="1"/>
<Column ss:StyleID="s111" ss:Width="26.25"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="107.25" ss:Span="1"/>
<Column ss:Index="7" ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="222.75"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="254.25" ss:Span="1"/>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s123"><Data ss:Type="String">Name</Data><Comment ss:Author=""><ss:Data
xmlns="http://www.w3.org/TR/REC-html40"> <Font html:Face="Tahoma"
@ -6081,16 +6077,16 @@
ss:Hidden="1"/>
</Names>
<Table ss:ExpandedColumnCount="9" ss:ExpandedRowCount="21" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s111" ss:DefaultColumnWidth="65.400000000000006"
x:FullRows="1" ss:StyleID="s111" ss:DefaultColumnWidth="65.25"
ss:DefaultRowHeight="15">
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="83.4" ss:Span="1"/>
<Column ss:Index="3" ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="198.6"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="158.4"/>
<Column ss:StyleID="s111" ss:Width="107.4"/>
<Column ss:StyleID="s111" ss:Width="113.39999999999999"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="83.25" ss:Span="1"/>
<Column ss:Index="3" ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="198.75"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="158.25"/>
<Column ss:StyleID="s111" ss:Width="107.25"/>
<Column ss:StyleID="s111" ss:Width="113.25"/>
<Column ss:StyleID="s111" ss:Width="120"/>
<Column ss:StyleID="s111" ss:Width="128.4"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="74.400000000000006"/>
<Column ss:StyleID="s111" ss:Width="128.25"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="74.25"/>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s101"><Data ss:Type="String">Event Code</Data><Comment
ss:Author=""><ss:Data xmlns="http://www.w3.org/TR/REC-html40"> <Font
@ -6414,10 +6410,10 @@
<NamedRange ss:Name="_FilterDatabase" ss:RefersTo="=Profiles!R1C1:R1C4"/>
</Names>
<Table ss:ExpandedColumnCount="5" ss:ExpandedRowCount="40" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s111" ss:DefaultColumnWidth="65.400000000000006"
x:FullRows="1" ss:StyleID="s111" ss:DefaultColumnWidth="65.25"
ss:DefaultRowHeight="15">
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="114"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="281.39999999999998"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="281.25"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="252"/>
<Column ss:StyleID="s111" ss:Width="63"/>
<Row ss:AutoFitHeight="0">
@ -6813,14 +6809,14 @@
ss:Hidden="1"/>
</Names>
<Table ss:ExpandedColumnCount="7" ss:ExpandedRowCount="41" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s136" ss:DefaultColumnWidth="260.39999999999998"
x:FullRows="1" ss:StyleID="s136" ss:DefaultColumnWidth="260.25"
ss:DefaultRowHeight="15">
<Column ss:StyleID="s136" ss:Width="89.4"/>
<Column ss:StyleID="s136" ss:Width="27.6"/>
<Column ss:StyleID="s136" ss:Width="327.59999999999997"/>
<Column ss:StyleID="s136" ss:Width="89.25"/>
<Column ss:StyleID="s136" ss:Width="27.75"/>
<Column ss:StyleID="s136" ss:Width="327.75"/>
<Column ss:StyleID="s136" ss:Width="57"/>
<Column ss:StyleID="s136" ss:Width="206.4" ss:Span="1"/>
<Column ss:Index="7" ss:StyleID="s136" ss:Width="39.6"/>
<Column ss:StyleID="s136" ss:Width="206.25" ss:Span="1"/>
<Column ss:Index="7" ss:StyleID="s136" ss:Width="39.75"/>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s101"><Data ss:Type="String">Name</Data><Comment ss:Author=""><ss:Data
xmlns="http://www.w3.org/TR/REC-html40"> <Font html:Face="Tahoma"
@ -7311,20 +7307,20 @@
ss:Hidden="1"/>
</Names>
<Table ss:ExpandedColumnCount="13" ss:ExpandedRowCount="31" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s111" ss:DefaultColumnWidth="65.400000000000006"
x:FullRows="1" ss:StyleID="s111" ss:DefaultColumnWidth="65.25"
ss:DefaultRowHeight="15">
<Column ss:StyleID="s111" ss:Width="114.6"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="275.40000000000003"/>
<Column ss:StyleID="s111" ss:Width="114.75"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="275.25"/>
<Column ss:StyleID="s111" ss:Width="51"/>
<Column ss:StyleID="s111" ss:Width="45"/>
<Column ss:StyleID="s111" ss:Width="146.39999999999998"/>
<Column ss:StyleID="s111" ss:Width="173.39999999999998"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="98.4"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="89.4"/>
<Column ss:StyleID="s111" ss:Width="146.25"/>
<Column ss:StyleID="s111" ss:Width="173.25"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="98.25"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="89.25"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="114"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="173.39999999999998"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="165.6" ss:Span="1"/>
<Column ss:Index="13" ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="107.4"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="173.25"/>
<Column ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="165.75" ss:Span="1"/>
<Column ss:Index="13" ss:StyleID="s111" ss:AutoFitWidth="0" ss:Width="107.25"/>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s101"><Data ss:Type="String">Binding Name</Data><Comment
ss:Author=""><ss:Data xmlns="http://www.w3.org/TR/REC-html40"> <Font
@ -7926,17 +7922,15 @@
ss:Hidden="1"/>
</Names>
<Table ss:ExpandedColumnCount="9" ss:ExpandedRowCount="51" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s136" ss:DefaultColumnWidth="65.400000000000006"
x:FullRows="1" ss:StyleID="s136" ss:DefaultColumnWidth="65.25"
ss:DefaultRowHeight="15">
<Column ss:StyleID="s136" ss:Width="80.400000000000006"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="35.4"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="155.39999999999998"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="80.400000000000006"
ss:Span="1"/>
<Column ss:Index="6" ss:StyleID="s136" ss:AutoFitWidth="0"
ss:Width="245.39999999999998"/>
<Column ss:StyleID="s136" ss:Width="80.25"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="35.25"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="155.25"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="80.25" ss:Span="1"/>
<Column ss:Index="6" ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="245.25"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="84" ss:Span="1"/>
<Column ss:Index="9" ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="242.4"/>
<Column ss:Index="9" ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="242.25"/>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s101"><Data ss:Type="String">Code</Data><Comment ss:Author=""><ss:Data
xmlns="http://www.w3.org/TR/REC-html40"> <Font html:Face="Tahoma"
@ -8606,17 +8600,15 @@
ss:Hidden="1"/>
</Names>
<Table ss:ExpandedColumnCount="9" ss:ExpandedRowCount="52" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s136" ss:DefaultColumnWidth="65.400000000000006"
x:FullRows="1" ss:StyleID="s136" ss:DefaultColumnWidth="65.25"
ss:DefaultRowHeight="15">
<Column ss:StyleID="s136" ss:Width="80.400000000000006"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="35.4"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="155.39999999999998"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="80.400000000000006"
ss:Span="1"/>
<Column ss:Index="6" ss:StyleID="s136" ss:AutoFitWidth="0"
ss:Width="245.39999999999998"/>
<Column ss:StyleID="s136" ss:Width="80.25"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="35.25"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="155.25"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="80.25" ss:Span="1"/>
<Column ss:Index="6" ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="245.25"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="84" ss:Span="1"/>
<Column ss:Index="9" ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="242.4"/>
<Column ss:Index="9" ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="242.25"/>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s101"><Data ss:Type="String">Code</Data><Comment ss:Author=""><ss:Data
xmlns="http://www.w3.org/TR/REC-html40"> <Font html:Face="Tahoma"
@ -9299,17 +9291,15 @@
ss:RefersTo="='encounter-location-status'!R1C1:R1C9" ss:Hidden="1"/>
</Names>
<Table ss:ExpandedColumnCount="9" ss:ExpandedRowCount="51" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s136" ss:DefaultColumnWidth="65.400000000000006"
x:FullRows="1" ss:StyleID="s136" ss:DefaultColumnWidth="65.25"
ss:DefaultRowHeight="15">
<Column ss:StyleID="s136" ss:Width="80.400000000000006"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="35.4"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="155.39999999999998"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="80.400000000000006"
ss:Span="1"/>
<Column ss:Index="6" ss:StyleID="s136" ss:AutoFitWidth="0"
ss:Width="245.39999999999998"/>
<Column ss:StyleID="s136" ss:Width="80.25"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="35.25"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="155.25"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="80.25" ss:Span="1"/>
<Column ss:Index="6" ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="245.25"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="84" ss:Span="1"/>
<Column ss:Index="9" ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="242.4"/>
<Column ss:Index="9" ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="242.25"/>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s101"><Data ss:Type="String">Code</Data><Comment ss:Author=""><ss:Data
xmlns="http://www.w3.org/TR/REC-html40"> <Font html:Face="Tahoma"
@ -9980,17 +9970,15 @@
ss:Hidden="1"/>
</Names>
<Table ss:ExpandedColumnCount="9" ss:ExpandedRowCount="51" x:FullColumns="1"
x:FullRows="1" ss:StyleID="s136" ss:DefaultColumnWidth="65.400000000000006"
x:FullRows="1" ss:StyleID="s136" ss:DefaultColumnWidth="65.25"
ss:DefaultRowHeight="15">
<Column ss:StyleID="s136" ss:Width="80.400000000000006"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="35.4"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="155.39999999999998"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="80.400000000000006"
ss:Span="1"/>
<Column ss:Index="6" ss:StyleID="s136" ss:AutoFitWidth="0"
ss:Width="245.39999999999998"/>
<Column ss:StyleID="s136" ss:Width="80.25"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="35.25"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="155.25"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="80.25" ss:Span="1"/>
<Column ss:Index="6" ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="245.25"/>
<Column ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="84" ss:Span="1"/>
<Column ss:Index="9" ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="242.4"/>
<Column ss:Index="9" ss:StyleID="s136" ss:AutoFitWidth="0" ss:Width="242.25"/>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s101"><Data ss:Type="String">Code</Data><Comment ss:Author=""><ss:Data
xmlns="http://www.w3.org/TR/REC-html40"> <Font html:Face="Tahoma"

View File

@ -21,7 +21,7 @@
<WindowTopX>0</WindowTopX>
<WindowTopY>0</WindowTopY>
<TabRatio>661</TabRatio>
<ActiveSheet>9</ActiveSheet>
<ActiveSheet>1</ActiveSheet>
<RefModeR1C1/>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
@ -1143,7 +1143,8 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">right</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
@ -3818,12 +3819,13 @@
<HorizontalResolution>600</HorizontalResolution>
<VerticalResolution>600</VerticalResolution>
</Print>
<Selected/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>9</TopRowBottomPane>
<TopRowBottomPane>4</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>11</LeftColumnRightPane>
<LeftColumnRightPane>13</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
@ -3839,8 +3841,8 @@
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>11</ActiveRow>
<ActiveCol>16</ActiveCol>
<ActiveRow>7</ActiveRow>
<ActiveCol>22</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
@ -7582,7 +7584,6 @@
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Selected/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>

View File

@ -1264,7 +1264,8 @@
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s99"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s80"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s80"><Data ss:Type="String">right</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="Default"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
@ -1432,7 +1433,8 @@
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s94"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s94"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s94"><Data ss:Type="String">right</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s94"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
@ -1600,7 +1602,8 @@
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s101"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="Default"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="Default"><Data ss:Type="String">down</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="Default"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
@ -1803,7 +1806,8 @@
<Cell ss:StyleID="s88"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="22" ss:StyleID="Default"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:Index="22" ss:StyleID="Default"><Data ss:Type="String">left</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="Default"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
@ -3840,9 +3844,9 @@
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>21</TopRowBottomPane>
<TopRowBottomPane>20</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<LeftColumnRightPane>14</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
@ -3850,6 +3854,7 @@
</Pane>
<Pane>
<Number>1</Number>
<ActiveCol>1</ActiveCol>
</Pane>
<Pane>
<Number>2</Number>
@ -3858,7 +3863,7 @@
<Pane>
<Number>0</Number>
<ActiveRow>25</ActiveRow>
<ActiveCol>0</ActiveCol>
<ActiveCol>21</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>

View File

@ -24,7 +24,7 @@
<WindowWidth>24975</WindowWidth>
<WindowTopX>0</WindowTopX>
<WindowTopY>0</WindowTopY>
<ActiveSheet>1</ActiveSheet>
<ActiveSheet>7</ActiveSheet>
<FirstVisibleSheet>1</FirstVisibleSheet>
<RefModeR1C1/>
<ProtectStructure>False</ProtectStructure>
@ -3819,7 +3819,6 @@
<HorizontalResolution>600</HorizontalResolution>
<VerticalResolution>600</VerticalResolution>
</Print>
<Selected/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
@ -6590,7 +6589,7 @@
ss:Author=""><ss:Data xmlns="http://www.w3.org/TR/REC-html40"> <Font
html:Face="Tahoma" x:Family="Swiss" html:Size="8" html:Color="#000000">Name of the profile example is associated with (and should be published with)</Font> </ss:Data></Comment><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s103"><Data ss:Type="String">In Book</Data><Comment
<Cell ss:StyleID="s103"><Data ss:Type="String">Register</Data><Comment
ss:Author=""><ss:Data xmlns="http://www.w3.org/TR/REC-html40"> <Font
html:Face="Tahoma" x:Family="Swiss" html:Size="8" html:Color="#000000">Include this example in the book form?</Font> </ss:Data></Comment><NamedCell
ss:Name="_FilterDatabase"/></Cell>
@ -6691,76 +6690,76 @@
<Cell ss:StyleID="s141"><Data ss:Type="String">Y</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s142"/>
<Cell ss:StyleID="s87"/>
<Cell ss:StyleID="s88"/>
<Cell ss:StyleID="s87"/>
<Cell ss:StyleID="s142"><Data ss:Type="String">COPD</Data></Cell>
<Cell ss:StyleID="s87"/>
<Cell ss:StyleID="s88"><Data ss:Type="String">Real-world prescription example</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">f001</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">medicationprescription-example-f001-combivent.xml</Data></Cell>
<Cell ss:StyleID="s131"/>
<Cell ss:StyleID="s144"/>
<Cell ss:StyleID="s144"><Data ss:Type="String">n</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s142"/>
<Cell ss:StyleID="s87"/>
<Cell ss:StyleID="s88"/>
<Cell ss:StyleID="s87"/>
<Cell ss:StyleID="s142"><Data ss:Type="String">Salmeterol</Data></Cell>
<Cell ss:StyleID="s87"/>
<Cell ss:StyleID="s88"><Data ss:Type="String">Real-world prescription example</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">f201</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">medicationprescription-example-f201-salmeterol.xml</Data></Cell>
<Cell ss:StyleID="s131"/>
<Cell ss:StyleID="s144"/>
<Cell ss:StyleID="s144"><Data ss:Type="String">n</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s142"/>
<Cell ss:StyleID="s87"/>
<Cell ss:StyleID="s88"/>
<Cell ss:StyleID="s87"/>
<Cell ss:StyleID="s142"><Data ss:Type="String">Flucloxacilline</Data></Cell>
<Cell ss:StyleID="s87"/>
<Cell ss:StyleID="s88"><Data ss:Type="String">Real-world prescription example</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">f202</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">medicationprescription-example-f202-flucloxacilline.xml</Data></Cell>
<Cell ss:StyleID="s131"/>
<Cell ss:StyleID="s144"/>
<Cell ss:StyleID="s144"><Data ss:Type="String">n</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s142"/>
<Cell ss:StyleID="s87"/>
<Cell ss:StyleID="s88"/>
<Cell ss:StyleID="s87"/>
<Cell ss:StyleID="s142"><Data ss:Type="String">Paracetamol</Data></Cell>
<Cell ss:StyleID="s87"/>
<Cell ss:StyleID="s88"><Data ss:Type="String">Real-world prescription example</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">f203</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">medicationprescription-example-f203-paracetamol.xml</Data></Cell>
<Cell ss:StyleID="s131"/>
<Cell ss:StyleID="s144"/>
<Cell ss:StyleID="s144"><Data ss:Type="String">n</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s142"/>
<Cell ss:StyleID="s87"/>
<Cell ss:StyleID="s88"/>
<Cell ss:StyleID="s87"/>
<Cell ss:StyleID="s142"><Data ss:Type="String">Rosuvastin</Data></Cell>
<Cell ss:StyleID="s87"/>
<Cell ss:StyleID="s88"><Data ss:Type="String">Real-world prescription example</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">f002</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">medicationprescription-example-f002-crestor.xml</Data></Cell>
<Cell ss:StyleID="s131"/>
<Cell ss:StyleID="s144"/>
<Cell ss:StyleID="s144"><Data ss:Type="String">n</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s142"/>
<Cell ss:StyleID="s87"/>
<Cell ss:StyleID="s88"/>
<Cell ss:StyleID="s87"/>
<Cell ss:StyleID="s142"><Data ss:Type="String">Tolbutamide</Data></Cell>
<Cell ss:StyleID="s87"/>
<Cell ss:StyleID="s88"><Data ss:Type="String">Real-world prescription example</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">f003</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">medicationprescription-example-f003-tolbutamide.xml</Data></Cell>
<Cell ss:StyleID="s131"/>
<Cell ss:StyleID="s144"/>
<Cell ss:StyleID="s144"><Data ss:Type="String">n</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s142"/>
<Cell ss:StyleID="s87"/>
<Cell ss:StyleID="s88"/>
<Cell ss:StyleID="s87"/>
<Cell ss:StyleID="s142"><Data ss:Type="String">Metoprolol</Data></Cell>
<Cell ss:StyleID="s87"/>
<Cell ss:StyleID="s88"><Data ss:Type="String">Real-world prescription example</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">f004</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">medicationprescription-example-f004-metoprolol.xml</Data></Cell>
<Cell ss:StyleID="s131"/>
<Cell ss:StyleID="s144"/>
<Cell ss:StyleID="s144"><Data ss:Type="String">n</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s142"/>
<Cell ss:StyleID="s87"/>
<Cell ss:StyleID="s88"/>
<Cell ss:StyleID="s87"/>
<Cell ss:StyleID="s142"><Data ss:Type="String">Enalapril</Data></Cell>
<Cell ss:StyleID="s87"/>
<Cell ss:StyleID="s88"><Data ss:Type="String">Real-world prescription example</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">f005</Data></Cell>
<Cell ss:StyleID="s87"><Data ss:Type="String">medicationprescription-example-f005-enalapril.xml</Data></Cell>
<Cell ss:StyleID="s131"/>
<Cell ss:StyleID="s144"/>
<Cell ss:StyleID="s144"><Data ss:Type="String">n</Data></Cell>
</Row>
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s142"/>
@ -6956,10 +6955,11 @@
<HorizontalResolution>-4</HorizontalResolution>
<VerticalResolution>-4</VerticalResolution>
</Print>
<Selected/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>2</TopRowBottomPane>
<TopRowBottomPane>1</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<ActivePane>0</ActivePane>
@ -6972,12 +6972,11 @@
</Pane>
<Pane>
<Number>2</Number>
<ActiveRow>1</ActiveRow>
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>6</ActiveRow>
<ActiveCol>4</ActiveCol>
<ActiveRow>11</ActiveRow>
<ActiveCol>6</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>

View File

@ -10,7 +10,7 @@
<LastAuthor>Eric Haas</LastAuthor>
<Created>2012-03-19T11:12:07Z</Created>
<LastSaved>2015-03-23T03:51:10Z</LastSaved>
<Version>12.00</Version>
<Version>14.00</Version>
</DocumentProperties>
<OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">
<AllowPNG/>
@ -27,6 +27,7 @@
<TabRatio>896</TabRatio>
<ActiveSheet>1</ActiveSheet>
<FirstVisibleSheet>1</FirstVisibleSheet>
<RefModeR1C1/>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
</ExcelWorkbook>
@ -295,6 +296,10 @@
<Style ss:ID="s93">
<Font ss:FontName="Verdana" x:Family="Swiss" ss:Size="9" ss:Color="#333333"/>
</Style>
<Style ss:ID="s94">
<Alignment ss:Vertical="Bottom" ss:WrapText="1"/>
<Font ss:FontName="Verdana" x:Family="Swiss" ss:Size="9" ss:Color="#333333"/>
</Style>
<Style ss:ID="s95">
<Alignment ss:Vertical="Top" ss:WrapText="1"/>
<Borders>
@ -827,10 +832,6 @@
<NumberFormat/>
<Protection/>
</Style>
<Style ss:ID="s157">
<Alignment ss:Vertical="Bottom" ss:WrapText="1"/>
<Font ss:FontName="Verdana" x:Family="Swiss" ss:Size="9" ss:Color="#333333"/>
</Style>
</Styles>
<Names>
<NamedRange ss:Name="Invariantids" ss:RefersTo="=Invariants!R2C1:R50C1"/>
@ -1264,7 +1265,7 @@
<Cell ss:StyleID="s88"><Data ss:Type="String">Information on a patient's food allergies and intolerances, inform healthcare personnel about the type of foods that the patient should receive or consume.</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s89"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s157"><Data ss:Type="String">.outboundRelationship[typeCode=RSON].target[classCode=OBS, moodCode=EVN]</Data><NamedCell
<Cell ss:StyleID="s94"><Data ss:Type="String">.outboundRelationship[typeCode=RSON].target[classCode=OBS, moodCode=EVN]</Data><NamedCell
ss:Name="Component4"/><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -2082,7 +2083,7 @@
<Cell ss:StyleID="s90"><Data ss:Type="String">V2 - ODS-2 Service Period (service periods mapped locally to meal service periods or day parts, e.g. breakfast, lunch, bedtime snack, etc.</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">down</Data><NamedCell
<Cell ss:StyleID="s91"><Data ss:Type="String">right</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -4141,7 +4142,7 @@
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>1</TopRowBottomPane>
<TopRowBottomPane>12</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>16</LeftColumnRightPane>
<ActivePane>0</ActivePane>
@ -4155,11 +4156,12 @@
</Pane>
<Pane>
<Number>2</Number>
<ActiveRow>1</ActiveRow>
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>10</ActiveRow>
<ActiveCol>18</ActiveCol>
<ActiveRow>31</ActiveRow>
<ActiveCol>22</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
@ -4358,7 +4360,7 @@
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R28C23:R31C23</Range>
<Range>R28C23:R31C23,R44C23</Range>
<Condition>
<Value1>AND(RC&lt;&gt;&quot;&quot;,LEFT(RC5,1)&lt;&gt;&quot;@&quot;,LEFT(#REF!,LEN(RC1)+1)&lt;&gt;(RC1&amp;&quot;.&quot;),LEFT(#REF!,LEN(RC1)+2)&lt;&gt;(&quot;!&quot;&amp;RC1&amp;&quot;.&quot;))</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:red'/>
@ -4371,13 +4373,6 @@
<Format Style='border:.5pt solid #D8D8D8;background:red'/>
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R44C23</Range>
<Condition>
<Value1>AND(RC&lt;&gt;&quot;&quot;,LEFT(RC5,1)&lt;&gt;&quot;@&quot;,LEFT(#REF!,LEN(RC1)+1)&lt;&gt;(RC1&amp;&quot;.&quot;),LEFT(#REF!,LEN(RC1)+2)&lt;&gt;(&quot;!&quot;&amp;RC1&amp;&quot;.&quot;))</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:red'/>
</Condition>
</ConditionalFormatting>
</Worksheet>
<Worksheet ss:Name="Invariants">
<Names>
@ -8477,14 +8472,7 @@
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R7C1,R7C5</Range>
<Condition>
<Value1>AND(RC&lt;&gt;&quot;&quot;,#REF!=&quot;&quot;)</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:red'/>
</Condition>
</ConditionalFormatting>
<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
<Range>R9C1,R9C5</Range>
<Range>R7C1,R7C5,R9C1,R9C5</Range>
<Condition>
<Value1>AND(RC&lt;&gt;&quot;&quot;,#REF!=&quot;&quot;)</Value1>
<Format Style='border:.5pt solid #D8D8D8;background:red'/>

View File

@ -1165,7 +1165,8 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">right</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
@ -1681,7 +1682,8 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">down</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
@ -1937,7 +1939,8 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">right</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
</Row>
@ -3837,9 +3840,9 @@
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>10</TopRowBottomPane>
<TopRowBottomPane>21</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<LeftColumnRightPane>12</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
@ -3847,6 +3850,7 @@
</Pane>
<Pane>
<Number>1</Number>
<ActiveCol>1</ActiveCol>
</Pane>
<Pane>
<Number>2</Number>
@ -3854,8 +3858,8 @@
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>11</ActiveRow>
<ActiveCol>12</ActiveCol>
<ActiveRow>31</ActiveRow>
<ActiveCol>21</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>

View File

@ -24,7 +24,7 @@
<WindowWidth>15390</WindowWidth>
<WindowTopX>0</WindowTopX>
<WindowTopY>0</WindowTopY>
<ActiveSheet>1</ActiveSheet>
<ActiveSheet>4</ActiveSheet>
<RefModeR1C1/>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
@ -3877,7 +3877,6 @@
<HorizontalResolution>600</HorizontalResolution>
<VerticalResolution>600</VerticalResolution>
</Print>
<Selected/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
@ -3899,8 +3898,8 @@
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>20</ActiveRow>
<ActiveCol>16</ActiveCol>
<ActiveRow>17</ActiveRow>
<ActiveCol>10</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
@ -5049,7 +5048,7 @@
<Cell ss:StyleID="s114"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s114"><Data ss:Type="String">Populate Questionnaire</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s128"><Data ss:Type="String">Generates a [[[QuestionnaireAnswers]]] instance based on a specified [[[Questionnaire]]], filling in answers to questions where possible based on information provided as part of the operation or already known by the server about the subject of the [[[Questionnaire]]].&#10;&#10;If the operation is not called at the instance level, one of the identifier or questionnaire 'in' parameters must be provided. (If called at the instance level, these parameters will be ignored.)&#10;&#10;The response will contain a [[[QuestionnaireAnswers]]] instance based on the specified [[[Questionnaire]]] and/or an [[[OperationOutcome]]] resource with errors or warnings.&#10;&#10;The [[[QuestionnaireAnswers]]] instance will be populated with an unanswered set of questions following the group and question structure of the specified [[[Questionnaire]]]. If *content* parameters were specified or the *local* parameter was set to true, some of the questions may have answers filled in as well. In the case of repeating questions or groups, typically only one repetition will be provided unless answer values exist that would support populating multiple repetitions.&#10;&#10;Population of the [[[QuestionnaireAnswers]]] with appropriate data is dependent on the questions and/or groups in the [[[Questionnaire]]] having metadata that allows the server to recognize the questions. This might be through *Questionnaire.group.question.code*, through extensions such as the [[http://hl7.org/fhir/StructureDefinition/questionnaire-deReference|deReference]] extension or through us of the [[ConceptMap]] resource.&#10;&#10;Regardless of the mechanism used to link the questions in a questionnaire to a &quot;known&quot; mapable concept, solutions using this operation should ensure that the details of the question and associated linkage element are sufficiently similar as to safely allow auto-population. I.e. the question text and context must be sufficiently the same, the value set for the question must fall within the value set for the mapped element, the data types must be the same or convertable, etc.</Data><NamedCell
<Cell ss:StyleID="s128"><Data ss:Type="String">Generates a [[[QuestionnaireAnswers]]] instance based on a specified [[[Questionnaire]]], filling in answers to questions where possible based on information provided as part of the operation or already known by the server about the subject of the [[[Questionnaire]]].&#10;&#10;If the operation is not called at the instance level, one of the identifier or questionnaire 'in' parameters must be provided. (If called at the instance level, these parameters will be ignored.)&#10;&#10;The response will contain a [[[QuestionnaireAnswers]]] instance based on the specified [[[Questionnaire]]] and/or an [[[OperationOutcome]]] resource with errors or warnings.&#10;&#10;The [[[QuestionnaireAnswers]]] instance will be populated with an unanswered set of questions following the group and question structure of the specified [[[Questionnaire]]]. If *content* parameters were specified or the *local* parameter was set to true, some of the questions may have answers filled in as well. In the case of repeating questions or groups, typically only one repetition will be provided unless answer values exist that would support populating multiple repetitions.&#10;&#10;Population of the [[[QuestionnaireAnswers]]] with appropriate data is dependent on the questions and/or groups in the [[[Questionnaire]]] having metadata that allows the server to recognize the questions. This might be through *Questionnaire.group.question.code*, through extensions such as the [[[http://hl7.org/fhir/StructureDefinition/questionnaire-deReference]]] extension or through us of the [[[ConceptMap]]] resource.&#10;&#10;Regardless of the mechanism used to link the questions in a questionnaire to a &quot;known&quot; mapable concept, solutions using this operation should ensure that the details of the question and associated linkage element are sufficiently similar as to safely allow auto-population. I.e. the question text and context must be sufficiently the same, the value set for the question must fall within the value set for the mapped element, the data types must be the same or convertable, etc.</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s129"><Data ss:Type="String">While it is theoretically possible for a [[[QuestionnaireAnswers]]] instance to be completely auto-populated and submitted without human review, the intention of this transaction is merely to reduce redundant data entry. A client **SHOULD** ensure that a human submitter has an opportunity to review the auto-populated answers to confirm correctness as well as to complete or expand on information provided by the auto-population process.&#10;&#10;Complex form designs with conditional logic or tight constraints on cardinalities may be challenging to auto-populate. A server MAY choose to traverse the questionnaire as if it were a human respondant, answering only those questions that are enabled based on previously answered questions. However doing so may result in minimal population. Alternatively, systems may choose to populate all known answers, independent of dependencies and other constraints. This may cause questions to be answered that should not be answered. It will be up to the client to appropriately prune the final populated questionnaire once human review has taken place.&#10;&#10;Invoking this operation with the ''content'' parameter may involve the disclosure of personally identifiable healthcare information to the system which is performing the population process. No such disclosures should be made unless the system on which the operation is being invoked is a &quot;trusted&quot; system and appropriate agreements are in place to protect the confidentiality of any information shared with that system.</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
@ -5591,6 +5590,7 @@
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Selected/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
@ -5610,7 +5610,8 @@
</Pane>
<Pane>
<Number>0</Number>
<ActiveCol>6</ActiveCol>
<ActiveRow>2</ActiveRow>
<ActiveCol>7</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>

View File

@ -2743,7 +2743,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">270;190</Data><NamedCell
<Cell ss:StyleID="s91"><Data ss:Type="String">310;185</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -2842,7 +2842,7 @@
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><Data ss:Type="String">250;70</Data><NamedCell
<Cell ss:StyleID="s90"><Data ss:Type="String">290;80</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -4344,9 +4344,9 @@
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>17</TopRowBottomPane>
<TopRowBottomPane>51</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>1</LeftColumnRightPane>
<LeftColumnRightPane>14</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
@ -4354,6 +4354,7 @@
</Pane>
<Pane>
<Number>1</Number>
<ActiveCol>1</ActiveCol>
</Pane>
<Pane>
<Number>2</Number>
@ -4361,8 +4362,8 @@
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>21</ActiveRow>
<ActiveCol>13</ActiveCol>
<ActiveRow>52</ActiveRow>
<ActiveCol>22</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>

View File

@ -24,7 +24,7 @@
<WindowWidth>22350</WindowWidth>
<WindowTopX>0</WindowTopX>
<WindowTopY>0</WindowTopY>
<ActiveSheet>3</ActiveSheet>
<ActiveSheet>1</ActiveSheet>
<FirstVisibleSheet>1</FirstVisibleSheet>
<RefModeR1C1/>
<ProtectStructure>False</ProtectStructure>
@ -1177,7 +1177,7 @@
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s91"><Data ss:Type="String">320;180</Data><NamedCell
<Cell ss:StyleID="s91"><Data ss:Type="String">right</Data><NamedCell
ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s90"><NamedCell ss:Name="_FilterDatabase"/></Cell>
<Cell ss:StyleID="s92"><NamedCell ss:Name="_FilterDatabase"/></Cell>
@ -3076,12 +3076,13 @@
<HorizontalResolution>600</HorizontalResolution>
<VerticalResolution>600</VerticalResolution>
</Print>
<Selected/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>
<TopRowBottomPane>4</TopRowBottomPane>
<SplitVertical>1</SplitVertical>
<LeftColumnRightPane>10</LeftColumnRightPane>
<LeftColumnRightPane>11</LeftColumnRightPane>
<ActivePane>0</ActivePane>
<Panes>
<Pane>
@ -3097,8 +3098,8 @@
</Pane>
<Pane>
<Number>0</Number>
<ActiveRow>5</ActiveRow>
<ActiveCol>0</ActiveCol>
<ActiveRow>9</ActiveRow>
<ActiveCol>20</ActiveCol>
</Pane>
</Panes>
<ProtectObjects>False</ProtectObjects>
@ -4133,7 +4134,6 @@
<PageMargins x:Bottom="0.75" x:Left="0.7" x:Right="0.7" x:Top="0.75"/>
</PageSetup>
<Unsynced/>
<Selected/>
<FreezePanes/>
<FrozenNoSplit/>
<SplitHorizontal>1</SplitHorizontal>

File diff suppressed because one or more lines are too long