schematron-wrapper 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +28 -0
- data/.rspec +1 -0
- data/.travis.yml +3 -0
- data/Gemfile +6 -0
- data/LICENSE +354 -0
- data/README.md +37 -0
- data/Rakefile +10 -0
- data/bin/saxon9he.jar +0 -0
- data/iso-schematron-xslt2/ExtractSchFromRNG-2.xsl +75 -0
- data/iso-schematron-xslt2/ExtractSchFromXSD-2.xsl +77 -0
- data/iso-schematron-xslt2/iso_abstract_expand.xsl +297 -0
- data/iso-schematron-xslt2/iso_dsdl_include.xsl +1508 -0
- data/iso-schematron-xslt2/iso_schematron_message_xslt2.xsl +55 -0
- data/iso-schematron-xslt2/iso_schematron_skeleton_for_saxon.xsl +2299 -0
- data/iso-schematron-xslt2/iso_svrl_for_xslt2.xsl +684 -0
- data/iso-schematron-xslt2/readme.txt +100 -0
- data/iso-schematron-xslt2/sch-messages-cs.xhtml +56 -0
- data/iso-schematron-xslt2/sch-messages-de.xhtml +57 -0
- data/iso-schematron-xslt2/sch-messages-en.xhtml +57 -0
- data/iso-schematron-xslt2/sch-messages-fr.xhtml +54 -0
- data/iso-schematron-xslt2/sch-messages-nl.xhtml +58 -0
- data/iso-schematron-xslt2/schematron-skeleton-api.htm +723 -0
- data/lib/schematron.rb +6 -0
- data/lib/schematron/utils.rb +29 -0
- data/lib/schematron/version.rb +4 -0
- data/lib/schematron/xslt2.rb +71 -0
- data/schematron_wrapper.gemspec +25 -0
- data/spec/lib/schematron/xslt2_spec.rb +50 -0
- data/spec/spec_helper.rb +4 -0
- data/spec/support/samples/compiled.xsl +334 -0
- data/spec/support/samples/initial.sch +52 -0
- data/spec/support/samples/target.xml +1032 -0
- data/spec/support/samples/validation_result.xml +46 -0
- metadata +99 -0
@@ -0,0 +1,52 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<!-- Data Dictionary Version v3.3.3.130926 -->
|
3
|
+
<iso:schema xmlns="http://purl.oclc.org/dsdl/schematron" xmlns:iso="http://purl.oclc.org/dsdl/schematron" xmlns:nem="http://www.nemsis.org" xmlns:fct="localFunctions" queryBinding="xslt2">
|
4
|
+
<iso:ns prefix="nem" uri="http://www.nemsis.org"/>
|
5
|
+
<iso:ns prefix="xsl" uri="http://www.w3.org/1999/XSL/Transform"/>
|
6
|
+
<iso:ns prefix="xsi" uri="http://www.w3.org/2001/XMLSchema-instance"/>
|
7
|
+
<iso:ns prefix="fct" uri="localFunctions"/>
|
8
|
+
<iso:title>NEMSIS Compliance Test ISO Schematron File</iso:title>
|
9
|
+
|
10
|
+
|
11
|
+
<!-- This is the a pattern for a state required/recommended elements when ePatient.13 is 9906001 (Female), the eHistory.18 - Pregnancy must be 3118003 (Possible, Uncomfirmed). -->
|
12
|
+
<iso:pattern abstract="false" id="complianceTestStructureRule1" name ="Verify ePatient.13 and eHistory for female">
|
13
|
+
<iso:title>When ePatient.13 is 9906001, eHistory.18 must be 3118003.</iso:title>
|
14
|
+
<iso:rule context="nem:Header/nem:PatientCareReport" role="[FATAL]" >
|
15
|
+
<iso:let name="patientCare" value="normalize-space(.)" />
|
16
|
+
<iso:let name="ePatient13" value="normalize-space(./nem:ePatient/nem:ePatient.13/.)" />
|
17
|
+
<iso:let name="eHistory18" value="normalize-space(./nem:eHistory/nem:eHistory.18/.)" />
|
18
|
+
<iso:assert role="[FATAL]" test="if (number($ePatient13) = 9906001) then (if (number($eHistory18) = 3118003) then true() else false()) else true()" >
|
19
|
+
ePatient.13 - Gender is 9906001 (Female), but eHistory.18 - Pregnancy is <iso:value-of select="$eHistory18" /> while it must be 3118003 (Possible, Uncomfirmed).
|
20
|
+
</iso:assert>
|
21
|
+
</iso:rule>
|
22
|
+
</iso:pattern>
|
23
|
+
|
24
|
+
|
25
|
+
<!-- This is the a pattern for a state required/recommended elements eTimes.03 - Unit Notified by Dispatch Date/Time before eTimes.13 - Unit Back in Service Date/Time. -->
|
26
|
+
<iso:pattern abstract="false" id="complianceTestStructureRule2" name ="Verify eTimes.03 is before eTimes.13">
|
27
|
+
<iso:title>eTimes.03 - Unit Notied by Dispatch Date/Time is before eTimes.13 - Unit Back in Service Date/Time</iso:title>
|
28
|
+
<iso:rule context="nem:Header/nem:PatientCareReport/nem:eTimes" role="[FATAL]" >
|
29
|
+
<iso:let name="eTimes" value="normalize-space(.)" />
|
30
|
+
<iso:let name="eTimes03" value="normalize-space(./nem:eTimes.03/.)" />
|
31
|
+
<iso:let name="eTimes13" value="normalize-space(./nem:eTimes.13/.)" />
|
32
|
+
<iso:let name="eTimes03All" value="normalize-space(concat(substring($eTimes03,1,4), substring($eTimes03,6,2), substring($eTimes03,9,2), substring($eTimes03,12,2), substring($eTimes03,15,2), substring($eTimes03,18,2)))" />
|
33
|
+
<iso:let name="eTimes13All" value="normalize-space(concat(substring($eTimes13,1,4), substring($eTimes13,6,2), substring($eTimes13,9,2), substring($eTimes13,12,2), substring($eTimes13,15,2), substring($eTimes13,18,2)))" />
|
34
|
+
<iso:assert role="[FATAL]" test=" if (number($eTimes03All) < number($eTimes13All)) then true() else false() " >
|
35
|
+
eTimes.03 - Unit Notified by Dispatch Date/Time <iso:value-of select="$eTimes03" /> should be before eTimes.13 - Unit Back in Service Date/Time <iso:value-of select="$eTimes13" />.
|
36
|
+
</iso:assert>
|
37
|
+
</iso:rule>
|
38
|
+
</iso:pattern>
|
39
|
+
|
40
|
+
|
41
|
+
<!-- This is the a pattern for a state required/recommended elements eDispatch.01 - Complaint Reported by Dispatch must not be 2301069. -->
|
42
|
+
<iso:pattern abstract="false" id="complianceTestStructureRule3" name ="Verify ">
|
43
|
+
<iso:title>eDispatch.01 - Complaint Reported by Dispatch must not be 2301069</iso:title>
|
44
|
+
<iso:rule context="nem:Header/nem:PatientCareReport/nem:eDispatch" role="[FATAL]" >
|
45
|
+
<iso:let name="eDispatch" value="normalize-space(.)" />
|
46
|
+
<iso:let name="eDispatch01" value="normalize-space(./nem:eDispatch.01/.)" />
|
47
|
+
<iso:assert role="[FATAL]" test="if (number($eDispatch01) = 2301007) then false() else true()" >
|
48
|
+
eDispatch.01 - Complaint Reported by Dispatch must NOT be 2301007.
|
49
|
+
</iso:assert>
|
50
|
+
</iso:rule>
|
51
|
+
</iso:pattern>
|
52
|
+
</iso:schema>
|
@@ -0,0 +1,1032 @@
|
|
1
|
+
<EMSDataSet xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.nemsis.org http://nemsis.org/media/XSD_v3/_nemsis_v3.3.3/3.3.3.130926/XSDs/NEMSIS_XSDs_v3.3.3.130926/EMSDataSet_v3.xsd" xmlns="http://www.nemsis.org">
|
2
|
+
<Header>
|
3
|
+
<DemographicGroup>
|
4
|
+
<dAgency.01>9</dAgency.01>
|
5
|
+
<dAgency.02>99</dAgency.02>
|
6
|
+
<dAgency.04>49</dAgency.04></DemographicGroup>
|
7
|
+
<PatientCareReport>
|
8
|
+
<eRecord>
|
9
|
+
<eRecord.01>SUR</eRecord.01>
|
10
|
+
<eRecord.SoftwareApplicationGroup>
|
11
|
+
<eRecord.02>G</eRecord.02>
|
12
|
+
<eRecord.03>O</eRecord.03>
|
13
|
+
<eRecord.04>v</eRecord.04></eRecord.SoftwareApplicationGroup></eRecord>
|
14
|
+
<eResponse>
|
15
|
+
<eResponse.AgencyGroup>
|
16
|
+
<eResponse.01>2</eResponse.01>
|
17
|
+
<eResponse.02>O1</eResponse.02></eResponse.AgencyGroup>
|
18
|
+
<eResponse.03>p3q</eResponse.03>
|
19
|
+
<eResponse.04>DmA</eResponse.04>
|
20
|
+
<eResponse.ServiceGroup>
|
21
|
+
<eResponse.05>2205011</eResponse.05>
|
22
|
+
<eResponse.06>2206007</eResponse.06></eResponse.ServiceGroup>
|
23
|
+
<eResponse.07>2207007</eResponse.07>
|
24
|
+
<eResponse.08>2208005</eResponse.08>
|
25
|
+
<eResponse.08>2208013</eResponse.08>
|
26
|
+
<eResponse.08>2208017</eResponse.08>
|
27
|
+
<eResponse.09>2209025</eResponse.09>
|
28
|
+
<eResponse.09>2209011</eResponse.09>
|
29
|
+
<eResponse.10>2210031</eResponse.10>
|
30
|
+
<eResponse.10>2210017</eResponse.10>
|
31
|
+
<eResponse.11>2211003</eResponse.11>
|
32
|
+
<eResponse.11>2211011</eResponse.11>
|
33
|
+
<eResponse.11>2211015</eResponse.11>
|
34
|
+
<eResponse.12>2212017</eResponse.12>
|
35
|
+
<eResponse.12>2212003</eResponse.12>
|
36
|
+
<eResponse.13>y</eResponse.13>
|
37
|
+
<eResponse.14>i</eResponse.14>
|
38
|
+
<eResponse.15>2215005</eResponse.15>
|
39
|
+
<eResponse.16>ow</eResponse.16>
|
40
|
+
<eResponse.17>-7,151</eResponse.17>
|
41
|
+
<eResponse.18>16,KL52868716</eResponse.18>
|
42
|
+
<eResponse.19>458.0</eResponse.19>
|
43
|
+
<eResponse.20>547.0</eResponse.20>
|
44
|
+
<eResponse.21>715.0</eResponse.21>
|
45
|
+
<eResponse.22>923.0</eResponse.22>
|
46
|
+
<eResponse.23>2223007</eResponse.23>
|
47
|
+
<eResponse.24>2224013</eResponse.24>
|
48
|
+
<eResponse.24>2224003</eResponse.24></eResponse>
|
49
|
+
<eDispatch>
|
50
|
+
<eDispatch.01>2301069</eDispatch.01>
|
51
|
+
<eDispatch.02>2302001</eDispatch.02>
|
52
|
+
<eDispatch.03>a</eDispatch.03>
|
53
|
+
<eDispatch.04>OZ</eDispatch.04>
|
54
|
+
<eDispatch.05>2305001</eDispatch.05></eDispatch>
|
55
|
+
<eCrew>
|
56
|
+
<eCrew.CrewGroup>
|
57
|
+
<eCrew.01>Xk</eCrew.01>
|
58
|
+
<eCrew.02>9925003</eCrew.02>
|
59
|
+
<eCrew.03>2403005</eCrew.03>
|
60
|
+
<eCrew.03>2403009</eCrew.03>
|
61
|
+
<eCrew.03>2403001</eCrew.03></eCrew.CrewGroup>
|
62
|
+
<eCrew.CrewGroup>
|
63
|
+
<eCrew.01>pv</eCrew.01>
|
64
|
+
<eCrew.02>9925029</eCrew.02>
|
65
|
+
<eCrew.03>2403009</eCrew.03>
|
66
|
+
<eCrew.03>2403003</eCrew.03>
|
67
|
+
<eCrew.03>2403001</eCrew.03></eCrew.CrewGroup></eCrew>
|
68
|
+
<eTimes>
|
69
|
+
<eTimes.01>2013-10-02T14:00:50+07:00</eTimes.01>
|
70
|
+
<eTimes.02>2013-10-02T14:00:50+07:00</eTimes.02>
|
71
|
+
<eTimes.03>2013-10-02T14:00:50+07:00</eTimes.03>
|
72
|
+
<eTimes.04>2013-10-02T14:00:50+07:00</eTimes.04>
|
73
|
+
<eTimes.05>2013-10-02T14:00:50+07:00</eTimes.05>
|
74
|
+
<eTimes.06>2013-10-02T14:00:50+07:00</eTimes.06>
|
75
|
+
<eTimes.07>2013-10-02T14:00:50+07:00</eTimes.07>
|
76
|
+
<eTimes.08>2013-10-02T14:00:50+07:00</eTimes.08>
|
77
|
+
<eTimes.09>2013-10-02T14:00:50+07:00</eTimes.09>
|
78
|
+
<eTimes.10>2013-10-02T14:00:50+07:00</eTimes.10>
|
79
|
+
<eTimes.11>2013-10-02T14:00:50+07:00</eTimes.11>
|
80
|
+
<eTimes.12>2013-10-02T14:00:50+07:00</eTimes.12>
|
81
|
+
<eTimes.13>2013-10-02T14:00:50+07:00</eTimes.13>
|
82
|
+
<eTimes.14>2013-10-02T14:00:50+07:00</eTimes.14>
|
83
|
+
<eTimes.15>2013-10-02T14:00:50+07:00</eTimes.15>
|
84
|
+
<eTimes.16>2013-10-02T14:00:50+07:00</eTimes.16></eTimes>
|
85
|
+
<ePatient>
|
86
|
+
<ePatient.01>2l</ePatient.01>
|
87
|
+
<ePatient.PatientNameGroup>
|
88
|
+
<ePatient.02>L</ePatient.02>
|
89
|
+
<ePatient.03>7</ePatient.03>
|
90
|
+
<ePatient.04>x</ePatient.04></ePatient.PatientNameGroup>
|
91
|
+
<ePatient.05 StreetAddress2="6">e</ePatient.05>
|
92
|
+
<ePatient.06>38410</ePatient.06>
|
93
|
+
<ePatient.07>49053</ePatient.07>
|
94
|
+
<ePatient.08>49</ePatient.08>
|
95
|
+
<ePatient.09>84770</ePatient.09>
|
96
|
+
<ePatient.10>US</ePatient.10>
|
97
|
+
<ePatient.11>71750515478</ePatient.11>
|
98
|
+
<ePatient.12>674724467</ePatient.12>
|
99
|
+
<ePatient.13>9906001</ePatient.13>
|
100
|
+
<ePatient.14>2514009</ePatient.14>
|
101
|
+
<ePatient.14>2514003</ePatient.14>
|
102
|
+
<ePatient.AgeGroup>
|
103
|
+
<ePatient.15>41</ePatient.15>
|
104
|
+
<ePatient.16>2516001</ePatient.16></ePatient.AgeGroup>
|
105
|
+
<ePatient.17>1963-06-10</ePatient.17>
|
106
|
+
<ePatient.18 PhoneNumberType="9913003">985-551-1312</ePatient.18>
|
107
|
+
<ePatient.18 PhoneNumberType="9913007">442-456-5516</ePatient.18>
|
108
|
+
<ePatient.18 PhoneNumberType="9913005">413-392-8938</ePatient.18>
|
109
|
+
<ePatient.19 EmailAddressType="9904003">UJzVHyfg@DwUr.com</ePatient.19>
|
110
|
+
<ePatient.19 EmailAddressType="9904003">lRty1aNg@KsAY.com</ePatient.19>
|
111
|
+
<ePatient.20>u8</ePatient.20>
|
112
|
+
<ePatient.21>W</ePatient.21></ePatient>
|
113
|
+
<ePayment>
|
114
|
+
<ePayment.01>2601013</ePayment.01>
|
115
|
+
<ePayment.CertificateGroup>
|
116
|
+
<ePayment.02>9922001</ePayment.02>
|
117
|
+
<ePayment.03>2013-10-02T14:00:50+07:00</ePayment.03>
|
118
|
+
<ePayment.04>2604015</ePayment.04>
|
119
|
+
<ePayment.04>2604033</ePayment.04>
|
120
|
+
<ePayment.04>2604019</ePayment.04>
|
121
|
+
<ePayment.05>2605001</ePayment.05>
|
122
|
+
<ePayment.06>1</ePayment.06>
|
123
|
+
<ePayment.07>N</ePayment.07></ePayment.CertificateGroup>
|
124
|
+
<ePayment.08>2608001</ePayment.08>
|
125
|
+
<ePayment.InsuranceGroup>
|
126
|
+
<ePayment.09>5X</ePayment.09>
|
127
|
+
<ePayment.10>TK</ePayment.10>
|
128
|
+
<ePayment.11>2611001</ePayment.11>
|
129
|
+
<ePayment.12 StreetAddress2="v">D</ePayment.12>
|
130
|
+
<ePayment.13>24898</ePayment.13>
|
131
|
+
<ePayment.14>49</ePayment.14>
|
132
|
+
<ePayment.15>84318</ePayment.15>
|
133
|
+
<ePayment.16>US</ePayment.16>
|
134
|
+
<ePayment.17>rf</ePayment.17>
|
135
|
+
<ePayment.18>12</ePayment.18>
|
136
|
+
<ePayment.19>f</ePayment.19>
|
137
|
+
<ePayment.20>o</ePayment.20>
|
138
|
+
<ePayment.21>e</ePayment.21>
|
139
|
+
<ePayment.22>2622001</ePayment.22></ePayment.InsuranceGroup>
|
140
|
+
<ePayment.InsuranceGroup>
|
141
|
+
<ePayment.09>cA</ePayment.09>
|
142
|
+
<ePayment.10>7n</ePayment.10>
|
143
|
+
<ePayment.11>2611001</ePayment.11>
|
144
|
+
<ePayment.12 StreetAddress2="D">I</ePayment.12>
|
145
|
+
<ePayment.13>57960</ePayment.13>
|
146
|
+
<ePayment.14>49</ePayment.14>
|
147
|
+
<ePayment.15>84120</ePayment.15>
|
148
|
+
<ePayment.16>US</ePayment.16>
|
149
|
+
<ePayment.17>iv</ePayment.17>
|
150
|
+
<ePayment.18>XD</ePayment.18>
|
151
|
+
<ePayment.19>4</ePayment.19>
|
152
|
+
<ePayment.20>v</ePayment.20>
|
153
|
+
<ePayment.21>9</ePayment.21>
|
154
|
+
<ePayment.22>2622003</ePayment.22></ePayment.InsuranceGroup>
|
155
|
+
<ePayment.InsuranceGroup>
|
156
|
+
<ePayment.09>Lg</ePayment.09>
|
157
|
+
<ePayment.10>ua</ePayment.10>
|
158
|
+
<ePayment.11>2611003</ePayment.11>
|
159
|
+
<ePayment.12 StreetAddress2="K">k</ePayment.12>
|
160
|
+
<ePayment.13>34495</ePayment.13>
|
161
|
+
<ePayment.14>49</ePayment.14>
|
162
|
+
<ePayment.15>84029</ePayment.15>
|
163
|
+
<ePayment.16>US</ePayment.16>
|
164
|
+
<ePayment.17>6V</ePayment.17>
|
165
|
+
<ePayment.18>33</ePayment.18>
|
166
|
+
<ePayment.19>O</ePayment.19>
|
167
|
+
<ePayment.20>d</ePayment.20>
|
168
|
+
<ePayment.21>y</ePayment.21>
|
169
|
+
<ePayment.22>2622007</ePayment.22></ePayment.InsuranceGroup>
|
170
|
+
<ePayment.ClosestRelativeGroup>
|
171
|
+
<ePayment.23>B</ePayment.23>
|
172
|
+
<ePayment.24>F</ePayment.24>
|
173
|
+
<ePayment.25>U</ePayment.25>
|
174
|
+
<ePayment.26 StreetAddress2="P">M</ePayment.26>
|
175
|
+
<ePayment.27>77588</ePayment.27>
|
176
|
+
<ePayment.28>49</ePayment.28>
|
177
|
+
<ePayment.29>84046</ePayment.29>
|
178
|
+
<ePayment.30>US</ePayment.30>
|
179
|
+
<ePayment.31 PhoneNumberType="9913007">853-479-2076</ePayment.31>
|
180
|
+
<ePayment.31 PhoneNumberType="9913001">527-556-2463</ePayment.31>
|
181
|
+
<ePayment.31 PhoneNumberType="9913001">486-711-5267</ePayment.31>
|
182
|
+
<ePayment.32>2632015</ePayment.32></ePayment.ClosestRelativeGroup>
|
183
|
+
<ePayment.EmployerGroup>
|
184
|
+
<ePayment.33>Pc</ePayment.33>
|
185
|
+
<ePayment.34 StreetAddress2="w">g</ePayment.34>
|
186
|
+
<ePayment.35>50874</ePayment.35>
|
187
|
+
<ePayment.36>49</ePayment.36>
|
188
|
+
<ePayment.37>84743</ePayment.37>
|
189
|
+
<ePayment.38>US</ePayment.38>
|
190
|
+
<ePayment.39 PhoneNumberType="9913009">325-763-7677</ePayment.39></ePayment.EmployerGroup>
|
191
|
+
<ePayment.40>2640001</ePayment.40>
|
192
|
+
<ePayment.41>2641001</ePayment.41>
|
193
|
+
<ePayment.41>2641005</ePayment.41>
|
194
|
+
<ePayment.41>2641003</ePayment.41>
|
195
|
+
<ePayment.42>2642003</ePayment.42>
|
196
|
+
<ePayment.42>2642001</ePayment.42>
|
197
|
+
<ePayment.42>2642007</ePayment.42>
|
198
|
+
<ePayment.43>X</ePayment.43>
|
199
|
+
<ePayment.44>D</ePayment.44>
|
200
|
+
<ePayment.44>A</ePayment.44>
|
201
|
+
<ePayment.45>JF</ePayment.45>
|
202
|
+
<ePayment.46>h6</ePayment.46>
|
203
|
+
<ePayment.47>08</ePayment.47>
|
204
|
+
<ePayment.47>04</ePayment.47>
|
205
|
+
<ePayment.47>06</ePayment.47>
|
206
|
+
<ePayment.48>970.0</ePayment.48>
|
207
|
+
<ePayment.49>9923001</ePayment.49>
|
208
|
+
<ePayment.50>2650005</ePayment.50>
|
209
|
+
<ePayment.51>W85.35</ePayment.51>
|
210
|
+
<ePayment.51>T46.524</ePayment.51>
|
211
|
+
<ePayment.52>D3</ePayment.52>
|
212
|
+
<ePayment.52>C1</ePayment.52>
|
213
|
+
<ePayment.53>TD</ePayment.53>
|
214
|
+
<ePayment.54>d</ePayment.54>
|
215
|
+
<ePayment.SupplyItemGroup>
|
216
|
+
<ePayment.55>4M</ePayment.55>
|
217
|
+
<ePayment.56>25318363</ePayment.56></ePayment.SupplyItemGroup>
|
218
|
+
<ePayment.SupplyItemGroup>
|
219
|
+
<ePayment.55>dy</ePayment.55>
|
220
|
+
<ePayment.56>854643</ePayment.56></ePayment.SupplyItemGroup></ePayment>
|
221
|
+
<eScene>
|
222
|
+
<eScene.01>9923003</eScene.01>
|
223
|
+
<eScene.ResponderGroup>
|
224
|
+
<eScene.02>eP</eScene.02>
|
225
|
+
<eScene.03>y</eScene.03>
|
226
|
+
<eScene.04>2704017</eScene.04></eScene.ResponderGroup>
|
227
|
+
<eScene.ResponderGroup>
|
228
|
+
<eScene.02>Os</eScene.02>
|
229
|
+
<eScene.03>0</eScene.03>
|
230
|
+
<eScene.04>2704013</eScene.04></eScene.ResponderGroup>
|
231
|
+
<eScene.ResponderGroup>
|
232
|
+
<eScene.02>z7</eScene.02>
|
233
|
+
<eScene.03>J</eScene.03>
|
234
|
+
<eScene.04>2704015</eScene.04></eScene.ResponderGroup>
|
235
|
+
<eScene.05>2013-10-02T14:00:50+07:00</eScene.05>
|
236
|
+
<eScene.06>2707001</eScene.06>
|
237
|
+
<eScene.07>9923001</eScene.07>
|
238
|
+
<eScene.08>2708007</eScene.08>
|
239
|
+
<eScene.09>Y92.69</eScene.09>
|
240
|
+
<eScene.10>Jp</eScene.10>
|
241
|
+
<eScene.11>41.556660,-111.818340</eScene.11>
|
242
|
+
<eScene.12>16RSF24181087</eScene.12>
|
243
|
+
<eScene.13>Uz</eScene.13>
|
244
|
+
<eScene.14>T3</eScene.14>
|
245
|
+
<eScene.15 StreetAddress2="8">m</eScene.15>
|
246
|
+
<eScene.16>L</eScene.16>
|
247
|
+
<eScene.17>76216</eScene.17>
|
248
|
+
<eScene.18>49</eScene.18>
|
249
|
+
<eScene.19>84328</eScene.19>
|
250
|
+
<eScene.20>Qj</eScene.20>
|
251
|
+
<eScene.21>49005</eScene.21>
|
252
|
+
<eScene.22>US</eScene.22>
|
253
|
+
<eScene.23>87682614762</eScene.23></eScene>
|
254
|
+
<eSituation>
|
255
|
+
<eSituation.01>2013-10-02T14:00:50+07:00</eSituation.01>
|
256
|
+
<eSituation.02>9922003</eSituation.02>
|
257
|
+
<eSituation.PatientComplaintGroup>
|
258
|
+
<eSituation.03>2803005</eSituation.03>
|
259
|
+
<eSituation.04>w</eSituation.04>
|
260
|
+
<eSituation.05>160</eSituation.05>
|
261
|
+
<eSituation.06>2806003</eSituation.06></eSituation.PatientComplaintGroup>
|
262
|
+
<eSituation.PatientComplaintGroup>
|
263
|
+
<eSituation.03>2803003</eSituation.03>
|
264
|
+
<eSituation.04>H</eSituation.04>
|
265
|
+
<eSituation.05>288</eSituation.05>
|
266
|
+
<eSituation.06>2806007</eSituation.06></eSituation.PatientComplaintGroup>
|
267
|
+
<eSituation.PatientComplaintGroup>
|
268
|
+
<eSituation.03>2803001</eSituation.03>
|
269
|
+
<eSituation.04>E</eSituation.04>
|
270
|
+
<eSituation.05>361</eSituation.05>
|
271
|
+
<eSituation.06>2806001</eSituation.06></eSituation.PatientComplaintGroup>
|
272
|
+
<eSituation.07>2807011</eSituation.07>
|
273
|
+
<eSituation.08>2808021</eSituation.08>
|
274
|
+
<eSituation.09>T50.7X5A</eSituation.09>
|
275
|
+
<eSituation.10>T21.66</eSituation.10>
|
276
|
+
<eSituation.10>R40.2331</eSituation.10>
|
277
|
+
<eSituation.10>M21.739</eSituation.10>
|
278
|
+
<eSituation.11>S62.606P</eSituation.11>
|
279
|
+
<eSituation.12>I70.733</eSituation.12>
|
280
|
+
<eSituation.12>N86</eSituation.12>
|
281
|
+
<eSituation.12>H68.012</eSituation.12>
|
282
|
+
<eSituation.13>2813005</eSituation.13>
|
283
|
+
<eSituation.WorkRelatedGroup>
|
284
|
+
<eSituation.14>9922003</eSituation.14>
|
285
|
+
<eSituation.15>2815019</eSituation.15>
|
286
|
+
<eSituation.16>2816027</eSituation.16></eSituation.WorkRelatedGroup>
|
287
|
+
<eSituation.17>Y93.E9</eSituation.17>
|
288
|
+
<eSituation.17>Y93.16</eSituation.17>
|
289
|
+
<eSituation.17>Y93.E5</eSituation.17></eSituation>
|
290
|
+
<eInjury>
|
291
|
+
<eInjury.01>T81.511A</eInjury.01>
|
292
|
+
<eInjury.01>V10.9XXA</eInjury.01>
|
293
|
+
<eInjury.01>T28.5XXD</eInjury.01>
|
294
|
+
<eInjury.02>2902001</eInjury.02>
|
295
|
+
<eInjury.02>2902003</eInjury.02>
|
296
|
+
<eInjury.03>2903013</eInjury.03>
|
297
|
+
<eInjury.03>2903015</eInjury.03>
|
298
|
+
<eInjury.04>2904009</eInjury.04>
|
299
|
+
<eInjury.04>2904003</eInjury.04>
|
300
|
+
<eInjury.04>2904007</eInjury.04>
|
301
|
+
<eInjury.05>11</eInjury.05>
|
302
|
+
<eInjury.06>2906015</eInjury.06>
|
303
|
+
<eInjury.07>2907027</eInjury.07>
|
304
|
+
<eInjury.07>2907017</eInjury.07>
|
305
|
+
<eInjury.07>2907029</eInjury.07>
|
306
|
+
<eInjury.08>2908003</eInjury.08>
|
307
|
+
<eInjury.08>2908007</eInjury.08>
|
308
|
+
<eInjury.09>9077</eInjury.09>
|
309
|
+
<eInjury.10>2910007</eInjury.10>
|
310
|
+
<eInjury.10>2910011</eInjury.10>
|
311
|
+
<eInjury.CollisionGroup>
|
312
|
+
<eInjury.11>H</eInjury.11>
|
313
|
+
<eInjury.12>PL</eInjury.12>
|
314
|
+
<eInjury.13 PhoneNumberType="9913005">535-567-6441</eInjury.13>
|
315
|
+
<eInjury.13 PhoneNumberType="9913001">712-272-7733</eInjury.13>
|
316
|
+
<eInjury.13 PhoneNumberType="9913009">387-391-1055</eInjury.13>
|
317
|
+
<eInjury.14>2013-10-02T14:00:50+07:00</eInjury.14>
|
318
|
+
<eInjury.15>-0.384583,0</eInjury.15>
|
319
|
+
<eInjury.16>Rx</eInjury.16>
|
320
|
+
<eInjury.17>iL</eInjury.17>
|
321
|
+
<eInjury.18>Vl</eInjury.18>
|
322
|
+
<eInjury.19>X</eInjury.19>
|
323
|
+
<eInjury.20>2014</eInjury.20>
|
324
|
+
<eInjury.21>9923001</eInjury.21>
|
325
|
+
<eInjury.22 DeltaVelocityOrdinal="615" VelocityUnit="9921003">242</eInjury.22>
|
326
|
+
<eInjury.22 DeltaVelocityOrdinal="251" VelocityUnit="9921001">306</eInjury.22>
|
327
|
+
<eInjury.23>9923003</eInjury.23>
|
328
|
+
<eInjury.24>1</eInjury.24>
|
329
|
+
<eInjury.25>Y</eInjury.25>
|
330
|
+
<eInjury.SeatGroup>
|
331
|
+
<eInjury.26>2926005</eInjury.26>
|
332
|
+
<eInjury.27>N</eInjury.27>
|
333
|
+
<eInjury.28>N</eInjury.28>
|
334
|
+
<eInjury.29>N</eInjury.29></eInjury.SeatGroup>
|
335
|
+
<eInjury.SeatGroup>
|
336
|
+
<eInjury.26>2926011</eInjury.26>
|
337
|
+
<eInjury.27>N</eInjury.27>
|
338
|
+
<eInjury.28>N</eInjury.28>
|
339
|
+
<eInjury.29>N</eInjury.29></eInjury.SeatGroup>
|
340
|
+
<eInjury.SeatGroup>
|
341
|
+
<eInjury.26>2926015</eInjury.26>
|
342
|
+
<eInjury.27>N</eInjury.27>
|
343
|
+
<eInjury.28>N</eInjury.28>
|
344
|
+
<eInjury.29>N</eInjury.29></eInjury.SeatGroup></eInjury.CollisionGroup></eInjury>
|
345
|
+
<eArrest>
|
346
|
+
<eArrest.01>3001003</eArrest.01>
|
347
|
+
<eArrest.02>3002015</eArrest.02>
|
348
|
+
<eArrest.03>3003005</eArrest.03>
|
349
|
+
<eArrest.03>3003009</eArrest.03>
|
350
|
+
<eArrest.03>3003007</eArrest.03>
|
351
|
+
<eArrest.04>3004001</eArrest.04>
|
352
|
+
<eArrest.04>3004005</eArrest.04>
|
353
|
+
<eArrest.05>9923003</eArrest.05>
|
354
|
+
<eArrest.06>3006007</eArrest.06>
|
355
|
+
<eArrest.06>3006001</eArrest.06>
|
356
|
+
<eArrest.06>3006009</eArrest.06>
|
357
|
+
<eArrest.07>3007003</eArrest.07>
|
358
|
+
<eArrest.08>3008007</eArrest.08>
|
359
|
+
<eArrest.08>3008009</eArrest.08>
|
360
|
+
<eArrest.08>3008003</eArrest.08>
|
361
|
+
<eArrest.09>3009005</eArrest.09>
|
362
|
+
<eArrest.09>3009011</eArrest.09>
|
363
|
+
<eArrest.10>9923003</eArrest.10>
|
364
|
+
<eArrest.11>3011011</eArrest.11>
|
365
|
+
<eArrest.12>3012007</eArrest.12>
|
366
|
+
<eArrest.12>3012003</eArrest.12>
|
367
|
+
<eArrest.12>3012001</eArrest.12>
|
368
|
+
<eArrest.13>3013001</eArrest.13>
|
369
|
+
<eArrest.14>2013-10-02T14:00:50+07:00</eArrest.14>
|
370
|
+
<eArrest.15>2013-10-02T14:00:50+07:00</eArrest.15>
|
371
|
+
<eArrest.16>3016003</eArrest.16>
|
372
|
+
<eArrest.17>9901015</eArrest.17>
|
373
|
+
<eArrest.17>9901067</eArrest.17>
|
374
|
+
<eArrest.18>3018003</eArrest.18></eArrest>
|
375
|
+
<eHistory>
|
376
|
+
<eHistory.01>3101025</eHistory.01>
|
377
|
+
<eHistory.01>3101009</eHistory.01>
|
378
|
+
<eHistory.01>3101023</eHistory.01>
|
379
|
+
<eHistory.PractitionerGroup>
|
380
|
+
<eHistory.02>y</eHistory.02>
|
381
|
+
<eHistory.03>W</eHistory.03>
|
382
|
+
<eHistory.04>l</eHistory.04></eHistory.PractitionerGroup>
|
383
|
+
<eHistory.PractitionerGroup>
|
384
|
+
<eHistory.02>k</eHistory.02>
|
385
|
+
<eHistory.03>G</eHistory.03>
|
386
|
+
<eHistory.04>x</eHistory.04></eHistory.PractitionerGroup>
|
387
|
+
<eHistory.PractitionerGroup>
|
388
|
+
<eHistory.02>l</eHistory.02>
|
389
|
+
<eHistory.03>4</eHistory.03>
|
390
|
+
<eHistory.04>N</eHistory.04></eHistory.PractitionerGroup>
|
391
|
+
<eHistory.05>3105009</eHistory.05>
|
392
|
+
<eHistory.05>3105007</eHistory.05>
|
393
|
+
<eHistory.06 CodeType="9924001">D65</eHistory.06>
|
394
|
+
<eHistory.06 CodeType="9924001">R30</eHistory.06>
|
395
|
+
<eHistory.06 CodeType="9924001">O40</eHistory.06>
|
396
|
+
<eHistory.07>452871857</eHistory.07>
|
397
|
+
<eHistory.07>312059200</eHistory.07>
|
398
|
+
<eHistory.08>M77.8</eHistory.08>
|
399
|
+
<eHistory.08>S65.516</eHistory.08>
|
400
|
+
<eHistory.08>I45.6</eHistory.08>
|
401
|
+
<eHistory.09>3109005</eHistory.09>
|
402
|
+
<eHistory.09>3109007</eHistory.09>
|
403
|
+
<eHistory.ImmunizationsGroup>
|
404
|
+
<eHistory.10>9910019</eHistory.10>
|
405
|
+
<eHistory.11>1935</eHistory.11></eHistory.ImmunizationsGroup>
|
406
|
+
<eHistory.ImmunizationsGroup>
|
407
|
+
<eHistory.10>9910015</eHistory.10>
|
408
|
+
<eHistory.11>1988</eHistory.11></eHistory.ImmunizationsGroup>
|
409
|
+
<eHistory.ImmunizationsGroup>
|
410
|
+
<eHistory.10>9910037</eHistory.10>
|
411
|
+
<eHistory.11>1952</eHistory.11></eHistory.ImmunizationsGroup>
|
412
|
+
<eHistory.CurrentMedsGroup>
|
413
|
+
<eHistory.12>313487</eHistory.12>
|
414
|
+
<eHistory.13>284.0</eHistory.13>
|
415
|
+
<eHistory.14>3114027</eHistory.14>
|
416
|
+
<eHistory.15>9927027</eHistory.15></eHistory.CurrentMedsGroup>
|
417
|
+
<eHistory.CurrentMedsGroup>
|
418
|
+
<eHistory.12>1310930</eHistory.12>
|
419
|
+
<eHistory.13>249.0</eHistory.13>
|
420
|
+
<eHistory.14>3114003</eHistory.14>
|
421
|
+
<eHistory.15>9927017</eHistory.15></eHistory.CurrentMedsGroup>
|
422
|
+
<eHistory.CurrentMedsGroup>
|
423
|
+
<eHistory.12>102313</eHistory.12>
|
424
|
+
<eHistory.13>977.0</eHistory.13>
|
425
|
+
<eHistory.14>3114001</eHistory.14>
|
426
|
+
<eHistory.15>9927033</eHistory.15></eHistory.CurrentMedsGroup>
|
427
|
+
<eHistory.16>9923003</eHistory.16>
|
428
|
+
<eHistory.17>3117005</eHistory.17>
|
429
|
+
<eHistory.17>3117003</eHistory.17>
|
430
|
+
<eHistory.18>3118011</eHistory.18>
|
431
|
+
<eHistory.19>2013-10-02T14:00:50+07:00</eHistory.19></eHistory>
|
432
|
+
<eNarrative>
|
433
|
+
<eNarrative.01>t</eNarrative.01></eNarrative>
|
434
|
+
<eVitals>
|
435
|
+
<eVitals.VitalGroup>
|
436
|
+
<eVitals.01>2013-10-02T14:00:50+07:00</eVitals.01>
|
437
|
+
<eVitals.02>9923001</eVitals.02>
|
438
|
+
<eVitals.CardiacRhythmGroup>
|
439
|
+
<eVitals.03>9901057</eVitals.03>
|
440
|
+
<eVitals.03>9901005</eVitals.03>
|
441
|
+
<eVitals.04>3304005</eVitals.04>
|
442
|
+
<eVitals.05>3305007</eVitals.05>
|
443
|
+
<eVitals.05>3305003</eVitals.05>
|
444
|
+
<eVitals.05>3305001</eVitals.05></eVitals.CardiacRhythmGroup>
|
445
|
+
<eVitals.BloodPressureGroup>
|
446
|
+
<eVitals.06>429</eVitals.06>
|
447
|
+
<eVitals.07>p</eVitals.07>
|
448
|
+
<eVitals.08>3308001</eVitals.08>
|
449
|
+
<eVitals.09>333</eVitals.09></eVitals.BloodPressureGroup>
|
450
|
+
<eVitals.HeartRateGroup>
|
451
|
+
<eVitals.10>88</eVitals.10>
|
452
|
+
<eVitals.11>3311003</eVitals.11></eVitals.HeartRateGroup>
|
453
|
+
<eVitals.12>54</eVitals.12>
|
454
|
+
<eVitals.13>3313001</eVitals.13>
|
455
|
+
<eVitals.14>281</eVitals.14>
|
456
|
+
<eVitals.15>3315001</eVitals.15>
|
457
|
+
<eVitals.16>66</eVitals.16>
|
458
|
+
<eVitals.17>16</eVitals.17>
|
459
|
+
<eVitals.18>1808</eVitals.18>
|
460
|
+
<eVitals.GlasgowScoreGroup>
|
461
|
+
<eVitals.19>1</eVitals.19>
|
462
|
+
<eVitals.20>1</eVitals.20>
|
463
|
+
<eVitals.21>4</eVitals.21>
|
464
|
+
<eVitals.22>3322005</eVitals.22>
|
465
|
+
<eVitals.22>3322003</eVitals.22>
|
466
|
+
<eVitals.22>3322009</eVitals.22>
|
467
|
+
<eVitals.23>13</eVitals.23></eVitals.GlasgowScoreGroup>
|
468
|
+
<eVitals.TemperatureGroup>
|
469
|
+
<eVitals.24>3.0</eVitals.24>
|
470
|
+
<eVitals.25>3325001</eVitals.25></eVitals.TemperatureGroup>
|
471
|
+
<eVitals.26>3326003</eVitals.26>
|
472
|
+
<eVitals.PainScaleGroup>
|
473
|
+
<eVitals.27>5</eVitals.27>
|
474
|
+
<eVitals.28>3328001</eVitals.28></eVitals.PainScaleGroup>
|
475
|
+
<eVitals.StrokeScaleGroup>
|
476
|
+
<eVitals.29>3329005</eVitals.29>
|
477
|
+
<eVitals.30>3330003</eVitals.30></eVitals.StrokeScaleGroup>
|
478
|
+
<eVitals.31>3331001</eVitals.31>
|
479
|
+
<eVitals.32>1</eVitals.32>
|
480
|
+
<eVitals.33>5</eVitals.33></eVitals.VitalGroup>
|
481
|
+
<eVitals.VitalGroup>
|
482
|
+
<eVitals.01>2013-10-02T14:00:50+07:00</eVitals.01>
|
483
|
+
<eVitals.02>9923003</eVitals.02>
|
484
|
+
<eVitals.CardiacRhythmGroup>
|
485
|
+
<eVitals.03>9901037</eVitals.03>
|
486
|
+
<eVitals.03>9901047</eVitals.03>
|
487
|
+
<eVitals.04>3304009</eVitals.04>
|
488
|
+
<eVitals.05>3305003</eVitals.05>
|
489
|
+
<eVitals.05>3305007</eVitals.05></eVitals.CardiacRhythmGroup>
|
490
|
+
<eVitals.BloodPressureGroup>
|
491
|
+
<eVitals.06>425</eVitals.06>
|
492
|
+
<eVitals.07>P</eVitals.07>
|
493
|
+
<eVitals.08>3308007</eVitals.08>
|
494
|
+
<eVitals.09>406</eVitals.09></eVitals.BloodPressureGroup>
|
495
|
+
<eVitals.HeartRateGroup>
|
496
|
+
<eVitals.10>261</eVitals.10>
|
497
|
+
<eVitals.11>3311007</eVitals.11></eVitals.HeartRateGroup>
|
498
|
+
<eVitals.12>45</eVitals.12>
|
499
|
+
<eVitals.13>3313003</eVitals.13>
|
500
|
+
<eVitals.14>30</eVitals.14>
|
501
|
+
<eVitals.15>3315003</eVitals.15>
|
502
|
+
<eVitals.16>86</eVitals.16>
|
503
|
+
<eVitals.17>22</eVitals.17>
|
504
|
+
<eVitals.18>1360</eVitals.18>
|
505
|
+
<eVitals.GlasgowScoreGroup>
|
506
|
+
<eVitals.19>4</eVitals.19>
|
507
|
+
<eVitals.20>1</eVitals.20>
|
508
|
+
<eVitals.21>1</eVitals.21>
|
509
|
+
<eVitals.22>3322007</eVitals.22>
|
510
|
+
<eVitals.22>3322005</eVitals.22>
|
511
|
+
<eVitals.22>3322001</eVitals.22>
|
512
|
+
<eVitals.23>6</eVitals.23></eVitals.GlasgowScoreGroup>
|
513
|
+
<eVitals.TemperatureGroup>
|
514
|
+
<eVitals.24>0.0</eVitals.24>
|
515
|
+
<eVitals.25>3325013</eVitals.25></eVitals.TemperatureGroup>
|
516
|
+
<eVitals.26>3326001</eVitals.26>
|
517
|
+
<eVitals.PainScaleGroup>
|
518
|
+
<eVitals.27>0</eVitals.27>
|
519
|
+
<eVitals.28>3328007</eVitals.28></eVitals.PainScaleGroup>
|
520
|
+
<eVitals.StrokeScaleGroup>
|
521
|
+
<eVitals.29>3329003</eVitals.29>
|
522
|
+
<eVitals.30>3330003</eVitals.30></eVitals.StrokeScaleGroup>
|
523
|
+
<eVitals.31>3331003</eVitals.31>
|
524
|
+
<eVitals.32>8</eVitals.32>
|
525
|
+
<eVitals.33>4</eVitals.33></eVitals.VitalGroup></eVitals>
|
526
|
+
<eLabs>
|
527
|
+
<eLabs.LabGroup>
|
528
|
+
<eLabs.01>2013-10-02T14:00:50+07:00</eLabs.01>
|
529
|
+
<eLabs.02>9923001</eLabs.02>
|
530
|
+
<eLabs.LabResultGroup>
|
531
|
+
<eLabs.03>3403085</eLabs.03>
|
532
|
+
<eLabs.04>D</eLabs.04></eLabs.LabResultGroup>
|
533
|
+
<eLabs.LabResultGroup>
|
534
|
+
<eLabs.03>3403019</eLabs.03>
|
535
|
+
<eLabs.04>Z</eLabs.04></eLabs.LabResultGroup>
|
536
|
+
<eLabs.LabImageGroup>
|
537
|
+
<eLabs.05>3405009</eLabs.05>
|
538
|
+
<eLabs.06>3uQ</eLabs.06>
|
539
|
+
<eLabs.WaveformGraphicGroup>
|
540
|
+
<eLabs.07>s</eLabs.07>
|
541
|
+
<eLabs.08>Q0h2ZXRnYlNaQnRuY3o4d3NUZ1JTSUxiTVBvQTBUYktDU0RNajBWWjhCV0Z5MzBVcW0=</eLabs.08></eLabs.WaveformGraphicGroup>
|
542
|
+
<eLabs.WaveformGraphicGroup>
|
543
|
+
<eLabs.07>b</eLabs.07>
|
544
|
+
<eLabs.08>NW9zYTg0Nm9pR1hnMkJqWmgxNWxXc3pzZkREZnZWOHFRZW1jQXhUa1VxUzJKWTAxM3Q=</eLabs.08></eLabs.WaveformGraphicGroup></eLabs.LabImageGroup>
|
545
|
+
<eLabs.LabImageGroup>
|
546
|
+
<eLabs.05>3405009</eLabs.05>
|
547
|
+
<eLabs.06>i4Z</eLabs.06>
|
548
|
+
<eLabs.WaveformGraphicGroup>
|
549
|
+
<eLabs.07>D</eLabs.07>
|
550
|
+
<eLabs.08>SHRqZGhvckRLcWNlUFBKaUF4MHprSHI0TE5Fb0F1SkhtWVNrbnFBbjRMSUNhT3JWY3Y=</eLabs.08></eLabs.WaveformGraphicGroup>
|
551
|
+
<eLabs.WaveformGraphicGroup>
|
552
|
+
<eLabs.07>Q</eLabs.07>
|
553
|
+
<eLabs.08>VnBLS1dHM2d4c0I5MzloN0NaaU5wcDcxZ1N1dzRKN21GRUJYd3dDaGxQNmhjczZoMG0=</eLabs.08></eLabs.WaveformGraphicGroup>
|
554
|
+
<eLabs.WaveformGraphicGroup>
|
555
|
+
<eLabs.07>w</eLabs.07>
|
556
|
+
<eLabs.08>b29RaVZUUTZtNnNTak1vRldoanZmcTdxSVRraFg0SURXM2dWamEzYzhEdk9WQUdjdnU=</eLabs.08></eLabs.WaveformGraphicGroup></eLabs.LabImageGroup></eLabs.LabGroup>
|
557
|
+
<eLabs.LabGroup>
|
558
|
+
<eLabs.01>2013-10-02T14:00:50+07:00</eLabs.01>
|
559
|
+
<eLabs.02>9923003</eLabs.02>
|
560
|
+
<eLabs.LabResultGroup>
|
561
|
+
<eLabs.03>3403037</eLabs.03>
|
562
|
+
<eLabs.04>h</eLabs.04></eLabs.LabResultGroup>
|
563
|
+
<eLabs.LabResultGroup>
|
564
|
+
<eLabs.03>3403059</eLabs.03>
|
565
|
+
<eLabs.04>q</eLabs.04></eLabs.LabResultGroup>
|
566
|
+
<eLabs.LabImageGroup>
|
567
|
+
<eLabs.05>3405011</eLabs.05>
|
568
|
+
<eLabs.06>wdI</eLabs.06>
|
569
|
+
<eLabs.WaveformGraphicGroup>
|
570
|
+
<eLabs.07>Q</eLabs.07>
|
571
|
+
<eLabs.08>MlpCb2thWk9CUlhvRXc1bDBYTkdPTUJEclFGTGhIUkhISGRGblVEc2I1VlpiQUJ3VmI=</eLabs.08></eLabs.WaveformGraphicGroup>
|
572
|
+
<eLabs.WaveformGraphicGroup>
|
573
|
+
<eLabs.07>x</eLabs.07>
|
574
|
+
<eLabs.08>ZXVaYVE0dUNtcWhkYmQ3V3BYRU1obG5Sa1dpYzl3QXhmWTluUjZWVFBsb0owT3RkVzM=</eLabs.08></eLabs.WaveformGraphicGroup></eLabs.LabImageGroup>
|
575
|
+
<eLabs.LabImageGroup>
|
576
|
+
<eLabs.05>3405003</eLabs.05>
|
577
|
+
<eLabs.06>KuR</eLabs.06>
|
578
|
+
<eLabs.WaveformGraphicGroup>
|
579
|
+
<eLabs.07>k</eLabs.07>
|
580
|
+
<eLabs.08>REJQQm1WVEpscWJGWmpLaVgzQ1RDMlVZQmRCb0YzZHJUYjFpbkNRTzRhbmN5Z3pzaEY=</eLabs.08></eLabs.WaveformGraphicGroup>
|
581
|
+
<eLabs.WaveformGraphicGroup>
|
582
|
+
<eLabs.07>o</eLabs.07>
|
583
|
+
<eLabs.08>YVJsRFVFZTN5THFUU0diWURoYm9xQzRsREZydDdRVXVRMU0xcXVRRVhCY3dpQlhPV0g=</eLabs.08></eLabs.WaveformGraphicGroup>
|
584
|
+
<eLabs.WaveformGraphicGroup>
|
585
|
+
<eLabs.07>U</eLabs.07>
|
586
|
+
<eLabs.08>am5ZMVFDSTFPelFrUFdzTU5nM0lEY0dLVUZScmZCV3FWTU5qN3RNd3RrMXM5NHVpYng=</eLabs.08></eLabs.WaveformGraphicGroup></eLabs.LabImageGroup>
|
587
|
+
<eLabs.LabImageGroup>
|
588
|
+
<eLabs.05>3405001</eLabs.05>
|
589
|
+
<eLabs.06>mof</eLabs.06>
|
590
|
+
<eLabs.WaveformGraphicGroup>
|
591
|
+
<eLabs.07>R</eLabs.07>
|
592
|
+
<eLabs.08>aENablRKZVRxSDJoM09WeVNBWTE1MFZuSUF0blRXM2x4UkhiOHFSVDEzTzRwQzBYSGE=</eLabs.08></eLabs.WaveformGraphicGroup>
|
593
|
+
<eLabs.WaveformGraphicGroup>
|
594
|
+
<eLabs.07>R</eLabs.07>
|
595
|
+
<eLabs.08>NWdmaG1xUGhkRmlmTExUQm1FbzdMa2txT3BISTY0ZktqbkpvTDVFbFNFSzlOOVBhN3I=</eLabs.08></eLabs.WaveformGraphicGroup></eLabs.LabImageGroup></eLabs.LabGroup></eLabs>
|
596
|
+
<eExam>
|
597
|
+
<eExam.01>191.1</eExam.01>
|
598
|
+
<eExam.02>3502015</eExam.02>
|
599
|
+
<eExam.AssessmentGroup>
|
600
|
+
<eExam.03>2013-10-02T14:00:50+07:00</eExam.03>
|
601
|
+
<eExam.04>3504005</eExam.04>
|
602
|
+
<eExam.04>3504027</eExam.04>
|
603
|
+
<eExam.04>3504013</eExam.04>
|
604
|
+
<eExam.05>3505025</eExam.05>
|
605
|
+
<eExam.05>3505039</eExam.05>
|
606
|
+
<eExam.06>3506015</eExam.06>
|
607
|
+
<eExam.06>3506029</eExam.06>
|
608
|
+
<eExam.06>3506031</eExam.06>
|
609
|
+
<eExam.07>3507025</eExam.07>
|
610
|
+
<eExam.07>3507027</eExam.07>
|
611
|
+
<eExam.07>3507023</eExam.07>
|
612
|
+
<eExam.08>3508013</eExam.08>
|
613
|
+
<eExam.08>3508103</eExam.08>
|
614
|
+
<eExam.09>3509009</eExam.09>
|
615
|
+
<eExam.09>3509013</eExam.09>
|
616
|
+
<eExam.09>3509017</eExam.09>
|
617
|
+
<eExam.AbdomenGroup>
|
618
|
+
<eExam.10>3510011</eExam.10>
|
619
|
+
<eExam.11>3511039</eExam.11>
|
620
|
+
<eExam.11>3511051</eExam.11>
|
621
|
+
<eExam.11>3511001</eExam.11></eExam.AbdomenGroup>
|
622
|
+
<eExam.AbdomenGroup>
|
623
|
+
<eExam.10>3510007</eExam.10>
|
624
|
+
<eExam.11>3511059</eExam.11>
|
625
|
+
<eExam.11>3511003</eExam.11>
|
626
|
+
<eExam.11>3511057</eExam.11></eExam.AbdomenGroup>
|
627
|
+
<eExam.AbdomenGroup>
|
628
|
+
<eExam.10>3510001</eExam.10>
|
629
|
+
<eExam.11>3511039</eExam.11>
|
630
|
+
<eExam.11>3511057</eExam.11>
|
631
|
+
<eExam.11>3511029</eExam.11></eExam.AbdomenGroup>
|
632
|
+
<eExam.12>3512003</eExam.12>
|
633
|
+
<eExam.12>3512035</eExam.12>
|
634
|
+
<eExam.SpineGroup>
|
635
|
+
<eExam.13>3513017</eExam.13>
|
636
|
+
<eExam.14>3514001</eExam.14>
|
637
|
+
<eExam.14>3514049</eExam.14>
|
638
|
+
<eExam.14>3514009</eExam.14></eExam.SpineGroup>
|
639
|
+
<eExam.SpineGroup>
|
640
|
+
<eExam.13>3513019</eExam.13>
|
641
|
+
<eExam.14>3514043</eExam.14>
|
642
|
+
<eExam.14>3514027</eExam.14></eExam.SpineGroup>
|
643
|
+
<eExam.ExtremityGroup>
|
644
|
+
<eExam.15>3515019</eExam.15>
|
645
|
+
<eExam.16>3516053</eExam.16>
|
646
|
+
<eExam.16>3516039</eExam.16>
|
647
|
+
<eExam.16>3516079</eExam.16></eExam.ExtremityGroup>
|
648
|
+
<eExam.ExtremityGroup>
|
649
|
+
<eExam.15>3515069</eExam.15>
|
650
|
+
<eExam.16>3516069</eExam.16>
|
651
|
+
<eExam.16>3516061</eExam.16>
|
652
|
+
<eExam.16>3516031</eExam.16></eExam.ExtremityGroup>
|
653
|
+
<eExam.ExtremityGroup>
|
654
|
+
<eExam.15>3515087</eExam.15>
|
655
|
+
<eExam.16>3516013</eExam.16>
|
656
|
+
<eExam.16>3516021</eExam.16>
|
657
|
+
<eExam.16>3516035</eExam.16></eExam.ExtremityGroup>
|
658
|
+
<eExam.EyeGroup>
|
659
|
+
<eExam.17>3517005</eExam.17>
|
660
|
+
<eExam.18>3518019</eExam.18>
|
661
|
+
<eExam.18>3518047</eExam.18></eExam.EyeGroup>
|
662
|
+
<eExam.EyeGroup>
|
663
|
+
<eExam.17>3517005</eExam.17>
|
664
|
+
<eExam.18>3518013</eExam.18>
|
665
|
+
<eExam.18>3518005</eExam.18></eExam.EyeGroup>
|
666
|
+
<eExam.19>3519019</eExam.19>
|
667
|
+
<eExam.19>3519001</eExam.19>
|
668
|
+
<eExam.19>3519017</eExam.19>
|
669
|
+
<eExam.20>3520013</eExam.20>
|
670
|
+
<eExam.20>3520009</eExam.20></eExam.AssessmentGroup>
|
671
|
+
<eExam.AssessmentGroup>
|
672
|
+
<eExam.03>2013-10-02T14:00:50+07:00</eExam.03>
|
673
|
+
<eExam.04>3504033</eExam.04>
|
674
|
+
<eExam.04>3504007</eExam.04>
|
675
|
+
<eExam.05>3505033</eExam.05>
|
676
|
+
<eExam.05>3505015</eExam.05>
|
677
|
+
<eExam.05>3505021</eExam.05>
|
678
|
+
<eExam.06>3506029</eExam.06>
|
679
|
+
<eExam.06>3506001</eExam.06>
|
680
|
+
<eExam.07>3507031</eExam.07>
|
681
|
+
<eExam.07>3507045</eExam.07>
|
682
|
+
<eExam.07>3507059</eExam.07>
|
683
|
+
<eExam.08>3508089</eExam.08>
|
684
|
+
<eExam.08>3508037</eExam.08>
|
685
|
+
<eExam.09>3509009</eExam.09>
|
686
|
+
<eExam.09>3509019</eExam.09>
|
687
|
+
<eExam.AbdomenGroup>
|
688
|
+
<eExam.10>3510001</eExam.10>
|
689
|
+
<eExam.11>3511017</eExam.11>
|
690
|
+
<eExam.11>3511025</eExam.11>
|
691
|
+
<eExam.11>3511035</eExam.11></eExam.AbdomenGroup>
|
692
|
+
<eExam.AbdomenGroup>
|
693
|
+
<eExam.10>3510001</eExam.10>
|
694
|
+
<eExam.11>3511017</eExam.11>
|
695
|
+
<eExam.11>3511039</eExam.11>
|
696
|
+
<eExam.11>3511001</eExam.11></eExam.AbdomenGroup>
|
697
|
+
<eExam.12>3512017</eExam.12>
|
698
|
+
<eExam.12>3512015</eExam.12>
|
699
|
+
<eExam.SpineGroup>
|
700
|
+
<eExam.13>3513009</eExam.13>
|
701
|
+
<eExam.14>3514027</eExam.14>
|
702
|
+
<eExam.14>3514033</eExam.14></eExam.SpineGroup>
|
703
|
+
<eExam.SpineGroup>
|
704
|
+
<eExam.13>3513017</eExam.13>
|
705
|
+
<eExam.14>3514023</eExam.14>
|
706
|
+
<eExam.14>3514025</eExam.14></eExam.SpineGroup>
|
707
|
+
<eExam.SpineGroup>
|
708
|
+
<eExam.13>3513011</eExam.13>
|
709
|
+
<eExam.14>3514015</eExam.14>
|
710
|
+
<eExam.14>3514003</eExam.14>
|
711
|
+
<eExam.14>3514045</eExam.14></eExam.SpineGroup>
|
712
|
+
<eExam.ExtremityGroup>
|
713
|
+
<eExam.15>3515051</eExam.15>
|
714
|
+
<eExam.16>3516031</eExam.16>
|
715
|
+
<eExam.16>3516015</eExam.16></eExam.ExtremityGroup>
|
716
|
+
<eExam.ExtremityGroup>
|
717
|
+
<eExam.15>3515013</eExam.15>
|
718
|
+
<eExam.16>3516043</eExam.16>
|
719
|
+
<eExam.16>3516069</eExam.16>
|
720
|
+
<eExam.16>3516013</eExam.16></eExam.ExtremityGroup>
|
721
|
+
<eExam.ExtremityGroup>
|
722
|
+
<eExam.15>3515077</eExam.15>
|
723
|
+
<eExam.16>3516047</eExam.16>
|
724
|
+
<eExam.16>3516035</eExam.16></eExam.ExtremityGroup>
|
725
|
+
<eExam.EyeGroup>
|
726
|
+
<eExam.17>3517005</eExam.17>
|
727
|
+
<eExam.18>3518053</eExam.18>
|
728
|
+
<eExam.18>3518007</eExam.18>
|
729
|
+
<eExam.18>3518017</eExam.18></eExam.EyeGroup>
|
730
|
+
<eExam.EyeGroup>
|
731
|
+
<eExam.17>3517005</eExam.17>
|
732
|
+
<eExam.18>3518001</eExam.18>
|
733
|
+
<eExam.18>3518049</eExam.18></eExam.EyeGroup>
|
734
|
+
<eExam.EyeGroup>
|
735
|
+
<eExam.17>3517003</eExam.17>
|
736
|
+
<eExam.18>3518047</eExam.18>
|
737
|
+
<eExam.18>3518039</eExam.18></eExam.EyeGroup>
|
738
|
+
<eExam.19>3519011</eExam.19>
|
739
|
+
<eExam.19>3519019</eExam.19>
|
740
|
+
<eExam.20>3520011</eExam.20>
|
741
|
+
<eExam.20>3520005</eExam.20>
|
742
|
+
<eExam.20>3520037</eExam.20></eExam.AssessmentGroup></eExam>
|
743
|
+
<eProtocols>
|
744
|
+
<eProtocols.ProtocolGroup>
|
745
|
+
<eProtocols.01>9914061</eProtocols.01>
|
746
|
+
<eProtocols.02>3602003</eProtocols.02></eProtocols.ProtocolGroup>
|
747
|
+
<eProtocols.ProtocolGroup>
|
748
|
+
<eProtocols.01>9914095</eProtocols.01>
|
749
|
+
<eProtocols.02>3602003</eProtocols.02></eProtocols.ProtocolGroup></eProtocols>
|
750
|
+
<eMedications>
|
751
|
+
<eMedications.MedicationGroup>
|
752
|
+
<eMedications.01>2013-10-02T14:00:50+07:00</eMedications.01>
|
753
|
+
<eMedications.02>9923003</eMedications.02>
|
754
|
+
<eMedications.03>1296230</eMedications.03>
|
755
|
+
<eMedications.04>9927059</eMedications.04>
|
756
|
+
<eMedications.DosageGroup>
|
757
|
+
<eMedications.05>716.0</eMedications.05>
|
758
|
+
<eMedications.06>3706019</eMedications.06></eMedications.DosageGroup>
|
759
|
+
<eMedications.07>9916001</eMedications.07>
|
760
|
+
<eMedications.08>3708027</eMedications.08>
|
761
|
+
<eMedications.08>3708021</eMedications.08>
|
762
|
+
<eMedications.09>k4</eMedications.09>
|
763
|
+
<eMedications.10>9905015</eMedications.10>
|
764
|
+
<eMedications.11>9918005</eMedications.11>
|
765
|
+
<eMedications.12>R</eMedications.12></eMedications.MedicationGroup>
|
766
|
+
<eMedications.MedicationGroup>
|
767
|
+
<eMedications.01>2013-10-02T14:00:50+07:00</eMedications.01>
|
768
|
+
<eMedications.02>9923003</eMedications.02>
|
769
|
+
<eMedications.03>486499</eMedications.03>
|
770
|
+
<eMedications.04>9927003</eMedications.04>
|
771
|
+
<eMedications.DosageGroup>
|
772
|
+
<eMedications.05>364.0</eMedications.05>
|
773
|
+
<eMedications.06>3706015</eMedications.06></eMedications.DosageGroup>
|
774
|
+
<eMedications.07>9916003</eMedications.07>
|
775
|
+
<eMedications.08>3708029</eMedications.08>
|
776
|
+
<eMedications.08>3708003</eMedications.08>
|
777
|
+
<eMedications.08>3708033</eMedications.08>
|
778
|
+
<eMedications.09>nN</eMedications.09>
|
779
|
+
<eMedications.10>9905025</eMedications.10>
|
780
|
+
<eMedications.11>9918005</eMedications.11>
|
781
|
+
<eMedications.12>a</eMedications.12></eMedications.MedicationGroup></eMedications>
|
782
|
+
<eProcedures>
|
783
|
+
<eProcedures.ProcedureGroup>
|
784
|
+
<eProcedures.01>2013-10-02T14:00:50+07:00</eProcedures.01>
|
785
|
+
<eProcedures.02>9923003</eProcedures.02>
|
786
|
+
<eProcedures.03>816357053</eProcedures.03>
|
787
|
+
<eProcedures.04>L</eProcedures.04>
|
788
|
+
<eProcedures.05>3</eProcedures.05>
|
789
|
+
<eProcedures.06>9923003</eProcedures.06>
|
790
|
+
<eProcedures.07>3907007</eProcedures.07>
|
791
|
+
<eProcedures.07>3907025</eProcedures.07>
|
792
|
+
<eProcedures.07>3907015</eProcedures.07>
|
793
|
+
<eProcedures.08>9916001</eProcedures.08>
|
794
|
+
<eProcedures.09>0I</eProcedures.09>
|
795
|
+
<eProcedures.10>9905023</eProcedures.10>
|
796
|
+
<eProcedures.11>9918007</eProcedures.11>
|
797
|
+
<eProcedures.12>l</eProcedures.12>
|
798
|
+
<eProcedures.13>3913067</eProcedures.13></eProcedures.ProcedureGroup>
|
799
|
+
<eProcedures.ProcedureGroup>
|
800
|
+
<eProcedures.01>2013-10-02T14:00:50+07:00</eProcedures.01>
|
801
|
+
<eProcedures.02>9923003</eProcedures.02>
|
802
|
+
<eProcedures.03>47458235</eProcedures.03>
|
803
|
+
<eProcedures.04>n</eProcedures.04>
|
804
|
+
<eProcedures.05>2</eProcedures.05>
|
805
|
+
<eProcedures.06>9923001</eProcedures.06>
|
806
|
+
<eProcedures.07>3907005</eProcedures.07>
|
807
|
+
<eProcedures.07>3907035</eProcedures.07>
|
808
|
+
<eProcedures.07>3907031</eProcedures.07>
|
809
|
+
<eProcedures.08>9916003</eProcedures.08>
|
810
|
+
<eProcedures.09>Vi</eProcedures.09>
|
811
|
+
<eProcedures.10>9905007</eProcedures.10>
|
812
|
+
<eProcedures.11>9918005</eProcedures.11>
|
813
|
+
<eProcedures.12>N</eProcedures.12>
|
814
|
+
<eProcedures.13>3913037</eProcedures.13></eProcedures.ProcedureGroup></eProcedures>
|
815
|
+
<eAirway>
|
816
|
+
<eAirway.AirwayGroup>
|
817
|
+
<eAirway.01>4001013</eAirway.01>
|
818
|
+
<eAirway.01>4001009</eAirway.01>
|
819
|
+
<eAirway.ConfirmationGroup ProcedureGroupCorrelationID="t">
|
820
|
+
<eAirway.02>2013-10-02T14:00:50+07:00</eAirway.02>
|
821
|
+
<eAirway.03>4003009</eAirway.03>
|
822
|
+
<eAirway.04>4004017</eAirway.04>
|
823
|
+
<eAirway.04>4004001</eAirway.04>
|
824
|
+
<eAirway.04>4004005</eAirway.04>
|
825
|
+
<eAirway.05>28</eAirway.05>
|
826
|
+
<eAirway.06>4006001</eAirway.06>
|
827
|
+
<eAirway.07>zq</eAirway.07>
|
828
|
+
<eAirway.08>4008019</eAirway.08>
|
829
|
+
<eAirway.08>4008017</eAirway.08>
|
830
|
+
<eAirway.08>4008021</eAirway.08>
|
831
|
+
<eAirway.09>4009019</eAirway.09>
|
832
|
+
<eAirway.09>4009001</eAirway.09></eAirway.ConfirmationGroup>
|
833
|
+
<eAirway.ConfirmationGroup ProcedureGroupCorrelationID="P">
|
834
|
+
<eAirway.02>2013-10-02T14:00:50+07:00</eAirway.02>
|
835
|
+
<eAirway.03>4003005</eAirway.03>
|
836
|
+
<eAirway.04>4004003</eAirway.04>
|
837
|
+
<eAirway.04>4004015</eAirway.04>
|
838
|
+
<eAirway.05>10</eAirway.05>
|
839
|
+
<eAirway.06>4006007</eAirway.06>
|
840
|
+
<eAirway.07>LF</eAirway.07>
|
841
|
+
<eAirway.08>4008019</eAirway.08>
|
842
|
+
<eAirway.08>4008013</eAirway.08>
|
843
|
+
<eAirway.08>4008017</eAirway.08>
|
844
|
+
<eAirway.09>4009009</eAirway.09>
|
845
|
+
<eAirway.09>4009003</eAirway.09></eAirway.ConfirmationGroup>
|
846
|
+
<eAirway.ConfirmationGroup ProcedureGroupCorrelationID="O">
|
847
|
+
<eAirway.02>2013-10-02T14:00:50+07:00</eAirway.02>
|
848
|
+
<eAirway.03>4003007</eAirway.03>
|
849
|
+
<eAirway.04>4004017</eAirway.04>
|
850
|
+
<eAirway.04>4004011</eAirway.04>
|
851
|
+
<eAirway.05>19</eAirway.05>
|
852
|
+
<eAirway.06>4006001</eAirway.06>
|
853
|
+
<eAirway.07>WN</eAirway.07>
|
854
|
+
<eAirway.08>4008023</eAirway.08>
|
855
|
+
<eAirway.08>4008021</eAirway.08>
|
856
|
+
<eAirway.09>4009013</eAirway.09>
|
857
|
+
<eAirway.09>4009017</eAirway.09>
|
858
|
+
<eAirway.09>4009011</eAirway.09></eAirway.ConfirmationGroup>
|
859
|
+
<eAirway.10>2013-10-02T14:00:50+07:00</eAirway.10>
|
860
|
+
<eAirway.11>2013-10-02T14:00:50+07:00</eAirway.11></eAirway.AirwayGroup></eAirway>
|
861
|
+
<eDevice>
|
862
|
+
<eDevice.DeviceGroup>
|
863
|
+
<eDevice.01>ut</eDevice.01>
|
864
|
+
<eDevice.02>2013-10-02T14:00:50+07:00</eDevice.02>
|
865
|
+
<eDevice.03>4103043</eDevice.03>
|
866
|
+
<eDevice.03>4103027</eDevice.03>
|
867
|
+
<eDevice.WaveformGroup>
|
868
|
+
<eDevice.04>o</eDevice.04>
|
869
|
+
<eDevice.05>OTFlcXk2MndzWU5zcmZFM2NZaDlCd0NJRm1jcHpGZzRsSGoxRkM4RHVkTHIxNEpoNnk=</eDevice.05>
|
870
|
+
<eDevice.06>4106013</eDevice.06></eDevice.WaveformGroup>
|
871
|
+
<eDevice.07>4107035</eDevice.07>
|
872
|
+
<eDevice.07>4107009</eDevice.07>
|
873
|
+
<eDevice.07>4107029</eDevice.07>
|
874
|
+
<eDevice.08>U</eDevice.08>
|
875
|
+
<eDevice.ShockGroup>
|
876
|
+
<eDevice.09>4109001</eDevice.09>
|
877
|
+
<eDevice.10>4977.0</eDevice.10>
|
878
|
+
<eDevice.11>36</eDevice.11>
|
879
|
+
<eDevice.12>93</eDevice.12></eDevice.ShockGroup></eDevice.DeviceGroup>
|
880
|
+
<eDevice.DeviceGroup>
|
881
|
+
<eDevice.01>JD</eDevice.01>
|
882
|
+
<eDevice.02>2013-10-02T14:00:50+07:00</eDevice.02>
|
883
|
+
<eDevice.03>4103031</eDevice.03>
|
884
|
+
<eDevice.03>4103003</eDevice.03>
|
885
|
+
<eDevice.03>4103047</eDevice.03>
|
886
|
+
<eDevice.WaveformGroup>
|
887
|
+
<eDevice.04>r</eDevice.04>
|
888
|
+
<eDevice.05>eDI5cmdWUUFBWFJSTlg1R1pSZ25qcHZHbk5oTjZqcmJoZ2FRWTdXZ0hRM1Y3c1BBYjQ=</eDevice.05>
|
889
|
+
<eDevice.06>4106001</eDevice.06></eDevice.WaveformGroup>
|
890
|
+
<eDevice.07>4107033</eDevice.07>
|
891
|
+
<eDevice.07>4107013</eDevice.07>
|
892
|
+
<eDevice.08>F</eDevice.08>
|
893
|
+
<eDevice.ShockGroup>
|
894
|
+
<eDevice.09>4109003</eDevice.09>
|
895
|
+
<eDevice.10>8485.0</eDevice.10>
|
896
|
+
<eDevice.11>19</eDevice.11>
|
897
|
+
<eDevice.12>591</eDevice.12></eDevice.ShockGroup></eDevice.DeviceGroup></eDevice>
|
898
|
+
<eDisposition>
|
899
|
+
<eDisposition.DestinationGroup>
|
900
|
+
<eDisposition.01>x6</eDisposition.01>
|
901
|
+
<eDisposition.02>H3</eDisposition.02>
|
902
|
+
<eDisposition.03 StreetAddress2="z">t</eDisposition.03>
|
903
|
+
<eDisposition.04>58585</eDisposition.04>
|
904
|
+
<eDisposition.05>49</eDisposition.05>
|
905
|
+
<eDisposition.06>49035</eDisposition.06>
|
906
|
+
<eDisposition.07>84092</eDisposition.07>
|
907
|
+
<eDisposition.08>US</eDisposition.08>
|
908
|
+
<eDisposition.09>40.566960,-111.814560</eDisposition.09>
|
909
|
+
<eDisposition.10>15TLD26464481</eDisposition.10></eDisposition.DestinationGroup>
|
910
|
+
<eDisposition.11>60</eDisposition.11>
|
911
|
+
<eDisposition.12>4212019</eDisposition.12>
|
912
|
+
<eDisposition.13>9909011</eDisposition.13>
|
913
|
+
<eDisposition.13>9909003</eDisposition.13>
|
914
|
+
<eDisposition.13>9909007</eDisposition.13>
|
915
|
+
<eDisposition.14>4214019</eDisposition.14>
|
916
|
+
<eDisposition.14>4214003</eDisposition.14>
|
917
|
+
<eDisposition.15>9909013</eDisposition.15>
|
918
|
+
<eDisposition.16>4216011</eDisposition.16>
|
919
|
+
<eDisposition.17>4217003</eDisposition.17>
|
920
|
+
<eDisposition.18>4218007</eDisposition.18>
|
921
|
+
<eDisposition.18>4218005</eDisposition.18>
|
922
|
+
<eDisposition.19>9916001</eDisposition.19>
|
923
|
+
<eDisposition.20>4220019</eDisposition.20>
|
924
|
+
<eDisposition.20>4220017</eDisposition.20>
|
925
|
+
<eDisposition.20>4220009</eDisposition.20>
|
926
|
+
<eDisposition.21>4221001</eDisposition.21>
|
927
|
+
<eDisposition.22>4222049</eDisposition.22>
|
928
|
+
<eDisposition.23>9908021</eDisposition.23>
|
929
|
+
<eDisposition.HospitalTeamActivationGroup>
|
930
|
+
<eDisposition.24>4224011</eDisposition.24>
|
931
|
+
<eDisposition.25>2013-10-02T14:00:50+07:00</eDisposition.25></eDisposition.HospitalTeamActivationGroup>
|
932
|
+
<eDisposition.HospitalTeamActivationGroup>
|
933
|
+
<eDisposition.24>4224013</eDisposition.24>
|
934
|
+
<eDisposition.25>2013-10-02T14:00:50+07:00</eDisposition.25></eDisposition.HospitalTeamActivationGroup>
|
935
|
+
<eDisposition.26>4226001</eDisposition.26>
|
936
|
+
<eDisposition.26>4226005</eDisposition.26></eDisposition>
|
937
|
+
<eOutcome>
|
938
|
+
<eOutcome.01>63</eOutcome.01>
|
939
|
+
<eOutcome.02>66</eOutcome.02>
|
940
|
+
<eOutcome.ExternalDataGroup>
|
941
|
+
<eOutcome.03>4303023</eOutcome.03>
|
942
|
+
<eOutcome.04>NF</eOutcome.04>
|
943
|
+
<eOutcome.05>w4</eOutcome.05></eOutcome.ExternalDataGroup>
|
944
|
+
<eOutcome.ExternalDataGroup>
|
945
|
+
<eOutcome.03>4303011</eOutcome.03>
|
946
|
+
<eOutcome.04>aE</eOutcome.04>
|
947
|
+
<eOutcome.05>D8</eOutcome.05></eOutcome.ExternalDataGroup>
|
948
|
+
<eOutcome.06>o3</eOutcome.06>
|
949
|
+
<eOutcome.07>352</eOutcome.07>
|
950
|
+
<eOutcome.08>Y92.21</eOutcome.08>
|
951
|
+
<eOutcome.09>4764004</eOutcome.09>
|
952
|
+
<eOutcome.09>6536009</eOutcome.09>
|
953
|
+
<eOutcome.09>4670000</eOutcome.09>
|
954
|
+
<eOutcome.10>S73.102</eOutcome.10>
|
955
|
+
<eOutcome.10>V91.10</eOutcome.10>
|
956
|
+
<eOutcome.10>A04.1</eOutcome.10>
|
957
|
+
<eOutcome.11>2013-10-02T14:00:50+07:00</eOutcome.11>
|
958
|
+
<eOutcome.12>2386002</eOutcome.12>
|
959
|
+
<eOutcome.12>334003</eOutcome.12>
|
960
|
+
<eOutcome.12>5892005</eOutcome.12>
|
961
|
+
<eOutcome.13>E11.33</eOutcome.13>
|
962
|
+
<eOutcome.13>M85.532</eOutcome.13>
|
963
|
+
<eOutcome.14>224</eOutcome.14>
|
964
|
+
<eOutcome.15>133</eOutcome.15>
|
965
|
+
<eOutcome.16>2013-10-02T14:00:50+07:00</eOutcome.16>
|
966
|
+
<eOutcome.17>4317003</eOutcome.17></eOutcome>
|
967
|
+
<eOther>
|
968
|
+
<eOther.01>9923003</eOther.01>
|
969
|
+
<eOther.02>4502009</eOther.02>
|
970
|
+
<eOther.02>4502011</eOther.02>
|
971
|
+
<eOther.02>4502017</eOther.02>
|
972
|
+
<eOther.EMSCrewMemberGroup>
|
973
|
+
<eOther.03>4503019</eOther.03>
|
974
|
+
<eOther.03>4503013</eOther.03>
|
975
|
+
<eOther.03>4503011</eOther.03>
|
976
|
+
<eOther.04>66</eOther.04>
|
977
|
+
<eOther.05>9923003</eOther.05>
|
978
|
+
<eOther.06>4506001</eOther.06>
|
979
|
+
<eOther.06>4506027</eOther.06></eOther.EMSCrewMemberGroup>
|
980
|
+
<eOther.EMSCrewMemberGroup>
|
981
|
+
<eOther.03>4503013</eOther.03>
|
982
|
+
<eOther.03>4503019</eOther.03>
|
983
|
+
<eOther.03>4503007</eOther.03>
|
984
|
+
<eOther.04>mD</eOther.04>
|
985
|
+
<eOther.05>9923003</eOther.05>
|
986
|
+
<eOther.06>4506029</eOther.06>
|
987
|
+
<eOther.06>4506001</eOther.06>
|
988
|
+
<eOther.06>4506009</eOther.06></eOther.EMSCrewMemberGroup>
|
989
|
+
<eOther.07>4507015</eOther.07>
|
990
|
+
<eOther.07>4507019</eOther.07>
|
991
|
+
<eOther.08>Rg</eOther.08>
|
992
|
+
<eOther.FileGroup>
|
993
|
+
<eOther.09>4509017</eOther.09>
|
994
|
+
<eOther.10>3</eOther.10>
|
995
|
+
<eOther.11>MEIybHd4Ukk2aVdaTnBVZnRRZlFRSFozSkxtVXdjWmhuUDgxWWU0WWVRdXFNSTN1d3A=</eOther.11></eOther.FileGroup>
|
996
|
+
<eOther.FileGroup>
|
997
|
+
<eOther.09>4509017</eOther.09>
|
998
|
+
<eOther.10>l</eOther.10>
|
999
|
+
<eOther.11>MEloMEhla0FLOG5MdGQ4cERFMzBPYmhmU0pmOGNDcXFkd0NXNEFRaUx3dXFyemNBUWg=</eOther.11></eOther.FileGroup>
|
1000
|
+
<eOther.SignatureGroup>
|
1001
|
+
<eOther.12>4512007</eOther.12>
|
1002
|
+
<eOther.13>4513001</eOther.13>
|
1003
|
+
<eOther.14>4514045</eOther.14>
|
1004
|
+
<eOther.15>4515015</eOther.15>
|
1005
|
+
<eOther.16>aw8etxk3jnmb9GfpyN16omECTg68DerxoeyS6xcna8i3N1ifW46z29cWSGQonp5fWWgUZXjQeoTUcPHeI8UU4XcbzZZbDK2YlQqieVqKHchX2g46cIG8fz6gOaAPc6ArawBJDemV0h1uMwy5SThLBeUQNQSnIb1PQ23Rny4EPdKc4BY6wXV0ehRppL5s6zAN2uEnUEr59jrcMEyb4wRYSOk4WJKWJ4ZXKJ424U2LbcaIz6IQmQgOM3VWyxYTZbp</eOther.16>
|
1006
|
+
<eOther.17>I</eOther.17>
|
1007
|
+
<eOther.18>bFFwdjRpNHpUekJRaFZma3NlS21oTGszR2tIN3oxNlQ0QnFLOXJZWE1vZkpadGVkQUY=</eOther.18>
|
1008
|
+
<eOther.19>2013-10-02T14:00:50+07:00</eOther.19>
|
1009
|
+
<eOther.20>k</eOther.20>
|
1010
|
+
<eOther.21>V</eOther.21></eOther.SignatureGroup>
|
1011
|
+
<eOther.SignatureGroup>
|
1012
|
+
<eOther.12>4512017</eOther.12>
|
1013
|
+
<eOther.13>4513003</eOther.13>
|
1014
|
+
<eOther.14>4514019</eOther.14>
|
1015
|
+
<eOther.15>4515005</eOther.15>
|
1016
|
+
<eOther.16>etgmnNvnDxJRKOXxnq4l3vh9t7iYi5tJ3x0rBh8MCJrPozCHguOQ3kOeeyntVBkTLiLbDmuY3w2CxVAAZZJPifuC7piYahnXKEPmseZluTdM2l06LNEzvDh1RJjOiVSlIoQ7Pc9sSMkP8VV8rsidihOFgKtJQWaZsfEj2qeFFXv4Mgq3XPXI7qet2qtHOaRfJfzcF7j2G5wEUleiAdptyZG9uetyxxhr5FDMKptkFgzNPXTt1D46wUKdpRr3hHU</eOther.16>
|
1017
|
+
<eOther.17>f</eOther.17>
|
1018
|
+
<eOther.18>T0JoM2RYcDFFTmEzOHBTd0pwQnpXUTM1SUhtd2JaOUVCUWpTd3FjYmpkODVCcmE3Z28=</eOther.18>
|
1019
|
+
<eOther.19>2013-10-02T14:00:50+07:00</eOther.19>
|
1020
|
+
<eOther.20>j</eOther.20>
|
1021
|
+
<eOther.21>E</eOther.21></eOther.SignatureGroup>
|
1022
|
+
<eOther.SignatureGroup>
|
1023
|
+
<eOther.12>4512003</eOther.12>
|
1024
|
+
<eOther.13>4513007</eOther.13>
|
1025
|
+
<eOther.14>4514025</eOther.14>
|
1026
|
+
<eOther.15>4515013</eOther.15>
|
1027
|
+
<eOther.16>qLnq4njfI4GZvPFvjL9i27WjyNGpbKJTefh3Va7DRXvmxS7O9jFCrlU7K8rZCizW7OmwJCN3m6x2PLQakwBmD7r4CxDl46TpvlEpKUIBFGNaVPg8NDC2P7VL6zItz8nfAwK6VONvdgWNx0AhywiFONTalIlIxVs3h5LWXZVERYMyEMYnQT1ONwarT3tYl4c83OCcC8x3zgd3YzAkoP53qTWS8XDFlNYqIGXHJfpgzUrssLUVzr4IGLW4Fu65XvL</eOther.16>
|
1028
|
+
<eOther.17>n</eOther.17>
|
1029
|
+
<eOther.18>T0RiUjFpcGtJVWxaWW1FanNlQzZrUjdicXpuVlUycE1tMUJIaUxWa3QwV2liRXRORnA=</eOther.18>
|
1030
|
+
<eOther.19>2013-10-02T14:00:50+07:00</eOther.19>
|
1031
|
+
<eOther.20>M</eOther.20>
|
1032
|
+
<eOther.21>r</eOther.21></eOther.SignatureGroup></eOther></PatientCareReport></Header></EMSDataSet>
|