The following has evaluated to null or missing: ==> dms [in template "33701#33738#D3_PLASMA_DONATION_CENTER_DETAIL" at line 421, column 22] ---- Tip: If the failing expression is known to be legally refer to something that's sometimes null or missing, either specify a default value like myOptionalVar!myDefault, or use <#if myOptionalVar??>when-present<#else>when-missing</#if>. (These only cover the last step of the expression; to cover the whole expression, use parenthesis: (myOptionalVar.foo)!myDefault, (myOptionalVar.foo)?? ---- ---- FTL stack trace ("~" means nesting-related): - Failed at: #if dms.getData()?has_content [in template "33701#33738#D3_PLASMA_DONATION_CENTER_DETAIL" at line 421, column 17] ----
1<#include d3_macros/>
2<#assign JournalArticleLocalService = serviceLocator.findService("com.liferay.journal.service.JournalArticleLocalService")>
3<#assign portalURL=themeDisplay.getPortalURL()>
4<#assign portalLanguage=themeDisplay.getLanguageId()[0..1]>
5
6<#assign centerImage="">
7<#assign centerImageAltText="">
8<#assign centerInformationDescription = ""/>
9
10<#assign sharedDescriptionContent="">
11<#assign sharedDescriptionArticle = JournalArticleLocalService.getLatestArticleByUrlTitle(scopeGroupId, "center-details-shared-description", 0)>
12
13<#if sharedDescriptionArticle??>
14 <#assign sharedDescriptionContent = JournalArticleLocalService.getArticleContent(scopeGroupId, sharedDescriptionArticle.getArticleId(), "", locale, objThemeDisplay)>
15
16 <#if sharedDescriptionContent?has_content && sharedDescriptionContent?trim?index_of("{") == 0>
17 <#assign shared_description = jsonFactoryUtil.createJSONObject(sharedDescriptionContent?trim)>
18
19 <#if shared_description??>
20 <#if shared_description.getJSONObject("center_image")?has_content>
21 <#assign centerImageContent = shared_description.getJSONObject("center_image")>
22 <#if centerImageContent.getString("content")?has_content >
23 <#assign centerImage = centerImageContent.getString("content")>
24 </#if>
25
26 <#if centerImageContent.getString("alt_text")?has_content >
27 <#assign centerImageAltText = centerImageContent.getString("alt_text")>
28 </#if>
29 </#if>
30
31 <#if shared_description.getJSONObject("center_ammenities")?has_content>
32 <#assign centerAmmenitiesContent = shared_description.getJSONObject("center_ammenities")>
33 <#if centerAmmenitiesContent.getString("title")?has_content >
34 <#assign centerAmmenitiesTitle = centerAmmenitiesContent.getString("title")>
35 </#if>
36
37 <#if centerAmmenitiesContent.getString("description")?has_content >
38 <#assign centerAmmenitiesDescription = centerAmmenitiesContent.getString("description")>
39 </#if>
40
41 <#if centerAmmenitiesContent.getJSONArray("ammenities")?has_content && centerAmmenitiesContent.getJSONArray("ammenities")?is_hash>
42 <#assign centerAmmenitiesList = centerAmmenitiesContent.getJSONArray("ammenities")>
43 </#if>
44 </#if>
45
46 <#if shared_description.getJSONObject("donation_requirements")?has_content>
47 <#assign donationRequirementsContent = shared_description.getJSONObject("donation_requirements")>
48 <#if donationRequirementsContent.getString("title")?has_content >
49 <#assign donationRequirementsTitle = donationRequirementsContent.getString("title")>
50 </#if>
51
52 <#if donationRequirementsContent.getJSONArray("requirements")?has_content && donationRequirementsContent.getJSONArray("requirements")?is_hash>
53 <#assign donationRequirementsList = donationRequirementsContent.getJSONArray("requirements")>
54 </#if>
55 </#if>
56
57 <#if shared_description.getJSONObject("steps_to_donate")?has_content>
58 <#assign stepsToDonateContent = shared_description.getJSONObject("steps_to_donate")>
59 <#if stepsToDonateContent.getString("title")?has_content >
60 <#assign stepsToDonateTitle = stepsToDonateContent.getString("title")>
61 </#if>
62
63 <#if stepsToDonateContent.getJSONArray("steps")?has_content && stepsToDonateContent.getJSONArray("steps")?is_hash>
64 <#assign stepsToDonateList = stepsToDonateContent.getJSONArray("steps")>
65 </#if>
66 </#if>
67
68 <#if shared_description.getJSONObject("center_information")?has_content>
69 <#assign centerInformationContent = shared_description.getJSONObject("center_information")>
70 <#if centerInformationContent.getString("title")?has_content >
71 <#assign centerInformationTitle = centerInformationContent.getString("title")>
72 </#if>
73
74 <#if centerInformationContent.getString("default_description")?has_content >
75 <#assign centerInformationDescription = centerInformationContent.getString("default_description")>
76 </#if>
77 </#if>
78
79 <#if shared_description.getJSONObject("specialty_programs")?has_content>
80 <#assign specialtyProgramsContent = shared_description.getJSONObject("specialty_programs")>
81 <#if specialtyProgramsContent.getString("title")?has_content >
82 <#assign specialtyProgramsTitle = specialtyProgramsContent.getString("title")>
83 </#if>
84
85 <#if specialtyProgramsContent.getString("description")?has_content >
86 <#assign specialtyProgramsDescription = specialtyProgramsContent.getString("description")>
87 </#if>
88
89 <#if specialtyProgramsContent.getJSONArray("programs")?has_content && specialtyProgramsContent.getJSONArray("programs")?is_hash>
90 <#assign specialtyProgramsList = specialtyProgramsContent.getJSONArray("programs")>
91 </#if>
92 </#if>
93 </#if>
94 </#if>
95</#if>
96
97
98<#assign centerName = ""/>
99<#if main_title?? && main_title.getData()?has_content>
100 <#assign centerName = main_title.getData()/>
101</#if>
102
103<#if center_name?? && center_name.getData()?has_content>
104 <#assign centerName = center_name.getData()/>
105</#if>
106
107<#assign centerLogo = ""/>
108<#if picture?? && picture.getData()?has_content>
109 <#assign centerLogo = picture.getData()/>
110</#if>
111
112<#assign centerState = ""/>
113<#if state?? && state.getData()?has_content>
114 <#assign centerState = state.getData()/>
115</#if>
116
117<#assign centerAddress = ""/>
118<#if address?? && address.getData()?has_content>
119 <#assign centerAddress = address.getData()/>
120</#if>
121
122<#assign centerCity = ""/>
123<#if city?? && city.getData()?has_content>
124 <#assign centerCity = city.getData()/>
125</#if>
126
127<#assign centerZipCode = ""/>
128<#if zipcode?? && zipcode.getData()?has_content>
129 <#assign centerZipCode = zipcode.getData()/>
130</#if>
131
132<#assign centerPhone = ""/>
133<#if phone?? && phone.getData()?has_content>
134 <#assign centerPhone = phone.getData()/>
135</#if>
136
137<#if center_image?? && center_image.getData()?has_content>
138 <#assign centerImage = center_image.getData()/>
139</#if>
140
141<#if information?? && information.getData()?has_content>
142 <#assign centerInformationDescription = information.getData()/>
143</#if>
144
145<#assign centerAddress = ""/>
146<#if address?? && address.getData()?has_content>
147 <#assign centerAddress = address.getData()/>
148</#if>
149
150
151<#assign centerDMS = ""/>
152<#if dms?? && dms.getData()!=''>
153 <#assign centerDMS = dms.getData()>
154</#if>
155
156<#assign hoursMicrodata = "" />
157
158<div class="d3-detail-page" style="padding: 0">
159 <div class="d3-promotional-block">
160 <div class="promotional-text on-left">
161 <div class="container">
162 <div class="d3-col-xs-6 d3-col-md-10">
163 <#if centerLogo != "">
164 <img
165 alt="${centerName}"
166 src="${centerLogo}"
167 />
168 </#if>
169
170
171 <#assign centerNameState = ""/>
172 <#if centerName != "">
173 <#assign centerNameState = centerName/>
174
175 <#if centerState != "">
176 <#assign centerNameState += (", " + centerState)/>
177 </#if>
178 </#if>
179
180 <#if centerNameState != "">
181 <h1>
182 ${centerNameState}
183 </h1>
184 </#if>
185
186 <#if centerAddress != "" || centerPhone != "" >
187 <p>
188 <#if centerAddress != "">
189 ${centerAddress} <br />
190
191 <#if centerCity != "">
192 ${centerCity}
193 </#if>
194
195 <#if centerState != "">
196 ${centerState}
197 </#if>
198
199 <#if centerZipCode != "">
200 ${centerZipCode}
201 </#if>
202 </#if>
203
204 <#if centerPhone != "">
205 <br />${centerPhone}
206 </#if>
207 </p>
208 </#if>
209
210 <div class="button-row">
211 <#if schedule_a_visit?? && schedule_a_visit.getData()?has_content>
212 <#if centerDMS != "" && portalLanguage?? && portalLanguage?has_content>
213 <#assign appointmentURL = "https://new.grifolsplasmadonorhub.com/guest/schedule-donation?centerCode=" + centerDMS + "&lang=" + portalLanguage />
214 </#if>
215
216 <#if appointmentURL?? && appointmentURL?has_content>
217 <a
218 class="btn btn-primary btn-icon--left"
219 href="${appointmentURL}"
220 target="_blank"
221 >
222 <i class="ph-bold ph-calendar"></i>
223 <@liferay.language key="com.grifols.d3.schedule-appointment"/>
224 </a>
225 </#if>
226 </#if>
227
228 <#assign googleMapsURL = ""/>
229 <#if driving_directions?? && driving_directions.getData()?has_content>
230 <#assign googleMapsURL = driving_directions.getData()/>
231 <#else>
232 <#if centerAddress != "" && centerCity != "" && centerState != "" && centerZipCode != "" >
233 <#assign googleMapsURL = centerAddress + "," + centerCity + "," + centerState + "," + centerZipCode/>
234 <#assign googleMapsURL = htmlUtil.escapeURL( googleMapsURL)/>
235 <#assign googleMapsURL = "http://maps.google.com?q=" + googleMapsURL/>
236 </#if>
237 </#if>
238
239 <#if googleMapsURL != "">
240 <a
241 class="btn btn-secondary btn-icon--left"
242 href="${googleMapsURL}"
243 target="_blank"
244 >
245 <i class="ph-bold ph-traffic-sign"></i>
246 <@liferay.language key="com.grifols.d3.driving-directions"/>
247 </a>
248 </#if>
249 </div>
250 </div>
251 </div>
252 </div>
253
254
255 <div class="promotional-image aspect-ratio-bg-center aspect-ratio-bg-cover d3-xs-hide" title="${centerImageAltText}"> </div>
256 <div class="promotional-image aspect-ratio aspect-ratio-8-to-5 aspect-ratio-bg-center aspect-ratio-bg-cover d3-md-hide" title="${centerImageAltText}"> </div>
257 </div>
258
259 <div class="d3-component container">
260 <div class="row">
261 <div class="d3-col-xs-6 d3-col-md-6">
262 <#if (covid_convalescent?? && covid_convalescent.getData()?? && covid_convalescent.getData() == 'true')
263 || (childcare?? && childcare.getData()?? && childcare.getData() == 'true')
264 || (appointments?? && appointments.getData()?? && appointments.getData() == 'true')
265 || (ownbuilding?? && ownbuilding.getData()?? && ownbuilding.getData() == 'true')
266 || (inshoppingcenter?? && inshoppingcenter.getData()?? && inshoppingcenter.getData() == 'true')
267 || (bankofamerica?? && bankofamerica.getData()?? && bankofamerica.getData() == 'true')
268 || (paysign?? && paysign.getData()?? && paysign.getData() == 'true')
269 || (donorhub?? && donorhub.getData()?? && donorhub.getData() == 'true')
270 >
271
272 <div class="d3-description">
273 <#if centerAmmenitiesTitle??>
274 <h3>${centerAmmenitiesTitle}</h3>
275 </#if>
276
277 <div class="center-ammenities-container">
278 <#list 0..<centerAmmenitiesList.length() as center_ammenities_index>
279 <#if centerAmmenitiesList.getJSONObject(center_ammenities_index)??>
280 <#assign cur_ammenity = centerAmmenitiesList.getJSONObject(center_ammenities_index)>
281 <#if cur_ammenity.getString("id_name")?? && cur_ammenity.getString("id_name")?has_content>
282 <#assign cur_ammenity_id_name = cur_ammenity.getString("id_name")>
283
284 <#if (cur_ammenity_id_name = 'covid-convalescent' && covid_convalescent?? && covid_convalescent.getData()?? && covid_convalescent.getData() == 'true')
285 || (cur_ammenity_id_name = 'childcare' && childcare?? && childcare.getData()?? && childcare.getData() == 'true')
286 || (cur_ammenity_id_name = 'appointments' && appointments?? && appointments.getData()?? && appointments.getData() == 'true')
287 || (cur_ammenity_id_name = 'own-building' && ownbuilding?? && ownbuilding.getData()?? && ownbuilding.getData() == 'true')
288 || (cur_ammenity_id_name = 'in-shopping-center' && inshoppingcenter?? && inshoppingcenter.getData()?? && inshoppingcenter.getData() == 'true')
289 || (cur_ammenity_id_name = 'bank-of-america' && bankofamerica?? && bankofamerica.getData()?? && bankofamerica.getData() == 'true')
290 || (cur_ammenity_id_name = 'paysign' && paysign?? && paysign.getData()?? && paysign.getData() == 'true')
291 || (cur_ammenity_id_name = 'donorhub' && donorhub?? && donorhub.getData()?? && donorhub.getData() == 'true')
292 >
293 <div class="specialty-programs-icons">
294 <#assign cur_ammenity_name = cur_ammenity.getString("name")>
295
296 <#if cur_ammenity.getString("icon")?? && cur_ammenity.getString("icon")?has_content && cur_ammenity_id_name != 'donorhub'>
297 <#assign card_icon = getPhosphorIcon(cur_ammenity.getString("icon")) />
298 <div class="circle">
299 <i class="d3-icon ${card_icon}"></i>
300 </div>
301 </#if>
302
303 <#if cur_ammenity_id_name = 'donorhub'>
304 <img
305 alt="${cur_ammenity_id_name}"
306 src="${portalURL}/documents/1088990/1092005/donorhub-avatar.png/c2cbf871-138e-495c-bda4-24ba8852036a?t=1719494894109"
307 />
308
309
310 <#assign donorhubURL = "https://new.grifolsplasmadonorhub.com" />
311 <a
312 href="${donorhubURL}" target="_blank"
313 >
314 ${cur_ammenity_name}
315 </a>
316 <#else>
317 <p>${cur_ammenity_name}</p>
318 </#if>
319
320 </div>
321 </#if>
322 </#if>
323 </#if>
324 </#list>
325
326 <#if (antidprogram?? && antidprogram.getData()?? && antidprogram.getData() == 'true')
327 || (rabiesprogram?? && rabiesprogram.getData()?? && rabiesprogram.getData() == 'true')
328 || (tetanusprogram?? && tetanusprogram.getData()?? && tetanusprogram.getData() == 'true')
329 || (hepatitisbprogram?? && hepatitisbprogram.getData()?? && hepatitisbprogram.getData() == 'true')
330 || (rsv_program?? && rsv_program.getData()?? && rsv_program.getData() == 'true')
331 || (male_ab_program?? && male_ab_program.getData()?? && male_ab_program.getData() == 'true')
332 >
333 <#list 0..<specialtyProgramsList.length() as specialty_programs_index>
334 <#if specialtyProgramsList.getJSONObject(specialty_programs_index)??>
335 <#assign cur_specialty_program = specialtyProgramsList.getJSONObject(specialty_programs_index)>
336 <#if cur_specialty_program.getString("id_name")?? && cur_specialty_program.getString("id_name")?has_content>
337 <#assign cur_specialty_program_id_name = cur_specialty_program.getString("id_name")>
338
339 <#if (cur_specialty_program_id_name == 'anti-d-program' && antidprogram?? && antidprogram.getData()?? && antidprogram.getData() == 'true')
340 || (cur_specialty_program_id_name == 'anti-rabies-program' && rabiesprogram?? && rabiesprogram.getData()?? && rabiesprogram.getData() == 'true')
341 || (cur_specialty_program_id_name == 'anti-tetanus-program' && tetanusprogram?? && tetanusprogram.getData()?? && tetanusprogram.getData() == 'true')
342 || (cur_specialty_program_id_name == 'anti-hepatitis-B-program' && hepatitisbprogram?? && hepatitisbprogram.getData()?? && hepatitisbprogram.getData() == 'true')
343 || (cur_specialty_program_id_name == 'anti-rsv-program' && rsv_program?? && rsv_program.getData()?? && rsv_program.getData() == 'true')
344 || (cur_specialty_program_id_name == 'male-ab-program' && male_ab_program?? && male_ab_program.getData()?? && male_ab_program.getData() == 'true')
345 >
346 <div class="specialty-programs-icons">
347 <#assign cur_specialty_program_name = cur_specialty_program.getString("name")>
348
349 <#if cur_specialty_program.getString("icon")?? && cur_specialty_program.getString("icon")?has_content>
350 <#assign cur_specialty_program_icon = cur_specialty_program.getString("icon")>
351 <img
352 alt="${cur_specialty_program_name}"
353 src="${cur_specialty_program_icon}"
354 />
355 </#if>
356
357 <p>${cur_specialty_program_name}</p>
358 </div>
359 </#if>
360 </#if>
361 </#if>
362 </#list>
363 </#if>
364 </div>
365 </div>
366 </#if>
367
368 <#if donationRequirementsList??>
369 <div class="d3-description">
370 <#if donationRequirementsTitle??>
371 <h3>${donationRequirementsTitle}</h3>
372 </#if>
373
374 <p>
375 <#list 0..<donationRequirementsList.length() as donation_requirements_index>
376 <#if donationRequirementsList.getJSONObject(donation_requirements_index)??>
377 <#assign cur_requirement = donationRequirementsList.getJSONObject(donation_requirements_index)>
378 <#if cur_requirement.getString("description")?? && cur_requirement.getString("description")?has_content>
379 <strong>${donation_requirements_index + 1}. </strong>${cur_requirement.getString("description")}<br/>
380 </#if>
381 </#if>
382 </#list>
383 </p>
384 </div>
385 </#if>
386 </div>
387
388 <div class="d3-col-xs-6 d3-col-md-6">
389 <#if centerDMS != "">
390 <#assign compensationAmountToShow = plasmaUtils.getCompensationAmountToShow(locale, centerDMS)/>
391 <#assign textModelToShow = plasmaUtils.getTextModelToShow(locale, centerDMS)/>
392
393 <#if !textModelToShow?has_content>
394 <#assign textModelToShow = "1"/>
395 </#if>
396
397 <#assign donationsNumberToShow = plasmaUtils.getDonationsNumberToShow(locale, centerDMS)/>
398 <#if !donationsNumberToShow?has_content>
399 <#assign donationsNumberToShow = "1"/>
400 </#if>
401 <#if compensationAmountToShow?has_content>
402 <div class="d3-description">
403 <h3><@liferay.language key='com.grifols.d3.new-donor-compensation' />*</h3>
404 <p>
405 <#if textModelToShow == "1">
406 <@liferay.language_format arguments="${compensationAmountToShow}" key="com.grifols.plasma.newsdonors.compensation.message-1" />
407 </#if>
408 <#if textModelToShow == "2">
409 <@liferay.language_format arguments=[compensationAmountToShow, donationsNumberToShow] key="com.grifols.plasma.newsdonors.compensation.message-2" />
410 </#if>
411 <#if textModelToShow == "3">
412 <@liferay.language_format arguments=[compensationAmountToShow] key="com.grifols.plasma.newsdonors.compensation.message-3" />
413 </#if>
414 </p>
415 <p class="text-caption">*<@liferay.language key='com.grifols.d3.compensation-amounts-subject-change' /></p>
416
417 </div>
418 </#if>
419 </#if>
420
421 <#if dms.getData()?has_content >
422 <#if themeDisplay.getPortletDisplay().getPortletName() == "preview" >
423 <#assign centerOperationHours = plasmaUtils.getHoursToShow( locale, dms.getData(), true)/>
424 <#else>
425 <#assign centerOperationHours = plasmaUtils.getHoursToShow( locale, dms.getData(), false)/>
426 </#if>
427
428 <#if centerOperationHours != "" >
429 <#assign hoursMicrodata = plasmaUtils.getHoursMicrodata(dms.getData()) />
430
431
432
433
434 <div class="d3-description">
435 <h3><@liferay.language key='com.grifols.plasma.hours' /></h3>
436 ${centerOperationHours}
437 </div>
438 </#if>
439 </#if>
440 </div>
441 </div>
442 </div>
443
444 <#if stepsToDonateList??>
445 <div style="text-align: center">
446 <div class="d3-info-card row-4">
447 <div class="container">
448 <#if stepsToDonateTitle??>
449 <div class="d3-row text-content d3-introduction align-center">
450 <h2>${stepsToDonateTitle}</h2>
451 </div>
452 </#if>
453
454 <div class="d3-content-grid" style="justify-content: center">
455 <#list 0..<stepsToDonateList.length() as steps_to_donate_index>
456 <#if stepsToDonateList.getJSONObject(steps_to_donate_index)??>
457 <#assign cur_step = stepsToDonateList.getJSONObject(steps_to_donate_index)>
458 <#if (cur_step.getString("description")?? && cur_step.getString("description")?has_content)
459 || cur_step.getString("image")?? && cur_step.getString("image")?has_content>
460 <div class="d3-col-xs-6 d3-col-sm-3 d3-col-md-2">
461 <div class="d3-card-ghost item-1">
462 <div class="card-content">
463 <#if cur_step.getString("image")?? && cur_step.getString("image")?has_content>
464 <img
465 src="${cur_step.getString("image")}"
466 />
467 </#if>
468
469 <#if cur_step.getString("description")?? && cur_step.getString("description")?has_content>
470 <strong class="text-lg">
471 ${steps_to_donate_index + 1}. ${cur_step.getString("description")}
472 </strong>
473 </#if>
474 </div>
475 </div>
476 </div>
477 </#if>
478 </#if>
479 </#list>
480 </div>
481 </div>
482 </div>
483 </div>
484 </#if>
485
486
487 <#if centerInformationDescription??>
488 <div class="d3-component">
489 <div class="container">
490 <div class="d3-col-xs-6 d3-col-md-10 d3-offset-md-1">
491 <#if centerInformationTitle??>
492 <h3>${centerInformationTitle}</h3>
493 </#if>
494 <div>${centerInformationDescription
495 ?replace("CENTER_COMPANY","${centerName}")
496 ?replace("CENTER_CITY","${centerCity}")
497 ?replace("CENTER_STATE","${centerState}")}</div>
498 </div>
499 </div>
500 </div>
501 </#if>
502</div>
503
504<style>
505 .journal-content-article .promotional-image {
506 background-image: url("${centerImage}");
507 }
508
509 .d3-description .hours {
510 display: flex;
511 }
512
513 .d3-description .hours .day-name{
514 width: 50%;
515 }
516
517 .center-ammenities-container {
518 display: flex;
519 flex-wrap: wrap;
520 }
521
522 .specialty-programs-icons {
523 display: flex;
524 flex-direction: row;
525 align-items: center;
526 gap: 16px;
527 padding-bottom: 16px;
528 width: 100%;
529 }
530
531 .specialty-programs-icons img {
532 height: 32px;
533 }
534
535 .specialty-programs-icons .circle {
536 display: flex;
537 align-items: center;
538 background-color: #d4e4f4;
539 color: #002969;
540 border-radius: 100%;
541 justify-content: center;
542 width: 32px;
543 height: 32px;
544 }
545
546 .specialty-programs-icons .circle .d3-icon {
547 font-size: 16px;
548 }
549
550 @media screen and ( min-width: 600px )
551 {
552 .specialty-programs-icons {
553 width: 50%;
554 }
555
556</style>
557
558<script type="application/ld+json">
559 <#assign portalURL=themeDisplay.getPortalURL()>
560
561 {
562 "@context": "https://schema.org",
563 "@type": "LocalBusiness",
564 "logo": "${portalURL}${centerLogo}",
565 "name": "${centerName}",
566 "photo": "${portalURL}${centerImage}",
567 "address": {
568 "@type": "PostalAddress",
569 "addressLocality": "${centerCity}",
570 "addressRegion": "${centerState}",
571 "postalCode": "${centerZipCode}",
572 "streetAddress": "${address.getData()}",
573 "addressCountry": "US"
574 },
575 "telephone": "${centerPhone}",
576 "description": "${centerInformationDescription?json_string}",
577 "hasMap": "${googleMapsURL}",
578
579 <#if x_coordinate?? && x_coordinate.getData()?has_content && y_coordinate??
580 && y_coordinate.getData()?has_content>
581 "geo": {
582 "@type": "GeoCoordinates",
583 "latitude": "${x_coordinate.getData()}",
584 "longitude": "${y_coordinate.getData()}"
585 },
586 </#if>
587 <#if hoursMicrodata != "">
588 ${hoursMicrodata?remove_beginning("{")?remove_ending("}")}
589 </#if>
590 }
591</script>
Biomat USA, Inc.
Lewiston, ME 04240
207-783-3230
Biomat USA, Inc.
Fall River, MA 02721
508-675-4945
Biomat USA, Inc.
Cranston, RI 02920
401-944-2523
Biomat USA, Inc.
Worcester, MA 01604
508-793-2905
Biomat USA, Inc.
Stamford, CT 06906
(475) 292-1823
Biomat USA, Inc.
Fairless Hills, PA 19030
215-945-3250
Biomat USA, Inc.
Norfolk, VA 23502
757-455-6409
Grifols
Allentown, PA 18103
610-798-4887
PlasmaCare, Inc.
Portsmouth, VA 23704
757-393-1200
Biomat USA, Inc.
Hampton, VA 23666
757-726-0501
Biomat USA, Inc.
Dickson City, PA 18519
570-383-5341
Biomat USA, Inc.
Newport News, VA 23608
757-989-5209
Biomat USA, Inc.
Reading, PA 19601
610-685-5060
Interstate Blood Bank, Inc.
Wilkes Barre, PA 18706
570-823-4119
Grifols
Lancaster, PA 17601
717-553-1489
Biomat USA, Inc.
Jacksonville, NC 28546
910-353-4888
Biomat USA, Inc.
Jacksonville, NC 28540
910-463-2603
Biomat USA, Inc.
Greenville, NC 27834
252-214-6646
Biomat USA, Inc.
Wilmington, NC 28404
910-632-2863
Biomat USA, Inc.
Richmond, VA 23231
804-236-2301
Talecris Plasma Resources, Inc.
Harrisburg, PA 17110
717-232-1501
Grifols
Goldsboro, NC 27534
919-751-4730
Grifols
Williamsport, PA 17701
570-666-9290
Biomat USA, Inc.
Frederick, MD 21702
301-360-2400
Grifols
Myrtle Beach, SC 29577
843-445-2579
Talecris Plasma Resources, Inc.
Raleigh, NC 27603
919-779-4749
Talecris Plasma Resources, Inc.
Fayetteville, NC 28303
910-323-4154
Talecris Plasma Resources, Inc.
Fayetteville, NC 28303
910-867-9915
Talecris Plasma Resources, Inc.
Fayetteville, NC 28314
910-867-4431
Biomat USA, Inc.
Hollywood, FL 33024
954-987-6240
Biomat USA, Inc.
Royal Palm Beach, FL 33411
561-791-9122
Biomat USA, Inc.
Danville, VA 24541
434-791-0326
Biomat USA, Inc.
Melbourne, FL 32934
321-255-7466
Grifols
Sumter, SC 29150
803-305-4162
Talecris Plasma Resources, Inc.
Roanoke, VA 24014
540-344-3247
Biomat USA, Inc.
Winston-Salem, NC 27127
(336) 722-8206
Biomat USA, Inc.
Pittsburgh, PA 15235
412-793-0150
Biomat USA, Inc.
Orlando, FL 32826
407-207-1932
Talecris Plasma Resources, Inc.
Kannapolis, NC 28083
704-933-1300
Biomat USA, Inc.
DeLand, FL 32724
386 736-3385
Grifols
Pittsburgh, PA 15233
412-322-1909
Biomat USA, Inc.
Kissimmee, FL 34744
321-337-0500
Biomat USA, Inc.
Altamonte Springs, FL 32701
407-628-4248
Biomat USA, Inc.
Orlando, FL 32809
407-816-8378
Biomat USA, Inc.
Savannah, GA 31406
912-927-4005
Talecris Plasma Resources, Inc.
Charlotte, NC 28204
704-372-1644
Talecris Plasma Resources, Inc.
Charlotte, NC 28208
704-392-6500
Talecris Plasma Resources, Inc.
Jacksonville, FL 32233
904-241-6376
Grifols
Rock Hill, SC 29732
(803) 526-7300
Biomat USA, Inc.
Erie, PA 16506
814-835-6826
Biomat USA, Inc.
Fort Myers, FL 33966
239-332-0500
Grifols
Winter Haven, FL 33880
863-656-7626
Grifols
Gastonia, NC 28054
(704) 691-3287
Biomat USA, Inc.
Jacksonville, FL 32218
904-652-0586
Biomat USA, Inc.
Hinesville, GA 31313
912-255-6150
Biomat USA, Inc.
Jacksonville, FL 32210
904-771-6256
Grifols
Statesboro, GA 30458
912-623-0301
Biomat USA, Inc.
Austintown, OH 44515
330-743-1317
Biomat USA, Inc.
Statesboro, GA 30458
912-259-9902
Biomat USA, Inc.
Ocala, FL 34470
352-877-4000
Biomat USA, Inc.
Augusta, GA 30906
706-798-3061
Grifols
Sarasota, FL 34234
941-358-7668
Biomat USA, Inc.
Gainesville, FL 32609
352-378-9431
Talecris Plasma Resources, Inc.
Canton, OH 44709
330-493-1434
Grifols
Greenwood, SC 29646
864-377-8115
Talecris Plasma Resources, Inc.
Akron, OH 44310
330-633-6288
Biomat USA, Inc.
Clearwater, FL 33764
727-519-0318
PlasmaCare, Inc.
Cleveland, OH 44120
216-258-0249
Grifols
Greenville, SC 29615
864-252-9625
Grifols
Bristol, VA 24201
276-645-6035
Interstate Blood Bank, Inc.
Johnson CIty, TN 37604
423-926-3169
Interstate Blood Bank, Inc.
Asheville, NC 28805
828-252-9967
Grifols
Kingsport, TN 37664
423-246-6035
Biomat USA, Inc.
Clemson, SC 29631
864-633-5023
Biomat USA, Inc.
Lorain, OH 44052
440-282-1081
Biomat USA, Inc.
Valdosta, GA 31601
229-337-8558
Talecris Plasma Resources, Inc.
Port Huron, MI 48060
810-985-5834
Biomat USA, Inc.
Athens, GA 30601
706-354-3898
Biomat USA, Inc.
Whitehall, OH 43213
614-231-5322
Biomat USA, Inc.
Athens, GA 30606
706-715-6628
Biomat USA, Inc.
Macon, GA 31211
478-745-7626
Talecris Plasma Resources, Inc.
Columbus, OH 43204
614-308-7974
Talecris Plasma Resources, Inc.
Albany, GA 31705
229-420-8456
Biomat USA, Inc.
Inkster, MI 48141
313-565-5221
PlasmaCare, Inc.
Farmington Hills, MI 48336
248-957-2227
Grifols
Stonecrest, GA 30038
470-283-1825
Biomat USA, Inc.
Tallahassee, FL 32304
850-222-0195
Interstate Blood Bank, Inc.
Knoxville, TN 37921
865-637-1497
Grifols
Toledo, OH 43605
573-686-0574
Talecris Plasma Resources, Inc.
Toledo, OH 43604
419-244-3910
Biomat USA, Inc.
Norcross, GA 30071
678-495-5801
Biomat USA, Inc.
Bowling Green, OH 43402
419-819-3068
Biomat USA, Inc.
Toledo, OH 43607
419-531-3332
Talecris Plasma Resources, Inc.
Flint, MI 48507
810-743-2025
Talecris Plasma Resources, Inc.
Flint, MI 48507
810-237-1041
Biomat USA, Inc.
Marietta, GA 30067
678-504-7333
Talecris Plasma Resources, Inc.
Flint, MI 48504
810-787-3982
Talecris Plasma Resources, Inc.
Saginaw, MI 48601
989-746-9447
Talecris Plasma Resources, Inc.
Dayton, OH 45406
937-275-5996
PlasmaCare, Inc.
Cincinnati, OH 45237
513-618-7999
Talecris Plasma Resources, Inc.
Columbus, GA 31903
706-687-1071
Talecris Plasma Resources, Inc.
Phenix City, AL 36867
334-297-5711
Talecris Plasma Resources, Inc.
Lansing, MI 48910
517-272-9044
Grifols
Chattanooga, TN 37411
423-855-1085
Grifols
Dothan, AL 36301
334-651-8000
Talecris Plasma Resources, Inc.
Opelika, AL 36801
334-737-0090
Biomat USA, Inc.
Panama City, FL 32401
850-913-6216
Biomat USA, Inc.
Cookeville, TN 38501
931-854-9454
Biomat USA, Inc.
Battle Creek, MI 49015
269-753-0150
Talecris Plasma Resources, Inc.
Louisville, KY 40213
502-968-9264
Talecris Plasma Resources, Inc.
Anderson, IN 46013
765-649-3900
Biomat USA, Inc.
Kalamazoo, MI 49007
269-344-8260
Biomat USA, Inc.
Indianapolis, IN 46226
317-890-8997
Grifols
Indianapolis, IN 46237
317-974-9494
Biomat USA, Inc.
Fort Walton Beach, FL 32547
850-863-1291
Biomat USA, Inc.
Murfreesboro, TN 37129
615-895-2991
Talecris Plasma Resources, Inc.
Indianapolis, IN 46254
317-293-3100
Biomat USA, Inc.
South Bend, IN 46619
574-234-6010
Talecris Plasma Resources, Inc.
Huntsville, AL 35816
256-217-0345
Interstate Blood Bank, Inc.
Muskegon, MI 49441
231-755-0389
Biomat USA, Inc.
Birmingham, AL 35203
205-583-4744
Biomat USA, Inc.
Nashville, TN 37211
615-837-0691
Grifols
Hueytown, AL 35023
205-267-0404
Grifols
Decatur, AL 35601
256-584-9545
Talecris Plasma Resources, Inc.
Pensacola, FL 32507
850-456-0975
Interstate Blood Bank, Inc.
Owensboro, KY 42301
270-685-0068
Biomat USA, Inc.
Clarksville, TN 37042
931-647-5555
Talecris Plasma Resources, Inc.
Tuscaloosa, AL 35401
205-752-1547
PlasmaCare, Inc.
Terre Haute, IN 47807
812-645-0016
Biomat USA, Inc.
Merrillville, IN 46410
219-769-7705
Interstate Blood Bank, Inc.
Griffith, IN 46319
219-513-4222
Biomat USA, Inc.
Chicago, IL 60617
773-374-2449
PlasmaCare, Inc.
Chicago, IL 60652
708-459-9888
Interstate Blood Bank, Inc.
Chicago, IL 60625
773-478-2989
Grifols
Chicago, IL 60634
773-685-2212
Biomat USA, Inc.
Maywood, IL 60153-2257
708-865-1235
Biomat USA, Inc.
Mobile, AL 36693
251-666-3155
Talecris Plasma Resources, Inc.
Waukegan, IL 60085
847-599-9600
PlasmaCare, Inc.
Milwaukee, WI 53233
414-344-2100
Talecris Plasma Resources, Inc.
Milwaukee, WI 53223
414-760-6105
Talecris Plasma Resources, Inc.
Champaign, IL 61821
217-355-9703
Interstate Blood Bank, Inc.
Elgin, IL 60123
847-531-8185
Biomat USA, Inc.
Menasha, WI 54952
920-729-0732
Grifols
Meridian, MS 39301
601-693-5070
Interstate Blood Bank, Inc.
Jackson, TN 38305
731-422-2537
Talecris Plasma Resources, Inc.
Bloomington, IL 61701
309-827-3031
Talecris Plasma Resources, Inc.
Rockford, IL 61103
815-633-7125
Biomat USA, Inc.
Carbondale, IL 62901
618-529-3241
Grifols
Hattiesburg, MS 39401
601-620-0908
Interstate Blood Bank, Inc.
Madison, WI 53704
608-240-2785
Interstate Blood Bank, Inc.
Madison, WI 53711
608-416-8131
Grifols
Cape Girardeau, MO 63703
Talecris Plasma Resources, Inc.
Peoria, IL 61604
309-686-0173
Grifols
Memphis, TN 38119
901-560-2750
Interstate Blood Bank, Inc.
Memphis, TN 38122
901-842-5500
Biomat USA, Inc.
New Orleans, LA 70128
504-246-1135
Grifols
Wood River, IL 62095
618-216-7321
Interstate Blood Bank, Inc.
Saint Louis, MO 63108
314-367-5200
Biomat USA, Inc.
Houma, LA 70360
985-868-0319
Biomat USA, Inc.
Baton Rouge, LA 70805
225-354-0965
Biomat USA, Inc.
Iowa City, IA 52240
319-341-8000
Talecris Plasma Resources, Inc.
Lafayette, LA 70501
337-233-6602
Talecris Plasma Resources, Inc.
Monroe, LA 71203
318-345-0051
Interstate Blood Bank, Inc.
Columbia, MO 65201
573-449-3961
Talecris Plasma Resources, Inc.
Little Rock, AR 72204
501-565-6275
Biomat USA, Inc.
Conway, AR 72034
501-499-8698
Talecris Plasma Resources, Inc.
Alexandria, LA 71301
318-484-2029
Talecris Plasma Resources, Inc.
Saint Paul, MN 55119
651-501-0800
Talecris Plasma Resources, Inc.
West Saint Paul, MN 55118
651-455-6111
Biomat USA, Inc.
Russellville, AR 72801
(479) 858-6150
Biomat USA, Inc.
Ames, IA 50010
515-337-1728
Biomat USA, Inc.
Des Moines, IA 50314
515-244-0771
Talecris Plasma Resources, Inc.
Lake Charles, LA 70601
337-491-9475
Talecris Plasma Resources, Inc.
Shreveport, LA 71105
318-861-1466
Biomat USA, Inc.
Bentonville, AR 72712
479-464-0650
Biomat USA, Inc.
Texarkana, TX 75501
903-832-0452.
Biomat USA, Inc.
Independence, MO 64050
816-252-0932
Biomat USA, Inc.
Kansas City, MO 64110
816-361-0612
Biomat USA, Inc.
Fort Smith, AR 72903
479-782-0197
Biomat USA, Inc.
Beaumont, TX 77708
409-291-7753
Interstate Blood Bank, Inc.
Saint Joseph, MO 64506
816-901-9770
Grifols
Nacogdoches, TX 75965
936-585-8819
Grifols
Longview, TX 75602
903-238-8959
Biomat USA, Inc.
Lufkin, TX 75904
936-570-0640
Biomat USA, Inc.
Council Bluffs, IA 51503
712-352-1218
Biomat USA, Inc.
Channelview, TX 77530
281-402-1944
Biomat USA, Inc.
Topeka, KS 66614
785-273-3659
Biomat USA, Inc.
Humble, TX 77338
281-713-5578
Biomat USA, Inc.
Houston, TX 77017
713-943-8828
Talecris Plasma Resources, Inc.
Moorhead, MN 56560
218-287-2700
Biomat USA, Inc.
Houston, TX 77076
281-999-7970
Biomat USA, Inc.
Houston, TX 77018
713-688-3288
Biomat USA, Inc.
Houston, TX 77031
713-484-6899
Biomat USA, Inc.
Brookings, SD 57006
605-691-6214
Talecris Plasma Resources, Inc.
Sioux Falls, SD 57104
605-271-6090
Biomat USA, Inc.
Lincoln, NE 68508
402-474-2335
Biomat USA, Inc.
Vermillion, SD 57069
605-277-1434
Biomat USA, Inc.
College Station, TX 77840
979-268-6050
Biomat USA, Inc.
Bryan, TX 77801
979-846-8855
Biomat USA, Inc.
Dallas, TX 75228
214-321-6777
Biomat USA, Inc.
Garland, TX 75042
972 272-0501
Biomat USA, Inc.
Stillwater, OK 74074
405-743-3012
Biomat USA, Inc.
Lancaster, TX 75146
972-275-0570
Biomat USA, Inc.
Wichita, KS 67202
316-685-5531
Biomat USA, Inc.
Carrollton, TX 75006
214-390-0836
Talecris Plasma Resources, Inc.
Dallas, TX 75237
972-572-0334
Biomat USA, Inc.
Arlington, TX 76010
817-461-4764
Biomat USA, Inc.
Midwest City, OK 73110
405-737-2447
Biomat USA, Inc.
Edmond, OK 73034
405-330-7851
Biomat USA, Inc.
Victoria, TX 77901
361-576-9519
Talecris Plasma Resources, Inc.
Oklahoma City, OK 73139
405-634-0220
Biomat USA, Inc.
Fort Worth, TX 76114
817-625-4500
Biomat USA, Inc.
Fort Worth, TX 76107
817-570-9212
Talecris Plasma Resources, Inc.
Corpus Christi, TX 78415
361-855-0310
Talecris Plasma Resources, Inc.
Killeen, TX 76541
254-200-1121
Biomat USA, Inc.
Austin, TX 78752
512-371-8892
Grifols
Brownsville, TX 78520
956-574-3200
Biomat USA, Inc.
Austin, TX 78748
512-865-4200
Biomat USA, Inc.
Kearney, NE 68847
308-624-2634
Biomat USA, Inc.
San Marcos, TX 78666
512-392-7570
Biomat USA, Inc.
Lawton, OK 73505
580-248-9769
Biomat USA, Inc.
Wichita Falls, TX 76301
940-763-0300
Grifols
Edinburg, TX 78539
956-380-5036
Biomat USA, Inc.
Edinburg, TX 78539
956-287-0365
Biomat USA, Inc.
Bismarck, ND 58503
701-258-3895
Biomat USA, Inc.
McAllen, TX 78501
956-686-0042
Talecris Plasma Resources, Inc.
McAllen, TX 78501
956-683-1656
Biomat USA, Inc.
San Antonio, TX 78205
210-212-7304
Biomat USA, Inc.
San Antonio, TX 78216
210-224-1749
Talecris Plasma Resources, Inc.
San Antonio, TX 78207
210-212-6226
Biomat USA, Inc.
Mission, TX 78572
956-584-5886
Biomat USA, Inc.
Laredo, TX 78041
956-791-0127
Grifols
Laredo, TX 78040
956-729-7677
Biomat USA, Inc.
Laredo, TX 78040
956-796-0222
Biomat USA, Inc.
San Angelo, TX 76904
325-223-5076
Talecris Plasma Resources, Inc.
Eagle Pass, TX 78852
830-757-3010
Grifols
Eagle Pass, TX 78852
830-752-6286
Talecris Plasma Resources, Inc.
Del Rio, TX 78840
830-775-1663
Talecris Plasma Resources, Inc.
Amarillo, TX 79106
806-355-7373
Grifols
Odessa, TX 79764
432-332-0377
Biomat USA, Inc.
Aurora, CO 80011
303-367-9660
Biomat USA, Inc.
Colorado Springs, CO 80910
719-380-6991
Talecris Plasma Resources, Inc.
Pueblo, CO 81005
719-544-3009
Talecris Plasma Resources, Inc.
Colorado Springs, CO 80909
719-635-5926
Biomat USA, Inc.
Denver, CO 80221
303-427-4059
Talecris Plasma Resources, Inc.
Lakewood, CO 80226
303-238-0363
Biomat USA, Inc.
Lakewood, CO 80215
303-620-4655
Biomat USA, Inc.
Billings, MT 59105
406-259-7459
Talecris Plasma Resources, Inc.
El Paso, TX 79907
915-860-7323
Talecris Plasma Resources, Inc.
El Paso, TX 79915
915-859-6855
Talecris Plasma Resources, Inc.
El Paso, TX 79904
915-757-2735
Talecris Plasma Resources, Inc.
El Paso, TX 79905
915-351-0920
Talecris Plasma Resources, Inc.
El Paso, TX 79901
915-532-5322
Biomat USA, Inc.
Las Cruces, NM 88001
575-524-2262
Biomat USA, Inc.
Bozeman, MT 59715
406-586-0309
Biomat USA, Inc.
Rexburg, ID 83440
208-359-1800
Biomat USA, Inc.
Rexburg, ID 83440
208-356-9101
Biomat USA, Inc.
Logan, UT 84341
435-753-7802
Biomat USA, Inc.
Pocatello, ID 83201
208-233-3888
Biomat USA, Inc.
Ogden, UT 84403
801-392-2296
Biomat USA, Inc.
Provo, UT 84606
801 375-2279
Talecris Plasma Resources, Inc.
Provo, UT 84604
801-377-1243
Biomat USA, Inc.
Orem, UT 84058
801-235-9800
Biomat USA, Inc.
Spanish Fork, UT 84660
801-798-7451
Biomat USA, Inc.
Roy, UT 84067
801-825-0111
Biomat USA, Inc.
Salt Lake City, UT 84111
801-363-7697
Biomat USA, Inc.
Salt Lake City, UT 84116
801-531-1279
Biomat USA, Inc.
Sandy, UT 84094
(801) 566-2534
Biomat USA, Inc.
Taylorsville, UT 84129
801-965-9160
Grifols
Twin Falls, ID 83301
(208) 733-5027
Grifols
Cedar City, UT 84720
435-867-8554
Biomat USA, Inc.
Casa Grande, AZ 85122
520-371-5702
Biomat USA, Inc.
Mesa, AZ 85202
480-833-1598
Biomat USA, Inc.
Phoenix, AZ 85015
602-266-1616
Talecris Plasma Resources, Inc.
Glendale, AZ 85301
623-939-0441
Biomat USA, Inc.
Glendale, AZ 85301
602-272-3224
Grifols
Surprise, AZ 85379
623-231-5383
Biomat USA, Inc.
Boise, ID 83705
208-338-8417
Biomat USA, Inc.
Kennewick, WA 99336
509-737-9000
Talecris Plasma Resources, Inc.
North Las Vegas, NV 89030
702-642-4037
Biomat USA, Inc.
Las Vegas, NV 89103
702-875-4550
Talecris Plasma Resources, Inc.
Yuma, AZ 85364
928-782-2101
Biomat USA, Inc.
Everett, WA 98208
425-267-9800
Grifols
Calexico, CA 92231
760-768-2066
Grifols
Calexico, CA 92231
760 357-2232
Biomat USA, Inc.
Tacoma, WA 98409
253-473-7021
Talecris Plasma Resources, Inc.
Portland, OR 97216
503-252-5308
Biomat USA, Inc.
Portland, OR 97206
503-777-5320
Grifols
Moreno Valley, CA 92553
951-243-2445
Biomat USA, Inc.
San Diego, CA 92115
619-521-5850
Biomat USA, Inc.
Sparks, NV 89431
775-351-1505
Biomat USA, Inc.
Reno, NV 89501
775-324-5600
Biomat USA, Inc.
Chula Vista, CA 91911
619-691-9001
Biomat USA, Inc.
Upland, CA 91786
909-608-0022
Biomat USA, Inc.
Carson City, NV 89705
775-267-0353
Talecris Plasma Resources, Inc.
Salem, OR 97301
503-364-8946
Biomat USA, Inc.
Lancaster, CA 93534
661-723-7597
Biomat USA, Inc.
Orange, CA 92867
714-639-2323
Biomat USA, Inc.
Bellflower, CA 90706
562-602-2004
Talecris Plasma Resources, Inc.
Eugene, OR 97402
541-683-9430
Biomat USA, Inc.
Van Nuys, CA 91406
818-344-0204
Biomat USA, Inc.
Bakersfield, CA 93305
661-863-0621
Grifols
Reseda, CA 91335
818-201-3800
Biomat USA, Inc.
Bakersfield, CA 93309
661-833-2379
Biomat USA, Inc.
Fresno, CA 93726
(559) 221-0040