| 1 | C0CCCR0 ; CCDCCR/GPL - CCR TEMPLATE AND ACCESS ROUTINES; 5/31/08 | 
|---|
| 2 | ;;1.0;C0C;;May 19, 2009;Build 32 | 
|---|
| 3 | ;Copyright 2008,2009 George Lilly, University of Minnesota. | 
|---|
| 4 | ;Licensed under the terms of the GNU General Public License. | 
|---|
| 5 | ;See attached copy of the License. | 
|---|
| 6 | ; | 
|---|
| 7 | ;This program is free software; you can redistribute it and/or modify | 
|---|
| 8 | ;it under the terms of the GNU General Public License as published by | 
|---|
| 9 | ;the Free Software Foundation; either version 2 of the License, or | 
|---|
| 10 | ;(at your option) any later version. | 
|---|
| 11 | ; | 
|---|
| 12 | ;This program is distributed in the hope that it will be useful, | 
|---|
| 13 | ;but WITHOUT ANY WARRANTY; without even the implied warranty of | 
|---|
| 14 | ;MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
|---|
| 15 | ;GNU General Public License for more details. | 
|---|
| 16 | ; | 
|---|
| 17 | ;You should have received a copy of the GNU General Public License along | 
|---|
| 18 | ;with this program; if not, write to the Free Software Foundation, Inc., | 
|---|
| 19 | ;51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | 
|---|
| 20 | ; | 
|---|
| 21 | W "This is a CCR TEMPLATE with processing routines",! | 
|---|
| 22 | W ! | 
|---|
| 23 | Q | 
|---|
| 24 | ; | 
|---|
| 25 | ZT(ZARY,BAT,LINE)       ; private routine to add a line to the ZARY array | 
|---|
| 26 | ; ZARY IS PASSED BY NAME | 
|---|
| 27 | ; BAT is a string identifying the section | 
|---|
| 28 | ; LINE is a test which will evaluate to true or false | 
|---|
| 29 | ; I '$G(@ZARY) D  ; | 
|---|
| 30 | ; . S @ZARY@(0)=0 ; initially there are no elements | 
|---|
| 31 | ; . W "GOT HERE LOADING "_LINE,! | 
|---|
| 32 | N CNT ; count of array elements | 
|---|
| 33 | S CNT=@ZARY@(0) ; contains array count | 
|---|
| 34 | S CNT=CNT+1 ; increment count | 
|---|
| 35 | S @ZARY@(CNT)=LINE ; put the line in the array | 
|---|
| 36 | ; S @ZARY@(BAT,CNT)="" ; index the test by battery | 
|---|
| 37 | S @ZARY@(0)=CNT ; update the array counter | 
|---|
| 38 | Q | 
|---|
| 39 | ; | 
|---|
| 40 | ZLOAD(ZARY,ROUTINE)      ; load tests into ZARY which is passed by reference | 
|---|
| 41 | ; ZARY IS PASSED BY NAME | 
|---|
| 42 | ; ZARY = name of the root, closed array format (e.g., "^TMP($J)") | 
|---|
| 43 | ; ROUTINE = NAME OF THE ROUTINE - PASSED BY VALUE | 
|---|
| 44 | K @ZARY S @ZARY="" | 
|---|
| 45 | S @ZARY@(0)=0 ; initialize array count | 
|---|
| 46 | N LINE,LABEL,BODY | 
|---|
| 47 | N INTEST S INTEST=0 ; switch for in the TEMPLATE section | 
|---|
| 48 | N SECTION S SECTION="[anonymous]" ; NO section LABEL | 
|---|
| 49 | ; | 
|---|
| 50 | N NUM F NUM=1:1 S LINE=$T(+NUM^@ROUTINE) Q:LINE=""  D | 
|---|
| 51 | . I LINE?." "1";<TEMPLATE>".E S INTEST=1 ; entering section | 
|---|
| 52 | . I LINE?." "1";</TEMPLATE>".E S INTEST=0 ; leaving section | 
|---|
| 53 | . I INTEST  D  ; within the section | 
|---|
| 54 | . . I LINE?." "1";><".E  D  ; sub-section name found | 
|---|
| 55 | . . . S SECTION=$P($P(LINE,";><",2),">",1) ; pull out name | 
|---|
| 56 | . . I LINE?." "1";;".E  D  ; line found | 
|---|
| 57 | . . . D ZT(ZARY,SECTION,$P(LINE,";;",2)) ; put the line in the array | 
|---|
| 58 | Q | 
|---|
| 59 | ; | 
|---|
| 60 | LOAD(ARY) ; LOAD A CCR TEMPLATE INTO ARY PASSED BY NAME | 
|---|
| 61 | D ZLOAD(ARY,"C0CCCR0") | 
|---|
| 62 | ; ZWR @ARY | 
|---|
| 63 | Q | 
|---|
| 64 | ; | 
|---|
| 65 | ;<TEMPLATE> | 
|---|
| 66 | ;;<?xml version="1.0" encoding="UTF-8"?> | 
|---|
| 67 | ;;<?xml-stylesheet type="text/xsl" href="ccr.xsl"?> | 
|---|
| 68 | ;;<ContinuityOfCareRecord xmlns="urn:astm-org:CCR"> | 
|---|
| 69 | ;;<CCRDocumentObjectID>871bd605-e8f8-4b80-9918-4b03f781129e</CCRDocumentObjectID> | 
|---|
| 70 | ;;<Language> | 
|---|
| 71 | ;;<Text>English</Text> | 
|---|
| 72 | ;;</Language> | 
|---|
| 73 | ;;<Version>V1.0</Version> | 
|---|
| 74 | ;;<DateTime> | 
|---|
| 75 | ;;<ExactDateTime>@@DATETIME@@</ExactDateTime> | 
|---|
| 76 | ;;</DateTime> | 
|---|
| 77 | ;;<Patient> | 
|---|
| 78 | ;;<ActorID>@@ACTORPATIENT@@</ActorID> | 
|---|
| 79 | ;;</Patient> | 
|---|
| 80 | ;;<From> | 
|---|
| 81 | ;;<ActorLink> | 
|---|
| 82 | ;;<ActorID>@@ACTORFROM@@</ActorID> | 
|---|
| 83 | ;;</ActorLink> | 
|---|
| 84 | ;;<ActorLink> | 
|---|
| 85 | ;;<ActorID>@@ACTORFROM2@@</ActorID> | 
|---|
| 86 | ;;</ActorLink> | 
|---|
| 87 | ;;</From> | 
|---|
| 88 | ;;<To> | 
|---|
| 89 | ;;<ActorLink> | 
|---|
| 90 | ;;<ActorID>@@ACTORTO@@</ActorID> | 
|---|
| 91 | ;;<ActorRole> | 
|---|
| 92 | ;;<Text>@@ACTORTOTEXT@@</Text> | 
|---|
| 93 | ;;</ActorRole> | 
|---|
| 94 | ;;</ActorLink> | 
|---|
| 95 | ;;</To> | 
|---|
| 96 | ;;<Purpose> | 
|---|
| 97 | ;;<Description> | 
|---|
| 98 | ;;<Text>@@PURPOSEDESCRIPTION@@</Text> | 
|---|
| 99 | ;;</Description> | 
|---|
| 100 | ;;</Purpose> | 
|---|
| 101 | ;;<Body> | 
|---|
| 102 | ;;<Problems> | 
|---|
| 103 | ;;<Problem> | 
|---|
| 104 | ;;<CCRDataObjectID>@@PROBLEMOBJECTID@@</CCRDataObjectID> | 
|---|
| 105 | ;;<DateTime> | 
|---|
| 106 | ;;<ExactDateTime>@@PROBLEMDATEMOD@@</ExactDateTime> | 
|---|
| 107 | ;;</DateTime> | 
|---|
| 108 | ;;<Type> | 
|---|
| 109 | ;;<Text>Problem</Text> | 
|---|
| 110 | ;;</Type> | 
|---|
| 111 | ;;<Description> | 
|---|
| 112 | ;;<Text>@@PROBLEMDESCRIPTION@@</Text> | 
|---|
| 113 | ;;<Code> | 
|---|
| 114 | ;;<Value>@@PROBLEMCODEVALUE@@</Value> | 
|---|
| 115 | ;;<CodingSystem>ICD9CM</CodingSystem> | 
|---|
| 116 | ;;<Version>@@PROBLEMCODINGVERSION@@</Version> | 
|---|
| 117 | ;;</Code> | 
|---|
| 118 | ;;</Description> | 
|---|
| 119 | ;;<Status> | 
|---|
| 120 | ;;<Text>@@PROBLEMSTATUS@@</Text> | 
|---|
| 121 | ;;</Status> | 
|---|
| 122 | ;;<Source> | 
|---|
| 123 | ;;<Actor> | 
|---|
| 124 | ;;<ActorID>@@PROBLEMSOURCEACTORID@@</ActorID> | 
|---|
| 125 | ;;</Actor> | 
|---|
| 126 | ;;</Source> | 
|---|
| 127 | ;;</Problem> | 
|---|
| 128 | ;;</Problems> | 
|---|
| 129 | ;;<Immunizations> | 
|---|
| 130 | ;;<Immunization> | 
|---|
| 131 | ;;<CCRDataObjectID>@@IMMUNEOBJECTID@@</CCRDataObjectID> | 
|---|
| 132 | ;;<DateTime> | 
|---|
| 133 | ;;<Type> | 
|---|
| 134 | ;;<Text>@@IMMUNEDATETIMETYPETEXT@@</Text> | 
|---|
| 135 | ;;</Type> | 
|---|
| 136 | ;;<ExactDateTime>@@IMMUNEDATETIME@@</ExactDateTime> | 
|---|
| 137 | ;;</DateTime> | 
|---|
| 138 | ;;<Source> | 
|---|
| 139 | ;;<Actor> | 
|---|
| 140 | ;;<ActorID>@@IMMUNESOURCEACTORID@@</ActorID> | 
|---|
| 141 | ;;</Actor> | 
|---|
| 142 | ;;</Source> | 
|---|
| 143 | ;;<Product> | 
|---|
| 144 | ;;<ProductName> | 
|---|
| 145 | ;;<Text>@@IMMUNEPRODUCTNAMETEXT@@</Text> | 
|---|
| 146 | ;;<Code> | 
|---|
| 147 | ;;<Value>@@IMMUNEPRODUCTCODE@@</Value> | 
|---|
| 148 | ;;<CodingSystem>@@IMMUNEPRODUCTCODESYSTEM@@</CodingSystem> | 
|---|
| 149 | ;;</Code> | 
|---|
| 150 | ;;</ProductName> | 
|---|
| 151 | ;;</Product> | 
|---|
| 152 | ;;</Immunization> | 
|---|
| 153 | ;;</Immunizations> | 
|---|
| 154 | ;;<FamilyHistory> | 
|---|
| 155 | ;;<FamilyProblemHistory> | 
|---|
| 156 | ;;<CCRDataObjectID>@@FAMILYHISTORYOBJECTID@@</CCRDataObjectID> | 
|---|
| 157 | ;;<Source> | 
|---|
| 158 | ;;<Actor> | 
|---|
| 159 | ;;<ActorID>@@FAMILYHISTORYACTORID@@</ActorID> | 
|---|
| 160 | ;;</Actor> | 
|---|
| 161 | ;;</Source> | 
|---|
| 162 | ;;<FamilyMember> | 
|---|
| 163 | ;;<ActorID>@@FAMILYMEMBERACTORID@@</ActorID> | 
|---|
| 164 | ;;<ActorRole> | 
|---|
| 165 | ;;<Text>@@FAMILYMEMBERACTORROLETEXT@@</Text> | 
|---|
| 166 | ;;</ActorRole> | 
|---|
| 167 | ;;<Source> | 
|---|
| 168 | ;;<Actor> | 
|---|
| 169 | ;;<ActorID>@@FAMILYMEMBERSOURCACTORID@@</ActorID> | 
|---|
| 170 | ;;</Actor> | 
|---|
| 171 | ;;</Source> | 
|---|
| 172 | ;;</FamilyMember> | 
|---|
| 173 | ;;<Problem> | 
|---|
| 174 | ;;<Type> | 
|---|
| 175 | ;;<Text>Problem</Text> | 
|---|
| 176 | ;;</Type> | 
|---|
| 177 | ;;<Description> | 
|---|
| 178 | ;;<Text>@@FAMILYMEMBERPROBLEMDESCRIPTION@@</Text> | 
|---|
| 179 | ;;<Code> | 
|---|
| 180 | ;;<Value>@@FAMILYMEMBERPROBLEMCODE@@</Value> | 
|---|
| 181 | ;;<CodingSystem>@@FAMILYMEMBERCODESYSTEM@@</CodingSystem> | 
|---|
| 182 | ;;<Version>@@FAMILYMEMBERCODEVERSION@@</Version> | 
|---|
| 183 | ;;</Code> | 
|---|
| 184 | ;;</Description> | 
|---|
| 185 | ;;<Source> | 
|---|
| 186 | ;;<Actor> | 
|---|
| 187 | ;;<ActorID>@@FAMILYMEMBERPROBLEMSOURCEID@@</ActorID> | 
|---|
| 188 | ;;</Actor> | 
|---|
| 189 | ;;</Source> | 
|---|
| 190 | ;;</Problem> | 
|---|
| 191 | ;;</FamilyProblemHistory> | 
|---|
| 192 | ;;</FamilyHistory> | 
|---|
| 193 | ;;<SocialHistory> | 
|---|
| 194 | ;;<SocialHistoryElement> | 
|---|
| 195 | ;;<CCRDataObjectID>@@SOCIALHISTORYOBJECTID@@</CCRDataObjectID> | 
|---|
| 196 | ;;<Type> | 
|---|
| 197 | ;;<Text>@@SOCIALHISTORYTYPETEXT@@</Text> | 
|---|
| 198 | ;;</Type> | 
|---|
| 199 | ;;<Description> | 
|---|
| 200 | ;;<Text>@@SOCIALHISTORYDESCRIPTIONTEXT@@</Text> | 
|---|
| 201 | ;;</Description> | 
|---|
| 202 | ;;<Source> | 
|---|
| 203 | ;;<Actor> | 
|---|
| 204 | ;;<ActorID>@@SOCIALHISTORYSOURCACTORID@@</ActorID> | 
|---|
| 205 | ;;</Actor> | 
|---|
| 206 | ;;</Source> | 
|---|
| 207 | ;;</SocialHistoryElement> | 
|---|
| 208 | ;;<SocialHistoryElement> | 
|---|
| 209 | ;;<CCRDataObjectID>BB0005</CCRDataObjectID> | 
|---|
| 210 | ;;<Type> | 
|---|
| 211 | ;;<Text>Ethnic Origin</Text> | 
|---|
| 212 | ;;</Type> | 
|---|
| 213 | ;;<Description> | 
|---|
| 214 | ;;<Text>Not Hispanic or Latino</Text> | 
|---|
| 215 | ;;</Description> | 
|---|
| 216 | ;;<Source> | 
|---|
| 217 | ;;<Actor> | 
|---|
| 218 | ;;<ActorID>AA0001</ActorID> | 
|---|
| 219 | ;;</Actor> | 
|---|
| 220 | ;;</Source> | 
|---|
| 221 | ;;</SocialHistoryElement> | 
|---|
| 222 | ;;<SocialHistoryElement> | 
|---|
| 223 | ;;<CCRDataObjectID>BB0006</CCRDataObjectID> | 
|---|
| 224 | ;;<Type> | 
|---|
| 225 | ;;<Text>Race</Text> | 
|---|
| 226 | ;;</Type> | 
|---|
| 227 | ;;<Description> | 
|---|
| 228 | ;;<Text>White</Text> | 
|---|
| 229 | ;;</Description> | 
|---|
| 230 | ;;<Source> | 
|---|
| 231 | ;;<Actor> | 
|---|
| 232 | ;;<ActorID>AA0001</ActorID> | 
|---|
| 233 | ;;</Actor> | 
|---|
| 234 | ;;</Source> | 
|---|
| 235 | ;;</SocialHistoryElement> | 
|---|
| 236 | ;;<SocialHistoryElement> | 
|---|
| 237 | ;;<CCRDataObjectID>BB0007</CCRDataObjectID> | 
|---|
| 238 | ;;<Type> | 
|---|
| 239 | ;;<Text>Occupation</Text> | 
|---|
| 240 | ;;</Type> | 
|---|
| 241 | ;;<Description> | 
|---|
| 242 | ;;<Text>Physician</Text> | 
|---|
| 243 | ;;</Description> | 
|---|
| 244 | ;;<Source> | 
|---|
| 245 | ;;<Actor> | 
|---|
| 246 | ;;<ActorID>AA0001</ActorID> | 
|---|
| 247 | ;;</Actor> | 
|---|
| 248 | ;;</Source> | 
|---|
| 249 | ;;</SocialHistoryElement> | 
|---|
| 250 | ;;</SocialHistory> | 
|---|
| 251 | ;;<Alerts> | 
|---|
| 252 | ;;<Alert> | 
|---|
| 253 | ;;<CCRDataObjectID>@@ALERTOBJECTID@@</CCRDataObjectID> | 
|---|
| 254 | ;;<DateTime> | 
|---|
| 255 | ;;<ExactDateTime>@@ALERTDATETIME@@</ExactDateTime> | 
|---|
| 256 | ;;</DateTime> | 
|---|
| 257 | ;;<Type> | 
|---|
| 258 | ;;<Text>@@ALERTTYPE@@</Text> | 
|---|
| 259 | ;;</Type> | 
|---|
| 260 | ;;<Status> | 
|---|
| 261 | ;;<Text>@@ALERTSTATUSTEXT@@</Text> | 
|---|
| 262 | ;;</Status> | 
|---|
| 263 | ;;<Description> | 
|---|
| 264 | ;;<Text>@@ALERTDESCRIPTIONTEXT@@</Text> | 
|---|
| 265 | ;;<Code> | 
|---|
| 266 | ;;<Value>@@ALERTCODEVALUE@@</Value> | 
|---|
| 267 | ;;<CodingSystem>@@ALERTCODESYSTEM@@</CodingSystem> | 
|---|
| 268 | ;;</Code> | 
|---|
| 269 | ;;</Description> | 
|---|
| 270 | ;;<Source> | 
|---|
| 271 | ;;<Actor> | 
|---|
| 272 | ;;<ActorID>@@ALERTSOURCEID@@</ActorID> | 
|---|
| 273 | ;;</Actor> | 
|---|
| 274 | ;;</Source> | 
|---|
| 275 | ;;<Agent> | 
|---|
| 276 | ;;<Products> | 
|---|
| 277 | ;;<Product> | 
|---|
| 278 | ;;<CCRDataObjectID>@@ALERTAGENTPRODUCTOBJECTID@@</CCRDataObjectID> | 
|---|
| 279 | ;;<Source> | 
|---|
| 280 | ;;<Actor> | 
|---|
| 281 | ;;<ActorID>@@ALERTSOURCEID@@</ActorID> | 
|---|
| 282 | ;;</Actor> | 
|---|
| 283 | ;;</Source> | 
|---|
| 284 | ;;<Product> | 
|---|
| 285 | ;;<ProductName> | 
|---|
| 286 | ;;<Text>@@ALERTAGENTPRODUCTNAMETEXT@@</Text> | 
|---|
| 287 | ;;<Code> | 
|---|
| 288 | ;;<Value>@@ALERTAGENTPRODUCTCODEVALUE@@</Value> | 
|---|
| 289 | ;;<CodingSystem>@@ALERTAGENTPRODUCTCODESYSTEM@@</CodingSystem> | 
|---|
| 290 | ;;</Code> | 
|---|
| 291 | ;;</ProductName> | 
|---|
| 292 | ;;</Product> | 
|---|
| 293 | ;;</Product> | 
|---|
| 294 | ;;</Products> | 
|---|
| 295 | ;;</Agent> | 
|---|
| 296 | ;;<Reaction> | 
|---|
| 297 | ;;<Description> | 
|---|
| 298 | ;;<Text>@@ALERTREACTIOINDESCRIPTIONTEXT@@</Text> | 
|---|
| 299 | ;;<Code> | 
|---|
| 300 | ;;<Value>@@ALERTREACTIONCODEVALUE@@</Value> | 
|---|
| 301 | ;;<CodingSystem>@@ALERTREACTIONCODESYSTEM@@</CodingSystem> | 
|---|
| 302 | ;;</Code> | 
|---|
| 303 | ;;</Description> | 
|---|
| 304 | ;;</Reaction> | 
|---|
| 305 | ;;</Alert> | 
|---|
| 306 | ;;</Alerts> | 
|---|
| 307 | ;;<Medications> | 
|---|
| 308 | ;;<Medication> | 
|---|
| 309 | ;;<CCRDataObjectID>@@MEDOBJECTID@@</CCRDataObjectID> | 
|---|
| 310 | ;;<DateTime> | 
|---|
| 311 | ;;<Type> | 
|---|
| 312 | ;;<Text>@@MEDISSUEDATETXT@@</Text> | 
|---|
| 313 | ;;</Type> | 
|---|
| 314 | ;;<ExactDateTime>@@MEDISSUEDATE@@</ExactDateTime> | 
|---|
| 315 | ;;</DateTime> | 
|---|
| 316 | ;;<DateTime> | 
|---|
| 317 | ;;<Type> | 
|---|
| 318 | ;;<Text>@@MEDLASTFILLDATETXT@@</Text> | 
|---|
| 319 | ;;</Type> | 
|---|
| 320 | ;;<ExactDateTime>@@MEDLASTFILLDATE@@</ExactDateTime> | 
|---|
| 321 | ;;</DateTime> | 
|---|
| 322 | ;;<IDs> | 
|---|
| 323 | ;;<Type> | 
|---|
| 324 | ;;<Text>@@MEDRXNOTXT@@</Text> | 
|---|
| 325 | ;;</Type> | 
|---|
| 326 | ;;<ID>@@MEDRXNO@@</ID> | 
|---|
| 327 | ;;</IDs> | 
|---|
| 328 | ;;<Type> | 
|---|
| 329 | ;;<Text>@@MEDTYPETEXT@@</Text> | 
|---|
| 330 | ;;</Type> | 
|---|
| 331 | ;;<Description> | 
|---|
| 332 | ;;<Text>@@MEDDETAILUNADORNED@@</Text> | 
|---|
| 333 | ;;</Description> | 
|---|
| 334 | ;;<Status> | 
|---|
| 335 | ;;<Text>@@MEDSTATUSTEXT@@</Text> | 
|---|
| 336 | ;;</Status> | 
|---|
| 337 | ;;<Source> | 
|---|
| 338 | ;;<Actor> | 
|---|
| 339 | ;;<ActorID>@@MEDSOURCEACTORID@@</ActorID> | 
|---|
| 340 | ;;</Actor> | 
|---|
| 341 | ;;</Source> | 
|---|
| 342 | ;;<Product> | 
|---|
| 343 | ;;<ProductName> | 
|---|
| 344 | ;;<Text>@@MEDPRODUCTNAMETEXT@@</Text> | 
|---|
| 345 | ;;<Code> | 
|---|
| 346 | ;;<Value>@@MEDPRODUCTNAMECODEVALUE@@</Value> | 
|---|
| 347 | ;;<CodingSystem>@@MEDPRODUCTNAMECODINGINGSYSTEM@@</CodingSystem> | 
|---|
| 348 | ;;<Version>@@MEDPRODUCTNAMECODEVERSION@@</Version> | 
|---|
| 349 | ;;</Code> | 
|---|
| 350 | ;;</ProductName> | 
|---|
| 351 | ;;<BrandName> | 
|---|
| 352 | ;;<Text>@@MEDBRANDNAMETEXT@@</Text> | 
|---|
| 353 | ;;</BrandName> | 
|---|
| 354 | ;;<Strength> | 
|---|
| 355 | ;;<Value>@@MEDSTRENGTHVALUE@@</Value> | 
|---|
| 356 | ;;<Units> | 
|---|
| 357 | ;;<Unit>@@MEDSTRENGTHUNIT@@</Unit> | 
|---|
| 358 | ;;</Units> | 
|---|
| 359 | ;;</Strength> | 
|---|
| 360 | ;;<Form> | 
|---|
| 361 | ;;<Text>@@MEDFORMTEXT@@</Text> | 
|---|
| 362 | ;;</Form> | 
|---|
| 363 | ;;<Concentration> | 
|---|
| 364 | ;;<Value>@@MEDCONCVALUE@@</Value> | 
|---|
| 365 | ;;<Units> | 
|---|
| 366 | ;;<Unit>@@MEDCONCUNIT@@</Unit> | 
|---|
| 367 | ;;</Units> | 
|---|
| 368 | ;;</Concentration> | 
|---|
| 369 | ;;</Product> | 
|---|
| 370 | ;;<Quantity> | 
|---|
| 371 | ;;<Value>@@MEDQUANTITYVALUE@@</Value> | 
|---|
| 372 | ;;<Units> | 
|---|
| 373 | ;;<Unit>@@MEDQUANTITYUNIT@@</Unit> | 
|---|
| 374 | ;;</Units> | 
|---|
| 375 | ;;</Quantity> | 
|---|
| 376 | ;;<Directions> | 
|---|
| 377 | ;;<Direction> | 
|---|
| 378 | ;;<Description> | 
|---|
| 379 | ;;<Text>@@MEDDIRECTIONDESCRIPTIONTEXT@@</Text> | 
|---|
| 380 | ;;</Description> | 
|---|
| 381 | ;;<DoseIndicator> | 
|---|
| 382 | ;;<Text>@@MEDDOSEINDICATOR@@</Text> | 
|---|
| 383 | ;;</DoseIndicator> | 
|---|
| 384 | ;;<DeliveryMethod> | 
|---|
| 385 | ;;<Text>@@MEDDELIVERYMETHOD@@</Text> | 
|---|
| 386 | ;;</DeliveryMethod> | 
|---|
| 387 | ;;<Dose> | 
|---|
| 388 | ;;<Value>@@MEDDOSEVALUE@@</Value> | 
|---|
| 389 | ;;<Units> | 
|---|
| 390 | ;;<Unit>@@MEDDOSEUNIT@@</Unit> | 
|---|
| 391 | ;;</Units> | 
|---|
| 392 | ;;<Rate> | 
|---|
| 393 | ;;<Value>@@MEDRATEVALUE@@</Value> | 
|---|
| 394 | ;;<Units> | 
|---|
| 395 | ;;<Unit>@@MEDRATEUNIT@@</Unit> | 
|---|
| 396 | ;;</Units> | 
|---|
| 397 | ;;</Rate> | 
|---|
| 398 | ;;</Dose> | 
|---|
| 399 | ;;<Vehicle> | 
|---|
| 400 | ;;<Text>@@MEDVEHICLETEXT@@</Text> | 
|---|
| 401 | ;;</Vehicle> | 
|---|
| 402 | ;;<Route> | 
|---|
| 403 | ;;<Text>@@MEDDIRECTIONROUTETEXT@@</Text> | 
|---|
| 404 | ;;</Route> | 
|---|
| 405 | ;;<Frequency> | 
|---|
| 406 | ;;<Value>@@MEDFREQUENCYVALUE@@</Value> | 
|---|
| 407 | ;;</Frequency> | 
|---|
| 408 | ;;<Interval> | 
|---|
| 409 | ;;<Value>@@MEDINTERVALVALUE@@</Value> | 
|---|
| 410 | ;;<Units> | 
|---|
| 411 | ;;<Unit>@@MEDINTERVALUNIT@@</Unit> | 
|---|
| 412 | ;;</Units> | 
|---|
| 413 | ;;</Interval> | 
|---|
| 414 | ;;<Duration> | 
|---|
| 415 | ;;<Value>@@MEDDURATIONVALUE@@</Value> | 
|---|
| 416 | ;;<Units> | 
|---|
| 417 | ;;<Unit>@@MEDDURATIONUNIT@@</Unit> | 
|---|
| 418 | ;;</Units> | 
|---|
| 419 | ;;</Duration> | 
|---|
| 420 | ;;<Indication> | 
|---|
| 421 | ;;<PRNFlag> | 
|---|
| 422 | ;;<Text>@@MEDPRNFLAG@@</Text> | 
|---|
| 423 | ;;</PRNFlag> | 
|---|
| 424 | ;;<Problem> | 
|---|
| 425 | ;;<CCRDataObjectID>@@MEDPROBLEMOBJECTID@@</CCRDataObjectID> | 
|---|
| 426 | ;;<Type> | 
|---|
| 427 | ;;<Text>@@MEDPROBLEMTYPETXT@@</Text> | 
|---|
| 428 | ;;</Type> | 
|---|
| 429 | ;;<Description> | 
|---|
| 430 | ;;<Text>@@MEDPROBLEMDESCRIPTION@@</Text> | 
|---|
| 431 | ;;<Code> | 
|---|
| 432 | ;;<Value>@@MEDPROBLEMCODEVALUE@@</Value> | 
|---|
| 433 | ;;<CodingSystem>@@MEDPROBLEMCODINGSYSTEM@@</CodingSystem> | 
|---|
| 434 | ;;<Version>@@MEDPROBLEMCODINGVERSION@@</Version> | 
|---|
| 435 | ;;</Code> | 
|---|
| 436 | ;;</Description> | 
|---|
| 437 | ;;<Source> | 
|---|
| 438 | ;;<Actor> | 
|---|
| 439 | ;;<ActorID>@@MEDPROBLEMSOURCEACTORID@@</ActorID> | 
|---|
| 440 | ;;</Actor> | 
|---|
| 441 | ;;</Source> | 
|---|
| 442 | ;;</Problem> | 
|---|
| 443 | ;;</Indication> | 
|---|
| 444 | ;;<StopIndicator> | 
|---|
| 445 | ;;<Text>@@MEDSTOPINDICATOR@@</Text> | 
|---|
| 446 | ;;</StopIndicator> | 
|---|
| 447 | ;;<DirectionSequenceModifier>@@MEDDIRSEQ@@</DirectionSequenceModifier> | 
|---|
| 448 | ;;<MultipleDirectionModifier> | 
|---|
| 449 | ;;<Text>@@MEDMULDIRMOD@@</Text> | 
|---|
| 450 | ;;</MultipleDirectionModifier> | 
|---|
| 451 | ;;</Direction> | 
|---|
| 452 | ;;</Directions> | 
|---|
| 453 | ;;<PatientInstructions> | 
|---|
| 454 | ;;<Instruction>@@MEDPTINSTRUCTIONS@@</Instruction> | 
|---|
| 455 | ;;</PatientInstructions> | 
|---|
| 456 | ;;<FullfillmentInstructions> | 
|---|
| 457 | ;;<Text>@@MEDFULLFILLMENTINSTRUCTIONS@@</Text> | 
|---|
| 458 | ;;</FullfillmentInstructions> | 
|---|
| 459 | ;;<Refills> | 
|---|
| 460 | ;;<Refill> | 
|---|
| 461 | ;;<Number>@@MEDRFNO@@</Number> | 
|---|
| 462 | ;;</Refill> | 
|---|
| 463 | ;;</Refills> | 
|---|
| 464 | ;;</Medication> | 
|---|
| 465 | ;;</Medications> | 
|---|
| 466 | ;;<VitalSigns> | 
|---|
| 467 | ;;<Result> | 
|---|
| 468 | ;;<CCRDataObjectID>@@VITALSIGNSDATAOBJECTID@@</CCRDataObjectID> | 
|---|
| 469 | ;;<DateTime> | 
|---|
| 470 | ;;<Type> | 
|---|
| 471 | ;;<Text>@@VITALSIGNSDATETIMETYPETEXT@@</Text> | 
|---|
| 472 | ;;</Type> | 
|---|
| 473 | ;;<ExactDateTime>@@VITALSIGNSEXACTDATETIME@@</ExactDateTime> | 
|---|
| 474 | ;;</DateTime> | 
|---|
| 475 | ;;<Description> | 
|---|
| 476 | ;;<Text>@@VITALSIGNSDESCRIPTIONTEXT@@</Text> | 
|---|
| 477 | ;;</Description> | 
|---|
| 478 | ;;<Source> | 
|---|
| 479 | ;;<Actor> | 
|---|
| 480 | ;;<ActorID>@@VITALSIGNSSOURCEACTORID@@</ActorID> | 
|---|
| 481 | ;;</Actor> | 
|---|
| 482 | ;;</Source> | 
|---|
| 483 | ;;<Test> | 
|---|
| 484 | ;;<CCRDataObjectID>@@VITALSIGNSTESTOBJECTID@@</CCRDataObjectID> | 
|---|
| 485 | ;;<Type> | 
|---|
| 486 | ;;<Text>@@VITALSIGNSTESTTYPETEXT@@</Text> | 
|---|
| 487 | ;;</Type> | 
|---|
| 488 | ;;<Description> | 
|---|
| 489 | ;;<Text>@@VITALSIGNSDESCRIPTIONTEXT@@</Text> | 
|---|
| 490 | ;;<Code> | 
|---|
| 491 | ;;<Value>@@VITALSIGNSDESCCODEVALUE@@</Value> | 
|---|
| 492 | ;;<CodingSystem>@@VITALSIGNSDESCCODINGSYSTEM@@</CodingSystem> | 
|---|
| 493 | ;;<Version>@@VITALSIGNSCODEVERSION@@</Version> | 
|---|
| 494 | ;;</Code> | 
|---|
| 495 | ;;</Description> | 
|---|
| 496 | ;;<Source> | 
|---|
| 497 | ;;<Actor> | 
|---|
| 498 | ;;<ActorID>@@VITALSIGNSTESTSOURCEACTORID@@</ActorID> | 
|---|
| 499 | ;;</Actor> | 
|---|
| 500 | ;;</Source> | 
|---|
| 501 | ;;<TestResult> | 
|---|
| 502 | ;;<Value>@@VITALSIGNSTESTRESULTVALUE@@</Value> | 
|---|
| 503 | ;;<Units> | 
|---|
| 504 | ;;<Unit>@@VITALSIGNSTESTRESULTUNIT@@</Unit> | 
|---|
| 505 | ;;</Units> | 
|---|
| 506 | ;;</TestResult> | 
|---|
| 507 | ;;</Test> | 
|---|
| 508 | ;;</Result> | 
|---|
| 509 | ;;</VitalSigns> | 
|---|
| 510 | ;;<Results> | 
|---|
| 511 | ;;<Result> | 
|---|
| 512 | ;;<CCRDataObjectID>@@RESULTOBJECTID@@</CCRDataObjectID> | 
|---|
| 513 | ;;<DateTime> | 
|---|
| 514 | ;;<Type> | 
|---|
| 515 | ;;<Text>Assessment Time</Text> | 
|---|
| 516 | ;;</Type> | 
|---|
| 517 | ;;<ExactDateTime>@@RESULTASSESSMENTDATETIME@@</ExactDateTime> | 
|---|
| 518 | ;;</DateTime> | 
|---|
| 519 | ;;<Description> | 
|---|
| 520 | ;;<Text>@@RESULTDESCRIPTIONTEXT@@</Text> | 
|---|
| 521 | ;;<Code> | 
|---|
| 522 | ;;<Value>@@RESULTCODE@@</Value> | 
|---|
| 523 | ;;<CodingSystem>@@RESULTCODINGSYSTEM@@</CodingSystem> | 
|---|
| 524 | ;;</Code> | 
|---|
| 525 | ;;</Description> | 
|---|
| 526 | ;;<Status> | 
|---|
| 527 | ;;<Text>@@RESULTSTATUS@@</Text> | 
|---|
| 528 | ;;</Status> | 
|---|
| 529 | ;;<Source> | 
|---|
| 530 | ;;<Actor> | 
|---|
| 531 | ;;<ActorID>@@RESULTSOURCEACTORID@@</ActorID> | 
|---|
| 532 | ;;</Actor> | 
|---|
| 533 | ;;</Source> | 
|---|
| 534 | ;;<Test> | 
|---|
| 535 | ;;<CCRDataObjectID>@@RESULTTESTOBJECTID@@</CCRDataObjectID> | 
|---|
| 536 | ;;<DateTime> | 
|---|
| 537 | ;;<Type> | 
|---|
| 538 | ;;<Text>Assessment Time</Text> | 
|---|
| 539 | ;;</Type> | 
|---|
| 540 | ;;<ExactDateTime>@@RESULTTESTDATETIME@@</ExactDateTime> | 
|---|
| 541 | ;;</DateTime> | 
|---|
| 542 | ;;<Description> | 
|---|
| 543 | ;;<Text>@@RESULTTESTDESCRIPTIONTEXT@@</Text> | 
|---|
| 544 | ;;<Code> | 
|---|
| 545 | ;;<Value>@@RESULTTESTCODEVALUE@@</Value> | 
|---|
| 546 | ;;<CodingSystem>@@RESULTTESTCODINGSYSTEM@@</CodingSystem> | 
|---|
| 547 | ;;</Code> | 
|---|
| 548 | ;;</Description> | 
|---|
| 549 | ;;<Status> | 
|---|
| 550 | ;;<Text>@@RESULTTESTSTATUSTEXT@@</Text> | 
|---|
| 551 | ;;</Status> | 
|---|
| 552 | ;;<Source> | 
|---|
| 553 | ;;<Actor> | 
|---|
| 554 | ;;<ActorID>@@RESULTTESTSOURCEACTORID@@</ActorID> | 
|---|
| 555 | ;;</Actor> | 
|---|
| 556 | ;;</Source> | 
|---|
| 557 | ;;<TestResult> | 
|---|
| 558 | ;;<Value>@@RESULTTESTVALUE@@</Value> | 
|---|
| 559 | ;;<Units> | 
|---|
| 560 | ;;<Unit>@@RESULTTESTUNITS@@</Unit> | 
|---|
| 561 | ;;</Units> | 
|---|
| 562 | ;;</TestResult> | 
|---|
| 563 | ;;<NormalResult> | 
|---|
| 564 | ;;<Normal> | 
|---|
| 565 | ;;<Description> | 
|---|
| 566 | ;;<Text>@@RESULTTESTNORMALDESCTEXT@@</Text> | 
|---|
| 567 | ;;</Description> | 
|---|
| 568 | ;;<Source> | 
|---|
| 569 | ;;<Actor> | 
|---|
| 570 | ;;<ActorID>@@RESULTTESTNORMALSOURCEACTORID@@</ActorID> | 
|---|
| 571 | ;;</Actor> | 
|---|
| 572 | ;;</Source> | 
|---|
| 573 | ;;</Normal> | 
|---|
| 574 | ;;</NormalResult> | 
|---|
| 575 | ;;<Flag> | 
|---|
| 576 | ;;<Text>@@RESULTTESTFLAG@@</Text> | 
|---|
| 577 | ;;</Flag> | 
|---|
| 578 | ;;</Test> | 
|---|
| 579 | ;;</Result> | 
|---|
| 580 | ;;</Results> | 
|---|
| 581 | ;;<Procedures> | 
|---|
| 582 | ;;<Procedure> | 
|---|
| 583 | ;;<CCRDataObjectID>@@PROCOBJECTID@@</CCRDataObjectID> | 
|---|
| 584 | ;;<DateTime> | 
|---|
| 585 | ;;<Type> | 
|---|
| 586 | ;;<Text>@@PROCDATETEXT@@</Text> | 
|---|
| 587 | ;;</Type> | 
|---|
| 588 | ;;<ExactDateTime>@@PROCDATETIME@@</ExactDateTime> | 
|---|
| 589 | ;;</DateTime> | 
|---|
| 590 | ;;<Description> | 
|---|
| 591 | ;;<Text>@@PROCDESCTEXT@@</Text> | 
|---|
| 592 | ;;<ObjectAttribute> | 
|---|
| 593 | ;;<Attribute>@@PROCDESCOBJATTR@@</Attribute> | 
|---|
| 594 | ;;<AttributeValue> | 
|---|
| 595 | ;;<Value>@@PROCDESCOBJATTRVAL@@</Value> | 
|---|
| 596 | ;;<Code> | 
|---|
| 597 | ;;<Value>@@PROCDESCOBJATTRCODE@@</Value> | 
|---|
| 598 | ;;<CodingSystem>@@PROCDESCOBJATTRCODESYS@@</CodingSystem> | 
|---|
| 599 | ;;</Code> | 
|---|
| 600 | ;;</AttributeValue> | 
|---|
| 601 | ;;</ObjectAttribute> | 
|---|
| 602 | ;;<Code> | 
|---|
| 603 | ;;<Value>@@PROCCODE@@</Value> | 
|---|
| 604 | ;;<CodingSystem>@@PROCCODESYS@@</CodingSystem> | 
|---|
| 605 | ;;</Code> | 
|---|
| 606 | ;;</Description> | 
|---|
| 607 | ;;<Status> | 
|---|
| 608 | ;;<Text>@@PROCSTATUS@@</Text> | 
|---|
| 609 | ;;</Status> | 
|---|
| 610 | ;;<Source> | 
|---|
| 611 | ;;<Actor> | 
|---|
| 612 | ;;<ActorID>@@PROCACTOROBJID@@</ActorID> | 
|---|
| 613 | ;;</Actor> | 
|---|
| 614 | ;;</Source> | 
|---|
| 615 | ;;<InternalCCRLink> | 
|---|
| 616 | ;;<LinkID>@@PROCLINKID@@</LinkID> | 
|---|
| 617 | ;;<LinkRelationship>@@PROCLINKREL@@</LinkRelationship> | 
|---|
| 618 | ;;</InternalCCRLink> | 
|---|
| 619 | ;;</Procedure> | 
|---|
| 620 | ;;</Procedures> | 
|---|
| 621 | ;;<Encounters> | 
|---|
| 622 | ;;<Encounter> | 
|---|
| 623 | ;;<CCRDataObjectID>@@ENCOBJECTID@@</CCRDataObjectID> | 
|---|
| 624 | ;;<DateTime> | 
|---|
| 625 | ;;<ExactDateTime>@@ENCDATETIME@@</ExactDateTime> | 
|---|
| 626 | ;;</DateTime> | 
|---|
| 627 | ;;<Type> | 
|---|
| 628 | ;;<Text>@@ENCTYPE@@</Text> | 
|---|
| 629 | ;;<Code> | 
|---|
| 630 | ;;<Value>@@ENCCODE@@</Value> | 
|---|
| 631 | ;;<CodingSystem>@@ENCCODESYS@@</CodingSystem> | 
|---|
| 632 | ;;</Code> | 
|---|
| 633 | ;;</Type> | 
|---|
| 634 | ;;<Source> | 
|---|
| 635 | ;;<Actor> | 
|---|
| 636 | ;;<ActorID>@@ENCACTORID@@</ActorID> | 
|---|
| 637 | ;;</Actor> | 
|---|
| 638 | ;;</Source> | 
|---|
| 639 | ;;<Locations> | 
|---|
| 640 | ;;<Location> | 
|---|
| 641 | ;;<Actor> | 
|---|
| 642 | ;;<ActorID>@@ENCLOCACTORID@@</ActorID> | 
|---|
| 643 | ;;</Actor> | 
|---|
| 644 | ;;</Location> | 
|---|
| 645 | ;;</Locations> | 
|---|
| 646 | ;;<CommentID>@@ENCCOMMENTID@@</CommentID> | 
|---|
| 647 | ;;</Encounter> | 
|---|
| 648 | ;;</Encounters> | 
|---|
| 649 | ;;<HealthCareProviders> | 
|---|
| 650 | ;;<Provider> | 
|---|
| 651 | ;;<ActorID>AA0005</ActorID> | 
|---|
| 652 | ;;<ActorRole> | 
|---|
| 653 | ;;<Text>Primary Provider</Text> | 
|---|
| 654 | ;;</ActorRole> | 
|---|
| 655 | ;;</Provider> | 
|---|
| 656 | ;;</HealthCareProviders> | 
|---|
| 657 | ;;</Body> | 
|---|
| 658 | ;;<Actors> | 
|---|
| 659 | ;;<ACTOR-PATIENT> | 
|---|
| 660 | ;;<Actor> | 
|---|
| 661 | ;;<ActorObjectID>@@ACTOROBJECTID@@</ActorObjectID> | 
|---|
| 662 | ;;<Person> | 
|---|
| 663 | ;;<Name> | 
|---|
| 664 | ;;<CurrentName> | 
|---|
| 665 | ;;<Given>@@ACTORGIVENNAME@@</Given> | 
|---|
| 666 | ;;<Middle>@@ACTORMIDDLENAME@@</Middle> | 
|---|
| 667 | ;;<Family>@@ACTORFAMILYNAME@@</Family> | 
|---|
| 668 | ;;</CurrentName> | 
|---|
| 669 | ;;</Name> | 
|---|
| 670 | ;;<DateOfBirth> | 
|---|
| 671 | ;;<ExactDateTime>@@ACTORDATEOFBIRTH@@</ExactDateTime> | 
|---|
| 672 | ;;</DateOfBirth> | 
|---|
| 673 | ;;<Gender> | 
|---|
| 674 | ;;<Text>@@ACTORGENDER@@</Text> | 
|---|
| 675 | ;;<Code> | 
|---|
| 676 | ;;<Value>@@ACTORGENDER@@</Value> | 
|---|
| 677 | ;;<CodingSystem>2.16.840.1.113883.5.1</CodingSystem> | 
|---|
| 678 | ;;</Code> | 
|---|
| 679 | ;;</Gender> | 
|---|
| 680 | ;;</Person> | 
|---|
| 681 | ;;<IDs> | 
|---|
| 682 | ;;<Type> | 
|---|
| 683 | ;;<Text>@@ACTORSSNTEXT@@</Text> | 
|---|
| 684 | ;;</Type> | 
|---|
| 685 | ;;<ID>@@ACTORSSN@@</ID> | 
|---|
| 686 | ;;<Source> | 
|---|
| 687 | ;;<Actor> | 
|---|
| 688 | ;;<ActorID>@@ACTORSSNSOURCEID@@</ActorID> | 
|---|
| 689 | ;;</Actor> | 
|---|
| 690 | ;;</Source> | 
|---|
| 691 | ;;</IDs> | 
|---|
| 692 | ;;<Address> | 
|---|
| 693 | ;;<Type> | 
|---|
| 694 | ;;<Text>@@ACTORADDRESSTYPE@@</Text> | 
|---|
| 695 | ;;</Type> | 
|---|
| 696 | ;;<Line1>@@ACTORADDRESSLINE1@@</Line1> | 
|---|
| 697 | ;;<Line2>@@ACTORADDRESSLINE2@@</Line2> | 
|---|
| 698 | ;;<City>@@ACTORADDRESSCITY@@</City> | 
|---|
| 699 | ;;<State>@@ACTORADDRESSSTATE@@</State> | 
|---|
| 700 | ;;<PostalCode>@@ACTORADDRESSZIPCODE@@</PostalCode> | 
|---|
| 701 | ;;</Address> | 
|---|
| 702 | ;;<Telephone> | 
|---|
| 703 | ;;<Value>@@ACTORRESTEL@@</Value> | 
|---|
| 704 | ;;<Type> | 
|---|
| 705 | ;;<Text>@@ACTORRESTELTEXT@@</Text> | 
|---|
| 706 | ;;</Type> | 
|---|
| 707 | ;;</Telephone> | 
|---|
| 708 | ;;<Telephone> | 
|---|
| 709 | ;;<Value>@@ACTORWORKTEL@@</Value> | 
|---|
| 710 | ;;<Type> | 
|---|
| 711 | ;;<Text>@@ACTORWORKTELTEXT@@</Text> | 
|---|
| 712 | ;;</Type> | 
|---|
| 713 | ;;</Telephone> | 
|---|
| 714 | ;;<Telephone> | 
|---|
| 715 | ;;<Value>@@ACTORCELLTEL@@</Value> | 
|---|
| 716 | ;;<Type> | 
|---|
| 717 | ;;<Text>@@ACTORCELLTELTEXT@@</Text> | 
|---|
| 718 | ;;</Type> | 
|---|
| 719 | ;;</Telephone> | 
|---|
| 720 | ;;<EMail> | 
|---|
| 721 | ;;<Value>@@ACTOREMAIL@@</Value> | 
|---|
| 722 | ;;</EMail> | 
|---|
| 723 | ;;<Source> | 
|---|
| 724 | ;;<Actor> | 
|---|
| 725 | ;;<ActorID>@@ACTORADDRESSSOURCEID@@</ActorID> | 
|---|
| 726 | ;;</Actor> | 
|---|
| 727 | ;;</Source> | 
|---|
| 728 | ;;</Actor> | 
|---|
| 729 | ;;</ACTOR-PATIENT> | 
|---|
| 730 | ;;<ACTOR-SYSTEM> | 
|---|
| 731 | ;;<Actor> | 
|---|
| 732 | ;;<ActorObjectID>@@ACTOROBJECTID@@</ActorObjectID> | 
|---|
| 733 | ;;<InformationSystem> | 
|---|
| 734 | ;;<Name>@@ACTORINFOSYSNAME@@</Name> | 
|---|
| 735 | ;;<Version>@@ACTORINFOSYSVER@@</Version> | 
|---|
| 736 | ;;</InformationSystem> | 
|---|
| 737 | ;;<Source> | 
|---|
| 738 | ;;<Actor> | 
|---|
| 739 | ;;<ActorID>@@ACTORINFOSYSSOURCEID@@</ActorID> | 
|---|
| 740 | ;;</Actor> | 
|---|
| 741 | ;;</Source> | 
|---|
| 742 | ;;</Actor> | 
|---|
| 743 | ;;</ACTOR-SYSTEM> | 
|---|
| 744 | ;;<ACTOR-NOK> | 
|---|
| 745 | ;;<Actor> | 
|---|
| 746 | ;;<ActorObjectID>AA0003</ActorObjectID> | 
|---|
| 747 | ;;<Person> | 
|---|
| 748 | ;;<Name> | 
|---|
| 749 | ;;<DisplayName>@@ACTORDISPLAYNAME@@</DisplayName> | 
|---|
| 750 | ;;</Name> | 
|---|
| 751 | ;;</Person> | 
|---|
| 752 | ;;<Relation> | 
|---|
| 753 | ;;<Text>@@ACTORRELATION@@</Text> | 
|---|
| 754 | ;;</Relation> | 
|---|
| 755 | ;;<Source> | 
|---|
| 756 | ;;<Actor> | 
|---|
| 757 | ;;<ActorID>@@ACTORRELATIONSOURCEID@@</ActorID> | 
|---|
| 758 | ;;</Actor> | 
|---|
| 759 | ;;</Source> | 
|---|
| 760 | ;;</Actor> | 
|---|
| 761 | ;;</ACTOR-NOK> | 
|---|
| 762 | ;;<ACTOR-PROVIDER> | 
|---|
| 763 | ;;<Actor> | 
|---|
| 764 | ;;<ActorObjectID>@@ACTOROBJECTID@@</ActorObjectID> | 
|---|
| 765 | ;;<Person> | 
|---|
| 766 | ;;<Name> | 
|---|
| 767 | ;;<CurrentName> | 
|---|
| 768 | ;;<Given>@@ACTORGIVENNAME@@</Given> | 
|---|
| 769 | ;;<Middle>@@ACTORMIDDLENAME@@</Middle> | 
|---|
| 770 | ;;<Family>@@ACTORFAMILYNAME@@</Family> | 
|---|
| 771 | ;;<Title>@@ACTORTITLE@@</Title> | 
|---|
| 772 | ;;</CurrentName> | 
|---|
| 773 | ;;</Name> | 
|---|
| 774 | ;;</Person> | 
|---|
| 775 | ;;<IDs> | 
|---|
| 776 | ;;<Type> | 
|---|
| 777 | ;;<Text>@@IDTYPE@@</Text> | 
|---|
| 778 | ;;</Type> | 
|---|
| 779 | ;;<ID>@@ID@@</ID> | 
|---|
| 780 | ;;<IssuedBy> | 
|---|
| 781 | ;;<Description> | 
|---|
| 782 | ;;<Text>@@IDDESC@@</Text> | 
|---|
| 783 | ;;</Description> | 
|---|
| 784 | ;;</IssuedBy> | 
|---|
| 785 | ;;</IDs> | 
|---|
| 786 | ;;<Specialty> | 
|---|
| 787 | ;;<Text>@@ACTORSPECIALITY@@</Text> | 
|---|
| 788 | ;;</Specialty> | 
|---|
| 789 | ;;<Address> | 
|---|
| 790 | ;;<Type> | 
|---|
| 791 | ;;<Text>@@ACTORADDRESSTYPE@@</Text> | 
|---|
| 792 | ;;</Type> | 
|---|
| 793 | ;;<Line1>@@ACTORADDRESSLINE1@@</Line1> | 
|---|
| 794 | ;;<City>@@ACTORADDRESSCITY@@</City> | 
|---|
| 795 | ;;<State>@@ACTORADDRESSSTATE@@</State> | 
|---|
| 796 | ;;<PostalCode>@@ACTORPOSTALCODE@@</PostalCode> | 
|---|
| 797 | ;;</Address> | 
|---|
| 798 | ;;<Telephone> | 
|---|
| 799 | ;;<Value>@@ACTORTELEPHONE@@</Value> | 
|---|
| 800 | ;;<Type> | 
|---|
| 801 | ;;<Text>@@ACTORTELEPHONETYPE@@</Text> | 
|---|
| 802 | ;;</Type> | 
|---|
| 803 | ;;</Telephone> | 
|---|
| 804 | ;;<Email> | 
|---|
| 805 | ;;<Value>@@ACTOREMAIL@@</Value> | 
|---|
| 806 | ;;</Email> | 
|---|
| 807 | ;;<Source> | 
|---|
| 808 | ;;<Actor> | 
|---|
| 809 | ;;<ActorID>@@ACTORSOURCEID@@</ActorID> | 
|---|
| 810 | ;;</Actor> | 
|---|
| 811 | ;;</Source> | 
|---|
| 812 | ;;</Actor> | 
|---|
| 813 | ;;</ACTOR-PROVIDER> | 
|---|
| 814 | ;;<ACTOR-ORG> | 
|---|
| 815 | ;;<Actor> | 
|---|
| 816 | ;;<ActorObjectID>@@ACTOROBJECTID@@</ActorObjectID> | 
|---|
| 817 | ;;<Organization> | 
|---|
| 818 | ;;<Name>@@ORGANIZATIONNAME@@</Name> | 
|---|
| 819 | ;;</Organization> | 
|---|
| 820 | ;;<Source> | 
|---|
| 821 | ;;<Actor> | 
|---|
| 822 | ;;<ActorID>@@ACTORSOURCEID@@</ActorID> | 
|---|
| 823 | ;;</Actor> | 
|---|
| 824 | ;;</Source> | 
|---|
| 825 | ;;</Actor> | 
|---|
| 826 | ;;</ACTOR-ORG> | 
|---|
| 827 | ;;</Actors> | 
|---|
| 828 | ;;<Signatures> | 
|---|
| 829 | ;;<CCRSignature> | 
|---|
| 830 | ;;<SignatureObjectID>S0001</SignatureObjectID> | 
|---|
| 831 | ;;<ExactDateTime>2008-03-18T23:10:58Z</ExactDateTime> | 
|---|
| 832 | ;;<Source> | 
|---|
| 833 | ;;<ActorID>AA0001</ActorID> | 
|---|
| 834 | ;;</Source> | 
|---|
| 835 | ;;<Signature> | 
|---|
| 836 | ;;<Signature xmlns="http://www.w3.org/2000/09/xmldsig#"> | 
|---|
| 837 | ;;<SignedInfo> | 
|---|
| 838 | ;;<CanonicalizationMethod Algorithm="http://www.w3.org/TR/2001/REC-xml-c14n-20010315"/> | 
|---|
| 839 | ;;<SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha1"/> | 
|---|
| 840 | ;;<Reference URI=""> | 
|---|
| 841 | ;;<Transforms> | 
|---|
| 842 | ;;<Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature"/> | 
|---|
| 843 | ;;</Transforms> | 
|---|
| 844 | ;;<DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"/> | 
|---|
| 845 | ;;<DigestValue>YFveLLyo+75P7rSciv0/m1O6Ot4=</DigestValue> | 
|---|
| 846 | ;;</Reference> | 
|---|
| 847 | ;;</SignedInfo> | 
|---|
| 848 | ;;<SignatureValue>Bj6sACXl74hrlbUYnu8HqnRab5VGy69BOYjOH7dETxgppXMEd7AoVYaePZvgJft78JR4oQY76hbFyGcIslYauPpJxx2hCd5d56xFeaQg01R6AQOvGnhjlq63TbpFdUq0B4tYsmiibJPbQJhTQe+TcWTBvWaQt8Fkk5blO571YvI=</SignatureValue> | 
|---|
| 849 | ;;<KeyInfo> | 
|---|
| 850 | ;;<KeyValue> | 
|---|
| 851 | ;;<RSAKeyValue> | 
|---|
| 852 | ;;<Modulus>meH817QYol+/uUEg6j8Mg89s7GTlaN9B+/CGlzrtnQH+swMigZRnEPxHVO8PhEymP/W9nlhAjTScV/CUzA9yJ9WiaOn17c+KReKhfBqL24DX9BpbJ+kLYVz7mBO5Qydk5AzUT2hFwW93irD8iRKP+/t+2Mi2CjNfj8VTjJpHpm0=</Modulus> | 
|---|
| 853 | ;;<Exponent>AQAB</Exponent> | 
|---|
| 854 | ;;</RSAKeyValue> | 
|---|
| 855 | ;;</KeyValue> | 
|---|
| 856 | ;;</KeyInfo> | 
|---|
| 857 | ;;</Signature> | 
|---|
| 858 | ;;</Signature> | 
|---|
| 859 | ;;</CCRSignature> | 
|---|
| 860 | ;;</Signatures> | 
|---|
| 861 | ;;</ContinuityOfCareRecord> | 
|---|
| 862 | ;</TEMPLATE> | 
|---|